@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');

body {
    background-color: #000000;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;

}

/*SECTION ONE*/
.header {
    background: linear-gradient(-20deg, #e0b506 50%, rgba(0, 0, 0, 0) 50%), url("dark_bg.png");
    background-size: 100% 70%, cover;
    background-repeat: no-repeat;
    background-position: bottom, center center;


}

.button {
    display: inline-block;
    font-size: 21px;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 53px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fd3333), to(#ba0000));
    background: linear-gradient(to bottom, #fd3333, #ba0000);
    -webkit-box-shadow: 1px 1px 1px #000;
    box-shadow: 1px 1px 1px #000;
    border-radius: 2px;
}

.logo {
    width: 143px;
    display: inline-block;
}

.menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 23px 0px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;

}

.menu__link {

    color: inherit;
    -webkit-transition: color .3s ease-in;
    transition: color .3s ease-in;
    cursor: pointer;

}

.menu__link:hover {
    color: #e5c10f;
    text-decoration: none;

}

.menu__btn {
    display: none;
}

.sec-one {
    background-image: url("sec-one_bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}

.sec-one__title {
    font-size: 43px;
    font-weight: 700;
    color: #e5c10f;
    text-transform: uppercase;
}

.sec-one__title span {
    font-size: 27px;
    color: #ffffff;
    font-weight: 400;
    text-transform: capitalize;
}

.improv {
    margin-top: 14%;
}

.improv__item {
    height: 84px;
    position: relative;
    text-align: right;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 13px 83px 13px 0px;

}

.improv__item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    width: 68px;
    height: 68px;

    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat
}

.improv__item--img1::after {
    background-image: url("penis.png");
}

.improv__item--img2::after {
    background-image: url("penis2.png");
}

.improv__item--img3::after {
    background-image: url("clock.png");
}

.form {
    margin-top: 3%;
    margin-bottom: 3%;
    padding: 12px 32px;
    text-align: center;
    border: 1px solid #555;
    border-radius: 4px;
    -webkit-box-shadow: 1px 1px 1px #000000;
    box-shadow: 1px 1px 1px #000000;
    background-color: #000000;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#2c2c2c), color-stop(#2b2b2b), color-stop(#2a2a2a), to(#282828));
    background-image: linear-gradient(to bottom, #2c2c2c, #2b2b2b, #2a2a2a, #282828);
}

.form__title {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
}

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

.price {
    padding: 0px 25px;
    margin-bottom: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.price__old {

    width: 55%;
    font-size: 18px;
    color: #979797;
    text-decoration: line-through;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    /* position: relative; */
}


.price__new {
    width: 30%;
    font-size: 36px;
}

.price-text {
    width: 30%;
    font-size: 36px;
}

.price__new1 {
    font-size: 25px;
}

.price__old span {
    font-size: 36px;
    display: inline-block;

}


.form__input {
    height: 40px;
    margin-bottom: 20px;
    border: 1px solid #000;
    width: 100%;
    border-radius: 6px;
    -webkit-box-shadow: inset 0px 5px 8px 0px rgba(0, 0, 0, 0.45);
    box-shadow: inset 0px 5px 8px 0px rgba(0, 0, 0, 0.45);


}

.form__input::-webkit-input-placeholder {
    color: #3d474c;
}

.form__input:-ms-input-placeholder {
    color: #3d474c;
}

.form__input::-ms-input-placeholder {
    color: #3d474c;
}

.form__input::placeholder {
    color: #3d474c;
}

.form__button {
    padding: 10px 53px;
    border: none;
    border-radius: 11px;
    -webkit-box-shadow: 0px 0px 0px 4px #2d3539;
    box-shadow: inset 0px 0px 2px #000, inset 0px 0px 0px 4px #2d3539;

}

.form .form__button {
    width: 100%;
}

.form__bottom {
    margin-top: 12px;
}

/*SECTION SECOND */
.sec-second {

    background-color: #e0b506;
}

.sec-second__wrapp {
    background-image: url("sec-second_bg.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sec-second__title {
    margin-top: 89px;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e0b506;
    line-height: 1.1;
}

.sec-second__title span:nth-child(2) {
    display: block;
}

.sec-second__title span:last-child {
    display: block;
}

.problem {
    margin-top: 87px;
}

.problem__item {
    font-weight: 700;
    font-size: 21px;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.problem__item span {
    width: 69px;
    height: 69px;
    line-height: 1.1;
    margin-right: 16px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    font-size: 62px;
    background-color: #e0b506;
}

/*SECTION THREE*/
.sec-three {
    background-color: #000000;
    background: linear-gradient(-12deg, rgba(0, 0, 0, 0) 75%, #e0b506 75%), url(sec-three__bg3.png);
    background-size: 100%, auto;
    background-position: center center, left 36%;
    background-repeat: no-repeat;
}


.expert__title {
    font-weight: 700;
    font-size: 45px;
    text-transform: uppercase;
}

.sec-three__wrapp {
    width: 100%;
    padding-top: 114px;
    background-image: url(expert.png), linear-gradient(-192deg, #e8ba49, #c8953d, #7f4a20 49%, rgba(255, 255, 255, 0) 49%), linear-gradient(-372deg, #47210d, #8c5524, #c9953e 52%, rgba(255, 255, 255, 0) 52%);
    background-repeat: no-repeat;
    background-position: right 3.8%, center center, 50% 104%;
    background-size: 40%, 100%, 100% 100%;
}

.sec-three__wrapp-gradient {
    background-image: linear-gradient(-192deg, #e8ba49, #c8953d, #7f4a20 76%, rgba(255, 255, 255, 0) 76%);
}


.expert {
    margin-top: 56px;
    padding-bottom: 120px;
    text-align: right;
}

.expert__name {
    font-weight: 700;
    font-size: 20px;
    margin-top: 45px;
}

.expert__name span {
    font-size: 18px;
    font-weight: 400;
}

.components {
    margin-left: -145px;
    margin-top: 175px;
}

.components__img {
    width: 88px;
    display: block;
    height: 100%;
    float: left;
    margin-right: 10px;
}

.components__title {
    font-size: 45px;
    font-weight: 700;
}

.components__item {
    text-align: left;
}

.components__name {
    font-size: 20px;
    color: #e0b506;
}

.components__desc {
    padding-left: 95px;

    font-size: 18px;
}

.button-wrapp {
    text-align: center;
    margin: 12px auto;
}

.button-wrapp .button {
    font-weight: 700;
    font-size: 27px;
    line-height: 1.8;
    display: inline-block;
    color: #ffffff;
    margin: auto;

    height: 65px;

    -webkit-transition: color .3s;

    transition: color .3s;


}

.button:hover {
    color: #e5c10f;
    text-decoration: none;
}

.sec-order {
    margin-top: 104px;

    background-image: linear-gradient(-10deg, #e0b506 53%, rgba(0, 0, 0, 0) 46%);

}

.sec-order__title {
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-size: 45px;
}

.slider {
    margin-top: 94px;
    margin-bottom: 86px;
    color: #000000;
}

.slider_item {
    position: relative;
    z-index: 10;
    margin: 10px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px 50px 37px 40px;
    background-color: #ffffff;
    -webkit-box-shadow: 3px 3px 3px #000;
    box-shadow: 3px 3px 3px #000;
    justify-content: center;

}

/*.slider_item::before{*/
/*content: '';*/
/*position: absolute;*/
/*width: 100%;*/
/*height: 100%;*/
/*background-color: inherit;*/
/*z-index: 5;*/
/*-webkit-transform: translate(2%,2%);*/
/*transform: translate(2%,2%);*/
/*}*/
.slider__img {
    width: 200px;
    border: 3px solid #e0b506;

}

.slider__text {
    font-size: 20px;
    padding-left: 47px;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.slider__name {

    font-weight: 700;
    margin-bottom: 47px;
}

.carousel-control {
    width: 39px;
    height: 71px;
    top: 42%;
}

.carousel-control.right {
    background-image: none;
    right: -5%;
}

.carousel-control.left {
    background-image: none;
    left: -5%;
}


.sec-four {
    padding-top: 76px;
    background-color: #e0b506;
}


.sec-four__title {
    margin-bottom: 144px;
    padding-top: 37px;
    font-size: 42px;
    text-transform: uppercase;
    text-align: center;
}

.sec-four__wrapp {
    background-image: url("sec-four__bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 32px;

}

.pluse {
    text-align: center;
}

.plus__img {
    max-width: 152px;
}

.pluse__title {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    padding: 0px 30px;
}


.sec-five {
    background-color: #e0b506;
}

.sec-five__wrap {
    background-image: url("sec-five__bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 109px;
    padding-bottom: 47px;
}

.sec-five__title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 68px;
}

.order__img {
    margin: auto;
    max-width: 124px;

}

.order__text {
    font-size: 20px;
    text-align: center;
    padding: 30px 47px;
}

.sec-six {
    background-image: linear-gradient(-20deg, rgba(0, 0, 0, 0) 57.5%, #e0b506 57%), url("dark_bg.png");
    background-position: center center, center bottom;
    background-size: auto, cover;

}

.sec-six__wrapp {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url("map.png"), url("map_bg-white.png");
    background-repeat: no-repeat;
    background-size: auto, cover;
    background-position: 25% 10%;
    position: relative;
    /*linear-gradient( -20deg, rgba(0,0,0,0) 9% ,#fff 9%);*!*/
}

.sec-six__title {
    text-align: center;
    font-size: 35px;
    text-transform: uppercase;
    color: #000000;
    position: absolute;
    margin: 0;
    padding: 0;
    top: 30px;
    right: 30px;
}


.sec-footer {
    background-image: url("dark_bg.png");
    background-size: cover;
    background-position: center center;

}

.sec-footer__wrapp {
    padding-top: 42%;
    margin-top: -40.7%;
    background-image: url(footer_bg.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sec-one__wrapp-bottom {
    margin-top: 30%;
}

.sec-footer__title {
    text-align: center;
    font-size: 55px;
}

.sec-footer__title span {
    font-size: 64px;
}

.product-img {
    display: block;
    margin: 48px auto 0;
    max-width: 280px;
}

.sec-three__img {
    display: block;
    margin: 0 auto;
    max-width: 320px;
}

.discount-bg {
    background: linear-gradient(to bottom, #fd3333, #ba0000);
    padding: 0 12px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    text-align: center;
    padding: 20px;
}

@media (min-width: 992px) and (max-width: 1200px) {
    .sec-footer__wrapp {
        background-position: 100% center;
        margin-top: -39%;
    }
}


@media screen and (max-width: 1200px) {

    .sec-one__title {
        white-space: pre-line;
        text-align: center;
    }

    .sec-one__title span {
        display: inline-block;

    }

    .price {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .price__new,
    .price__old {
        width: 100%;
    }

    .menu {
        position: relative;
    }

    .menu__list {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        height: 68px;
        overflow-y: hidden;
        -webkit-transition: height .3s;
        -webkit-transition: all .3s;
        transition: all .3s;




    }

    .menu__list--active {
        -webkit-animation: height .3s;
        animation: height 1s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards
    }

    @-webkit-keyframes height {
        0% {
            height: 0%;
            -webkit-transition: all .3s;
            transition: all .3s;
        }

        50% {
            height: 50%;
            -webkit-transition: all .6s;
            transition: all .6s;
        }

        100% {
            height: 100%;
            -webkit-transition: all .6s;
            transition: all .6s;
        }
    }

    @keyframes height {
        0% {
            height: 0%;
        }

        50% {
            height: 50%
        }

        100% {
            height: 100%
        }
    }

    .menu__item:not(:first-child) {
        margin: 10px 0px;

    }

    .menu__btn {
        cursor: pointer;
        display: block;
        position: absolute;
        top: 12.5px;
        right: 40px;
        z-index: 4;
    }

    .menu__icon {
        cursor: pointer;
    }

    .improv__item {
        margin: 20px 0px;
    }


    .components {
        margin-left: 0;
    }

    .slider_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

    }

    .slider__img {
        margin-bottom: 40px;
    }

    .slider__text {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .sec-footer__wrapp {
        background-position: center center;
    }
}

@media (min-width: 992px) {
    .sec-three__img {
        margin: 300px auto 0;
    }

    .sec-three__wrapp {
        background-position: right 0.5%, center center, 50% 104%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .sec-one {
        background-position: 18% center;
    }

    .sec-one__title span {
        padding-left: 90px;
        text-shadow: 2px 2px 10px #000;
    }

    .sec-three__wrapp {
        background-position: right 12.5%, center center, 50% 104%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sec-three__wrapp {
        background-position: right 25.5%, center center, 50% 104%;
    }
}


@media (min-width: 768px) and (max-width: 991px) {
    .sec-one__img {
        /* margin-top: -150px; */
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    .expert__name {
        padding-right: 100px;
    }
}

@media (min-width: 700px) and (max-width: 768px) {
    .sec-six__img img {
        margin-bottom: calc(-5px + 40 * ((100vw - 700px) / 68));
    }
}




@media screen and (max-width: 768px) {
    .form {
        margin-bottom: 30px;
    }

    .sec-one__img {
        text-align: center;
    }

    .cls-1 {
        fill: #000 !important;
    }

    .carousel-control.right {
        right: 10px;
    }

    .carousel-control.left {
        left: 10px;
    }

    .expert {
        margin-top: 15%;
        padding-bottom: 60px;
    }

    .sec-three__img {
        width: 400px;
        display: block;
        margin: 0 auto;
    }

    .components {
        margin-top: 0;
    }

    .sec-second__title {
        text-align: right;
        font-size: 55px;
    }

    .sec-second__title span:first-child {
        font-size: 45px;
    }

    .sec-second__title span:last-child {

        font-size: 49px;
    }

    .problem__item {
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .sec-footer__wrapp {
        padding-top: 66%;
        margin-top: -66%;
    }

    .sec-six__img img {
        margin-left: auto;
    }

    .expert__title {
        font-size: 35px;
    }

    .sec-three__wrapp {
        background-size: 30%, 100%, 100% 100%;
    }

    .sec-order {
        margin-top: 42px;
    }

    .product-img {
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .sec-one__wrapp-bottom {
        margin-top: 0%;
    }

    .expert__title {
        font-size: 26px;
        text-align: center;
    }

    .sec-three__img {
        width: 280px;
    }

    .slider_item {
        padding: 31px 10px 37px 10px;
    }

    .sec-order__title {

        font-size: 33px;
    }

    .slider__text {
        font-size: 14px;
        padding-left: 0px;
    }

    .slider__name {

        margin-bottom: 12px;
    }

    .button-wrapp .button {

        font-size: 15px;
        line-height: 2.8;
    }

    .sec-four__title {
        margin-bottom: 46px;
        font-size: 30px;
    }

    .sec-five__title {
        font-size: 30px;
    }

    .sec-second__title {

        text-align: center;
    }

    .sec-six {
        background: #000000;
    }

    .sec-six__wrapp {
        overflow: hidden;
        background-image: url("map_bg-white.png")
    }

    .sec-six__img img {
        margin-bottom: calc(-94px + 50 * ((100vw - 320px) / 160));
        margin-right: -30px;
    }

    .sec-footer__title {
        white-space: unset;
        font-size: 35px;
    }

    .sec-footer__title span {
        font-size: 30px;
    }

    .sec-five__wrap {
        padding-top: 28px;
    }
}

.price {
    flex-wrap: wrap;
}

.price__old {
    width: auto;
}

@media (max-width: 991px) {
    .sec-three__wrapp {
        background-image: linear-gradient(-192deg, #e8ba49, #c8953d, #7f4a20 49%, rgba(255, 255, 255, 0) 49%), linear-gradient(-372deg, #47210d, #8c5524, #c9953e 52%, rgba(255, 255, 255, 0) 52%);
        background-position: center center, 50% 104%;
        -webkit-background-size: 100%, 100% 100%;
        background-size: 100%, 100% 100%;
    }

    .expert {
        margin-top: 0;
        /*padding-bottom: 20px;*/
    }

    .expert__name {
        margin-top: 10px;
    }
}

.prices {
    margin-bottom: 10px;
}

.prices-old {
    font-size: 22px;
    color: #979797;
}

.prices-new {
    font-size: 30px;
}

.wv_order-form {
    display: flex;
    flex-direction: column;
}

.wv_order-form .form-field {
    font-size: 16px;
    border: 1px solid grey;
    height: 45px;
    line-height: 45px;
    display: block;
    width: 100%;
    border-radius: 5px;
    margin: 5px 0;
    padding: 0 15px;
    box-shadow: inset 0 0 5px #bcbbbb;
    color: #000;
}

.wv_order-form select.form-field {
    padding: 0 11px;
}

.map-block {
    padding: 80px 50px 100px;
    background: #fff;
    position: relative;
}

.map-block::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 150px solid #000;
    border-left: 400px solid transparent;
}

.map-block-main img {
    width: 100%;
    max-width: 900px;
}

.map-block-man {
    position: absolute;
    right: 30px;
    top: 70px;
    max-width: 400px;
}

.map-block span {
    text-transform: uppercase;
    font-size: 31px;
    line-height: 1.3;
    right: 20px;
    top: 30px;
    position: absolute;
    color: #000;
    max-width: 550px;
    text-align: center;
}

.arrow-mobile {
    display: none;
}

@media(max-width: 1100px) {

    .sec-footer__title span,
    .sec-second__title {
        font-size: 60px;
    }

    .slider__text {
        padding-left: 0;
    }

    .map-block span {
        font-size: 33px;
        right: -10px;
    }

    .carousel.slide {
        max-width: 800px;
        margin: 0 auto;
    }

    .carousel-control.right {
        right: 0;
    }
    
    .carousel-control.left {
        left: 10px;
    }

    .arrow-desktop {
        display: none;
    }

    .arrow-mobile {
        display: block;
    }
}

@media(max-width: 1000px) {
    .sec-three__wrapp {
        padding-top: 0;
    }

    .expert {
        padding-bottom: 0;
    }

    .slider {
        margin-top: 50px;
    }

    .sec-four__title {
        margin-bottom: 50px;
    }

    .map-block-man {
        top: 50px;
        max-width: 300px;
    }

    .sec-five__wrap {
        padding-top: 50px;
    }

    .map-block span {
        max-width: 100%;
        right: 0;
        left: 0;
        top: 20px;
        box-sizing: border-box;
    }

    .map-block {
        padding: 115px 60px 40px;
    }

    .map-block::after {
        border-bottom: 120px solid #000;
    }
}

@media(max-width: 700px) {
    .sec-second__wrapp {
        background-size: contain;
        background-position: top center;
    }

    .sec-second__title {
        margin-top: 35px;
        font-size: 41px !important;
        color: #fff;
        text-shadow: 0 0 10px #aa8903;
    }

    .components__title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .map-block {
        padding: 170px 10px 10px;
        height: 550px;
    }

    .map-block-man {
        max-width: 250px;
        top: 125px;
    }

    .map-block span {
        left: 10px;
        right: 10px;
        font-size: 28px;
    }
}

