body {
    max-width: 1920px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}


h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

.burgerMenu__btn {
    display: none;
    z-index: 1002;
    -webkit-transition: 0.1s -webkit-transform linear;
    transition: 0.1s -webkit-transform linear;
    transition: 0.1s transform linear;
    transition: 0.1s transform linear, 0.1s -webkit-transform linear;
    position: fixed;
    background: 0;
    float: right;
    margin: 2rem;
    height: 2.7rem;
    width: 3.5rem;
    outline: 0;
    padding: 0;
    border: 0;
}

@media (max-width: 1200px) {
    .burgerMenu__btn {
        display: block;
    }
}

.burgerMenu__bar,
.burgerMenu__bar::before,
.burgerMenu__bar::after {
    -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s -webkit-transform linear;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear;
    transition: 0.2s background linear 0.1s, 0.2s top linear 0.2s, 0.2s transform linear, 0.2s -webkit-transform linear;
    position: absolute;
    background: #000;
    margin: auto;
    width: 100%;
    height: 0.3rem;
    content: '';
    top: 50%;
    right: 0;
}

.burgerMenu__bar {
    margin-top: -0.2rem;
}

.burgerMenu__bar::before {
    top: -1.2rem;
}

.burgerMenu__bar::after {
    top: 1.2rem;
}

.burgerMenu__bar::before,
.burgerMenu__bar::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.burgerMenu__btn.active .burgerMenu__bar {
    background: 0;
}

.burgerMenu__btn.active .burgerMenu__bar::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #f0b353;
}

.burgerMenu__btn.active .burgerMenu__bar::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #f0b353;
}

.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu__btn.active .burgerMenu__bar::after {
    top: 0;
}

.burgerMenu__btn.active .burgerMenu__bar,
.burgerMenu__btn.active .burgerMenu__bar::before,
.burgerMenu.active .burgerMenu__bar::after {
    -webkit-transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s -webkit-transform linear 0.2s;
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s;
    transition: 0.2s background linear 0.1s, 0.2s top linear, 0.2s transform linear 0.2s, 0.2s -webkit-transform linear 0.2s;
}

.burgerMenu__nav {
    z-index: 1001;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition: -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    transition: transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91), -webkit-transform 0.6s cubic-bezier(0.56, 0.1, 0.34, 0.91);
    padding-top: 6.2rem;
}

