@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jockey+One&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --main-color: #EEBF1B;
    --primary-color: #2E5E4B;
    --light-white: #F2F2F2;
    --white:#FFFFFF;
    --grey:#2D2D2D;
    --light-grey: #D0D3C1;
    --brown: #5E532E;
    --box-shadow:0 .5rem 1rem rgba(0,0,0,.1);
}
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style: none;
    transition: all 0.4s cubic-bezier(.43,1.1,.62,1.08);
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
    font-size: 62.5%;
}
html::-webkit-scrollbar{
    width: 1rem;
}
html::-webkit-scrollbar-track{
    background-color: var(--white);
}
html::-webkit-scrollbar-thumb{
    background: var(--primary-color);
}
a{
    text-decoration: none !important;
}
ul,ol{
    list-style: none;
}
@media (min-width: 1200px){
    .container{
        max-width: 1200px;
    }
}
.container{
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 15px;
}
span.bgbox{
    display: inline-block;
    background: var(--brown);
    padding:1rem 2rem;
    border-radius: 5rem;
    margin-bottom: 1.5rem;
} 
span.bgbox h4{
    color: var(--main-color);
    font-weight: 600;
    font-size: 1.5rem;
}
hr.main-line{
    width: 10rem;
    height: .2rem;
    background: var(--white);
    border: none;
    margin-left: 2.5rem;
}
hr.line{
    width: 6rem;
    height: .4rem;
    background: var(--main-color);
    border: none;
}
hr.text-line{
    width: 7rem;
    height: .3rem;
    background: var(--main-color);
    border: none;
}


/* ================= HEADER ================= */
.navbar{
    position:absolute;
    width:100%;
    z-index:1000;
    background:transparent;
    padding: 3rem 4rem;
    transition: 0.4s ease;
}
.navbar.scrolled{
    position: fixed;
    top: 0;
    transition: 0.4s ease;
    background: var(--primary-color);
    background-image: url(../assets/images/logo/grey-logo.svg);
    background-repeat: no-repeat;
    background-size: 15rem;
    background-position: right -2% top 100%;
    padding: 2rem 4rem;
}
.navbar-collapse.show.scrolled{
    background: transparent;
}
.navbar-collapse.show{
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
}
.navbar-collapse.show ul{
    align-items: start !important;
}
.navbar-collapse.show ul li{
    border-bottom: 1px solid var(--light-grey);
    width: 100%;
    margin-bottom: 2rem;
}
.navbar-collapse.show ul li:last-child{
    margin-top: 3rem;
    margin-bottom: 0;
}
.navbar-brand img{
    width: 40rem;
}
.navbar .nav-link
{
    color: var(--white) !important;
    font-weight:400;
    font-size: 1.8rem;
}
.navbar .nav-link.active{
    color: var(--main-color) !important;
}

.navbar .nav-link.btn{
    border: 2px solid var(--main-color);
    color: var(--main-color) !important;
    padding: 10px 25px;
}
.navbar .nav-link:hover{
    color: var(--main-color) !important;
}

.navbar-dark .navbar-toggler.collapsed .navbar-toggler-icon{
    background-image: url('../assets/images/toggler.svg');
    width: 3.5rem;
    height: 3.5rem;
}
.navbar-dark .navbar-toggler .navbar-toggler-icon{
    background-image: url('../assets/images/cross.svg');
}
.navbar-toggler{
    font-size: 2.5rem;
    border: none !important;
}
.navbar-dark .navbar-toggler{
    outline: none !important;
}

/* ================= HERO SECTION ================= */
.hero-section{
    position:relative;
    height:100vh;
}

/* Slider slide */
.hero-slider .slide{
    height:100vh;
    background-size: cover!important;
    background-position: center !important;
    position:relative;
    display:flex !important;
    align-items:center;
    justify-content:flex-end;
}

