.body {
  width: 100%;
  min-height: 100vh;
  background-image: url(../img/PNG/siteRecurso23.png);
  background-size: cover;
}

@media(max-width: 600px) {
  body {
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(11, 31, 48, 1) 30%, rgba(29, 83, 124, 1) 100%);
  }
}

.header {
  position: fixed;
  z-index: 50;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 1s ease-in-out;
}

@media(max-width: 600px) {
  .header {
    padding: 10px 20px;
  }
}

.header.active {
  position: fixed;
  z-index: 50;
  width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #252525c9;
  backdrop-filter: blur(4px);
  transition: 0.5s ease-in-out;
}

@media(max-width: 600px) {
  .header.active {
    padding: 10px 20px;
  }
}

.header .logo {
  width: 230px;
}

@media(max-width: 600px) {
  .header .logo {
    width: 100px;
  }
}

.header.active .logo {
  width: 160px;
}

.form-style {
  color: rgb(255, 255, 255);
  border: 1px solid #fff;
  border-right: none;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
}

@media(max-width: 600px) {
  .form-style {
    display: none;
  }
}

.form-style button {
  border: none;
  background-color: transparent;
}

.form-style button img {
  width: 23px;
}

.form-style input {
  text-align: center;
  color: #ffffff;
  background-color: transparent;
  padding: 0px 30px 0px 20px;
  font-size: 16px;
  border: none;
}

.form-style input:focus {
  outline: none;
}

header .container {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media(max-width: 930px) {
  header .container {
    display: flex;
  }
}


header .container button {
  background-color: transparent;
  color: #ffffff;
  border: none;
  font-size: 26px;
}

header .container .lupa {
  padding-top: 4.5px;
}

header .container button:hover {
  cursor: pointer;
}

/* Header - Menu desktop */
.menu-desktop {
  display: block;
}

@media(max-width: 930px) {
  .menu-desktop {
    display: none;
  }
}

.menu-desktop ul {
  width: 100%;
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-desktop ul a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
}

@media (min-width: 1400px) {
  .menu-desktop ul a {
    font-size: 22px;
  }
}

.menu-desktop ul a:hover {
  font-weight: 500;
  text-decoration: underline;
}


/* Header - Menu */
header .menu {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  background: rgb(6, 20, 30);
  background: linear-gradient(159deg, rgba(6, 20, 30, 1) 0%, rgba(24, 69, 104, 1) 100%);
  width: 100%;
  height: 0vh;
  z-index: 20;
  transition: 1 ease-in-out;
  font-family: versailes;
}

header .menu.on {
  display: flex;
  height: 100vh;
  transition: 1 ease-in-out;
}

header .menu .container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}

@media(max-width: 830px) {
  header .menu .container {
    position: initial;
  }
}

header .menu nav {
  padding-left: 10%;
}

@media(max-width: 830px) {
  header .menu nav {
    padding-left: 0%;
  }
}

header .menu ul {
  list-style: none;
}

header .menu nav p {
  color: #4bb9e7;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 900;
}

header .menu li {
  padding: 5px 0;
}

@media(max-width: 600px) {
  header .menu li {
    padding: 10px 0;
  }
}

header .menu li a {
  font-size: 44px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 900;
}


@media(max-width: 830px) {
  header .menu li a {
    font-size: 54px;
  }
}

@media(max-width: 600px) {
  header .menu li a {
    font-size: 24px;
  }
}

header .menu li a:hover {
  color: #4bb9e7;
}

header .menu li a span {
  font-size: 25px;
  margin-right: 0.5em;
  color: #4bb9e7;
}

.menu .object1 {
  position: absolute;
  top: 30px;
  left: 10%;
  height: 60px;
}

@media(max-width: 830px) {
  .menu .object1 {
    left: 5%;
  }
}

@media(max-width: 600px) {
  .menu .object1 {
    display: none;
  }
}

.menu .object2 {
  position: absolute;
  top: 30px;
  right: 7%;
  font-size: 60px;
  color: #4bb9e7;
}

.menu .object3 {
  position: absolute;
  bottom: 30px;
  right: 5%;
  height: 60px;
}

@media(max-width: 830px) {
  .menu .object3 {
    right: 10%;
  }
}

@media(max-width: 600px) {
  .menu .object3 {
    display: none;
  }
}

