*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
}

.nav-container{
  border-bottom: 1px solid #b6dde7;
  background-color: white;

}

@media Screen and (max-width:992px) {
  .nav-container,.nav2container{
  display: none; 
  }
}

#bnav{
  display: none;
}

@media Screen and (max-width:992px) {
 #bnav{
  display: block;
 }
  
}

.topnav{
  display: flex;
  max-width: 1200px;
  margin: 0px auto;
  padding: 20px;
  align-items: center;
  gap: 30px;
  justify-content: center;
}

.topchild{
  display: flex;
  align-items: center;
  font-size: 14px;
}

.topchild img{
  margin-right: 10px;
}

.topchild p{
  margin: 0;
  color: rgb(114, 114, 114);
}
.topchild span{
  color: rgb(196, 196, 196);
}

/* the styling of the second nav satrts here */

.nav2container{
  font-size: 14px;
  background-color: rgb(3, 110, 30);
  padding: 0px;
  margin: 0px;
  /* background-color: white; */
  /* position:sticky; */
 
}
.nav2{
  display: flex;
  max-width: 1100px;
  margin: 0px auto;
  align-items: center;
  padding: 5px 0px;

}

.nav2list{
  display: flex;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.nav2list li {
  position: relative;
}

.nav2list li a{
  color:rgb(78, 78, 78);
  text-decoration: none;
  color: white;
padding: 15px;
}

.drop-container{
  display: none;
  box-shadow: 0px 7px 30px -20px;
}

.dropdowne{
  position: absolute;
  background-color: rgb(3, 163, 88);
  z-index: 999;
  top: 30px;
  list-style-type: none;
  animation: drop .5s linear ;
  border-radius: 5px;
} 

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.dropdowne ul{
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

.dropdowne li{
  padding: 0px;
  width: 200px;
}

.dropdowne li a{
  color: rgb(255, 255, 255);
  padding: 10px 15px;
  display: block;
border-bottom: 1px solid #f1f1f1;

}

.dropdowne li a:hover{
  background-color: #d2e1f5;
}

.enroll{
  margin-left: auto;
}

.nav2list li:hover .drop-container{
  display: block;
}

.about{
  position: absolute;
  background-color: white;

  display: flex;
  border-top: 2px solid white;
  border-radius: 10px;
  top: 33px;
  animation: drop .5s linear ;
  display: none;
  box-shadow: 0px 7px 30px -20px;
  padding: 20px;
  z-index: 999;
}

@keyframes drop{
  0%{
    margin-top: 30px;
  }
  25%{
    margin-top: 15px;
  }
  50%{
    margin-top: 0px;
  }
}

.about-con{
  display: flex;
}

.ab-left{
  width: 300px;
  padding: 20px;
}


.ab-left h1{
font-weight: lighter;
font-size: 24px;
}

.pee{
  color: #c0c0c0;
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.7;
}

#learn-more {
    display:block;
  color:rgb(0, 167, 75) ;
  border: 1px solid rgb(0, 167, 75);
  width: 70%;
  margin-top: 5px;
}

.ab-right{
width: 700px;
}

.ab-right img{
  width: 100%;
  border-radius: 10px;
}


.nav2list li:hover .about{
  display: block;
}

.enroll button{
  border: none;
  padding: 10px 15px;
  background-color: rgb(0, 0, 0);
  border-radius: 5px;
}

.enroll button a{
  text-decoration: none;
  color: rgb(255, 255, 255);
}


/* side navigation bar starts here */

/* MOBILE HEADER */

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 20px;
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.mobile-logo{
    width:180px;
}

.menu-btn{
    font-size:32px;
    cursor:pointer;
    color:#036e1e;
}

/* OVERLAY */

#overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    display:none;
    z-index:998;
}

/* SIDEBAR */