/* Black overlay */
.hero-section .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:0.2;
    z-index:1;
}
.slick-slide{
    cursor: move;
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.slick-slide:active{
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

/* Slide Content */
.slide-content{
    position:relative;
    z-index:2;
    color:var(--white);
    max-width:600px;
    padding-right: 5rem;
    margin-top: 12rem;
}
.slide-content h4{
    font-size: 1.7rem;
    color: var(--light-grey);
    font-weight: 600;
    margin-bottom: 1rem;
}
.slide-content h1{
    font-size: 4.5rem;
    font-weight:600;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--white), var(--main-color) 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p{
    font-size: 1.7rem;
    padding-left: 10%;
}

/* ================= SOCIAL LINKS ================= */
.hero-section .social-links{
    position:absolute;
    bottom:5rem;
    width: 100%;
    justify-content: center;
    z-index:100;
}
.social-links a{
    color:#fff;
    font-size: 3rem;
    display: inline-flex;
    border: 1px solid var(--white);
    border-radius: 100%;
    width: 5rem;
    height: 5rem;
    /* padding-left: 1rem;
    padding-top: .3rem; */
    justify-content: center;
    align-items: center;

}
.social-links a:hover{
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

/* ================= CUSTOM ARROWS ================= */
.custom-prev,
.custom-next{
    position:absolute;
    bottom:3rem;
    cursor:pointer;
    z-index:100;
}

.custom-prev{ left:3rem; }
.custom-next{ right:3rem; }

.custom-prev img,
.custom-next img{
    width:4rem;
}
/* ================= DOTS ================= */
.slick-dots{
    text-align: center;
    bottom: 2rem;
}
.slick-dots li{
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background: var(--grey);
    border-radius: 50px;
    margin-right: 10px;
    cursor: pointer;
}
.slick-dots li:last-child{
    margin-right: 0;
}
.slick-dots li button{
    display: none;
}
.slick-dots li.slick-active{
    background: var(--main-color);
}

/*--------------About Us---------------  */
#about{
    padding: 10rem 0rem;
}
#about .about-content{
    /* width: 45%; */
}
#about .about-image{
    /* width: 55%; */
}
#about .about-content h1{
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}
#about .about-content p{
    font-size: 1.6rem;
    color: var(--grey);
}
#about .about-content a{
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}
#about .about-content a:hover{
    color: var(--main-color);
}
#about .about-image img.chair{
    display: block;
    position: relative !important;
    width: 93%;
}
#about .about-image{
    max-height: fit-content;
}
#about .about-image .box{
    display: inline-flex;
    align-items: center;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: .6rem;
    position: absolute;
    bottom: -5rem;
}
#about .about-image .box span.circle{
    display: inline-flex;
    background: var(--main-color);
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}
#about .about-image .box span.circle img{
    width: 4rem;
}
#about .about-image .box .content h2{
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
}
#about .about-image .box h5{
    color: var(--light-grey);
    font-size: 1.5rem;
    margin-top: -.7rem;
}


/*-------------#slide-move----------------------  */
#slide-move {
    padding: 10rem 0;
    white-space: nowrap;
}

.scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.scroll-content {
    display: flex;
    gap: 3rem;
    animation: scrollRight 10s linear infinite;
}

.scroll-content li {
    display: inline-block;
    background: var(--grey);
    color: var(--main-color);
    font-size: 2rem;
    font-weight: 400;
    padding: 1rem 3rem;
    border-radius: 2rem;
}

/* Move to RIGHT continuously */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}


/* ================= COUNTS ================= */

#counts{
    padding: 10rem 0;
    position: relative;
}
#counts .container{
    max-width: 100%;
    padding: 5rem 10rem;
    background: var(--primary-color);
    background-image: 
        url('../assets/images/logo/grey-logo-flip.svg'),
        url('../assets/images/logo/grey-logo.svg');

    background-position: 
         left -10rem top 0rem,
        right -10rem top 0rem;

    background-repeat: 
        no-repeat,
        no-repeat;

    background-size: 
        auto 80%,
        auto 80%;
}
#counts .container img{
    width: 7rem;
    margin-bottom: 3rem;
}
#counts .container h1{
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
}
#counts .container h4{
    font-size: 1.8rem;
    color: var(--light-grey);
    font-weight: 400;
}


/* ================= COUNTRY ================= */

#country{
    padding: 10rem 0rem;
}
#country .container{

}
#country .container h1{
    font-family: "Jockey One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    color: #8c8c8c;
}
#country .container h2{
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}


/* ================= SERVICE ================= */

#service{
    padding: 10rem 0;
}
#service .top{

}
#service .top h1{
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10rem;
}
#service .serv-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Image Wrapper */
#service .img-box {
    position: relative;
    overflow: hidden;
    width: 100%;
}

#service .img-box img {
    width: 100%;
    display: block;
}