.menu-open .burgerMenu__nav {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.burgerMenu__list {
    margin: 0;
    list-style: none;
    padding: 0;
}

.burgerMenu__item {
    font-size: 2.6rem;
    text-transform: uppercase;
}

.burgerMenu__link {
    display: block;
    padding: 20px 8px;
    color: #fff;
}

.burgerMenu__link:hover,
.burgerMenu__link:focus,
.burgerMenu__link:active {
    background-color: #f0b353;
    text-decoration: none;
    color: #fff;
}

.modalMain {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    display: none;
}

.modalMain__bg {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1002;
}

.modalMain__inner {
    position: absolute;
    width: 450px;
    padding: 24px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-image: url(/img/form_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1005;
}

.modalMain__title {
    font-size: 1.6em;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.modalMain__row {
    margin: 8px 0;
}

.modalMain__input {
    width: 100%;
    border: 1px solid #dddddd;
    padding: 4px 8px;
}

.modalMain__button {
    text-align: center;
}

@media (max-width: 768px) {
    .modalMain__inner {
        width: 98%;
    }
}

.modalYesright {
    color: #fff;
}

.modalYesright a {
    color: #fff;
}

.modalMain__btn {
    background-color: #f0b353;
    border-radius: 25px;
    padding: 14px 35px;
    white-space: nowrap;
    text-transform: uppercase;
    outline-style: none;
    font-weight: 600;
    color: #fff;
}

.modalMain__btn:hover {
    background-color: #f0b353;
    color: #fff;
}

.stick-menu {
    display: none;
    text-align: center;
}

.is-sticky .stick-menu {
    width: 100%;
    z-index: 1000;
    display: block;
    position: fixed;
    background-color: #fff;
    padding: 12px 0;
}

.stickMenu__list {
    display: flex;
    justify-content: space-around;
}

.toTop {
    width: 50px;
    height: 50px;
    font-size: 24px !important;
    line-height: 45px !important;
    color: #fff;
    background: #f0b353;
    border: 1px solid #f0b353;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: fixed;
    right: 66px;
    bottom: 80px;
    display: none;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    z-index: 20;
}

.toTop:hover {
    border: 1px solid #f0b353;
    color: #f0b353;
    background: #fff;
    text-decoration: none;
}

.toTop:focus {
    border: 1px solid #f0b353;
    color: #fff;
    background: #f0b353;
    text-decoration: none;
}

.line-top {
    display: none;
    z-index: 1001;
    /*position: fixed;*/
    width: 100%;
    left: 0;
    top: 0;
}

@media (max-width: 992px) {
    .line-top {
        display: block;
    }
}

.line-top__inner {
    padding: 8px 8px;
    background-color: #fcfcfc;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-top__logo {
    height: 32px;
}

.line-top__phone {
    text-align: left;
}

.line-top__phone-link {
    color: #000;
    text-decoration: none;
}

.line-top__logo-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.line-top__icon {
    text-decoration: none;
    color: #000;
    font-size: 1.8em;
}

.shapka__logo-img {
    width: 100px;
}

.mobile-menu {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #fcfcfc;
    z-index: 1001;
}

.mobile-menu__inner {
    padding: 16px;
}

.mobile-menu__line-top {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu__logo {
    height: 48px;
}

.mobile-menu__logo-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

.mobile-menu__closed {
    color: #000;
    text-decoration: none;
    font-size: 1.8em;
}

.mobile-menu__menu {
    margin: 16px 0;
}

.mobile-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__item {
    padding: 8px 0;
}

.mobile-menu__link {
    text-transform: uppercase;
    font-size: 0.875em;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu__phone {
    margin: 16px 0;
    color: #000;
}

.mobile-menu__phone-text {
    text-transform: uppercase;
    color: #000;
    font-weight: 600;
    text-align: center;
    padding: 8px 0;
    font-size: 0.875em;
}

.mobile-menu__phone-list {
    list-style: none;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.mobile-menu__phone-item {
    padding: 8px 0;
}

.mobile-menu__phone-link {
    text-transform: uppercase;
    font-size: 0.875em;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.category-mobile {
    margin: 8px 0;
}

.category-mobile select {
    width: 100%;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 8px 16px;
}

.sticky {
    position: fixed;
}

.line-top__callback {
    background-color: #000;
    color: #ffffff;
    border: none;
    margin-top: 4px;
    text-transform: lowercase;
    padding: 4px 8px;
}

.modal-exit {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1001;
    top: 0;
    left: 0;
}

.modal-exit__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-exit__inner {
    font-size: 1.2em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 350px;
    background-color: #ffffff;
    box-shadow: 0 0 8px #666666;
    padding: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    .modal-exit__inner {
        width: 98%;
    }
}

.modal-exit__header {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 8px;
}

.shapka__top {
    padding: 12px 0;
    background-color: #f0b353;
    color: #fff;
}

.shapka-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shapka-top__item a {
    color: #fff;
}

.shapka-top__item a:hover {
    color: #95ffe0;
}

.shapka-top__item .fas,
.shapka-top__item .far {
    opacity: 0.5;
    margin-right: 6px;
}

.shapka-btn a {
    color: #fff;
    background-color: #f0b353;
    border: 2px solid #f0b353;
    border-radius: 35px;
    padding: 11px 35px;
}

.shapka-btn a:hover {
    cursor: pointer;
    background-color: #f1a529;
}

.shapka {
    padding: 8px 0;
    background-color: #fff;
    z-index: 9999;
}

.shapka__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__img {
    width: 80px;
}

.logo-shapka img {
    /* filter: invert(1); */
}

.shapka__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.shapka__menu-item {
    margin: 0 8px;
}

.shapka__menu-item a {
    color: #333333;
    text-transform: uppercase;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
}

.shapka__menu-item a:hover {
    color: #f0b353;
}

.slider {
    background-image: url(/img/slide2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 240px 0;
}

.slider__inner {
    text-shadow: 0 0 8px #000000;
}

.slider__title {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.slider__subtitle {
    font-size: 28px;
    color: #fff;
}

.formMain__input {
    width: 100%;
    max-width: 100%;
    padding: 4px 8px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    color: #000;
    font-weight: 500;
}

.formMain__row {
    margin: 8px 0;
}

.formMain__input::-webkit-input-placeholder {
    color: #000;
    font-weight: 500;
}

.formMain__input::-moz-placeholder {
    color: #000;
    font-weight: 500;
}

.formMain__input:-moz-placeholder {
    color: #000;
    font-weight: 500;
}

.formMain__input:-ms-input-placeholder {
    color: #000;
    font-weight: 500;
}

.form-btn {
    color: #fff;
    background-color: #f0b353;
    border: 2px solid #f0b353;
    border-radius: 35px;
    padding: 11px 35px;
    width: 100%;
}

.form-btn:hover {
    background-color: #f0b353;
    border: 2px solid #f0b353;
}

.help-text {
    color: red;
    font-weight: 500;
}

.gen__title {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    line-height: 1.375;
    color: #f0b353;
    font-weight: 400;
    position: relative;
    text-align: center;
    padding-bottom: 40px;
    text-transform: uppercase;
}

.gen__title:after {
    content: " ";
    background-color: #f0b353;
    width: 100px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 24px;
}

.white-block {
    padding: 54px 0;
}

.klient-slider {
    padding: 32px 0;
}

.klient__title {
    text-align: center;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.formMain__title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 8px;
    text-shadow: 0 0 2px #000;
}

.footer__bot {
    background-color: #f0b353;
    padding: 12px 0;
}

.about {
    padding: 54px 0;
    background: linear-gradient(to right, #c0821e 20%, #f0b353);
}

.about__title {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 34px;
    line-height: 1.375;
}

.about__subtitle {
    color: #fff;
    font-size: 18px;
    margin-top: 12px;
}

.right-btn {
    color: #fff;
    background-color: inherit;
    border: 2px solid #fff;
    border-radius: 35px;
    padding: 14px 35px;
    width: 100%;
    text-transform: uppercase;
}

.right-btn:hover {
    background-color: #f0b353;
    border: 2px solid #f0b353;
    cursor: pointer;
    color: #fff;
}

.about__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plusi {
    padding: 54px 0;
}

.plusi-icon {
    position: relative;
    top: -50px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: -50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
    font-size: 30px;
    color: #fff;
    background: linear-gradient(-45deg, #f0b353, #c0821e);
}

.plusi__img {
    width: 50%;
}

.plusi__img:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: linear-gradient(-45deg, #030a6e, #f0b353);
    opacity: 0;
    border-radius: 100%;
    transition: 750ms ease-in-out;
}

.plusi__item {
    padding: 0 16px 45px;
    min-height: 250px;
    margin-top: 50px;
    background-color: #f2f3f9;
    border-radius: 8px;
    transition: 750ms ease-in-out;
    text-align: center;
    margin-bottom: 32px;
}

.plusi__title {
    margin-top: 30px;
    color: #f0b353;
    font-size: 19px;
    line-height: 1.5;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.plusi__text {
    margin-top: 22px;
    color: #838386;
    font-size: 16px;
    line-height: 1.55556;
}

.plusi__inner {
    padding: 32px 0;
}

.is-sticky .logo__img {
    width: 78px;
}

.logo__footer {
    width: 120px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__title {
    font-weight: 700;
    font-size: 1.6em;
    color: #ffffff;
}

.footer__link {
    margin-bottom: 12px;
}

.footer__link a {
    color: #fff;
    font-size: 18px;
}

.footer__link .fas,
.footer__link .far {
    margin-right: 8px;
}

.onas {
    background-color: #f2f3f9;
    padding: 80px 0;
}

.onas__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onas__img {
    width: 49%;
    margin-right: 32px;
}

.onas__text {
    font-size: 12px;
}

.onas__text p {
    margin-bottom: 4px;
}

.onas__pod {
    text-align: right;
    font-weight: 600;
    margin-top: 12px;
    font-size: 15px;
}

.rec-table {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 12px;
}

.rec-table tr td {
    padding: 6px 8px;
    border: 1px solid #999;
}

@media (max-width: 992px) {

    .shapka__top,
    .shapka,
    .sticky-wrapper {
        display: none;
    }

    .onas__inner {
        display: block;
    }

    .onas__img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 32px;
    }

    .onas__text {
        font-size: 14px;
    }

}

.about-right {
    width: 280px;
}

.about-left {
    width: 70%;
}

@media (max-width: 768px) {

    .about__inner,
    .right-btn {
        display: block;
        text-align: center;
    }

    .about-left {
        width: 100%;
        margin-bottom: 32px;
    }

    .about-right {
        width: 100%;
    }

    .footer__inner {
        display: block;
        text-align: center;
    }
}