@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --header-height: 3.5rem;
    /*=========COLORS=========*/
    
    --first-color: hsl(265, 75%, 60%); /* Soft lavender for creativity */
    --first-color-alt: hsl(265, 75%, 50%);
    --first-color-light: hsl(265, 75%, 70%);
    --first-color-lighten: hsl(265, 75%, 95%);
    --second-color: hsl(35, 85%, 55%); /* Warm amber for contrast */
    --title-color: hsl(265, 75%, 25%);
    --text-color: hsl(265, 15%, 40%);
    --text-color-light: hsl(265, 10%, 65%);
    --border-color: hsl(265, 90%, 98%);
    --body-color: #faf8f8; /* Soft off-white for elegance */
    --container-color: #ffffff;
    /*=========FONTS=========*/
    --body-font:"Poppins", serif;
    --biggest-font-size:2.25rem;
    --h1-font-size:1.5rem;
    --h2-font-size:1.25rem;
    --h3-font-size:1rem;
    --normal-font-size:.938rem;
    --small-font-size:.813rem;
    --smaller-font-size:.75rem;
    --font-medium:500;
    --font-semi-bold:600;
 /*=========z-index==========*/

    --z-tooltip:10;
    --z-fixed:100;
}

    /*=========responsive=========*/
    @media screen and (min-width: 1024px) {
        :root{
            --biggest-font-size:4rem;
            --h1-font-size:2.25rem;
            --h2-font-size:1.5rem;
            --h3-font-size:1.25rem;
            --normal-font-size:1rem;
            --small-font-size:.875rem;
            --smaller-font-size:.813rem;
        }
        
    }
 /*=========BASE=========*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    scroll-behavior: smooth;

}
body{
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    transition: .3s;
}
h1,h2,h3{
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul{
    list-style: none;
    
}

a{
    text-decoration: none;
    color: var(--text-color);
    
}
img{
    max-width: 100%;
    height: auto;
}

input,button{
    font-family: var(--body-font);
    outline: none;
    border: none;
}

/*======================THEMES======================*/
.change-theme{
    font-size: 1.25rem;
    color: #faf8f8;
    cursor: pointer;
    transition: .3s;
}
.change-theme:hover{
    color: var(--first-color);
}

/*=======================VARIABLES DARK THEME=======================*/
body.dark-theme{
    --first-color: hsl(265, 70%, 79%); /* Darker lavender for creativity */
    --first-color-alt: hsl(265, 75%, 50%);
    --first-color-light: hsl(265, 75%, 30%);
    --first-color-lighten: hsl(265, 75%, 20%);
    --second-color: hsl(35, 85%, 45%); /* Dark amber for contrast */
    --title-color: hsl(265, 75%, 80%); /* Lightened title color for visibility */
    --text-color: hsl(265, 15%, 85%); /* Lightened text color for better readability */
    --text-color-light: hsl(265, 10%, 95%); /* Lighter text for softer contrast */
    --border-color: hsl(265, 90%, 20%); /* Darker border for visibility */
    --body-color: #2a2a2a; /* Dark background for dark mode */
    --container-color: #333333;

}
.dark-theme .home__search{
    border: 3px solid var(--border-color);
}
.dark-theme .button{
    background: var(--first-color);
}
.dark-theme .contact__card-button{
    
    background: var(--first-color-lighten);
    color: var(--first-color);
}

.dark-theme .nav__menu,
.dark-theme .home__img,
.dark-theme .popular__card:hover{
    box-shadow: none;
}
.dark-theme .subscribe__container{
    background-color: var(--body-color);
    border: 3px solid var(--first-color);
    box-shadow: 0 5px 13px rgba(223, 187, 219, 0.437);
}

.dark-theme::-webkit-scrollbar{
    background-color: hsl(0, 0%, 16%);
}
.dark-theme::-webkit-scrollbar-thumb{
    background-color: hsl(0, 17%, 90%);
}


/*==============Reusable classes==================*/

.container{
    max-width: 1024px;
    margin-left: 1.5rem;
    margin-right: 1.5rem;

}
.grid{
    display: grid;
}

