/* =====================================
   LARGE LAPTOP
===================================== */

@media (max-width:1400px){

.container{

    width:95%;

}

.page-hero h1{

    font-size:3.5rem;

}

}

/* =====================================
   LAPTOP
===================================== */

@media (max-width:1200px){

.main-nav ul{

    gap:18px;

}

.main-nav ul li a{

    font-size:.88rem;

}

.footer-grid{

    grid-template-columns:
    repeat(2,1fr);

}

.stats-grid{

    grid-template-columns:
    repeat(2,1fr);

}

.testimonial-grid{

    grid-template-columns:
    repeat(2,1fr);

}

.blog-grid{

    grid-template-columns:
    repeat(2,1fr);

}

}

/* =====================================
   TABLET
===================================== */

@media (max-width:992px){

section{

    padding:80px 0;

}

/* NAVIGATION */

.main-nav{

    display:none;

}

.header-actions{

    display:none;

}

.mobile-menu-btn{

    display:block;

}

/* HERO */

.page-hero{

    min-height:60vh;

    padding-top:120px;

}

.page-hero h1{

    font-size:3rem;

}

/* ABOUT */

.about-grid{

    grid-template-columns:1fr;

}

.founder-grid{

    grid-template-columns:1fr;

    gap:40px;

}

.founder-image{

    text-align:center;

}

.founder-image img{

    max-width:400px;

    margin:auto;

}

/* TIMELINE */

.timeline::before{

    left:20px;

}

.timeline-item{

    width:100%;

    left:0 !important;

    padding-left:60px;

    padding-right:0;

    text-align:left !important;

}

.timeline-item::before{

    left:11px !important;

    right:auto !important;

}

/* COVERAGE */

.coverage-grid{

    grid-template-columns:
    repeat(2,1fr);

}

/* FOOTER */

.footer-grid{

    grid-template-columns:
    1fr 1fr;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}

/* =====================================
   MOBILE
===================================== */

@media (max-width:768px){

.container{

    width:92%;

}

section{

    padding:70px 0;

}

/* HERO */

.page-hero{

    min-height:55vh;

}

.page-hero h1{

    font-size:2.4rem;

    line-height:1.2;

}

.page-hero p{

    font-size:1rem;

}

/* SECTION TITLE */

.section-title h2{

    font-size:2rem;

}

/* BUTTON */

.btn,
.btn-primary,
.btn-outline{

    width:100%;

    justify-content:center;

}

/* STATS */

.stats-grid{

    grid-template-columns:1fr;

}

/* TESTIMONIALS */

.testimonial-grid{

    grid-template-columns:1fr;

}

/* BLOG */

.blog-grid{

    grid-template-columns:1fr;

}

/* MISSION VISION */

.mv-grid{

    grid-template-columns:1fr;

}

/* FOOTER */

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    justify-content:center;

}

.location-tags{

    justify-content:center;

}

/* FORM */

.contact-form{

    padding:25px;

}

}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width:576px){

.header-wrapper{

    min-height:75px;

}

.logo-box{

    width:45px;
    height:45px;

}

.logo-text h2{

    font-size:1.1rem;

}

.logo-text span{

    font-size:.65rem;

}

.page-hero{

    padding-top:100px;

}

.page-hero h1{

    font-size:2rem;

}

.section-title h2{

    font-size:1.8rem;

}

.founder-content h2{

    font-size:2rem;

}

.mv-card{

    padding:25px;

}

.card{

    padding:20px;

}

.footer-social{

    flex-wrap:wrap;

}

.location-tags span{

    font-size:.8rem;

}

}

/* =====================================
   EXTRA SMALL DEVICES
===================================== */

@media (max-width:400px){

.page-hero h1{

    font-size:1.7rem;

}

.logo-text h2{

    font-size:1rem;

}

.logo-text span{

    display:none;

}

.mobile-menu-btn{

    font-size:24px;

}

}

/* =====================================
   MOBILE MENU
===================================== */

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:300px;

    height:100vh;

    background:#08111f;

    z-index:99999;

    transition:.4s ease;

    padding-top:90px;

    box-shadow:
    -10px 0 30px rgba(0,0,0,.4);

}

.mobile-menu.active{

    right:0;

}

.mobile-menu ul{

    list-style:none;

}

.mobile-menu ul li{

    border-bottom:
    1px solid rgba(255,255,255,.05);

}

.mobile-menu ul li a{

    display:block;

    padding:18px 25px;

    color:#fff;

    font-size:15px;

}

.mobile-menu ul li a:hover{

    background:
    rgba(255,255,255,.05);

    color:#c9982a;

}

.mobile-overlay{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100vh;

    background:
    rgba(0,0,0,.6);

    z-index:99998;

    opacity:0;

    visibility:hidden;

    transition:.3s;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}