#sidebar{
    position:fixed;
    top:0;
    left:-320px;
    width:320px;
    height:100vh;
    background:white;
    z-index:999;
    transition:.4s;
    overflow-y:auto;
    box-shadow:5px 0 30px rgba(0,0,0,.15);
}

#sidebar.active{
    left:0;
}

.sidebar-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-bottom:1px solid #eee;
}

.sidebar-top span{
    font-size:28px;
    cursor:pointer;
}

.sidebar-menu{
    list-style:none;
    padding:20px;
}

.sidebar-menu li{
    margin-bottom:10px;
}

.sidebar-menu a{
    display:block;
    text-decoration:none;
    color:#333;
    padding:12px 0;
    font-size:15px;
}

.sidebar-menu a:hover{
    color:#036e1e;
}

.sidebar-menu details{
    border-bottom:1px solid #f1f1f1;
    padding-bottom:10px;
}

.sidebar-menu summary{
    list-style:none;
    cursor:pointer;
    padding:12px 0;
    font-weight:600;
    color:#222;
}

.sidebar-menu summary::-webkit-details-marker{
    display:none;
}

.sidebar-menu details a{
    padding-left:15px;
    color:#666;
    font-size:14px;
}

.sidebar-btn{
    padding:20px;
}

.sidebar-btn a{
    display:block;
    background:#036e1e;
    color:white;
    text-align:center;
    text-decoration:none;
    padding:15px;
    border-radius:6px;
    font-weight:bold;
}

.sidebar-btn a:hover{
    background:#024d15;
}

/* SHOW ONLY MOBILE */

@media(min-width:993px){
    .mobile-header,
    #sidebar,
    #overlay{
        display:none;
        z-index: 999;
    }
}



/* the styling for the hero content begins here */

/*=========================================
        ASTRO HERO
==========================================*/

/*=========================================
        ASTRO HERO
=========================================*/


.about-hero{
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 100px;
    background: linear-gradient(to right, rgba(5, 18, 32, 0.88), rgba(5, 18, 32, 0.1)),
                url('pics/whychoosepic.jpg') center/cover no-repeat;
    overflow: hidden;
}

.about-hero-overlay{
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at top right, rgba(249,115,22,0.18), transparent 28%),
      radial-gradient(circle at bottom left, rgba(34,197,94,0.12), transparent 24%);
    z-index: 1;
}

.about-hero-content{
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: 70px;
    color: #fff;
}

.about-tag{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f97316;
    margin-bottom: 18px;
}

.about-hero-content h1{
    font-size: 45px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 22px;
    max-width: 700px;
}

.about-hero-content p{
    max-width: 680px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.86);
    margin-bottom: 32px;
}

.about-hero-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px){
    .about-hero-buttons{
        display: none;
    }
    }


.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.35s ease;
}

.primary-about-btn{
    background: #ffcc00;
    color: #fff;
    box-shadow: 0 15px 35px rgba(249,115,22,0.28);
}

.primary-about-btn:hover{
    background: #00a035;
    transform: translateY(-3px);
}

.secondary-about-btn{
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #fff;
    backdrop-filter: blur(6px);
}

