body {
    max-width: 1920px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3 {}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

.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: #fc6701;
    padding: 8px;
    white-space: nowrap;
    border-radius: 5px;
    text-transform: uppercase;
    outline-style: none;
    font-weight: 600;
    color: #fff;
}

.modalMain__btn:hover {
    background-color: #be4f03;
    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;
}

.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__item a {
    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-menu {
    z-index: 9999;
    background-color: #fff;
}

.logo__img {
    width: 150px;
}

.shapka__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.shapka__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.shapka__adress-img {
    width: 17px;
    margin-right: 12px;
}

.kol-vo-tov {
    position: absolute;
    right: 0;
    top: -12px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.29);
    background-color: #ffffff;
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    color: #000000;
    padding: 4px;
    min-width: 19px;
    border-radius: 50%;
}

.shapka-cart__img {
    position: relative;
    margin-right: 12px;
}

.shapka-cart__img .shapka__adress-img {
    width: 22px;
}

.shapka__adress {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-left: 32px;
}

.logo__text {
    font-size: 0.8em;
    font-weight: 600;
    padding: 12px 0;
}

.shapka-menu {
    border-top: solid 1px #ececec;
    border-bottom: solid 1px #ececec;
    padding: 12px 0;
}

.topMenu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.topMenu__item {
    margin-left: 32px;
}

.topMenu__item a {
    font-size: 14px;
    color: #000000;
}

.topMenu__item a:hover {
    color: #000000;
}

@media (max-width: 992px) {
    .topMenu {
        display: none;
    }
}

.shapkaInfoPhone a {
    font-size: 12px;
    color: #000000;
    line-height: 11px;
}

.shapka-adress__sub {
    line-height: 10px;
}

.shapka-adress__sub a {
    font-size: 11px;
    font-weight: 300;
    color: #000000;
}

.shapka-adress__sub a:hover {
    cursor: pointer;
}

.rejim__item {
    display: inline-block;
    font-size: 0.8em;
    padding-bottom: 12px;
    margin-right: 8px;
}

.shapkaInfo__number {
    font-weight: 600;
    font-size: 0.9em;
}

.obZvonok__btn {
    padding: 12px 32px;
    border: 3px solid #e51632;
    color: #e51632;
}

.obZvonok {
    margin: 48px 0;
}

.shapkaKurs {
    text-transform: uppercase;
    font-size: 0.8em;
}

.popular {
    text-align: center;
    padding-bottom: 32px;
}

.popular__col {
    display: inline-block;
    margin-right: -4px;
    float: none;
    vertical-align: top;
    width: 20%;
    border: 1px solid #ececec;
}

.popular__item {
    text-align: center;
    padding:
}

.popular__col:hover {
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.24);
    border: solid 1px #ececec;
    background-color: #ffffff;
}

.popular__title {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

.popular__item img {
    width: 90%;
    padding-top: 12px;
}

.footer {
    background-color: #051c57;
    padding: 16px 0;
}

.footerMenu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footerMenu__item {
    margin-right: 16px;
}

.footerMenu__item a {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.footerLine__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
}

.footerLine__inner a {
    font-size: 10px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
}

.footerLine {
    background-color: #fff;
    padding: 16px 0;
}

.content {
    padding: 32px 0;
}

.plusi {
    padding: 32px 0;
    background-color: #fff;
}

.plusi__inner {
    text-align: center;
}

.plusi__item {
    display: inline-block;
    margin-right: -4px;
    text-align: center;
    float: none;
    width: 33.33333%;
    padding: 16px 0;
}

.plusi__title {
    font-weight: 600;
    font-size: 1.2em;
    color: #000;
    margin-top: 16px;
}

.gen__title {
    font-weight: 600;
    font-size: 2em;
    text-align: center;
    margin-bottom: 32px;
}

.gen-text {
    padding: 32px 0;
}

.forma {
    background-color: #051c57;
}

.form__inner {

    padding: 32px 30px;
    color: #fff;
}

.form__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forma__right {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.formMain__row {
    margin-left: 16px;
    width: 100%;
}

.form__input {
    width: 100%;
    padding: 9px 16px;
    background-color: inherit;
    color: #fff;
    border: 1px solid #fff;
    outline-style: none;
    font-size: 10px;
    font-weight: 500;
}

.form__input::-webkit-input-placeholder {
    color: #fff;
}

.form__input::-moz-placeholder {
    color: #fff;
}

.form__input:-moz-placeholder {
    color: #fff;
}

.form__input:-ms-input-placeholder {
    color: #fff;
}

.forma-btn {
    font-size: 10px;
    font-weight: 500;
    color: #ffffff;
    background-color: #e51533;
    padding: 9px 32px;
    border: 1px solid #e51533;
    text-transform: uppercase;
}

.forma-btn:hover {
    background-color: inherit;
    color: #e51533;
}

.forma__title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.forma__subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.forma__right {
    min-width: 65%;
}

.line-top__soc .fa-whatsapp-square {
    font-size: 2em;
    color: #25d366;
}

.topMenu__item .fa-whatsapp {
    font-size: 1.6em;
    color: #25d366;
}

.gen__img {
    float: right;
    width: 400px;
    margin: 0 0 12px 12px;
}

@media (max-width: 992px) {
    .shapka {
        display: none;
    }

    .footerMenu {
        display: block;
        text-align: center;
    }

    .footerMenu__item {
        margin-bottom: 8px;
    }

    .popular__col {
        width: 25%;
    }
    .form__inner {
        display: block;
        justify-content: center;
        text-align: center;
    }
    .form__inner {
        padding: 32px 16px;
    }
    .forma-left {
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .popular__col {
        width: 50%;
    }

    .plusi__item {
        width: 100%;
    }
    .gen__img {
        width: 100%;
        float: none;
        margin: 0;
    }
    .forma__right {
        display: block;
    }
    .formMain__row {
        margin-bottom: 12px;
        margin-left: 0;
    }
}

.leftMenu__list {
    border: solid 1px #ececec;
    margin-bottom: 32px;
}

.leftMenu__active {
    background-color: #051c57;
    color: #fff;
}

.leftMenu__title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.43;
    color: #ffffff;
    padding: 8px 32px;
    background-color: #00237d;
}

.leftMenu__item a,
.leftMenu__sum {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.43;
    color: #000000;
    padding: 6px 32px;
    display: block;
    background-color: #fff;
    width: 100%;
}

.leftMenu__sum {
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline-style: none;
}

.leftMenu__sum:hover {
    cursor: pointer;
}

.leftMenu__sum:before {
    content: none;
}

.leftMenu__item a:hover {
    background-color: #00237d;
    color: #fff;
}

.leftMenu__item a.active {
    background-color: #00237d;
    color: #ffffff !important;
}

.photoGallery {
    padding: 0;
    margin: 0;
    list-style: none;
}

.photoGallery img {
    width: 100%;
}

@media (max-width: 992px) {
    .sticky-wrapper {
        height: 0!important;
    }
    .shapka-menu,
    .leftMenu__title,
    .leftmenu {
        display: none;
    }
}