@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("../fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*
@font-face {
	font-family: 'Open Sans';
	src: local('Open Sans'),
		 url('../fonts/open-sans-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans';
	src: local(''),
		 url('../fonts/open-sans-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Open Sans';
	src: local(''),
		 url('../fonts/open-sans-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding: 90px;
}

*:focus-visible {
  outline: 2px solid var(--main-500);
  outline-offset: -2px;
}

*::-moz-selection {
  background-color: #b2d0f2;
  color: var(--text-clr);
}

*::selection {
  background-color: #b2d0f2;
  color: var(--text-clr);
}

:root {
  --ffamily: "Montserrat", sans-serif;
  --bg: #fff;
  --bg-header: #215178;
  /*
  #63282c
  */
  --main-500: #545454;
  --black1: #153D31;
  --red1: #D12846;
  --text-clr-black: #000;
  --text-clr-black1: #304251;
  --text-clr-black5: #596B7A;
  --text-clr-black6: #606072;
  --text-clr-blue1: #1160A1;
  --text-clr-blue2: #215178;
  --inner: 18px;
  --section-gap: 48px;
  --header-height: 72px;
  --input-border: 1px solid #9e9eb1;
  --input-border-r: 3px;
  --input-bg: #FDFDFD;
  --input-cl: var(--black1);
  --input-weight: 500;
} 
html {
  font-family: var(--ffamily);
  font-size: 18px;
  line-height: 1.5em;
}

body {
  background-color: var(--bg);
  color: var(--text-clr-black);
  position: relative;
  scroll-behavior: smooth;
}

.inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1320px;
  padding: 60px 18px;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, h5,
h6 {
  font-family: var(--ffamily);
  font-weight: 700;
  line-height: 1.2em;
  color: var(--text-clr-blue2);
}

h1, .h1,
h2, .h2 {
  font-size: 42px;
  line-height: 1.1em;
  margin-bottom: 15px;
}

h3, .h3 {
  font-size: 30px;
}

p {
  color: #363636;
}

p + p {
  padding-top: 21px;
}

a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

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

strong,
small,
em,
address,
q,
cite,
li {
  font-weight: inherit;
  line-height: inherit;
  font-size: inherit;
  font-style: normal;
  color: inherit;
  quotes: none;
  list-style: none;
}

sup {
  font-size: 0.6em;
  display: inline-block;
  margin-top: -0.6em;
}

button {
  border: none;
  outline: none;
  background: unset;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  font-family: inherit;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

.hidden {
  display: none !important;
}

.hide-2 {
  overflow: hidden;
  position: absolute;
  height: 1px;
  width: 1px;
  bottom: 0;
  pointer-events: none;
}

.weight-400 {
  font-weight: 400;
}

.weight-600 {
  font-weight: 600;
}

.weight-700 {
  font-weight: 700;
}

.text-12 {
  font-size: 12px;
  line-height: 15px;
}

.text-21 {
  font-size: 21px;
  line-height: 30px;
}

.color-blue1 {
  color: var(--text-clr-blue1);
}

.color-blue2 {
  color: var(--text-clr-blue2);
}

.marg-b-12 {
  margin-bottom: 12px;
}

.marg-b-24 {
  margin-bottom: 24px;
}

.marg-b-48 {
  margin-bottom: 48px;
}

.w100 {
  width: 100% !important;
  max-width: unset !important;
}

.clear {
  clear: both;
}

.text-center {
  text-align: center;
}

.pointer {
  cursor: pointer;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

/* COMMON */
body > .all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.all > .page-content {
  flex-grow: 2;
}
.all > .page-content a {
  color: #3c75c6;
  text-decoration: none;
  text-underline-offset: 3px;
}
.all > .page-content a:hover {
  text-decoration: underline;
}

.noscroll {
  overflow: hidden;
}

.nowrap {
  white-space: nowrap;
}

.flex {
  display: flex;
}

.flex-t1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hover-1 {
  transition: color 300ms;
}
.hover-1:hover {
  color: var(--main-500) !important;
}

.primary-header {
  background-color: var(--bg-header);
  color: #fff;
  height: var(--header-height);
  border-bottom: 1px solid #D3DEEA;
  padding: 12px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.primary-header.border {
  border-bottom: 1px solid #D3DEEA !important;
}
.primary-header .inner {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.primary-header .header_logo {
  max-width: 129px;
  width: auto;
  height: 42px;
  margin-right: 36px;
  display: inline-block;
}
.primary-header .header_logo_link {
  max-height: 42px;
}
.primary-header .burger {
  width: 48px;
  height: 48px;
  margin: -12px -12px -12px 6px;
  cursor: pointer;
}
.primary-header .burger span {
  display: block;
  background-color: #fff;
  position: relative;
  height: 2px;
  width: 30px;
  margin: 0 auto;
  transition: transform 250ms;
}
.primary-header .burger span::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  background-color: inherit;
  height: 2px;
  width: 30px;
  transition: transform 250ms;
}
.primary-header .burger span::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  background-color: inherit;
  height: 2px;
  width: 30px;
  transition: transform 250ms;
}
.primary-header .burger.active span {
  background-color: transparent !important;
}
.primary-header .burger.active span:before {
  transform: rotate(45deg) translate(7px, 6px);
  background-color: #fff !important;
}
.primary-header .burger.active span:after {
  transform: rotate(-45deg) translate(6px, -6px);
  background-color: #fff !important;
}

/****/
.mobile-menu {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  inset: 0;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  z-index: 80;
  background-color: #fff;
  min-width: 100%;
  overflow-y: auto;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: unset;
  position: sticky;
  z-index: 666;
}

.mobile-menu li {
  display: block;
  text-transform: uppercase;
  margin-bottom: 51px;
  font-size: 21px;
  line-height: 20px;
  color: var(--dark-500);
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 260px;
  text-align: center;
}

@media (min-width: 800px) {
  .primary-header {
    /*		
    		.desktop-nav  {
    			display: flex;
    			// gap: 42px; 
    			font-size: 16px;
    			line-height: 1.2em;
    			// margin-right: 60px;
    			text-align: center;

    			a {
    				display: flex;
    				align-items: center;
    			}

    			a + a {
    				padding-left: 54px;
    				// outline: 1px solid gold;
    			}

    		}
    */
  }
  .primary-header .desktop-nav {
    display: block !important;
    color: #363636;
  }
  .primary-header .desktop-nav a {
    transition: color 300ms;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #fff;
  }
  .primary-header .desktop-nav a:hover,
  .primary-header .desktop-nav a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 6px;
  }
  .primary-header .desktop-nav a,
  .primary-header .desktop-nav span {
    display: block;
  }
  .primary-header .desktop-nav li {
    padding: 6px 0;
  }
  .primary-header .desktop-nav li + li {
    margin-left: 54px;
  }
  .primary-header .burger {
    display: none; /* показываем бургер на узких экранах */
  }
}
@media (min-width: 1200px) {
  .primary-header .desktop-nav {
    margin-right: 0;
  }
  .primary-header .desktop-nav a + a {
    padding-left: 36px;
  }
}
.primary-footer {
  background-color: var(--bg-header);
  color: #fff;
  border-bottom: 1px solid #D3DEEA;
  padding: 36px 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.primary-footer .inner {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  line-height: 1.26em;
}
.primary-footer .inner div:ntt-child(1) {
  padding-right: 21px;
}
.primary-footer a {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 8px;
}

input.left {
  position: absolute;
  width: 1px;
  height: 1px;
  bottom: 0;
  left: 0;
}

.input-1 {
  height: 54px;
  padding: 17px 21px 18px;
  font-size: 16px;
  font-weight: var(--input-weight);
  line-height: 18px;
  color: var(--input-cl);
  background: var(--input-bg);
  border: var(--input-border);
  border-radius: var(--input-border-r);
  transition: box-shadow 300ms;
}
.input-1:hover {
  box-shadow: var(--box-shad1);
}
.input-1:focus-visible,
.input-1 .input-1.error:focus-visible {
  border: 2px solid var(--main-500) !important;
  outline: none !important;
}
.input-1::-moz-placeholder {
  color: var(--text-clr2);
}
.input-1::placeholder, .input-1 button {
  color: var(--text-clr2);
}
.input-1:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--input-bg) inset !important;
}
.input-1.error {
  border: 1px solid #ed4141 !important;
  background-color: #fdf5f5 !important;
  outline: none !important;
}

.custom-checkbox,
.custom-radio {
  width: 1px;
  height: 0;
  overflow: hidden;
  position: absolute;
}
.custom-checkbox + label,
.custom-radio + label {
  position: relative;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-left: 42px;
  display: block;
  color: inherit;
  font-size: 16px;
  line-height: 1.26em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-checkbox + label::before,
.custom-radio + label::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 22px;
  height: 22px;
  border: var(--radio-border);
  background-color: var(--radio-bg);
}
.custom-checkbox:focus-visible,
.custom-radio:focus-visible {
  outline: none;
}
.custom-checkbox:focus-visible + label::before,
.custom-radio:focus-visible + label::before {
  outline: 1px solid var(--main-500);
}
.custom-checkbox:focus-visible:not(.btn-disabled) + label::before,
.custom-radio:focus-visible:not(.btn-disabled) + label::before {
  border-color: var(--main2);
}
.custom-checkbox.btn-disabled + label,
.custom-radio.btn-disabled + label {
  pointer-events: none;
}
.custom-checkbox.btn-disabled + label::before,
.custom-radio.btn-disabled + label::before {
  background-color: #E9E9E9 !important;
  border-color: #DADADA !important;
  cursor: not-allowed;
  pointer-events: none;
}
.custom-checkbox.error + label::before,
.custom-radio.error + label::before {
  border: 1px solid #ed4141 !important;
  outline: none !important;
}

.custom-radio + label::before {
  border-radius: 50%;
}
.custom-radio:checked + label::before {
  border: 5px solid var(--radio-bg-act);
  width: 14px;
  height: 14px;
}

.custom-checkbox + label::before {
  border-radius: var(--btn-border-r);
}
.custom-checkbox:checked + label::before {
  background-color: var(--radio-bg-act);
  background-image: url("data:image/svg+xml,%0A%3Csvg width='21' height='22' viewBox='0 0 21 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 11.5L8.5 18L19 1.5' stroke='%23fff' stroke-width='3.5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  border-color: var(--radio-bg-act);
}

.modal-w {
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 6, 6, 0.3);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal-w.active {
  pointer-events: unset;
  opacity: 1;
  transition: opacity 200ms !important;
}
.modal-w.transition {
  transition: opacity 100ms 300ms;
}
.modal-w::-webkit-scrollbar {
  display: none;
  opacity: 0;
}
.modal-w::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 100%;
}
.modal-w .modal {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 56px var(--inner) 32px;
}
.modal-w .inner {
  text-align: left;
  white-space: normal;
  background-color: #fff;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 88px);
  overflow: auto;
  padding: 0 24px 36px;
}
.modal-w .btns, .modal-w button[type=submit] {
  margin-top: auto;
}
.modal-w .btns > * + * {
  margin-left: 16px;
}
.modal-w .btn {
  margin-top: 30px;
}
.modal-w.notice .inner {
  padding: 0 18px 42px;
}
.modal-w.notice .text-24 {
  font-size: 21px;
  line-height: 33px;
}

.modal-title {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 36px 0 12px;
  z-index: 2;
}
.modal-title > p {
  font-size: 25px;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 9px;
}
.modal-title .subtitle {
  font-size: 15px;
  line-height: 21px;
  margin-bottom: 9px;
  font-weight: 500;
  color: #6c7887;
}
.modal-title button {
  padding: 4px;
  width: 24px;
  height: 24px;
  margin-left: 32px;
  background-image: url("data:image/svg+xml, %3Csvg width='18' height='18' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 1L1 25Z' fill='%23737795'/%3E%3Cpath d='M25 25L1 1M25 1L1 25' stroke='%23737795' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: center;
  position: absolute;
  top: 13px;
  right: -9px;
}

@media (min-width: 1025px) {
  .modal-w.active {
    padding-right: 17px;
  }
}
/* BUTTONS */
.btn {
  position: relative;
  cursor: pointer;
  text-align: center;
  line-height: 1em;
}
.btn:active {
  top: 2px;
}

.btn-1 {
  display: inline-flex; /* Кнопка подстраивается под размер внутреннего контента */
  align-items: center; /* Вертикальное выравнивание по центру */
  font-size: 21px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-clr-black1) !important;
  padding: 10px 12px;
  text-transform: uppercase;
  border-top: 1px solid #153D31;
  border-bottom: 1px solid #153D31;
  text-decoration: none !important;
}
.btn-1 svg {
  margin-left: 8px; /* Отступ между текстом и иконкой */
  height: 1em; /* Приведение высоты иконки в соответствие с текстом */
}

.btn-medium {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  padding: 12px 15px;
}

.btn-large {
  background-color: #153D31;
  color: #fff;
  padding: 10px 20px;
  font-size: 40px;
  font-weight: 700;
}

.btn-red {
  background-color: var(--red1);
  color: #fff;
}

.btn-orange {
  background-color: orangered;
  color: #fff;
}

@media (min-width: 360px) {
  .inner {
    padding-left: 18px;
    padding-right: 18px;
  }
  h2 {
    font-size: 42px;
  }
  p {
    font-size: 16px;
    line-height: 1.66em;
  }
}
@media (min-width: 428px) {
  .inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 800px) {
  .inner {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media (min-width: 1200px) {
  .inner {
    width: 100%;
    max-width: 1320px;
    padding: 80px 60px;
  }
  h1, .h1 {
    font-size: 60px;
    line-height: 1.1em;
  }
  .noscroll {
    margin-right: 17px;
  }
}
.border {
  border: 1px solid red;
}/*# sourceMappingURL=global.css.map */