* {
  margin: 0;
  padding: 0;
}

#content {
  overflow: hidden;
}

body {
  background-color: white;
}

h1 {
  font-size: 14px;
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}

/*---------------------------Fuentes----------------------------*/
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Bold.eot#iefix") format("embedded-opentype");
  font-weight: 700;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Bold.svg") format("svg");
  font-weight: normal;
  font-weight: 700;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Medium.ttf") format("opentype");
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Medium.eot#iefix") format("embedded-opentype");
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Medium.svg") format("svg");
  font-weight: 500;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.ttf") format("opentype");
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.eot#iefix") format("embedded-opentype");
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.woff") format("woff");
  font-weight: 300;
  font-display: block;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.svg") format("svg");
  font-weight: 300;
  font-weight: normal;
}

/*------------------Generales------------------*/
.mobileElement {
  display: none !important;
}

a {
  cursor: pointer;
}

img {
  resize: none !important;
  pointer-events: none;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
span,
a,
li {
  font-family: "Inter";
  font-weight: 300;
  color: white;
}

h3 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
}

p {
  font-size: 14px;
  line-height: 22px;
}

.bold {
  font-weight: 600;
}

.blur-pink {
  position: absolute;
}


.button:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.button {
  padding: 15px 50px 15px 30px;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  border: 1px solid #27A9E1;
  transition: 0.5s all ease-in-out;
  width: fit-content;
  background: #27A9E1 url("/files/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 17px;
  border-radius: 100px;
  margin-right: 0;
  margin-left: 0;
  font-size: 13px;
}

.button:hover {
  color: #27A9E1;
  border: 1px solid #27A9E1;
  background: transparent url("/files/icons/arrow-right-blue.svg");
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 17px;
}


.button-blue{
  background: white url("/files/icons/arrow-right-blue.svg");
  border: 1px solid white;
  color: #27A9E1;
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 17px;
}

.button-blue:hover{
  background: white url("/files/icons/arrow-right-blue.svg");
  border: 1px solid white;
  color: #27A9E1;
  background-repeat: no-repeat;
  background-position: 85%;
  background-size: 17px;
}

img {
  resize: none !important;
}

section {
  width: 90%;
  padding: 120px 5%;
}

/* Form */
.form-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  padding: 0 0 0 5%;
  overflow: hidden;
  width: 95%;
}

.form-container .blur-pink {
  width: 1200px;
  left: -600px;
  top: -600px;
}

.form-container h3 {
  margin-bottom: 20px;
  z-index: 1;
  color: #27A9E1;
  text-align: justify;
}


.form-container p {
  font-size: 20px;
  margin-bottom: 50px;
  z-index: 1;
}

.background-form {
  position: absolute;
  top: 0;
}

.form {
  max-width: 1000px;
  z-index: 1;
  margin-right: 5%;
  width: 45%;
  padding: 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form+img {
  width: 50%;
  object-fit: cover;
}

.subContainerForm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formInput,
.formTextarea,
.formSelect {
  color: black;
  background: rgba(39, 169, 225, 0.07);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: unset;
  font-size: 14px;
  font-weight: 300;
  border: 1px solid transparent;
}

.formInput {
  width: calc(49% - 40px);
}

.formSelect {
  width: 49%;
  background: url(/files/icons/arrow-down.svg), #131938;
  background-repeat: no-repeat;
  background-position: 95%;
  border: 1px solid transparent;
}

.formSelect+.formInput {
  width: calc(100% - 40px);
}

.formSelect+.formSelect {
  width: 100%;
  background-position: 97%;
}


input:focus {
  border: 1px solid #27A9E1;
}

textarea:focus {
  border: 1px solid #27A9E1;
}

.formTextarea {
  width: calc(100% - 40px);
  border: unset;
  height: 130px;
  resize: none;
}

.formInput::placeholder,
.formTextarea::placeholder {
  color: black;
}

/* -------------Header--------------- */
header {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100px;
  /* background: rgb(10,17,45); */
  z-index: 20;
  transition: .5s all ease-in-out;
}

.header-right {
  display: flex;
  align-items: center;
}

#mainnav {
  backdrop-filter: blur(20.564908981323242px);
  background: rgb(255, 255, 255, 0.2);
  padding: 10px;
  margin-right: 110px;
  border-radius: 5px;
}

.container-whatsapp-language {
  position: relative;
}

.item,
.language {
  color: #7a7a7a;
}

.language {
  color: #7a7a7a !important;
}

.language {
  color: rgba(122, 122, 122, 1);
  background: white;
}

.row {
  height: 100%;
}

.desktop-menu {
  height: 100%;
}

