@import url('normalize.css');


/* general */
@font-face {
  font-family: 'hn medium';
  src: url('../font/helvetica-neue/HelveticaNeue_Medium.ttf');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'hn bold';
  src: url('../font/helvetica-neue/Helvetica_Neu_Bold.ttf');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'hn light';
  src: url('../font/helvetica-neue/HelveticaNeue_Thin.ttf');
  font-weight: light;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #00FFF8;
  --secondary: #A2FFFC;
  --black: #343434;
  --gray: #7B7B7B;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: 'hn medium', sans-serif;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-gray {
  color: var(--gray) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-start {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: right;
}

figure {
  margin: 0;
}

.subtitle-section {
  font-family: 'hn medium';
  font-size: 1.5rem;
  text-shadow: none;
  font-weight: 400;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: initial;

}

.desktop-background-2 {
  background-image: none;
}

.form-custom-cb {
  display: inline-block;
}

/* Works on Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(180 180 180) rgb(220 220 220);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgb(220 220 220);
  padding: 0 20px;
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(180 180 180);
  border-radius: 100px;
  margin: 0 5px;
}


.managements-overflow-container::-webkit-scrollbar-track {
  background: transparent;
  padding: 0;
}

.managements-overflow-container::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.managements-container::-webkit-scrollbar-track {
  background: transparent;
  padding: 0;
}

.managements-container::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.form-control {
  display: block;
  width: 100%;
  border: 1px solid var(--gray);
  font-size: 1.2rem;
  padding: 5px 2px;
  background: transparent;
}

input[type="checkbox"] {
  border-radius: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--black);
  border-radius: 10px;
  padding: 5px 30px;
  border: none;
  cursor: pointer;
  transition: all .3s ease 0s;
  font-size: 1.2rem;
}

.btn-primary:hover {
  background: var(--secondary);
}

.btn-lg {
  padding: 9px 55px;
}

/* custom checkbox */
/* The container */
.form-contact-section .form-contact-container .cb-container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: .8rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.cb-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid var(--gray);
}

/* On mouse-over, add a grey background color */
/* .cb-container:hover input ~ .checkmark {
  background-color: #ccc;
} */

