@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-weight: 100;
  font-display: swap;
  src: url(../fonts/Inter_Thin.woff2) format("woff2"), url(../fonts/Inter_Thin.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 200;
  font-display: swap;
  src: url(../fonts/Inter_ExtraLight.woff2) format("woff2"), url(../fonts/Inter_ExtraLight.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/Inter_Light.woff2) format("woff2"), url(../fonts/Inter_Light.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Inter_Regular.woff2) format("woff2"), url(../fonts/Inter_Regular.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Inter_Medium.woff2) format("woff2"), url(../fonts/Inter_Medium.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Inter_SemiBold.woff2) format("woff2"), url(../fonts/Inter_SemiBold.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Inter_Bold.woff2) format("woff2"), url(../fonts/Inter_Bold.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 800;
  font-display: swap;
  src: url(../fonts/Inter_ExtraBold.woff2) format("woff2"), url(../fonts/Inter_ExtraBold.woff) format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 900;
  font-display: swap;
  src: url(../fonts/Inter_Black.woff2) format("woff2"), url(../fonts/Inter_Black.woff) format("woff");
}
*, *::after, *::before {
  box-sizing: border-box;
}

body {
  font-family: "Inter";
  font-weight: 400;
  display: flex;
  flex-direction: column;
  height: 100vh;
}
body.no-scroll {
  overflow: hidden; /* Запрет прокрутки */
}

a {
  text-decoration: none;
  color: #000000;
}
a:visited {
  color: inherit;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, p {
  margin: 0;
}

img {
  width: 100%;
}

.container {
  margin: 0 auto;
  padding: 0px 20px;
}
.container-lg {
  max-width: 1440px;
}
.container-md {
  max-width: 1210px;
}
.container-sm {
  max-width: 1020px;
}
@media (max-width: 576px) {
  .container {
    padding: 0px 12px;
  }
}

main {
  padding: 40px 0;
  flex-grow: 1;
}

.header {
  border-bottom: 3px solid #222C58;
}
.header__content {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__content .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__content .left img {
  width: 45px;
}
.header__content .left .contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__content .left .contacts a {
  font: 200 14px/1 "Inter";
}
.header__content nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.header__content nav ul {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.header__content nav ul li {
  font: 400 16px/1 "Inter";
  color: #1E1E1E;
  text-transform: uppercase;
  transition: all 0.2s ease-in;
}
.header__content nav ul li:hover {
  transform: translateY(-2px);
}
.header__content button {
  background: #222C58;
  padding: 8px 14px;
  border-radius: 7px;
  font: 300 14px/1 "Inter";
  color: #ffffff;
  text-transform: uppercase;
  transition: background 0.2s ease-in;
}
.header__content button:hover {
  background: #595C94;
}
.header__content .burger {
  display: none;
}
.header__content .burger #nav-icon {
  width: 30px;
  height: 25px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.header__content .burger #nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #222C58;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header__content .burger span:nth-child(1) {
  top: 0px;
}
.header__content .burger #nav-icon span:nth-child(2), .header__content .burger #nav-icon span:nth-child(3) {
  top: 10px;
}
.header__content .burger #nav-icon span:nth-child(4) {
  top: 20px;
}
.header__content .burger #nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.header__content .burger #nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}
.header__content .burger #nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.header__content .burger #nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}
@media (max-width: 1280px) {
  .header__content {
    display: grid;
    grid-template-columns: 1fr 215px;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    row-gap: 10px;
  }
  .header__content .left img {
    width: 80px;
  }
  .header__content nav {
    justify-content: flex-start;
    grid-column: span 2;
  }
  .header__content nav ul {
    justify-content: center;
    flex-wrap: wrap;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 10px;
  }
}
@media (max-width: 576px) {
  .header__content {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
  }
  .header__content .left .contacts {
    display: none;
  }
  .header__content nav, .header__content button {
    display: none;
  }
  .header__content .burger {
    display: block;
  }
}

.footer .frame {
  padding: 34px 0 40px;
  background: #222C58;
  border-radius: 60px 60px 0 0;
}
.footer .content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  font: 200 24px/1 "Inter";
  color: #ffffff;
}
.footer .content > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}
.footer .content > div.contacts {
  text-align: right;
}
.footer .content > div.contacts a {
  transition: transform 0.2s ease-in;
}
.footer .content > div.contacts a:hover {
  transform: translateY(-2px);
}
.footer .content > div .socials {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 12px;
}
.footer .content > div .socials a {
  transition: transform 0.2s ease-in;
}
.footer .content > div .socials a:hover {
  transform: translateY(-2px);
}
.footer .content > div .copyright {
  text-align: center;
}
.footer .content > div a {
  color: inherit;
}
@media (max-width: 1024px) {
  .footer .content {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .content > div.middle {
    text-align: right;
  }
  .footer .content > div.contacts {
    grid-column: span 2;
  }
  .footer .content > div .socials {
    justify-content: flex-end;
  }
  .footer .content > div .copyright {
    text-align: right;
  }
}
@media (max-width: 768px) {
  .footer .content {
    font-size: 18px;
    gap: 8px;
  }
  .footer .content > div {
    gap: 8px;
  }
  .footer .content > div .socials a {
    max-width: 25px;
  }
}
@media (max-width: 576px) {
  .footer .content {
    font-size: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer .content > div {
    text-align: center !important;
  }
  .footer .content > div.contacts {
    grid-column: auto;
  }
  .footer .content > div.middle {
    order: -1;
  }
  .footer .content > div .socials {
    justify-content: center;
  }
  .footer .content > div .copyright {
    text-align: center;
  }
}

.breadcrumbs {
  margin-bottom: 23px;
  font: 300 15px/1 "Inter";
  color: #636363;
}
.breadcrumbs a {
  transition: color 0.2s ease-in;
}
.breadcrumbs a:hover {
  color: #595C94;
}

.contactPopup,
.reviewPopup {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}
.contactPopup.active,
.reviewPopup.active {
  opacity: 1;
  visibility: visible;
}
.contactPopup-content,
.reviewPopup-content {
  min-height: 100px;
  max-width: 536px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 25px 60px 40px;
  border-radius: 39px;
  position: relative;
}
@media (max-width: 576px) {
  .contactPopup-content,
  .reviewPopup-content {
    margin: 15% 20px;
    padding: 60px 30px 40px;
  }
}
.contactPopup h3,
.reviewPopup h3 {
  font: 600 20px/1 "Inter";
  color: #222C58;
  margin-bottom: 20px;
}
.contactPopup .close,
.reviewPopup .close {
  position: absolute;
  right: 0;
  top: 0;
  color: #222C58;
  cursor: pointer;
  transition: color 0.2s ease-in;
}
.contactPopup .close:hover,
.reviewPopup .close:hover {
  color: #595C94;
}

.form-wrapper {
  width: 100%;
  padding: 40px;
  border-radius: 40px;
  box-shadow: -4px 4px 20.4px 0px rgba(0, 0, 0, 0.2509803922);
  position: relative;
}

form {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}
form .inputs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
form .inputs input,
form .inputs textarea {
  padding: 14px 28px;
  border: 2px solid #1A2847;
  border-radius: 15px;
}
form .inputs input::-moz-placeholder, form .inputs textarea::-moz-placeholder {
  font: 200 16px/1 "Inter";
}
form .inputs input::placeholder,
form .inputs textarea::placeholder {
  font: 200 16px/1 "Inter";
}
form input[type=submit] {
  padding: 14px;
  background: #222C58;
  border: none;
  border-radius: 15px;
  font: 700 20px/1 "Inter";
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease-in;
}
form input[type=submit]:hover {
  background: #595C94;
}
@media (max-width: 576px) {
  form input[type=submit] {
    font-size: 16px;
  }
}

.contactResponseMessage,
.reviewResponseMessage {
  font: 600 20px/1 "Inter";
  color: #222C58;
  text-align: center;
}

.contactSpinner,
.reviewSpinner {
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
}

@keyframes mulShdSpin {
  0%, 100% {
    box-shadow: 0em -2.6em 0em 0em #222C58, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
  }
  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #222C58, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
  }
  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #222C58, 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7), 1.75em 1.75em 0 0em #222C58, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #222C58, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2), -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #222C58, -2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7), -2.6em 0em 0 0em #222C58, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
  }
  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2), 1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5), -2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #222C58;
  }
}
.burger-menu {
  position: absolute;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 10;
  bottom: 0;
  top: 94px;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}
.burger-menu.active {
  opacity: 1;
  visibility: visible;
}
.burger-menu nav ul li {
  text-align: center;
  padding: 10px 0;
  font: 400 12px/1 "Inter";
  color: #1E1E1E;
  text-transform: uppercase;
}

.page-404 {
  width: 100%;
  height: 100%;
  background: #222C58;
  position: relative;
}
.page-404 .wrapper {
  max-width: 530px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-404 .wrapper h1 {
  font: 900 128px/1 "Inter";
  color: #ffffff;
}
.page-404 .wrapper span {
  display: block;
  text-align: center;
  font: 300 24px/1 "Inter";
  color: #ffffff;
}
.page-404 .wrapper a {
  display: block;
  padding: 15px;
  margin-top: 70px;
  background: #ffffff;
  border-radius: 15px;
  font: 700 20px/1 "Inter";
  color: #222C58;
  text-align: center;
  transition: transform 0.2s ease-in;
}
.page-404 .wrapper a:hover {
  transform: translateY(-2px);
}/*# sourceMappingURL=global.css.map */