/* Overlay ONLY on image */
#service .img-box .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
    border-radius: 2rem;
    z-index: 1;
}

/* Content BELOW image */
#service .content {
    padding: 20px;
    text-align: center;
    position: absolute;
    bottom: -3rem;
    z-index: 2;
    transition: 0.4s ease;
}

#service .content h1 {
    font-size: 3rem;
    color: var(--white);
    font-weight: 600;
    transition: 0.4s ease;
}
#service .content p{
    font-size: 1.5rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(15px);
    margin-top: 0.5rem;
    transition: 0.4s ease;
}
#service .serv-card:hover .overlay {
    opacity: 0.6;
}
#service .serv-card:hover .content {
    bottom: 0rem;
}
#service .serv-card:hover .content h1 {
    color: var(--main-color);
}
#service .serv-card:hover .content p {
    opacity: 1;
    transform: translateY(0);
}
#service .bottom{
    margin-top: 7rem;
}
#service .bottom a.btn{
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}
#service .bottom a.btn:hover{
    border: 2px solid var(--main-color);
    color: var(--main-color);
}


/* ================= VIDEO ================= */
#video{
    padding: 10rem 0;
}
#video video{
    border-radius: 1rem;
}
#video .content h1{
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
    margin-top: 2rem;
}
#video .content h1 b{
    color: var(--main-color);
}
#video .content a.btn{
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}
#video .content a.btn:hover{
    border: 2px solid var(--main-color);
    color: var(--main-color);
}

/* ================= QUOTE ================= */
#quote{
    height: 40rem;
    text-align: center;
    background: var(--primary-color) 
                url('../assets/images/home/footer-bg.svg') 
                no-repeat left center;
    background-size: auto 100%;
    position: relative;

}
#quote .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 1;
}
#quote .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0 auto;
    width: 100%;
}
#quote .content h1{
    font-size: 5rem;
    color: var(--white);
    font-weight: 600;
}
#quote .content p{
    font-size: 2rem;
    padding: 0 20%;
    color: var(--light-grey);
    margin: 1rem 0;
    margin-bottom: 5rem;
}
#quote .content a.btn{
    background: var(--main-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}
#quote .content a.btn:hover{
    background: var(--primary-color);
    color: var(--main-color);
}


/* ================= FOOTER ================= */
footer{
    background: var(--primary-color);
    padding: 6rem 0;
}
footer .bg-primary{
    background: var(--primary-color) !important;
    padding-bottom: 10rem;
}
footer a.logo{
    width: 35rem;
    margin-bottom: 3rem;
}
footer p.desc{
    font-size: 1.6rem;
    max-width: 85%;
    color: var(--light-grey);
    margin-bottom: 3rem;
}
footer h2{
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 3rem;
}
footer ul li a{
    font-size: 1.6rem;
    color: var(--light-grey);
    display: inline-block;
    margin-bottom: 1rem;
}
footer ul li a i{
    color: var(--main-color);
    font-size: 2rem;
}
footer ul li a:hover{
    color: var(--main-color);
}
footer .social-links a{
    font-size: 2.5rem;
    height: 4.5rem;
    width: 4.5rem;
}
footer .bg-white{
    padding: 2rem 0;
}
footer .bg-white p{
    font-size: 1.6rem;
    color: var(--primary-color);
}
footer .bg-white a{
    color: var(--primary-color);
    font-weight: 600;
}



/* ================= About-Page ================= */
#hero-bg{
    background-size: cover;
    position: relative;
    height: 35rem;
}
#hero-bg .container{
    /* padding-top: 5rem; */
}
#hero-bg h1{
    font-size: 6rem;
    font-weight:600;
    background: linear-gradient(90deg, var(--white), var(--main-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= WHO WE ARE ================= */
#who{
    padding: 10rem 0;
}
.heading h1{
    display: inline-block;
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary-color);
}
.heading h1 span.title{
    display: block;
    margin-top: -1rem;
    margin-bottom: -1rem;
}
b.text{
    color: var(--primary-color);
}

#who .contents p{
    font-size: 1.7rem;
    color: var(--grey);
}

#values{
    padding: 10rem 0;
}
#values .row{
    padding-left: 9rem;
    margin-right: 0;
}
#values ul li span.dote{
    display: inline-block;
    padding: .8rem .8rem;
    background: var(--main-color);
    border-radius: 50rem;
    margin-right: 1rem;
}
#values ul li p{
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--grey);
    margin-bottom: 0;
}


