/********* ROOT *********/
body, html {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color:#2c2c2c;
}

* {
  outline:none !important;
}

:root {
    --bronze: #C69075;
}

@font-face {
      font-family: "Bebas Neue";
      src: url("/templates/seoland/fonts/BebasNeue_Regular.otf");
      font-weight: 400;
}
@font-face {
      font-family: "Bebas Neue";
      src: url("/templates/seoland/fonts/BebasNeue_Bold.otf");
      font-weight: 700;
}
@font-face {
      font-family: "Din Pro";
      src: url("/templates/seoland/fonts/din-pro-condensed-medium.ttf");
      font-weight: 500;
}

.content {
    flex: 1 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
}
h1 {
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 0.05em;
  color:#C69075;
  text-align: center;
  margin:70px 0 0;
}
h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  margin-bottom: 30px;
  margin-top:0;
}
a:hover {
  text-decoration: none;
}

/********* КОНЕЦ | ROOT *********/

/********* HEADER *********/
.top {
  background-image: url(/images/header-bg.jpg);
  background-repeat: no-repeat;
  padding-bottom: 44px;
  background-size: cover;
  background-position: center;
    margin-bottom: 80px;
}
.header {
  padding: 40px 0;
}
.logoBlock-img {
    max-width: 100%;
}
.headerCenter p {
  margin:0;
  color:#fff;
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  text-align: center;
}
.headerRight {
  text-align: right;
}
.headerRight p {
  margin:0;
}
.phoneHeader {
  font-weight: bold;
  font-size: 30px;
  line-height: 40px;
  display: flex;
  align-items: center;
  text-align: right;
  text-transform: uppercase;
  color:#fff;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  transition: all .3s ease-in-out;
}
.phoneHeader:hover {
  color:#ccc;
}
.formaHeader {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.05em;
  padding: 4px 0;
  border-bottom: 1px solid #FFA26D;
  color: #FFA26D;
  transition: all .3s ease-in-out;
}
.formaHeader:hover {
  color: #FFA26D;
  border-bottom-color:transparent;
}
/********* КОНЕЦ | HEADER *********/

/********* МЕНЮ *********/

.modSlMenu-returnBtn {
  height: 50px;
  width: 100%;
  text-align: right;
  line-height: 1;
  padding-left: 1rem;
  border: none;
  background: none;
}

.modSlMenu-returnBtn span {
  background-color: #c69076;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  vertical-align: baseline;
  padding: 6px 8px;
  border-radius: 50px;
  font-size: 1.2rem;
  display: inline-block;
  border: none;
}

.modSlMenu-returnBtn:focus {
    outline: none;
}

.modMenuH {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #e0e0e0;
  z-index: 11000;
  transform: translateX(-100%);
  transition: all 0.3s;
  overflow-x: hidden;
  overflow-y: auto;
}

.modMenuH.open {
    transform: translateX(0%);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.modMenuH__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
}

.modMenuH__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.modMenuH__list-lvl_1 {
    height: calc(100% - 50px);
}

.modMenuH__item {
    display: block;
    width: 100%;
}

.modMenuH__item-link {
    display: inline-block;
    width: 100%;
    line-height: 1;
    padding: 0.7rem 1rem;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    font-family: "Bebas Neue", sans-serif;
    color:#fff;
}

.modMenuH__item-link:hover,
.modMenuH__item-link:focus,
.modMenuH__item-link:active {
    color: #FFA26D;
    text-decoration: none;
}



.modMenuH__item.deeper .modMenuH__list {
    position: absolute;
    top : 0;
    left: 0;
    transform: translateX(-100%);
    background-color: #e0e0e0;
    transition: all 0.3s;
}

.modMenuH__item-link.deeper {
    display: flex;
    align-items: center;
}

.modMenuH__item.deeper .modMenuH__list.open {
    transform: translateX(0%);
}

.toUp_wrapper {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    font-size: 40px;
    color: red;
    /*transition: 0.3s all;*/
}

.toUp_wrapper:hover {
    cursor: pointer;
    opacity: 0.7;
}

.modMenuH__item-link_chevron {
    flex-grow: 1;
    height: 100%;
    margin-left: 10px;
    position: relative;
    transform: translateY(8%);
}




