/*
Theme Name: LP
Author: Meduzzen
Description: A blank WordPress theme
Version: 1.0
*/

/* standartization */

:root {
  --font-family: "Asap", sans-serif;

  --white-white1000: #ffffff;
  --ocean-blue: #1d3e70;
}

body {
  font-family: var(--font-family);
}

html,
body {
  overflow-x: hidden;
}

/* container */

.container {
  max-width: 1440px;
  margin: 0 auto;
}

@media screen and (min-width: 2001px) {
  .container {
    max-width: 1920px;
  }
}

@media screen and (min-width: 1601px) and (max-width: 2000px) {
  .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .container {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 801px) and (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 800px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* footer */

.footer-block__template {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--white-white1000);
}

.footer-block__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li a {
  font-family: var(--font-family);
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0;
  color: var(--ocean-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--ocean-blue);
  transition: background-color 0.3s ease;
}

.footer-menu li a:hover::after {
  background-color: darken(var(--ocean-blue), 10%);
}

.footer-block__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0;
  color: var(--ocean-blue);
}

@media (max-width: 768px) {
  .footer-block__text {
    font-size: 13px;
  }

  .footer-menu li a {
    font-size: 13px;
  }

  .footer {
    margin-top: 40px;
  }

  .footer-block__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

/* header */

.header-section {
  display: flex;
  justify-content: center;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 32px;
  position: relative;
  background-color: transparent !important;
}

.header-pseudo {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translatex(-50%);
}

.header-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-logo {
  pointer-events: none;
}

.header-logo a {
  display: block;
  position: relative;
  z-index: 2;
}

.header-logo a img {
  width: 100%;
  height: auto;
  max-width: 226px;
}

@media screen and (max-width: 768px) {
  .header-pseudo.header-desktop {
    display: none;
  }

  .header-section {
    padding-top: 23px;
  }

  .header-logo img {
    max-height: 36px;
  }

  .header-pseudo {
    top: -9px;
  }

  .header-line {
    top: -1px;
  }
}

@media screen and (min-width: 769px) {
  .header-pseudo.header-mobile {
    display: none;
  }
}

/* hero */

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  min-height: 765px;
}

.hero__form > img {
  padding-bottom: 18px;
}

.hero__form img {
  max-width: 100px;
}

.hero__form {
  flex-direction: column;
  background-color: #ffffff;
  min-height: 606px;
  min-width: 483px;
  border-radius: 24px;
  padding: 32px 55px 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2.79px 8.77px 11.38px 0px #00000017,
    13.95px 43.83px 70px 0px #0000002e;
}

@media screen and (min-width: 401px) and (max-width: 768px) {
  .hero__form {
    min-width: 350px;
  }

  .hero__form img {
    max-width: 251px;
  }
}

@media screen and (max-width: 768px) {
  .hero__form {
    padding: 28px 24px 20px;
  }

  .hero {
    margin-top: 40px;
    min-height: unset;
    height: unset;
  }
}

@media screen and (max-width: 400px) {
  .hero__form {
    min-width: fit-content;
  }
}
