* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #222222;
    --secondary-color: #44B678;
    --hover-color:#48ab74;
    --white: #fff;
    --text-color: #777777;
     --background-color: #F8F8FF;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.eot');
    src: url('../fonts/Poppins-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff'),
        url('../fonts/Poppins-ExtraBold.ttf') format('truetype'),
        url('../fonts/Poppins-ExtraBold.svg#Poppins-ExtraBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.eot');
    src: url('../fonts/Poppins-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff'),
        url('../fonts/Poppins-Black.ttf') format('truetype'),
        url('../fonts/Poppins-Black.svg#Poppins-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype'),
        url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.eot');
    src: url('../fonts/Poppins-ExtraLight.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-ExtraLight.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraLight.woff') format('woff'),
        url('../fonts/Poppins-ExtraLight.ttf') format('truetype'),
        url('../fonts/Poppins-ExtraLight.svg#Poppins-ExtraLight') format('svg');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.eot');
    src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype'),
        url('../fonts/Poppins-Light.svg#Poppins-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype'),
        url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.eot');
    src: url('../fonts/Poppins-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Thin.woff2') format('woff2'),
        url('../fonts/Poppins-Thin.woff') format('woff'),
        url('../fonts/Poppins-Thin.ttf') format('truetype'),
        url('../fonts/Poppins-Thin.svg#Poppins-Thin') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
body {
    font-family: 'Poppins';
    font-size: 1rem;
    line-height: 24px;
    color: var(--primary-color);
}

/* <------------common-css------------> */

.green{
  color:var(--secondary-color);
}
h1,
h2 {
    font-weight:500;
    color: var(--primary-color);
}
h1 {
    font-size:4.5rem;
    line-height: 80px;
}
p {
    color: var(--text-color);
}
h2 {
    font-size: 3rem;
    line-height: 52px;
}
h3,
h4 {
    line-height: 32px;
}
h3 {
    font-size:1.5rem;
}
h4 {
    font-size: 1.25rem;
}
h5,
.small-title {
    font-size: 1.125rem;
    font-weight: 500;
}
h6 {
    font-size:1.125rem;
}
a {
    text-decoration: none;
    color: var(--primary-color);
}
li {
    list-style-type: none;
}
.gap-16{
    gap:16px;
}
.gap-24 {
    gap: 24px;
}
.gap-32 {
    gap: 32px;
}
.gap-64 {
    gap: 64px;
}
.small-title {
    display: block;
    color: var(--secondary-color);
}
.btn a,.submit {
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.36s ease-in-out;
    display: inline-block;
    cursor: pointer;
}
.primary-btn a,
.secondary-btn a, .submit  {
    color: var(--white);
}
.primary-btn a, .submit  {
    background-color: var(--secondary-color);
}
.primary-btn a:hover , .submit:hover {
 background-color: var(--hover-color);
}
.secondary-btn
{
    background-color: var(--primary-color);
}
.secondary-btn:hover
 {
    background-color: var(--hover-color);
}
.py-100 {
    padding: 100px 0;
}
header,
section,
main,
footer {
    float: left;
    width: 100%;
}
.d-column {
    flex-direction: column;
}
.container {
    width: 100%;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
}
.sec-inner {
    display: flex;
}
.w-50 {
    width: 50%;
}
img {
    width: 100%;
}

.white{
   color:var(--white);
}
/* <------------header------------> */

header {
    position: fixed;
    padding: 20px 0;
    background: var(--white);
    z-index: 99;
}
.header.sticky {
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgb(16, 39, 29, 0.23) 0px 6px 6px;
}
.navbar,
.collspan,
.primary-menu {
    display: flex;
    align-items: center;
}
.navbar {
    justify-content: space-between;
}
.primary-menu {
    gap:32px;
}
.navbar .btn a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
     padding: 2px 12px;
    }
    
