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

/*=============== VARIABLES CSS ===============*/
:root {
  /* --header-height: 3.5rem; */
  --header-height: 3.5rem;
  /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 225;
  --first-color: hsl(var(--hue), 7%, 32%);
  --first-color-alt: hsl(var(--hue), 24%, 28%);
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten: hsl(var(--hue), 24%, 92%);
  --submenu-large-hover-color: #3A3B3C;
  /* --title-color: hsl(var(--hue), 4%, 15%); */
  --title-color: hsl(var(--hue), 4%, 95%);
  /* --title-color: 	hsl(225, 7%, 11%) */
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  /* --body-color: hsl(var(--hue), 0%, 100%); */
  /* --body-color: hsl(225, 7%, 11%) */
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --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-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

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

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    /* --big-font-size: 3.5rem; */
    --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,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: 1s;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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


/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme {
  --first-color-dark: hsl(var(--hue), 8%, 20%);
  --title-color: hsl(var(--hue), 4%, 95%);
  --text-color: hsl(var(--hue), 4%, 75%);
  --body-color: hsl(var(--hue), 8%, 12%);
  /* --body-color: hsl(225, 7%, 11%) */

  --container-color: hsl(var(--hue), 8%, 18%);
}


/* ======== Button Dark/ Light ========= */
.change-theme {
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

.nav__item {
  font-size: 0.8rem;
}

.nav__item-indented {
  /* background-color: #3A3B3C; */
  font-size: 0.8rem;
  padding-left: 2rem;
}

/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/
.dark-theme .steps__bg,
.dark-theme .questions {
  background-color: var(--first-color-dark);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe {
  background-color: var(--container-color);
}

.dark-theme .scroll-header {
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 4%, .3);
}



/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 5.5rem 0 1rem;
}

.section__title,
section__title-center {
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

.section__title_large {
  font-size: var(--h2-font-size);
  color: #1B1C1F;
  margin-bottom: var(--mb-2);
  line-height: 140%;
}

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

.container {
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.container-wider {
  max-width: 1200px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}




.grid {
  display: grid;
}

.main {
  overflow: hidden;
}


/*=============== HEADER ===============*/
.header {
  width: 100%;
  /* background-color: var(--body-color); */
  background-color: hsl(225, 7%, 11%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  transition: .5s;

}

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

.nav__logo,
.nav__toggle,
.nav__close {
  color: var(--title-color);
}

.nav__logo {
  /* text-transform: uppercase; */
  line-height: 0.8rem;
  font-weight: 500;
  letter-spacing: -1px;
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: 0.3s;
}

.nav__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

.nav__logo:hover {
  /* color: var(--first-color); */
  letter-spacing: 1px;
}

.nav__toggle {
  display: inline-flex;
  font-size: 1.25rem;
  cursor: pointer;
}


/*=============== DROPDOWN ===============*/
.dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown__icon {
  font-size: 1.3rem;
  padding: 0 1rem 0 1rem;
  transition: .3s;
}

.dropdown__menu {
  margin: 0.5rem 0 0 0.5rem;
  display: none;
  transition: .3s;
}

.dropdown:hover>.dropdown__menu {
  display: block;
  transition: .3s;
}

.dropdown:hover .dropdown__icon {
  transform: rotate(180deg);
}

.dropdown__item {
  padding: 0.5rem
}

@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    background-color: #1B1C1F;
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: 0.3s;
    z-index: var(--z-fixed);
  }

  .nav__container-large {
    display: none;
  }

}


.nav__close {
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}


.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}


.nav__link {
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: 0.3s;
}

.nav__link-indented {
  color: var(--text-color-light);
  font-weight: var(--font-medium);
  transition: 0.3s;
}


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

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


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


/* Change background header */
.scroll-header {
  box-shadow: 0 1px 4px hsla(var(--hue), 4%, 15%, .1);
}

/* Active link */
.active-link {
  position: relative;
  /* color: var(--first-color); */
  color: hsl(48, 100%, 50%);
}

.active-link::after {
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  /* background-color: var(--first-color); */
  background-color: hsl(48, 100%, 50%);
  ;
}

/*=============== HOME ===============*/


.home__title {
  position: absolute;
  font-size: var(--big-font-size);
  font-family: var(--body-color);
  background-color: transparent;
  top: 30vh;
  left: 20vw;
  width: 100vw;
  /* right:50vw; */
  z-index: 100;
}

.home__description {
  position: absolute;
  font-size: var(--small-font-size);
  font-family: var(--body-color);
  color: #f9f9f9;
  background-color: transparent;
  top: 35vh;
  left: 20vw;
  width: 100vw;
  /* right:50vw; */
  z-index: 100;
}





#hero {
  height: 100vh;
  width: 100%;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5)
}

#hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  object-fit: cover;
  font-family: 'object-fit: cover';
}

#hero .texture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
  background: url('../texture.png');
}

#hero .caption {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
}



#hero .caption h1 {
  text-transform: uppercase;
  font-size: 2em;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0.5rem;
}

#hero .caption h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0;
  font-family: 'PT Sans', sans-serif;
}



#hero_disinfection {
  height: 50vh;
  width: 100%;
  background: red;
  display: flex;
  align-items: center;
  justify-content: center;
}



#hero_disinfection::after {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5)
}


#hero_disinfection video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  object-fit: cover;
  font-family: 'object-fit: cover';
}


#hero_disinfection .texture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
  background: url('../texture.png');
}


#hero_disinfection .caption {
  position: relative;
  z-index: 20;
  text-align: center;
  color: #ffffff;
}



#hero_disinfection .caption h1 {
  text-transform: uppercase;
  font-size: 2em;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 0.5rem;
}

#hero_disinfection .caption h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin: 0;
  font-family: 'PT Sans', sans-serif;
}






.home {
  padding: 0;
}

.home__container {
  position: relative;
  /* row-gap: 2rem; */
}

.home__img {
  /* width:200px; */
  width: 100vw;
  justify-self: center;

}

.home__title {
  font-size: var(--big-font-size);
  line-height: 140%;
  margin-bottom: var(--mb-1);
}


.home__description {
  margin-bottom: var(--mb-2-5);
}

