@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 20px;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

main {
  overflow: hidden;
}

:root {
  --black: #171717;
  --blue: #00004D;
  --gold: #FFBE5C;
  --light-blue: #2929A6;
  --grey: #555;
}

* {
  color: var(--black, #171717);
  font-family: "Geist", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

strong {
  font-weight: 700;
}

button {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 100%;
}

a,
button,
p,
li,
span {
  font-size: 1rem;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

input,
select {
  outline: none;
  border: 0;
  border-radius: 3px;
  padding: 0;
}

div, section {
  width: 100%;
}

p:not(:last-child) {
  margin-bottom: 24px;
}

h1,
h1 * {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 16px;
}

h2,
h2 * {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 30px;
}

h3,
h3 * {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
}

h4,
h4 * {
  font-size: 1.33rem;
  font-weight: 700;
  line-height: 130%;
}

.focus {
  font-size: inherit;
  font-weight: inherit;
  color: var(--light-blue, #2929A6);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul:not(.menu) li {
  position: relative;
  padding-left: 22px;
}
ul:not(.menu) li:not(:last-child) {
  margin-bottom: 16px;
}
ul:not(.menu) li::before {
  content: "";
  display: block;
  width: 10px;
  border-radius: 2px;
  background: var(--gold, #FFBE5C);
  height: 10px;
  position: absolute;
  top: 7px;
  left: 0;
}
ul:not(.menu):not(:last-child) {
  margin-bottom: 24px;
}

ol {
  padding-left: 20px;
}
ol:not(:last-child) {
  margin-bottom: 24px;
}
ol li:not(:last-child) {
  margin-bottom: 16px;
}
ol li::marker {
  color: var(--gold, #FFBE5C);
}

.btn_gold {
  background: var(--gold, #FFBE5C);
  font-size: 0.8rem;
  border-radius: 3px;
  padding: 16px;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  max-width: 238px;
  -webkit-tap-highlight-color: transparent;
  color: var(--black, #171717);
  border: 1px solid var(--gold, #FFBE5C);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn_gold:hover {
  background: transparent;
  color: var(--gold, #FFBE5C);
}

.btn_blue {
  background: var(--blue, #00004D);
  font-size: 0.8rem;
  border-radius: 3px;
  padding: 16px;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  max-width: 238px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  color: #FFF;
  border: 1px solid var(--blue, #00004D);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn_blue:hover {
  background: transparent;
  color: var(--blue, #00004D);
}

.btn_gold_black {
  background: var(--gold, #FFBE5C);
  font-size: 0.8rem;
  border-radius: 3px;
  padding: 16px;
  position: relative;
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: var(--black, #171717);
  border: 1px solid var(--gold, #FFBE5C);
}
.btn_gold_black:hover {
  background: transparent;
  border: 1px solid var(--black, #171717);
  color: var(--black, #171717);
}

.read_more {
  color: var(--blue, #00004D);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration-line: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

._p {
  display: block;
}

._m {
  display: none;
}

._t {
  display: none;
}

.limited {
  max-width: 1360px;
  margin: 0 auto;
}

header {
  background: var(--blue, #00004D);
  padding: 16px 0 11px;
}
header .nav_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .nav_info .logo {
  display: block;
  max-width: 150px;
  margin-right: 36px;
}
header .nav_info nav {
  padding: 12px 0;
}
header .nav_info nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
header .nav_info nav .menu > li {
  position: relative;
}
header .nav_info nav .menu > li .submenu {
  background: var(--blue, #00004D);
  color: var(--white, #FFF);
  border-radius: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  z-index: 5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header .nav_info nav .menu > li:hover > .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header .nav_info nav .menu > li:hover > .submenu li a {
  padding: 10px 16px;
  color: #fff;
}
header .nav_info nav .menu a {
  color: var(--white, #FFF);
  display: block;
  font-size: 0.8rem;
  white-space: nowrap;
}
header .nav_info nav .menu a.active {
  color: var(--gold, #FFBE5C);
}
header .nav_info .btn_gold {
  margin: 0 0 0 auto;
}
header .nav_info .burger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
header .nav_info .burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

section {
  margin: 120px 0;
}

.banner {
  padding: 14vw 0;
  background: #e6e6e6;
  position: relative;
}
.banner .block {
  min-width: 1000px;
  width: 53vw;
}
.banner .block .text {
  max-width: 785px;
  margin-bottom: 32px;
}
.banner .block .text * {
  font-size: 1.3rem;
}
.banner .img {
  position: absolute;
  width: 26vw;
  right: 3vw;
  top: 3px;
}

.about_index .common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
}
.about_index .common .img {
  max-width: 28vw;
}
.about_index .common .block {
  max-width: 62vw;
  position: relative;
}
.about_index .common .block .text {
  overflow: hidden;
  -webkit-line-clamp: 12;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: 32px;
}
.about_index .common .block .text.expanded {
  -webkit-line-clamp: initial;
}
.about_index .common .block .read_more {
  position: absolute;
  bottom: 0;
  left: 0;
}

.why_us .common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0417vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.why_us .common .block {
  padding: 1.0417vw;
  width: 34.8958vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-radius: 3px;
  border: 1px solid var(--blue, #00004D);
}
.why_us .common .block .icon {
  max-width: 42px;
  margin-bottom: 6px;
}
.why_us .common .block .icon img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.why_us .common .block h3 {
  width: 100%;
  margin-bottom: 12px;
}

.for_whom .common .block {
  padding: 1.6667vw 0;
  border-bottom: 1px solid var(--grey, #555);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.6875vw;
}
.for_whom .common .block span {
  width: 32px;
  font-size: 1.1rem;
  font-weight: 700;
}
.for_whom .common .block h3 {
  width: calc(100% - 32px - 4.6875vw);
}

.form_static .limited {
  border-radius: 3px;
  background: var(--gold, #FFBE5C);
  padding: 0.7813vw 5.9896vw 0.7813vw 3.125vw;
}
.form_static .limited .common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6563vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_static .limited .common .block {
  max-width: 785px;
}
.form_static .limited .common .block h2 {
  margin-bottom: 20px;
}
.form_static .limited .common .block .text {
  margin-bottom: 20px;
}
.form_static .limited .common .block #form_static .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 630px;
}
.form_static .limited .common .block #form_static input {
  padding: 10px;
  font-size: 0.9rem;
  color: var(--black, #171717);
  border-radius: 3px;
  border: 1px solid var(--blue, #00004D);
  width: 100%;
  max-width: 325px;
  background: transparent;
}
.form_static .limited .common .block #form_static input:nth-of-type(2) {
  margin-top: 12px;
}
.form_static .limited .common .block #form_static .input-error {
  color: var(--red, #FD5C5C);
  font-size: 14px;
}
.form_static .limited .common .block #form_static .approval {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 22px;
}
.form_static .limited .common .block #form_static .approval .checkbox {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.form_static .limited .common .block #form_static .approval .checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -1;
  opacity: 0;
}
.form_static .limited .common .block #form_static .approval .checkbox .input {
  width: 20px;
  height: 20px;
  background: #424242;
  border-radius: 5px;
}
.form_static .limited .common .block #form_static .approval .checkbox .input:active {
  -webkit-filter: brightness(90%);
  filter: brightness(90%);
}
.form_static .limited .common .block #form_static .approval .checkbox .input:hover:not(:disabled) {
  border-color: #0d6efd;
}
.form_static .limited .common .block #form_static .approval .checkbox .input:focus {
  border-color: #0d6efd;
  outline: none;
}
.form_static .limited .common .block #form_static .approval .checkbox .input:disabled {
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.form_static .limited .common .block #form_static .approval .checkbox .input:disabled ~ .label {
  opacity: 0.5;
  cursor: not-allowed;
}
.form_static .limited .common .block #form_static .approval .checkbox input[type=checkbox]:checked + .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form_static .limited .common .block #form_static .approval .checkbox input[type=checkbox]:checked + .input::before {
  content: "";
  display: block;
  background: url("../../../image/svg/check_white.svg") no-repeat;
  width: 20px;
  height: 20px;
  background-position: center;
}
.form_static .limited .common .block #form_static .approval .checkbox .label {
  font-weight: 300;
  font-size: 16px;
  width: calc(100% - 28px);
}
.form_static .limited .common .block #form_static .approval * {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
}
.form_static .limited .common .block #form_static .approval .input-error {
  width: 100%;
  display: block;
  color: var(--red, #FD5C5C);
  font-size: 14px;
}
.form_static .limited .common .block #form_static .btn_blue {
  width: 100%;
  max-width: 285px;
}
.form_static .limited .common .img {
  max-width: 18.1771vw;
}

.img_text .common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0417vw;
}
.img_text .common .img {
  max-width: 34.8958vw;
  height: 22.3958vw;
}
.img_text .common .img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.img_text .common .block {
  width: 34.8958vw;
  position: relative;
}
.img_text .common .block button {
  position: absolute;
  bottom: 0;
  left: 0;
}

.o_text .block {
  max-width: 46.875vw;
}

@media (max-width: 900px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  }
  #menu.open {
    max-height: 500px;
  }
  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .menu li a {
    padding: 12px 20px;
  }
  .submenu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
            transform: none;
    background: #f9f9f9;
  }
  .submenu li a {
    padding-left: 40px;
  }
}
.mt_n {
  margin-top: 0;
}
.mt_n.o_text {
  margin-top: 20px;
}

.mb_n {
  margin-bottom: 0;
}/*# sourceMappingURL=main.css.map */