.navbar .btn a span {
    width: 20px;
    margin-top:5px;
}
.primary-menu li a {
    position: relative;
    display: inline-block;
    padding: 3px;
    font-size:1.125rem;
}
.primary-menu li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: all 0.36s ease-in-out;
    transform: scale(0);
}
.primary-menu li a:hover::after, .primary-menu li a.active::after {
    transform: scale(1);
}
.primary-menu li a:hover , .primary-menu li a.active{
    color: var(--secondary-color);
}
#pull-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    font-size:2.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height:20px;
    box-shadow:rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align:center;
    background-color:var(--secondary-color);
    padding: 8px 0;
    z-index: 9999;
    color:var(--white);
    transform:rotate(90deg);
    display:none;
    cursor:pointer;
}
.mobile-toggle {
    width: 40px;
    height: 40px;
    display: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 0.3rem;
    gap: 3px;
}
.drop-div {
    width: 22px;
    height: 3px;
    background-color: var(--primary-color);
}
.close {
    position: absolute;
    display: none;
    width: 30px;
    height: 30px;
    right: 20px;
    top: 10px;
    cursor: pointer;
}


/* <------------hero-section------------> */

.hero-section {
    background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/miami-skyscrapers-with-bridge-sea-day(3)1(1).jpg');
    width:100%;
    color:var(--white);
    padding:300px 0 200px 0;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
}
.hero-section h1,
.hero-section .small-title {
    color: var(--white);
}
.banner-content {
    display: flex;
    text-align: center;
    align-items: center;
}
.banner-content p {
    width: 60%;
    color:var(--white);
}
.sec-inner,
.banner-content {
    flex-direction: column;
}

/* <------------tab-section------------> */

.sec-header{
    text-align: center;
   justify-content: center;
}
.tab-section{
    background:var(--background-color);
    position: relative;
    z-index:1;
  }
  .bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 20%;
    z-index: -1;
    height: 50%;
  }
.tab-container,.tab-menu,
.tab-menu li a,.tab-content-inner, .sec-header{
    display: flex;
}
.tab-menu,
.tab-menu li a {
    justify-content: center;
}
.tab-menu li a {
    padding: 15px 5px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    height: 100%;
    align-items: center;
    color:var(--text-color);
}
.tab-menu{
    flex-wrap: wrap;
    border-bottom: 1px solid #dedede;
}
.tab-menu li {
    flex: 1;
}
.tab-content-inner {
    justify-content: center;
    background-color: var(--white);
}
.tab-content-inner img{
    object-fit: cover;
    height:100%;
    object-position:left;
}
#tab3 img{
    object-position:70%;
}
.tab-content{
    display:none;
}
.left-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
.tab-content-inner ul {
    margin: 20px 0;
}
.tab-content-inner h3 {
    font-weight: 500;
    margin-bottom: 20px;
}
.tab-content-inner h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color:var(--secondary-color);
}
.tab-content-inner p {
    margin: 10px 0;
}
.price-list{
    padding-left:24px;
}
 .price-list li {
    position: relative;
    margin-bottom:8px;
    list-style-type: disc;
}
.tab{
    border-bottom:3px solid transparent;
    color:var(--primary-color);
    transition:all 0.36s ease;
}
.tab:hover, .tab.active{
    border-color:var(--primary-color);
    color:var(--primary-color);
}


/* <------------service-section------------> */

.service-section{
   position: relative;
}
.bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width:20%;
    z-index: -1;
    height: 50%;
  }
.service-content h3{
    font-weight:400; 
}
.service{
    display: flex;
    flex-wrap: wrap;
}
.service-box{
    display:flex;
    flex:calc(33.33% - 32px);
    border:1px solid #dedede;
    padding:24px;
    transition:all 0.36s ease;
    border-radius:20px;

}
.service-box:last-of-type{
    width:100%;
    max-width:calc(34.33% - 32px);
}
.service-box:hover{
    box-shadow: 0px 4px 40px 0px #00000040;
    border:1px solid transparent;
}
.service-content{
  display:flex;
  gap:16px;
}
.service-icon {
    width: 60px;
    height: 60px;
}
  .service-box:hover .service-img{
    display:none;
}
.service-box:hover .service-img-grn{
   display:block;
}
  img.service-img-grn {
    display: none;
  }