/* Home */
.full-screen-section {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.61) 0%, rgba(11, 31, 48, 0.63) 30%, rgba(29, 83, 124, 0.562) 100%), url(/assets/img/PNG/city3.jpg);
  background-position: bottom;
  background-size: cover;
  background-attachment: fixed;
}

@media(max-width: 830px) {
  .full-screen-section {
    height: 65vh;
  }
}

@media(max-width: 600px) {
  .full-screen-section {
    background-size: auto;
    background-position: bottom;
    background-repeat: no-repeat;
    height: 60vh;
    margin-bottom: 15vh;
  }
}

.background-image {
  width: 50%;
  position: absolute;
  z-index: 0;
  user-select: none;
}

.background-image-gradient {
  width: 50%;
  position: absolute;
  z-index: 0;
  user-select: none;
  /* background-color: #5ad7fd; */
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(11, 31, 48, 1) 30%, rgba(29, 83, 124, 1) 100%); */
}

.foreground-image {
  width: 66.66667%;
  position: absolute;
  z-index: 10;
  user-select: none;
}

.full-screen-section .container {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: absolute;
  z-index: 20;
  width: 75%;
  height: 11rem;
  margin-top: 24rem;
  border-radius: 30px;
}

@media (min-width: 1400px) {
  .full-screen-section .container {
    margin-top: 30rem;
  }
}

@media(max-width: 600px) {
  .full-screen-section .container {
    width: 80%;
    height: auto;
    padding: 10px 5px;
  }
}

.content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11rem;
}

@media(max-width: 600px) {
  .content-box {
    height: auto;
  }
}

.min-content-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 97%;
  height: 9rem;
  background-color: #ffffff;
  border-radius: 20px;
}

@media(max-width: 600px) {
  .min-content-box {
    height: auto;
    grid-template-columns: 1fr;
  }
}

.content-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-right: 1px solid #000000;
}

@media(max-width: 600px) {
  .content-column {
    border-right: none;
    border-bottom: 1px solid #000000;
  }
}

.content-column:last-of-type {
  border-right: none;
}

@media(max-width: 600px) {
  .content-column:last-of-type {
    border-bottom: none;
  }
}

.content-column p {
  margin: 20px;
  font-size: 24px;
  text-decoration: none;
  color: #000000;
  text-align: center;
}

@media(max-width: 830px) {
  .content-column p {
    font-size: 18px;
  }
}

@media(max-width: 600px) {
  .content-column p {
    text-align: center;
    font-size: 16px;
    margin: 5px 0;
  }
}

.content-column p:hover {
  cursor: pointer;
  color: #4bb9e7;
}

.content-box-two {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #4bb9e7;
  width: 60%;
  margin: 0 20%;
  color: #ffffff;
  padding: 5px 0;
  border-radius: 0px 0px 20px 20px;
}

@media(max-width: 600px) {
  .content-box-two {
    width: 90%;
    margin: 0 5%;
  }
}

.content-box-two img {
  height: 30px;
  width: 30px;
}

.content-box-two p {
  font-size: 24px;
  font-weight: bold;
}

@media(max-width: 600px) {
  .content-box-two p {
    font-size: 14px;
  }
}

/* PopUp */
.popUp-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: #1f1f1fa4;
}

.popUp-container.active {
  display: flex;
}

.popUp {
  display: none;
  width: 50%;
  height: 90vh;
  overflow-y: auto;
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 5px;
  color: #000000;
}

.popUp.active {
  display: initial;
}

@media(max-width: 830px) {
  .popUp {
    width: 80%;
    height: auto;
    max-height: 90vh;
  }
}

@media(max-width: 600px) {
  .popUp {
    width: 90%;
    height: auto;
    max-height: 70vh;
  }
}

.popUp .title-container {
  display: grid;
  grid-template-columns: 9fr 1fr;
  padding-bottom: 10px;
}

.popUp .title-container div {
  display: flex;
  align-items: center;
}

.popUp .title-container .btn-close {
  font-size: 34px;
}

.popUp .title-container .btn-close:hover {
  cursor: pointer;
}

.popUp .title {
  font-size: 20px;
  padding: 10px;
  font-weight: 500;
}

.popUp iframe {
  width: 100%;
  height: 60vh;
}

@media(max-width: 830px) {
  .popUp iframe {
    height: 40vh;
  }
}