.section{
    padding: 4.5rem 0 2rem;
}

.section__title{
    font-size: var(--h2-font-size);
    margin-bottom: 1rem;
}

.section__title span{
    color: var(--second-color);
}
.section__subtitle{
    display: block;
    font-size: var(--small-font-size);
    color: var(--second-color);
}
.main{
    overflow: hidden;
}


/*===============header and nav==================*/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: var(--z-fixed);
    transition: .4s;
}

.nav{
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo{
    color: #fff;
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    font-weight: var(--font-medium);
    transition: .3s;

}

.nav__logo i{
    font-size: 1rem;
}

.nav__logo:hover{
    color: var(--first-color);
}

@media screen and (max-width:1023px) {
    .nav__menu{
        position: fixed;
        bottom: 2rem;
        background-color: var(--container-color);
        box-shadow: 0 8px 24px hsla(228,66%,45%,.15);
        width: 90%;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 1.30rem 3rem;
        border-radius: 1.25rem;
        transition: .4s;
    }
    .nav__list{
        display: flex;
        justify-content: space-between;
        align-items: center;

    }
    .nav__link{
        color: var(--text-color);
        display: flex;
        padding: .5rem;
        border-radius: 50%;
    }
    .nav__link i{
        font-size: 1.25rem;
    }
    .nav__link span{
        display: none;
    }
    
}


.scroll-header{
    background-color: var(--border-color);
    box-shadow: 0 1px 4px hsla(228, 4%, 15%, .1);
}

.scroll-header .nav__logo{
    color: var(--first-color);

}
.scroll-header .change-theme{
    color: var(--title-color);
}

.active-link{
    background: linear-gradient(101deg, 
    hsl(265, 50%, 50%), 
    hsl(265, 50%, 40%)
);

    color: #fff;
    box-shadow: 0 4px 8px hsla(228, 66%, 45%, .2);
}
/*===================HOME==========================*/
.home {
    background: linear-gradient(170deg, hsl(267, 22%, 46%) 0%, hsl(265, 40%, 20%) 30%);
    padding-bottom: 0;
}

.home__container{
    padding-top:4rem;
    row-gap: 3.5rem;
    height: 850px;
    margin-bottom: 40px;
}
.home__title, .home__value-number{
color: #fff;
}
.home__title{
    font-size: var(--biggest-font-size);
    line-height: 120%;
    margin-bottom: 1.25rem;
}

.home__description{
    color: var(--text-color-light);
    margin-bottom: 2rem;

}

.home__search{
    background-color: var(--body-color);
    padding: .5rem .35rem .5rem .75rem;
    display: flex;
    align-items: center;
    border-radius: .75rem;
    border: 3px solid var(--text-color-light);
    margin-bottom: 2rem;
}

.home__search i {
    font-size: 1.25rem;
    color: var(--first-color);
}
.home__search-input{
    width: 90%;
    background-color: var(--body-color);
    color: var(--text-color);
    margin: 0 .5rem;
}

.home__search-input::placeholder{
    color: var(--text-color-light);
}

.home__value{
    display: flex;
    column-gap: 2.5rem;
}

.home__value-number{
    font-size: var(--h1-font-size);
    font-weight: var(--font-medium);
}

.home__value-number span{
    color: var(--second-color);
}
.home__value-description{
    display: flex;
    columns: var(--text-color-light);
    font-size: var(--small-font-size);
}

.home__images{
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
  
}

.home__orbe {
    width: 384px;
    height: 384px;
    background: linear-gradient(180deg, hsl(0, 0%, 16%) 93%, hsl(0, 0%, 67%) 100%);
    position: relative;
    overflow: hidden;
    border-radius: 50%; /* Makes it a perfect circle */
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2); /* Adds depth */
}

.home__img {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%; /* Matching circular shape for the image */
}


.home__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home__orbe:hover .home__img img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}





