@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}

/* =========== BASE CONFIG =========== */
::-webkit-scrollbar {
  width: 15px;
  height: 10px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #2c4668;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #183254;
}

html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  background-color: #fbfbfd;
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

.block__padding {
  padding: 60px 0;
}

.block__margin {
  margin: 60px 0;
}

.block-title {
  margin-bottom: 40px;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #15263c;
  transition: all 0.3s ease-in;
}

a:hover {
  color: #fff;
}

a:hover svg path {
  fill: #fff;
}

a svg path {
  transition: all 0.3s ease-in;
}

ul li {
  display: flex;
  align-items: flex-start;
  list-style: none;
  color: #15263c;
  font-size: calc(0.0025 * 100vw + 13.2px);
  line-height: 26px;
  margin-bottom: 10px;
}

ul li::before {
  content: "";
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url("../images/check.svg");
  margin-right: 10px;
}

ol li {
  list-style-position: inside;
  color: #15263c;
  font-size: calc(0.0025 * 100vw + 13.2px);
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: #15263c;
  font-size: 18px;
  line-height: 26px;
}

h1 {
  font-size: calc(0.0125 * 100vw + 28px);
  line-height: 100%;
  font-weight: 700;
  color: #15263c;
}

.title {
  font-size: calc(0.00625 * 100vw + 28px);
  line-height: 100%;
  font-weight: 700;
  color: #15263c;
}

h1.page-title {
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
  color: #15263c;
  margin-bottom: 50px;
}

h2 {
  font-weight: 600;
  font-size: calc(0.005 * 100vw + 22.4px);
  line-height: 100%;
  color: #15263c;
}

h3 {
  font-weight: 600;
  font-size: calc(0.0025 * 100vw + 19.2px);
  line-height: 120%;
  color: #15263c;
}

h4 {
  font-weight: 500;
  font-size: calc(0.0025 * 100vw + 15.2px);
  line-height: 120%;
  color: #15263c;
}

h5 {
  font-weight: 500;
  font-size: calc(0.00125 * 100vw + 13.6px);
  line-height: 120%;
  color: #15263c;
}

h6 {
  font-weight: 500;
  font-size: calc(0.00125 * 100vw + 11.6px);
  line-height: 120%;
  color: #15263c;
}

.bodyl {
  font-weight: 400;
  font-size: calc(0.00125 * 100vw + 17.6px);
  line-height: 135%;
  color: #15263c;
}

.bodym,
input,
textarea {
  font-weight: 400;
  font-size: calc(0.0025 * 100vw + 13.2px);
  line-height: 135%;
  color: #15263c;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-weight: 400;
  font-size: calc(0.0025 * 100vw + 13.2px);
  line-height: 135%;
  color: #5b6776;
}

input::placeholder,
textarea::placeholder {
  font-weight: 400;
  font-size: calc(0.0025 * 100vw + 13.2px);
  line-height: 135%;
  color: #5b6776;
}

.caption {
  font-weight: 300;
  font-size: calc(0.00125 * 100vw + 11.6px);
  line-height: 135%;
  color: #15263c;
}

.desc {
  font-weight: 300;
  font-size: calc(0.000625 * 100vw + 10.8px);
  line-height: 135%;
  color: #15263c;
}

.text {
  color: #5b6776;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #dfdfdf;
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs span.current-item {
  color: #121212;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  padding: 15px 30px;
  background: #183254;
  border: 1px solid #183254;
  outline: none;
  color: #fff;
  font-weight: 500;
  font-size: calc(0.0025 * 100vw + 11.2px);
  line-height: 135%;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}

.btn svg path {
  transition: all 0.3s ease-in;
}

.btn:hover,
.btn.active {
  background-color: transparent;
  color: #183254;
}

.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}

.btn:focus {
  letter-spacing: normal;
}

.btn.invert {
  background-color: transparent;
  color: #183254;
}

.primary {
  background-color: #183254;
}

