

/*===========================
      01.COMMON css
===========================*/

// @import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800|Open+Sans:300,400,600,700&display=swap');
// @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Nunito:wght@400;900&family=Open+Sans:wght@400;800&display=swap');
// @import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Ubuntu:wght@400;700&display=swap');

body {
	font-family: $font-1;
	font-weight: normal;
	font-style: normal;
	color: $body-color;
}

#ashanti-web{
	color: $body-color;
	width: calc(100vw - (100vw - 100%));
	overflow-x: hidden;
}

div#ashantiweb:empty ~ div#server-rendered, div#server-rendered * {

}

div#server-rendered, div#server-rendered * {
	// position: absolute;
	// opacity: 0;
	// z-index: -1;
}

*{
    margin: 0;
    padding: 0;
    @include box-sizing (border-box);
}

.font-1 {
	font-family: $font-1;

	&.weight-2{
		font-weight: 800;
	}
}

.font-2 {
	font-family: $font-2;
	font-weight: 700;

		&.weight-2{
			font-weight: 700;
		}
}

.font-3 {
	font-family: $font-3;
}

.clr-1 {
	color: $clr1;
}
.clr-2 {
	color: $clr2;
}
.clr-3 {
	color: $clr3;
}
.clr-4 {
	color: $clr4;
}
.clr-1-important {
	color: $clr1!important;
}
.clr-2-important {
	color: $clr2!important;
}
.clr-3-important {
	color: $clr3!important;
}
.clr-4-important {
	color: $clr4!important;
}
.bg-1 {
	background: $clr1;
}
.bg-2 {
	background: $clr2;
}
.bg-3 {
	background: $clr3;
}
.bg-4 {
	background: $clr4;
}

.anticon{
	position: relative;
	top: -3px;
}

// img {
// 	max-width: 100%;
// }

a:focus,
input:focus,
textarea:focus,
button:focus {
	text-decoration: none;
	outline: none;
}

a:focus,
a:hover{
	text-decoration: none;
}

i,
span,
a{
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: $font-2;
	font-weight: 700;
	color: $heading-color;
	margin: 0px;
}

h1 {
	font-size: 48px;
}
h2 {
	font-size: 36px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}
ul,ol {
	margin: 0px;
	padding: 0px;
    list-style-type: none;
}

p {
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: $body-color;
	margin: 0px;
}

.bg_cover{
    // background-position: center center;
    // background-size: cover;
    // background-repeat: no-repeat;
		position: relative;
    width: 100%;
    height: 100%;
		border: 'solid red 2px';

		img.bg-img{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 1;
		}

		.bg-content{
			position: relative;
			z-index: 2;
		}

}

// others common css here



/*===== All Button Style =====*/

.main-btn {
	display: inline-block;
	font-weight: 300;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	@include user-select(none);
	border: 0;
	padding: 0 25px;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
    border-radius: 5px;
    color: $white;
    cursor: pointer;
    z-index: 5;
    @include transition(0.4s);
    background-color: $theme-color-2;

    &:hover{
        background-color: $white;
        color: $theme-color;
        border-color: $theme-color;
    }

    &.main-btn-2{
        background-color: $white;
        color: $theme-color;
        border-color: $theme-color;
        &:hover{
            background-color: $theme-color;
            border-color: $theme-color;
            color: $white;
        }
    }
}


/*===== All Section Title Style =====*/

.section-title{
    & .sub-title{
        font-size: 16px;
        font-weight: 400;
        color: $body-color;
        text-transform: uppercase;
        font-family: $font-1;

        @media #{$xs}{
            font-size: 14px;
        }
    }
    & .main-title{
        font-size: 40px;
        font-weight: 400;
        margin-top: 10px;

        @media #{$xs}{
            font-size: 28px;
        }
    }
}


/*===== All Ads More Style =====*/

.ads-more{
    // margin-top: 10px;
    text-align: center;

    & p{
        font-size: 16px;
        font-style: italic;
        font-weight: 300;
        font-family: $font-2;
        text-decoration: underline;

        & a{
            color: $theme-color;
            font-weight: 600;
            margin-left: 5px;
            @include transition(0.3s);
            text-decoration: underline;

            & i{
                margin-left: 8px;
            }

            &:hover{
                color: $theme-color-2;
            }
        }
    }
}


/*===== All Check Box Style =====*/

.check-box{
    & input[type="checkbox"],
    & input[type="radio"] {
        display: none;

        & + label {
            display: inline-block;
            width: 16px;
            height: 16px;
            margin: -1px 8px 0 0;
            vertical-align: middle;
            cursor: pointer;
            -moz-border-radius: 50%;
            border: 1px solid rgba($heading-color, 0.1);
            position: relative;
            @include transition(0.3s);
            border-radius: 3px;

            &::before {
                position: absolute;
                content: "\f00c";
                font-family: "Font Awesome 5 Pro";
                font-weight: 400;
                background: none;
                color: $white;
                width: 100%;
                height: 100%;
                line-height: 100%;
                text-align: center;
                @include transform(scale(0));
                top: 0;
                left: 0;
                @include transition(0.3s);
                border-radius: 3px;
                font-size: 14px;
                background-color: $theme-color-2;
            }
        }

        &:checked {
            & + label {
                border-color: $theme-color-2;

                &::before {
                    @include transform(scale(1));
                }
            }
        }
    }

    & span{
        font-size: 14px;
        color: $body-color;
    }
}


/*===== All Pagination Style =====*/

.seylon-pagination{
    & .pagination{
        & li{
            padding: 0 5px;

            & a{
                width: 35px;
                height: 35px;
                line-height: 33px;
                text-align: center;
                background-color: $white;
                border: 1px solid rgba($heading-color, 0.1);
                color: $heading-color;
                border-radius: 3px;
                font-size: 16px;
                @include transition(0.3s);

                &.active,
                &:hover{
                    color: $white;
                    background-color: $theme-color-2;
                    border-color: $theme-color-2;
                }
            }
        }
    }
}


/*===== All Form Style =====*/

.single-form {
    margin-top: 30px;

    & label {
        display: block;
        margin-bottom: 15px;
        color: $heading-color;
    }

    & input,
    & textarea {
        width: 100%;
        height: 45px;
        border: 1px solid $border-color;
        border-radius: 5px;
        padding: 0 15px;
        @include transition(0.3s);

        &:focus{
            border-color: $theme-color-2;
        }
    }

    & textarea {
        height: 200px;
        padding-top: 10px;
        resize: none;
    }

    & .main-btn {
        width: 160px;

        &:hover{
            background-color: $theme-color;
            color: $white;
        }
    }
}


/*===== All Preloader =====*/

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: $white;
    z-index: 99999;

    & .load{
        background-image: url(../images/preloader.gif);
        z-index: 5;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 30%;
        height: 30%;
        @include transform(translate(-50%, -50%));
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;

        @media #{$xs}{
            width: 50%;
            height: 50%;
        }
    }
}