.secondary-about-btn:hover{
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

/* responsive */
@media (max-width: 1100px){
    .about-hero-content{
        margin-left: 20px;
    }

    .about-hero-content h1{
        font-size: 46px;
    }
}

@media (max-width: 768px){
    .about-hero{
        min-height: 72vh;
        padding: 100px 16px 70px;
        background-position: center;
    }

    .about-hero-content{
        margin-left: 0;
        max-width: 100%;
    }

    .about-tag{
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .about-hero-content h1{
        font-size: 31px;
        line-height: 1.18;
    }

    .about-hero-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .about-btn{
        width: 100%;
        max-width: 280px;
    }
}




/*=========================================
        SPORTS ABOUT
=========================================*/

/*=========================================
        SPORTS SHOWCASE
=========================================*/

.sports-showcase{

    padding:120px 8%;

    background:#f8f9fc;

}

.section-heading{

    max-width:850px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.section-heading h2{

    font-size:58px;

    color:#0B2B52;

    margin:20px 0;

}

.section-heading p{

    color:#666;

    line-height:2;

}

.showcase-image{

    position:relative;

    max-width:1400px;

    margin:auto;

    border-radius:20px;

    overflow:hidden;

}

.showcase-image img{

    width:100%;

    height:750px;

    object-fit:cover;

    transition:1s;

}

.showcase-image:hover img{

    transform:scale(1.08);

}

.image-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

    rgba(0,0,0,.15),

    rgba(0,0,0,.45)

    );

}

/*==========================
FLOATING CARDS
===========================*/

.floating-card{

    position:absolute;

    width:280px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    padding:30px;

    border-radius:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    transition:.5s;

}

.floating-card:hover{

    transform:translateY(-12px);

}

.floating-card i{

    font-size:36px;

    color:#F4A51C;

    margin-bottom:20px;

}

.floating-card h3{

    color:#0B2B52;

    margin-bottom:15px;

}

.floating-card p{

    color:#666;

    line-height:1.8;

}

.card-one{

    top:60px;

    left:60px;

}

.card-two{

    top:120px;

    right:60px;

}

.card-three{

    bottom:60px;

    left:50%;

    transform:translateX(-50%);

}

.card-three:hover{

    transform:translateX(-50%) translateY(-12px);

}


/* the next section begins here */

/*====================================
        FEATURED PROJECT
====================================*/
/*=========================================
        SPORTS PROJECTS
==========================================*/

.sports-projects{

    padding:120px 8%;
    background:#f7f9fc;

}

.projects-heading{

    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;

}

.projects-heading h2{

    font-size:56px;
    color:#0B2B52;
    margin:20px 0;

}

.projects-heading p{

    color:#666;
    line-height:1.9;

}

/*==========================
FEATURED PROJECT
===========================*/

.featured-project{

    display:grid;

    grid-template-columns:1.4fr 1fr;

    gap:50px;

    align-items:center;

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.08);

    margin-bottom:60px;

}

.featured-image{

    overflow:hidden;

}

.featured-image img{

    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;

    transition:.7s;

}

.featured-project:hover img{

    transform:scale(1.08);

}

.featured-content{

    padding:50px;

}

.project-category{

    display:inline-block;

    background:#FFF4DD;

    color:#F4A51C;

    padding:8px 18px;

    font-weight:600;

    margin-bottom:20px;

}

.featured-content h3{

    font-size:40px;

    color:#0B2B52;

    margin-bottom:20px;

}

.featured-content p{

    color:#666;

    line-height:2;

    margin-bottom:35px;

}

.project-meta{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-bottom:40px;

}

.project-meta strong{

    display:block;

    color:#0B2B52;

    margin-bottom:6px;

}

.project-meta span{

    color:#666;

}

.project-btn{

    display:inline-block;

    padding:18px 40px;

    background:#036E1E;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.project-btn:hover{

    background:#F4A51C;

}

/*==========================
OTHER PROJECTS
===========================*/

.project-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.project-card{

    position:relative;

    overflow:hidden;

    border-radius:18px;

}

.project-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.8s;

}

.project-card:hover img{

    transform:scale(1.1);

}

.project-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:35px;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.85));

    color:white;

}

.project-overlay h3{

    margin-bottom:15px;

    font-size:28px;

}

.project-overlay p{

    line-height:1.8;

}


/* the next section begins here */


/*=========================================
        SPORTS STORY
==========================================*/

.sports-story{

    padding:140px 8%;

    background:#fff;

}

.story-header{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:90px;

}

.story-header h2{

    font-size:60px;

    color:#0B2B52;

    margin-top:20px;

    line-height:1.15;

}

.story-grid{

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:38% 62%;

    gap:70px;

    align-items:start;

}