header .container {
  height: 100%;
  width: 95%;
  margin: auto;
  position: relative;
  z-index: 11;
}

.row>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

#headerLogoLink {
  display: flex;
}

#logoHeader {
  width: 100px;
  /* filter: unset !important; */
}

.mainmenu {
  display: flex;
  position: relative;
  align-items: center;
}

.mainmenu li {
  margin: 0 15px;
  display: inline;
  list-style: none;
  position: relative;
  cursor: pointer;
  line-height: 23px;
}

.mainmenu li .item,
.mainmenu li a {
  font-size: 14px !important;
  color: white;
  display: flex;
  align-items: center;
  font-weight: 300;
  transition: 0.5s all ease-in-out;
}

.mainmenu li a:hover {
  color: #27A9E1;
  font-weight: 400;
}

.languagepicker:hover {
  height: 91px;
}

.languagepicker {
  display: flex;
  flex-direction: column;
  height: 43px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: -21px;
}

.language {
  position: relative;
  font-size: 13px;
  line-height: 16px;
  cursor: pointer;
  color: white !important;
  display: flex;
  margin-bottom: 5px;
  width: 60px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20.564908981323242px);
  background: rgb(255, 255, 255, 0.2);
  padding: 13px 15px;
  font-weight: 300;
  border-radius: 5px;
}

.language img::nth-of-type(2) {
  margin-left: 7px;
}

.language img:nth-of-type(1) {
  margin-right: 7px;
  width: 22px;
}

.item img {
  margin-left: 5px;
}

.active {
  background: white;
  border-bottom: 1px solid #27A9E1;
  height: 80px;
}

.active .mainmenu li .item {
  color: black;
}

.active .language {
  color: black !important;
  background-color: white;
}

/* Sub menu */
.item-menu-sub-menu {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 40px 10px 10px;
  width: auto;
  transform: scaley(0);
  transform-origin: top;
  transition: transform 0.3s linear;
  background: #0A112D;
}

.sub-menu .item-menu-link {
  padding: 10px 0 10px;
  text-wrap: nowrap;
}

.item-menu-sub-menu:hover .sub-menu {
  transform: scaley(1);
}

.sub-menu .item-menu {
  padding: 0 !important;
}

.sub-menu .item-menu a {
  font-size: 12px !important;
}

/* Sub menu hover */
#mainnav ul.submenu {
  cursor: pointer;
  position: absolute;
  left: 0;
  top: 25px !important;
  width: fit-content;
  text-align: left;
  z-index: 9999;
  background-color: rgba(34, 64, 74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  left: 0;
  padding: 10px;
  width: max-content;
}

#mainnav ul.submenu li:first-child {
  border-top: none;
}

#mainnav ul li ul li {
  margin-left: 0;
}

#mainnav ul.submenu>li>a {
  color: #fff5e2;
  text-decoration: none;
  line-height: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#mainnav ul li:hover>ul.submenu {
  top: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
  visibility: visible;
}

.submenu li {
  margin: 0;
}

.item-menu {
  line-height: 14px !important;
  margin: 0 !important;
}

.mainmenu li a {
  color: white;
}

/* Burger Menu */
#main-container-responsive {
  display: none;
}

#container-menu-responsive nav {
  display: none;
}

/*-----------------Footer-----------------*/
footer {
  width: 90%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 5%;
  background: #27A9E1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-footer {
  display: flex;
  align-items: center;
}

.section-footer img:first-child {
  width: 100px;
}

.section-footer img:last-child {
  width: 200px;
  margin-bottom: 30px;
}

.section-footer p {
  margin: 0 15px;
}

.section-footer h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 40px;
}

.section-footer a,
.section-footer span {
  font-weight: 300;
  font-size: 14px;
  transition: 0.3s all ease-in-out;
  padding-bottom: 1px;
  margin: 0 15px;
}

.section-footer a{
  border-bottom: thin solid transparent;
  width: fit-content;
}

.section-footer a:hover {
  border-bottom: thin solid white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  width: 95%;
  justify-content: center;
  padding: 10px 2.5%;
  background: #27A9E1;
  border-top: 1px solid #199CD5;
}

.footer-bottom p {
  font-size: 11px;
}

.footer-bottom p span {
  font-weight: 600;
}

.redes a {
  cursor: pointer;
  margin-left: 5px;
}


