*,  ::after,  ::before  {
    box-sizing:  border-box;
}
/* Manrope-Regular */
@font-face {
  font-family: "Manrope";
  src: url("../font/manrope-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Manrope-medium */
@font-face {
  font-family: "Manrope";
  src: url("../font/manrope-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/* Manrope-bold */
@font-face {
  font-family: "Manrope";
  src: url("../font/manrope-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
:root{
  --text-primary: #1C2733;
  --text-secondary: #979899;
  --text-accent: #2A4D77;
  --bg-primary: #2A4D77;
  --bg-secondary: #EBF4FF;
  --bg-base: #FFFFFF;
  --bg-surface: #F6F8F9;
}
html {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 160%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  color: var(--text-primary);
  background-color: var(--bg-base);
}
body {
  margin: 0;
}
h1,
h2,
h3,
h4,
p,
ul {
    margin-top: 0;
}
img,
svg {
    vertical-align: middle;
}
p {
    margin-bottom: 16px;
}
img {
    border-style: none;
    max-width: 100%;
}

a{
  text-decoration: none;
  color: var(--text-primary);
  transition: 0.3s ease-in-out;
}

/* displays  */
._d-mn-l,
._d-mx-l,
._d-mn-l-flex,
._d-mx-l-flex,
._d-mn-m,
._d-mx-m,
._d-mn-m-flex,
._d-mx-m-flex {
  display: none !important;
}
@media (min-width: 992px) {
    ._d-mn-l {
      display: block !important;
    }
    ._d-mn-l-flex {
      display: flex !important;
    }
}
@media (max-width: 991px) {
    ._d-mx-l {
      display: block !important;
    }
    ._d-mx-l-flex {
      display: flex !important;
    }
}
@media (min-width: 768px) {
  ._d-mn-m {
    display: block !important;
  }
  ._d-mn-m-flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  ._d-mx-m {
    display: block !important;
  }
  ._d-mx-m-flex {
    display: flex !important;
  }
}

/* headings */
h1, ._h1{
  font-weight: 700;
  font-size: 61px;
  line-height: 110%;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
}
h2, ._h2{
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
	color:#222;
}
h3, ._h3{
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
h4, ._h4{
  font-weight: 700;
  font-size: 27px;
  line-height: 130%;
}
h5, ._h5{
font-weight: 700;
font-size: 18px;
line-height: 140%;
}

/* subheading */
._subheading{
  font-weight: 400;
  position: relative;
  display: inline-block;
  width: 100%;
  padding-left: 24px;
  margin-bottom: 8px;
}
._subheading:before{
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 1px;
  background-color: var(--bg-primary);
}
._subheading._white{
  color: var(--bg-base);
}
._subheading._white:before{
  background-color: var(--bg-base);
}

/* heading title wrap*/
._titleWrap-row{
    margin-bottom: 16px;
}
@media (min-width: 992px) {
  ._titleWrap-row{
    display: flex;
    align-items: flex-end;
    margin-bottom: 32px;
  }
}

/* font weights and line height and sizes */
._fz-14{
  font-size: 14px;
}
._fw-m{
  font-weight: 500;
}
._lh-150{
  line-height: 150%;
}
._lh-180{
  line-height: 180%;
}

/* letter spacing */
._ls-01{
  letter-spacing: 0.01em;
}

/* colors */
._txt-sec{
  color: var(--text-secondary);
}

/* buttons */
._btnPrimary{
  display: inline-block;
  text-align: center;
  border: none;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 150%;
  min-width: 224px;
  background-color: var(--bg-primary);
  color: #FFFFFF;
  padding: 16px 16px;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}
._btnSecondary{
  display: inline-block;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  border: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-primary);
  background-color: var(--bg-base);
  padding: 16px 16px;
  border-radius: 4px;
  min-width: 224px;
  transition: 0.3s;
  cursor: pointer;
}
._btnPrimary:hover,
._btnSecondary:hover{
  color: var(--text-accent);
  background-color: var(--bg-secondary);
}

/* paddings, gaps  */
._p-y{
  padding-top: 72px;
  padding-bottom: 72px;
}
._row-gap-cards{
  gap: 16px 0px;
}
._mb-0{
  margin-bottom: 0;
}

/* ul  */
ul{
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}
ul li{
  display: inline-block;
}

/* sprite */
._sprite{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  font-size: 19px;
  border-radius: 4px;
  width: 44px;
  height: 44px;
  color: var(--text-accent);
  background-color: var(--bg-secondary);
}
a._sprite:hover{
  color: #fff;
  background-color: var(--bg-primary);
}

/* text */
._text-center {
    text-align: center !important;
}

/* toggle hidden */
._toggle-hidden{
  display: none;
}
._toggle-hidden._is-visible{
  display: block;
}
.js-toggle._active .icon-arr-down{
  transform: rotate(180deg);
}
.js-toggle .icon{
  font-size: 8px;
  margin-left: 15px;
  display: inline-block;
  transition: 0.3s;
  position: relative;
  top: -3px;
}

#wrapper{
  padding-top: 12px;
}
@media (max-width: 991px) {
  #wrapper{
    padding-top: 60px;
  }
  ._p-y{
    padding-top: 48px;
    padding-bottom: 48px;
  }
  h1, ._h1{
    font-size: 46px;
  }
  h2, ._h2{
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h1, ._h1{
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.02em;
  }
  h3, ._h3{
    font-size: 27px;
    line-height: 130%;
    letter-spacing: normal;
    margin-bottom: 8px;
  }
}

._cl-x-2,
._cl-x-3,
._cl-x-4,
._cl-x-5,
._cl-x-6,
._cl-x-7,
._cl-x-8,
._cl-x-9,
._cl-x-10,
._cl-l-1,
._cl-l-2,
._cl-l-3,
._cl-l-4,
._cl-l-5,
._cl-l-6,
._cl-l-7,
._cl-l-8,
._cl-l-9,
._cl-l-10,
._cl-m-1,
._cl-m-2,
._cl-m-3,
._cl-m-4,
._cl-m-5,
._cl-m-6,
._cl-m-7,
._cl-m-8,
._cl-m-9,
._cl-m-10,
._cl-m-11,
._cl-m-12,
._cl-s-2,
._cl-s-3,
._cl-s-4,
._cl-s-5,
._cl-s-6,
._cl-s-7,
._cl-s-8,
._cl-s-9,
._cl-s-10,
._container {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width: 576px) {
    ._container{
       padding-left: 15px;
       padding-right: 15px; 
    }
}
section {
    display: block;
}

._container {
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 577px) {
    ._container{
        max-width: 546px;
    }
}
@media (min-width: 768px) {
    ._container{
        max-width: 704px;
    }
}
@media (min-width: 992px) {
    ._container{
        max-width: 956px;
    }
}
@media (min-width: 1200px) {
    ._container{
        max-width: 1200px;
    }
}
@media (min-width: 1380px) {
    ._container{
        max-width: 1364px;
    }
}


._row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}
.cl,
._cl-1,
._cl-11,
._cl-12,
._cl-2,
._cl-3,
._cl-4,
._cl-5,
._cl-6,
._cl-7,
._cl-8,
._cl-9,
._cl-10 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}
._cl-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
._cl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
._cl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
._cl-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
._cl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
._cl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
@media (min-width: 577px) {
    ._cl-s-2{
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    ._cl-s-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    ._cl-s-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    ._cl-s-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    ._cl-s-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    ._cl-s-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    ._cl-s-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    ._cl-s-9 {
        flex: 0 0 auto;
        width: 75%;
    } 
    ._cl-s-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}
@media (min-width: 768px) {
    ._cl-m-2{
        flex: 0 0 16.66666667%;
        max-width: 16.66666667%;
    }
    ._cl-m-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    ._cl-m-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    ._cl-m-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    ._cl-m-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    ._cl-m-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    ._cl-m-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    ._cl-m-9 {
        flex: 0 0 auto;
        width: 75%;
    }
    ._cl-m-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}
@media (min-width: 992px) {
    ._cl-l-1{
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    ._cl-l-2{
        flex: 0 0 auto;
        max-width: 16.66666667%;
    }
    ._cl-l-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    ._cl-l-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    ._cl-l-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    ._cl-l-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    ._cl-l-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    ._cl-l-8{
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    ._cl-l-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    ._cl-l-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}
@media (min-width: 1200px) {
    ._cl-x-1{
        flex: 0 0 auto;
        width: 8.33333333%;
    }
    ._cl-x-2{
        flex: 0 0 auto;
        max-width: 16.66666667%;
    }
    ._cl-x-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    ._cl-x-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    ._cl-x-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }
    ._cl-x-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    ._cl-x-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
    ._cl-x-8{
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    ._cl-x-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    ._cl-x-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
       
}
._cl-x-12-5 {
    position: relative;
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
}
@media (min-width: 1200px) {
    ._cl-x-12-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}
.form-status {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.4;
  transition: opacity .3s;
}
.form-status.ok {
  color: #1a7f37; /* зелёный */
}
.form-status.err {
  color: #c00; /* красный */
}
._form .error {
  border-color: #c00;
}

