@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  font-weight: 600;
  src: url("../fonts/Manrope-Semibold.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Manrope", "Arial", "Helvetica", sans-serif;
  margin-right: auto;
  margin-left: auto;
  min-width: 375px;
  position: relative;
  scrollbar-gutter: stable;
  max-width: 1440px;
}

dialog {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: none;
  text-decoration: underline;
}

p {
  cursor: default;
  margin: 0;
}

span {
  cursor: default;
}

strong {
  cursor: default;
}

img {
  max-width: 100%;
}

li {
  cursor: default;
  list-style-type: none;
}

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

h1,
h2,
h3 {
  margin: 0;
  cursor: default;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.container {
  max-width: 1340px;
  padding: 0 70px;
  margin-right: auto;
  margin-left: auto;
}

.overflow {
  overflow: auto;
}

.overflow::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1024px) {
  .container {
    max-width: 1024px;
    padding: 0 35px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}
.header {
  background-color: #fff;
  padding: 20px 0;
  border-radius: 0 0 16px 16px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
  max-width: 1440px;
}
.header__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__block {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__block a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Manrope";
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #252836;
}

@media (max-width: 1024px) {
  .header {
    padding: 17px 0;
  }
}
@media (max-width: 576px) {
  .header {
    padding: 7px 0;
  }
  .header__logo svg {
    max-width: 75px;
    height: 24px;
  }
  .header__block a {
    font-size: 14px;
    line-height: 21px;
  }
  .header__block .header__adress {
    display: none;
  }
}
.hero {
  min-height: 100svh;
  position: relative;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.hero::after {
  content: "";
  display: block;
  background-image: url(../img/svg/hero-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  max-width: 45%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  max-height: 695px;
}
.hero::before {
  content: "";
  display: block;
  background-image: url(../img/svg/hero-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  max-width: 45%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 30px;
  max-height: 541px;
  z-index: 2;
}
.hero .container {
  min-height: inherit;
}
.hero__video {
  position: absolute;
  inset: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0 0 16px 16px;
}
.hero__flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 74px;
  position: relative;
  z-index: 2;
  min-height: inherit;
}
.hero__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero h1 {
  max-width: 370px;
  font-family: Manrope;
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 45px;
  letter-spacing: 0px;
  text-align: center;
  color: #252836;
}
.hero__adress {
  display: none;
}

@media (max-width: 1024px) {
  .hero::before {
    max-width: 30%;
    transform: translateX(30%);
  }
  .hero::after {
    max-width: 30%;
    transform: translateX(-30%);
  }
  .hero__flex {
    gap: 60px;
  }
  .hero h1 {
    max-width: 450px;
  }
}
@media (max-width: 576px) {
  .hero {
    padding-top: 90px;
  }
  .hero .container {
    min-height: unset;
  }
  .hero__flex {
    min-height: unset;
  }
  .hero__main {
    gap: 30px;
  }
  .hero__main svg {
    max-width: 132px;
    height: 42px;
  }
  .hero h1 {
    font-size: 24px;
    line-height: 35px;
    max-width: 322px;
    margin-bottom: 10px;
  }
  .hero__adress {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Manrope";
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0px;
    color: #252836;
  }
  .hero__adress svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
  }
  .hero::before {
    max-width: calc(100% - 40px);
    background-image: url(../img/svg/hero-576.svg);
    transform: unset;
    background-position: bottom center;
    right: 20px;
    max-height: 337px;
  }
  .hero::after, .hero__icons-1, .hero__icons-2 {
    display: none;
  }
}
.services {
  padding: 100px 0;
}
.services h2 {
  color: var(--Blue, #6384C5);
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  text-align: center;
  margin-bottom: 44px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}
.services__grid li:first-child {
  grid-column: span 4;
}
.services__grid li:nth-child(2) {
  grid-column: span 4;
}
.services__grid li:nth-child(3) {
  grid-column: span 4;
}
.services__grid li:nth-child(4) {
  grid-column: span 6;
}
.services__grid li:nth-child(5) {
  grid-column: span 6;
}
.services__grid li:nth-child(6) {
  grid-column: span 4;
}
.services__grid li:nth-child(7) {
  grid-column: span 4;
}
.services__grid li:nth-child(8) {
  grid-column: span 4;
}
.services__grid li {
  padding: 20px;
  border-radius: 10px;
  background: var(--Light-Blue, #F3F6FB);
  min-height: 339px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.services__grid li h3 {
  color: var(--Dark-Blue, #252836);
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  max-width: 200px;
  /* 145% */
}
.services__grid li img {
  position: absolute;
  bottom: 0;
  right: 0;
  transition: transform 0.25s ease;
}
.services__grid li:hover img {
  transform: scale(1.1);
}
.services__grid li:hover .services__btn {
  background-color: var(--Blue, #6384C5);
}
.services__btn {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--Dark-Blue, #252836);
  max-width: -moz-fit-content;
  max-width: fit-content;
  transition: background-color 0.25s ease;
  z-index: 2;
}
.services__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__grid li {
    grid-column: unset !important;
  }
}
@media (max-width: 576px) {
  .services {
    padding: 70px 0;
  }
  .services h2 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  .services__grid {
    gap: 20px;
  }
  .services__grid li {
    min-height: 232px;
  }
  .services__grid li img {
    max-height: 80%;
  }
}
.footer {
  background-color: #6384C5;
  padding: 100px 0;
  background-image: url(../img/svg/footer.svg);
  background-repeat: no-repeat;
}
.footer__logo {
  display: block;
  margin-bottom: 60px;
}
.footer__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.footer__flex_mb {
  margin-bottom: 60px;
}
.footer__socials {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__socials a {
  color: var(--White, #FFF);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.footer .flex-basis {
  flex-basis: 590px;
  flex-shrink: 0;
}
.footer__flex_text {
  color: var(--White, #FFF);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  opacity: 0.5;
}
.footer__flex_text span a {
  font-weight: 700;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav li {
  color: var(--White, #FFF);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.footer__nav button {
  color: var(--White, #FFF);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  opacity: 0.5;
}
.footer__nav li:first-child {
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  .footer .flex-basis {
    flex-basis: 392px;
  }
  .footer__flex {
    flex-wrap: wrap;
    gap: 15px 50px;
  }
}
@media (max-width: 576px) {
  .footer {
    padding: 70px 0;
  }
  .footer .flex-basis {
    flex-basis: unset;
  }
  .footer__logo {
    margin-bottom: 30px;
  }
  .footer__logo svg {
    max-width: 75px;
    height: 24px;
  }
  .footer__socials {
    gap: 15px;
  }
  .footer__flex {
    gap: 50px;
  }
  .footer__flex_text {
    gap: 15px;
  }
}
.modal {
  display: none;
  position: relative;
  z-index: 5;
}
.modal::after {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal__body {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.modal .modal__close {
  position: absolute;
  right: -25px;
  top: 0;
}
.modal .modal__content {
  max-width: 433px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.modal h2 {
  color: var(--Neutral-primary, #2B2D33);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  /* 145.833% */
  margin-bottom: 20px;
}
.modal .modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal label {
  color: var(--Dark-Blue, #252836);
  font-feature-settings: "liga" off, "clig" off;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal input {
  border-radius: 10px;
  background: var(--Light-Blue, #F3F6FB);
  padding-left: 16px;
  height: 46px;
  border: unset;
  text-decoration: unset;
}
.modal input::-moz-placeholder {
  color: var(--Gray_2, #9A9A9A);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.modal input::placeholder {
  color: var(--Gray_2, #9A9A9A);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
}
.modal .error::-moz-placeholder {
  color: #FA6668;
}
.modal .error::placeholder {
  color: #FA6668;
}
.modal .error {
  color: #FA6668;
}
.modal span {
  color: var(--Dark-Blue, #252836);
  font-family: Manrope;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.modal span a {
  color: var(--Blue, #6384C5);
  text-decoration-line: underline;
  text-decoration-style: solid;
}
.modal .modal__btn {
  color: var(--White, #FFF);
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 12px 20px;
  width: 100%;
  display: block;
  border-radius: 10px;
  background: var(--Dark-Blue, #252836);
}
.modal .modal__btn:disabled {
  background: var(--Gray_2, #9A9A9A);
}
.modal .success {
  display: none;
  color: #3CCE2E;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

@media (max-width: 576px) {
  .modal .modal__body {
    width: 80%;
  }
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0 auto 0;
}

details, main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}