.button{
    display: inline-block;
    background: linear-gradient(101deg, 
    hsl(33, 90%, 50%), 
    hsl(33, 80%, 40%)
);

    color: #fff;
    padding: 14px 28px;
    border-radius: .5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    box-shadow: 0 4px 8px hsla(228, 66%, 45%, .25);
    transition: .3s;
    cursor: pointer;
}

.button:hover{
    box-shadow: 0 4px 12px hsla(228, 66%, 45%, .25);;
}
.nav__button{
    display: none;
}



/*=========================LOGOS=======================*/

.logos__container{
padding-top: 2rem;
grid-template-columns: repeat(2,1fr);
gap: 3rem 2rem;
justify-content: center;

}

.logos__img{
    height: 60px;
    opacity: .2;
    transition: .3s;
}

.logos__img:hover{
    opacity: .6;

}

/*=========================POPULAR=======================*/

.popular__container{
    padding: 1rem 0 5rem;
    height: 400px;
}


.popular__img {
    width: 350px;
    height: 230px;
    border-radius: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
    object-fit: cover; 
    /* Ensures the image covers the area without distortion */
}

.popular__card{
    width: 350px;
    height: 400px;
    background-color: var(--container-color);
    padding: .5rem .5rem 1.5rem;
    border-radius: 1rem;
    margin: 0 auto;
    transition: .4s;
    position: relative;
    overflow: hidden; 
}
.popular__data{
    padding: 0 1rem 0 .5rem;
}

.popular__price{
    font-size: var(--h2-font-size);
    color: var(--text-color);
    margin-bottom: .25rem;
}

.popular__price span{
    color: var(--second-color);
}

.popular__title{
    font-size: var(--h3-font-size);
    margin-bottom: .75rem;
}

.popular__description{
    font-size: var(--small-font-size);
}

.popular__card:hover {
    box-shadow: 0 12px 16px hsla(228, 66%, 45%, 0.1);
}

.popular__card:hover .popular__img {
    transform: scale(1.1); 
}


/*==========SWIPER==========*/
.swiper-button-prev::after, .swiper-button-next::after{
    content: '';
}


.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 40%; 
    z-index: 10; 
    background-color: var(--container-color); 
    border: 2px solid var(--text-color-light);
    border-radius: 50%; 
    font-size: 1.5rem; 
    color: var(--first-color); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; 
}

.swiper-button-next {
  right: 10px; 
}

.swiper-button-prev {
  left: 10px; 
}


/*===================VALUE===================*/
.value__container{
    row-gap: 3rem;
    
}

.value__images{
    position: relative;
    display: flex;
    justify-content: center;
    
}

.value__orbe {
    width: 266px;
    height: 316px;
    background-color: hsl(228, 24%, 97%);
    border-radius: 135px 135px 16px 16px;
    position: relative;
    overflow: hidden;  /* Ensures the image stays within the rounded border */
    box-shadow: 0px 15px 60px rgba(8, 19, 92, 0.344); /* Soft shadow around the orb */
    transition: all 0.3s ease-in-out;  /* Smooth transition for hover effect */
}

.value__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 135px 135px 16px 16px;
    box-shadow: 0px 15px 60px rgba(0, 0, 0, 0.2);
}

.value__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without stretching */
    border-radius: inherit; /* Inherits the border-radius from .value__orbe */
    box-shadow: 0px 15px 60px rgba(0, 0, 0, 0.2); /* Custom box-shadow */
    transition: transform 0.3s ease-in-out;  /* Smooth zoom effect */
}

/* Hover Effect */
.value__orbe:hover .value__img img {
    transform: scale(1.1);  /* Zooms in the image when hovered */
}

.value__orbe:hover {
    transform: scale(1.05);  /* Slight zoom effect for the orb */
}


.value__description{
    font-size: var(--small-font-size);
    margin-bottom: 2rem;
}
.value__accordion{
    display: grid;
    row-gap: 1.5rem;
}