@media(max-width: 600px) {
  .popUp iframe {
    height: 30vh;
  }
}

.popUp .desc {
  font-size: 16px;
  padding: 20px 0px;
}

/* Portfolio */
.portfolio {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 10;
}

@media(max-width: 830px) {
  .portfolio {
    height: 65vh;
  }
}

@media(max-width: 600px) {
  .portfolio {
    height: 100vh;
  }
}

.portfolio h2 {
  font-size: 44px;
  margin: 5vh 10%;
}

@media(max-width: 600px) {
  .portfolio h2 {
    font-size: 30px;
  }
}

.portfolio .container-slider {
  width: 90%;
  margin: 0 5%;
}

@media(max-width: 600px) {
  .portfolio .container-slider {
    width: 95%;
    margin: 0 2.5%;
  }
}

.portfolio .splide__track {
  width: 90%;
  margin: 0 5%;
  border-radius: 10px;
}

@media(max-width: 600px) {
  .portfolio .splide__track {
    width: 100%;
    margin: 0;
  }
}

@media(max-width: 830px) {
  .portfolio .splide__track {
    width: 80%;
    margin: 0 10%;
  }
}

.portfolio .splide__track:active {
  cursor: grabbing;
}

.portfolio .element {
  width: 100%;
  height: 80vh;
  background-color: #000000;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  /* justify-content: end; */
}

@media (max-width: 600px) {
  .portfolio .element {
    flex-direction: column;
  }
}

.portfolio .element .box {
  flex-grow: 1;
  width: 33.333%;
  transition: 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

@media (max-width: 600px) {
  .portfolio .element .box {
    width: 100%;
  }
}

.portfolio .element .box .content {
  display: none;
}

.portfolio .element .box:hover {
  cursor: crosshair;
}

.portfolio .element .box:hover .content {
  display: block;
}

.portfolio .element .box.active {
  width: 90%;
  transition: 0.5s ease-in-out;
}

@media (max-width: 600px) {
  .portfolio .element .box.active {
    width: 100%;
  }
}

.portfolio .element .box.desactive {
  width: 5%;
  transition: 0.5s ease-in-out;
}

@media (max-width: 600px) {
  .portfolio .element .box.desactive {
    width: 100%;
  }
}


.portfolio .element1 .box1 {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.61) 0%, rgba(11, 31, 48, 0.63) 30%, rgba(29, 83, 124, 0.562) 100%), url(/assets/img/slider/growth.jpg);
  background-position: bottom;
  background-size: cover;
}

.portfolio .element1 .box2 {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.61) 0%, rgba(11, 31, 48, 0.63) 30%, rgba(29, 83, 124, 0.562) 100%), url(/assets/img/slider/comercial.jpg);
  background-position: bottom;
  background-size: cover;
}

.portfolio .element1 .box3 {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.61) 0%, rgba(11, 31, 48, 0.63) 30%, rgba(29, 83, 124, 0.562) 100%), url(/assets/img/slider/consultoria.jpg);
  background-position: bottom;
  background-size: cover;
}

@media(max-width: 830px) {
  .portfolio .element {
    height: 50vh;
  }
}

@media(max-width: 600px) {
  .portfolio .element {
    height: 80vh;
  }
}

.portfolio .element .title {
  display: block;
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 20px;
  text-align: center;
  transition: 2s ease-in-out;
}

@media(max-width: 600px) {
  .portfolio .element .title {
    font-size: 20px;
  }
}

.portfolio .element .title.desactive {
  display: none;
}

.portfolio .element ul {
  padding-left: 20px;
}

.portfolio .element ul li {
  font-size: 16px;
}

@media (min-width: 1400px) {
  .portfolio .element ul li {
    font-size: 22px;
  }
}

@media(max-width: 600px) {
  .portfolio .element ul li {
    font-size: 14px;
  }
}

.element1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.637), rgba(0, 0, 0, 0.637)),
    url('/assets/img/slider/prueba1.jpg');
}

.element2 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.637), rgba(0, 0, 0, 0.637)),
    url('/assets/img/slider/prueba2.jpg');
}

.element3 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.637), rgba(0, 0, 0, 0.637)),
    url('/assets/img/slider/prueba3.jpg');
}

/* About Us */
.aboutUs {
  width: 100%;
  height: 150vh;
  position: relative;
}