/* ================= MISSION ================= */
#mission{
    padding: 10rem 0;
}
#mission .box{
    background: var(--primary-color);
    padding: 3rem;
    border-top-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
    /* height: 25rem; */
}
#mission .box.op{
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-right-radius: 3rem;
    border-bottom-left-radius: 3rem;
}
#mission .box h1{
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
}
#mission .box i{
    font-size: 4rem;
    color: var(--main-color);
}
#mission .box img{
    width: 4rem;
}
#mission .box p{
    margin-top: 2rem;
    font-size: 1.7rem;
    color: var(--light-grey);
    margin-bottom: 3rem;
}
#mission .box.op p{
    margin-bottom: 5.5rem;
}

#values.goal .row{
    padding-left: 0;
    padding-right: 9rem;
    margin-left: 0;
}


/* ================= SERVICE-Page ================= */
#service-top{
    padding: 10rem 0;
}
#service-top h1{
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 7rem;
}
#service-top h1.text-center{
    color: var(--grey);
    margin: 0 auto;
}
#service-top h1.text-center b{
    color: var(--main-color);
}

/* ================= SERVICE-CARDS ================= */
#cards{
    padding: 10rem 0;
    padding-top: 5rem;
}
#cards .card{
    padding: 3rem;
    background: var(--primary-color);
    border-radius: 1rem;
    background-image: url('../assets/images/logo/grey-logo.svg');
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: right -3rem top -3rem;
}
#cards .card img{
    width: 5rem;
    margin-bottom: 3rem;
}
#cards .card h1{
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 2rem;
}
#cards .card p{
    font-size: 1.6rem;
    color: var(--light-grey);
}


#how{
    padding: 10rem 0;
}
#how .top-row{
    padding: -1px 10rem;
}
#how .row{
    border-top: 3px solid var(--light-grey);
    border-bottom: 3px solid var(--light-grey);
    padding: 0 10rem;
}
#how .items:first-child{
    border-right: 3px solid var(--light-grey);
}
#how .items{
    padding-right: 0;
    padding-left: 0;

}
#how .items .item {
    border-bottom: 3px solid var(--light-grey);
}
#how .process .item h1{
    font-family: "Jockey One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5rem;
    color: #8c8c8c;
    margin-bottom: 1rem;
}
#how .process .item h2{
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
}
#how .process .item p{
    font-size: 1.6rem;
    color: var(--grey);
}
#how .process .item.mt-20{
    margin-top: 20rem;
}


/* ================= PROJECT-Page ================= */
body#project-page #slide-move{
    padding: 0;
}
body#project-page #slide-move ul li{
    background: none;
    padding: 0;
}
body#project-page .pl-10{
    padding: 10rem 0;
}

#exhibition a.box{
    width: 27rem;
    position: relative;
    overflow: hidden;
    border-radius: 3rem;
}
#exhibition a.box img{
    width: 100%;
    border-radius: 3rem;
}
#exhibition a.box:hover img{
    transform: scale(1.1);
}
#exhibition a.box .icon{
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0; left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    display: none;
}
#exhibition a.box .icon i{
    font-size: 6rem;
    color: var(--white);
}
#exhibition a.box:hover .icon{
    display: flex;
}


/* ================= CONTACT-Page ================= */
#contact-form{
    padding: 10rem 0;
}
#contact-form .info-container{

}
#contact-form .info-container h1{
    font-size: 5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
}
#contact-form .info-container span.icon{
    display: inline-block;
    padding: 1.5rem 1.5rem;
    background: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    border-radius: 1rem;
    color: var(--main-color);
}
#contact-form .info-container span.icon i{

}
#contact-form .info-container h3{
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
}
#contact-form .info-container p{
    font-size: 1.6rem;
    color: var(--grey);
}   