.value__accordion-item{
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    border-radius: 1rem .75rem;
    padding: 1rem .75rem;
}
.value__accordion-header{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.value__accordion-icon{
   background-color: none;
    padding: 5px;
    border-radius: .25rem;
    font-size: 18px;
    color: var(--second-color);
    margin-right: .75rem;
    transition: .3s;
}

.value__accordion-title{
    font-size: var(--small-font-size);
}
.value__accordion-arrow{
    display: inline-flex;
    padding: .25rem;
    color: var(--second-color);
    border-radius: 2px;
    font-size: 10px;
    margin-left: auto;
    transition: .3s;
}
.value__accordion-arrow i {
transition: .3s;
}

.value__accordion-description{
    font-size: var(--smaller-font-size);
    padding: 1.25rem 2.5rem 0 2.75rem;
}
.value__accordion-content{
    overflow: hidden;
    height: 0;
    transition: all .25s ease;
}
.accordion-open{
    box-shadow: 0 12px 32px hsla(228, 66%, 45%, .2);
}

.accordion-open .value__accordion-icon{
    box-shadow: 0 12px 32px hsla(228, 62%, 48%, 0.256);
    background-color: var(--first-color-lighten);
    color: var(--first-color);
}

.accordion-open .value__accordion-arrow{
    box-shadow: 0 12px 32px hsla(228, 62%, 48%, 0.256);
    background-color: var(--first-color-lighten);
    color: var(--first-color);
}

.accordion-open .value__accordion-arrow i{
    transform: rotate(-180deg);
}


/*=================Contact==================*/

.contact__container{
    row-gap: 2rem;
}

.contact__images{
    position: relative;
    display: flex;
    justify-content: center;
}

.contact__orbe {
    width: 266px;
    height: 316px;
    background-color: hsl(228, 24%, 97%);
    border-radius: 135px 135px 16px 16px;
    position: relative;
    overflow: hidden;  /* Ensures the image stays within the rounded border */
    box-shadow: 0px 15px 60px rgba(8, 19, 92, 0.344); /* Soft shadow around the orb */
    transition: all 0.3s ease-in-out;  /* Smooth transition for hover effect */
}

.contact__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 135px 135px 16px 16px;
    box-shadow: 0px 15px 60px rgba(0, 0, 0, 0.2);
}

.contact__img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without stretching */
    border-radius: inherit; /* Inherits the border-radius from .value__orbe */
    box-shadow: 0px 15px 60px rgba(0, 0, 0, 0.2); /* Custom box-shadow */
    transition: transform 0.3s ease-in-out;  /* Smooth zoom effect */
}

/* Hover Effect */
.contact__orbe:hover .contact__img img {
    transform: scale(1.1);  /* Zooms in the image when hovered */
}

.contact__orbe:hover {
    transform: scale(1.05);  /* Slight zoom effect for the orb */
}

.contact__description{
    font-size: var(--small-font-size);
    margin-bottom: 2.5rem;
}

.contact__card{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.25rem .75rem;
}

.contact__card-box{
    background-color: var(--body-color);
    border: 2px solid var(--border-color);
    padding: 1.25rem .75rem;
    border-radius: .5rem;
    transition: .3s;
}

.contact__card-info{
    display: flex;
    align-items: flex-start;
    column-gap: .75rem;
    margin-bottom: 1.25rem;

}

.contact__card i{
    padding: 6px;
    background-color: var(--first-color-lighten);
    border-radius: 6px;
    font-size: 1.25rem;
    color: var(--first-color);
}
.contact__card-title{
    font-size: var(--normal-font-size);
}

.contact__card-description{
    font-size: var(--smaller-font-size);
}

.contact__card-button{
    font-size: var(--small-font-size);
    padding: 14px 0;
    width: 100%;
    border-radius: .25rem;
    background: var(--first-color-lighten);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    box-shadow: none;
}

.contact__card-button:hover{
    background-color: var(--first-color);
    color: #fff;

}

.contact__card-box:hover{
    box-shadow: 0 8px 24px hsla(228, 66%, 45%, .2);
}


/*==================SUBSCRIBE=====================*/

.subscribe{
    padding: 2.5rem 0;
}
.subscribe__container{
    background-color:var(--first-color-alt);
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    text-align: center;
    color: #faf8f8 ;
}

