html, html *, html *::before, html *::after {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #000000;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

body {
  background-color: #ffffff;
}
body.overflow-hide {
  overflow-y: hidden;
}

h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  max-width: 540px;
}

h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 23px;
}

h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
}

@media (max-width: 720px) {
  h2 {
    font-size: 20px;
    line-height: 24px;
  }
  h3 {
    font-size: 18px;
    line-height: 21px;
  }
  h4 {
    font-size: 16px;
    line-height: 19px;
  }
  p {
    font-size: 16px;
    line-height: 28px;
  }
}
@keyframes showLink {
  from {
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navLogo {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateX(0);
  }
}
header {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 24px;
  width: 100%;
  height: 58px;
  background-color: transparent;
}
@media (max-width: 768px) {
  header {
    top: 11px;
  }
}
header .header-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
header .header-wrapper .logo-block {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
header .header-wrapper .logo-block p {
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 768px) {
  header .header-wrapper .logo-block p {
    font-size: 18px;
  }
}
header .header-wrapper .header-content {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 850px) {
  header .header-wrapper .header-content {
    gap: 15px;
  }
}
header .header-wrapper .header-content-item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
header .header-wrapper .header-content-item:first-child {
  margin-right: 18px;
}
@media (max-width: 768px) {
  header .header-wrapper .header-content-item {
    display: none;
  }
}
header .header-wrapper .header-content-item p {
  font-size: 14px;
  line-height: 28px;
  text-transform: uppercase;
}
header .header-wrapper .header-content-item p span {
  font-weight: 700;
}
header .header-wrapper .header-content .hamburger {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #284B8E;
  cursor: pointer;
}
header .header-wrapper .header-content .hamburger.active {
  transform: translateX(-9px);
}
@media (max-width: 768px) {
  header .header-wrapper .header-content .hamburger.active {
    transform: translateX(0);
  }
}
header .header-wrapper .header-content .hamburger.active + .nav-menu {
  display: block;
}
header .header-wrapper .header-content .hamburger.active .top {
  transform: translateY(6px) rotate(45deg);
}
header .header-wrapper .header-content .hamburger.active .hidden {
  opacity: 0;
}
header .header-wrapper .header-content .hamburger.active .bottom {
  transform: translateY(-6px) rotate(-45deg);
}
header .header-wrapper .header-content .hamburger .top, header .header-wrapper .header-content .hamburger .hidden, header .header-wrapper .header-content .hamburger .bottom {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 0.5px;
  transition: transform 0.5s ease;
  opacity: 1;
}
header .header-wrapper .header-content .nav-menu {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  header .header-wrapper .header-content .nav-menu {
    height: calc(100% + 20px);
  }
}
header .header-wrapper .header-content .nav-menu .container {
  padding-bottom: 30px;
  height: 100%;
}
header .header-wrapper .header-content .nav-menu .container.nav-container.open {
  max-width: 1168px;
}
header .header-wrapper .header-content .nav-menu .container img {
  margin-top: 24px;
  margin-bottom: 12.5vh;
}
@media (max-width: 768px) {
  header .header-wrapper .header-content .nav-menu .container img {
    margin-top: 11px;
    margin-bottom: 25px;
  }
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link {
  display: flex;
  gap: 20px;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  padding-right: 18px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  header .header-wrapper .header-content .nav-menu .container .nav-menu-link {
    gap: 20px;
    flex-direction: column;
    padding-right: 0;
  }
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav {
  display: flex;
  gap: 15px;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav {
    gap: 0;
  }
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a {
  font-weight: 700;
  font-size: 44px;
  line-height: 66px;
  color: #000000;
  cursor: pointer;
  animation: showLink 1.5s cubic-bezier(0.29, 1.05, 0.49, 0.95);
  animation-fill-mode: forwards;
  opacity: 0;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(1) {
  animation-delay: 75ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(2) {
  animation-delay: 150ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(3) {
  animation-delay: 225ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(4) {
  animation-delay: 300ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(5) {
  animation-delay: 375ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(6) {
  animation-delay: 450ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(7) {
  animation-delay: 525ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:nth-child(8) {
  animation-delay: 600ms;
}
header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a:hover {
  font-weight: 900;
  color: #284B8E;
}
@media (max-width: 768px) {
  header .header-wrapper .header-content .nav-menu .container .nav-menu-link nav a {
    font-size: 34px;
    line-height: 56px;
  }
}

@keyframes homeLogo {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(50%);
    opacity: 1;
  }
}
@keyframes showLetter {
  to {
    opacity: 1;
  }
}
.home {
  overflow: unset;
  width: 100%;
  height: 100vh;
  padding-top: 39vh;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .home {
    padding-top: 150px;
    height: 518px;
  }
}
.home .home-logo {
  position: absolute;
  right: 0;
  bottom: 330px;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .home .home-logo {
    display: none;
  }
}
.home .home-logo.mount {
  animation: homeLogo 1.5s ease;
  animation-fill-mode: forwards;
}
.home .container {
  position: relative;
}
.home .container h1 {
  letter-spacing: 4px;
  max-width: 590px;
  margin-bottom: 44px;
}
@media (max-width: 768px) {
  .home .container h1 {
    margin-bottom: 34px;
  }
}
.home .container h1 span {
  opacity: 0;
  font-weight: 900;
  font-size: 64px;
  line-height: 74px;
  animation: showLetter 50ms ease;
  animation-fill-mode: forwards;
}
.home .container h1 span:nth-child(1) {
  animation-delay: 50ms;
}
.home .container h1 span:nth-child(2) {
  animation-delay: 100ms;
}
.home .container h1 span:nth-child(3) {
  animation-delay: 150ms;
}
.home .container h1 span:nth-child(4) {
  animation-delay: 200ms;
}
.home .container h1 span:nth-child(5) {
  animation-delay: 250ms;
}
.home .container h1 span:nth-child(6) {
  animation-delay: 300ms;
}
.home .container h1 span:nth-child(7) {
  animation-delay: 350ms;
}
.home .container h1 span:nth-child(8) {
  animation-delay: 400ms;
}
.home .container h1 span:nth-child(9) {
  animation-delay: 450ms;
}
.home .container h1 span:nth-child(10) {
  animation-delay: 500ms;
}
.home .container h1 span:nth-child(11) {
  animation-delay: 550ms;
}
.home .container h1 span:nth-child(12) {
  animation-delay: 600ms;
}
.home .container h1 span:nth-child(13) {
  animation-delay: 650ms;
}
.home .container h1 span:nth-child(14) {
  animation-delay: 700ms;
}
.home .container h1 span:nth-child(15) {
  animation-delay: 750ms;
}
.home .container h1 span:nth-child(16) {
  animation-delay: 800ms;
}
.home .container h1 span:nth-child(17) {
  animation-delay: 850ms;
}
.home .container h1 span:nth-child(18) {
  animation-delay: 900ms;
}
.home .container h1 span:nth-child(19) {
  animation-delay: 950ms;
}
.home .container h1 span:nth-child(20) {
  animation-delay: 1000ms;
}
.home .container h1 span:nth-child(21) {
  animation-delay: 1050ms;
}
.home .container h1 span:nth-child(22) {
  animation-delay: 1100ms;
}
.home .container h1 span:nth-child(23) {
  animation-delay: 1150ms;
}
@media (max-width: 768px) {
  .home .container h1 span {
    font-size: 44px;
    line-height: 54px;
  }
}
.home .container p {
  max-width: 540px;
  margin-bottom: 60px;
}
.home .container a {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 256px;
  height: 55px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  border-radius: 10px;
  background-size: 250%;
  transition: 0.6s linear;
  background: linear-gradient(90deg, #80ADE3 0%, #163470 100%);
}
.home .container a:hover {
  background-position: right;
}

.about-company {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #80ADE3 0%, #163470 100%);
  text-align: center;
  padding: 100px 20px;
}
.about-company h2, .about-company p {
  max-width: 640px;
  color: #ffffff;
}

.business-activities {
  margin-top: 120px;
}
.business-activities .container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.business-activities .container .ba-content {
  display: flex;
  gap: 25px;
  align-items: space-between;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.business-activities .container .ba-content .ba-item {
  text-align: center;
}
.business-activities .container .ba-content .ba-item img {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .business-activities .container .ba-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.main-content {
  margin: 120px 0;
}
.main-content .container {
  display: flex;
  gap: 60px;
  align-items: space-between;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}
.main-content .container .main-content-item {
  display: flex;
  gap: 35px;
  align-items: space-between;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
.main-content .container .main-content-item div {
  max-width: 535px;
  padding-top: 100px;
}
.main-content .container .main-content-item div h2 {
  margin-bottom: 30px;
}
.main-content .container .main-content-item div p span {
  font-weight: 700;
}
@media (max-width: 768px) {
  .main-content .container .main-content-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .main-content .container .main-content-item div {
    text-align: center;
    padding-top: 0;
  }
  .main-content .container .main-content-item img {
    order: -1;
  }
}

.contact-us {
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #80ADE3 0%, #163470 100%);
}
.contact-us .container {
  position: relative;
}
.contact-us .container .contact-form-wrapper {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 78px 0 62px;
  margin: 0 auto;
  max-width: 670px;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper {
    align-items: start;
    padding: 30px 0;
  }
}
.contact-us .container .contact-form-wrapper h2 {
  margin-bottom: 30px;
}
.contact-us .container .contact-form-wrapper p {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 40px;
  text-align: center;
  max-width: 610px;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper p {
    text-align: start;
    margin-bottom: 30px;
    line-height: 24px;
  }
}
.contact-us .container .contact-form-wrapper .contact-form {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 2;
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper .contact-form .input-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item {
  position: relative;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item {
    width: 100%;
  }
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input {
  border: none;
  min-width: 320px;
  height: 50px;
  text-indent: 20px;
  color: #000000;
  background: #ffffff;
  font-size: 16px;
  line-height: 19px;
  border-radius: 10px;
  transition: border 0.15s ease;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input {
    width: 100%;
  }
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input:focus-visible {
  outline-color: #284B8E;
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input:placeholder-shown ~ label {
  margin-top: 0;
  left: 20px;
  cursor: text;
  color: #000000;
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input.error {
  border: 1px solid #FF2E00;
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input.error ~ p {
  opacity: 1;
  transform: translateX(0);
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item input.error ~ label {
  color: #FF2E00;
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item label {
  position: absolute;
  left: 0;
  top: 16px;
  color: #ffffff;
  font-size: 16px;
  line-height: 19px;
  margin-top: -38px;
  transition: 0.3s ease-in-out;
  transition-property: left, margin-top;
}
.contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item p {
  font-size: 14px;
  text-align: right;
  min-height: 19px;
  color: #FF2E00;
  margin: 5px 0 6px;
  opacity: 0;
  transform: translateX(20%);
  transition: 0.6s ease all;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper .contact-form .input-wrapper-item p {
    margin-bottom: 0;
    margin-top: 0;
    min-height: 24px;
  }
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper {
  position: relative;
  width: 100%;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea {
  border: none;
  width: 100%;
  height: 50px;
  text-indent: 20px;
  padding-top: 15px;
  color: #000000;
  font-size: 16px;
  line-height: 19px;
  resize: none;
  border-radius: 10px;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea:focus-visible {
  outline-color: #ffffff;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea:placeholder-shown ~ label {
  margin-top: 0;
  left: 20px;
  cursor: text;
  color: #000000;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea.error {
  border: 1px solid #FF2E00;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea.error ~ p {
  opacity: 1;
  transform: translateX(0);
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea.error ~ label {
  color: #FF2E00;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper textarea.request-textarea {
  height: 100px;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper label {
  position: absolute;
  left: 0;
  top: 16px;
  font-weight: 500;
  color: #ffffff;
  font-size: 16px;
  line-height: 19px;
  margin-top: -37px;
  letter-spacing: -0.6px;
  transition: 0.3s ease-in-out;
  transition-property: left, margin-top;
}
.contact-us .container .contact-form-wrapper .contact-form .comment-wrapper p {
  max-width: unset;
  min-height: 19px;
  font-size: 14px;
  font-weight: 500;
  color: #FF2E00;
  margin-bottom: 6px;
  text-align: right;
  opacity: 0;
  transform: translateX(20%);
  transition: 0.6s ease all;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper .contact-form .comment-wrapper p {
    margin-bottom: 0;
    margin-top: 0;
    min-height: 24px;
  }
}
.contact-us .container .contact-form-wrapper .contact-form .form-button {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 256px;
  height: 55px;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  font-size: 20px;
  line-height: 24px;
  border-radius: 10px;
  background-size: 250%;
  transition: 0.6s linear;
  background: #B3DE7B;
  border: none;
  color: #000000;
}
.contact-us .container .contact-form-wrapper .contact-form .form-button:hover {
  background-position: right;
}
.contact-us .container .contact-form-wrapper .contact-form .attention {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 17px;
  font-style: italic;
}
@media (max-width: 768px) {
  .contact-us .container .contact-form-wrapper .contact-form .attention {
    text-align: center;
  }
}
.contact-us .container .background-map {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 164px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes btnPulse {
  to {
    opacity: 0;
    transform: scale(1.8);
  }
}
footer {
  width: 100%;
  min-height: 167px;
  height: fit-content;
  padding: 50px 0 30px;
}
@media (max-width: 768px) {
  footer {
    padding-top: 20px;
  }
}
footer .logo-block {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .logo-block p {
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 768px) {
  footer .logo-block p {
    font-size: 18px;
  }
}
footer .footer-content {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  border-bottom: 1px solid #A5A5A5;
  padding-bottom: 14px;
}
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
footer .footer-content .footer-contact {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  footer .footer-content .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footer-content .footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
}
footer .footer-content .footer-contact-item.phone p {
  white-space: nowrap;
}
footer .footer-content .footer-contact-item img {
  margin-top: 5px;
}
footer .footer-content .footer-contact-item p {
  font-size: 14px;
  line-height: 28px;
  max-width: 355px;
}
footer .footer-copyright {
  font-size: 12px;
  line-height: 28px;
  margin-top: 20px;
  text-align: center;
  color: #A5A5A5;
}
@media (max-width: 768px) {
  footer .footer-copyright {
    text-align: start;
  }
}
footer a .btn-up {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  position: fixed;
  z-index: 99;
  right: 100px;
  bottom: 100px;
  background-color: #284B8E;
  cursor: pointer;
  transform: translateX(200px);
  opacity: 0;
}
@media (max-width: 768px) {
  footer a .btn-up {
    right: 30px;
    bottom: 80px;
  }
}
footer a .btn-up.show {
  transform: translateX(0);
  opacity: 1;
}
footer a .btn-up::before, footer a .btn-up::after {
  content: "";
  display: block;
  position: absolute;
  opacity: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #000000;
  animation: btnPulse 2s linear infinite;
}
footer a .btn-up::after {
  animation-delay: 1s;
}
footer a .btn-up:hover img {
  transform: rotate(-90deg) scale(1.2);
}
footer a .btn-up img {
  filter: brightness(0) invert(1);
  transform: rotate(-90deg) scale(1);
  transition: 0.2s linear all;
}

/*# sourceMappingURL=style.css.map */
