/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-FONTS-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
@font-face {
    font-family: 'mick1';
    src: url('/assets/fonts/ArgentumSans-Light.ttf');
    }
@font-face {
    font-family: 'mick2';
    src: url('/assets/fonts/Lora-Regular.ttf');
    }

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-MAIN-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/*---------------SCROLL UP BUTTON---------------*/

.scroll-btn {
    font-size:3rem;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999999;
    display: none;
    
    color: black;
}
.scroll-btn:hover {
    color: black;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
img {
    width: 100%;
}
#home {
    scroll-margin-top: 100px;
}

#about {
    scroll-margin-top: 100px;
}
#services {
    scroll-margin-top: 100px;
}
#contact {
    scroll-margin-top: 100px;
}


/*-------------------------MAIN END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-NAVBAR-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.navbar{
    position: fixed;
    z-index: 5;
    width: 100%;
    background: black;
    padding: 25px 0;
    transition: all 0.3s ease;
}
.navbar .sticky{
    background: black;
    padding: 10px 0;
}
.navbar .content{
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
}
.navbar .menu-list{
    display: inline-flex;
}
.menu-list li {
    list-style: none;
}
.menu-list li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    font-family: 'mick1';
    transition: all 0.3s ease;
}
.menu-list li a:hover{
    color: #D5D6D2;
}
.content{
    max-width: 100%;
    margin: auto;
    padding: 0px 30px;
    color: red;
    justify-content: center;
    align-items: center;
}
.navbar .logo a {
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'mick1';
}
.icon {
    color: #D5D6D2;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.cancel-btn{
    position: absolute;
    right: 30px;
    top: 20px;
    color: black;
}



/*-------------------------NAVBAR END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-BANNER-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.banner{
    height: 65vh;
    background: url(/assets/img/AC07.jpg) no-repeat;
    background-size: cover;
    background-position:center ;
    background-attachment: fixed;
}


/*-------------------------BANNER END----------------------------*/


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-ABOUT-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.about{
    padding: 40px 0;
}
.about .title{
    font-size: 35px;
    font-weight: 700px;
    font-family: 'mick1';
}
.about p{
    padding-top: 30px;
    text-align: justify;
    font-family: 'mick2';
}

/*-------------------------ABOUT END----------------------------*/



/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 1 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.sect1 {
    justify-content: center;
    align-items: center;
}

.sect1 .box {
    /*border: 1px solid red;*/
    background: #D5D6D2;
    width: 100%;
    margin-top: 25px;
    color: black;
    transition: all 0.5s ease;
}

.sect1 .box img{
    width: 100%;
    height: 30vh;
}

.sect1 .box h3{
    position: relative;
    font-family: "mick1";
    text-align: center;
    padding-top: 10px;
}

.sect1 .box p{
    font-family: "mick2";
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-top: 5px;
}

/*-------------------------SECTION 1 () END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 2 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.sect2 {
    margin-top: 50px;
    color: black;
}
.sect2 h1{
    font-family: "mick1";
    text-align: center;
}
.sect2 p{
    padding-top: 20px;
    font-family: "mick2";
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

/*-------------------------SECTION 2 () END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 3 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.sect3 {
    margin-top: 100px;
    color: black;
}
.sect3 h1{
    font-family: "mick1";
    text-align: center;
}
.sect3 p{
    font-family: "mick2";
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

.s3_r1 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.s3_r1 img{
    width: 25%;
    margin-left: 5px;
    margin-right: 5px;
}

.sect3 a {
    text-decoration: none;
    color: black;
    font-weight: 700;
}
/*-------------------------SECTION 3 () END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 4 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
.sect4 {
    margin-top: 65px;
    margin-bottom: 50px;
    color: black;
}
.sect4 h1{
    font-family: "mick1";
    text-align: center;
}
.sect4 p{
    font-family: "mick2";
    font-size: 22px;
    line-height: 32px;
    text-align: center;
}

.s4_r1 {
    margin-top: 50px;
    justify-content: center;
    font-size: 44px;
    text-align: center;
}

.s4_r1 label {
    font-size: 12px;
}

.s4_r1 a{
    text-decoration: none;
    color: black;
}

.s4_r1 .fas .far {
    text-align: center;
}

.s4_r1 i:hover {
    cursor: pointer;
    color: #2F2E33;
}

/*-------------------------SECTION 4 () END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-PRELOADER ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
#preloader {
    background: black;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
}

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.loader h1 {
    position: relative;
    font-size: 52px;
    font-family: "mick1";
    color: #FFFFFF;
    text-align: center;
    top: 50%;
}

.loader.hidden {
    animation: fadeOut 4s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}



/*-------------------------PRELOADER () END----------------------------*/

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 6 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/*-------------------------SECTION 6 () END----------------------------*/


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 6 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/*-------------------------SECTION 6 () END----------------------------*/


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-SECTION 6 ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

/*-------------------------SECTION 6 () END----------------------------*/













