* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 18px;
}

body {
    line-height: 1.4;
    color: #000;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

button, input, textarea {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;
    z-index: 7;
    display: block;

    width: 33px;
    height: 69px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}


.slick-prev {
    left: -50px;
    background: url(arl.html) no-repeat center/cover;
}


.slick-next {
    background: url(arr.html) no-repeat center/cover;
    right: -50px;
}


/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}

.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 60px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    color: #d3d7da;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: #137fb2;
}

.btn {
    display: inline-block;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    border-radius: 28px;
    letter-spacing: 1.05px;
    background-color: #1082b2;
    font-size: 24px;
    padding: 10px 44px 10px 44px;
    transition: all .3s ease-out;
    border: 1px solid transparent;
}

.btn:hover {
    background-color: #4a6674;
}

.form__wrap {
    max-width: 350px;
    padding: 20px;
    border-radius: 40px;
    border: 1px solid #000;
}

.white {
    display: block;
    text-align: center;
    font-size: 18px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    height: 58px;
    border-radius: 26px;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    color: #000;
    background-color: transparent;
    margin-bottom: 10px;
    border: 1px solid #000;
}

textarea {
    resize: none;
    width: 100%;
    height: 88px;
    border-radius: 26px;
    background-color: transparent;
    padding: 10px;
    font-size: 18px;
    color: #000;
    text-align: center;
    border: 1px solid #000;
}

.button-m {
    width: 100%;
}

.form__btn {
    text-align: center;
    margin-top: 30px;
}

.container {
    margin: 0 auto;
    max-width: 970px;
    padding: 0 15px;
}

.d-bold {
    display: block;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 5px;
}

.bold {
    font-weight: 700;
    font-size: 20px;
}

.menu {
    position: relative;
    max-width: 100%;
    top: 35px;
    right: 0;
    left: 0;
    border-radius: unset;
    background: unset;
    background-color: #1082b2;
    z-index: 99;
    padding: 15px 0;
}

.header__menu {
    position: absolute;
    visibility: hidden;
    top: 70px;
    left: 1000px;
    opacity: 0;
    transition: .3s ease;
}

.is-open {
    visibility: visible;
    opacity: 1;
    left: 0;
    right: 0;
}

.burger {
    opacity: 1;
    visibility: visible;
    height: 60px;
    width: 60px;
    position: relative;
    z-index: 99;
    margin-left: auto;
    border-radius: 50%;
    border: 1px solid #000;
}

.burger:hover {
    cursor: pointer;
}

.burger__icon {
    height: 2px;
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: all ease 0.3s;
}

.burger__icon:before, .burger__icon:after {
    content: "";
    position: absolute;
    height: inherit;
    border-radius: inherit;
    background-color: inherit;
    margin: auto;
    width: 50%;
    transition: all ease 0.3s;
}

.burger__icon:before {
    top: -10px;
    left: 0;
    transform-origin: left;
}

.burger__icon:after {
    bottom: -10px;
    right: 0;
    transform-origin: right;
}

.open {
    transform: translate(-50%, -50%) rotate(135deg);
}

.open:before {
    top: 0;
    transform: translateX(100%) rotate(-90deg);
}

.open:after {
    bottom: 0;
    transform: translateX(-100%) rotate(-90deg);
}

.menu__item {
    width: 100%;
    border-top: 1px solid #000;
    padding-right: 15px;
    text-transform: uppercase;
}

.menu__item:last-child {
    border-bottom: 1px solid #000;
}

.menu__link {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: block;
    line-height: 2;
    text-align: right;
}

.menu__link:hover {
    text-decoration: underline;
}

.header {
    background: url('header-bg.png') no-repeat top;
}

.header__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
}

.header__left {
    max-width: 50%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 20px;
}

.header__text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: right;
}

.header__descr {
    margin-right: 20px;
}

.header__title {
    font-size: 28px;
    margin-bottom: 10px;
}

.header__subtitle {
    font-weight: 700;
}

.promo {
    padding: 20px 0;
    background-image: -moz-linear-gradient(90deg, rgb(23, 127, 178) 0%, rgb(37, 52, 63) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(23, 127, 178) 0%, rgb(37, 52, 63) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(23, 127, 178) 0%, rgb(37, 52, 63) 100%);
}

