@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  /* COLORS */
  --primary: #14264c;
  --secondary: #223e7c;
  --thrid: #5f90ff;
  --text: #7D7D7D;
  --footer: #2D2D2D;
  /* FONTWEIGHT */
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  /* FONT */
  --title-1: calc(16px * 4);
  --title-2: calc(16px * 3.125);
  --title-3: calc(16px * 2.1875);
  --title-4: calc(16px * 1.25);
  --title-5: calc(16px * 1.125);
  --title-6: calc(16px * 0.875);
  /* Z-INDEX */
  --index-10: 10;
  --index-20: 20;
  --index-30: 30;
  --index-40: 40;
  --index-100: 100;
  --index-1000: 1000;
  --index-10000: 10000;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "san-serif";
  line-height: 1;
}

img {
  max-width: 100%;
  object-fit: cover;
  display: flex;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

[class*="l-container"] {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.l-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .l-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}


/* ========================== PREMIOS =========================== */
.esquema__general--main {
  display: flex;
  height: 835px;
}

.esquema__general--gallery {
  width: 50%;
  padding: 50px;
  background-image: url(../img/esquema-genaral.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.esquema__gallery {}

.esquema__gallery--item {}

.esquema__gallery--item__text {
  font-size: 48px;
  line-height: 59px;
  color: #FFF;
  margin-bottom: 27px;
  font-weight: var(--bold);
}

.esquema__gallery--item__img {
  display: flex;
  justify-content: center;
  background-color: #FFF;
  padding: 20px;
  height: 513px;
}

.esquema__gallery--item__img img {
  width: 100%;
}

.esquema__general--video {
  width: 50%;
  padding: 50px;
}

.esquema__video {
  height: 100%;
  display: grid;
  grid-gap: 20px;
  grid-template-rows: repeat(2,1fr);
}


.esquema__video--item iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .esquema__gallery--item__text {
    font-size: 45px;
    line-height: 55px;
  }

  .esquema__gallery--item__img {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .esquema__general--main {
    flex-direction: column;
  }

  .esquema__general--gallery {
    width: 100%;
  }

  .esquema__general--video {
    width: 100%;
  }

  .esquema__video--item {
    height: 400px;
  }

  .esquema__gallery--item__img {
    height: 400px;
  }
}

@media screen and (max-width: 414px) {
  .esquema__general--gallery {
    padding: 25px;
  }

  .esquema__gallery--item__text {
    font-size: 30px;
    line-height: 45px;
  }

  .esquema__gallery--item__img {
    height: 300px;
  }

  .esquema__general--video {
    padding: 25px;
  }

  .esquema__video--item {
    height: 300px;
  }
}



@media screen and (max-width: 1024px) {
  .title-1 {
    font-size: var(--title-2);
  }
}

.title-2-primary {
  font-size: var(--title-2);
  color: #fff;
}

.title-2-secondary {
  font-size: var(--title-2);
  color: var(--secondary);
}

@media screen and (max-width: 1024px) {
  .title-2-secondary {
    font-size: var(--title-3);
  }
}

.title-3-primary {
  font-size: var(--title-3);
  color: #fff;
}

.title-3-primary-secondary {
  font-size: var(--title-3);
  color: #fff;
}

.title-3-secondary {
  font-size: var(--title-3);
  color: var(--secondary);
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}