*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Globals */
body{
    background: #ffffff;
    color: #1C1E30;
    overflow-x: hidden;
}
html{
    font-family: 'Inter';
    scroll-behavior: smooth;
}
.container{
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}
a{
    text-decoration: none;
    color: #1C1E30;
}
ul{
    list-style: none;
}
img{
    max-width: 100%;
}
h1,h2,h3,h4{
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
h1{
    font-size: 5rem;
    font-weight: 700;
    line-height: 125%;
}
h2{
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 140%;
}
h3{
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
}
h4{
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 140%;
}
h5{
    font-weight: 500;
    font-size: 2.25rem;
    line-height: 150%;
}
h6{
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 150%;
}
.flex{
    display: flex;
}
.flex-center{
    display: flex;
    align-items: center;
}
.flex-between-center{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-between-start{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.flex-center-col{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex-center-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-center-center-col{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btn{
    display: inline-block;
    transition: all .25s ease;
    text-align: center;
}
.btn:hover{
    /* background: #6166ec; */

}
.btn-primary{
    background: #1C1E30;
    color: #fff;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1rem;
}
.btn-secondary{
    background: #00B6B1;
    border-radius: 200px;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 21px;
    padding: 1.4em 4.5em;
}
.show{
    display: block !important;
}
.italic{
    font-style: italic;
}
.lobster{
    font-family: 'Lobster';
    font-style: normal;
    font-weight: 400;
}



@media screen and (max-width: 1390px){
    html{
        font-size: 90%;
    }
}
@media screen and (max-width: 1024px){
    html{
        font-size: 86%;
    }
}
@media screen and (max-width: 767px){
    .container{
        width: 90% !important;
        margin: 0 auto;
    }
    .mobile-hide{
        display: none !important;
    }
    h1{
        font-size: 2.616rem;
    }
    h2,h4,h3{
        font-size: 2.326rem;
    }
    .btn{
        width: 100%;
    }
}
@media screen and (min-width: 768px){
    .desktop-hide{
        display: none;
    }
}

/* --------------- Navbar ------------- */
.navbar-container{
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* border: 1px solid red; */
    z-index: 99;
}
.navbar{
    padding: 1.2rem 0;
}
.navbar ul{
    gap: 2rem;
}
.navlinks ul a{
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 19px;
    transition: all .15s ease;
}
.navlinks ul a:hover{
    opacity: 0.5;
}
.navlinks{
    gap: 3rem;
}
.navbar .btn{
    display: flex;
    align-items: center;
}
.navbar .btn-primary{
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 21px;
    padding: .4em 1.8em;
    border-radius: 100px;
    background: linear-gradient(180deg, #000000 100%, #000000 100%);
    transition: all .25s ease;
}
.navbar .btn-primary:hover{
    background: linear-gradient(180deg, #33375B 90%, #1C1E30 100%);
    border-inline: px solid rgba(146, 150, 186, 0.5);
}

.navbar .btn-primary img{
    margin-bottom: -5px;
}
#hamburger{
    cursor: pointer;
}
@media screen and (max-width: 767px){
    .navbar .navlinks{
        display: none;
    }
    .navbar-container{
        height: 72px;
    }  
}

/* Mobile Navbar */
.mobile-navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #fefdff52;
    color: #1C1E30;
    z-index: 110 !important;
    display: none;
}

.slide-animate{
    position: relative;
    animation-name: move;
    animation-duration: 1.2s;
}
.mobile-navbar-header{
    width: 100%;
    margin: 0 auto;
    padding: 1.4rem 1.65rem;
    border-bottom: 1px solid rgba(57, 57, 75, 0.5);
    background: #FEFDFF;
    color: #1C1E30;
    
}
.mobile-navbar-body{  
    display: flex;
    flex-direction: column;
    width: 84%;
    margin: 0 0 0 auto;
    height: 100%;
    background: #FEFDFF;

}

@keyframes move {
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(0%);

    }
}


.mobile-navbar-body ul{
    /* gap: 1.5rem; */
    margin: 0rem auto;
    justify-content: flex-end !important;
    align-items: flex-end;
    width: 84%;
    margin-bottom: 1.5rem;
    
}
.mobile-navbar-body ul li{
    border-bottom: 1px solid #F0F1F7;
    width: 100%;
    text-align: right;
    padding: 1.5rem 0;
}
.mobile-navbar-body .btn{
    width: 84%;
    font-size:1rem;
    margin: 0.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    padding: .25rem;
}
.mobile-navbar-body .btn span{
    margin-top: -9px;
}
.mobile-navbar-body ul a{
    font-size: 1.599rem;
}

/* --------------- HERO SECTION ------------- */
.hero-container{
    /* border: 1px solid blue; */
    margin: 0 auto;
    margin-top: 100px;
    background: #F0F1F7;
    border-radius: 40px;
    width: 96%;
    padding-top: 4rem;
    padding-bottom: 3rem;
}
.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-text{
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.tag{
    font-style: italic;
    font-weight: 600;
    font-size: 1rem;
    line-height: 125%;
}
.hero-text h1{
    margin-bottom: 1.7rem
}
.hero-text p{
    font-weight: 400;
    font-size: 1.125;
    line-height: 150%;
    opacity: 0.7;
    margin-bottom: 1.7rem
}
.hero-buttons{
    /* mar */
    gap: 1.2rem;
}
.hero-imgs{
    height: 387px;
    width: 100%;
    background: #C7C9DB;
    border-radius: 40px;
    margin-top: 20rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-imgs-wrap{
    width: 100%;
    position: absolute;
    bottom: 0px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.blue-star,
.red-heart{
    position: absolute;
}
.blue-star{
    left: 10%;
    top: -12%;
}
.red-heart{
    right: 15%;
    top: -8%;
}

@media screen and (max-width: 850px){
    .blue-star{
        top: -25%;
    }
    .red-heart{
        top: -19%;
    }
    .hero-imgs{
        margin-top: 7.75rem;
    }
    .hero-text{
        width: 90%;
    }
    
}

@media screen and (max-width: 767px){
    .hero-container{
        margin-top: 72px;
        border-radius: 0px;
        padding-top: 3.5rem;
        padding-bottom: 0rem;
    } 
    .hero-imgs{
        margin-top: 3rem;
    } 
    .hero-img-mob{
        margin-top: 3rem;
    }
}


/* --------------- About SECTION ------------- */
.about-container{
    padding-top: 3.5rem;
}
.about-text{
    width: 45%;
}
.about-img{
    width: 55%;
}
.about-text h2{
    margin: 1.5rem 0;
    font-style: normal;
    color: #1C1E30;
}
.about-text p,
.tell-text p{
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
    width: 85%;
}
.about-text p{
    margin-bottom: 1.9rem;

}

@media screen and (max-width: 767px){
    .about{
        flex-direction: column;
    }
    .about-text,
    .about-img{
        width: 100%;
        margin:0 0 2rem 0;
    }
    .about-img{
        margin-top: 1.8rem;
    }
}

/* --------------- Web SECTION ------------- */
.web-container{
    margin: 0 auto;
    background: #1C1E30;
    border-radius: 40px;
    width: 96%;
    padding-top: 5rem;
    color: #fff;
    margin-top: 3.1rem;
}
.web-text{
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.web .tag{
    color: #fff;
}
.italic{
    font-style: italic;
    font-weight: 400;
}
.web h3{
    margin: 1.25rem 0 ;
}
.web p{
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    color: #FEFDFF;
    opacity: 0.7;
    width: 96.5%;
    margin:  0 auto;
}
.switch-text{
    margin-top: 1.75rem;

}
.switch-text p{
    color: #fff !important;
    opacity: 1;
    gap: 2rem;

}
.switch-text p span{
    margin-left: .2rem;
}
.switch-img-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
.switch-img{
   margin-top: 1.6rem;
   border-radius: 100px;
   /* padding: .1rem; */
   background: #F0F1F7;  
   border: 1px solid #F0F1F7;  
    position: relative;
   /* animation: toggleBg 2s infinite ease; */
   animation: switchBg 4s infinite alternate;

}
.moon,
.sun{
    padding: .5rem;
    opacity: .5;
}
.moon{
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
   animation: moonEffect 4s infinite alternate;

}
.switch-active{
    position: absolute;
    width: 29px;
    height: 29px;
    background-color: white;
    border-radius: 100px;
    opacity: 1;
    left: 0.13rem;
    animation: toggleCircle 4s infinite alternate;
}
@keyframes toggleCircle {
    0%{
        transform: translateX(0);  
    }
    50%{
        transform: translateX(104%);     
    }
    100%{
        transform: translateX(0);  
    }
}
@keyframes switchBg {
    0%{
        background: #F0F1F7;  
 
    }
    50%{
        background: #1C1E30;       
    }
    100%{
        background: #F0F1F7;  

    }
}
@keyframes moonEffect {
    0%{
        -webkit-filter: invert(0%); /* Safari/Chrome */
        filter: invert(0%); 
 
    }
    50%{
        -webkit-filter: invert(100%); /* Safari/Chrome */
        filter: invert(100%);      
    }
    100%{
        -webkit-filter: invert(0%); /* Safari/Chrome */
        filter: invert(0%);
    }
}

.web-img{
    margin-top: 3.8rem;
    position: relative;
}
.web-img img{
    z-index: 2;
}
.blue-gradient,
.pink-gradient{
    width: 0.1px;
    height: 0.1px;
    position: absolute;
    top: 20%;
    z-index: 0;
}
.blue-gradient{
    box-shadow: 0px 0px 290px 150px #00d8aa;
    left: 25%;
}
.pink-gradient{
    box-shadow: 0px 0px 290px 150px #FC3655;
    right: 25%;
}

@keyframes toggleBg{
    from{
        background: #F0F1F7;    
    }
    to{
        background: #1C1E30;
    }
}


@media screen and (max-width: 767px){
    .web-text{
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
}


/* --------------- Tell SECTION ------------- */
.tell-container{
    margin-top: 3.6rem;
}
.tell-text,
.tell-img{
    width: 50%;
}
.tell-text{
    padding-right: 9rem;
    margin-top: -1.5rem;
}
.tell-text h2{
    margin: 1.35rem 0;
}
.tell-img-wrap{
    width: 80%;
    background: #F0F1F7;
    border-radius: 30px;
    margin: 0 0 0 auto;
    padding-top: 2.85rem;
}
.tell-img-wrap-container{
    /* border: 1px solid red; */
    width: 375px;
    height: 657px;
    overflow: hidden;
    margin: 0 auto;
}

.slideshow-container img{
    width: 375px;
    display: inline-block;
}
.slideshow-container {
    width: 1515px;
    transition: 1s ease;
    /* height: 225px; */
}
.slide {
    animation: slide 24s ease infinite;
  }
  
@keyframes slide {
    0% {
        transform: translateX(0%);
    }

    12.5% {
        transform: translateX(0%);
    }

    25% {
        transform: translateX(-25%);
    }

    37.5% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    62.5% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-75%);
    }

    87.5% {
        transform: translateX(-75%);
    }

    99% {
        transform: translateX(-75%);
    }

    100% {
        transform: translateX(0);
    }
}
.fade{
    position: relative;
}
.fade .img2,
.fade .img3,
.fade .img4{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.fade .img2{
    opacity: 0;
    animation: fadeIn2 20s infinite ease;
    animation-delay: 0s;
}
.fade .img3{
    opacity: 0;
    animation: fadeIn3 20s infinite ease;
    animation-delay: 0s;
}
.fade .img4{
    opacity: 0;
    animation: fadeIn4 20s infinite ease;
    animation-delay: 0s;
}

@keyframes fadeIn2 {
    0%{              
        opacity: 0; 
    }
    15%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    45%{
        opacity: 1;
    }
    60%{
        opacity: 0;
    }
    75%{
        opacity: 0;
    }
    90%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
@keyframes fadeIn3 {
    0%{              
        opacity: 0; 
    }
    15%{
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    45%{
        opacity: 0;
    }
    60%{
        opacity: 1;
    }
    75%{
        opacity: 1;
    }
    90%{
        opacity: 0;
    }
    100%{
        opacity: 0;
    }
}
@keyframes fadeIn4 {
    0%{              
        opacity: 0; 
    }
    15%{
        opacity: 0;
    }
    30%{
        opacity: 0;
    }
    45%{
        opacity: 0;
    }
    60%{
        opacity: 0;
    }
    75%{
        opacity: 0;
    }
    88%{
        opacity: 1;
    }
    95%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.tell2{
    flex-direction: row-reverse;
    justify-content: space-between;
}
.tell2 .tell-text{
    padding-left: 4rem;
    padding-right: 5rem;

}
.tell2 .tell-img-wrap{
    width: 80%;
    background: #F0F1F7;
    border-radius: 30px;
    margin: 0 auto 0 0;
}
.tell-text p{
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 150%;
    width: 100%;
}

@media screen and (max-width: 850px){
    .tell-text {
        padding-right: 5rem;
      }
}

@media screen and (max-width: 767px){
    .tell-container{
        margin-top: 7rem;
    }
    .tell-container .container{
        width: 100% !important;
    }
    .tell{
        flex-direction: column;
    }
    .tell-text,
    .tell-img{
        width: 100%;
    }
    .tell-text {
        padding-right: 0rem;
        width: 90%;
        margin: 0 auto;
    }
    .tell-img{
        margin-top: 0rem;
    }
    .tell-img-wrap,
    .tell2 .tell-img-wrap {
        width: 100%;
        margin: 1rem auto;
        padding-top: 2rem;
    }
    .tell2 .tell-img-wrap {
        padding-top: 0rem;
    }
    .tell-img-wrap-container,
    .slideshow-container img{
        width: 355px;
    }
    .slideshow-container {
        width: 1433px;
    }
    .tell2 .tell-text {
        padding: 0;
    }

    .fade-wrap ,
    .slideshow-container {
        
        transform: scaleY(0.9);
    }
    
}


/* --------------- Partner SECTION ------------- */
.partner-container{
    background: #F0F1F7;
    margin-top: 2.7rem;
    padding: 4rem 0 2.5rem 0;
}
.partner-text,
.partner-img{
    width: 50%;
}
.partner-text{
    padding-right: 4rem;
}
.partner-text p{
    font-weight: 400;
    font-size: 1.063rem;
    line-height: 150%;
    opacity: 0.7;
}
.partner-options-wrap{
    margin-top: 2.75rem;
    width: 80%;
    margin-left: 1.05rem;
}
.partner-option{
    padding-left: 2.75rem;
    border-left: 2px dashed #00B6B1;
    border-top: 2px dashed transparent;
    position: relative;
    cursor: pointer;
    padding-bottom: 2.2rem;
    transition: all .35s ease-out;
}
.partner-option:last-child{
    border-left: none;
}
.partner-option img{
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%,-10%);
}
.partner-option h6{
    margin-top: -.3rem;
}
.partner-option-unactive{
    opacity: 0.4;
}
.partner-option-unactive img{
    filter: grayscale(1);
}
.partner-img{
    padding-top: 10rem;
}
.partner-img-wrap{
    background: #D7D9E5;
    border-radius: 30px;
    width: 80%;
    margin: 0 0 0 auto;
    overflow: hidden;
    position: relative;
}
.partner-img-wrap img{
    transform: translateY(10%);

}
.default-image{
    position: relative;
    z-index: 10 !important;
    animation: fade 6s infinite ease;
    animation-delay: 0s;
}
.second-image{
    position: absolute;
    bottom: 0;
    transform: translateX(50%);
}

@keyframes fade {
    0%{
        opacity: 1;
    }
    5%{
        opacity: 0;

    }
    20%{
        opacity: 0;
    }
    40%{
        opacity: 1;
    }
    100%{
        opacity: 1;
    }
}


@media screen and (max-width: 767px){
    .partner-container{
        padding-bottom: 0;
    }
    .partner{
        flex-direction: column;
    }
    .partner-text,
    .partner-img{
        width: 100%;
        padding-right: 0rem;

    }
    
    .partner-options-wrap-mobile{
        margin: 2.9rem 0 0rem 0;
    }
    .partner-option-mobile{
        border-top: 1px dashed #00B6B1;
        width: 20%;
        padding-bottom: .25rem;
        position: relative;
        height: 40px;
        cursor: pointer;
        transition: all .35s ease-out;
        -webkit-tap-highlight-color: transparent;
    }
    .partner-option-mobile:last-child{
        border-top: none;

    }
    .partner-option-mobile img{
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0%,-50%);
    }
    .partner-img-wrap {
        width: 80%;
        margin: auto;
      }
    .partner-img {
        padding-top: 0rem;
        margin-top: 1.5rem;
        background: #D7D9E5;
        width: 100vw !important;
        transform: scaleY(0.9);
        transform: translateY(0%);

    }
    .partner-img-wrap img,
    .default-img {
        transform: translateY(0%);
        transform: scale(0.9);
        /* height: 50% !important; */
    }
}



/* --------------- Plans SECTION ------------- */
.plans-container{
    padding: 3.5rem 0 5rem 0;
    background: #1C1E30;
    color: #FEFDFF;
}
.plans-header{
    text-align: center;
}
.plans-header h2{
    width: 50%;
    margin: 0.75rem auto 0.5rem auto;
}
.plans-wrap{
    gap: 1.75rem;
    margin-top: 2.25rem;
    position: relative;
    z-index: 10 !important;
    /* backdrop-filter: blur(100px); */
}
.plan-item{
    width: 50%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.2rem 2.5rem 2.2rem 2.5rem;
    position: relative;
}
.plan-item__header{
    margin-bottom: 1.7rem;
}
.plan-item h5{
    font-weight: 500;
    font-size: 2.25rem;
    line-height: 125%;
    margin-bottom: .65rem;
    position: relative;
}
.plan-item p,
.per-month{
    font-weight: 400;
    font-size: 1rem;
    line-height: 125%;
    opacity: 0.5;
}
.per-month{
    margin-left: .5rem;
}
.dollar{
    font-weight: 600;
    font-size: 2rem;
    line-height: 125%;
}
.plan-item__body h6{
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 125%;
    margin-bottom: .85rem;
}
.plan-item__body ul li{
    font-weight: 500;
    font-size: 1rem;
    line-height: 125%;
    margin: 1.1rem 0;
}
.plan-item__body ul li img{
    margin-right: .39rem;
}
.package{
    font-weight: 400;
    opacity: 0.7;
    margin-left: .5rem;
}
.plan-item__body_list{
    gap: 4.35rem;
}
.plan-item .btn{
    width: 100%;
    border-radius: 100px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    margin-top: .8rem;
}
.plans .blue-gradient,
.plans .pink-gradient{
    top: 50%;
    opacity: .9;
    z-index: -1 !important;
}
.i-details{
    background: #F5F5F5;
    padding: .5rem .7rem .5rem .5rem;
    border-radius: 60px;
    color: #000;
    position: absolute;
    width: 300px;
    /* left: 18%; */
    top: 4px;
    right: 0;
    transform: translateX(90%);
    z-index: -1 !important;
    gap: .5rem;
    margin-bottom: .65rem;
    display: none;
}
.i-details p{
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
}
#plan-i:hover{
    opacity: 0;
}


@media screen and (max-width: 1150px){
    .plan-item__body_list {
        gap: 2rem;
    }
}
@media screen and (max-width: 950px){
    .plan-item__body_list {
        gap: 0rem;
        flex-direction: column;
    }
    .plan-item__body ul li{
        margin: 0 0 1.1rem 0;
    }
    .plans-header h2 {
        width: 80%;
    }
}

@media screen and (max-width: 767px){
    .plans-wrap{
        flex-direction: column;
        gap: 0.9rem;
    }
    .plan-item__header{
        flex-direction: column;
        align-items: flex-start;
    }
    .plan-item,
    .plans-header{
        width: 100%;
    }
    .plans-container{
        padding: 3rem 0 2.15rem 0;
    }
    .i-details{
        width: 150px;
        border-radius: 10px;
        top: 0px;
        right: 10px;
    }
}


/* --------------- Download SECTION ------------- */
.download-container{
    padding: 4rem 0 10rem 0;
}
.download h2{
    margin: 1.25rem 0;
}
.download .hero-text{
    margin-bottom: .9rem;
}
.download .hero-buttons{
    margin-bottom: 4.3rem;
}
.download img{
    width: 150%;
}


@media screen and (max-width: 767px){
    .download-container {
        padding: 4rem 0 4rem 0;
    }
    .download .hero-buttons{
        margin-bottom: 6rem;
    }
}


/* --------------- Footer SECTION ------------- */
.footer-container{
    padding: 3rem 0;
}
.footer-main{
    background: #F0F1F7;
    border-radius: 20px;
    padding: 2.4rem 3.8rem 2.4rem 3.8rem;
}
.footer-main ul{
    gap: 1.85rem;
}
.footer-terms{
    margin-top: 2.5rem;
    padding: 0 3.8rem;
}
.terms{
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 24px;
    font-feature-settings: 'salt' on, 'liga' off;
    color: #0B0B0B;
}
.footer-terms .navlinks ul{
    gap: 2.85rem;
}
.footer-terms .navlinks a{
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 24px;
    text-decoration: underline;
    font-feature-settings: 'salt' on, 'liga' off;
    color: #1C1E30;
    opacity: 0.5;
}
.footer-terms .navlinks a:hover{
    text-decoration: none;
}

@media screen and (max-width: 767px){
    .footer-main,
    .footer-main ul{
        flex-direction: column;
        gap:2rem;
    }
    .footer-terms{
        flex-direction: column-reverse;
        padding: 0;
        gap: 1.5rem;
    }
}