@font-face {
  font-family: 'sixta';
  src: url('../webkitfont/webFonts/SixtaLight/font.woff') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'sixta';
  src: url('../webkitfont/webFonts/SixtaRegular/font.woff') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'sixta';
  src: url('../webkitfont/webFonts/SixtaBold/font.woff') format('opentype');
  font-weight: 900;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'sixta';
}

.orange {
  background-color: #ff5b00;
}

/* MENU */
.custom-nav {
  background: #001624 !important;
}

.custom-nav img {
  width: 110px;
}

.navbar-nav a {
  color: #fdf7df !important;
}

.custom-toggler.navbar-toggler {
  border-color: #001624;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath stroke='rgba(253, 247, 233,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24' /%3E%3C/svg%3E");
}

/* SECCION 1 */
.encabezado-1 {
  color: #001624;
  font-weight: 900;
  font-size: 35px;
  margin-top: 100px;
  margin-bottom: 40px;
  max-width: 580px;
}

@media only screen and (max-width: 992px) {
  .encabezado-1 {
    margin-top: 3rem !important;
  }
}

.encabezado-1 span {
  color: #ff5b00;
  font-size: 48px;
}

.section-1 p {
  font-size: 18px;
  font-weight: 700;
  color: #001624;
  max-width: 516px;
}

.btn-banner {
  background-color: #ff5b00;
  color: #ffffff;
  font-weight: 900;
}

.section-1 img {
  width: 790px;
  border-radius: 15%;
  margin-top: 21px;
}

/* MISION Y VISION */
.identidad {
  background-color: #fdf7df;
  color: #001624;
  justify-content: space-evenly;
}

.identidad > div {
  text-align: center;
}

.identidad h2 {
  font-weight: 900;
  font-size: 36px;
}

.identidad p {
  font-weight: 600;
  font-size: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .identidad p span {
    white-space: nowrap;
  }
}

.identidad img {
  width: 80px;
  margin-bottom: 16px;
}

/* .section-3{
    background: #001624;
    color: #fdf7df;
} */
.section-3 {
  background: #ff5b00;
  color: #fdf7df;
  background-image: url('../img/Vector.png');
}

.section-3 h1 {
  font-weight: bold;
  display: table;
  margin: 0 auto;
  background: #ff5b00;
  font-weight: 900;
}

.section-3 h2 {
  font-weight: 700;
}

.section-3 p span {
  white-space: nowrap;
  display: block;
}

@media only screen and (max-width: 576px) {
  .section-3 p span {
    white-space: unset;
    display: inline;
  }

  .section-3 h2 span {
    white-space: unset !important;
  }
}

.section-3 h2 span {
  white-space: nowrap;
  display: block;
}

.why {
  background: #ff5b00;
  margin: 0 !important;
}

.section-3 > div {
  background: #ff5b00;
  font-weight: 600;
  font-size: 18px;
}

.header-partners {
  color: #001624;
  font-weight: 900;
}

/*ANIMATION*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f2f2f2;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 40px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: '';
  z-index: 2;
}

@media only screen and (max-width: 576px) {
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    content: '';
    z-index: 2;
  }
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  /* height: 50px;
  margin: 0 40px; */
  height: 180px;
  width: 120px;
  object-fit: cover;
  margin: 0 30px;
  border-radius: 10px;
}
/*********ANIMATION FIN**********/

.awards img {
  width: 100%;
}

.awards h1 {
  line-height: 1.1;
  padding-top: 20px;
  font-size: 30px;
  font-weight: 800;
}

.awards .image1 {
  padding: 20px 50px;
  padding-top: 50px;
  background: #001624;
  color: white;

  display: flex;
  flex-direction: column;

  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.awards .image1 > div {
  width: 100%;
  height: 250px;
  background-image: url('../img/award2.jpg');
  flex-grow: 1;

  background-position: center;
  background-size: cover;
}

.awards .image2 {
  padding: 20px 50px;
  padding-top: 50px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #fdf7df;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);
}
.awards .image2 h1 {
  color: #001624;
}

/** FORM INFO **/

.form-info {
  background-color: #001624;
}

.form-info form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 576px) {
  .form-info form {
    width: 100% !important;
  }
}

.form-info label {
  color: #fdf7df;
}
.form-info h2 {
  color: #fdf7df;
  font-weight: 900;
  font-size: 36px;
}

.container-image-form {
  background-color: #ff5b00;
}

.submit-btn {
  background-color: #ff5b00;
  color: #fdf7df;
}

@media only screen and (max-width: 1660px) {
  .section-1 img {
    width: 100%;
  }
  .vacio {
    display: none;
  }
}

@media only screen and (max-width: 1482px) and (min-width: 992px) {
  .section-3 .col-4 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/* POLITICAS */

.politica {
  font-size: 24px;
}

.politica h2 {
  font-weight: 900;
}

.politica ul li {
  margin-left: 25px;
}

.politica ul li span {
  font-weight: 900;
}

.politica p,
.politica span {
  font-weight: 700;
}

.cta-banner {
  background-image: url('../img/pics/8.jpg'); /* Reemplaza con tu imagen */
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Capa oscura */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

/* .cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
} */
.cta-content p {
  font-size: 18px;
  /* font-weight: 600; */
  margin-bottom: 20px;
}

.cta-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/* .btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  background-color: #2ecc71;
  color: white;
}

.btn.primary:hover {
  background-color: #27ae60;
}

.btn.secondary {
  background-color: white;
  color: #2ecc71;
  border: 2px solid #2ecc71;
}

.btn.secondary:hover {
  background-color: #2ecc71;
  color: white;
} */

/* Estilos básicos para el modal */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 6% auto;
  padding: 35px 20px 10px 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  height: 80%;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media only screen and (max-width: 576px) {
  .modal-content {
    background-color: #fff;
    margin: 20% auto;
    padding: 35px 20px 10px 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    height: 80%;
    position: relative;
  }
}