#contact-form .form-container{
    background: var(--primary-color);
    background-image: url('../assets/images/logo/grey-logo.svg');
    background-repeat: no-repeat;
    background-size: 30%;
    background-position: right -3rem top -3rem;
    padding: 5rem 3rem;
    border-radius: 1rem;
    padding-bottom: 14rem;
}
#contact-form .form-container h1{
    font-size: 3rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 5rem;
}
#contact-form iframe{
    width: 100%;
    border-radius: 1rem;
}
#contact-form .form-container form label{
    font-size: 1.6rem;
    color: var(--light-grey);
}
#contact-form .form-container form input{
    width: 100%;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background: var(--grey);
    border: 1px solid var(--grey);
    font-size:1.6rem;
    color: var(--white);
}
#contact-form .form-container form textarea{
    width: 100%;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    background: var(--grey);
    border: 1px solid var(--grey);
    font-size:1.6rem;
    color: var(--white);
}
#contact-form .form-container form input:focus{
    border: 2px solid var(--main-color);
}
#contact-form .form-container form textarea:focus{
    border: 2px solid var(--main-color);
}
#contact-form .form-container form textarea::placeholder{
    color: var(--white);
    padding-left: 1rem;
}
#contact-form .form-container form button{
    background: var(--main-color);
    color: var(--primary-color);
    padding: 1.5rem 0rem;
    font-size: 1.8rem;
    font-weight: 700;
    border: none;
    border-radius: 1rem;
    width: 100%;
}


/* ===== Loader ===== */
#form-loader {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #fff;
    border-top: 6px solid #ffc107;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* ===== Popup ===== */
#success-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-box {
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    animation: popupScale 0.3s ease;
}

.popup-box i {
    font-size: 50px;
    color: #28a745;
    margin-bottom: 15px;
}

@keyframes popupScale {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}



/* ================= MEDIA QUERIES ================= */
@media (max-width:1280px) {
    html{
        font-size: 55%;
    }
}
@media (max-width:992px) {
    .container{
        max-width: 860px;
    }
    .sm-mb-5{
        margin-bottom: 5rem;
    }
}
@media (max-width:768px) {
    /* html{
        font-size: 50%;
    } */
     .container{
        max-width: 540px;
     }
    .custom-prev{
        display: none;
    }
    .custom-next{
        display: none;
    }
    #counts .container{
        background-size: auto 40%, auto 40%;
    }
    #service .col-md-4{
        margin-bottom: 4rem;
    }
    #service .img-box {
        width: 100%;
    }
    #quote .content h1{
        font-size: 4rem;
    }
    
    footer .bg-white p{
        text-align: center !important;
    }
    .mb-sm-5{
        margin-bottom: 5rem !important;
    }
    #values.goal .mb-sm-5{
        padding-left: 6rem !important;
    }
    #how .process .item.mt-20{
        margin-top: 5rem !important;
    }
    #how .items:last-child {
        /* border-right: 3px solid var(--light-grey); */
        border-left: 3px solid var(--light-grey);
    }
    #values.goal .row{
        padding-right: 3rem;
    }
}

@media (max-width:640px) {
    html{
        font-size: 50%;
    }
    .container{
        /* max-width: 450px; */
    }
    .navbar-brand img {
        width: 35rem;
    }
    #counts .container{
        background-size: auto 20%, auto 20%;
    }
    #counts .col-sm-6{
        margin-bottom: 5rem;
    }
    #country .container .col-xs-6{
        width: 50%;
        margin-bottom: 3rem;
    }
    #quote .content p{
        padding: 0 10%; 
    }
    #quote .content{
        padding: 0 1rem;
    }
}

@media (max-width:480px) {
    .navbar
    {
        padding: 2rem 1.5rem;
    }
    .navbar.scrolled{
        padding: 2.5rem 1.5rem;
        background-size: 13rem;
        background-position: right -7% top 100%;

    }
    h1{
        font-size: 4rem !important;
    }   
    #mission .box h1,
    #cards .card h1{
        font-size: 3rem !important;
    }
    .slide-content{
        text-align: center !important;
        padding-right: 0;
    }
    .slide-content p{
        padding: 0;
    }
    #exhibition a.box{
        width: 23rem;
    }
    .scroll-wrapper img{
        width: 30rem;
    }
}

@media (max-width:390px){
    #exhibition a.box{
        width: 17rem;
    }
    .navbar-brand img{
        width: 27rem;
    }
    #about .about-image .box span.circle{
        width: 5.5rem;
        height: 5.5rem;
    }
    #about .about-image .box .content h2{
        font-size: 3rem;
    }
    #about .about-image .box .content h5{
        font-size: 1.2rem;
    }
    #about .about-image .box{
        bottom: -7rem;
    }
    footer a.logo{
        width: 30rem;
    }
}