:root {
  --color-1: #040404;
  --color-2: #FAC075;
  --color-3: #252525;
  --color-4: #DEB887;
}
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    color: var(--color-3);
}
@media (max-width: 1199px){
    body {font-size: 15px;}
}
@media (max-width: 991px){
    body {font-size: 14px;}
}
@media (max-width: 575px){
    body {font-size: 13px;}
}


a {color: inherit;}
a:hover, a:focus, a:active {
    color: inherit;
    outline: none;
    text-decoration: none;
}
p, label, span, a, select, div, blockquote, cite, figure, figcaption {
    line-height: normal;
    margin-bottom: 0px;
}

.disable {
    pointer-events: none;
    cursor: default;
}


blockquote {
    position: relative;
    padding-left: 3em;
}
blockquote::before {
    content: "❝";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3em;
    line-height: 1em;
    color: var(--color-4);
}


/* FORMS CUSTOMIZATION */
input, input:hover, input:focus, input:active,
button, button:hover, button:focus, button:active, 
textarea, textarea:hover, textarea:focus, textarea:active,
select, select:hover, select:focus, select:active {outline: none;}

/* placeholder stylization */
input:-moz-placeholder, textarea:-moz-placeholder {color: #fff; font-weight: 400;}
input::-moz-placeholder, textarea::-moz-placeholder {color: #fff; font-weight: 400;}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {color: #fff; font-weight: 400;}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {color: #fff; font-weight: 400;}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {color: #fff; font-weight: 400;}
input::placeholder, textarea::placeholder {color: #fff; font-weight: 400;}

input, textarea, select {
    display: block;
    border: none;
    background-color: #4B4B4B;
    border-radius: 4px;
    padding: 1em 2em;
    line-height: 1.2em;
    width: 100%;
    box-shadow: unset;
}

/* SELECT simple */
select {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    background-image: url(../images/icons/caret_down.png);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    background-size: auto 30%;
    position: relative;
}
select::-ms-expand { /* for IE 11 */display: none;}
select:hover {cursor: pointer;}

/* checkbox customization */
.checkbox {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.checkbox input[type="checkbox"] {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    box-shadow: none;
    border: 2px solid var(--color-2);
    background-color: transparent;
    border-radius: 2px;
    height: 1em;
    min-height: unset;
    width: 1em;
    position: relative;
    box-sizing: content-box;
    margin-right: .5em;
}
.checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: 50%;
    display: block;
    width: 65%;
    height: 150%;
    border: 0 solid var(--color-2);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotateZ(45deg);
}
.checkbox label {flex: 1;line-height: 1.2em;}

/* radiobutton customization */
.radio {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.radio input[type="radio"] {
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    -ms-appearance:none;
    box-shadow: none;
    border: 2px solid var(--gray);
    border-radius: 50%;
    height: 1em;
    width: 1em;
    position: relative;
    box-sizing: content-box;
    margin-right: .25em;
}
.radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: #d9501a;
    border-radius: 50%;
}
.radio label {flex: 1;line-height: 1.2em;}



/* кнопки */
button {
    background: none;
    border: none;
    padding: unset;
    display: block;
}
button:hover, button:focus, button:active {cursor: pointer;}
.btn_main {
    border-radius: 4px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    line-height: 1.2em;
    padding: 1em 2em;
    text-align: center;
    font-weight: 700;
    transition: .5s;
    color: var(--color-3);
    background-color: var(--color-2);
}
.btn_main:hover, .btn_main:focus, .btn_main:active {cursor: pointer;}


.btn_collapse::before {content: "Загрузить ещё";}
.btn_collapse[aria-expanded="true"]::before {content: "Скрыть";}
@media (max-width: 1199px){
    .btn_main {padding: 1em 1.5em;}
}



/* Текстовые стили */
h1, h2, h3, h4, h5 {font-family: 'Playfair Display', sans-serif;}
h1 {
    font-size: 2.7em;
    line-height: 1.4em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
    margin-bottom: 1em;
}
.inner h1 {
    font-size: 2em;
    line-height: 1.4em;
    font-weight: 700;
    text-transform: unset;
}
h2 {
    text-align: left;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
}
h3 {
    text-align: left;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: .6em;
}
h4 {
    text-align: left;
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: .75em;
}
@media (max-width: 767px){
    h1 {
        font-size: 2.5em;
        text-align: center;
    }
}
@media (max-width: 575px){
    h1 {font-size: 1.8em;}
    h2 {font-size: 1.7em;}
    h3 {line-height: 1.3em;}
}

.play {font-family: 'Playfair Display', sans-serif;}

.f_07 {font-size: .7em;}
.f_08 {font-size: .8em;}
.f_09 {font-size: .9em;}
.f_11 {font-size: 1.1em;}
.f_12 {font-size: 1.2em;}
.f_13 {font-size: 1.3em;}
.f_14 {font-size: 1.4em;}
.f_15 {font-size: 1.5em;}
.f_16 {font-size: 1.6em;}
.f_17 {font-size: 1.7em;}
.f_18 {font-size: 1.8em;}
.f_19 {font-size: 1.9em;}
.f_20 {font-size: 2em;}
.white {color:#fff;}
.black {color: #000;}
.color-1 {color: var(--color-1);}
.color-2 {color: var(--color-2);}
.color-3 {color: var(--color-3);}

.fw_1 {font-weight: 100;} /* thin */
.fw_2 {font-weight: 200;} /* extra-light */
.fw_3 {font-weight: 300;} /* !light */
.fw_4 {font-weight: 400;} /* !regular */
.fw_5 {font-weight: 500;} /* !medium */
.fw_6 {font-weight: 600;} /* !semi-bold */
.fw_7 {font-weight: 700;} /* !bold */
.fw_8 {font-weight: 800;} /* !extra-bold */
.fw_9 {font-weight: 900;} /* black */
.itlc {font-style: italic;}
.norm {font-style: normal;}

.td_und {text-decoration: underline;}
.td_lth {text-decoration: line-through;}
.lh_n {line-height: normal;}
.bb_1 {border-bottom: 1px solid;}
.t_ind {text-indent: 2rem;}


.bg_white {background-color: #fff;}
.bg_gray {background-color: var(--gray);}
.bg_blue {background-color: var(--blue);}
.bg_orange {background-color: var(--orange);}

.box_shad {
    /*filter: drop-shadow(0px 10px 15px );*/
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}
.white_box {
    background-color: #fff;
    border-radius: .5em;
    padding: 1em;
}
.br_03 {border-radius: .3em;}


/*** HR ***/
.hr_mini {
    height: 4px;
    width: 100px;
    background-color: var(--color-2);
    border: none;
    margin: 1.5em auto 1.5em 0;
}
.hr_midi {
    height: 2px;
    width: 180px;
    max-width: 100%;
    background-color: var(--color-4);
    border: none;
    margin: 1.5em auto 1.5em 0;
}
.hr_max {
    height: 2px;
    width: 100%;
    background-color: var(--color-4);
    border: none;
    margin: 1.5em auto 1.5em 0;
}


/********** sliders ************/
.swiper_3 {
    position: relative;
    overflow: hidden;
    padding-bottom: 4em;
}

.swiper-pagination {bottom: 0 !important;}
.swiper-pagination-bullet {
    background-color: var(--gray);
    opacity: .3;
    width: 10px;
    height: 10px;
    border-radius: 0;
}
.swiper-pagination-bullet-active {
    background-color: var(--gray);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    border-radius: .25em;
    width: 2em;
    height: 3em;
    opacity: .5;
    background-color: #fff;
}
.swiper-button-prev {left: 0;}
.swiper-button-next {right: 0;}
.swiper-button-next:hover, .swiper-button-prev:hover, .swiper-button-next:active, .swiper-button-prev:active {opacity: 1;}
.swiper-button-prev::after, .swiper-button-next::after {
    color: var(--orange);
    font-size: 3em;
    line-height: 1em;
}
.swiper-button-prev::after {
    content: "❰";
}
.swiper-button-next::after {
    content: "❱"; 
}


/* breadcrumb */
nav[aria-label="breadcrumb"] {margin-bottom: 2em;}
.breadcrumb {
    background: transparent;
    padding: 0;
}
.breadcrumb .breadcrumb-item a {
    color: #fff;
    font-size: .9em;
}
.breadcrumb .breadcrumb-item:last-child a {
    color: var(--color-2);
    pointer-events: none;
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: #fff;
    content: "→";
    line-height: 1em;
}


/* кнопка вверх */
#scroll_top {
  display: none;
  background-color: var(--orange);
  padding: 1em;
  position: fixed;
  bottom: 2em;
  right: 2em;
  z-index: 9999;
  opacity: .5;
}
#scroll_top.show {display: block;}
#scroll_top>span {
  color: #fff;
  font-size: 1.5em;
  line-height: 1em;
}
#scroll_top:hover {
  opacity: 1;
  cursor: pointer;
}


/****** ICONS ******/
.blue_icon svg path, .blue_icon svg circle {fill: var(--blue);}
.oran_icon svg path, .oran_icon svg circle {fill: var(--orange);}
.white_icon svg path, .white_icon svg circle {fill: #fff;}

.round_icon {
    background-color: var(--color-2);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
}


/********* pagination ********/
nav>ul.pagination {
    justify-content: center;
}
nav>ul.pagination .page-link {
    background-color: transparent;
    font-weight: 600;
    border: none;
    color: #000;
    font-size: 1.2em;
    width: 2em;
    height: 2em;
    text-align: center;
}
nav>ul.pagination .page-link:hover, nav>ul.pagination .page-link:active {
    background-color: var(--gray);
    color: #fff;
    border-radius: 50%;
}


ul.simple_list {
    list-style: none;
    padding-left: 0;
}
ul.simple_list>li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: .25em;
}
ul.simple_list>li::before {
    content: "●";
    color: var(--color-2);
    position: absolute;
    top: 0;
    left: 0;
}

.description > ul {
    list-style: none;
    padding-left: 0;
}
.description > ul >li {
    padding-left: 1.5em;
    position: relative;
    margin-bottom: .25em;
}
.description > ul >li::before {
    content: "●";
    color: var(--color-2);
    position: absolute;
    top: 0;
    left: 0;
}


/************** sticky menu ***************/
.header_sticky {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    filter: drop-shadow(0px 0px 15px rgba(0,0,0,0.1));
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 100;
}
.header_sticky>div.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_sticky nav {
    width: fit-content;
    padding: 0;
}
.header_sticky .logo img {max-width: 14em;}
.header_sticky .navbar-toggler .navbar-toggler-icon {background-color: var(--orange);}
@media (max-width: 1199px){
    .header_sticky .logo img {max-width: 12em;}
}
@media (max-width: 991px){
    .header_sticky nav {padding: 0;}
    .header_sticky button.btn_main, .header_sticky>div>span {
        position: absolute;
        top: 0;
        right: 15px;
        height: 49px;
        display: flex;
        align-items: center;
    }
    .header_sticky a.logo {
        position: absolute;
        top: 10px;
        right: 220px;
    }
    .header_sticky .logo img {
        width: 12em;
        height: 29px;
        object-fit: scale-down;
    }
}
@media (max-width: 575px){
    .header_sticky .logo img {width: 9em;}
    .header_sticky button.btn_main {
        top: .8em;
    }
    .header_sticky a.logo {
        right: 145px;
    }
}




/* Всплывающая форма обратной связи */
.modal-content {
    border-radius: 10px;
    border: 2px solid var(--color-2);
    background-color: var(--color-3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.modal-body {padding: 2em;}
button.close {
    position: absolute;
    top: .1em;
    right: .4em;
    z-index: 100;
    opacity: 1 !important;
    font-size: 1.5em;
    color: #fff;
    text-shadow: unset;
}
button.close:hover {
    color: var(--color-2);
    opacity: 1 !important;
}
@media (max-width: 767px){
    .modal-dialog {width: 75%;}
}
@media (max-width: 575px){
    .modal-dialog {
        width: 95%;
        margin: 2em auto;
    }
    .modal-body {padding: 1.5em;}
}


/* Шрифты */
@font-face {
    font-family: 'coco';
    src: url('../fonts/CocoBiker Regular-trial.ttf');
}