@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 =========================== */
.escuela{
  display: flex;
  align-items: center;
}

.escuela__info{
  width: 40%;
}

.escuela__info img{
  margin-bottom: 10px; 
}

.escuela__info--text{
  line-height: 34px;
  color: var(--text);
  margin-bottom: 40px;
}

.escuela__info--button{
  padding: 10px 20px;
  letter-spacing: 0.3em;
  font-weight: var(--semi-bold);
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  font-size: 12px;
  cursor: pointer;
  line-height: 12px;
  background-color: var(--secondary);
  color: #FFF;
}

.escuela__info--button:after{
  content: ">";
  margin-left: 15px;
  font-size: 20px;
  vertical-align: middle;
}

.escuela__gallery{
  width: 60%;
  padding-left: 40px;
}

.escuela__gallery--item{
  height: 200px !important;
  overflow: hidden;
}

.escuela__gallery--item img{
  width: 100%;
}

.title-1 {
  font-size: var(--title-1);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .escuela__info img {
    width: 180px;
  }

  .escuela__gallery--item{
    height: 160px !important;
  }

  .escuela__info--text{
    font-size: 14px;
  }
}

@media screen and (max-width: 414px) {
  .escuela {
    flex-direction: column;
  }

  .escuela__info{
    width: 100%;
    margin-bottom: 30px;
  }

  .escuela__gallery--item{
    height: 250px !important;
  }

  .escuela__gallery{
    width: 100%;
    padding-left: initial;
  }
}



@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;
}