@media (min-width: 992px) {





    .modMenuH__item-link {
        padding: 0;
    }

    .modMenuH__item-link:hover,
    .modMenuH__item-link:focus,
    .modMenuH__item-link:active,
    .modMenuH__item-link.active {

    }


    .modMenuH {
        position: relative;
        top: unset;
        left: unset;
        height: unset;
        width: unset;
        background-color: unset;
        z-index: 10;
        transform: unset;
        overflow: visible;
    }

    .modMenuH__list {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px 0;
        border-top:1px solid rgba(255, 255, 255, 0.08);
    }

    .modMenuH__item {
        display: block;
        position: relative;
        width: auto;
        padding-right: 70px;
    }

    .modMenuH__item::after {
      content: " ";
      position: absolute;
      right: 31px;
      top: calc(50% - 4px);
      height: 8px;
      width: 8px;
      border: 1px solid #c69076;
      box-sizing: border-box;
      transform: rotate(45deg);
    }

    .modMenuH__item:last-of-type {
      padding-right:0;
    }
    .modMenuH__item:last-of-type::after {
      display: none;
    }

    .modMenuH__item.deeper {
        position: relative;
    }

    .modMenuH__item.deeper .modMenuH__list {
        position: absolute;
        top: 100%;
        left: 0;
        transform: unset;
        opacity: 0;
        pointer-events: none;
    }

    .modMenuH__item.deeper:hover >.modMenuH__list {
        transform: unset;
        top: 100%;
        left: 0;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
    }


}


/*nav.menu-horizontal {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    opacity: 0.99;*/
/*    z-index: 1;*/
/*}*/

/*nav.menu-horizontal ul {*/
/*    list-style: none;*/
/*    position: relative;*/
/*    display: inline-table;*/
/*    padding: 0;*/
/*    width: 100%;*/
/*}*/

/*nav.menu-horizontal ul li {*/
/*    display: table-cell;*/
/*    -webkit-transition: all .2s ease-in-out;*/
/*    -moz-transition: all .2s ease-in-out;*/
/*    transition: all .2s ease-in-out;*/
/*}*/

/*nav.menu-horizontal ul li:hover {*/
/*    background: rgba(0, 0, 0, .15);*/
/*}*/

/*nav.menu-horizontal ul li:hover > ul {*/
/*    display: block;*/
/*    width: auto*/
/*}*/

/*nav.menu-horizontal ul li a {*/
/*    display: inline-block;*/
/*    padding: 10px 20px;*/
/*    color: #222;*/
/*    letter-spacing: 1px;*/
/*    text-decoration: none;*/
/*    width: 100%;*/
/*}*/

/*nav.menu-horizontal ul ul {*/
/*    display: none;*/
/*    position: absolute;*/
/*    top: 100%;*/
/*}*/

/*nav.menu-horizontal ul ul li {*/
/*    float: none;*/
/*    position: relative;*/
/*}*/

/*nav.menu-horizontal ul ul li a {*/
/*    padding: 10px 20px;*/
/*}*/

/*nav.menu-horizontal ul ul ul {*/
/*    position: absolute;*/
/*    left: 100%;*/
/*    top: 0;*/
/*}*/


/*@media (max-width: 768px) {*/
/*    .slMobileMenu {*/
/*        position: fixed !important;*/
/*        display: block !important;*/
/*        top: 0;*/
/*        left: 0;*/
/*        bottom: 0;*/
/*        background-color: #FFEB3B;*/
/*        z-index: 100;*/
/*        width: 80% !important;*/
/*        height: 100vh;*/
/*        transform: translateX(-100%);*/
/*        transition: all 0.3s;*/
/*    }*/

/*    .slMobileMenu.open {*/
/*        transform: translateX(0);*/
/*        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);*/
/*    }*/

/*    .slMobileMenu-hideBtn {*/
/*        width: 100%;*/
/*        text-align: center;*/
/*        display: block !important;*/
/*        background: red;*/
/*        padding: 10px 0;*/
/*        font-weight: bold;*/
/*        color: #fff;*/
/*    }*/

/*    .slMobileMenu li.menu-item{*/
/*        display: block;*/
/*        position: relative;*/
/*    }*/
/*}*/


