@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
#block_banner {
  position: relative;
  width: 100%;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: url("images/tlo1.webp") center top/cover no-repeat;
}
#block_banner .banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
#block_banner .banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
#block_banner .banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 10vh;
  padding: 30px 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__content {
    padding: 20px 20px;
    min-height: auto;
  }
}
#block_banner .banner__logo {
  margin-bottom: 20px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__logo {
    margin-bottom: 10px;
  }
}
#block_banner .banner__logo img {
  max-width: 160px;
  height: auto;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__logo img {
    max-width: 120px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner .banner__logo img {
    max-width: 200px;
  }
}
#block_banner .banner__title {
  font-family: "DM Sans", sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner .banner__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1700px) {
  #block_banner .banner__title {
    font-size: 2.8rem;
  }
}
#block_banner .banner__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: #1e1e1e !important;
  background-image: linear-gradient(90deg, #3757a1, #3757a1), linear-gradient(90deg, #fff, #fff);
  background-size: 0% 100%, 100% 100%;
  background-position: left top, left top;
  background-repeat: no-repeat;
  border: 1px solid #fff;
  transition: background-size 0.45s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
#block_banner .banner__button:hover {
  background-size: 100% 100%, 100% 100%;
  color: #fff !important;
  border-color: #fff;
  transform: translateY(-1px);
}
#block_banner .banner__button:active {
  transform: translateY(0);
}
#block_banner .banner__button:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media (min-width: 480px) and (max-width: 959px) and (orientation: landscape) {
  #block_banner .banner__button {
    font-size: 1rem;
    padding: 8px 16px;
    gap: 6px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #block_banner .banner__button {
    font-size: 1.35rem;
    padding: 9px 18px;
    gap: 7px;
  }
}
@media (min-width: 1700px) {
  #block_banner .banner__button {
    font-size: 1.1rem;
    padding: 16px 30px;
  }
}
#block_banner .banner__icon {
  display: flex;
  align-items: center;
}
#block_banner .banner__icon svg {
  width: 20px;
  height: 20px;
}
@media (min-width: 1700px) {
  #block_banner .banner__icon svg {
    width: 24px;
    height: 24px;
  }
}
#block_banner .banner__text strong {
  color: #1e1e1e;
  font-weight: 700;
}