/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");

/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Hanken Grotesk;
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
ul,
hr {
  margin: 0;
  padding: 0;
}

hr {
  color: #c9d6df;
}

/* CSS RESET */

.title {
  margin-top: 30px;
  font-family: Hanken Grotesk;
  font-size: 56px;
  font-style: normal;
  font-weight: 900;
  line-height: 60px;
  color: #0084F8;
  text-align: center;
}

.subtitle {
  font-family: Lato;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #7E8387;
  text-align: center;
}

section.logos {
  background-image: url('./imgs/koreworld.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
}

.absoture-logo {
  position: absolute;
  left: -330px;
}

.logos-wrp {
  display: flex;
  justify-content: center;
  position: relative;
  gap: 20px;
  max-width: 800px;
  margin: auto;
  padding-bottom: 50px;
}

.logo-block {
  flex-direction: column;
}

.logo-box {
  display: flex;
  justify-content: center;
  height: 90px;
  width: 250px;
  border: 1px solid #f4f4f4;
  border-radius: 15px;
  padding: 8px 8px 0;
  margin: 12px;
  box-shadow: inset 0 4px 0 var(--top-border-color, #0084f8), 0 4px 8px rgba(0, 0, 0, 0.2);

  a {
    display: flex;
    align-items: center;

    img {
      max-height: 35px;
    }

    .kore7th-img {
      max-height: 70px;
    }
  }
}

.border-green {
  --top-border-color: #47c2b1;
}

.border-black {
  --top-border-color: #1c3666;
}

.border-darkblue {
  --top-border-color: #204496;
}

.logo-box-text {
  text-align: center;
  padding-top: 10px;
  color: #52616B;
  font-family: Lato;
  font-weight: 700;
}

section.newsletter {
  background-color: #F2F9FE;
  padding: 50px 0 50px;
}

.newsletter-wrp {
  max-width: 800px;
  margin: auto;

  h2 {
    color: #0084F8;
    font-family: Hanken Grotesk, Sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 32px 100px;
  background-color: #204496;
  color: #FFF;
  font-family: Lato, sans-serif;
  font-size: 14px;
  flex-wrap: wrap;

  .copyright p {
    font-family: Lato, sans-serif;
  }

  a {
    color: #FFF;
    text-decoration: underline;
  }

  .footer-links {
    display: flex;
    gap: 20px;

    a {
      font-family: Lato, sans-serif;
    }
  }

}

@media (width < 1440px) {
  section.logos {
    padding-top: 200px;
  }

  .absoture-logo {
    left: auto;
    top: -150px;
  }
}

@media (width < 768px) {
  .logos-wrp {
    flex-direction: column;
    align-items: center;
  }

  section.newsletter {
    padding: 50px 50px 50px;
  }
}