/* <------------video-section------------> */

.sec-header p{
    font-size:1.2rem;
    line-height:30px;
    color:var(--text-color);
}
.video-section {
    width: 75%;
    height: 100%;
    margin: 0 auto;
}
.video{
    position:relative;
     background-color: var(--background-color);
    height:100%;
    text-align: center;
    z-index:1;
}
.bg-vector {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width:20%;
    z-index: -1;
    height: 50%;
}
.video-in{
    margin-bottom:-370px;
    border-radius: 20px;
    overflow:hidden;
}
.video-section .jss3 .vjs-big-play-button{
    background:url('../images/play.svg') !important;
}

/* <------------location-section------------> */

.sec-location{
    position: relative;
    z-index:1;
    overflow: hidden;
}
.dot-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    display: inline-block;
    width: 300px;
    transform: rotate(45deg);
    height: 100%;
    z-index:-1;
  }
.contact-bg {
    position: absolute;
    display: inline-block;
    bottom: -33px;
    right: 0;
    width: 20%;
    transform: rotate(90deg);
    opacity: 0.4;
    z-index:-1;
  }
.location{
    display:flex;
    gap:20px;
    flex-wrap: wrap;
}
.location-box{
    width:100%;
    max-width:calc(25.34% - 20px);
    position: relative;
    height:400px;
    border-radius:16px;
    overflow: hidden;
    cursor: pointer;
}
.location-box img{
    width:100%;
    height:100%;
    object-fit: cover;
}
.location-content{
    position: absolute;
    bottom: 0px;
    padding:24px;
    z-index:1;
    height:37%;
    opacity:1;
    transition:all 0.4s ease;
    background: linear-gradient(180deg, rgba(68, 182, 120, 0) 0%, rgba(68, 182, 120, 0.515) 35.5%, #44B678 100%);
    width:100%;
}
.location-content-inner{
   display: flex;
   flex-direction: column;
   gap:16px;
   min-height: 100px;
}
.location-box-in:hover .location-content {
    height:  70%;
}
.location-title{
    margin-bottom:auto;
    font-size:1.25rem;
    line-height:28px;
    font-weight: 500;
}
.location-box-in{
    display: flex;
    height:100%;
    transition: all 0.8s ease-in;
}
.lo-svg svg>path {
    fill: #fff;
  }
.location-descrp{
    display: flex;
    gap:8px;
}
.location-content p{
    color:var(--white);
}
.location-box:hover .location-content{
    bottom:0;
}

/* <------------faq-section------------> */

.faq-section{
    position: relative;
    z-index:1;
    overflow: hidden;
}
.bg-vector {
     position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width:15%;
    z-index: -1;
    height: 50%;
  }
.faq-container{
    display: flex;
}
.accordion{
    display: flex;
    gap:16px;
}
.faq-section{
    padding-top:270px;
}
.at-tab{
    display:none;
}
.at-item{
    border:0.5px solid #dedede;
    border-radius:10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 6px;
}
.at-item h3{
    font-size:1.125rem;
    font-weight: 500;
}
.at-title{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    gap:8px;
}
.at-tab{
    padding: 0 12px 12px 12px;
}
.icon{
    position: relative;
    width:20px;
    height:20px;
    border:1px solid var(--secondary-color);
    border-radius:50%;
    background-color: var(--secondary-color);
    flex-shrink: 0;
}
.icon::after{
    position: absolute;
    content:' ';
    top:50%;
    left:50%;
    transform:translate(-50% , -50%);
    background: var(--white);
    width:80%;
    height:2px;
}
.icon::before{
    position: absolute;
    content:' ';
    top:50%;
    left:50%;
    transform:translate(-50% , -50%);
    background:var(--white);
    width:2px;
    height:80%;
    transition:all 0.36s ease;
}
.active-bg .icon::after{
    display:none;
}
.active-bg .icon::before{
    transform:translate(-50% , -50%) rotate(90deg);
}

/* <------------contact-section------------> */

 .contact-section{
    background-color:var(--background-color);
 }
 .contact-section .sec-header{
    justify-content: flex-start;
 }
 .contact-inner{
    display: flex;
    background-color:var(--white);
   
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    z-index:1;
 }
 .address ul{
    display: flex;
   gap:8px;
   justify-content: center;
 }
 .address:last-of-type ul li:first-child{
    font-size:1rem;
    margin-bottom:0;
    font-weight: 400;
 }
 .address ul li span{
    font-weight:600;
 }
 .contact-section h3{
    font-weight: 600;
    font-size: 2rem;
 }
 .contact, .btm-cnct{
   width:100%;
 }
 .input-group{
    width:100%;
    padding:0 40px;
    display: flex;
    flex-wrap: wrap;
    gap:16px;
 }
 .contact-section .right-content{
   display: flex;
   flex-direction: column;
   gap:24px;
 }

 .contact-left-content, .address{
    display: flex;
 }
 .contact-left-content{
    flex-wrap: wrap;
    justify-content: center;
    padding:40px;
 }
 .address{
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid #dedede;
 }
 .address:last-child{
    border:none;
 }
 .cn-logo{
    width:35px;
    height:35px;
    padding:10px;
    background-color: var(--secondary-color);
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius:50%;
 }
 .cn-logo svg{
    width:20px;
    height:20px;
 }

 .address li a:hover{
     color:var(--hover-color);
 }
 .btn-in{
    display: flex;
 }
 .btm-cnct{
    display:flex;
    flex-wrap: wrap;
    width:100%;
    padding:0 40px;
 }
 .btm-cnct .address{
    width:50%;
 }
 .right-content iframe{
    height:100%;
 }
 /* <------------footer------------> */

 footer{
    background-color: var(--primary-color);
 }
 .footer-in,  .foot-menu , .footer-box {
    display: flex;
 }
 .footer-in{
    padding:100px 0;
   flex-wrap:wrap;
   column-gap:20px;
   row-gap:24px;
 }
 .footer-box{
    flex:18.33%;
 }
 .foot-menu li a,  .footer-box  h6{
    color:var(--white);
 }
 .foot-menu li a{
    transition:all 0.36s ease;
 }
 .foot-menu li a:hover{
    color:var(--secondary-color);
 }
 .foot-menu{
    gap:16px;
 }
 .social-icon li a{
   width:40px;
   height:40px;
   border-radius:50%;
   border:1px solid var(--white);
   display: inline-block;
   padding:10px;
 }
 .social-icon li a>svg{
    width:100%;
    height:100%;
 }
 .social-icon li a:hover>svg{
    fill:var(--secondary-color);
 }
 .social-icon li a>svg{
    fill:#fff;
 }
 .bottom-footer{
    padding:30px 0 20px 0;
    text-align: center;
    border-top:1px solid #dedede;
 }

/* <------------media------------> */

@media(max-width:1440px) {
    h1{
        font-size:3.5rem;
        line-height: 74px;
     }
    .service-box{
        flex:calc(33.33% - 24px);
    }
    .service-box:last-of-type{
        max-width:calc(34.33% - 24px);
    }
    .primary-menu {
        gap: 10px;
    }
    .collaspan {
        gap: 24px;
    }
    .location-content {
        bottom:0;
    }

}
@media(max-width:1024px) {
    .gap-64{
        gap:32px;
    }
    h1 {
        font-size:2.5rem;
        line-height: 65px;
    }
    .location-box {
        max-width: calc(33.3% - 20px);
    }
}
@media(max-width:991px) {
    .py-100{
        padding:70px 0;
    }
    /* <------mobile-wrapper-------> */
    
    .nav-open .close {
        display: inline-block;
    }
    .mobile-wrapper .close svg {
        width: 100%;
        height: 100%;
    }
    .mobile-wrapper .close svg>path {
        fill: var(--white);
    }
    .mobile-wrapper::after {
        position: fixed;
        content: '';
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: width 0.36s ease-in-out;
        display: block;
        z-index: -1;
    }
    .mobile-wrapper::after {
        opacity: 1;
        width: 100%;
    }
    .mobile-toggle {
        display: flex;
    }
    .collspan {
        display: none;
        display: block;
        width: 250px;
        height: 100%;
        position: fixed;
        background-color: var(--primary-color);
        opacity: 0;
        left: -100%;
        top: 0;
        z-index: 99;
        border-right: 3px solid var(--secondary-color);
        transition: all 0.4s ease-in-out;
        overflow: hidden;
    }
    .mobile-wrapper {
        opacity: 1;
        left: 0;
    }
    .primary-menu {
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        padding-left: 20px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .primary-menu li a {
        color: var(--white);
    }
    header .btn {
        padding-top: 30px;
        padding-left: 20px;

    }
    header .btn a {
        padding: 12px 16px;
        border: 1px solid transparent;
    }
    header .btn a:hover {
        border-color: var(--white);
    }


    /* <------mobile-wrapper-over-------> */
    .gap-32{
        gap:24px;
    }
    .gap-64{
        gap:40px;
    }
   .hero-section {
    padding: 250px 0 150px 0;
  }
    h2{
        font-size:2rem;
    }
    .contact-inner{
        flex-direction: column;
    }
    .contact-left-content,  .contact-section .right-content{
        width:100%;
    }
    .contact-left-content{
        padding:24px;
    }
    .left-content{
        width:100%;
    }
    .right-content{
        display:none;
    }
    .service-box {
        flex:calc(50% - 24px);
    }
    .service-box:last-of-type, .location-box{
        max-width:calc(51% - 24px);
    }
   /* .location-content{
        bottom: -95px;
    }*/
    .right-content iframe{
        height:400px;
     }
     .contact-section h3 {
        font-size: 1.5rem;
      }
      .video-in {
        margin-bottom: -250px;
      }
      .faq-section {
        padding-top: 180px;
      }
      .primary-menu {
        gap:20px;
      }
      .footer-box{
        flex:32.33%;
     }
     .footer-box:last-of-type{
        flex-grow:0;
     }
}
@media(max-width:768px) {
    .py-100{
        padding:50px 0;
    }
   h1{
    font-size: 2.1rem;
    line-height: 52px;
   }
    h3{
        font-size:1.325rem;
    }
    h4{
        font-size:1rem;
    }
    .hero-section {
        padding: 230px 0 130px;
      }
    .banner-content p {
        width: 100%;
    }
    
   .faq-container{
    flex-direction: column;
    }
   .faq-container .w-50{
    width:100%;
    }
   .footer-in{
    gap:24px;
    padding:50px 0;
   }
   .footer-box {
    flex:100%;
  }
  
}
@media(max-width:612px) {
    h1 {
        font-size:1.75rem;
        line-height:40px;
    }
    .hero-section {
        padding: 200px 0 100px 0;
    }
    .sec-header{
        gap: 5px !important;
      }
    .tab-menu li a {
        padding: 10px 5px;
        font-size:1rem;
    }
    .video-in{
        margin-bottom:0;
     }
    .tab-content-inner h3 {
        margin-bottom:16px;
    }
    .faq-section {
        padding-top:unset;
      }
}
@media(max-width:576px){
    .py-100{
        padding:30px 0;
    }
    .service-box{
        flex:100%;
     }
     .service-box:last-of-type,  .location-box{
         max-width:100%;
     }
     .gap-64 {
        gap: 24px;
      }
     .btm-cnct{
        flex-direction: column;
     }
     .btm-cnct .address {
        width: 100%;
      }
      .video-section{
        width:100%;
      }
}
@media(max-width:478px){
    .hero-section {
        padding: 150px 0 50px 0;
      }
   
      h2 {
        font-size: 1.5rem;
        line-height: 32px;
      }
    
      .gap-24 {
        gap:18px;
      }
      .tab-menu li {
        width: 45%;
        flex: none;
      }
      .left-content {
        padding:20px;
      }
     
}