.subscribe__title{
    font-size: var(--h2-font-size);
    color: #fff;
    margin-bottom: 1rem;
}

.subscribe__button{
    background: var(--first-color-light);
    font-size: var(--small-font-size);
    margin-top: 15px;
}

.subscribe__button:hover{
    background: var(--first-color);
    
}


/*===================FOOTER================*/

.footer__container{
    row-gap: 2.5rem;
}

.footer__logo{
    color: var(--first-color);
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
    margin-bottom: .75rem;
}

.footer__logo i{
    font-size: 1.25rem;
}

.footer__description,
.footer__link{
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);

}

.footer__content,
.footer__links{
    display: grid;
}

.footer__content{
    grid-template-columns: repeat(2,1fr);
    gap: 2.5rem 4rem;
}

.footer__title{
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
}

.footer__links{
    row-gap: .5rem;
}

.footer__links{
    color: var(--text-color);
    transition: .3s;
}

.footer__links:hover{
    color: var(--title-color);
}

.footer__social{
    display: flex;
    column-gap: 1rem;
}
.footer__social-link{
font-size: 1.25rem;
color: var(--text-color);
transition: .3s;
}

.footer__social-link:hover{
    color: var(--title-color);
}

.footer__info,
.footer__privacy{
    display: flex;
}

.footer__info{
    padding-bottom: 6rem;
    margin-top: 5.5rem;
    flex-direction: column;
    text-align: center;
    row-gap: 1.5rem;
}

.footer__copy,
.footer__privacy a{
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
}

.footer__privacy{
    justify-content: center;
    column-gap: 1.25rem;
}


/*=============SCROLL BAR=================*/

::-webkit-scrollbar{
    width: .6rem;
    border-radius: .5rem;
    background-color: hsla(231, 7%, 81%, 0.718);
}