/********* КОНЕЦ | МЕНЮ *********/
/* BANNER INTRO */
.introText {
  color:#fff;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.05em;
  margin:20px 0 70px;
}
.introOfer {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  max-width: 100%;
  width:350px;
  height: 60px;
  border:1px solid #FFA26D;
  background-color: #FFA26D;
  font-family: "Din Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:#000;
  margin:40px auto 90px;
  transition: all .3s ease-in-out;
}
.introOfer:hover {
  background-color: transparent;
  color:#fff;
}
.bannerInfo-img {
  display: block;
  width:96px;
  height:96px;
  border-radius: 50%;
  border:10px solid #444;
  object-position: center;
  object-fit: none;
  background-color: #FFA26D;
  margin:0 auto 20px;
}
.bannerInfo-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color:#fff;
  text-align: center;
}
.bannerInfo-topic {
  margin:70px 0 0;
  font-size: 26px;
  line-height: 31px;
  text-align: center;
  letter-spacing: 0.05em;
  font-family: "Bebas Neue", sans-serif;
  color:#fff;
}
/* Схема работы */
.schemeWrapper {
  padding: 90px 0 0;
}
.schemeIntroText {
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 0;
  margin-top:0;
}
.schemeItem {
  border-top: 1px solid #c4c4c4;
  padding-top:40px;
  padding-bottom: 40px;
}
.schemeItem:first-of-type {
  border-top:none;
}
.schemeImg {
  width:100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
.schemeItemText {
  font-weight: 700;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.045em;
}
.schemeItemText.schemeItemTextSmall {
  font-size: 17px;
  line-height: 21px;
}
.schemeItem-line {
  margin-top:15px;
}
.schemeItem-line.schemeItem-line_frst {
  margin-top:30px;
}
.schemeItem-line.schemeItem-line_lst {
  font-family: "Bebas Neue", sans-serif;
  margin-top:30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.045em;
  padding-left: 56px;
}
.schemeItem-number {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color:#000;
  display: flex;
  width:26px;
  height: 26px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  border:1px solid #FFA26D;
}
.schemeItem-desc {
  font-size: 16px;
  font-weight: 400;
}
.getConsultWrapper .introOfer {
  margin-bottom:0;
}
.getConsultWrapper .introOfer:hover {
  color:#000;
}
.getConsultWrapper.getConsultWrapperModalInside {
  padding: 66px;
}
.getConsultWrapperModalInside h2 {
  margin-bottom: 10px;
}
.getConsultWrapperModalInside p {
  margin:0;
  text-align: center;
  font-size: 18px;
  line-height: 21px;
}
/* About */
#about {
  padding-top:90px;
}
.aboutImg {
  width:100%;
  height: 100%;
}
.aboutTitle {
  text-align: left;
  margin-bottom: 36px;
}
.aboutText {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  margin:0;
}
.aboutText:first-of-type {
  margin-bottom: 30px;
}
.aboutText:last-of-type {
  margin-top: 80px;
  text-align: right;
}
/* Cases */
.casesWrapper {
  margin:47px 0 63px;
  background-color: #eee;
  position: relative;
  padding: 135px 0;
  overflow-x: hidden;
}
.casesWrapper::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    border-top: 70px solid #fff;
    border-right: 100vw solid transparent;
}
.casesWrapper::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom: 70px solid #fff;
    border-right: 100vw solid transparent;
}
.casesSlider {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}
.casesSlider .casesSlider-itemWrapper {
  padding: 0 15px;
}
.casesSlider .casesSlider-item {
  height:auto;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
.casesSlider-img {
  width:100%;
}
.casesSlider-title {
  width:100%;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.045em;
  padding: 30px 10px 30px 30px;
}
.casesSlider-text {
  width:100%;
  padding: 0px 30px 30px 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.045em;
  height: 240px;
  overflow-y: hidden;
  position: relative;
}
.casesSlider-text.opentext {
  height:433px;
}
.casesSlider-textMore {
  position: absolute;
  display: flex;
  align-items: center;
  color: #C69075;
  left:30px;
  right:30px;
  bottom:0px;
  height:50px;
  z-index: 20;
  background-color: #fff;
  background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(0,0,0,0) 0%, rgba(255,255,255,1) 40%);
}
.casesSlider-textMore span {
  cursor: pointer;
  padding-top: 10px;
  transition: all .3s ease-in-out;
}
.casesSlider-textMore span:hover {
  color:#FFA26D;
}
.casesSlider-number {
  width:100%;
  border-top:1px solid #f1f1f1;
  padding: 22px 30px;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.045em;
  margin-top:auto;
  display:none;
}
.casesSlider .prev, .reviewsSlider .prev {
  position: absolute;
  top: calc(50% - 20px);
  left: -70px;
  cursor: pointer;
  z-index: 20;
  transition: all .3s ease-in-out;
  border-radius: 50%;
}
.casesSlider .next, .reviewsSlider .next {
  position: absolute;
  top: calc(50% - 20px);
  right: -70px;
  cursor: pointer;
  z-index: 20;
  transition: all .3s ease-in-out;
  border-radius: 50%;
}
.casesSlider .prev:hover, .reviewsSlider .prev:hover {
  opacity: .75;
}
.casesSlider .next:hover, .reviewsSlider .next:hover {
  opacity: .75;
}
/* Reviews */
.reviewsSlider {
  width: calc(100% + 30px);
  margin-left: -15px;
  margin-right: -15px;
}
.reviesSlider-itemWrapper {
  padding: 0 15px;
}
.reviesSlider-item {
  border: 10px solid #E2E2E2;
  height:480px;
  cursor: pointer;
}
.reviesSlider-img {
  display: block;
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
}
/* getConsult */
.getConsultWrapper {
  margin:51px 0 60px;
  padding: 66px 190px;
  border: 10px solid rgba(35, 29, 29, 0.1);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
  position: relative;
  background-color: #fff;
}
.getconsultText {
  text-align: center;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 15px;
}
.getConsultWrapper .form-group {
  width:100%;
  padding-top: 20px;
  margin:0;
}
.getConsultWrapper .form-control {
  height:60px;
  background-color: #EEEEEE;
  border: 1px solid #E4E4E4;
  border-radius: 0;
}
.getConsultWrapper .form-group .form-control::placeholder {
  color:#2c2c2c;
}
.getConsult-btn {
  width:100%;
  height:60px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #FFA26D;
  border:1px solid #FFA26D;
  transition: all .3s ease-in-out;
  font-family: "Din Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:#000;
  margin-top: 20px;
}
.getConsult-btn:hover {
  background-color: transparent;
  color:#000;
}
.getConsultWrapper .slCallBack_form_PPBlock-stat {
  display: none;
}
.slCallBack_form_PPBlock-label {
  width:100%;
  margin-top:43px;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.045em;
}
.slCallBack_form_PPBlock-link {
  color:#FFA26D;
}
.slCallBack_form_PPBlock-link:hover {
  color:#FFA26D;
  text-decoration: underline;
}
/* getFooter */
.getFooterText {
  width:126%;
  margin-left:-13%;
}
.getFooterWrapper .getConsultWrapper {
  margin-top:30px;
}
/* Footer */
.footerContent {
  width:100%;
  position:relative;
  padding: 370px 0 75px;
  background-color: #2C2C2C;
  overflow-x: hidden;
  margin-top: -340px;
  z-index: 5;
}
.footerContent::before {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    border-top: 70px solid #fff;
    border-right: 100vw solid transparent;
}
.footerTitle {
  color:#fff;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.045em;
  margin-bottom: 8px;
  margin-top:26px;
}
.footerTitle:first-of-type {
  margin-top:0;
}
.footerText {
  color:#fff;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 16px;
  letter-spacing: 0.045em;
}
.footerText a {
  color:#fff;
  transition: all .3s ease-in-out;
}
.footerText a:hover {
  color:#FFA26D;
}
.footerOffer {
  width:255px;
  height:60px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #FFA26D;
  border:1px solid #FFA26D;
  transition: all .3s ease-in-out;
  font-family: "Din Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:#000;
  margin-top: 27px;
}
.footerOffer:hover {
  background-color: transparent;
  color:#fff;
}
.modCopyright-wrapper .modCopyright, .modCopyright-wrapper .modCopyright a {
  color:#2c2c2c;
  font-size: 14px;
  line-height: 16px;
}
.modCopyright-wrapper {
  padding: 35px 0;
}
.modCopyright-link--block {
  display: inline-block;
  margin-left: 26px;
}
.copyrightsYr {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}
.CopyConstactsFooter {
  text-align: right;
  font-size: 14px;
  line-height: 16px;
}
.CopyConstactsFooter a {
  font-size: 30px;
  line-height: 30px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color:#000;
  transition: all .3s ease-in-out;
}
.CopyConstactsFooter a:hover {
  color: #FFA26D;
}
/* ТАРИФЫ */
#prices {
  margin-top:70px;
}
.pricesItem {
  width:100%;
    height: 370px;
  background: #fff;
  margin-bottom: 60px;
    border: 10px solid rgba(35, 29, 29, 0.1);
    box-shadow: 0px 10px 30px rgb(0 0 0 / 20%);
}
.pricesItem-title {
  width:100%;
  height:110px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  /*background-color: #C69076;*/
  color:#000;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: center;
}
.pricesItem-text {
  padding: 30px 30px 50px 30px;
  position: relative;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.045em;
  color:#2c2c2c;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  height:calc(100% - 110px);
}
.pricesItem-text .pricesItem-note {
  width:100%;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  letter-spacing: 0.045em;
    height: 60px;
}
.pricesItem-text .pricesItem-note span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.pricesItem-text ul {
  list-style: none;
  padding-left: 0;
}
.pricesItem-text ul li {
  position: relative;
  padding-left: 30px;
    margin-top: 15px;
}
.pricesItem-text ul li:before {
  content: " ";
  position: absolute;
  left:0;
  top:0;
  width:14px;
  height:14px;
  background-image: url(/images/ularr.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.pricesItem._last {
    min-width: 540px;
    height: 285px;
}
.pricesOffer {
  width:195px;
  height:60px;
  border:1px solid #FFA26D;
  background-color: #FFA26D;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all .3s ease-in-out;
  font-family: "Din Pro", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:#000;
  position: absolute;
  bottom:-30px;
  left:calc(50% - 97px);
}
.pricesOffer:hover {
  background-color: #fff;
  color:#000;
}
.pricesItem.pricesItem-long {
    height: 486px;
}
.pricesItem-text p {
  margin:0;
  font-weight: 700;
}
/********* Стили модалок *********/
.modal .modal-content {
  margin-top:150px;
  border-radius: 0;
  background-color: #FAF6F0;
  border:none;
}
@media (min-width: 576px) {
  .modal .modal-dialog {
      max-width: 450px;
  }
}
.modal .modal-body {
  padding:0 40px 40px;
}
.modal .modal-body .form-control {
  height:70px;
  font-size: 20px;
  color: #2c2c2c;
  border: 1px solid #E0E0E0;
  padding: 20px;
}
.modal .modal-body .form-control:focus {
  box-shadow: none;
}
.modal .modal-body .form-control::placeholder {
  font-size: 20px;
  color: #2c2c2c;
}
.modal .modal-body .btn {
  width:100%;
  height:60px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color:#fff;
  background-color: #c69076;
  border:none;
  border-radius: 0;
  transition: all .3s ease-in-out;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.modal .modal-body .btn:hover,
.modal .modal-body .btn:active,
.modal .modal-body .btn:focus {
  opacity: .8;
  background-color: #ffa26d;
  border:none;
  box-shadow: none;
}
.modal .modal-title {
  font-weight: 700;
  font-size: 40px;
  margin-top:10px;
  line-height: 48px;
}
.modal .modal-header {
  padding:20px 40px;
  border-bottom: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal .modal-header .close {
  margin:-1rem -2rem -1rem auto;
  font-size: 34px;
  transition: all .3s ease-in-out;
}
.modal .modal-header .close:hover {
  color:#ffa26d;
  opacity: 1;
}
.modal .slCallBack_form_PPBlock {
  text-align: left;
}
.modal .slCallBack_form_PPBlock-label {
  font-size: 16px;
  line-height: 20px;
  color: #2c2c2c;
  letter-spacing: normal;
  align-items: flex-start;
  align-content: flex-start;
  padding-left: 47px;
  padding-right: 47px;
  position: relative;
  text-align: center;
}
.modal .slCallBack_form_PPBlock-stat {
  display: none;
}
.modal .slCallBack_form_PPBlock-label .customcheck {
      display: flex;
      justify-content: center;
      align-items: center;
      align-content: center;
      width: 30px;
      height: 30px;
      background-color: #fff;
      border: 1px solid #E0E0E0;
      position: absolute;
      left: 0;
      top: 0;
      cursor: pointer;
      transition: all 0.3s;
}
.customcheck i {
  display: none;
}
.modal .slCallBack_form_PPBlock-stat:checked + .customcheck i {
    display: block;
}
/* Страница конфеденциальности */
.item-page h2 {
  margin-top:40px;
}
/* Фиксированное меню */
.fixed-on {
  background-color: #fff;
  /* position: fixed;
  top:0;
  left:0; */
  width:100%;
  height:auto;
  max-height: 0;
  overflow: hidden;
  box-shadow: 0px 0px 4px 0px rgba(34, 60, 80, 0.2);
  color:#2c2c2c;
  padding: 0;
  z-index: 1000;
  /* transform: translateY(-81px); */
  transition: all .3s ease-in-out;
}
.headerCenterMenu > div {
  height:100%;
}
.fixed-on .modMenuH__item-link {
  color:#2c2c2c;
  font-size: 20px;
  transition: all .3s ease-in-out;
}
.fixed-on .modMenuH__item-link:hover {
  color:#ffa26d;
}
.fixed-on .modMenuH__item {
  padding: 0 20px;
}
.fixed-on .topLogoText {
  display: none;
}
.fixed-on .phoneHeader {
  color:#2c2c2c;
  font-size: 26px;
  line-height: 26px;
}
.fixed-on .phoneHeader:hover {
  color:#ffa26d;
}
.fixed-on .modMenuH__item::after {
  right:-3px;
}
.fixed-on .logoBlock .logoBlock-img {
    width: auto;
    height: 70px;
}
.fixed-on .logoBlock {
  padding-right: 0;
}
/* Пять шагов */
.stepsWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  margin:20px 0 70px;
}
.stepsItem {
  width:19%;
  height:150px;
  position:relative;
  border: 1px solid #FFA26D;
  padding: 20px 15px;
}
.stepsItem-number {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0.05em;
  color: #C69075;
}
.stepsItem-text {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.045em;
  color: #2C2C2C;
  margin-top: 12px;
}
.stepsItem.stepsItemLast {
  background-color: #C69075;
  color:#fff;
  border: 1px solid #C69075;
}
.stepsItem.stepsItemLast .stepsItem-number,
.stepsItem.stepsItemLast .stepsItem-text {
  color:#fff;
}
.stepsItem.stepsItemBottom {
  margin-top:75px;
}
.stepsItem img {
  position: absolute;
  right:-50px;
  top:-1px;
}
.stepsItem.stepsItemBottom img {
  top:auto;
  bottom:-1px;
}




.full_width.sertificat {
    font-family: "Bebas Neue", sans-serif;
    padding-top: 80px;
}

.full_width.sertificat h2 {
    margin-bottom: 40px;
}

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

.modSert_item-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.modSert_item._msi-2 .modSert_item-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.modSert_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    margin-top: 30px;
}

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

@media (max-width: 991px) {

    .modSert_img {
        width: 100%;
    }

}

@media (max-width: 767px) {

    .modSert_img {
        max-width: 315px;
        margin-bottom: 25px;
    }

    .modSert_item._msi-1 .modSert_item-text {
        margin-bottom: 40px;
    }

    .modSert_item._msi-1 .modSert_item-title {
        margin-top: 35px;
    }

}

.modWorkSteps_view {
    counter-reset: work-steps;
}

.modWorkSteps_item-counter {
    margin-bottom: 13px;
}

.modWorkSteps_item-counter:before {
    counter-increment: work-steps;
    content: counter(work-steps, decimal-leading-zero) " ";
    font-size: 30px;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 13px;
}

.modWorkSteps_view {
    counter-reset: work-steps;
    font-family: "Bebas Neue", sans-serif;
}

.modWorkSteps_item-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #000;
}

.modWorkSteps_item {
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #D7D7D7;
    height: calc(100% - 30px);
}

.full_width.about {
    background-image: url(/images/about-bg.png);
}

.full_width.about {
    background-image: url(/images/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    padding: 125px 0;
}

.full_width.risks {
    padding-top: 35px;
}

.full_width.prices {
    background-image: url(/images/offers-bg.png);
    background-position: center;
    padding: 62px 0;
    background-repeat: no-repeat;
}

.pricesItem-text ul li:first-of-type {
    margin-top: 0;
}

.tariff_view .pricesItem-title {
    background-color: #C69076;
    color: #fff;
}

.tariff_view .pricesItem {
    height: 485px;
    background: #EEEEEE;
    border: 1px solid #F1F1F1;
    box-shadow: none;
}

.tariff_view .pricesItem.pricesItem-long {
    height: 804px;
}

.tariff_view .pricesItem.pricesItem-long .pricesItem-text {
    height: calc(100% - 109px);
}

.tariff_view .pricesItem-text .pricesItem-note {
    height: auto !important;
}

.full_width.tariffs {
    padding-top: 30px;
}

._msi2 {
    max-height: 483px;
    box-shadow: 0px 3px 5px 0px #b1b1b1;
    border-radius: 0px;
}