@media(max-width: 830px) {
  .aboutUs {
    height: 170vh;
  }
}

@media(max-width: 600px) {
  .aboutUs {
    height: 310vh;
  }
}

.aboutUs .franja {
  position: absolute;
  width: 100%;
  transform: translateY(-180px);
}

.aboutUs .container {
  width: 80%;
  margin: 0px 10%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  transform: translateY(10px);
  color: #000000;
}

@media(max-width: 830px) {
  .aboutUs .container {
    grid-template-columns: 1fr;
    color: #ffffff;
  }
}

.aboutUs .container div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.aboutUs .container img {
  width: 60%;
}

@media(max-width: 830px) {
  .aboutUs .container img {
    width: 70%;
    margin: 0 auto;
  }
}

.aboutUs .container h1 {
  font-size: 44px;
}

@media (min-width: 1400px) {
  .aboutUs .container h1 {
    font-size: 60px;
  }
}

.aboutUs .container p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 100;
}

@media (min-width: 1400px) {
  .aboutUs .container p {
    font-size: 20px;
  }
}

.misionAndVision {
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 10;
  width: 80%;
  margin: 40px 10%;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 3px rgba(180, 180, 180, 0.75);
  border-radius: 30px;
  padding: 30px 10px;
  color: #000000;
}

@media(max-width: 600px) {
  .misionAndVision {
    grid-template-columns: 1fr;
  }
}

.misionAndVision div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media(max-width: 600px) {
  .misionAndVision div {
    padding: 20px 0;
  }
}

.misionAndVision div:first-of-type {
  border-right: 3px solid #000000;
}

@media(max-width: 600px) {
  .misionAndVision div:first-of-type {
    border-right: none;
    border-bottom: 3px solid #000000;
  }
}

.misionAndVision img {
  width: 100px;
}

.misionAndVision .title {
  font-size: 38px;
  font-weight: 700;
}

@media (min-width: 1400px) {
  .misionAndVision .title {
    font-size: 44px;
  }
}

.misionAndVision .text {
  font-size: 20px;
  text-align: center;
  font-weight: 100;
  padding-top: 10px;
  width: 60%;
}

@media (min-width: 1400px) {
  .misionAndVision .text {
    font-size: 20px;
    font-weight: 300;
    color: #686868;
  }
}


@media(max-width: 830px) {
  .misionAndVision .text {
    font-size: 18px;
  }
}

/* Choose Us */
.chooseUs {
  width: 76%;
  margin: 0 12%;
}

@media(max-width: 600px) {
  .chooseUs {
    width: 84%;
    margin: 0 8%;
  }
}

.chooseUs .title-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.chooseUs .title-div img {
  height: 60px;
}

.chooseUs h3 {
  font-size: 44px;
}

@media(max-width: 830px) {
  .chooseUs h3 {
    font-size: 30px;
  }
}

.chooseUs h3 span {
  color: #89dff9;
}

.chooseUs .card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 1.5rem;
}

@media(max-width: 830px) {
  .chooseUs .card {
    grid-template-columns: 1fr;
  }

  .chooseUs .card .img-title {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: 1px solid #89dff9;
    border-radius: 10px;
    padding: 10px;
    gap: 1rem;
  }
}

@media(max-width: 600px) {
  .chooseUs .card {
    gap: 1rem;
  }
}

.chooseUs .card .img-title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  border: 1px solid #89dff9;
  border-radius: 10px;
  padding: 10px;
  gap: 1rem;
}


@media (min-width: 1400px) {
  .chooseUs .card .img-title {
    justify-content: space-around;
  }
}

.chooseUs .card .img-title div {
  /* background-color: #fff; */
  border-radius: 5px;
  /* height: 60px; */
  width: 300px;
}

.chooseUs .card .img-title div img {
  /* height: 80px; */
  width: 100px;
  filter: grayscale(0%);
}

.chooseUs .card .img-title p {
  font-size: 24px;
  font-weight: 550;
  color: #ffffff;
}

@media (min-width: 1400px) {
  .chooseUs .card .img-title p {
    font-size: 34px;
  }
}


@media(max-width: 600px) {
  .chooseUs .card .img-title p {
    font-size: 16px;
  }
}

.card div .text {
  font-size: 20px;
  font-weight: 100;
}