.promo__row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.promo__row:last-child {
    margin-bottom: 0;
}

.promo__text {
    padding: 15px;
    max-width: 500px;
    width: 100%;
    margin-top: 25px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 0 20px 20px 0;
    border-left: unset;
    color: #fff;
}

.mb-10 {
    margin-bottom: 10px;
}

.reverse .promo__text {
    border-right: unset;
    border-left: 2px solid #fff;
    border-radius: 20px 0 0 20px;
}

.promo__text h2 {
    padding-bottom: 10px;
}

.promo__img img {
    margin: 0;
}

.prices {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    text-align: center;
}

.works {
    padding: 20px 0;
}

.works__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.works__col {
    max-width: 49%;
    width: 100%;
}

.works__link {
    margin: 20px 0;
    text-align: center;
}

.works__text {
    margin: 20px 0;
}

.works__text h2 {
    margin-bottom: 10px;
}

.works__text ul li {
    padding-bottom: 10px;
}

.works__text ul li:last-child {
    padding-bottom: 0;
}

.new-price, .old-price {
    font-weight: 700;
}

.new-price {
    font-size: 24px;
    padding: 0 5px;
    color: #b2001c;
}

.old-price {
    font-size: 18px;
    color: #333;
    text-decoration: line-through;
    margin-left: 24px;
}

.reviews {
    padding: 20px 0;
}

.reviews__head {
    background-color: #d3d7da;
    color: #000;
}

.reviews__title {
    font-weight: 400;
    margin-bottom: 20px;
    padding: 10px 0;
}

.reviews__wrapper {
    padding-top: 20px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.reviews__col {
    flex: 0 1 48%;
    text-align: center;
}

.block {
    box-shadow: 0 0 3px rgb(0 0 0 / 20%);
    margin-bottom: 20px;
    padding: 15px;
    text-align: right;
    overflow: auto;
}

.feedback {
    font-size: 20px;
}

.block__img {
    margin-bottom: 5px;
}

.block__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.block__text {
    padding-left: 10px;
}

.block__footer {
    box-shadow: 0 0 8px rgb(0 0 0 / 25%);
    background-color: #222e3a;
    padding: 10px;
    margin-bottom: 20px;
}

.block__footer img {
    margin: 0;
}

.footer {
    background-color: #d4d4d4;
}

@media only screen and (max-width: 950px) {
    html {
        font-size: 16px;
    }

    .bold {
        font-size: 16px;
    }
}

@media only screen and (max-width: 760px) {
    .header__wrapper {
        background: unset;
    }

    .header__content {
        padding-top: 0;
        padding-bottom: 0;
        flex-direction: column;
        align-items: center;
    }

    .menu__link:hover {
        text-decoration: none;
    }

    .burger {
        position: fixed;
        right: 15px;
        top: 15px;
        width: 50px;
        height: 50px;
        border-radius: unset;
        border: unset;
        background-color: #4a6674;
    }

    .burger__icon {
        background-color: #fff;
    }

    .menu {
        position: fixed;
        top: 70px;
    }

    .header__wrapper {
        padding-bottom: 0;
    }

    .header__left {
        align-items: center;
        max-width: 100%;
        margin-left: 0;
    }

    .header__text {
        margin-bottom: 20px;
        text-align: center;
    }

    .header__img {
        margin-bottom: 20px;
    }

    .header__title {
        margin-right: 0;
    }

    .menu:before {
        display: none;
    }

    .promo__row {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .promo__img {
        order: -1;
        flex: 0 0 auto;
        margin-bottom: 20px;
    }

    .promo__text {
        max-width: 100%;
        border-radius: 20px;
        margin: 0;
        border-left: 2px solid #fff;
    }

    .works {
        margin-top: 0;
        padding-bottom: 0;
    }

    .works__wrapper {
        flex-direction: column;
    }

    .slider__for img {
        margin: 0 auto;
    }

    .works__col {
        max-width: 100%;
    }

    .reverse .promo__text {
        border-radius: 20px;
        border-right: 2px solid #fff;
        margin: 0;
    }

    .reviews__wrapper {
        flex-direction: column;
    }

    .works__row {
        flex-direction: column;
        align-items: center;
    }

    .works__text {
        max-width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .block__img {
        float: none;
    }
}