.disable {
  color: #8a929d;
}

input,
textarea {
  border: none;
  border-bottom: 1px solid #e6e9ee;
  padding: 13px 0;
  transition: 0.3s;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  -moz-transition: 0.3s;
  transition: 0.3s;
}

input::placeholder,
textarea::placeholder {
  transition: 0.3s;
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: #15263c;
}

input.error,
textarea.error {
  border-color: #d12d26;
  color: #d12d26;
}

input.error::-moz-placeholder,
textarea.error::-moz-placeholder {
  color: rgba(209, 44, 38, 0.7);
}

input.error::placeholder,
textarea.error::placeholder {
  color: rgba(209, 44, 38, 0.7);
}

#main,
#primary {
  min-height: 83vh;
  padding-top: 95px;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}

.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1c0130;
  margin: 0 10px;
}

.navigation.pagination .page-numbers.current {
  font-weight: 750;
}

.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}

.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

/*============ HEADER =================*/
/*================ MOBILE MNU =============*/
#header {
  position: fixed;
  z-index: 100;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 10px 60px -20px rgba(21, 71, 132, 0.2);
}

#header a:hover {
  color: #183254;
}

#header .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

#header .header__wrapper .logo__wrapper {
  margin-right: 105px;
}

#header .header__wrapper .logo__wrapper img {
  max-width: 160px;
}

#header .header__wrapper .btn {
  background-color: transparent;
  border: none;
  padding: 0;
  margin-top: 5px;
  text-align: right;
  color: #183254;
}

#header .header__wrapper ul {
  display: flex;
  gap: 40px;
  list-style: none;
}

#header .header__wrapper ul li {
  flex-shrink: 0;
}

#header .header__wrapper ul li::before {
  content: none;
}

#header .header__wrapper .phone__wrapper {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  margin-left: 105px;
  text-align: right;
}

#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: #15263c;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}

#header .burger.open_menu.clicked {
  background-color: #15263c;
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
  color: #15263c;
}

#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu a:hover {
  color: #15263c;
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .menuTop li a:hover {
  color: #15263c;
}

#header #mobile-mnu .menuTop li.active a {
  color: #15263c;
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}

#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: #d12d26;
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .email__holder .email__item svg path {
  stroke: #b0a49b;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: #374957;
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: #d12d26;
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder .phone__item svg path {
  stroke: #b0a49b;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
/*   background-color: #3a899a; */
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609fa8;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer {
  background-color: #15263c;
  display: flex;
  flex-direction: column;
}

#footer .footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid #5b6776;
}

#footer .footer__top .logo {
  filter: brightness(1000%);
  margin-right: 105px;
}

#footer .footer__top .menuFooter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

#footer .footer__top .menuFooter li {
  margin: 0;
}

#footer .footer__top .menuFooter li::before {
  content: none;
}

#footer .footer__top .menuFooter li a {
  color: #fff;
  transition: 0.3s;
}

#footer .footer__top .menuFooter li a:hover {
  color: #b0a49b;
}

#footer .footer__top .contacts {
  flex-shrink: 0;
  margin-left: 105px;
  text-align: right;
}

#footer .footer__top .contacts .phones a {
  margin-bottom: 10px;
}

#footer .footer__top .contacts .phones a h3 {
  color: #fff;
  transition: 0.3s;
}

#footer .footer__top .contacts .emails a {
  margin-bottom: 10px;
}

#footer .footer__top .contacts .emails a h5 {
  color: #fff;
  transition: 0.3s;
}

#footer .footer__top .contacts a:hover h5,
#footer .footer__top .contacts a:hover h3 {
  color: #8a929d;
}

#footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
}

/* ============== MODAL ============= */
.form__head {
  margin-bottom: 30px;
  padding-right: 15px;
}

.form__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.form__inputs input {
  width: calc(50% - 20px);
}

.form__inputs textarea {
  resize: none;
  height: 150px;
  width: 100%;
}