@media (min-width: 1400px) {
  .card div .text {
    font-size: 22px;
  }
}

@media(max-width: 600px) {
  .card div .text {
    font-size: 14px;
  }
}

.container-btn {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 15px;
  margin-top: 80px;
  border-radius: 20px;
  box-shadow: 0px 0px 5px 0px rgb(212, 212, 212);
}

@media(max-width: 830px) {
  .container-btn {
    margin-top: 40px;
  }
}

.container-btn .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0px 0px 5px 0px rgb(212, 212, 212);
}

@media(max-width: 600px) {
  .container-btn .box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

.container-btn .box .title {
  font-size: 44px;
  font-weight: 700;
}

@media(max-width: 600px) {
  .container-btn .box .title {
    font-size: 34px;
  }
}

.container-btn .box .text {
  font-size: 24px;
  font-weight: 100;
}

@media(max-width: 600px) {
  .container-btn .box .text {
    font-size: 20px;
  }
}

.container-btn .box div {
  padding-left: 30px;
}

.container-btn .box a {
  font-size: 24px;
  background-color: #89dff9;
  padding: 20px 50px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
}

.container-btn .box a:hover {
  cursor: pointer;
  background-color: #5ad7fd;
}

/* Clients */
.clients {
  width: 100%;
  min-height: 80vh;
  position: relative;
}

@media(max-width: 830px) {
  .clients {
    min-height: 30vh;
  }
}

@media(max-width: 600px) {
  .clients {
    min-height: 60vh;
  }
}

.clients .bg-franja {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 105vh;
  transform: translateY(-170px);
}

@media(max-width: 830px) {
  .clients .bg-franja {
    height: 55vh;
  }
}

@media(max-width: 600px) {
  .clients .bg-franja {
    height: 80vh;
  }
}

.clients .bg-circle {
  position: absolute;
  z-index: 5;
  width: 15%;
  margin: 5vh 42.5%;
}

.clients .container {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  margin-top: 0vh;
}

.clients .container h4 {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

.clients .container .container-clientes {
  width: 95%;
  margin: 0 2.5%;
  padding: 20px 0px;
  position: absolute;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media(max-width: 600px) {
  .clients .container .container-clientes {
    grid-template-columns: 1fr 1fr;
  }
}

.clients .container .first-element {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #c3c3c364;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(194, 194, 194, 0.75);
}

@media (min-width: 1400px) {
  .clients .container .first-element {
    padding: 20px 30px;
  }
}

.clients .container .first-element img {
  height: 80px;
}

@media (min-width: 1400px) {
  .clients .container .first-element img {
    height: 120px;
  }
}


@media(max-width: 600px) {
  .clients .container .first-element img {
    height: 50px;
  }
}

/* Contact */
.contact {
  width: 80%;
  margin: 0 10%;
  /* position: relative; */
}

.contact h5 {
  font-size: 44px;
  font-weight: 700;
  color: #4bb9e7;
  margin-bottom: 5vh;
}

@media (min-width: 1400px) {
  .contact h5 {
    font-size: 60px;
  }
}

.contact .form-container {
  display: grid;
  grid-template-columns: 6fr 4fr;
}

@media(max-width: 600px) {
  .contact .form-container {
    grid-template-columns: 1fr;
  }
}

.contact .text {
  font-size: 18px;
  font-weight: 100;
  margin-bottom: 5vh;
}

@media (min-width: 1400px) {
  .contact .text {
    font-size: 24px;
  }
}

.contact .form-container form input[type="text"] {
  width: 100%;
  padding: 5px 20px;
  font-size: 18px;
  background-color: transparent;
  border: 1px solid #4bb9e7;
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 15px;
}

@media (min-width: 1400px) {
  .contact .form-container form input[type="text"] {
    font-size: 24px;
  }
}

.contact .form-container form div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact .form-container form div input {
  width: 100%;
  padding: 5px 20px;
  font-size: 18px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #4bb9e7;
  border-radius: 10px;
}

@media (min-width: 1400px) {
  .contact .form-container form div input {
    font-size: 24px;
  }
}

.contact .form-container form div select option {
  color: #000000;
}

.contact .form-container form textarea {
  width: 100%;
  padding: 10px;
  color: #ffffff;
  font-size: 18px;
  background-color: transparent;
  resize: none;
  border: 1px solid #4bb9e7;
  border-radius: 10px;
  margin: 15px 0;
}

@media (min-width: 1400px) {
  .contact .form-container form textarea {
    font-size: 24px;
  }
}

.contact .form-container form input[type="submit"] {
  background-color: #4bb9e7;
  border: none;
  font-size: 20px;
  font-weight: 900;
  padding: 10px 60px;
  border-radius: 10px;
}

@media(min-width: 1400px) {
  .contact .form-container form input[type="submit"] {
    font-size: 24px;
    padding: 10px 80px;
  }
}

@media(max-width: 600px) {
  .contact .form-container form input[type="submit"] {
    width: 100%;
  }
}

.contact .form-container form input[type="submit"]:hover {
  background-color: #82daff;
  cursor: pointer;
}

.img-container {
  width: 90%;
  margin-left: 10%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media(max-width: 600px) {
  .img-container {
    display: none;
  }
}

.img-container .first {
  position: absolute;
  z-index: 0;

}

.img-container .second {
  position: absolute;
  z-index: 1;
  background-color: #ffffffe9;
  border-radius: 50%;
}

/* Modal form */
.modal-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(11, 31, 48, 1) 30%, rgba(29, 83, 124, 1) 100%);
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-form.active {
  display: flex;
}

.modal-form div {
  width: 60%;
  height: 60vh;
  background-color: #ffffff;
  border-radius: 10px;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-form div img {
  height: 70px;
  color: #4bb9e7;
}

.modal-form div p {
  font-size: 20px;
  padding: 25px 0;
}

.modal-form div button {
  padding: 10px 30px;
  background-color: #4bb9e7;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
}

.modal-form div button:hover {
  cursor: pointer;
  background-color: #94dfff;
}

.form-container .alert {
  display: none;
}

.form-container .alert.active {
  display: block;
  text-align: center;
  background-color: red;
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 15px;
}

footer {
  width: 100%;
  height: 65vh;
  background-image: url(/assets/img/SVG/siteRecurso\ 27.svg);
  background-size: cover;
  position: relative;
  z-index: 5;
}

@media(max-width: 830px) {
  footer {
    height: auto;
    background-color: white;
    margin-top: 5vh;
  }
}

@media(max-width: 600px) {
  footer {
    z-index: 60;
  }
}

footer a {
  color: #000000;
  text-decoration: none;
}

@media(min-width: 1400px) {
  footer a {
    font-size: 24px;
  }
}

@media(max-width: 830px) {
  footer a {
    font-size: 12px;
  }
}

@media(max-width: 600px) {
  footer a {
    font-size: 18px;
  }
}

footer .container {
  width: 70%;
  margin: 0 15%;
  padding-top: 25vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}

@media(max-width: 830px) {
  footer .container {
    grid-template-columns: 3fr 3fr 4fr;
    width: 95%;
    margin: 0 2.5%;
    padding: 30px 0;
  }
}

@media(max-width: 600px) {
  footer .container {
    grid-template-columns: 1fr;
  }
}

footer .img-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .img-container img {
  height: 70px;
}

@media(max-width: 830px) {
  footer .img-container img {
    height: 30px;
  }
}

@media(max-width: 600px) {
  footer .img-container img {
    height: 40px;
  }
}

footer .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media(max-width: 600px) {
  footer .links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

footer .links div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

footer .contact {
  color: #000000;
}

@media(max-width: 600px) {
  footer .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

footer .contact p {
  font-size: 20px;
  font-weight: 700;
}

@media(min-width: 1400px) {
  footer .contact p {
    font-size: 28px;
  }
}

@media(max-width: 830px) {
  footer .contact p {
    font-size: 16px;
  }
}

@media(max-width: 830px) {
  footer .contact p {
    font-size: 20px;
  }
}

footer .contact ul {
  margin-top: 10px;
  list-style: none;
}

@media(max-width: 830px) {
  footer .contact ul {
    margin-top: 5px;
  }
}

footer .contact ul li {
  padding: 10px 0;
}

@media(max-width: 830px) {
  footer .contact ul li {
    padding: 2px 0;
  }
}

@media(max-width: 600px) {
  footer .contact ul li {
    padding: 10px 0;
  }
}

@media(max-width: 600px) {
  footer .contact ul li a {
    font-size: 18px;
    text-align: center;
  }
}