/* When the checkbox is checked, add a blue background */
.cb-container input:checked~.checkmark {
  background-color: var(--primary);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cb-container input:checked~.checkmark:after {
  display: block;
}

.close-open-menu {
  cursor: pointer;
}

/* Style the checkmark/indicator */
/* .cb-container .checkmark:after {
  left: 30%;
  top: 50%;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
} */
@media(min-width: 992px) {
  .subtitle-section {
    font-size: 2.5rem;
  }

  .form-control {
    padding: 14px 5px;
  }

  .form-contact-section .form-contact-container .cb-container {
    font-size: 1rem;
    padding-left: 32px;
  }

  .checkmark {
    height: 20px;
    width: 20px;
  }

  .desktop-background-2 {
    background-image: url('../img/static_background.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 900px;
  }

  .managements-overflow-container::-webkit-scrollbar-track {
    /* background: rgb(220 220 220);
    padding: 0 20px; */
  }

  .managements-overflow-container::-webkit-scrollbar-thumb {
    /* background-color: rgb(180 180 180);
    border-radius: 100px;
    margin: 0 5px; */
  }
}

/* general end */





/* managements */
.static-background-mobile {
  position: absolute;
  object-fit: cover;
  object-position: center;
  top: 1150px;
  height: 800px;
  width: 100%;
  z-index: -1;
}

.static-background-mobile2 {
  position: absolute;
  object-fit: cover;
  object-position: center;
  top: 2750px;
  height: 900px;
  width: 100%;
  z-index: -1;
}

.static-background-mobile3 {
  position: absolute;
  object-fit: cover;
  object-position: center;
  top: 5400px;
  height: 900px;
  width: 100%;
  z-index: -1;
}

.managements-container {
  gap: 10px;
}

.managements-section {
  padding-top: 20px;
}

.managements-overflow-container {
  overflow-x: auto;
  padding: 20px 7px;
}

.managements-container {
  min-width: 1280px;
  /* margin: 0 auto; */
  user-select: none;
  transition: transform 5s ease 0s;



}

.managements-section .management {
  width: 300px;
  border-radius: 10px;
  padding: 10px 30px 25px 30px;
  background: white;
  height: 160px;
}

.management-start {
  box-shadow: 4px 4px 20px 1px rgb(0 0 0 / .1);
}

.management-center {
  box-shadow: 0px 4px 20px 1px rgb(0 0 0 / .1);
}

.management-end {
  box-shadow: -4px 4px 20px 1px rgb(0 0 0 / .1);
}

.managements-section .management img {
  width: 30px;
}

.managements-section .management p {
  margin: 0;
  font-size: 1rem;
}

@media(min-width: 992px) {
  .managements-section {
    margin-top: 20px;
    padding-top: 0px;

  }

  .managements-section .management {
    width: 360px;
    padding: 5px 25px 20px 25px;
  }

  .managements-section .management img {
    width: 50px;
  }

  .managements-section .management p {
    font-size: 1.1rem;
  }

  .managements-overflow-container {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }

  .managements-container {
     min-width: 1430px;
     padding-left: 10px;
     padding-right: 10px;
    /*display: flex;
    cursor: grab;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0; */
    /* margin: 0 auto; */
    user-select: initial;
    transition: none;
  }
}

/* managements end */



/* why e-genya */
.why-e-genya-section {
  padding-top: 50px;
}

.why-e-genya-desktop-container {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background-color: white;
  background-image: url('../img/por_que_e_genya.webp');
  background-position: left center;
  background-size: 27%;
  background-repeat: no-repeat;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1);
  padding: 40px 30px;
  padding-bottom: 120px;
}

.why-e-genya-desktop-container .shadow-bottom-right {
  box-shadow: 2px 2px 20px 1px rgb(0 0 0 / .1);
}

.why-e-genya-desktop-container .shadow-bottom-left {
  box-shadow: -2px 2px 20px 1px rgb(0 0 0 / .1);
}

.why-e-genya-desktop-container .cards-container {
  display: flex;
  max-width: 700px;
  justify-content: space-between;
  margin-left: auto;
  flex-wrap: wrap;
}

.why-e-genya-desktop-container h2 {
  margin-bottom: 55px;
}

.why-e-genya-desktop-container .card-container {
  width: 100%;
  max-width: 320px;
  padding: 20px 30px;
  border-radius: 20px;
  background: white;
  min-height: 150px;
}

.why-e-genya-desktop-container .card-first {
  margin-bottom: 90px;
}

.why-e-genya-desktop-container .card-second {
  margin-bottom: 90px;
}

.why-e-genya-desktop-container .card-container h3 {
  font-size: 1.7rem;
  font-family: 'hn bold';
  color: var(--black);
  margin-bottom: 15px;
  margin-top: 0;
}

.why-e-genya-desktop-container p {
  color: var(--gray);
  margin: 0;
  font-size: 1.2rem;
}

.why-e-genya-desktop-container p span {
  color: var(--black);
}

.why-e-genya-mobile-container .shadow-bottom-right {
  box-shadow: 2px 2px 20px 1px rgb(0 0 0 / .1);
}

.why-e-genya-mobile-container .cards-container {
  display: flex;
  justify-content: center;
  margin-left: auto;
  flex-wrap: wrap;
  width: 100%;
}

.why-e-genya-mobile-container h2 {
  margin-bottom: 55px;
}

.why-e-genya-mobile-container .card-container {
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  border-radius: 20px;
  background: white;
  min-height: 150px;
}

.why-e-genya-mobile-container .card-container {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, .25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.why-e-genya-mobile-container .card-container h3 {
  font-size: 1.7rem;
  font-family: 'hn bold';
  color: var(--black);
  margin-bottom: 15px;
  margin-top: 0;

}

.why-e-genya-mobile-container p {
  color: var(--gray);
  margin: 0;
  font-size: 1.1rem;
}

.why-e-genya-mobile-container p span {
  color: var(--black);
}

@media(min-width: 992px) {
  .why-e-genya-section {
    padding-top: 70px;
  }
}

@media(min-width: 1200px) {
  .why-e-genya-desktop-container .card-container {
    max-width: 400px;
  }

  .why-e-genya-desktop-container .cards-container {
    max-width: 850px;
  }
}

/* why e-genya end */



/* benefits */
.benefits-section {
  padding-top: 30px;
  background: linear-gradient(to top, rgb(162 255 252 / .2) 0%, transparent 30%);
}

.benefits-section h2.title-section {
  margin-bottom: 20px;
}

.benefits-section .benefit {
  margin-bottom: 25px;
}

.benefits-section .benefit p {
  margin: 0 auto;
  text-align: center;
  max-width: 200px;
}

.benefits-section .benefit figure {
  text-align: center;
  margin: 0;
}

.benefits-section .benefit figure img {
  width: 50px;
  margin-bottom: 5px;
}

.benefits-section .benefit figure figcaption {
  margin: 0;
}

@media(min-width: 992px) {
  .benefits-section .benefit figure img {
    width: 80px;
  }

  .benefits-section .benefit figure,
  .benefits-section .benefit p {
    font-size: 1.2rem;
  }

  .benefits-section {
    padding-top: 70px;
    padding-bottom: 130px;
  }

  .benefits-section h2.title-section {
    margin-bottom: 50px;
  }
}

/* benefits end */





/* success */

.success-section {
  position: relative;
  z-index: 10;
  padding-top: 20px;
}

.video-box {
  box-shadow: 0px 10px 5px #b1b0b0;
  border: solid #d6d6d6b0 2px;
}

.video-container-success {
  text-align: center;
  /* height: 300px; */
  padding-bottom: 56.25%;
  position: relative;
}

.video-container-success>figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.video-container-success i {
  cursor: pointer;
}

.img-video-container-success {
  /* box-shadow: inset 0px 40px 40px -30px #00fff170; */
  z-index: 10;
  background-image: url('../img/egenya_Andres_Bello.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.iframe-video-container-success {
  display: none;
}

.iframe-video-success {
  width: 100%;
  max-width: 1100px;
  height: 300px;
}

.iframe-video-success {
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

#player2 {
  position: absolute;
  left: 0;
  top: 0;
}

.img-video-container-success-uAndes {
  /* box-shadow: inset 0px 40px 40px -30px #00fff170; */
  z-index: 10;
  background-image: url('../img/egenya_Clinica_Universidad_de_los_Andes.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.iframe-video-container-success-uAndes {
  display: none;
}

.iframe-video-success-uAndes {
  width: 100%;
  max-width: 1100px;
  height: 300px;
}

.iframe-video-success-uAndes {
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

#player3 {
  position: absolute;
  left: 0;
  top: 0;
}










/* video */
.video-section {
  position: relative;
  z-index: 10;
  box-shadow: 0 0 30px 5px rgb(0 0 0 / .1);
  padding-top: 20px;
}

.video-container {
  text-align: center;
  /* height: 300px; */
  padding-bottom: 56.25%;
  position: relative;
}

#player {
  position: absolute;
  left: 0;
  top: 0;
}

.video-container>figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;

}

.img-video-container {
  /* box-shadow: inset 0px 40px 40px -30px #00fff170; */
  z-index: 10;
  background-image: url('../img/img-youtube.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.iframe-video-container {
  display: none;
}

.iframe-video {
  width: 100%;
  max-width: 1100px;
  height: 300px;
}

.iframe-video {
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.video-container i {
  cursor: pointer;
}

.yt-play {
  color: #00FFF8;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  opacity: .7;
  transition: all .5s ease 0s;
}

.yt-play:hover {
  opacity: 1;
}

@media(min-width: 768px) {
  .video-container {
    height: 500px;
  }

  .iframe-video {
    height: 500px;
  }
}

@media(min-width: 992px) {
  .video-section {
    padding-top: 40px;
    padding-bottom: 70px;
    box-shadow: 0 0 30px 5px rgb(0 0 0 / .1);
  }

  .video-container {
    height: auto;
  }

  .iframe-video {
    height: 600px;
  }
}

/* video end */



/* products */
/* cleaning */
.cleaning-section {
  padding-top: 25px;
}

.cleaning-section h3.subtitle-section {
  margin: 0;
  margin-bottom: 20px;
}

.card-product {
  border-radius: 20px;
  padding: 10px 20px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / .1);
  overflow: hidden;
  margin-bottom: 20px;
  /* height: 270px; */
  /* background: rgb(255 255 255 /.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px); */
  background: white;
  padding: 0;
}

.card-product .info-container {
  text-align: center;
}
.card-product .info-container h4{
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.card-product .info-container p {
  margin: 0;
  margin-top: 15px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.card-product .img-container {
  text-align: center;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.card-product .img-container video {
  width: 100%;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%); */
  /* max-width: 200px; */
  margin: 0 auto;
}

@media(min-width: 992px) {
  .cleaning-section {
    padding-top: 120px;
  }

  .cleaning-section h2.title-section {
    margin-bottom: 40px;
  }

  .card-product {
    padding: 40px 30px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / .1);
    display: flex;
    align-items: center;
    /* background: rgb(255 255 255 /.25);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px); */
    flex: 1;
    align-self: center;
    background: white;
    height: 360px;
  }



  .card-product .info-container {
    text-align: left;
  }

  .card-product .info-container h4 {
    font-size: 2rem;
    margin: 0;
    font-family: 'hn bold';
    font-weight: 100;
  }

  .card-product .info-container p {
    font-size: 1.2rem;
    padding-left: 0px;
    padding-right: 0px;
  }

  .card-product .img-container {
    text-align: right;
  }

  .card-product .img-container video {
    position: static;
    transform: translate(0);
    max-width: 300px;
    max-width: none;
  }

  .card-product.card-large .img-container {
    text-align: right;
  }

  .card-product.card-large .img-container video {
    /* max-width: 550px; */
    max-width: 400px;

  }

  .card-product.card-large .info-container p {
    max-width: 300px;
  }
}

/* cleaning end */

/* incidents */
.incidents-section {
  padding-top: 25px;
}

.incidents-section h3.subtitle-section {
  margin: 0;
  margin-bottom: 20px;
}

@media(min-width: 992px) {
  .incidents-section {
    padding-top: 60px;
  }
}

/* incidents end */

/* reporting */

.reporting-section .card-product.card-large .info-container p {
  max-width: 353px;
}

@media(min-width: 992px) {
  .reporting-section {
    padding-top: 20px;
  }
}

/* reporting end */



/* form contact */
.form-contact-section {
  padding: 40px 0;
  background-image: none;
}

.form-contact-container {
  border-radius: 20px;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / .1);
  background: rgb(255 255 255 /.25);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  margin: 0 auto;
  padding: 10px;
}

.form-contact-container form {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

.form-contact-section label {
  color: var(--gray);
  display: inline-block;
}

#message {
  height: 90px;
  resize: vertical;
}

.form-contact-section .cb-label {
  font-size: .8rem;
  display: inline;
}

@media(min-width: 992px) {
  .form-contact-section {
    background-image: url('../img/static_background.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }

  .form-contact-section {
    padding: 80px 0;
  }

  .form-contact-container {
    padding: 30px;
  }

  .form-contact-section label {
    font-size: 1.3rem;
    margin-bottom: 7px;
  }

  #message {
    height: 100px;
  }

  .form-contact-section .cb-label {
    font-size: 1rem;
  }
}

/* form contact end */



/* footer */
.footer {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
  padding-bottom: 40px;
  padding-top: 25px;
}

.footer-logo-container {
  margin: 0;
}

.footer-logo-container img {
  width: 220px;
}

.footer-logo-container figcaption {
  color: var(--gray);
  font-size: 1.2rem;
}

.footer-input-email-container label {
  display: block;
  color: var(--gray);
}

.footer-input-email-container input {
  display: block;
  width: 100%;
  border: 1px solid var(--gray);
  font-size: 1.2rem;
  padding: 5px 2px;
}

.container-footer-info {
  gap: 7px;
}

.container-footer-info img {
  width: 30px;
}

.container-footer-info>div p:first-child {
  font-size: 1.2rem;
}

.menu-footer a {
  display: inline-block;
  padding: 12px 0;
}

@media(min-width: 992px) {
  .footer {
    border-top: none;
    border-bottom: none;
  }

  .footer-logo-container img {
    width: 100%;
    max-width: 270px;
  }

  .title-footer-input-email h3 {
    font-size: 1.7rem;
    font-family: 'hn medium';
    font-weight: 300;
    margin: 0;
    margin-bottom: 10px;
  }

  .footer-input-email-container label {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .footer-input-email-container input {
    padding: 14px 5px;
  }

  .copy-container {
    font-size: 1.3rem;
  }
}

/* footer end */