/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Poppins:wght@400;500&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  --header-height430: 4rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(106, 100%, 38%);
  --first-color-alt: hsl(106, 100%, 31%);
  --first-gradient: linear-gradient(90deg,
                    hsl(106, 100%, 35%) 0%,
                    hsl(106, 100%, 75%) 100%);
  --second-gradient: linear-gradient(90deg,
                    hsl(106, 72%, 57%) 0%,
                    hsl(106, 78%, 80%) 100%);
  --third-gradient: linear-gradient(90deg,
                    hsl(106, 70%, 40%) 0%,
                    hsl(106, 62%, 60%) 100%);
  --title-color: hsl(0, 0%, 12%);
  --text-color: hsl(0, 0%, 50%);
  --white-color: #fff;
  --body-color: hsl(0, 0%, 96%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Montserrat", sans-serif;
  --bigger-font-size: 2.25rem;
  --big-font-size: 1.5rem;
  --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 weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --bigger-font-size: 4rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-big-font-size: 1.125rem;
    --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;
}

input,
textarea,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background .4s; /* for dark mode animation */
  max-width: 100vw;
}

input,
textarea,
button {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
.nav__buttons{
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.change-theme{
  font-size: 1.25rem;
  color: var(--white-color);
  transition: color .4s;
  cursor: pointer;
}

/*========== Variables Dark theme ==========*/
body.dark-theme{
  --title-color: hsl(0, 0%, 95%);
  --text-color: hsl(0, 0%, 70%);
  --body-color: hsl(0, 0%, 12%);
  --container-color: hsl(0, 0%, 15%);
}

/*========== 
	Color changes in some parts of 
	the website, in dark theme
==========*/
.dark-theme :is(.bg-header, .nav__menu){
  box-shadow: 0 2px 16px hsla(0, 0%, 0%, .2);
}

.dark-theme :is(.home__shadow, .choose__shadow, .features__shadow, .join__shadow){
  background: hsla(106, 60%, 52%, .4);
}

.dark-theme :is(.popular__card:hover, .features__info-card:hover, .products__card:hover){
  box-shadow: 0 12px 16px hsla(0, 0%, 0%, .2);
}

.dark-theme :is(.popular__button, .choose__faq-icon, .products__button){
  box-shadow: 0 2px 8px hsla(106, 80%, 50%, .5);
}

.dark-theme :is(.swiper-button-next, .swiper-button-prev){
  box-shadow: 0 2px 8px hsla(0, 0%, 0%, .2);
}

.dark-theme .features__info-card{
  background: linear-gradient(180deg,
              hsla(0, 0%, 12%, 0),
              hsl(0, 0%, 15%));
}

.dark-theme .scrollup{
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, .25);
}

.dark-theme::-webkit-scrollbar{
  background-color: hsl(0, 0%, 15%);
}

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

.dark-theme::-webkit-scrollbar-thumb:hover{
  background-color: hsl(0, 0%, 35%);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  font-size: var(--big-font-size);
  margin-bottom: 0.75rem;
  text-align: center;
  max-width: 90%;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100vw;
  background-color: hsl(0, 0%, 8%);
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: background .4s;
}

.home__logoimage{
  height: 30px;
  align-self: auto;
  justify-self: center;
  transform: translateY(0.4rem) translateX(.5rem);
}

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

.nav.container {
  max-width: 90vw;
  margin-inline: auto;
}

.nav__logo{
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  transition: color .4s;
}

.nav__logo span{
  background: var(--third-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav__toggle,
.nav__close{
  display: flex;
  cursor: pointer;
}

.nav__toggle{
  font-size: 1.25rem;
  color: var(--white-color);
  transition: color .4s;
}


/* Navigation for mobile devices */
@media screen and (max-width: 1023px){
  .nav__menu{
    position: fixed;
    left: 0;
    top: -100%;
    background-color: var(--body-color);
    width: 100vw;
    padding-block: 4rem;
    box-shadow: 0 2px 16px hsla(0, 0%, 0%, .1);
    transition: top .4s;
  }
}

.nav__list{
  display: flex;
  flex-direction: column;
  text-align: center;
  row-gap: 2rem;
}

.nav__link{
  color: var(--text-color);
}

.nav__link:hover{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__link2{
  color: var(--text-color);
}

.nav__link2:hover{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--title-color);
}

/* Show menu */
.show-menu{
  top: 0;
}

/* Change background header */
.bg-header{
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(0, 0%, 0%, .1);
}

.bg-header :is(.nav__logo, .nav__toggle, .change-theme){
  color: var(--title-color);
}

/* Active link */
.active-link{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.gooey{
  background-image: linear-gradient(120deg, #0067ffe3 0%,#28ad00 100%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  width: 225px; height: 214px;
  animation: morph 3s linear infinite; 
  transform-style: preserve-3d;
  outline: 1px solid transparent;
  will-change: border-radius;
  z-index: -1;
}
.gooey:before,
.gooey:after{
  z-index: -1;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0; top: 0;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  box-shadow: 5px 5px 89px rgba(0, 102, 255, 0.21);
  will-change: border-radius, transform, opacity;
  animation-delay: 200ms;
  background-image: linear-gradient(120deg, hsl(106, 100%, 48%) 0%, rgba(0,103,255,.89) 100%);
}

.gooey:before{
  animation: morph 3s linear infinite;
  opacity: .21;
  animation-duration: 1.5s;
}

.gooey:after{
  animation: morph 3s linear infinite;
  animation-delay: 400ms;
  opacity: .89;
  line-height: 120px;
  text-indent: -21px;
}

.gooey2{
  background-image: linear-gradient(120deg, #0067ffe3 0%,#28ad00 100%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  width: 190px; height: 185px;
  animation: morph 3s linear infinite; 
  transform-style: preserve-3d;
  outline: 1px solid transparent;
  will-change: border-radius;
  z-index: -1;
}
.gooey2:before,
.gooey2:after{
  z-index: -1;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0; top: 0;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  box-shadow: 5px 5px 89px rgba(0, 102, 255, 0.21);
  will-change: border-radius, transform, opacity;
  animation-delay: 200ms;
  background-image: linear-gradient(120deg, hsl(106, 100%, 48%) 0%, rgba(0,103,255,.89) 100%);
}

.gooey2:before{
  animation: morph 3s linear infinite;
  opacity: .21;
  animation-duration: 1.5s;
}

.gooey2:after{
  animation: morph 3s linear infinite;
  animation-delay: 400ms;
  opacity: .89;
  line-height: 120px;
  text-indent: -21px;
}

@keyframes morph{
  0%,100%{
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  34%{
      border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform:  translate3d(0,5px,0) rotateZ(0.01deg);
  }
  50%{
    opacity: .89;
    transform: translate3d(0,0,0) rotateZ(0.01deg);
  }
  67%{
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60% ;
    transform: translate3d(0,-3px,0) rotateZ(0.01deg);
  }
}

@keyframes fadeIn{
  100%{
    transform: scale(1.03);
    opacity: 0;
  }
}

/*=============== HOME ===============*/
.home{
  position: relative;
}

.home__bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(0, 0%, 8%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 93%);
}

.home__bg{
  height: 115%;
}

.home__container{
  position: relative;
  padding-top: 2.5rem;
  row-gap: 2.5rem;
}

.home__content{
  row-gap: 3rem;
}

.home__subtitle{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: var(--normal-font-size);
  margin-bottom: .5rem;
}

.home__data{
  text-align: center;
}

.home__title{
  color: var(--white-color);
  font-size: var(--bigger-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 1.5rem;
}

.home__buttons{
  display: flex;
  justify-content: center;
  column-gap: 1rem;
}

.home__buttons .button{
  box-shadow: 0 4px 12px hsla(0, 0%, 0%, .8)
}

.home__buttons .button__link{
  color: var(--text-color);
}

.home__buttons .button__link i{
  font-size: 2rem;
}

.home__info{
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  text-align: center;
}

.home__info-title{
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  margin-bottom: .5rem;
}

.home__info-title span{
  color: var(--first-color);
}

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

.home__blob{
  width: 250px;
  height: 320px;
  border: 1px solid transparent;
  background: var(--first-gradient) padding-box,
              linear-gradient(90deg,
              hsl(106, 68%, 50%) 0%,
              hsl(106, 68%, 80%) 100%) border-box;
  border-radius: 50% 50% 47% 53% / 32% 32% 68% 68%;
}

.home__image{
  position: relative;
  justify-self: center;
}

.home__shadow{
  position: absolute;
  width: 200px;
  height: 30px;
  background: hsla(106, 60%, 52%, .6);
  bottom: -.75rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: blur(12px);
  border-radius: 46% 54% 39% 61% / 72% 29% 71% 28%;
  z-index: -1;
}

.home__img{
  display: block;
  width: 150px;
  margin: 0 auto;
  transform: translateY(30px);
}

.home__blob-title{
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: hsla(0, 0%, 100%, .3);
  font-weight: var(--font-medium);
}

/*=============== BUTTON ===============*/
.button{
  display: inline-block;
  background: var(--third-gradient);
  padding: .75rem 1.8rem;
  border-radius: 4rem;
  color: var(--white-color);
}

.button,
.button__link{
  font-weight: var(--font-medium);
}

.button__link{
  display: flex;
  align-items: center;
  column-gap: .25rem;
}

/*=============== POPULAR ===============*/
.popular__data{
  text-align: center;
}

.popular__content{
  padding-block: 1.5rem 5rem;
}

.popular__container{
  padding-top: 3rem;
}

.popular__card{
  position: relative;
  width: 250px;
  height: 100%;
  background: linear-gradient(90deg,
            hsl(106, 68%, 40%) 0%,
            hsl(209, 65%, 40%) 100%) padding-box,
              linear-gradient(90deg,
              hsl(209, 65%, 40%) 0%,
              hsl(209, 68%, 80%) 100%) border-box;
  border-radius: 4rem 4rem 4rem 4rem;
  padding: .75rem .75rem 1rem;
  margin-inline: 1rem;
  transition: box-shadow .4s, background .4s;
}

.popular__card:hover{
  box-shadow: 0 12px 16px hsl(0, 0%, 0%, .1);
}

.popular__blob{
  background-color:  var(--body-color);
  height: 100%;
  border-radius: 3rem 3rem 3rem 3rem;
  margin-bottom: .75rem;
  display: grid;
  grid-template-rows: 0.2fr 0.1fr auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
  transition: background .4s; /* For dark theme */
  padding: 1rem;
}

.popular__img{
  display: block;
  width: 120px;
  margin: 0 auto;
}

.popular__name{
  font-size: var(--normal-font-size);
  margin-bottom: .25rem;
  justify-content: center;
  margin-top: .75rem;
  width: 90%;
  align-self: center;
}

.popular__subtitle{
  display: block;
  font-size: var(--smaller-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
  align-self: baseline;
  margin-top: 0.25rem;
}

.popular__price{
  font-size: var(--h3-font-size);
  margin-bottom: .5rem;
  color: goldenrod;
}

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

.popular__button{
  display: inline-flex;
  padding: .25rem;
  background: var(--third-gradient);
  border-radius: .5rem;
  font-size: 1.25rem;
  color: var(--white-color);
  box-shadow: 0 2px 8px hsla(106, 68%, 32%, .4);
  position: absolute;
  right: .75rem;
  bottom: 1rem;
  cursor: pointer;
}

.swiper-wraper {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.blur-left,
.blur-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  pointer-events: none; /* Allows interaction with the underlying content */
  z-index: 10;
}

.blur-left {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  filter: blur(10px);
}

.blur-right {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  filter: blur(10px);
}

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

.swiper-button-next,
.swiper-button-prev{
  top: initial;
  bottom: .75rem;
  width: 2rem;
  height: 2rem;
  background-color: var(--container-color);
  padding: 4px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--first-color);
  box-shadow: 0 2px 8px hsla(0, 0%, 0%, .1);
  transition: background .4s; /* For dark theme animation */
}

.swiper-button-prev{
  left: calc(50% - 3rem);
}

.swiper-button-next{
  right: calc(50% - 3rem);
}

/*=============== CHOOSE ===============*/
.choose__container{
  row-gap: 3rem;
}

.choose__blob{
  width: 220px;
  height: 320px;
  border: 6px solid transparent;
  background: var(--second-gradient) padding-box,
              linear-gradient(90deg,
              hsl(106, 72%, 65%) 0%,
              hsl(106, 78%, 80%) 100%) border-box;
  border-radius: 20rem 20rem 0 0;
}

.choose__image{
  position: relative;
  justify-self: center;
}

/* Added */
.home__image{
  order: -1;
}

.choose__container{
  padding-top: 4rem;
}

.choose__shadow{
  position: absolute;
  width: 170px;
  height: 30px;
  background: hsla(106, 60%, 52%, .6);
  bottom: -.75rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: blur(12px );
  z-index: -1;
}

.choose__img{
  display: block;
  width: 165px;
  margin: 0 auto;
  transform: translateY(18px);
}

.choose__blob-title{
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: hsla(0, 0%, 100%, .3);
  font-weight: var(--font-medium);
  position: absolute;
  left: .5rem;
  bottom: 2.5rem;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.choose__data{
  text-align: center;
  justify-items: center;
}

.choose__data p,
.choose__data h2 {
  margin: 0 auto;
}

.choose__content,
.choose__faq{
  display: grid;
  row-gap: 2rem;
}

/* Added */
.choose__faq{
  margin-inline: 1rem;
}

.choose__description {
  max-width: 80%;
}

.choose__faq-header{
  display: flex;
  align-items: center;
  column-gap: .75rem;
  cursor: pointer;
}

/*
.choose__faq-title{
  font-size: var(--normal-font-size);
} */

/* Added */
.choose__faq-title{
  font-size: 15px;
}
/**/

.choose__faq-icon{
  display: inline-flex;
  padding: .25rem;
  background: var(--third-gradient);
  border-radius: .5rem;
  color: var(--white-color);
  font-size: 1.25rem;
  box-shadow: 0 2px 8px hsla(106, 68%, 32%, .4);
  transition: box-shadow .4s;
}

.choose__faq-icon i{
  transition: transform .3s;
}

.choose__faq-description{
  padding: .5rem 1rem 0 2.5rem;
}

.choose__faq-content{
  overflow: hidden;
  height: 0;
  transition: height .3s ease;
}

/* Rotate icon */
.faq-open .choose__faq-icon i{
  transform: rotate(45deg);
}

/* Change color icon */
.faq-open .choose__faq-icon{
  background: var(--white-color);
  color: var(--first-color-alt);
  box-shadow: none;
}

/* Title color change */
.faq-open .choose__faq-title{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*=============== FEATURES ===============*/
.features__container{
  row-gap: 3rem;
  padding-top: 3rem;
}

.features__blob{
  width: 220px;
  height: 320px;
  border: 6px solid transparent;
  background: var(--second-gradient) padding-box,
              linear-gradient(90deg,
              hsl(106, 72%, 65%) 0%,
              hsl(106, 78%, 80%) 100%) border-box;
  border-radius: 20rem 20rem 0 0;
}

.features__image{
  position: relative;
  justify-self: center;
}

.features__shadow{
  position: absolute;
  width: 170px;
  height: 30px;
  background: hsla(15, 60%, 52%, .6);
  bottom: -.75rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: blur(12px );
  z-index: -1;
}

.features__img{
  position: relative;
  display: block;
  width: 155px;
  margin: 0 auto;
  transform: translateY(18px);
  z-index: 2;
}

.features__blob-title{
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: hsla(0, 0%, 100%, .3);
  font-weight: var(--font-medium);
  position: absolute;
  right: .5rem;
  bottom: 2.5rem;
  writing-mode: vertical-lr;
}

.features__data{
  text-align: center;
}

.features__content,
.features__info{
  display: grid;
}

.features__content{
  row-gap: 2rem;
}

.features__info{
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.features__info-card{
  background: linear-gradient(180deg,
              hsla(0, 0%, 86%, 0),
              hsla(0, 0%, 100%, 1));
  padding: 1.5rem 2rem;
  text-align: center;
  transition: box-shadow .4s;
  align-self: center
}

.features__inf-title{
  font-size: var(--h3-font-size);
  font-weight: var(--font-medium);
  ;
}

.features__info-card:hover{
  box-shadow: 0 12px 16px hsla(0, 0%, 0%, .1);
}

.features__info-card:hover .features__info-title{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*=============== PRODUCTS ===============*/
.products__container{
  row-gap: 3rem;
}

.products__data{
  text-align: center;
}

.products__content{
  gap: 2rem;
  justify-content: center;
}

.products__card{
  position: relative;
  width: 200px;
  height: 322px;
  background-color: var(--container-color);
  border-radius: 9rem 9rem 0 0;
  padding: .75rem .75rem 1rem;
  transition: box-shadow .4s, background .4s;
}

.products__card:hover{
  box-shadow: 0 12px 16px hsl(0, 0%, 0%, .1);
}

.products__blob{
  background-color:  var(--body-color);
  height: 200px;
  border-radius: 8rem 8rem 0 0;
  margin-bottom: .75rem;
  transition: background .4s; /* For dark theme animation */
}

.products__img{
  display: block;
  width: 120px;
  margin: 0 auto;
}

.products__name{
  font-size: var(--normal-font-size);
  margin-bottom: .25rem;
}

.products__subtitle{
  display: block;
  font-size: var(--smaller-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
}

.products__price{
  font-size: var(--h1-font-size);
}

.products__price span{
  color: var(--first-color-alt);
}

.produtcs__button{
  display: inline-flex;
  padding: .25rem;
  background: var(--third-gradient);
  border-radius: .5rem;
  font-size: 1.25rem;
  color: var(--white-color);
  box-shadow: 0 2px 8px hsla(15, 68%, 32%, .4);
  position: absolute;
  right: .75rem;
  bottom: 1rem;
  cursor: pointer;
}

.products__link{
  font-size: 1rem;
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .4s;
}

.products__link:hover{
  transform: translateY(-.25rem);
}

/*=============== JOIN ===============*/
.join__container{
  padding-top: 2.5rem;
  border-radius: 75px;
}

.join__bg{
  row-gap: 0.5rem;
  background-color: var(--container-color);
  padding: 0 1.5rem 3.5rem 1.5rem;
  transition: background .4s; /* For dark theme animation */
  padding: 3rem .5rem 2rem .5rem;
  border-radius: 25px;
}

.join__blob{
  position: relative;
  width: 220px;
  height: 320px;
  border: 6px solid transparent;
  background: var(--second-gradient) padding-box,
              linear-gradient(90deg,
              hsl(106,72%, 65%) 0%,
              hsl(106, 78%, 80%) 100%) border-box;
  border-radius: 20rem 20rem 0 0;
  z-index: 2;
}

.join__image{
  position: relative;
  justify-self: center;
  /* transform: translateY(-3.5rem); */
}

.join__shadow{
  position: absolute;
  width: 170px;
  height: 30px;
  background: hsla(106, 60%, 52%, .6);
  bottom: -.75rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  filter: blur(12px);
  z-index: -1;
}

.join__img{
  display: block;
  width: 300px;
  margin: 0 auto;
  transform: translateY(-6px);
}

.join__blob-title{
  text-align: center;
  font-size: 3.5rem;
  letter-spacing: 2px;
  color: hsla(0, 0%, 100%, .3);
  font-weight: var(--font-medium);
}

.join__content{
  row-gap: 2rem;
}

.join__data{
  text-align: center;
}

.join__form{
  display: grid;
  row-gap: .75rem;
}

.join__input{
  width: 100%;
  background-color: var(--body-color);
  padding: 1.25rem 1.5rem;
  border-radius: 4rem;
  color: var(--text-color);
  transition: background .4s; /* For dark theme animation */
}

.join__imput::placeholder{
  font-family: var(--second-font);
}

.join__button{
  padding-block: 1.1rem;
  cursor: pointer;
  width: 40%;
  justify-self: center;
}

.join__button2{
  margin-top: 0.75rem;
}

/*=============== FOOTER ===============*/
.footer{
  padding-block: 3rem 2.5rem;
}

.footer__content{
  row-gap: 3rem;
}

/* Added */
/* .footer__content{
  margin-inline: 1rem;
} */


.footer__logo{
  display: inline-block;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-medium);
  margin-bottom: .75rem;
}

.footer__logo span{
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer__data{
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 4rem;
}

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

.footer__links{
  display: grid;
  row-gap: .75rem;
}

.footer__link{
  color: var(--text-color);
  transition: color .4s;
}

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

.footer__social,
.footer__group,
.footer__terms{
  display: flex;
}

.footer__social{
  column-gap: 1.25rem;
}

.footer__social-link{
  font-size: 1.25rem;
  background: var(--third-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform .4s;
}

.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__group{
  margin-top: 2rem;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.footer__terms{
  column-gap: 1.5rem;
}

.footer__terms a{
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.footer__copy{
  font-size: var(--small-font-size);
  text-align: center;
}

.e-zincometaxmap {
  border-radius: 25px;
  width: 100%;
  height: auto;
}


/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: 0.6rem;
  border-radius: .5rem;
  background-color: hsl(0, 0%, 75%);
}

::-webkit-scrollbar-thumb{
  width: 0.6rem;
  border-radius: .5rem;
  background-color: hsl(0, 0%, 65%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(0, 0%, 55%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background: var(--container-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  color: var(--title-color);
  border-radius: .25rem;
  box-shadow: 0 4px 16px hsla(0, 0%, 0%, .1);
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s, background .4s;
}

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

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}


/* TAXES PAGES */

.tiktok-container {
  max-width: 100%;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 430px){
  
  .section {
    padding-block: 6.50rem 0.75rem;
  }

  .home.section {
    padding-block: 3.5rem 0.75rem;
  }

  .home__bg {
    height: 95vh;
  }

  .home__container {
    padding-top: 4rem;
  }

  .home__content {
    row-gap: 2rem;
  }

  .header__logo {
    align-content: center;
  }

  .home__logoimage {
    height: 27.5px;
    transform: translateY(0.35rem) translateX(.5rem);
  }

  .home__img {
    width: 125px;
    transform: translateY(45px);
  }


  .container{
    margin-inline: 1.25rem;
  }

  .home__buttons{
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }

  .home__title{
    font-size: 1.75rem;
  }

  .choose.section {
    padding-top: 10rem;
  }

  .choose__data h2 {
    margin: 0 auto 0.5rem auto;
  }

  .tutomain .choose.section {
    padding-top: 5.5rem;
  }

  .features__info{
    grid-template-columns: 1fr;
  }

  .join.section .choose__data {
    margin: 0 1rem;
  }

  .join.section .choose__container {
    padding-top: 2rem;
  }

  .join.section .join__container {
    padding-top: 1.5rem;
  }
  
  .join.section {
    padding-block: 6.5rem 3.5rem;
  }

  .features__img {
    align-self: center;
  }

  .choose__img,
  .features__img {
    width: 120px;
    transform: translateY(33px);
  }

  .choose__content {
    row-gap: 2rem;
  }

  .choose__container,
  .features__container,
  .popular__container {
    row-gap: 2.5rem;
  }

  .choose__faq-title{
    font-size: 18px;
  }

  p.choose__description {
    margin: 0 auto;
  }

  .join__description,
  .features__description {
    max-width: 85%;
    margin: 0 auto;
  }

  .section__title {
    margin: 0 auto 0.5rem auto;
  }

  .popular__card {
    width: 80vw;
  }

  .popular__subtitle {
    width: 80%;
  }

  .join__data.callbut {
    margin-top: 2rem;
  }

  .join__image {
    margin-bottom: 1.5rem;
  }

  .join__bg {
    padding-top: 2rem;
  }

  /*
  .footer__data{
    gap: 2rem;
  }
  */

  .footer__content{
    row-gap: 1.5rem;
  }

  .footer__data {
    gap: 30vw;
  }
  

  .footer__terms{
    column-gap: .5rem;
  }

  .footer__group {
    margin-top: 2rem;
    row-gap: 0.5rem;
  }

  .tutomain .choose__data {
    margin: 1rem;
  }

  .tuto-button {
    margin-top: 2.5rem;
    font-size: 0.85rem;
  }

  
}

@media screen and (max-width: 430px) and (max-height: 800px) {
  .home__bg {
    height: 115%;
  }
}


@media screen and (max-width: 430px) and (min-height: 900px) {
  .home__bg {
    height: 120%;
  }
}

/* For medium devices */
@media screen and (min-width: 431px){
  .header {
    height: 4rem;
  }

  .nav {
    height: 4rem;
  }

  .header__logo {
    height: 40%;
    width: auto;
  }

  .header__logo {
    align-content: center;
  }

  .section {
    padding-block: 7.5rem 1rem;
  }

  .home__bg {
    height: 97.5vh;
  }

  .section__title {
    margin: 0 auto 0.75rem auto;
}

  .home__container {
    row-gap: 2rem;
  }

  .choose__container,
  .features__container,
  .popular__container {
    row-gap: 2.5rem;
  }

  .home.section {
    padding-block: 4rem 0.75rem;
  }

  .home__content {
    row-gap: 2rem;
  }
  
  .gooey {
    height: 246.1px;
    width: 258.75px;
    align-content: center;
  }

  .gooey2 {
    height: 203.5px;
    width: 209px;
  }

  .home__img {
    width: 130px;
    transform: translateY(-5px);
    transition: transform .4s;
  }

  .choose__img,
  .features__img {
    width: 130px;
    transform: translateY(40px);
  }

  .choose.section {
    padding-top: 8.5rem;
  }

  .tutomain .choose.section {
    padding-top: 5rem;
  }

  .choose__faq {
    margin-inline: 1.5rem;
  }

  .choose__data .section__title {
    margin-bottom: 0.75rem;
  }

  .choose__description,
  .features__description {
    width: 70vw;
    margin: 0 auto;
  }

  .join__description {
    width: 80%;
    margin-inline: auto;
  }

  .popular__description,
  .products__description{
    width: 350px;
    margin: 0 auto;
  }

  .choose__container,
  .features__container,
  .join__bg{
    grid-template-columns: 70vw;
    justify-content: center;
  }

  .products__content{
    grid-template-columns: repeat(2, max-content);
  }

  .popular__card {
    width: 50vw;
  }

  .popular__subtitle {
    width: 80%;
  }

  .popular__container {
    margin-inline: 0;
  }

  .join.section {
    padding-block: 5rem 5rem;
  }

  .join__image {
    margin-bottom: 1.5rem;
  }

  .join__bg{
    justify-self: center;
    padding: 4rem 1rem 2rem 1rem;
    row-gap: 1.5rem;
  }

  .join__bg {
    padding-top: 2.5rem;
  }

  .joing__content.grid {
    gap: 2.5rem;
  }

  .join__img{
    height: 400px;
    width: 400px;
  }

  .join__form {
    row-gap: 1rem;
  }

  .join__button {
    width: 50%;
  }

  .join__button2 {
    width: 175px;
  }

  .join__data.callbut {
    margin-top: 3rem;
  }

  .footer__data {
    gap: 2.5rem 3rem;
    margin-inline: auto;
    justify-self: center;
  }

  .footer__data {
    gap: 30vw;
  }

  .footer__content {
    row-gap: 1.5rem;
  }

  .footer__container {
    margin-inline: 2.5rem;
  }

/* 
  .footer__content{
    max-width: 80vw;
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
    
  } */

  /* .footer__description {
    width: 40vw;
  } */

  .e-zincometaxmap {
    border-radius: 25px;
    width: 100%;
    height: 25vh;
  }

  .tuto-button {
    margin-top: 3.5rem;
    font-size: 0.85rem;
  }
  .footer__data {
    margin-inline: 0;
    justify-self: auto;
  }
  
}

@media screen and (min-width: 431px) and (max-height: 800px) {
  .home__bg {
    height: 115%;
  }
}

@media screen and (min-width: 431px) and (min-height: 1024px) {
  .home__bg {
    height: 120%;
  }

  .home.section {
    padding-block: 8rem 0.75rem;
  }

  .choose.section {
    padding-top: 14.5rem;
  }

  .section {
    padding-top: 10rem;
  }

  .join.section {
    padding-top: 7.5rem;
  }
}

@media screen and (min-width: 768px){
  .section__title,
  .popular__data,
  .choose__data,
  .features__data,
  .join__data{
    text-align: center;
  }

  .home__data {
    text-align: initial;
  }

  .section {
    padding-block: 9.5rem 2rem;
  }

  .home.section {
    padding-block: 10.5rem 2rem;
  }

  .home__container{
    column-gap: 4rem;
    padding-bottom: 2rem;
  }

  .home__image{
    order: -1;
  }

  .home__image {
    justify-self: flex-end;
    padding-right: 3vw;
  }

  .home__bg{
    height: 85vh;
  }

  .home__content {
  /* .features__content{ */
    padding-right: 2rem;
  }

  .choose__image {
    padding-left: 2rem;
  }

  .features__content {
    max-width: 100%;
  }

  .features__info {
    max-width: 100%;
  }

  .gooey2 {
    height: 212.75px;
    width: 218.5px;
  }

  .choose.section {
    padding-top: 11.5rem;
  }

  /* .choose__data p,
  .choose__data h2 {
    margin-left: 0;
  } */

  .choose__description {
    width: 50vw;
    margin: 0;
  }

  .features__description {
    max-width: 100%;
    width: 50vw;
    /* margin: 0; */
  }

  .choose__content{
    padding-left: 2rem;
    max-width: 100%;
  }

  .features__data h2 {
    margin-inline-start: 0;
    margin-inline-end: auto;
  }

  .choose__image{
    order: 1;
    justify-self: flex-start;
  }

  .choose_faq {
    padding-left: 3rem;
  }

  .home__buttons,
  .home__info{
    justify-content: initial;
  }

  .home__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .features__container,
  .join__bg {
    grid-template-columns: 33% 62%;
    align-items: center;
  }

  .join__bg {
    width: 90vw;
  }

  .features__image {
    justify-self: center;
  }

  .choose__container {
    grid-template-columns: 55% 35%;
    align-items: center;
  }

  .popular__container {
    width: 90vw;
    margin-inline: auto;
  }

  .popular__description{
    margin: initial;
  }

  .popular__content{
    max-width: 100vw;
  }

  .popular__data{
    display: grid;
    justify-content: center;
    text-align: center;
  }

  .popular__card {
    width: 41.3vw;
  }

  .popular__data .section__title{
    text-align: center;
  }

  .features__image{
    order:-1;
  }

  .products__data .section__title{
    text-align: center;
  }

  .join__container {
    grid-template-columns: 55vw 30vw;
    justify-content: center;
  }

  .join__bg {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    order: -1;
  }

  .join__data h2 {
    margin: 0 0 0.75rem 0;
  }

  /* .join__data .section__title {
    text-align: center;
  } */

  .join__form {
    grid-template-columns: repeat(1, 1fr);
    column-gap: .5rem;
    /* background-color: var(--body-color); */
    border-radius: 4rem;
    /* padding-left: 1.5rem; */
  }

  .join__image {
    justify-self: center;
    align-self: center;
    padding-left: 0.5rem;
    margin-bottom: 0;
  }

  .join__img {
    height: 250px;
    width: 400px;
  }

  /* .join__input {
    padding: 1rem 0;
  } */

  .join__description {
    width: 100%;
    max-width: 100%;
  }

  .join__data.callbut {
    text-align: center;
  }

  .join__data.callbut {
    margin-top: 4rem;
  }

  /* .footer__data {
    grid-template-columns: repeat(3, max-content);
  }*/

  .footer__data {
    gap: 7.5vw;
  } 

  .footer__description {
    width: 90%;
  }

  .footer__content{
    max-width: 90vw;
  }

  /* .footer_lgdsc {
    max-width: 95vw;
    width: 55vw;
  } */


  /* .footer__group {
    flex-direction: row;
    justify-content: space-between;
  } */

  
  .footer__content{
    max-width: 100%;
    grid-template-columns: 65% 30%;
    justify-content: space-between;
  }

  .footer__copy{
    order: -1;
  }

  .tuto-button {
    justify-content: center;
    margin-top: 5rem;
  }

  .tutomain .choose__container {
    grid-template-columns: repeat(1, 75vw);
  }

  .tutomain .choose__content {
    padding-left: 0;
  }

  .tutomain .choose__data {
    text-align: center;
    justify-items: center;
  }

  .tutomain .choose__data .section__title {
    text-align: center;
    justify-items: center;
  }

  .tutomain .choose__data p,
  .tutomain .choose__data h2 {
    margin: 0 auto 0.75rem auto;
  }

  .tutomain .features__container {
    max-width: 100%;
    width: 85vw;
    grid-template-columns: 30% 52%;
    align-items: center;
  }
  
}

@media screen and (min-width: 768px) and (max-height: 800px) {
  
  .home.section {
    padding-block: 5.5rem 2rem;
  }
  
  .home__bg {
    height: 100%;
  }
}


@media screen and (min-width: 768px) and (min-height: 1024px) {
  .home__bg {
    height: 120%;
  }

  .home.section {
    padding-block: 8rem 0.75rem;
  }

  .e-zincometaxmap {
    height: 15vh;
  }

  .choose.section {
    padding-top: 14.5rem;
  }

  .choose__image {
    padding-left: 0;
  }

  .section {
    padding-top: 10rem;
  }

  .join.section {
    padding-top: 7.5rem;
  }
}


/* For large devices */
@media screen and (min-width: 1024px){
  .header{
    height: 72px;
  }

  .section__title {
    max-width: 100%;
  }
  
  .home__logoimage{
    align-self: auto;
    transform: translateY(0.4rem) translateX(2rem);
  }

  .nav__buttons {
    transform: translateX(-1.75rem);
    column-gap: 1.5rem;
  }
  
  .nav{
    column-gap: 4rem;
    height: 72px;
  }

  .nav__close,
  .nav__toggle{
    display: none;
  }

  .nav-toogle2 {
    display: flex;
  }

  .nav__list{
    flex-direction: row;
    column-gap: 4rem;
    align-items: center;
    align-self: center;
  }

  .nav__menu{
    margin: auto;
    align-items: center;
    align-self: center;
    
  }

  .nav__list {
    justify-content: space-evenly;
  }

  .nav__item {
    margin-inline: 0.5rem;
  }

  .dark-theme .nav__menu{
    box-shadow: none;
  }

  .change-theme{
    color: var(--text-color);
  }

  .bg-header .change-theme{
    color: var(--text-color);
  }

  .home__bg {
    height: 92.5vh;
  }
  
  .home__container {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .gooey {
    height: 256.5px;
    width: 288.9px;
  }

  .gooey2 {
    height: 237.5px;
    width: 267.5px;
}

  .home__img {
    width: 150px;
    transform: translateY(0px)
  }

  .choose__img,
  .features__img {
    width: 160px;
    transform: translateY(40px)
  }

  .home__content {
    padding-right: 0;
    padding-left: 2rem;
    row-gap: 2.5rem;
  }

  .home__title {
    margin-bottom: 2rem;
  }

  .home__subtitle {
    margin-bottom: 1rem;
  }

  .home__image {
    justify-self: end;
    padding-right: 2rem;
  }

  .products__content{
    grid-template-columns: repeat(3, max-content);
  }

  .popular__container {
    width: 95vw;
  }

  .popular__card {
    width: 28.7vw;
}

  .footer__data{
    grid-template-columns: repeat(2, max-content);
    gap: 2vw;
  }

  .choose__container,
  .features__container {
    margin-inline: 3rem;
  }

  .features__container {
    gap: 2rem;
  }

  .features__container {
    grid-template-columns: 30% 62%;
  }

  .footer__container {
    grid-template-columns: 60% 38%;
    justify-content: space-between;
  }

  .footer__content {
    max-width: 50vw;
    grid-template-columns: 60% 40%;
  }

  .footer__description {
    width: 90%;
  }

  .tutomain .choose__container {
    padding-top: 7.5rem;
  }

}

@media screen and (min-width: 1024px) and (max-height: 800px) {
  
  .home.section {
    padding-block: 4.5rem 2rem;
  }
  
  .home__bg {
    height: 100%;
  }

  .choose.section {
    padding-top: 5.5rem;
  }
}

@media screen and (min-width: 1024px) and (min-height: 1024px) {
  .home__bg {
    height: 120%;
  }

  .home.section {
    padding-block: 10rem 0.75rem;
  }

  .e-zincometaxmap {
    height: 15vh;
  }

  .choose.section {
    padding-top: 17.5rem;
  }

  .section {
    padding-top: 12.5rem;
  }

  .join.section {
    padding-top: 7.5rem;
  }
}


@media screen and (min-width: 1152px){
  .header{
    height: 95px;
  }

  .home__logo{
    display: flex;
    align-items: center;
  }

  .home__logoimage{
    max-height: 100%;
  }

  .container{
    margin-inline: auto;
    align-items: center;
    max-width: 80vw;
  }

  .section{
    padding-block: 10rem 2rem;
  }

  /* .section__title {
    max-width: 90%;
  } */
  .section__title,  
  .choose__data, 
  .features__data {
    text-align: initial;
  }

  .nav{
    display: flex;
    height: calc(var(--header-height) + 2.5rem);
    align-items: center;
  }

  .home.section {
    padding-block: 6.5rem 2rem;
  }

  .home__container{
    grid-template-columns: 40% 47.5%;
    justify-content: center;
    padding-top: 3.5rem;
    column-gap: 5.5rem;
  }

  .home__bg{
    height: 100vh;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  }

  .home__blob{
    width: 530px;
    height: 670px;
    border: 10px solid transparent;
  }

  .home__shadow{
    width: 435px;
    height: 60px;
    bottom: -2rem;
    filter: blur(28px);
  }

  .home__image {
    justify-self: end;
    padding-right: 0;
  }

  .gooey2 {
    height: 304px;
    width: 342.4px;
  }

  .gooey {
    height: 332.5px;
    width: 374.5px;
  }

  .home__img{
    width: 200px;
    transform: translateY(-10px);
  }

  .home__blob-title{
    font-size: 7rem;
  }

  .home__content{
    row-gap: 3.5rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
  }

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

  .home__title{
    margin-bottom: 2.5rem;
    font-size: 3rem;
  }

  .home__buttons{
    column-gap: 2.5rem;
  }

  .home__info{
    column-gap: 4rem;
    /* text-align: initial; */
  }

  .home__info-title{
    font-size: 2.25rem;
  }

  .home__info-subtitle{
    font-size: var(--normal-font-size);
  }

  .choose__description {
    max-width: 100%;
    width: 40vw;
  }

  .popular__description{
    width: 450px;
  }

  .popular__content{
    padding-block: 4rem 8rem;
    max-width: 100%;
  }

  .swiper-button-next,
  .swiper-button-prev{
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2rem;
  }

  .swiper-button-next{
    right: calc(50% - 3.5rem);
  }

  .swiper-button-prev{
    left: calc(50% - 3.5rem);
  }

  .popular__description,
  .choose__description,
  .choose__faq-description,
  .features__description,
  .products__description,
  .join__description{
    font-size: var(--normal-big-font-size);
  }

  .popular__container.container {
    max-width: 90vw;
  }

  .popular__card,
  .products__card{
    width: 20.35vw;
    height: 47.5vh;
    padding: 1rem 1rem 1rem;
  }

  .popular__blob,
  .products__blob{
    height: 20hv;
    margin-bottom: 1rem;
  }

  .popular__img,
  .products__img{
    width: 150px;
  }

  .popular__name,
  .products__name{
    font-size: var(--h3-font-size);
  }

  .popular__subtitle,
  .products__subtitle{
    font-size: var(--small-font-size);
    margin-bottom: 1.5rem;
  }

  .popular__button,
  .products__button{
    font-size: 1.8rem;
    border-radius: .75rem;
    right: 1rem;
    bottom: 1.5rem;
  }

  .choose.section {
    padding-top: 13.5rem;
}

  .choose__container{
    grid-template-columns: 50% 40%;
    column-gap: 7rem;
  }

  .choose__img{
    width: 215px;
    transform: translateY(50px);
  }

  .choose__blob-title{
    font-size: 7rem;
    left: 1.5rem;
    bottom: 4.5rem;
  }

  .choose__content{
    row-gap: 4rem;
    padding: 0;
  }

  .choose__faq{
    row-gap: 2.5rem;
  }

  .choose__faq-header{
    column-gap: 1.25rem;
  }

  .choose__faq-icon{
    font-size: 1.8rem;
    border-radius: .75rem5;
  }

  .choose__faq-title{
    font-size: var(--h2-font-size);
  }

  .choose__blob,
  .features__blob{
    width: 500px;
    height: 670px;
    border: 10px solid transparent;
  }

  .choose__shadow,
  .features__shadow{
    width: 404px;
    height: 60px;
    bottom: -2rem;
    filter: blur(28px);
  }

  .features__container{
    max-width: 80%;
    grid-template-columns: 35% 60%;
    column-gap: 5rem;
  }

  .features__image {
    justify-self: end;
    padding-right: 2rem;
  }

  .features__description {
    width: 40vw;
    margin: 0;
  }

  .features__img{
    width: 225px;
    transform: translateY(40px);
  }

  .features__blob-title{
    font-size: 7rem;
    right: 1.5rem;
    bottom: 4.5rem;
  }

  .features__content{
    row-gap: 3.5rem;
  }

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

  .features__info-card{
    padding: 3rem 2rem;
  }

  .products__container{
    row-gap: 4.5rem;
  }

  .products__content{
    grid-template-columns: repeat(4, max-content);
    gap: 4rem 3rem;
  }

  .join__container{
    padding-block: 5rem 5rem;
  }

  .join__bg{
    /* grid-template-columns: 450px 380px; */
    justify-self: initial;
    /* height: 442px; */
    column-gap: 6rem;
    padding-inline: 3rem;
  }

  .join__blob{
    /* width: 450px;
    height: 580px; */
    border: 10px solid transparent;
  }

  .join__shadow{
    width: 352px;
    height: 60px;
    bottom: -2rem;
    filter: blur(28px);
  }

  .join__data h2 {
    text-align: center;
  }

  .join__data p {
    width: 80%;
  }
/* 
  .join__image{
    transform: translateY(-8.5rem);
  } */

  .join__bg {
    padding: 4.5rem 3rem 3rem 3rem;
  }

  .join__img{
    width: 360px;
    transform: translateY(-10px);
  }

  .join__blob-title{
    font-size: 7rem;
  }

  .join__content{
    row-gap: 3rem;
  }

  /* .join__form{
    width: 400px;
  } */

  .footer{
    padding-block: 5rem 1rem;
  }

  .footer__logo{
    margin-bottom: 1rem;
  }

  .footer__title{
    font-size: var(--h2-font-size);
    margin-bottom: 1.25rem;
  }

  .footer__links{
    row-gap: 1rem;
  }

  .footer__container {
    grid-template-columns: 60% 30%;
  }

  .footer__container.container {
    max-width: 90%;
  }

  .footer__data{
    column-gap: 4.5rem;
  }

  .footer__social{
    column-gap: 1.5rem;
  }

  .footer__social-link{
    font-size: 1.5rem;
  }

  .footer__group{
    margin-top: 3.5rem;
  }

  .e-zincometaxmap {
    width: 90%;
    margin-inline: auto;
  }

  .scrollup{
    right: 3rem;
  }
}

@media screen and (min-width: 1152px) and (max-height: 800px) {
  
  .home.section {
    padding-block: 4.5rem 2rem;
  }
  
  .home__bg {
    height: 100%;
  }

  .choose.section {
    padding-top: 5.5rem;
  }

  .popular__card {
    height: 100%;
  }

  .home__content {
    row-gap: 2.5rem;
  }
}


@media screen and (min-width: 1152px) and (min-height: 1024px) {
  .home__bg {
    height: 120%;
  }

    
  .home.section {
    padding-block: 10.5rem 2rem;
  }

  .e-zincometaxmap {
    height: 15vh;
  }

  .popular__card {
    height: 100%;
  }


}

@media screen and (min-width: 1626px) {

  .popular__container.container {
    max-width: 1550px;
  }

  .popular__card {
    width: 355px;
  }

}

@media screen and (min-width: 1800px) {

  .nav.container {
    max-width: 1550px;
  }

  .container {
    max-width: 1550px;
  }

  .home__image {
    justify-self: center;
  }

  .home__content {
    padding-left: 4rem;
  }

  .choose__content {
    padding-left: 4rem;
  }

  .choose__image {
    justify-self: center;
  }

  .features__image {
    justify-self: center;
    padding-right: 0;
  }

  .features__description {
    max-width: 100%;
    width: 30vw;
  }

  .join__container {
    grid-template-columns: 65% 35%;
  }

  .footer__container.container {
    max-width: 1550px;
  }

  .tutomain .features__container {
    width: 1550px;
  }

  .tutomain .choose__container {
    grid-template-columns: repeat(1, 1500px);
  }

}