::-webkit-scrollbar-thumb{
    background-color:var(--first-color-light);
    border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover{
    background-color:var(--first-color-alt);
}

/*====================SCROLL UP===================*/

.scrollup{
    position: fixed;
    right: 1rem;
    bottom: -30%;
    background-color: var(--container-color);
    box-shadow: 0 8px 12px hsla(268, 66%, 45%, 0.1);
    display: inline-flex;
    padding: .35rem;
    border-radius: 5rem;
    color: var(--title-color);
    font-size: 1.25rem;
    z-index: var(--z-tooltip);
    transition: .3s;

}

.scrollup:hover{
    transform: translateY(-.25rem);
    color: var(--first-color);
}

.show-scroll{
bottom: 8rem;
}


/*=====================BREAK POINTS=======================*/

/*==============for small devices=================*/
@media screen and (max-width: 350px) {
    .container{
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section{
        padding: 3.5rem 0 1rem;
    }
    .home{
        padding-bottom: 0;
    }
    .contact__card{
        grid-template-columns: repeat(1,180px);
        justify-content: center;
        
    }
}
@media screen and (max-width: 320px) {
    .nav__menu{
        padding: 1.3rem 1.5rem;
    }
    .home__value{
        column-gap: 1rem;
    }
    .home__orbe {
        width: 220px;
        height: 220px;
        background: linear-gradient(180deg, hsl(0, 0%, 16%) 93%, hsl(0, 0%, 67%) 100%);
        position: relative;
        overflow: hidden;
        border-radius: 50%; /* Makes it a perfect circle */
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2); /* Adds depth */
    }
    
    .home__img {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 50%; /* Matching circular shape for the image */
    }
    .logos__container{
        gap: 2rem 1rem;
    }
    .popular__card{
        width: 230px;
        padding: .5rem .5rem .75rem;
        
    }
}

@media screen and(min-width: 576px){
    .nav__menu{
        width: 342px;
    }
    .home__search{
        width: 412px;
    }
    .contact__card{
        grid-template-columns: repeat(2,192px);
        justify-content: center;
    }
    .footer__content{
        grid-template-columns: repeat(3,max-content);
    }
    
}



@media screen and (min-width: 773px) {
    .home__container {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 2rem; 
    }
   
    .home{
        height: 650px;
    }
    .home__data{
        padding-bottom: 2rem;
    }
    .logos__container{
        grid-template-columns: repeat(4,max-content);
        justify-content: center;
    }
    .logos__img{
        width: 100px;
        height: 100px;
    }
    .value__container,
    .contact__container{
        grid-template-columns: repeat(2,1fr);
        align-items: center;
    }
   
    .contact__images{
        order: 1;
    }
    .contact__card{
        justify-content: initial;
    }
    .subscribe__container{
        padding: 3rem 13rem;
    }
    .footer__container{
        grid-template-columns: repeat(2, max-content);
        justify-content: space-between;
    }
}


@media screen and (min-width: 1023px) {
    .section {
        padding: 7.5rem 0 1rem;
    }
    .section__title {
        font-size: 2.25rem;
    }
    .section__subtitle {
        font-size: var(--normal-font-size);
    }
    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }
    .nav__menu {
        width: initial;
        margin-left: auto;
    }
    .nav__list {
        display: flex;
        column-gap: 3rem;
    }
    .nav__link{
        color: var(--text-color-light);
    }
    .nav__link i{
        display: none;
    }
   
    .nav__button{
        display: inline-block;
    }
    .active-link{
        background: none;
        box-shadow: none;
        color: var(--first-color);
        font-weight: var(--font-medium);
    }
    .change-theme{
        margin: 0 3rem;
        color: var(--text-color-light);
    }
    
    .scroll-header .nav__link,
    .scroll-header .change-theme{
        color: var(--text-color);
    }
    .scroll-header .active-link{
        color: var(--first-color);
    }
    .home{
        height: 970px;
        padding-bottom: 0;
    }
    .home__container{
        padding-top: 5rem;
        column-gap: 2rem;
    }
    .home__data{
        padding-bottom: 4rem;
    }
    .home__title{
        margin-bottom: 2rem;
    }
    .home__description,
    .home__search{
        margin-bottom: 3rem;
    }
    .home__value{
        column-gap: 3.5rem;
    }
    .home__orbe{
        width: 560px;
        height: 560px;
    }
    .popular__container{
        padding-top: 3rem;
    }
    .popular__card{
        width: 320px;
        padding: .75rem .75rem 2rem;
    }
    .popular__data{
        padding: 0 .25rem 0 .75rem;
    }
    .value__container,
    .contact__container{
        align-items: flex-start;
    }
    .value__orbe,
    .contact__orbe{
        width: 501px;
        height: 641px;
        border-radius: 258px 258px 16px ;
    }
    .value__description,
    .contact__description{
        font-size: var(--normal-font-size);
        margin-bottom: 2.5rem;
    }
    .value__accordion{
        margin-left: 10px;
    }
    .value__accordion-title{
        font-size: var(--normal-font-size);
    }
    .value__accordion-item{
        padding: 1.25rem 1.25rem 1.25rem 1rem ;
    }
    .value__accordion-description{
        padding-bottom: 1rem;
        font-size:var(--small-font-size) ;
    }
    .contact__card{
        grid-template-columns: repeat(2, 200px);
    }
    .contact__card-box{
        padding: 28px 1.5rem 1.5rem;
    }
    .subscribe__container{
        padding: 4rem 10rem 4.5rem;
        border-radius: 2rem;
        border: 12px solid var(--first-color-light);
    }
    .subscribe__title{
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    .footer__content{
        grid-template-columns: repeat(4, max-content);
    }
    .footer__title{
        margin-bottom: 1.5rem;
    }
    .footer__links{
        row-gap: 1rem;
    }
    .footer__info{
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 2rem;
    }
    .show-scroll{
        bottom: 3rem;
        right: 3rem;
    }
    

}

@media screen and (min-width: 1040px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .home__container {
        column-gap: 4rem;
    }
}


@media screen and (min-width: 2048px) {
    body{
        zoom: 1.5;
    }
}


@media screen and (min-width: 3048px) {
    body{
        zoom: 2.5;
    }
}