.home__social {
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow {
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  color: var(--first-color);
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after {
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: var(--first-color);
  right: -45%;
  top: 50%;
}

.home__social-links {
  display: inline-flex;
  flex-direction: column;
  row-gap: .25rem;
}

.home__social-link {
  font-size: 1rem;
  color: var(--first-color);
  transition: .3s;
}

.home__social-link:hover {
  transform: translateX(.25rem);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
}

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

.button__icon {
  transition: .3s;
}

.button:hover .button__icon {
  transform: translateX(.25rem);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.button--link {
  color: var(--first-color);
  font-weight: var(--font-medium);
  margin: 0 3rem 0 0;
}

.button--link:hover .button__icon {
  transform: translateX(.25rem);

}

/*=============== ABOUT ===============*/

.about__container {
  row-gap: 2rem;
}

.about__container .transparent {
  background-color: #FFF;
}

.about__img {
  /* width: 280px; */
  width: 380px;
  justify-self: center;
}

.about__title {
  margin-bottom: var(--mb-1);
  color: hsl(225, 7%, 11%);

}

.series__title {
  margin-top: 1rem;
  color: hsl(225, 7%, 11%);
  text-align: center;
}

.about__description {
  margin-bottom: var(--mb-2);
}

.about__details {
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.about__details2 {
  display: grid;
  row-gap: 0.2rem;
  margin-bottom: var(--mb-2-5);
}

.about__details-description {
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
}

.about__details-icon {
  font-size: 1rem;
  color: var(--first-color);
  margin-top: .15rem;
}




/*=============== STEPS ===============*/
.steps__bg {
  background-color: #1B1C1F;
  padding: 3rem 2rem 2rem;
  /* border-radius: 1rem; */
}

.steps__container {
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title {
  color: #fff;
}

.steps__card {
  position: relative;
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number {
  display: inline-block;
  background-color: #1B1C1F;
  color: #fff;
  padding: .5rem .75rem;
  border-radius: 0.25rem;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: .3s;
}

.steps__card-title {
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
  color: hsl(225, 7%, 11%);
}

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

.steps__card:hover .steps__card-number {
  transform: translateY(-.5rem);
}



/*=============== PRODUCTS ===============*/
.product__description {
  text-align: center;
}

.product_container {
  padding: 3rem 0;
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.product__card {
  display: grid;
  position: relative;
}

.product__img {
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: 0.3s;
}

.product__title,
.product__price {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title {
  margin-bottom: .25rem;
}

.product__button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #FFF;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 1.15rem;
}

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

.product__circle {
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
  transition: .6s;

}

.product__card:hover .product__img {
  transform: translateY(-.5rem);
}

/*=============== QUESTIONS ===============*/
.questions {
  background-color: var(--first-color-lighten);
}

.questions__container {
  gap: 1.5rem;
  padding: 1.5rem;
}

.questions__group {
  display: grid;
  row-gap: 1.5rem;
}

.questions__item {
  background-color: var(--container-color);
  border-radius: .25rem;
}

.questions__item-title {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.questions__icon {
  font-size: 1.25rem;
  color: var(--text-color);
}

.questions__description {
  font-size: var(--small-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.questions__header {
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.questions__content {
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content {
  transition: .3s;
}

.questions__item:hover {
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}


/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content {
  background-color: var(--first-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon {
  color: #FFF;
}

.accordion-open .questions__icon {
  transform: rotate(45deg);
}

/*=============== CONTACT ===============*/
.contact__container {
  /* grid-template-columns: repeat(3,1fr); */
  padding: 2rem;
  row-gap: 3.5rem;
  background-color: #1B1C1F;
}

.contact__data {
  display: grid;
  row-gap: 2rem
}

.contact__subtitle {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-0-5);
}

.contact__description {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon {
  font-size: 1.25rem;
}

.contact__inputs {
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content {
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label {
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area {
  height: 7rem;
}

.contact__area textarea {
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus+.contact__label {
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus)+.contact__label {
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== FOOTER ===============*/
.footer__container {
  row-gap: 3rem;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: .3s;
}

.footer__logo-icon {
  font-size: 1.15rem;
  color: var(--first-color);
}

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

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

.footer__subscribe {
  background-color: var(--first-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input {
  width: 70%;
  padding: 0 .5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button {
  padding: 1rem;
}

.footer__data {
  display: grid;
  row-gap: 0;
  margin-bottom: 3rem;
}

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

.footer__social {
  display: inline-flex;
  column-gap: .75rem;
}

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

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

.footer__cards {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.footer__card {
  width: 35px;
}

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}


/*=============== SCROLL UP ===============*/
/* Show Scroll Up*/
.scrollup {
  position: fixed;
  background-color: var(--first-color);
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon {
  font-size: 1rem;
  color: #FFF;
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.show-scroll {
  bottom: 3rem;
}

/*=============== DROPDOWN ===============*/
.dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown__icon {
  font-size: 1.3rem;
  padding: 0 1rem 0 1rem;
  transition: .3s;
}

.dropdown__menu {
  margin: 0.5rem 0 0 0.5rem;
  display: none;
  transition: .3s;
}

.dropdown:hover>.dropdown__menu {
  display: block;
  transition: .3s;
}

.dropdown__item {
  padding: 1.5rem
}

.dropdown {
  position: relative;
}

.dropdown__menu {
  position: fixed;
  margin: 0;
  top: calc(var(--header-height)+0);
  padding: 0 1.5rem;
  background-color: var(--black-color);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}


.nav__link-header {
  position: relative;
  font-family: var(--header-font);
  color: var(--gray-color);
  transition: .3s;
}

.nav__link-header:hover {
  color: var(--white-color);
}

.nav__link-subheader {
  position: relative;
  font-family: var(--header-font);
  color: var(--gray-color);
  transition: .3s;
}

.nav__link-subheader:hover {
  color: var(--white-color);
}

.nav__icon {
  font-size: 1.25rem;
  transition: .3s;
}

.drop-btn {
  width: auto;
  cursor: pointer;
  color: #f9f9f9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5rem;
  padding: 0 1.25rem;
  border-radius: 0.313rem;
  font-weight: 400;
}

.drop-btn i {
  float: right;
  line-height: 3.125rem;
  font-size: 1.75rem;
  cursor: pointer;
}

.wrapper {
  position: absolute;
  top: calc(var(--header-height) - 10px);
  /* top: 2rem; */
  display: flex;
  width: auto;
  background-color: #1B1C1F;
  border-radius: 0.313rem;
  display: none;
  transition: .3s;
}

.wrapper.show2 {
  transition: .3s;
  display: block;
  display: flex;
}

.wrapper.show2 {
  transition: .3s;
  display: block;
  display: flex;
}

.wrapper ul {
  list-style: none;
  width: max-content;
  padding: .5rem 1rem;
}

.wrapper ul li {
  line-height: 3.438rem;

}

.wrapper ul li a {
  text-decoration: none;
  color: gray;
  display: flex;
  font-weight: 400;
  column-gap: 1rem;
  padding: 0 0.625rem;
  align-items: center;
  transition: .3s;
  z-index: 150;
}

.wrapper ul li a.active {
  text-decoration: none;
  color: white;
  display: flex;
  font-weight: 400;
  column-gap: 1rem;
  padding: 0 0.625rem;
  align-items: center;
  transition: .3s;
  z-index: 150;
}

/* .active {
  color: white !important;
} */

.wrapper ul li:hover a {
  background-color: var(--submenu-large-hover-color);
}

.wrapper ul li a .icon {
  height: 2.5rem;
  width: 2.5rem;
  margin-right: 0.813rem;
  background-color: #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
}




/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (min-width: 320px) and (max-width : 575px) {
  .container {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .container_wider {
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__content {
    position: relative;
  }

  .home__title {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    background-color: transparent;
    top: 25vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__description {
    position: absolute;
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    top: 45vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__scroll {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 10vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  .dropdown__menu {
    margin: 0.5rem 0 0 0.5rem;
    display: block;
    transition: .3s;
  }

  .dropdown__icon {
    display: none;
  }

  .section__title__tiny {
    text-align: center;
    color: #1B1C1F;
  }

  .section__title_large {
    display: none;
  }

  .bigger {
    font-size: var(--big-font-size);
  }

  .home__scroll-arrow {
    transition: .3s;
  }

  .home__scroll-arrow:hover {
    font-size: 5rem;
  }

  .home__img {
    /* width: 180px; */
    width: 100vw;
  }

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

  .steps__bg {
    padding: 2rem 1rem;
  }

  .steps__card {
    position: relative;
    padding-top: 1.5rem;
  }

  .product_container {
    grid-template-columns: .6fr;
    justify-content: center;
  }

  .about {
    row-gap: 3rem;
  }

  .about2 {
    row-gap: 3rem;
  }

  .about__container {
    /* grid-template-columns: repeat(2,1fr); */
    row-gap: 3rem;
    align-items: center;
    background-color: #e0e0e0;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: .3s;
  }


  .button--link {
    color: var(--first-color);
    font-weight: var(--font-medium);
    margin: 0 3rem 1rem 0;
    ;
  }

  .button--link:hover .button__icon {
    transform: translateX(.25rem);

  }

  .mapouter {
    display: none;
  }

  .home__card {
    position: absolute;
    height: auto;
    width: 100%;
    padding: 2rem;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: #1b1c1f9c;
    border-radius: 0.25rem;
    z-index: 200;
  }

  .home__description2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    margin-top: 1rem;
  }

  .home__scroll2 {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 1vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  /* SWIPER STYLING  */

  .swiper__container {
    position: relative;
    height: 100%;

  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 3rem;
    margin-bottom: 3rem;
  }

  .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .slide__container {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* display: flex;
    flex-direction: column; */

  }

  .slide__description {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 9rem;
    color: #f9f9f9;
    padding: 1rem;
    /* z-index: 200; */
    text-align: center;
    background-color: #1b1c1f8c;
  }

  .slide__img {
    /* width:300; */
    transition: 0.3s;
  }

  .slide__container:hover .slide__img {
    transform: scale(1.2);
  }

  .slide__paragraph {
    text-align: left;
    font-size: x-small;
  }

  .ce_certificate {
    position: absolute;
    top: 5%;
    right: 0;
    width: 150px;
  }


}

/* For medium devices */
@media screen and (min-width: 576px) {
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .mapouter {
    display: none;
  }

  .product__description {
    padding: 0 4rem;
  }



  .product_container {
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    column-gap: 5rem;
  }

  .footer__subscribe {
    width: 400px;
  }

  .about {
    row-gap: 3rem;
  }

  .about2 {
    row-gap: 3rem;
  }

  .about__container {
    /* grid-template-columns: repeat(2,1fr); */
    row-gap: 3rem;
    align-items: center;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: .3s;
  }

  .about__container .transparent {
    background-color: #FFF;
  }


  .dropdown__menu {
    margin: 0.5rem 0 0 0.5rem;
    display: block;
    transition: .3s;
  }

  .dropdown__icon {
    display: none;
  }

  .home__content {
    position: relative;
  }

  .home__title {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    background-color: transparent;
    top: 30vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

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

  .home__description {
    position: absolute;
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    top: 45vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__scroll {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 10vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  .bigger {
    font-size: var(--big-font-size);
  }

  .home__card {
    position: absolute;
    height: auto;
    width: 100vw;
    padding: 2rem;
    top: 0;
    left: 0;
    background-color: #1b1c1f9c;
    border-radius: 0.25rem;
    z-index: 200;
  }

  .home__description2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: left;
    color: #f9f9f9;
    background-color: transparent;
    margin-top: 1rem;
    /* margin: auto; */
    /* width: 70vw; */
    /* right:50vw; */
    /* z-index:100; */
  }

  .home__scroll2 {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 1vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  .section__title__tiny {
    display: none;
  }

  /* SWIPER STYLING  */

  .swiper__container {
    position: relative;
    height: 100%;

  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 3rem;
    margin-bottom: 3rem;
  }

  .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .slide__container {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* display: flex;
      flex-direction: column; */

  }

  .slide__description {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 9rem;
    color: #f9f9f9;
    padding: 1rem;
    /* z-index: 200; */
    text-align: center;
    background-color: #1b1c1f8c;
  }

  .slide__img {
    /* width:300; */
    transition: 0.3s;
  }

  .slide__container:hover .slide__img {
    transform: scale(1.2);
  }

  .slide__paragraph {
    text-align: left;
    font-size: small;
  }

  /* .dropdown__menu{
      margin: 0.5rem 0 0 0.5rem;
      display: none;
      transition: .3s;
    } */

  /* .dropdown__icon{
      display: none;
    }
   */


}

@media screen and (min-width: 767px) {
  .body {
    margin: 0;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__menu {
    display: none;
    margin-left: auto;
  }

  .nav__list-header {
    display: flex;
    flex-direction: row;
    width: 50vw;
    justify-content: center;
    align-items: center;
    column-gap: 5rem;
  }



  .about {
    row-gap: 8rem;
  }

  .about2 {
    row-gap: 3rem;
  }

  .questions__container,
  .contact__container,
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: baseline;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: .3s;

  }

  .section__title__tiny {
    display: none;
  }

  .about__container .transparent {
    background-color: #FFF;
  }

  .contact__container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4rem;
    /* align-items: baseline; */
    padding: 3rem;
    align-items: center;
  }

  .mapouter {
    display: none;
  }

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

  .home__container {
    align-items: center;
  }

  .home {
    padding: 0
  }

  .home__img {
    width: 100vw;
    order: 1;
  }

  .home__social {
    top: 30%;
  }


  .home__content {
    position: relative;
  }

  .home__title {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    background-color: transparent;
    top: 25vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__description {
    position: absolute;
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    top: 45vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__scroll {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 10vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  .bigger {
    font-size: var(--big-font-size);
  }

  .home__card {
    position: absolute;
    height: auto;
    width: 40vw;
    padding: 2rem;
    top: 10vh;
    left: 1vw;
    background-color: #1b1c1f9c;
    border-radius: 0.25rem;
    z-index: 200;
  }

  .home__description2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: left;
    color: #f9f9f9;
    background-color: transparent;
    margin-top: 1rem;
    /* margin: auto; */
    /* width: 70vw; */
    /* right:50vw; */
    /* z-index:100; */
  }

  .home__scroll2 {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 1vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }


  .questions__container {
    align-items: flex-start;
  }

  .footer__container {
    column-gap: 3rem;
  }

  .footer__subscribe {
    width: initial;
  }

  /* SWIPER STYLING  */

  .swiper__container {
    position: relative;
    height: 100%;

  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 3rem;
    margin-bottom: 3rem;
  }

  .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .slide__container {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* display: flex;
      flex-direction: column; */

  }

  .slide__description {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 9rem;
    color: #f9f9f9;
    padding: 1rem;
    /* z-index: 200; */
    text-align: center;
    background-color: #1b1c1f8c;
  }

  .slide__img {
    /* width:300; */
    transition: 0.3s;
  }

  .slide__container:hover .slide__img {
    transform: scale(1.2);
  }

  .slide__paragraph {
    text-align: left;
    font-size: small;
  }

  .dropdown {
    position: relative;
  }

  .dropdown__menu {
    position: fixed;
    margin: 0;
    top: calc(var(--header-height)+0);
    padding: 0 1.5rem;
    background-color: #1B1C1F;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .dropdown__menu {
    margin: 0.5rem 0 0 0.5rem;
    display: none;
    transition: .3s;
  }

  .dropdown:hover>.dropdown__menu {
    display: block;
    transition: .3s;
  }

  .dropdown:hover .dropdown__icon {
    transform: rotate(180deg);
  }

  .dropdown__item {
    padding: 0.5rem
  }

  .dropdown__icon {
    display: block;
  }
}

/* For large devices */
@media screen and (min-width:992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .container-wider {
    margin-left: auto;
    margin-right: auto;
  }

  .mapouter {
    display: flex;
  }

  .section {
    padding: 4rem 0 1rem;
  }

  .section__title,
  .section__title_large,
  .section__title-center {
    font-size: var(--h1-font-size);
  }

  .section__title_large {
    color: #1B1C1F;
  }

  .section__title__tiny {
    display: none;
  }

  .home {
    padding: 0
  }

  .home__img {
    width: 100vw;
  }

  /* .home__description{
    padding-right: 7rem ;
  } */

  .about__img {
    width: 380px;
    transition: .3s;
  }

  /* .about__img:hover{
    transform : translateX(.25rem);
  }

  .about__img:hover .flipped{
    transform : translateX(-0.25rem);
  } */

  .steps__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps__bg {
    padding: 3.5rem 2.5rem;
  }

  .steps__card-title {
    font-size: var(--normal-font-size);

  }

  .product__description {
    padding: 0 16rem
  }

  .product_container {
    padding-top: 4rem 0;
    grid-template-columns: repeat(3, 185px);
    gap: 4rem 6rem;
    /* align-items: center; */
  }

  .product__img {
    width: 160px;
  }

  .product__circle {
    width: 110px;
    height: 110px;
  }

  .product__title,
  .product__price {
    font-size: var(--normal-font-size);
  }

  .questions__container {
    padding: 1rem 0 4rem;
  }

  .questions__title {
    text-align: initial;
  }

  .questions__group {
    row-gap: 2rem;
  }

  .questions__header {
    padding: 1rem;
  }

  .questions__description {
    padding: 0 3.5rem 2.25rem;
  }

  .footer__logo {
    font-size: var(--h3-font-size);
  }

  .footer__container {
    grid-template-columns: 1fr .5fr .5fr .5fr;
  }

  .footer__copy {
    margin: 7rem 0 2rem;
  }

  .home__content {
    position: relative;
  }

  .home__title {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    background-color: transparent;
    top: 30vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__description {
    position: absolute;
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    top: 45vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__scroll {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 10vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  .bigger {
    font-size: var(--big-font-size);
  }

  .home__card {
    position: absolute;
    height: auto;
    width: 40vw;
    padding: 2rem;
    top: 10vh;
    left: 1vw;
    background-color: #1b1c1f9c;
    border-radius: 0.25rem;
    z-index: 200;
  }

  .home__description2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: left;
    color: #f9f9f9;
    background-color: transparent;
    margin-top: 1rem;
    /* margin: auto; */
    /* width: 70vw; */
    /* right:50vw; */
    /* z-index:100; */
  }

  .home__scroll2 {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 1vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  /* SWIPER STYLING  */

  .swiper__container {
    position: relative;
    height: 100%;

  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 3rem;
    margin-bottom: 3rem;
  }

  .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .slide__container {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* display: flex;
      flex-direction: column; */

  }

  .slide__description {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 9rem;
    color: #f9f9f9;
    padding: 1rem;
    /* z-index: 200; */
    text-align: center;
    background-color: #1b1c1f8c;
  }

  .slide__img {
    /* width:300; */
    transition: 0.3s;
  }

  .slide__container:hover .slide__img {
    transform: scale(1.2);
  }

  .slide__paragraph {
    text-align: left;
    font-size: x-small;
  }

  .dropdown__menu {
    margin: 0.5rem 0 0 0.5rem;
    display: none;
    transition: .3s;
  }

  .dropdown:hover>.dropdown__menu {
    display: block;
    transition: .3s;
  }

  .dropdown:hover .dropdown__icon {
    transform: rotate(180deg);
  }

  .dropdown__item {
    padding: 0.5rem
  }


}


@media screen and (min-width:1200px) {
  .home {
    padding: 1rem 0;
  }

  .home__social {
    right: -3rem;
    row-gap: 4.5rem;
  }

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

  .home__social-follow::after {
    width: 1.5rem;
    right: -60%;
  }

  .home__social-link {
    font-size: 1.15rem;
  }

  .about__container {
    column-gap: 7rem;
    align-items: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
    transition: .3s;
  }

  .about__container .transparent__container {
    background-color: #FFF;
  }

  .home__content {
    position: relative;
  }

  .section__title__tiny {
    display: none;
  }

  .home__title {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    background-color: transparent;
    top: 30vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__description {
    position: absolute;
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    top: 45vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    /* right:50vw; */
    z-index: 100;
  }

  .home__card {
    position: absolute;
    height: auto;
    width: 40vw;
    padding: 2rem;
    top: 10vh;
    left: 1vw;
    background-color: #1b1c1f9c;
    border-radius: 0.25rem;
    z-index: 200;
  }

  .home__description2 {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: left;
    color: #f9f9f9;
    background-color: transparent;
    margin-top: 1rem;
    /* margin: auto; */
    /* width: 70vw; */
    /* right:50vw; */
    /* z-index:100; */
  }

  .home__scroll {
    position: absolute;
    font-size: var(--big-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;
    /* top:55vh; */
    bottom: 10vh;
    left: 0;
    right: 0;
    margin: auto;
    width: 70vw;
    z-index: 200;
  }

  .home__scroll-label {
    font-size: var(--small-font-size);
    font-family: var(--body-color);
    text-align: center;
    color: #f9f9f9;
    background-color: transparent;

  }

  .bigger {
    font-size: var(--big-font-size);
  }

  .about__container .transparent__container {
    background-color: #FFF;
  }

  .about__container:hover {
    box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .25);
    /* column-gap: 5rem; */
  }



  .scrollup {
    right: 3rem;
  }


  /* SWIPER STYLING  */

  .swiper__container {
    position: relative;
    height: 100%;

  }

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 3rem;
    margin-bottom: 3rem;
  }

  .swiper-slide img {
    display: block;
    width: auto;
    height: 100%;
    object-fit: cover;
  }

  .slide__container {
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* display: flex;
    flex-direction: column; */

  }

  .slide__description {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 9rem;
    color: #f9f9f9;
    padding: 1rem;
    /* z-index: 200; */
    text-align: center;
    background-color: #1b1c1f8c;
  }

  .slide__img {
    /* width:300; */
    transition: 0.3s;
  }

  .slide__container:hover .slide__img {
    transform: scale(1.2);
  }

  .slide__paragraph {
    text-align: left;
    font-size: small;
  }

  .ce_certificate {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
  }

}