/* Mobile */
@media screen and (max-width: 1000px) {

  /*---------------Generales---------------*/
  .desktopElement {
    display: none !important;
  }

  .mobileElement {
    display: block !important;
  }

  /* Hero */
  .text-hero-container {
    width: 90%;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
  }

  .hero-wrap {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    transition: 0.5s all ease-in-out;
    padding: 0;
  }

  .hero-background img {
    width: 100%;
    height: 100%;
  }

  /*---------------Header------------------*/
  header {
    box-shadow: none;
    height: 80px;
  }

  header .container {
    width: 90%;
  }

  .row {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
    margin: auto;
    justify-content: space-between;
  }

  #logoHeader {
    width: 110px;
  }

  .mainmenu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: auto;
    align-items: baseline;
    position: unset;
  }

  #headerLogoLink.open {
    display: none;
  }

  #container-menu-responsive.open {
    background-color: white;
  }

  #hamburger div span.open {
    background-color: black;
  }

  header.open {
    background-color: white;
  }

  /* Burger Menu */
  #main-container-responsive {
    display: block;
    height: auto;
  }

  #hamburger div {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 24px;
    position: relative;
  }

  #hamburger div span {
    background-color: white;
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    transition: all 0.3s ease;
  }

  .active #hamburger div span {
    background-color: black;
  }

  .top-line {
    top: 0;
  }

  .middle-line {
    top: 50%;
    transform: translateY(-50%);
  }

  .bottom-line {
    bottom: 0;
  }

  #hamburger .open .top-line {
    top: 50%;
    transform: rotate(45deg);
  }

  #hamburger .open .middle-line {
    opacity: 0;
  }

  #hamburger .open .bottom-line {
    top: 50%;
    transform: rotate(-45deg);
  }

  /* Menu */
  #container-menu-responsive nav {
    background: white;
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 80px;
    left: 100%;
    display: block;
    transition: left 0.5s ease-in-out;
    padding-bottom: 0;
  }

  #container-menu.open {
    left: 0;
  }

  .mainmenu li {
    margin-bottom: 0;
    margin-left: 0;
    width: 90%;
    padding: 15px 5%;
    color: white;
    border-top: 1px solid black;
  }

  .mainmenu li a {
    color: black;
    font-size: 13px !important;
    text-transform: uppercase;
  }

  .mainmenu li:last-child {
    margin-bottom: 0;
  }

  .logo.open {
    display: none;
  }

  .container-whatsapp-language {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 20px;
    position: absolute;
    top: 20px;
    left: 5%;
  }

  .languagepicker {
    flex-direction: unset;
    position: relative;
    top: 0;
    right: 2px;
  }

  .languagepicker:hover {
    height: 35px;
  }

  .languagepickerMobile .language {
    border: 0.6px solid #d9d9d9;
    padding: 5px;
    color: black !important;
    font-weight: 500;
    margin-right: 10px;
    margin-bottom: 0;
    width: auto;
    padding: 10px 10px;
  }

  .languagepickerMobile .language:last-child {
    margin-right: 0;
  }

  .button {
    line-height: 17px;
    font-size: 13px;
    margin-right: 0;
  }

  /* Submenu */

  .item-menu-sub-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }

  .sub-menu-open {
    padding: 0;
    justify-content: flex-start;
  }

  .sub-menu {
    width: 100%;
    position: initial;
    transform: scaley(1);
    display: none;
    padding: 0;
  }

  .item-menu {
    border: unset !important;
  }

  .sub-menu .item-menu-link {
    padding: 0;
  }

  .sub-menu .item-menu a {
    font-size: 12px !important;
    padding: 20px 0 0 0;
  }

  /*---------------Footer------------------*/

  .section-footer img:last-child {
    width: 150px;
    margin-bottom: 20px;
  }

  .section-footer a,
  .section-footer span {
    margin-bottom: 0;
    font-size: 13px;
  }

  .section-footer:nth-of-type(4), .section-footer:nth-of-type(3), .section-footer:nth-of-type(2){
    flex-direction: column;
  }

  .section-footer:nth-of-type(4){
    margin-bottom: 20px;
  }

  .section-footer p {
    font-size: 13px;
    margin-bottom: 15px;
  }


  .footer-bottom{
    border-top: 1px solid;
    align-items: flex-start;
    width: 90%;
    padding: 5px 5%;
  }

  footer {
    flex-direction: column;
    padding: 60px 5% 60px;
  }

  .section-footer h5 {
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .footer-bottom p {
    font-size: 10px;
  }

  .redes a {
    margin-left: 2px;
  }

  .redes a img {
    width: 20px;
  }

  .form-container {
    flex-direction: column;
    width: 100%;
    padding: 70px 0 0 0;
  }

  .form {
    width: 90%;
    margin: auto;
    margin-bottom: 70px;
    max-width: unset;
  }

  .form+img {
    width: 100%;
  }

  .formInput {
    width: 100%;
  }
}