/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-DESKTOP-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/



    @media only screen  and (min-width : 768px) {

    /*-------------------------NAVBAR----------------------------*/
    .navbar{
        position: fixed;
        z-index: 5;
        width: 100%;
        background: black;
        padding: 25px 0;
        transition: all 0.3s ease;
    }
    .navbar .sticky{
        background: black;
        padding: 10px 0;
    }
    .navbar .content{
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-between;
    }
    .navbar .menu-list{
        display: inline-flex;
    }
    .menu-list li {
        list-style: none;
    }
    .menu-list li a{
        color: #ffffff;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        margin-left: 25px;
        font-family: 'mick1';
        transition: all 0.3s ease;
    }
    .menu-list li a:hover{
        color: #D5D6D2;
    }
    .content{
        max-width: 1250px;
        margin: auto;
        padding: 0px 30px;
        color: red;
    }
    .navbar .logo a {
        color: #ffffff;
        font-size: 30px;
        font-weight: 600;
        text-decoration: none;
        font-family: 'mick1';
    }
    .banner{
        height: 77vh;
        background: url(/assets/img/AC07.jpg) no-repeat;
        background-size: cover;
        background-position:center ;
        background-attachment: fixed;
    }
    .about{
        padding: 40px 0;
    }
    .about .title{
        font-size: 35px;
        font-weight: 700px;
        font-family: 'mick1';
    }
    .about p{
        padding-top: 30px;
        text-align: justify;
        font-family: 'mick2';
    }
    .icon {
        color: #D5D6D2;
        font-size: 20px;
        cursor: pointer;
        display: none;
    }
    .cancel-btn{
        position: absolute;
        right: 30px;
        top: 20px;
        color: black;
    }

    /*-----------------------------SECTION 1-------------------------------------*/

    .sect1 {
        /*border: 1px solid blue;*/
        margin-top: 20px;
        display: flex;

        
    }

    .sect1 .box {
        /*border: 1px solid red;*/
        background: #D5D6D2;
        width: 100%;
        
        margin: 10px;
        color: black;
        transition: all 0.5s ease;
    }

    .sect1 .box img{
        width: 100%;
        height: 30vh;

    }
    .sect1 .box h3{
        position: relative;
        
        font-family: "mick1";
        text-align: center;
        padding-top: 10px;
    }

    .sect1 .box p{
        font-family: "mick2";
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 20px;
        padding-top: 5px;

    }
    .sect1 .box img{

    }


    /*--------------------SECTION 1 END----------------------*/


    /*-----------------------------SECTION 2-------------------------------------*/
    .sect2 {
        margin-top: 100px;
        color: black;
    }
    .sect2 h1{
        font-family: "mick1";
        text-align: center;
        
    }
    .sect2 p{
        font-family: "mick2";
        font-size: 22px;
        line-height: 32px;
        text-align: center;
        
    }
    .sect2 {
        
    }

    /*--------------------SECTION 2 END----------------------*/

    /*-----------------------------SECTION 3-------------------------------------*/
    .sect3 {
        margin-top: 100px;
        color: black;
    }
    .sect3 h1{
        font-family: "mick1";
        text-align: center;
    }
    .sect3 p{
        font-family: "mick2";
        font-size: 22px;
        line-height: 32px;
        text-align: center;
    }

    .s3_r1 {
        display: flex;
        justify-content: center;
        margin-top: 50px;
        
    }
    .s3_r1 img{
        width: 15%;
        margin-left: 25px;
        margin-right: 25px;
    }

    .s3_r2 {
        
    }
    .sect3 a {
        text-decoration: none;
        color: black;
        font-weight: 700;

    }

    /*--------------------SECTION 3 END----------------------*/

    /*-----------------------------SECTION (CONTACT) 4-------------------------------------*/
    .sect4 {
        margin-top: 100px;
        color: black;
    }
    .sect4 h1{
        font-family: "mick1";
        text-align: center;
    }
    .sect4 p{
        font-family: "mick2";
        font-size: 22px;
        line-height: 32px;
        text-align: center;
    }


    .s4_r1 {
        margin-top: 50px;
        justify-content: center;
        font-size: 44px;
        text-align: center;
        
    }

    .s4_r1 label {
        font-size: 12px;
    }
    .s4_r1 a{
        text-decoration: none;
        color: black;
    }

    .s4_r1 .fas .far {
        text-align: center;
        
    }
    .s4_r1 i:hover {
        cursor: pointer;
        
        color: #2F2E33;
    }

    /*--------------------SECTION 4 (CONTACT) END----------------------*/
    /*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-PRELOADER ()-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
    #preloader {
        background: black;
        height: 100vh;
        width: 100%;
        position: fixed;
        z-index: 100;
    }

    .loader {
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    .loader h1 {
        position: relative;
        font-size: 52px;
        font-family: "mick1";
        color: #FFFFFF;
        text-align: center;
        top: 50%;
    }

    .loader.hidden {
        animation: fadeOut 5s;
        animation-fill-mode: forwards;
    }

    @keyframes fadeOut {
        100% {
            opacity: 0;
            visibility: hidden;
        }
    }



/*-------------------------PRELOADER () END----------------------------*/


/*---------------SCROLL UP BUTTON---------------*/

.scroll-btn {
    font-size:3rem;
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999999;
    display: none;
    
    color: black;
}
.scroll-btn:hover {
    color: black;
}




}


@media (max-width:1024px) {
    body.disabledscroll {
        overflow: hidden;
    }
    .icon{
        display: block;
    }
    .icon.hide{
        display: none;
    }
    .navbar .menu-list{
        position: fixed;
        top: 0;
        left: -100%;
        height: 150vh;
        width: 100%;
        max-width: 400px;
        background: #d5d6d2e5;
        display: block;
        padding: 40px 0;
        text-align: center;
        transition: all 0.3s ease;
        
    }
    .navbar .menu-list.active{
        left: 0%;
    }
    .navbar .menu-list li {
        margin-top: 45px;
    }
    .navbar .menu-list li a{
        font-size: 23px;
        color: black;
        font-weight: 700;
    }
    .content{
        max-width: 1250px;
        margin: auto;
        padding: 0px 30px;
        color: blue;
    }
}