/* Left */

.story-text{

    position:sticky;

    top:120px;

}

.story-text h3{

    font-size:42px;

    color:#0B2B52;

    line-height:1.3;

    margin-bottom:35px;

}

.story-text p{

    font-size:17px;

    color:#666;

    line-height:2;

    margin-bottom:30px;

}

/* Gallery */

.story-gallery{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-item{

    overflow:hidden;

    border-radius:14px;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* Different Heights */

.large{

    grid-column:span 2;

    height:360px;

}

.tall{

    height:520px;

}

.wide{

    grid-column:span 2;

    height:260px;

}

.story-gallery .gallery-item:not(.large):not(.tall):not(.wide){

    height:250px;

}

/*=========================================
        1400px
==========================================*/

@media (max-width:1400px){

    .sports-story{

        padding:120px 6%;

    }

    .story-header h2{

        font-size:52px;

    }

}


/*=========================================
        1200px
==========================================*/

@media (max-width:1200px){

    .story-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .story-text{

        position:static;

        max-width:900px;

    }

    .story-header{

        margin-bottom:70px;

    }

}


/*=========================================
        992px
==========================================*/

@media (max-width:992px){

    .sports-story{

        padding:100px 5%;

    }

    .story-header h2{

        font-size:44px;

    }

    .story-text h3{

        font-size:36px;

    }

    .story-gallery{

        grid-template-columns:repeat(2,1fr);

    }

    .large{

        grid-column:span 2;

        height:340px;

    }

    .wide{

        grid-column:span 2;

        height:240px;

    }

    .tall{

        height:420px;

    }

}


/*=========================================
        768px
==========================================*/

@media (max-width:768px){

    .sports-story{

        padding:80px 20px;

    }

    .story-header{

        margin-bottom:50px;

    }

    .story-header h2{

        font-size:34px;

    }

    .story-text{

        text-align:left;

    }

    .story-text h3{

        font-size:30px;

        margin-bottom:25px;

    }

    .story-text p{

        font-size:16px;

        line-height:1.9;

    }

    .story-gallery{

        grid-template-columns:1fr;

        gap:18px;

    }

    .large,
    .wide,
    .tall{

        grid-column:auto;

        height:300px;

    }

    .gallery-item{

        height:280px;

    }

}


/*=========================================
        576px
==========================================*/

@media (max-width:576px){

    .sports-story{

        padding:70px 18px;

    }

    .story-header h2{

        font-size:30px;

    }

    .story-header p{

        font-size:15px;

    }

    .story-text h3{

        font-size:26px;

    }

    .story-text p{

        font-size:15px;

        line-height:1.8;

    }

    .gallery-item,

    .large,

    .wide,

    .tall{

        height:240px;

    }

}


/*=========================================
        480px
==========================================*/

@media (max-width:480px){

    .story-header{

        margin-bottom:40px;

    }

    .story-header h2{

        font-size:26px;

        line-height:1.3;

    }

    .story-text h3{

        font-size:22px;

    }

    .story-text p{

        font-size:14px;

    }

    .gallery-item,

    .large,

    .wide,

    .tall{

        height:210px;

        border-radius:10px;

    }

}


/* the section begins here */


/*=========================================
        SPORTS ENGINEERING
==========================================*/

.sports-engineering{

    padding:140px 8%;

    background:#fff;

}

.engineering-heading{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:80px;

}

.engineering-heading h2{

    font-size:58px;

    color:#0B2B52;

    margin:20px 0;

}

.engineering-heading p{

    color:#666;

    line-height:2;

}

.engineering-process{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* LEFT */

.engineering-list{

    display:flex;

    flex-direction:column;

    gap:30px;

}

.engineering-item{

    display:flex;

    gap:25px;

    align-items:flex-start;

    padding:25px;

    background:#f8f9fc;

    border-left:5px solid #F4A51C;

    transition:.35s;

}

.engineering-item:hover{

    transform:translateX(12px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.number{

    width:65px;

    height:65px;

    border-radius:50%;

    background:#0B2B52;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:20px;

    flex-shrink:0;

}

.engineering-item h3{

    color:#0B2B52;

    margin-bottom:10px;

}

.engineering-item p{

    color:#666;

    line-height:1.8;

}

/* RIGHT */

.engineering-image{

    overflow:hidden;

    border-radius:18px;

}

.engineering-image img{

    width:100%;

    display:block;

    border-radius:18px;

    transition:.8s;

}

.engineering-image:hover img{

    transform:scale(1.08);

}




/* the next section begins here */


/*=========================================
        SPORTS IMPACT
==========================================*/

.sports-impact{

    padding:120px 8%;

    background:#0B2B52;

    color:#fff;

}

.impact-image{

    max-width:1300px;

    margin:auto;

    margin-bottom:60px;

    overflow:hidden;

    border-radius:18px;

}

.impact-image img{

    width:100%;

    height:550px;

    object-fit:cover;

    transition:.8s;

}

.impact-image:hover img{

    transform:scale(1.05);

}

.impact-content{

    max-width:850px;

    margin:auto;

    text-align:center;

}

.impact-content h2{

    font-size:54px;

    margin:20px 0;

}

.impact-content p{

    color:#d8d8d8;

    line-height:2;

    margin-bottom:40px;

}

.impact-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.impact-tags span{

    padding:12px 22px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:40px;

    transition:.35s;

}

.impact-tags span:hover{

    background:#F4A51C;

    border-color:#F4A51C;

}










/* #################################################################### */

/* =========================
   GLOBALCONS FOOTER
========================= */
.global-footer{
    background: #0b1620;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}



.footer-top{
    padding: 90px 20px 55px;
    position: relative;
    z-index: 2;
}

.footer-container{
    max-width: 1320px;
    margin: auto;
    Padding: 30px 50px 30px 50px;
}

.footer-top .footer-container{
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 45px;
}

.footer-col h3{
    font-size: 20px;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52px;
    height: 3px;
    background: #00a331;
    border-radius: 20px;
}

.footer-brand .footer-logo{
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand .footer-logo img{
    max-width: 210px;
    height: auto;
    display: block;
}

.footer-brand p{
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.9;
    max-width: 360px;
    margin-bottom: 24px;
}

.footer-socials{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: 0.35s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-socials a:hover{
    background: #009338;
    transform: translateY(-4px);
}

.footer-links,
.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 14px;
}

.footer-links a{
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-links a:hover{
    color: #009f25;
    transform: translateX(4px);
}

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.74);
    font-size: 15px;
    line-height: 1.7;
}

.footer-contact a{
    color: rgba(255,255,255,0.74);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact a:hover{
    color: #008c28;
}

.footer-icon{
    font-size: 16px;
    margin-top: 2px;
    min-width: 18px;
}

/* Bottom bar */
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 20px;
    background: #081018;
}

.footer-bottom-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p{
    margin: 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.footer-credit{
    color: #f97316;
    font-weight: 500;
}

/* subtle background accent */
.global-footer::before{
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.global-footer::after{
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px){
    .footer-container{
        width: 100%;
    }
}

@media (max-width: 1100px){
    .footer-top .footer-container{
        grid-template-columns: auto auto;
        gap: 40px 30px;
    }
}

@media (max-width: 768px){
    .footer-top{
        padding: 70px 16px 40px;
    }

    .footer-top .footer-container{
        grid-template-columns: auto auto;
        gap: 35px;
        padding-bottom: 0px 30px ;
    }

    .footer-col h3{
        font-size: 18px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact li,
    .footer-contact a{
        font-size: 14px;
    }

    .footer-bottom{
        padding: 18px 16px;
    }

    .footer-bottom-wrap{
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom p{
        font-size: 13px;
    }
}

