body {
    --background-main: #E6CAB0;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    color: inherit;
}
.scr {
    background-image: url("../img/scr_1.png");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 95%;
}
.tube {
    background-image: url("../img/scr_2.png");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: auto 95%;
}
.slider {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.slider-box {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.swiper-slide__image {
    text-align: center;
}
.swiper-slide__image img {
    max-width: 100%;
    transition: transform 0.5s;
}
/*
.swiper-slide__image img:hover {
    transform: scale(1.2, 1.2);
}
*/
.swiper-button-next {
    right: -70px;
    color: #000;
}
.swiper-button-prev {
    left: -70px;
    color: #000;
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -40px;
}
.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background-color: #000;
}
.sell_photo {
    margin: 0 auto;
    width: 40%;
}
.sell_photo img{
    max-width: 100%;
}

* {
    box-sizing: border-box;
}
.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}
.section__title {
    font-size: 44px;
}
.section__title-descr {
    font-size: 24px;
}

.section__title-right {
    font-size: 44px;
    text-align: right;
}
.section__title-descr-right {
    font-size: 24px;
    text-align: right;
}

.section__delimeter {
    background-color: #000;
    margin: 30px 0 40px 0;
    height: 2px;
    display: block;
}

.section-info {
    padding: 40px 0;
}
.section__title--white {
    color: #fff;
}
.btn {
    display: block;
    width: 130px;
    background-color: #AC524D;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    cursor: pointer;
}
.contacts .main-presentation__btn {
    margin-top: 10px;
    width: 100%;
}
.price-block {
    text-align: center;
    font-size: 40px;
    margin: 30px 0;
}

