/*==============================
GENERAL STYLES
===============================*/
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
    color: #000000;
    font-family: 'Oswald', sans-serif;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.srcn-container {
    width: 90%;
    max-width: 1680px;
    margin: 0 auto;
}

/*==============================
HEADER
===============================*/
.header-altair-area {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    height: 72px;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-altair-area.scrolled {
    background-color: rgba(12, 18, 12, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(66, 159, 2, 0.3);
    height: 66px;
}

.header-altair-wrapper-container {
    width: 100%;
}

.header-altair-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-altair-logo a {
    display: flex;
    align-items: center;
}

.header-altair-logo a img {
    width: auto;
    height: 52px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.header-altair-logo a:hover img {
    transform: scale(1.03);
}

.header-altair-list {
    display: flex;
    gap: 28px;
    align-items: center;
}

.header-altair-item {
    position: relative;
}

.header-altair-item a {
    color: #ffffff;
    font-weight: 500;
    padding: 8px 4px;
    display: block;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.header-altair-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #429f02;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.header-altair-item a:hover {
    color: #429f02;
}

.header-altair-item a:hover::after {
    width: 100%;
}

.header-altair-col-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-language-switcher {
    display: flex;
    align-items: center;
}

.language-desktop {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    border: none;
    border-radius: 20px;
    color: #e0e0e0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #fff;
    background-color: rgba(66, 159, 2, 0.3);
}

.lang-btn.active {
    background-color: #429f02;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(66, 159, 2, 0.4);
}

.language-mobile {
    display: none;
}

.lang-select {
    width: 80px;
    height: 36px;
    border: 1px solid #429f02;
    border-radius: 20px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    background: #111;
    color: #fff;
}

.header-altair-hamburger {
    display: none;
}

.header-altair-hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.header-altair-hamburger-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-link {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

/* Morphing Hamburger animation when active */
.header-altair-hamburger-btn.active .hamburger-link:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header-altair-hamburger-btn.active .hamburger-link:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.header-altair-hamburger-btn.active .hamburger-link:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-altair-phonelogo {
    display: none;
}

.header-altair-close-btn {
    display: none;
}

.header-altair-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1020;
}

.header-altair-overlay.active {
    opacity: 1;
    visibility: visible;
}


/*==============================
HERO SECTION
===============================*/

.hero-section {
    background-color: #1a1a1a;
    background-image: linear-gradient(rgb(0 0 0 / 12%), rgb(0 0 0 / 13%)), url(../images/altair-banner.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.altair-container{
    position:relative;
    z-index:2;
    display:flex;
    align-items: center;
    justify-content:space-between;
    gap:60px;
    width:100%;
}

.hero-content{
    max-width:520px;
    color:#fff;
    text-align: start;
}

.hero-content h1{
    font-weight: 600;
    line-height:1;
    font-size: clamp(36px, 6vw, 72px);
    margin-bottom:18px;
    color: #fff;
}

.hero-content h3{
    font-weight: 500;
    color:#32d533;
    margin-bottom:20px;
    line-height:1.3;
    font-size: clamp(18px, 3vw, 35px);
}

.hero-content p{
    line-height:1.6;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

.hero-product{
    display:flex;
    flex-direction:column;
    align-items:center;
    width:360px;
}

.tractor-logo{
    width:110px;
    margin-bottom:35px;
}

.product-pack{
    width:100%;
    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));
    transition:.4s;
}

.product-pack:hover{
    transform:translateY(-8px);
}

/*==============================
AFTER BANNER SECTION
===============================*/
.after-banner-section {
    background-color: #f4f4f4;
    padding: 80px 0;
}

.after-banner-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

/*==============================
STAR BANNER SECTION
===============================*/
.star-banner-section {
    padding: 80px 0;
    background: #fff;
}

.altair-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 23px;
    align-items: center;
}

.star-col-lift {
    width: 100%;
}

.star-altair-img {
    width: 100%;
}

.star-altair-img img {
    width: 100%;
    display: block;
    height: 640px;
    object-fit: scale-down;
}


.star-col-right {
    width: 100%;
}

.star-card-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px 30px;
    padding-top: 34px;
}

.star-card-col {
    text-align: center;
}

.Star-card-img-area {
    margin-bottom: 22px;
}

.star-card-img {
    width: 113px;
    height: 125px;
    margin: auto;
}

.star-card-img img {
    width: 100%;
    display: block;
}

.star-card-content p {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    font-family: 'Noto Sans', sans-serif;
}
.star-altair-video {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.altair-video {
    width: 100%;
    max-width: 900px; /* apne design ke hisaab se change kar sakte hain */
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

.altair-video canvas {
    display: none; /* agar canvas ki zarurat nahi hai */
}

.altair-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.star-banner-section h2 {
    color: #39d430;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 10px;
    z-index: 999;
    position: relative;
    text-transform: uppercase;
}
.star-col-right p {
    font-size: 18px;
    line-height: 38px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    text-align: start;
}
.star-banner-section>.srcn-container>p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

/*========================================
  WEED CONTROL SECTION
========================================*/

.weed-control-section {
    padding: 80px 0;
    background: #fff;
}


.section-heading {
    max-width: 900px;
    margin: 0 auto 43px;
    text-align: center;
}

.section-heading .sub-title {
    display: inline-block;
    color: #0b7d39;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    max-width: 760px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
}

.heading-line {
    width: 90px;
    height: 4px;
    background: #0b7d39;
    margin: 25px auto 0;
    display: block;
    border-radius: 20px;
}

.weed-control-wrapper-box{
    width:100%;
}
    

.weed-control-wrapper{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap: 13px;
}

.weed-control-slide{
    width:100%;
    height: 100%;
}

.weed-control-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
    padding: 10px 10px 0px 10px;
}

.weed-control-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.weed-control-img{
    overflow:hidden;
    border-radius: 15px;
}

.weed-control-img img{
    width:100%;
    display:block;
    aspect-ratio:1/1;
    object-fit:cover;
    transition:.5s;
}

.weed-control-card:hover img{
    transform:scale(1.08);
}

.weed-control-content{
    padding: 17px 10px;
    text-align:center;
}

.weed-control-content h5{
    font-size: 17px;
    font-weight: 400;
    color:#111;
    line-height:1.4;
    margin:0;
}

/*========================================
  AT-35 BANNER
========================================*/

.at-35-banner {
    width: 100%;
     /* Desktop Height */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 60rem;
    padding: 50px 0;
}

/*========================================
  ALTAIR FARMER SECTION
========================================*/
.altair-farmer-section{
    padding: 116px 0;
    position:relative;
    overflow:hidden;
    /* background:
    radial-gradient(circle at center,#7b5c1a 0%,#5b4312 45%,#3d2c0c 100%); */
}

.solution-info-content h3 {
    color: #05cb1f !important;
    z-index: 999;
    position: relative;
}
.solution-info-content p {
    color: #fff !important;
    z-index: 999;
    position: relative;
}
.altair-farmer-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("/asstes/images/Performance-banner-mv2.avif") center center/cover no-repeat;
    pointer-events:none;
}
.solution-details-section::before{
      background: url("/asstes/images/solution-banner.avif") center center/cover no-repeat !important;
}

.invaders-details-section::before{
      background: url("/asstes/images/invaders-banner.avif") center center/cover no-repeat !important;
}
.altair-farmer-section .container{
    position:relative;
    z-index:2;
}


.farmer-wrapper{
    display:grid;
    grid-template-columns:1fr 360px 1fr;
    align-items:center;
    gap: 123px;
}


.farmer-side{
    display:flex;
    flex-direction:column;
    gap: 59px;
}



.altair-farmer-card{
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.altair-farmer-card:hover{
    transform:translateY(-8px);
}

.altair-farmer-card img{
    width:100%;
    height: auto;
    object-fit:cover;
}

.product-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.product-center img{
    width:100%;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}

/*==================================
FEATURE
==================================*/

.feature-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    margin-top:70px;
    z-index: 999;
    position: relative;
}
.product-info-card {
    display: flex;
    align-items: self-start;
    gap: 26px;
}

.icon-circle-card-img {
    background: #159f27;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    padding: 20px;
    box-shadow: 1px 0px 2px #b5acac;
}

.icon-circle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
}

.feature-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-icon{
    width:95px;
    height:95px;
    min-width:95px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid rgba(255,255,255,.25);
}
.product-info-card-invaders{
      position: relative;
      overflow: hidden;
      background: radial-gradient(circle at top right, rgb(248 224 170 / 8%) 0%, rgb(248 224 170 / 12%) 22%, rgba(255, 255, 255, 0) 60%), #fbfaf66e;
      padding: 40px;
      border-radius: 20px;
}
.product-info-card-invaders h3{
    border-bottom: 3px solid #77b832;
    padding-bottom: 11px;
}

.product-info-card-invaders-right{
    text-align: right;
}
.feature-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.feature-content h3{
    color:#38d430;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 4px;
}

.feature-content p{
    color: #000;
    font-size: 16px;
    line-height:1.7;
    font-weight:400;
    font-family: 'Poppins', sans-serif;
}

/*========================================
  PRODUCT DETAILS
========================================*/

section.product-details-section {
    padding: 50px 0;
}
.product-details-warpper {
    width: 100%;

}
.info-content h3 {
    font-size: 30px;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
    margin-bottom: 14px;
    z-index: 99;
    position: relative;
}

.info-content p {
    font-size: 18px;
    color: #7d8796;
    line-height: 34px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 999;
    font-weight: 400;
}
    
.product-image img {
    width: 490px;
    display: block;
    margin: auto;
}

/*========================================
  ABOUT SECTION
========================================*/

.about-section {
    padding: 50px 0;
    background:#f8f8f8;
}

/*========================================
  PERFORMANCE SECTION
========================================*/
.performance-section{

background: linear-gradient(180deg, #0a412a 0%, #00361c 100%);

padding: 57px 0;
}


.performance-heading{

text-align:center;

margin-bottom: 48px;
}

.performance-heading h2{

color:#39d430;

font-weight: 700;

line-height: 1.2;

font-size: clamp(26px, 5vw, 52px);

margin-bottom: 10px;

z-index: 999;

position: relative;

text-transform: uppercase;
}

.performance-heading p{

color:#fff;

font-size: 18px;

font-weight: 300;

font-family: 'Poppins', sans-serif;

z-index: 999;

position: relative;

padding-top: 10px;
}

.performance-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    align-items:stretch;
}

.performance-card{

background:#0b6338;

border:1px solid rgba(255,255,255,.5);

border-radius:35px;

overflow:hidden;

padding:16px;

display:flex;

flex-direction:column;

font-family: 'Poppins', sans-serif;
}

.card-img{

    border-radius:22px;

    overflow:hidden;

    border:5px solid #fff;

    margin-bottom:28px;
}

.card-img img{

    width:100%;

    display:block;

    height:320px;

    object-fit:cover;
}

.card-content p{color:#fff;font-size: 18px;line-height:1.7;font-weight:400;font-family: 'Poppins', sans-serif;}

/*========================================
  FARMER CARD
========================================*/

.farmer-card{

background:#fff;

text-align:center;

justify-content:flex-start;

padding:35px 25px;
}

.farmer-img{

width: 160px;

height: 160px;

margin: 0 auto;

border:12px solid #74c52d;

border-radius:50%;

overflow:hidden;

margin-bottom: 8px;
}

.farmer-img img{

    width:100%;

    height:100%;

    object-fit:cover;
}

.farmer-card h3{font-size: 20px;color:#11452d;margin-bottom:18px;font-weight:700;}

.quote{

font-size: 60px;

color:#000;

line-height:.7;
}

.quote.right{

    text-align:right;

    margin-top:10px;
}

.testimonial{font-size: 18px;color:#222;line-height:1.6;font-weight:500;font-family: 'Poppins', sans-serif;}

/*========================================
  FAQ
========================================*/
.faq-contnet-box {
    text-align: center;
    padding-bottom: 47px;
}
.innovation-title {
    letter-spacing: -1px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 52px);
}
.faq-contnet-box p {
    font-size: 18px;
    line-height: 32px;
    color: #141313;
    font-weight: 300;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.featured-post-item:hover .featured-post-content h4 {
    color: #2055c7;
}

.faq-contnet {
    padding: 10px 0 30px;
}

.faq-item {
    background: #fff;
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 22px;
    text-align: left;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 21px;
    position: relative;
    color: #000;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

.faq-question::before {
    content: "Q. ";
    font-weight: 700;
    margin-right: 6px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 18px;
    font-size: 39px;
    TOP: 0PX;
    COLOR: #424242;
}

.faq-item.active .faq-question {
    background-color: #f0f0f0;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 7px 20px 20px;
    font-size: 16px;
    line-height: 223%;
    color: #141313;
    font-weight: 300;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/*========================================
  TESTIMONIAL
========================================*/
section.testimonial-section {
    padding: 50px 0;
}
.testimonial-tabs{
    display:flex;
    gap:3px;
    margin-bottom:20px;
}

.tab-btn{
    flex:1;
    padding:18px;
    border:none;
    background:#34d11f;
    color:#000;
    font-size:28px;
    cursor:pointer;
    transition:.3s;
    font-family: 'Oswald', sans-serif;
}

.tab-btn.active{
    background:#16b44f;
    color:#fff;
}

.testimonial-content{padding-top: 12px;}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

/*========================================
  VIDEO
========================================*/
.video-section{
    background: linear-gradient(rgb(17 18 17 / 65%), rgb(28 30 29 / 65%)), url(/asstes/images/last-banenr.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.video-grid iframe{
    width:100%;
    height:380px;
    border-radius:18px;
    border:none;
}


.swiper-slide{
    transform:scale(.9);
    transition:.3s
}
.videoSwiper .swiper-slide {
    transform: scale(.88);
    /* opacity: .5; */
    transition: .4s;
}
/* .swiper-slide-active{
    opacity:1;
    transform:scale(1)!important;
    
}
.videoSwiper .swiper-slide-active {
    transform: scale(1) !important;
    opacity: 1 !important;
} */
.video-card{
    position:relative;
    cursor:pointer;
    border-radius:16px;
    overflow:hidden
}
video{
    width: 111%;
    height: 370px;
    object-fit:cover
}
.play{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:60px;
    background:rgba(0,0,0,.2)
}
.swiper-button-prev, .swiper-button-next {
    width: 50px !important;
    height: 50px !important;
    background: #fff;
    border-radius: 50%;
    color: #000 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    }

    .swiper-button-prev::after, .swiper-button-next::after {
    font-size: 17px !important;
    font-weight: bold;
    }

    .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    pointer-events: none;
}

/*========================================
  CONTACT
========================================*/

.info-box{
    display:flex;
    align-items:center;
    gap:25px;
    margin-bottom:38px;
}
.form-col-box {
    width: 100%;
    display: flex;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.info-box .icon{
    width:42px;
    min-width:42px;
    font-size:38px;
    color:#32d11d;
}

.info-box .text{
    color:#fff;
    font-size:24px;
    line-height:1.5;
    word-break:break-word;
}

.contact-form{
    background:#fff;
    padding:25px;
    box-shadow:0 20px 40px rgba(0,0,0,.20);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #d7dce2;
    padding:16px;
    font-size:18px;
    outline:none;
    transition:.3s;
}

.contact-form textarea{
    height:140px;
    resize:none;
    margin-top:20px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#30cf1d;
}

.contact-form button{
    width:100%;
    height:55px;
    margin-top:20px;
    border:none;
    background:#30cf1d;
    color:#fff;
    font-size:28px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#189b10;
}
.solution-circle-card-img img {
    position: relative;
}
.testimonial-container {
    width: 80%;
    margin: 0 auto;
}


.footer-area {
    background: #fff;
    padding: 25px 0;
    border-top: 1px solid #e5e5e5;
}


.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-col-lift {
    flex: 1;
}

.footer-title-heading p {
    margin: 0;
    color: #222;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/*==========================
    SOCIAL ICONS
==========================*/

.footer-col-right {
    display: flex;
    justify-content: flex-end;
}

.footer-col-box {
    display: flex;
    align-items: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social li {
    list-style: none;
}

.footer-social li a {
    width: 48px;
    height: 48px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    transition: .35s ease;
}

.footer-social li a:hover {
    background: #2c7a2c;
    transform: translateY(-5px);
}

.footer-social li a i {
    line-height: 1;
}

/*==========================
    TABLET
==========================*/

@media (max-width:991px){

.footer-row{
    flex-direction: column;
    text-align: center;
}

.footer-col-right{
    justify-content: center;
}

}

/*==========================
    MOBILE
==========================*/

@media (max-width:767px){

.footer-area{
    padding:20px 0;
}

.footer-title-heading p{
    font-size:14px;
}

.footer-social{
    gap:10px;
}

.footer-social li a{
    width:42px;
    height:42px;
    font-size:18px;
}

}

@media (max-width:480px){

.footer-social{
    gap:8px;
}

.footer-social li a{
    width:38px;
    height:38px;
    font-size:16px;
}

.footer-title-heading p{
    font-size:13px;
    line-height:1.6;
}

}   