@media screen and (min-width: 1280px){
    header{
        width: 87vw;
        height: fit-content;
        padding: 0.5rem;
        margin-left: 6vw;
        transition: all 300ms;
        background-color: transparent;
    }
    header.scrolled{
        margin-top: 1rem;
        background-color: #ffffff52;
        border-radius: 100px;
        border: 1px solid #fc93ac6e;

    }
    header .container{
        width: 100%;
        height: fit-content;
        border-radius: 100px;
        background-color: transparent;
        transition: all 300ms;
    }
    header.scrolled .container{
        padding: 0.5rem;
        background-color: #FFFFFF;
    }
    header .container .menu{
        display: none;
    }
    header .container img.mobilelogo{
        display: none;
    }
    header .container nav.desktop{
        display: flex;
        width: 100%;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
    }
    header .container nav.desktop .links{
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    header .container nav.desktop a{
        font: 400 1rem 'Poppins';
        color: #000000;
    }
    header .container nav.desktop a.selected{
        color: #FF2A5A;;
    }
    header .container nav.desktop a:hover{
        color: #FF2A5A;
        transition: all 300ms;
    }
    header .container nav.desktop .buttons{
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    header .container nav.desktop .buttons a{
        padding: 1rem;
        border-radius: 100px;
        font: 500 1rem 'Poppins';
        color: #FF2A5A;
        border: 1px solid #FF2A5A;
    }
    header .container nav.desktop .buttons a:last-child{
        color: #FFFFFF;
        background-color: #00235f;
        border-color: #00235f
    }
    header .container nav.desktop .buttons a:hover{
        color: #FFFFFF;
        border-color: #FF2A5A;
        background-color: #FF2A5A;
        transition: all 300ms; 
    }



    section.home{
        display: flex;
        height: 105vh;
        padding-bottom: 0;
        margin-top: 0;
    }
    section.home .aside{
        width: 50%;
        margin-top: 15vh;
    }
    section.home .aside .text h1{
        font-size: 2.6rem;
        line-height: 3.5rem;
    }
    section.home .aside .text a{
        width: fit-content;
        font-size: 1rem;
    }
    section.home .image{
        height: 100%;
        width: 50%;
        overflow: hidden;
    }
    section.home .image img.main{
        top: 0;
        width: 100%;
        right: 0;
    }
    section.home .image .box{
        top: 70%;
        animation-duration: 8s; 
    }
    @keyframes box{
        0%{top: 70%;}
        50%{top: 65%;}
        100%{top: 70%;}
    }
    section.home img.card{
        position: absolute;
        width: 18rem;
        display: block;
        right: -4rem;
        top: 48%;
        z-index: 1;
    }



    section.icons{
        display: flex;
        justify-content: space-between;
        
    }
    section.icons .item{
        width: 25%;
    }



    section.cta{
        display: flex;
        align-items: center;
        gap: 10vw;
    }
    section.cta .aside{
        width: 70%;
    }
    section.cta .aside h2{
        font-size: 3rem;
        line-height: 4rem;
    }
    section.cta .aside a{
        width: fit-content;
        font-weight: 1.2rem;
    }
    section.cta .image .box{
        left: 0;
        padding: 1rem;
        gap: 1rem;
    }
    section.cta .image .box p:first-child{
        font-size: 1rem;
    }
    section.cta .image .box p:last-child{
        font-size: 1.4rem;
    }
    section.cta .image img.badge{
        width: 8rem;
    }
    section.cta .image div.shadow{
        display: block;
        width: 50%;
        left: 60%;
        transform: translateX(-50%);
        height: 0;
        position: absolute;
        bottom: 0;
        box-shadow: 0px -30px 100px 30px #ff2a5cce;
        z-index: 1;
    }



    section.products .wrapper{
        display: flex;
        gap: 0.5rem;
    }
    section.products a.button{
        width: fit-content;
        margin-inline: auto;
    }



    section.testimonials .header{
        display: block;
        position: relative;
    }
    section.testimonials .header img.element{
        position: absolute;
        top: 0;
        right: 0;
        transform: rotate(90deg);
    }
    section.testimonials .header img.badge{
        width: 8rem;
        position: absolute;
        top: 0;
        right: 30%;
        animation: rotate 15s linear infinite;
        z-index: 1;
    }
    section.testimonials .header img.logo{
        height: 7rem;
        width: 7rem;
        border-radius: 100px;
        padding: 1rem;
        background-color: #fd65891a;
        position: absolute;
        top: 0.5rem;
        right: calc(30% + 0.5rem);
    }
    section.testimonials .title{
        gap: 1rem;
    }
    section.testimonials .title h2{
        font-size: 2.5rem;
    }
    section.testimonials .wrapper{
        display: flex;
        justify-content: space-between;
        margin-top: 2rem;
    }
    section.testimonials .wrapper .item{
        position: relative;
        width: 30%;
        height: 50vh;
        border-radius: 10px;
        background-color: #dfdedd;
        background: linear-gradient(
        135deg,          
        #cccccb 0%,
        #cccccb 8%,       
        #d6d6d5 8%,
        #d6d6d5 16%, 
        #dfdedd 16%,       
        #dfdedd 100%       
    );
    }
    section.testimonials .wrapper .item img{
        display: block;
        position: absolute;
        width: 80%;
        height: 80%;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: all 300ms;
    }
    section.testimonials .wrapper .item img:hover{
        width: 90%;
        height: 90%;
    }



    section.stats h2{
        width: 60%;
        font-size: 3rem;
        margin-inline: auto;
    }
    section.stats .wrapper{
        display: flex;
        gap: 1rem;
    }
    section.stats .wrapper .card{
        padding: 1rem;
    }
    section.stats .wrapper .card.small{
        width: 45%;
        height: auto;
    }
    section.stats .wrapper .card.big{
        width: 65%;
        height: auto;
    }
    section.stats .wrapper .card img{
        height: 40vh;
        object-fit: contain;
    }
    section.stats .wrapper .card p.title{
        font-size: 1.5rem;
    }



    section.news .title{
        gap: 1rem;
    }
    section.news .title img{
        width: 3.5rem;
        height: 3.5rem;
    }
    section.news .title h2{
        font-size: 3rem;
    }
    section.news .wrapper{
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }
    section.news .wrapper .item{
        width: 34%;
    }
    section.news .wrapper .item p.paragraph{
        height: 6rem;
    }



    section.faq .wrapper{
        display: flex;
        align-items: center;
        gap: 10vw;
    }
    section.faq .wrapper .text{
        width: 50%;
    }
    section.faq .wrapper .text h2{
        margin-top: 1rem;
        font-size: 3rem;
    }
    section.faq .wrapper .questions{
        width: 50%;
    }



    .banner{
        display: flex;
        gap: 2rem;
        overflow: visible;
        align-items: center;
    }
    .banner .shadow{
        display: none;
    }
    .banner img:first-child{
        display: block;
        position: absolute;
        bottom: 0;
        width: 15rem;
    }
    .banner .text{
        width: fit-content;
        margin-left: 17rem;
    }
    .banner .text .second-title{
        gap: 1rem;
    }
    .banner .text .second-title p{
        width: fit-content;
    }
    .banner .text .second-title img{
        position: static;
    }



    footer{
        padding-top: 4rem;
    }
    footer .container{
        display: flex;
        gap: 10vw;
    }
    footer .container .brand{
        width: 30%;
    }
    footer .container .links{
        margin-top: 0;
        gap: 2rem;
    }
    footer .container .links .desktop{
        flex-direction: column;
        margin-top: 0;
        align-items: start;
        gap: 2rem;
    }
    footer .container .links .desktop p{
        width: 100%;
    }
    footer .social-media.mobile{
        display: none;
    }
    footer .social-media.desktop{
        display: flex;
    }
    footer .bottom{
        display: flex;
        justify-content: space-between;
    }
}





@media screen and (min-width: 1920px){
    body{
    --line: #7777771e;
    background-color: #f5f5f5;
    background-image: 
        linear-gradient(to bottom, var(--line) 0%, var(--line) 100%),
        linear-gradient(to bottom, var(--line) 0%, var(--line) 100%),
        linear-gradient(to bottom, var(--line) 0%, var(--line) 100%),
        linear-gradient(to bottom, var(--line) 0%, var(--line) 100%),
        linear-gradient(to bottom, var(--line) 0%, var(--line) 100%);
    background-repeat: no-repeat;
    background-size: 1px 100%;
    background-position: 
        17% 0%,
        39% 0%,
        61% 0%,
        83% 0%,
        100% 0%;
    }
    header{
        width: 65.4vw;
        margin-left: 17vw;
        padding-inline: 1rem;
        border-radius: 1000px;
    }
    header .container{
        width: 100%;
        margin: 0;
        padding: 0;
    }
    header.scrolled{
        width: 65.4vw;
        margin-left: 17vw;
    }
    header.scrolled .container{
        padding: 1rem;
    }



    section.home .aside .text h1{
        font-size: 3rem;
    }
    section.home{
        height: 90vh;
        padding: 10vh 18vw 0;
    }
    section.home .image{
        height: 100%;
    }
    section.home .image img.main{
        bottom: 0 !important;
        top: 0;
    }
    section.home img.card{
        right: 14rem;
    }



    section.icons{
        padding-inline: 18vw;
    }



    section.cta{
        padding-inline: 18vw;
    }



    section.products{
        padding-inline: 18vw;
        border-bottom: 1px solid #7777771e;
    }
    section.products h2{
        font-size: 3rem;
    }



    section.testimonials{
        padding-inline: 18vw;
    }
    section.testimonials .wrapper .item{
        height: 25rem;
    }



    section.stats{
        padding-inline: 18vw;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='183' height='183' viewBox='0 0 183 183' fill='none'%3E%3Cpath opacity='0.2' d='M2 37.5H181.5' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M2 73H181.5' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M2 109.25H182.501' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M1.5 146H182.5' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.5' d='M1 182H182' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.5' d='M1 182.905L1 12.9998' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M37.5 182.001L38.0028 -2.49515e-06' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M74 182.001L74.5028 -2.49515e-06' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M109.5 182.001L110.003 -2.49515e-06' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.2' d='M146.5 182.001L147.003 -2.49515e-06' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath opacity='0.5' d='M182 182V0' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3Cpath d='M92.8122 90H91V91.8099H92.8122V90Z' fill='%23ECEDF5'/%3E%3Cpath d='M14 0H1V2H14V0Z' fill='%23ECEDF5'/%3E%3Cpath d='M0 0L0 13H2L2 0H0Z' fill='%23ECEDF5'/%3E%3Cpath d='M14 183H1V181H14V183Z' fill='%23ECEDF5'/%3E%3Cpath d='M0 183L0 170H2L2 183H0Z' fill='%23ECEDF5'/%3E%3Cpath d='M169 183H182V181H169V183Z' fill='%23ECEDF5'/%3E%3Cpath d='M183 183V170H181V183H183Z' fill='%23ECEDF5'/%3E%3Cpath d='M169 0H182V2H169V0Z' fill='%23ECEDF5'/%3E%3Cpath d='M183 0V13H181V0H183Z' fill='%23ECEDF5'/%3E%3Cpath opacity='0.5' d='M1.5 1H181.5' stroke='%23ECEDF5' stroke-width='1.81'/%3E%3C/svg%3E");
        background-repeat: repeat;
    }



    section.news{
        padding-inline: 18vw;
    }



    section.faq{
        padding-inline: 18vw;
    }
    


    .banner{
        margin-inline: 18vw;
    }


    footer{
        margin-inline: 1vw;
        padding-inline: 18vw ;
    }
}