@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 =========================== */
.pesca__main {
  background-image: url(../img/pesca-fondo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 803px;
  padding: 100px 0;
}

.pesca {
  display: flex;
}

.pesca__info {
  width: 33%;
  padding-right: 40px;
}

.pesca__logo {
  margin-bottom: 33px;
}

.pesca__description {
  line-height: 38px;
  color: var(--text);
}

.pesca__banner {
  width: 67%;
  background-color: #FFF;
  padding: 20px;
}

.pesca__banner--item {
  display: flex;
  align-items: center;
}

.pesca__banner--img {
  margin-right: 58px;
  width: 387px;
  height: 425px;
}

.pesca__banner--description {
  font-size: 40px;
  line-height: 50px;
  color: #006CB5;
  font-weight: var(--bold);
}

@media screen and (max-width: 1024px) {
  .pesca {
    align-items: flex-start;
  }

  .pesca__banner--img {
    width: 350px;
    height: 425px;
    margin-right: 40px;
  }

  .pesca__banner--description {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .pesca__main{
    height: 1100px;
  }

  .pesca {
    flex-direction: column;
  }

  .pesca__info {
    width: 100%;
  }

  .pesca__logo {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }

  .pesca__banner {
    width: 100%;
  }

  .pesca__description {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 414px) {
  .pesca__main {
    height: 1250px;
  }

  .pesca__banner--item {
    flex-direction: column;
  }

  .pesca__banner--img{
    margin-right: initial;
    height: 350px;
    margin-bottom: 20px;
  }

  .pesca__banner--description {
    font-size: 25px;
    line-height: 35px;
  }
}


@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;
}