.price-title {
    font-size: 26px;
    margin-bottom: 20px;
}
.price-value{
    color: #AC524D;
}
header {
    background-color: #000;
    color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.header__container {
    max-width: 1230px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.header__logo-picture {
    height: 70px;
    font-weight: 400;
    transition: height .3s;
    padding: 10px 0;
}
.header__nav {
    display: flex;
    align-items: center;
}
.nav__list {
    display: flex;
    align-items: center;
    margin: 0;
    color: white;
}

.nav__item:not(:first-child) {
    margin-left: 20px;
}

.nav__item {
    position: relative;
}

.nav__link {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.nav__link--drop::after {
    content: "";
    width: 9px;
    height: 9px;
    background-image: url("../img/down-chevron.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav__list--dropdown {
    position: absolute;
    background-color: #fff;
    right: 0;
    top: 100%;
    padding: 30px;
    display: block;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    color: #000;
}

.dropdown-submenu {
    display: flex;
    align-items: initial;
}

.dropdown-submenu__item {
    flex-grow: 1;
    min-width: 260px;
    padding: 0 30px;
}

.dropdown-submenu__list {
    padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
    border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
    padding-left: 0;
}

.dropdown-submenu__item:last-child {
    padding-right: 0;
}

.mobile-back {
    display: none;
}

.dropdown-list__item {
    margin-bottom: 10px;
}

.dropdown-submenu__list-item {
    margin-bottom: 10px;
}

@media(max-width:1344px) {
    .swiper-button-pre,
    .swiper-button-next {
        display: none;
    }
}

@media(min-width:769px) {
    .nav__link--drop:hover::after {
        transform: rotate(180deg);
        transition: all 0.3s;
    }

    .nav__item:hover .nav__list--dropdown {
        visibility: visible;
        opacity: 1;
        transition: all 0.3s;
    }
}

.burger {
    width: 40px;
    height: 20px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    position: relative;
    display: none;
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.burger::after {
    top: auto;
    bottom: 0;
}

.burger span {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: 0, 0, 0, 0.5;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.lock {
    overflow: hidden;
}


/*HERO*/
.hero {
    height: 100vh;
    background-color: var(--background-main);
}
.hero-box {
    position: fixed;
    height: 100vh;
    width: 100%;
    z-index: 8;
   /* background-image: url("../img/title_main.jpg");*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s;
}
.hero-box--main {
    background-image: url("../img/title_main.jpg");
}
.hero-box--rigel {
    background-image: url("../img/title_main.jpg");
}
.hero-box--quasar {
    background-image: url("../img/quasar_title.jpg");
}
.hero-box--antares {
    background-image: url("../img/antares_title.jpg");
}
.hero-box--contacts {
    background-image: url("../img/quasar_title.jpg");
}
.hero__text-box {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s;
}

.hero__title-box {
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}
.hero__title {
    font-size: 70px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.hero__text {
    font-size: 18px;
    letter-spacing: 4px;
}

/*HERO END*/

/*CONTENT*/
.content-wrapper {
    position: relative;
    z-index: 9;
    min-height: 100vh;
}
.wp_contacts {
    min-height: auto;
}
.main-presentation {
    height: 100vh;
    background-color: var(--background-main);
}

.main-presentation-gray {
    height: 100vh;
    background-color: var(--background-main);
}
.main-presentation-white {
    height: 100vh;
    background-color: #fff;
}

.product-wrapper {
    font-size: 20px;
    line-height: 35px;
    background-color: #fff;
}

.product_hero {
    background-image: url("../img/guitar.png");
    background-position: center center;
    background-size: cover;
}
.product_gallery {
    background-color: var(--background-main);
    padding-bottom: 100px;
}
.product_features {
    background-image: url("../img/guitar.png");
    background-position: center center;
    background-size: cover;

}
.product_features--text h3 {
    font-size: 24px;
    margin-bottom: 0px;
}
.product_features--text p {
    margin-top: 10px;
}
.product_features--text {
    margin-bottom: 60px;
}
.product_features--text:last-child {
    margin-bottom: 0px;
}
.technicals {
    background-color: var(--background-main);
}
.technicals table {
    width: 100%;
}
.technicals__title {
    font-weight: bold;
    min-width: 550px;
    padding-right: 50px;
}
.technicals--string {
    display: block;
    border-bottom: 1px solid #000;
    padding: 18px 0;
}
.ww {
    height: 61vh;
    background-size: contain;
    background-image: url('../img/rigel_index.png');
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.ww_r {
    height: 68vh;
    background-size: contain;
    background-image: url('../img/quasar_index.png');
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.ww--antares {
    height: 62vh;
    background-image: url('../img/antares_index.png');
}
.container-flex {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.container-flex-right {
    display: flex;
    width: 100%;
}
.container-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.main-presentation__text-flex-box {
    height: 100%;
    display: flex;
    align-items: center;
}
.main-presentation__text-flex-box-center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.main-presentation__text-box {
    color: #000;
    max-width: 380px;
    opacity: 0;
    transition: all 1.0s;
}
.main-presentation__title {
    font-size: 40px;
    font-weight: 700;
}
.main-presentation__text {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}
.main-presentation__delimeter {
    margin: 3vh 0;
    background-color: #000;
    height: 1px;
    display: block;
}

/* PARTNERS */

.partners {
    background-color: var(--background-main);
}

.partners-item {
    width: 222px;
    padding: 0 5px;
}
.partners-item__img {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.partners-item a {
    display: block;
    text-align: center;
}

.partners-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

/*----------------*/

.contacts {
    background-color: rgb(27, 27, 27);
    color: #fff; /*var(--background-main)*/;
}

.contacts .section__title {
    color: #fff;
}
.contacts .section__title-descr {
    color: #fff;
}

.product_gallery .section__title {
    color: #000;
}
.product_gallery .section__title-descr {
    color: #000;
}
.product_gallery .section__delimeter {
    background-color: #000;
    margin: 30px 0 70px 0;
}

.contacts .section__delimeter {
    background-color: #fff;
    margin: 30px 0 70px 0;
}
.sell__form {
    margin: 0 auto;
    font-size: 14px;
    line-height: 16px;
}
.contacts__wrapper {
    display: flex;

}
.contacts__form {
    width: 40%;
}

.contacts input {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 8px;
}

.sell__form .form-input-last {
    margin-bottom: 0;
}

.sell .main-presentation__btn {
    width: 100%;
}
.contacts span {
    display: block;
    margin-bottom: 10px;
}
.warning {
    color: #AC524D;
    font-size: 14px;
}

.contacts textarea {
    width: 100%;
    padding: 20px 15px;
    min-height: 150px;
    resize: none;
}

.main-presentation__btn {
    margin-top: 20px;
    outline: none;
    border: none;
}

.contacts .main-presentation__btn {
    margin-top: 20px;
    outline: none;
    border: none;
}

.contacts__info {
    padding-left: 200px;
}
.contacts__info-title {
    display: block;
}

.contacts__info-value {
    display: block;
    padding-left: 10px;
    color: #fff;
}

.contact__info-block {
    margin-bottom: 40px;
}

.vk {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 10px;
    display: inline-block;
    margin: 0 15px 0 10px;
}

.max {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 8px;
    display: inline-block;
    margin: 0 15px 0 15px;
}

.tg {
    width: 31px;
    height: 31px;
    border-radius: 6px;
    display: inline-block;
    background-color: #fff;
}

.footer {
    background-color: var(--background-main);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    line-height: 16px;
}

@media(max-width:1580px) {
    .container-flex, .container-flex-right {
        justify-content: center;
    }
    .main-presentation__text-box {
        color: #fff;
        opacity: 0;
        transition: all 1.0s;
    }
    .main-presentation__text-box--white {
        color: #BC8E65;
        opacity: 0;
        transition: all 1.0s;
    }
    .main-presentation__delimeter {
        background-color: #fff;
    }
    .main-presentation__delimeter--white {
        background-color: #BC8E65;
    }
}

@media(max-width:400px) {
    .section__title {
        font-size: 20px;
    }
}

@media(max-width:460px) {
    .product_features {
        background-position: 50% top;
        background-size: 200% auto;
    }
}

@media(max-width:768px) {
    .burger {
        display: block;
    }
    .sell_photo {
        width: 90%;
    }
    .mobile-back {
        display: block;
    }
    /*.product_hero {
        background-position: top center;
        background-size: 100% auto;
        background-repeat: repeat;
    }*/
    .tube {
        background-position: 50% center;

    }
    .scr {
        background-position: 50% center;
    }
    .header {
        padding: 15px 0;
    }
    .hero-box {
        position: static;
    }
    .contacts__wrapper {
        flex-direction: column;
    }
    .contacts__form {
        width: 100%;
    }
    .contacts__info {
        padding-left: 0;
        text-align: center;
        margin-top: 30px;
    }
    .technicals__title {
        min-width: auto;
       /* padding-right: 20px;*/
    }
    .hero__title {
        font-size: 50px;
    }

/*
    header {
        background-color: #000;
        color: #fff;
        width: 100%;
        position: static;
        top: 0;
        left: 0;
        z-index: 10;
    }
*/
    .header__nav {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        max-width: 400px;
        width: 80%;
        height: 100vh;
        z-index: 100;
        box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
        background-color: #fff;
        transform: translateX(-150vw);
        overflow-x: hidden;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        padding-top: 10%;
        position: relative;
        color: black;
    }

    .nav__item {
        margin-left: 0 !important;
        font-size: 20px;
        width: 100%;
        padding: 0;
        position: static;
    }

    .nav__link--drop::after {
        background-image: url("../img/down-arrow.png");
    }

    .nav__link,
    .dropdown-submenu__list-item a,
    .dropdown-list__link {
        padding: 20px 30px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #bfbfbf;
    }

    .nav-link::after {
        transform: translate(-90deg);
    }

    .nav__list--dropdown {
        position: absolute;
        top: 0;
        right: auto;
        left: 100%;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    /*
        .nav__list--dropdown {
            display: block;
            opacity: 1;
            visibility: visible;
        }
    */
    .dropdown-submenu__item {
        width: 100%;
        padding: 0;
        border: none !important;
    }

    .dropdown-submenu__title {
        padding: 0 30px;
    }

    .nav__list.transformation {
        transform: translateX(-100%);
        transition: all 0.3s;
    }

    .nav__list--dropdown.transformation {
        opacity: 1;
        visibility: visible;
        display: block;
        transform: none;
        background-color: #fff;
        transition: all 0.3s;
    }

    .nav.open {
        transform: translateX(0);
        transition: all 0.3s;
    }

    .overlay.open {
        opacity: 1;
        visibility: visible;
        transition: all 0.3s;
    }

    .mobile-back a {
        position: relative;
        border: none;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .mobile-back a::before {
        content: "";
        width: 10px;
        height: 10px;
        background-image: url("../img/down-arrow.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: inline-block;
        margin-right: 10px;
        transform: rotate(90deg);
    }
}

.opacity {
    opacity: 1;
}
.dn {
    display: none !important;
}
.form-result {
    color: green;
    text-align: center;
}