.form__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form a:hover {
  color: #2c4668;
}

#modal-policy {
  overflow: auto;
}

.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  max-height: 90vh;
  max-width: 90vw;
  width: 600px;
  background-color: #fff;
  position: fixed;
  left: 50%;
  top: 50%;
  padding: 40px;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
}

.theme-modal .title {
  margin-bottom: 10px;
}

.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  font-weight: 750;
  color: #374957;
  cursor: pointer;
}

.err-page {
  position: relative;
}

.err-page::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 675px;
  background: #15263c;
  opacity: 0.6;
  z-index: 0;
}

.err-page .block__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 675px;
  z-index: 0;
  object-fit: cover;
}

.err-page .block__front-image {
  position: absolute;
  height: -webkit-fill-available;
  bottom: 0;
  right: 23.1770833333%;
  z-index: 1;
}

.err-page .error-404.not-found {
  padding-left: calc((100% - 1170px) / 2);
  padding-top: 223px;
}

.err-page .error-404.not-found h4 {
  margin-bottom: 20px;
  z-index: 3;
}

.err-page .error-404.not-found .title {
  margin-bottom: 40px;
  font-size: calc(0.00875 * 100vw + 53.2px);
  z-index: 3;
}

.err-page .error-404.not-found .bodym {
  margin-bottom: 40px;
  z-index: 3;
}

.err-page .error-404.not-found a {
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}
.privacy-policy h1.page-title {
  padding: 20px 40px 0 40px;
}

.privacy-policy p {
  padding: 0 40px;
}

.err-page .error-404__text {
  position: relative;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 3;
}

@media (max-width: 1700px) {
  .err-page .error-404__text {
    position: relative;
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 3;
  }
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1240px) {
  #header .header__wrapper .logo__wrapper {
    margin-right: 30px;
  }

  #header .header__wrapper .phone__wrapper {
    margin-left: 30px;
  }
}

@media (max-width: 1070px) {
  #header .header__wrapper ul {
    display: none;
  }

  #header .header__wrapper .burger.open_menu {
    display: flex;
  }

  #footer .footer__top {
    flex-wrap: wrap;
  }

  #footer .footer__top .logo {
    margin-right: 20px;
  }

  #footer .footer__top .contacts {
    margin: 0;
  }

  #footer .footer__top .menuFooter {
    order: 3;
  }
}

@media (max-width: 576px) {
  .block-title {
    margin-bottom: 20px;
  }

  .block__margin {
    margin: 20px 0;
  }

  .block__padding {
    padding: 20px 0;
  }
}

@media (max-width: 498px) {
  .theme-modal {
    padding: 20px;
  }

  .form__head {
    margin-bottom: 30px;
  }

  .form__inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }

  .form__inputs input {
    width: 100%;
  }

  .form__inputs textarea {
    resize: none;
    height: 150px;
    width: 100%;
  }

  .form__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .form__bottom .btn {
    width: 100%;
  }
  .privacy-policy h1.page-title {
    font-size: 25px;
    padding-top: 20px;
  }
  #header .header__wrapper .logo__wrapper {
    margin: 0;
  }
  #header .header__wrapper .btn {
    display: none;
  }
  #header .header__wrapper .phone__wrapper {
    align-items: center;
  }
  #header > div.container > div > div > div.phone > a > h3 {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  #header .header__wrapper .logo__wrapper {
    width: 100px;
  }
  #header .header__wrapper .logo__wrapper img {
    max-width: 100px;
  }
}

@media (max-width: 375px) {
  .privacy-policy h1.page-title {
    font-size: 25px;
  }
  .privacy-policy h1.page-title {
    font-size: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 425px) {
  .btn {
    width: 100%;
  }
}

@media (max-width: 330px) {
  #header .header__wrapper .logo__wrapper {
    width: 90px;
  }
  #header .header__wrapper .logo__wrapper img {
    max-width: 90px;
  }
}

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