:root {
    --clr-black: #18171C;
    --clr-white: #fff;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-Light.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-Thin.ttf") format("truetype");
	font-weight: 100;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-SemiBold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-ExtraLight.ttf") format("truetype");
	font-weight: 200;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-Bold.ttf") format("truetype");
    font-weight: 700;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-Regular.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-Medium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-ExtraBold.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
    font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url("/assets/css/fonts/Montserrat-Black.ttf") format("truetype");
	font-weight: 900;
	font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/assets/css/fonts/fa-brands-400.eot");
    src: url("/assets/css/fonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/assets/css/fonts/fa-brands-400.woff2") format("woff2"), url("/assets/css/fonts/fa-brands-400.woff") format("woff"), url("/assets/css/fonts/fa-brands-400.ttf") format("truetype")
}

@font-face {
    font-family: 'Font Awesome Solid';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/assets/css/fonts/fa-solid-900.eot");
    src: url("/assets/css/fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/assets/css/fonts/fa-solid-900.woff2") format("woff2"), url("/assets/css/fonts/fa-solid-900.woff") format("woff"), url("/assets/css/fonts/fa-solid-900.ttf") format("truetype")
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Montserrat';
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    scroll-behavior: smooth;
}

body.hidden {
    overflow: hidden;
}

h2 {
    font-size: 52px;
}

a {
    color: #ff0000;
    font-family: 'Montserrat';
    text-decoration: none;
    cursor: pointer;
}

p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
    margin-bottom: 20px;
}

img {
    outline: none;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header {
    position: relative;
}

.content {
  flex: 1 0 auto;
}

.container {
    width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.padding {
    padding: 0 5%;
}

.white {
    color: var(--clr-white);
}

.red-button {
    color: var(--clr-white);
    text-align: center;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    background: var(--clr-black);
    transition: 0.3s ease-in-out;
}

.red-button:hover {
    outline: 1px solid #18171C;
    color: var(--clr-black);
    background: var(--clr-white);
}

.social_icon {
    font-family: 'Font Awesome 5 Brands';
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
}

.social-icon_vk {
    color: #507299;
}

.social-icon_vk:after {
    content: "\f189";
}

.social-icon_inst {
    color: #e32d46;
}

.social-icon_inst:after {
    content: "\f16d";
}

.social-icon_facebook {
    color: #3b5998;
}

.social-icon_facebook:after {
    content: "\f39e";
}

/* fixed menu */

.fixed-menu_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 10px 5% 0;
    z-index: 10;
}

.fixed-menu_wrapper.dark {
    position: relative;
    color: inherit;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0;
}

.fixed-menu_wrapper.dark .fixed-menu_slogan {
    color: inherit;
}

.fixed-menu_wrapper.dark .fixed-menu_item a {
    color: #333;
}

.fixed-menu_wrapper.dark .fixed-menu_item.current a {
    color: #f00;
    font-weight: bold;
}

.fixed-menu_wrapper.dark .fixed-menu_item a:hover {
    color: #f00;
}

.fixed-menu_wrapper.dark .fixed-menu_phone {
    color: inherit;
}

.fixed-menu {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.fixed-menu_menu_nav {
    display: flex;
    justify-content: space-between;
}

.fixed-menu_number {
    font-size: 24px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: normal;
}

.fixed-menu_item {
    list-style: none;
}

.fixed-menu_item:not(:last-child) {
    margin-right: 50px;
}

.fixed-menu_item a {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.fixed-menu_item.current {
    color: #f00;
    font-weight: bold;
}

.fixed-menu_item:hover a {
    color: #f00;
}

.fixed-menu_logo {
    margin: 0;
    height: auto;
}

.fixed-menu_logo img {
    height: 85px;
    object-fit: contain
}

.mobile_fixed-menu_nav_header {
    display: none;
    font-size: 18px;
    color: var(--clr-white);
    font-weight: bold;
    background: none;
    border: none;
    margin-right: 38px;
    cursor: pointer;
}

.mobile_fixed-menu_nav_header:hover {
    color: #f00;
}

.mobile_fixed-menu_phone {
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
    font-family: 'Font Awesome Solid';
    font-weight: 900;
    font-size: 18px;
    color: var(--clr-white);
    text-decoration: none;
    margin-right: 20px;
}

.mobile_fixed-menu_phone:after {
    content: '\f095';
}

.mobile_fixed-menu_phone:hover {
    color: #f00;
}

.fixed-menu_wrapper.dark .mobile_fixed-menu_nav_header {
    color: inherit;
}

.fixed-menu_wrapper.dark .mobile_fixed-menu_phone {
    color: inherit;
}

/* /fixed menu */

/* sticky menu */

.sticky-menu_wrapper {
    position: fixed;
    top: -92px;
    left: 0;
    right: 0;
    background: var(--clr-white);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: top .3s;
    z-index: 10;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.sticky-menu_wrapper.open {
    top: 0;
}

.sticky-menu {

}

.sticky-menu_menu_nav {
    display: flex;
    justify-content: space-between;
}

.sticky-menu_item {
    list-style: none;
}

.sticky-menu_item a {
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
}

.sticky-menu_item.current a {
    color: #f00;
    font-weight: bold;
}

.sticky-menu_item:hover a {
    color: #f00;
}

.mobile_sticky-menu_nav_header {
    display: none;
}

.mobile_sticky-menu_phone {
    display: none;
}

.mobile_sticky-menu_nav_header {
    display: none;
    font-size: 18px;
    color: #333;
    font-weight: bold;
    background: none;
    border: none;
    margin-left: 38px;
    cursor: pointer;
}

.mobile_sticky-menu_nav_header:hover {
    color: #f00;
}

.mobile_sticky-menu_phone {
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 25px;
    font-family: 'Font Awesome Solid';
    font-weight: 900;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    margin-right: 20px;
}

.mobile_sticky-menu_phone:after {
    content: '\f095';
}

.mobile_sticky-menu_phone:hover {
    color: #f00;
}

/* /sticky menu */

/* mobile menu */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--clr-white);
    padding-top: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 15;
}

.mobile-menu.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu_close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.mobile-menu_close:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    background: #a2a2a2;
    transform: rotate(45deg);
}

.mobile-menu_close:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    background: #a2a2a2;
    transform: rotate(-45deg);
}

.mobile-menu_item {
    list-style: none;
    margin-top: 5px;
}

.mobile-menu_item a {
    display: block;
    color: inherit;
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* /mobile menu */

/* text page */

.text-page {
    margin-bottom: 80px;
}

.text-page h1 {
    font-size: 56px;
    margin-bottom: 70px;
}

.text-page h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.text-page h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
}

.text-page li {
    list-style-position: inside;
}

.text-page_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.text-page_col {
    flex: 0 0 45%;
}

.text-page_application {
    overflow-x: auto;
}

.text-area {
    width: 75%;
}

/* /text page */

/* slider */

.slider {
    position: relative;
    min-height: 150px;
    overflow: hidden;
}

.slider_prev {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 25px;
    height: 26px;
    opacity: .7;
    z-index: 5;
    transform: translateY(-50%);
    cursor: pointer;
}

.slider_prev:hover {
    opacity: 1;
}

.slider_prev:before {
    content: '';
    position: absolute;
    top: 12px;
    left: 2px;
    width: 23px;
    height: 2px;
    background: var(--clr-white);
}

.slider_prev:after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    transform-origin: left bottom;
}

.slider_next {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 25px;
    height: 26px;
    opacity: .7;
    z-index: 5;
    transform: translateY(-50%);
    cursor: pointer;
}

.slider_next:hover {
    opacity: 1;
}

.slider_next:before {
    content: '';
    position: absolute;
    top: 12px;
    right: 2px;
    width: 23px;
    height: 2px;
    background: var(--clr-white);
}

.slider_next:after {
    content: '';
    position: absolute;
    top: -1px;
    right: 0;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    transform-origin: right bottom;
}

.slider_pagination {
    position: absolute;
    bottom: 23px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 5;
}

.slider_page-point {
    width: 10px;
    height: 10px;
    background: #FFFFFF80;
    border-radius: 50%;
    margin-right: 20px;
    cursor: pointer;
}

.slider_page-point:last-child {
    margin-right: 0;    
}

.slider_page-point.active {
    background: var(--clr-white);
}

.slider_container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s;
}

.slide {
    flex: 0 0 100%;
    position: relative;
}

.slide_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.slide_background_mobile {
    display: none;
}

.slide_background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    
    /* background: linear-gradient(180deg, rgba(18, 65, 106, 0) 19.93%, rgba(18, 65, 106, 0.5) 69.72%); */
}

.slide_text {
    position: relative;
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    z-index: 2;
    text-align: center;
    padding-bottom: 80px;
    padding-top: 150px;
    justify-content: space-between;
    /* height: 100%; */
    height: 100vh;
}

.slider_header {
    /* font-size: 56px; */
    font-size: 66px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    /* margin-top: 30px; */
}

.slide_subheader {
    /* font-size: 28px; */
    /* margin-top: 30px; */
    /* font-weight: bold; */
    
    font-weight: normal;
    font-size: 25px;
    flex: max-content;
}

.slide_description {
    display: flex;
    justify-content: center;
    font-size: 16px;
    text-align: left;
    margin-top: 50px;
}

.slide_description ul {
    /* border-left: 4px solid #f73900; */
}

.slide_description li {
    list-style: none;
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.slide_link {
    /* padding-top: 60px; */
    
    padding-top: 25px;
}

.slide_button {
    display: inline-block;
    font-size: 16px;
    padding: 18px 45px;
    font-weight: 600;
    color: #FFFFFF;
    background: #1240AB;
    border-radius: 50px;
    text-transform: none;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(18, 64, 171, 0.3);
    transition: all 0.3s ease-in-out;
}

.slide_button:hover {
    color: #FFFFFF;
    background: #0d3080;
    box-shadow: 0 6px 20px rgba(18, 64, 171, 0.4);
    transform: translateY(-2px);
}

.slide_button:first-child {
    margin-right: 15px;
}

.slide_program_button {
    position: relative;
    display: inline-block;
    /* font-size: 18px; */
    color: #f73900;
    /* font-weight: bold; */
    text-decoration: none;
    background: var(--clr-white);
    border: 2px solid #f73900;
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 20px;
    padding-left: 50px;
    margin-left: 20px;
    opacity: .85;
    cursor: pointer;
    
    color: #FF0000;
    border: 2px solid #FF0000;
    text-transform: uppercase;
    font-size: 14px;
    padding: 9px 16px;
    font-weight: 700;
    border-radius: 30px;
}

.slide_program_button:hover {
    opacity: 1;
}

/* /slider */

/* our tours */

.our-tours {
    margin-top: 90px;
    margin-bottom: 90px;
}

.our-tours h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 70px;
}

.our-tours h2 {
    padding-bottom: 70px;
}

.our-tours_filter {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.our-tours_filter_header {
    font-size: 16px;
    font-weight: bold;
    margin-right: 50px;
}

.our-tours_filters_wrapper {
    display: flex;
}

.our-tours_filters_item {
    position: relative;
    padding-left: 25px;
    margin-right: 30px;
    cursor: pointer;
}

.our-tours_filters_item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background-size: cover;
}

.filter_level:before {
    background-image: url('/assets/images/level-icon.svg');
}

.filter_country:before {
    background-image: url('/assets/images/country-icon.svg');
}

.filter_month:before {
    background-image: url('/assets/images/calendar-icon.svg');
}

.filter_type:before {
    background-image: url('/assets/images/type-icon.svg');
}

.our-tours_filters_item.open:before {
    z-index: 6;
}

.our-tours_filters_item_header {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    text-transform: lowercase;
    border-bottom: 1px dashed #333;
}

.our-tours_filters_item.open .our-tours_filters_item_header {
    z-index: 6;
}

.our-tours_filters_item_values {
    position: absolute;
    top: -10px;
    left: -15px;
    min-width: calc(100% + 35px);
    padding-top: 50px;
    padding-bottom: 10px;
    background: var(--clr-white);
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
   
}

.our-tours_filters_item.open .our-tours_filters_item_values {
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.our-tours_filters_item.checked .our-tours_filters_item_header {
   color: #ff0000;
   border-bottom-color: #ff0000;
}

.our-tours_filters_item.checked.filter_level:before {
    background-image: url('/assets/images/level-icon-checked.svg');
}

.our-tours_filters_item.checked.filter_country:before {
    background-image: url('/assets/images/country-icon-checked.svg');
}

.our-tours_filters_item.checked.filter_month:before {
    background-image: url('/assets/images/calendar-icon-checked.svg');
}

.our-tours_filters_item.checked.filter_type:before {
    background-image: url('/assets/images/type-icon-checked.svg');
}

.our-tours_filter_item_wrapper {
    position: relative;
}

.our-tours_filter_item {
    position: relative;
    display: block;
    padding: 5px 20px 5px 40px;
    white-space: nowrap;
    cursor: pointer;
}

.our-tours_filter_item_checkbox {
    display: none;
}

.our-tours_filter_item_checkbox:checked + .our-tours_filter_item_name {
    color: #ff0000;
    font-weight: bold;
}

.our-tours_filter_item_checkbox:checked + .our-tours_filter_item_name:before,
.our-tours_filter_item_checkbox:checked + .our-tours_filter_item_name:after {
    content: "";
    position: absolute;
    height: 3px;
    background: #ff0000;
    border-radius: 2px;
}

.our-tours_filter_item_checkbox:checked + .our-tours_filter_item_name:before {
    top: 16px;
    left: 12px;
    width: 7px;
    transform: rotate(45deg);
}

.our-tours_filter_item_checkbox:checked + .our-tours_filter_item_name:after {
    top: 15px;
    left: 15px;
    width: 14px;
    transform: rotate(-45deg);
}

.our-tours_send-filter {
    display: none;
    position: absolute;
    top: 0;
    left: 96%;
    background: var(--clr-white);
    padding: 5px 10px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
    z-index: 7;
}

.our-tours_send-filter:before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    height: 0;
    width: 0;
    border-top: 17px solid transparent;
    border-right: 10px solid #fff;
    border-bottom: 17px solid transparent;
}

.our-tours_send-filter.show {
    display: block;
}

.our-tours_send-filter_button {
    color: #ff0000;
    font-weight: bold;
    cursor: pointer;
}

.our-tours_list {
    display: flex;
    flex-wrap: wrap;
}

.our-tours_items {
    position: relative;
    flex: 0 0 calc(33.3% - 27px);
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    padding: 20px;
    margin-right: 40px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.our-tours_items:nth-child(3n){
    margin-right: 0;
}

.our-tours_items_insert {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 15px;
    z-index: 3;
}

.our-tours_items_insert.preview-red {
    background: #ff0000;
}

.our-tours_items_insert.preview-blue {
    background: #247ca7;
}

.our-tours_items_image_wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    margin-bottom: 20px;
}

.our-tours_items_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.our-tours_items_image_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.our-tours_items:hover .our-tours_items_image_inner img {
    transform: scale(1.1);
}

.our-tours_items_background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1; /*2*/
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 40%); */
}

.our-tours_items_height {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--clr-white);
    font-size: 14px;
    font-weight: bold;
    padding-left: 25px;
    z-index: 3;
}

.our-tours_items_height:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 12px;
    background-image: url("/assets/images/height-icon.svg");
    background-size: cover;
}

.our-tours_items_header {
    color: #333;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding-bottom: 16px;
}

.our-tours_items_description {
    flex-grow: 1;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.our-tours_items_dates {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    padding-left: 25px;
    margin-top: 30px;
}

.our-tours_items_dates:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url("/assets/images/calendar-icon.svg");
    background-size: cover;
}

.our_tours_all_button_wrapper {
    grid-row-start: 2;
    grid-row-end: 2;
    grid-column-start: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column-end: 4;
    width: 100%;
    text-align: center;
}

.our_tours_all_button {
    color: var(--clr-black);
    font-weight: bold;
    text-transform: uppercase;
}

.our_tours_all_button:hover {
    opacity: .7;
}

/* /our tours */

/* our tours custom */

.our-tours-custom {
    padding: 75px 5%;
    background-color: #f4f4f4;
}

.our-tours-custom_heading {
    margin-bottom: 28px;
    color: var(--clr-black);
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.our-tours_list-custom {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: 550px 80px;
    justify-content: space-between;
}

.our-tours_list-custom_two {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px 20px;
    justify-content: space-between;
}

.our-tours_items-custom_wrap {
    width: 35%;
}

.our-tours_items-custom {
    position: relative;
    height: 550px;
    flex: 0 0 calc(33.3% - 27px);
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    padding: 20px;
    margin-right: 30px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.our-tours_items_image_wrapper-custom {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    padding-bottom: 65%;
    margin-bottom: 20px;
}

.our-tours_items_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.our-tours_items-custom:hover .our-tours_items_image_inner img {
    transform: scale(1.1);
}

.our-tours_items-content_wrap {
    z-index: 1;
}

.our-tours_items-content_wrap-two {
    position: absolute;
    top: 50%;
    width: 90%;
}

.our-tours_items_dates-custom {
    position: relative;
    color: var(--clr-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.our-tours_items_dates-custom a {
    position: absolute;
    padding: 15px;
    font-style: italic;
    font-weight: 500;
    top: 35px;
    color: var(--clr-white);
    left: -20px;
    background: #000;
}

.our-tours_items_insert-custom {
    position: absolute;
    top: -70px;
    left: -20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    color: var(--clr-white);
    width: 160px;
    height: 58px;
    padding: 0 15px;
    z-index: 3;
}

.our-tours_items_insert-custom.preview-red {
    background: #000000;
}

.our-tours_items_insert-custom.preview-blue {
    background: #000000;
}

.our-tours_items_header-custom {
    color: var(--clr-white);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.our-tours_items_description-custom {
    flex-grow: 1;
    color: var(--clr-white);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.our-tours_items_height-custom {
    margin: 15px 0;
    color: var(--clr-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* our tours custom */

/* what get */

.what-get {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    color: var(--clr-white);
    padding-top: 90px;
    padding-bottom: 90px;
}

.what-get h2 {
    padding-bottom: 70px;
}

.what-get_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.what-get_background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-get_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.what-get_item {
    flex: 0 0 26%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.what-get_item_icon {
    width: 50px;
    height: 50px;
    /*border: 2px solid #f73900;*/
    border-radius: 25px;
}

.what-get_item_header {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 25px;
}

.what-get_item_description {
    font-size: 14px;
    color: var(--clr-white);
    text-align: justify;
    opacity: .9;
}

/* /what get */

/* tourist levels */

.tourist-levels {
    padding-top: 90px;
    padding-bottom: 90px;
}

.tourist-levels h2 {
    margin-bottom: 70px;
}

.tourist-levels_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tourist-level_item {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.tourist-level_item_header {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}

.tourist-level_item_image {
    width: 100%;
}

.tourist-level_item_image img {
    width: 100%;
}

.tourist-level_item_desription {
    font-size: 14px;
    text-align: justify;
    margin-top: 20px;
}

/* tourist levels */

/* climbing cost */

.climbing-cost h2 {
    padding-bottom: 70px;
}

.climbing-cost_wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.climbing-cost_text_wrapper {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.climbing-cost_text {
    background: var(--clr-white);
    padding: 50px 80px;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1);
}

.climbing-cost_price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.climbing-cost_max-people {
    font-weight: bold;
    margin-bottom: 20px;
}

.climbing-cost_booking-button {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--clr-white);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    background: #f00;
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 25px;
    padding-left: 55px;
}

.climbing-cost_booking-button:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 20px;
    width: 20px;
    height: 24px;
    background-image: url('/assets/images/climbing-cost-booking-image.svg');
    background-size: cover;
    z-index: 2;
}

.climbing-cost_image_wrapper {
    flex: 0 0 60%;
}

.climbing-cost_image_inner {
    position: relative;
    width: 100%;
    padding-bottom: 67%;
    overflow: hidden;
}

.climbing-cost_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.climbing-cost_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* /climbing cost */

/* what included */

.what-included {
    position: relative;
    padding-top: 30px;
    padding-bottom: 0;
}

.what-included_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.what-included_column {
    flex: 0 0 48%;
    
}

.what-included_column_block {
    margin-bottom: 20px;
}

.what-included_column_block_header {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.what-included_column_block_list {
    font-size: 14px;
    text-align: left;
}

.what-included_column_block_list li {
    position: relative;
    list-style: none;
    padding-left: 15px;
}

.what-included_column_block_list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 3px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

.what-included_program-button_wrapper {
    text-align: center;
    width: 100%;
    margin-top: 40px;
}

.what-included_program-button {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--clr-white);
    text-transform: uppercase;
    text-decoration: none;
    background: #f00;
    border-radius: 28px;
    padding-top: 13px;
    padding-bottom: 13px;
    padding-right: 20px;
    padding-left: 50px;
}

.what-included_program-button:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 20px;
    width: 20px;
    height: 20px;
    background-image: url('/assets/images/program-button-image-white.svg');
    background-size: cover;
    z-index: 2;
}

/* /what included */

/* about tour */

.about-tour {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    height: 700px;
}

.about-tour h2 {
    position: relative;
    padding-bottom: 50px;
    z-index: 2;
}

.about-tour_background {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -3;
}

.about-tour_background video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-tour_wrapper {
    position: relative;
    padding-top: 50px;
}

.about-tour_text_background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0.9) 80%, rgba(255, 255, 255, 0) 100%);
    z-index: -2;
}

.about-tour_text {
    position: relative;
    z-index: 2;
}

.about-tour_text a {
    color: #f73900;
}

.about-tour_text_hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: all 2s;
}

.about-tour_text.open .about-tour_text_hidden {
    max-height: 800px;
    padding: inherit;
}

.about-tour_text_toggle {
    text-decoration: underline dashed;
    cursor: pointer;
}

.about-tour_text.open .about-tour_text_toggle {
    display: none;
}

.about-tour_button {
    display: inline-block;
    color: #f73900;
    text-decoration: none;
    border: 1px solid #f73900;
    border-radius: 35px;
    padding: 10px 35px;
    margin-top: 20px;
}

/* /about tour */

/* program */

.program {
    padding-top: 90px;
    padding-bottom: 90px;
}

.program h2 {
    padding-bottom: 70px;
}

.program_wrapper {
    display: flex;
    flex-direction: column;
}

.program_pagination {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-left: 40px;
    margin-right: 40px;
}

.program_pagination_line {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ccc;
    z-index: -1;
}

.program_pagination_item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    width: 30px;
    height: 30px;
    background: var(--clr-white);
    border: 2px solid #ccc;
    border-radius: 15px;
    z-index: 5;
    cursor: pointer;
}

.program_pagination_item.active {
    color: var(--clr-white);
    background: #f73900;
    border-color: #f73900;
}

.program_pagination_item.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    width: 10px;
    height: 10px;
    background: #f73900;
    transform: rotate(45deg);
}

.programm_days_wrapper {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    margin-top: 20px;
    overflow: hidden;
}

.program_days_prev {
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(51, 51, 51, 0.2);
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
}

.program_days_prev:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 9px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid rgba(247, 57, 0, 0.7);
    border-left: 2px solid rgba(247, 57, 0, 0.7);
    transform: rotate(45deg);
    transform-origin: left bottom;
}

.program_days_prev:hover {
    border: 2px solid rgba(51, 51, 51, 0.3);
}

.program_days_prev:hover:after {
    border-bottom: 2px solid rgba(247, 57, 0, 0.9);
    border-left: 2px solid rgba(247, 57, 0, 0.9);
}

.program_days_next {
    position: absolute;
    top: 50%;
    right: 0;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(51, 51, 51, 0.2);
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
}

.program_days_next:after {
    content: '';
    position: absolute;
    top: 6px;
    left: 9px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid rgba(247, 57, 0, 0.7);
    border-right: 2px solid rgba(247, 57, 0, 0.7);
    transform: rotate(-45deg);
    transform-origin: right bottom;
}

.program_days_next:hover {
    border: 2px solid rgba(51, 51, 51, 0.3);
}

.program_days_next:hover:after {
    border-bottom: 2px solid rgba(247, 57, 0, 0.9);
    border-right: 2px solid rgba(247, 57, 0, 0.9);
}

.program_days_container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    transition: transform .3s;
}

.program_day {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    margin-right: 50px;
}

.program_day h3 {
    margin-bottom: 20px;
}

.program_day_description {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.program_day_text {
    flex: 0 0 50%;
    padding-right: 20px;
    line-height: 1.6;
}

.program_day_text ul {
    margin-left: 40px;
}

.program_day_image_wrapper {
    flex: 0 0 50%;
}

.program_day_image_inner {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
}

.program_day_image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.program_day_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* /program */

/* program - custom */

.program-custom {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: var(--clr-black);
    /* background: no-repeat url(../images/background-program.png) cover / center; */
}

.program_wrapper-custom {
    display: flex;
    flex-direction: column-reverse;
}

.programm_days_wrapper-custom {
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 40px;
    overflow: hidden;
}

.program_pagination_line-custom {
    /*удалить данный селектор из чанка и стилей*/
}

.program_pagination_item-custom {
    position: relative;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    width: 30px;
    height: 30px;
    z-index: 5;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.program_pagination_item-custom.active {
    border-top: 3px solid #fff;
    color: var(--clr-white);
    transform: scale(1.3);
}

.program_pagination_item-custom:hover {
    color: var(--clr-white);
    transform: scale(1.3);
}

.program_pagination_item-custom.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 8px;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
}

.program-heading {
    font-family: 'Montserrat';
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--clr-white);
}

.program_day-heading {
    font-family: 'Montserrat';
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: var(--clr-white);
}

.program_day_text-custom {
    flex: 0 0 50%;
    padding-right: 20px;
    color: var(--clr-white);
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
}

.program_days_next-custom {
    position: absolute;
    top: 60%;
    right: 0;
    width: 42px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease-in-out;
}

.program_days_next-custom:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 14px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    transform-origin: right bottom;
}

.program_days_next-custom:hover {
    border: 2px solid #43b0ce;
}

.program_days_next-custom:hover:after {
    border-bottom: 2px solid #43b0ce;
    border-right: 2px solid #43b0ce;
}

.program_days_prev-custom {
    position: absolute;
    top: 60%;
    left: 0;
    width: 42px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    transition: 0.3s ease-in-out;
}

.program_days_prev-custom:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 14px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg);
    transform-origin: left bottom;
}

.program_days_prev-custom:hover {
    border: 2px solid #43b0ce;
}

.program_days_prev-custom:hover:after {
    border-bottom: 2px solid #43b0ce;
    border-left: 2px solid #43b0ce;
}

/* program - custom */

/* schedule */

.schedule_section {
    padding: 100px 5% 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: url(/assets/images/bg-rasp-min.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.schedule_section h2 {
    text-align: left;
    color: var(--clr-black);
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.schedule_section p {
    color: var(--clr-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.schedule {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}

.schedule h2 {
    padding-bottom: 70px;
}

.schedule_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 6px;
}

.schedule_header_cell {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 10px;
    color: var(--clr-white);
}

.schedule_date {
    flex: 0 0 14%;
    text-align: center;
}

.schedule_route {
    flex: 0 0 23%;
    text-align: center;
}

.schedule_price {
    flex: 0 0 15%;
    text-align: center;
}

.schedule_places {
    flex: 0 0 23%;   
    text-align: center;
}

.schedule_reservation {
    flex: 0 0 25%;
    text-align: center;
}

.schedule_header_cell.schedule_date,
.schedule_header_cell.schedule_route,
.schedule_header_cell.schedule_price,
.schedule_header_cell.schedule_places {
    border-right: 1px solid #333;
}

.schedule_tour_wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e6e6e6;
}

.schedule_tour_cell {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    padding: 8px 10px;
}

.schedule_tour_cell.schedule_date {
    font-weight: bold;
}

.schedule_tour_cell.schedule_price {
    flex-direction: column;
}

.schedule_tour_cell.schedule_reservation {
    justify-content: space-around;
}

.schedule_tour_cell.schedule_route,
.schedule_tour_cell.schedule_places {
    border-left: 1px solid #f73900;
    border-right: 1px solid #f73900;
}

.schedule_route_link {
    color: inherit;
}

.schedule_tour_disable-button {
    display: none;
    font-size: 14px;
    color: var(--clr-white);
    text-decoration: none;
    text-transform: initial;
    background: #999;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-right: 28px;
    padding-left: 28px;
    border: none;
    border-radius: 25px;
    cursor: not-allowed;
}

.schedule_tour_wrapper.disabled .schedule_tour_prepayment-button {
    display: none;
}

.schedule_tour_wrapper.disabled .schedule_tour_disable-button {
    display: block;
}

.schedule_tour_waiting-list-button {
    display: none;
    font-size: 14px;
    color: #f73900;
    background: var(--clr-white);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 15px;
    padding-left: 15px;
    border: 1px solid #f73900;
    border-radius: 28px;
    cursor: pointer;
}

.schedule_tour_wrapper.disabled .schedule_tour_waiting-list-button {
    display: block;
}

.schedule_tour_wrapper.over .schedule_date > div {
    display: none;
}

.schedule_tour_wrapper.over .schedule_tour_prepayment-button {
    display: none;
}

.schedule_tour_wrapper.over .schedule_tour_waiting-list-button {
    display: block;
}

.schedule_waiting-list_link_wrapper {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.schedule_waiting-list_link {
    color: #f73900;
    text-decoration: underline;
    cursor: pointer;
}

.schedule_consultation_button_wrapper {
    text-align: center;
}

.schedule_consultation_button {
    font-size: 16px;
    color: #f73900;
    font-weight: 500;
    background: var(--clr-white);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    border: 1px solid #f73900;
    border-radius: 28px;
    cursor: pointer;
}

/* /schedule */

/* procedure */

.procedure {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}

.procedure.dark {
    background: rgba(0, 0, 0, 0.4);
    color: var(--clr-white);
}

.procedure.light {
    background: none;
    color: inherit;
}

.procedure h2 {
    padding-bottom: 70px;
}

.procedure_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.procedure_background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.procedure_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.procedure_column {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
}

.procedure_item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.procedure_index {
    font-size: 83px;
    font-weight: bold;
    opacity: 0.7;
    margin-right: 20px;
}

.procedure_header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.procedure_description {
    font-size: 14px;
}

.procedure_waiting-list_button {
    color: #f73900;
    text-decoration: underline;
    cursor: pointer;
}

.procedure.dark .procedure_waiting-list_button {
    color: inherit;
}

.procedure_choose-tour_wrapper {
    text-align: center;
}

/* /procedure */

/* page our team */

.page_our-team {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.page_our-team_head {
    flex: 0 0 100%;
    margin-bottom: 50px;
}

.page_our-team_header {
    font-size: 56px;
}

.fact-item {
    flex: 0 0 calc(100% / 3);
}

.fact-item_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
}

.fact-item_inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fact_wrapper {
    position: absolute;
    top: 10%;
    left: 60px;
    width: calc(100% - 120px);
    height: 90%;
}

.fact_main {
    position: relative;
    text-align: center;
}

.fact_main_text {
    position: relative;
    font-size: 68px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    background: var(--clr-white);
    mix-blend-mode: lighten;
    z-index: 2;
}

.fact_main_text span {
    font-size: 280px;
    line-height: 1;
}

.fact_main_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.fact_main_background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fact_description {
    position: relative;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    z-index: 3;
}

.fact_description a:hover {
    opacity: 0.7;
}

.fact_subdescription {
    position: relative;
    font-size: 14px;
    z-index: 3;
}

.check-mark .fact_wrapper {
    top: 15%;
    height: 85%;
}

.check-mark .fact_description {
    margin-top: 20px;
}

.page_our-team .member-team {
    flex: 0 0 calc(100% / 3);
}

.member-team_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
}

.member-team_inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-decoration: none;
}

.member-team_image_wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    transition: left 0.4s;
}

.member-team_image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-team_obverse_image_wrapper {
    left: 0;
}

.member-team_obverse_image_wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 67, 104, 0.2);
}

.member-team_reverse_image_wrapper {
    left: 100%;
}

.member-team_reverse_image_wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(18, 65, 106, 0) 46.35%, #12416A 100%);
}

.member-team_data {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    transition: all 0.5s;
}

.member-team_name {
    font-size: 35px;
    color: var(--clr-white);
    text-align: center;
    text-transform: uppercase;
}

.member-team_data_description {
    color: var(--clr-white);
    max-height: 0;
    opacity: 0;
    transition: all 0.5s;
}

.member-team_position_min {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}

.member-team_quote {
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

.member-team_vk-link {
    font-size: 14px;
    color: #f00;
    text-align: center;
}

.member-team:hover .member-team_obverse_image_wrapper {
    left: -100%;
    transition-delay: 0.5s;
}

.member-team:hover .member-team_reverse_image_wrapper {
    left: 0;
    transition-delay: 0.5s;
}

.member-team:hover .member-team_data {
    bottom: 20px;
    transform: translate(-50%, 0);
    transition-delay: 0.5s;
}

.member-team:hover .member-team_data_description {
    max-height: 300px;
    opacity: 1;
    transition-delay: 0.5s;
}

/* /page our team */

/*custom member-team*/
/*
            .page_our-team {
                display: flex;
                flex-wrap: wrap;
                margin-bottom: 100px;
            }

            .page_our-team_head {
                flex: 0 0 100%;
                margin-bottom: 50px;
            }

            .page_our-team_header {
                font-size: 56px;
            }

            .fact-item {
                flex: 0 0 calc(100% / 3);
            }

            .fact-item_wrapper {
                position: relative;
                width: 100%;
                padding-bottom: 140%;
                overflow: hidden;
            }

            .fact-item_inner {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

            .fact_wrapper {
                position: absolute;
                top: 10%;
                left: 60px;
                width: calc(100% - 120px);
                height: 90%;
            }

            .fact_main {
                position: relative;
                text-align: center;
            }

            .fact_main_text {
                position: relative;
                font-size: 68px;
                font-weight: 800;
                line-height: 1;
                text-align: center;
                background: #fff;
                mix-blend-mode: lighten;
                z-index: 2;
            }

            .fact_main_text span {
                font-size: 280px;
                line-height: 1;
            }

            .fact_main_background {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: -1;
            }

            .fact_main_background img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .fact_description {
                position: relative;
                font-size: 24px;
                font-weight: bold;
                text-align: center;
                text-transform: uppercase;
                z-index: 3;
            }

            .fact_description a:hover {
                opacity: 0.7;
            }

            .fact_subdescription {
                position: relative;
                font-size: 14px;
                z-index: 3;
            }

            .check-mark .fact_wrapper {
                top: 15%;
                height: 85%;
            }

            .check-mark .fact_description {
                margin-top: 20px;
            }

            .page_our-team .member-team {
                flex: 0 0 calc(100% / 3);
            }

            .member-team_wrapper-custom {
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                width: 100%;
                padding-bottom: 140%;
                overflow: hidden;
            }

            .member-team_inner-custom {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                text-decoration: none;
            }

            .member-team_image_wrapper-custom {
                position: absolute;
                top: 0;
                width: 100%;
                height: 100%;
                transition: left 0.4s;
            }

            .member-team_image_wrapper-custom img {
                width: 100%;
                object-fit: cover;
            }

            .member-team_obverse_image_wrapper-custom {
                left: 0;
            }
            
            .member-team:hover .member-team_data_description-custom {
                max-height: 300px;
                opacity: 1;
                color: #000;
                transition-delay: 0.5s;
            }

            .other-members .member-team-custom {
                flex: 0 0 30%;
                margin-right: 5%;
                border: 1px solid #18171C;
            }

            .member-team_data-custom {
                position: absolute;
                bottom: 0;
                width: 100%;
                background-color: #fff;
                color: #18171C;
                font-family: 'Montserrat';
                font-style: normal;
                line-height: normal;
                border-top: 1px solid #18171C;
            }

            .member-team_name-custom {
                padding: 20px 30px;
                font-size: 32px;
                font-weight: 700;
            }

            .member-team_data_description {
                padding: 20px 30px;
                font-size: 18px;
                font-weight: 500;
                border-top: 1px solid #18171C;
            }

            .member-team_custom-btn_wrapper {
                display: flex;
                justify-content: space-between;
                font-size: 18px;
                font-style: normal;
                font-weight: 700;
                border-top: 1px solid #18171C;
            }

            .member-team_custom-btn {
                padding: 15px 30px;
            }

            .member-team_custom-arrow {
                padding: 30px;
                display: flex;
                align-items: center;
            }

            .member-team_position_min {
                margin-bottom: 10px;
            }

            .member-team_custom-arrow_icon {
                content: '';
                width: 8px;
                height: 8px;
                border-bottom: 2px solid #18171C;
                border-right: 2px solid #18171C;
                transform: rotate(-45deg);
                transform-origin: right bottom;
            }

            .member-team:hover {
                cursor: pointer;
            }
            
            .member-team:hover .member-team_data {
                bottom: 0px;
                transform: translate(-50%, 0);
                transition-delay: 0.5s;
            }
*/
            /*custom member-team*/

/* member team page */

.member-team_page {
    font-size: 20px;
    margin-bottom: 100px;
    overflow: hidden;
}

.member-team_page h1 {
    font-size: 56px;
}

.member-team_page ul {
    list-style: none;
}

.member-team_page li {
    position: relative;
    padding-left: 20px;
}

.member-team_page li:before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #333;
}

.member-team_page_position {
    font-size: 22px;
    font-weight: bold;
    margin-top: 40px;
}

.member-team_page_vk-account {
    font-size: 22px;
    font-weight: bold;
    margin-top: 30px;
}

.member-team_page_galery {
    overflow-x: auto;
    scrollbar-width: none;
}

.member-team_page_galery::-webkit-scrollbar {
  display: none;
}

.member-team_page_galery_wrapper {
    position: relative;
    height: 600px;
    margin-top: 30px;
}

.member-team_page_gallery_container {
    position: relative;
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
}

.member-team_page_gallery_item {
    height: 100%;
    pointer-events: none;
    user-select: none;
}

.member-team_page_gallery_item img {
    height: 100%;
}

.member-team_page .member-team .member-team_wrapper {
    pointer-events: none;
}

/* /member team page */

/* other members */

.other-members {
    overflow-x: auto;
    scrollbar-width: none;
}

.other-members::-webkit-scrollbar {
    display: none;
}

.other-members_wrapper {
    position: relative;
}

.other-members_container {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
}

.other-members .member-team {
    flex: 0 0 30%;
}

.other-members .member-team_wrapper {
    pointer-events: none;
}


/* /other members */

/* our team */

.our-team {
    padding-top: 90px;
    padding-bottom: 90px;
    background: #f4f4f4;
}

.our-team h2 {
    margin-bottom: 70px;
}

/*.our-team_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.our-team_item {
    flex: 0 0 28%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.our-team_item_photo_wrapper {
    overflow: hidden;
    position: relative;
    width: 90%;
    padding-bottom: 90%;
}

.our-team_item_photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.our-team_item_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-team_item_name {
    font-size: 14px;
    color: #f73900;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

.our-team_item_position {
    font-size: 14px;
    color: #94917b;
    margin-top: 12px;
    text-align: center;
}

.our-team_item_description {
    margin-top: 20px;
}

.our-team_item_social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.our-team_item_social_link {
    font-size: 17px;
    color: #ccc;
    margin-left: 5px;
    margin-right: 5px;
}

.our-team_item_social_link:hover {
    color: inherit;
}*/

/* our team */

/* equipment */

.calculate-hero {
    padding: 5%;
   /*  height: 80vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
 /*    background: no-repeat url(/assets/images/hero-calc.webp) right / cover; */
}

.equipment_form_step {
    margin-top: 50px;
}

.equipment_form_step_header {
    color: var(--clr-black);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}

.equipment_list_wrapper {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: 1;
}

.equipment_list {
    margin: 30px 0 0;
}

.equipment_list_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--clr-black);
    padding: 20px 0;
}

.equipment_list_header .equipment_cell {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--clr-white);
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.equipment_select_wrapper {
    width: 390px;
    max-width: 100%;
    margin-top: 20px;
}

.equipment_select {
    position: relative;
}

.equipment_select:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 16px;
    width: 18px;
    height: 18px;
    background-image: url('/assets/images/arrow-black.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.equipment_select select {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: rgba(24, 23, 28, 0.70);
    text-align: center;
    width: 100%;
    border: 1px solid var(--clr-black);
    padding: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.equipment_item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    padding-top: 15px;
    padding-bottom: 15px;
}

.equipment_cell {
    font-size: 14px;
}

.equipment_cell_name {
    flex: 0 0 40%;
    padding-left: 50px;
}

.equipment_cell_duration {
    flex: 0 0 20%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.equipment_cell_price {
    flex: 0 0 20%;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.equipment_cell_total-price {
    flex: 0 0 20%;
    font-weight: bold;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.equipment_item-name_label {
    display: block;
}

.equipment_item_checkbox {
    display: none;
}

.equipment_item-name {
    position: relative;
}

.equipment_item-name:before {
    content: '';
    position: absolute;
    top: -4px;
    left: -39px;
    width: 28px;
    height: 28px;
    border: 1px solid #18171C;
    cursor: pointer;
}

.equipment_item_checkbox:checked + .equipment_item-name:after {
    content: '';
    position: absolute;
    top: 0px;
    left: -35px;
    width: 21px;
    height: 21px;
    background: var(--clr-black);
    cursor: pointer;
}

.equipment_item-duration_header {
    display: none;
}

.equipment_item-duration_wrapper {
    position: relative;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
}

.equipment_item_input {
    font-size: 14px;
    text-align: center;
    width: 100%;
    border: none;
    padding: 6px 0 7px;
}

.equipment_item_input:focus {
    outline: none;
}

.equipment_item-duration_less,
.equipment_item-duration_more {
    position: absolute;
    top: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-image: url('/assets/images/arrow-black-left-right.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.equipment_item-duration_less {
    transform: rotate(180deg);
}

.equipment_item-duration_more {
    right: 0;
}

.equipment_item-price_header {
    display: none;
}

.equipment_item-price_wrapper {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.equipment_item-total-price_wrapper {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.equipment_item-total-price_header {
    display: none;
}

.equipment_result {
    padding: 30px;
    display: flex;
    margin: 30px 0;
    color: var(--clr-white);
    background: var(--clr-black);
}

.equipment_result_text {
    flex: 0 0 80%;
    padding-left: 50px;
}

.equipment_result_total-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.equipment_result_total-subtext {
    font-size: 14px;
    margin-top: 10px;
}

.equipment_result_text_size {
    font-size: 14px;
    font-style: italic;
    margin-top: 25px;
}

.equipment_result_total-price {
    flex: 0 0 20%;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.equipment_list_loading_overlay {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

.equipment_list_preloader {
    display: flex;
    justify-content: space-between;
    width: 100px;
    height: 48px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.equipment_list_preloader_dot {
    position: relative;
    width: 24px;
    height: 24px;
    border: 4px solid #f73900;
    border-radius: 50%;
    animation-name: preloader-dot;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.equipment_list_preloader_dot:nth-child(1){
    animation-delay: 0ms;
}

.equipment_list_preloader_dot:nth-child(2){
    animation-delay: 250ms;
}

.equipment_list_preloader_dot:nth-child(3){
    animation-delay: 500ms;
}

.equipment_list_wrapper.loading .equipment_list_loading_overlay {
    visibility: visible;
    opacity: 1;
}

.equipment_form_booking-section {
    display: flex;
}

.equipment_form_client-form {
    flex: 0 0 75%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
}

.equipment_form_client-form_field {
    flex: 0 0 45%;
    display: block;
    margin-right: 5%;
    margin-bottom: 10px;
}

.equipment_form_client-form_name {
    margin-bottom: 15px;
    color: rgba(24, 23, 28, 0.70);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.equipment_form_client-form_input {
    font-size: 18px;
    text-align: center;
    width: 100%;
    background: transparent;
    border: 1px solid #18171C;
    padding: 14px;
}

.equipment_form_client-form_input.error {
    border: 1px solid #f00;
}

.equipment_form_client-form_select_wrapper {
    position: relative;
}

.equipment_form_client-form_select_wrapper:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 16px;
    width: 18px;
    height: 18px;
    background-image: url('/assets/images/arrow-black.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.equipment_form_client-form_select {
    font-size: 16px;
    text-align: center;
    width: 100%;
    background: transparent;
    border: 1px solid #18171C;
    padding: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.equipment_form_instuctions_wrapper {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
}

.equipment_form_instuction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

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

.equipment_form_instuction_image {
    flex: 0 0 33%;
}

.equipment_form_instuction_image img {
    width: 100%;
    object-fit: contain;
}

.equipment_form_instuction_text {
    flex: 0 0 59%;
    font-size: 14px;
}

.equipment_form_agree {
    font-size: 14px;
}

.equipment_form_agree a {
    color: inherit;
}

.equipment_form_submit_wrapper {
    margin-top: 30px;
}

.equipment_form_submit {
    padding: 12px 30px;
}

.equipment_form_submit.send {
    visibility: hidden;
    opacity: 0;
}

.equipment_form_submit_error {
    font-size: 12px;
    color: #f00;
    margin-top: 10px;
}

/* /equipment */

/* blogs */

.blogs {
    display: flex;
    justify-content: space-between;
}

.blogs_wrapper {
    flex: 0 0 70%;
}

.blogs_list {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.blogs_item {
    margin-bottom: 60px;
}

.blogs_item_date {
    font-size: 14px;
    font-style: italic;
}

.blogs_item_header {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 20px;
}

.blogs_item_header a {
    color: #333;
    text-decoration: none;
}

.blogs_item_preview_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 33%;
    overflow: hidden;
}

.blogs_item_preview_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blogs_item_preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogs_item_annotation {
    margin-top: 20px;
}

.blogs_item_annotation a {
    color: #333;
    text-decoration: none;
}

.blogs_item_tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.blogs_item_tags .blog_tags_item {
    list-style: none;
    border-bottom: 1px dashed #333;
    margin-right: 15px;
    opacity: 0.5;
}

.blogs_item_tags .blog_tags_item a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.blogs_item_tags .blog_tags_item:last-child {
    margin-right: 0;
}

.blogs_item_tags .blog_tags_item:hover {
    opacity: 0.7;
}

.blogs_pages_wrapper {
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.blogs_pages_item {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-right: 7px;
    opacity: 0.7;
}

.blogs_pages_item:hover {
    opacity: 1;
}

.blogs_pages_item.current {
    font-size: 18px;
    font-weight: bold;
    opacity: 1;
}

.blogs_pages_item_points {
    font-size: 14px;
    color: #333;
    margin-right: 7px;
    opacity: 0.7;
}

.blogs_tags_cloud {
    flex: 0 0 20%;
}

.blogs_tags_cloud_header {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.blogs_tags_cloud_list {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.blogs_tags_cloud_list .blog_tags_item {
    list-style: none;
    margin-bottom: 7px;
}

.blogs_tags_cloud_list .blog_tags_item.all_articles {
    margin-top: 10px;
}

.blogs_tags_cloud_list .blog_tags_item a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
}

.blogs_tags_cloud_list .blog_tags_item.current a,
.blogs_tags_cloud_list .blog_tags_item a:hover {
    color: #f00;
}

/* /blogs */

/* blog article */

.article {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article h1 {
    line-height: 1.2;
    width: 70%;
    margin-bottom: 40px;
}

.article h2 {
    font-size: 24px;
    text-align: left;
    line-height: 1.2;
}

.article_wrapper {
    flex: 0 0 70%;
    width: 70%;
}
.article_content img{width: 100%;}

.article_date {
    font-size: 14px;
    font-style: italic;
}

.article_tags {
    display: flex;
    flex-wrap: wrap;
}

.article_tags .blog_tags_item {
    list-style: none;
    border-bottom: 1px dashed #333;
    margin-right: 15px;
    opacity: 0.5;
}

.article_tags .blog_tags_item:last-child {
    margin-right: 0;
}

.article_tags .blog_tags_item a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

.article_content_image_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 33%;
    overflow: hidden;
}

.article_content_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article_content_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_tours {
    margin-top: 40px;
    margin-bottom: 40px;
}

.article_tours_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article_tour {
    position: relative;
    flex: 0 0 47%;
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    padding: 20px;
    margin-bottom: 50px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.article_tour_insert {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 15px;
    z-index: 3;
}

.article_tour_insert.preview-red {
    background: #ff0000;
}

.article_tour_insert.preview-blue {
    background: #247ca7;
}

.article_tour_image_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    margin-bottom: 20px;
    overflow: hidden;
}

.article_tour_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.article_tour_image_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_tour_image_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0, 0, 0, 0.4); */
    z-index: 2;
    
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0) 40%);
}

.article_tour_height {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--clr-white);
    font-size: 14px;
    font-weight: bold;
    padding-left: 25px;
    z-index: 3;
}

.article_tour_height:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 15px;
    height: 12px;
    background-image: url("/assets/images/height-icon.svg");
    background-size: cover;
}

.article_tour_header {
    color: #333;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding-bottom: 16px;
}

.article_tour_dates {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    padding-left: 25px;
    margin-top: 30px;
}

.article_tour_dates:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url("/assets/images/calendar-icon.svg");
    background-size: cover;
}

.article_neighbors {
    position: relative;
    height: 24px;
    margin-top: 50px;
}

.article_neighbors_prev {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    opacity: 0.7;
}

.article_neighbors_prev:hover {
    opacity: 1;
}

.article_neighbors_next {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    opacity: 0.7;
}

.article_neighbors_next:hover {
    opacity: 1;
}


.article_tags_cloud {
    flex: 0 0 20%;
}

.article_related-articles {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 70px;
    margin-bottom: 50px;
}

.article_related-articles_list {
    display: flex;
}

.article_related-articles_item {
    flex: 0 0 30%;
    color: #333;
    text-decoration: none;
    margin-right: 5%;
}

.article_related-articles_item:last-child {
    margin-right: 0;
}

.article_related-articles_item_date {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 7px;
}

.article_related-articles_item_image_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
}

.article_related-articles_item_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article_related-articles_item_image_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_related-articles_item_header {
    font-weight: bold;
    text-decoration: none;
    margin-top: 5px;
}

/* /blog article */

/* all reviews */

.reviews_preloader {
    display: flex;
    justify-content: space-between;
    width: 100px;
    height: 48px;
    margin-left: auto;
    margin-right: auto;
}

.reviews_preloader_dot {
    position: relative;
    width: 24px;
    height: 24px;
    border: 4px solid #f73900;
    border-radius: 50%;
    animation-name: preloader-dot;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.reviews_preloader_dot:nth-child(1) {
    animation-delay: 0;
}

.reviews_preloader_dot:nth-child(2) {
    animation-delay: 250ms;
}

.reviews_preloader_dot:nth-child(3) {
    animation-delay: 500ms;
}

@keyframes preloader-dot {
    from {
        top: 0;
    }
    
    25% {
        top: -24px;
    }
    
    50% {
        top: 0;
    }
    
    to {
        top: 0;
    }
}

.reviews-page {
    visibility: hidden;
}

.review-page {
    width: calc(33.3% - 40px);
    padding: 0 20px;
    margin-right: 40px;
    margin-bottom: 40px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s;
}

.review-page.show {
    box-shadow: 0px 0px 60px rgba(222, 51, 0, 0.4);
}

.review-page_video_header {
    position: relative;
    color: #f73900;
    font-weight: bold;
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.review-page_video_header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f73900;
}

.review-page_video_wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.review-page_video_inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.review-page_video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.review-page_author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.review-page_author_avatar {
    flex: 0 0 87px;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

.review-page_author_inst {
    position: relative;
    display: block;
    width: 87px;
    height: 87px;
    border-radius: 50px;
    overflow: hidden;
}

.review-page_author_inst:hover:before {
    font-family: 'Font Awesome 5 Brands';
    font-size: 24px;
    position: absolute;
    top: 25px;
    left: 33px;
    content: "\f16d";
    color: var(--clr-white);
    z-index: 2;
}

.review-page_author_inst:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.review-page_author_avatar img,
.review-page_author_inst img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-page_author_name {
    font-weight: bold;
}

.review-page_author_description {
    font-size: 14px;
}

/* /all reviews */

/* reviews */

.reviews-block {
    position: relative;
    padding: 5%;
    background: #f4f4f4;
}

.reviews-block_header {
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
}

.reviews-block_header-wrap {
    display: flex;
    align-items: center;
}

.reviews-block-_heading {
    margin: 0 30px 0 0;
    color: var(--clr-black);
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reviews-block_line {
    height: 1px;
    width: 40%;
    background-color: var(--clr-black);
}

.reviews-block_link-all {
    text-align: center;
}

.reviews_wrapper-heading_block {
    padding-bottom: 70px;
}

.reviews_wrapper-header_heading {
    color: var(--clr-black);
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.reviews_wrapper-header_text {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.reviews_wrapper-header_text-pad {
    margin-top: 30px;
}

.reviews-block_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.reviews-block_background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-block_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--clr-white);
    
}

.reviews_wrapper-header {
    display: flex;
    justify-content: space-between;
}

.review-block {
    flex: 0 0 calc(33.3% - 40px);
    color: #333;
    text-decoration: none;
    background: var(--clr-white);
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
}

.review-block:nth-child(2) {
    margin-left: 40px;
    margin-right: 40px;
}

.review-block_video_header {
    position: relative;
    color: #f73900;
    font-weight: bold;
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.review-block_video_header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f73900;
}

.review-block_video_wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.review-block_video_inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.review-block_video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.review-block_content_wrapper {
    width: 100%;
    
}

.review-block_content_inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-bottom: 65%;
}

.review-block_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.review-block_content_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.9) 95%, rgba(255, 255, 255, 1) 100%);
}

.review-block_open-button {
    font-size: 14px;
    color: #f73900;
    font-weight: bold;
    text-decoration: none;
}

.review-block_author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.review-block_author_avatar {
    flex: 0 0 87px;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

.review-block_author_inst {
    position: relative;
    display: block;
    width: 87px;
    height: 87px;
    border-radius: 50px;
    overflow: hidden;
}

.review-block_author_inst:hover:before {
    font-family: 'Font Awesome 5 Brands';
    font-size: 24px;
    position: absolute;
    top: 25px;
    left: 33px;
    content: "\f16d";
    color: var(--clr-white);
    z-index: 2;
}

.review-block_author_inst:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.review-block_author_avatar img,
.review-block_author_inst img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-block_author_name {
    font-weight: bold;
}

.review-block_author_description {
    font-size: 14px;
}

/* /reviews */

/* faq */

.faq {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}

.faq.dark {
    background: rgba(0, 0, 0, 0.4);
    color: var(--clr-white);
}

.faq.light {
    background: none;
    color: inherit;
}

.faq h2 {
    padding-bottom: 70px;
}

.faq_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.faq_background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq_wrapper {
    display: flex;
    flex-direction: column;
}

.question {
    display: inline-block;
    font-weight: bold;
    border-bottom: 2px dashed #f73900;
    margin-bottom: 5px;
    opacity: .7;
    cursor: pointer;
}

.question_item.open .question {
    border-bottom: none;
}

.answer {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: all 0.3s;
    opacity: .8;
}

.question_item.open .answer {
    max-height: 10000px;
    padding: inherit;
    
}

/* /faq */

/*faq -custom*/

.faq-custom_wrapper {
    background: var(--clr-black);
}

.faq-custom_header-wrap {
    padding: 30px;
    width: 100%;
    display: flex;
}

.faq-custom_header-block {
    padding: 30px;
    display: flex;
    align-items: center;
    border: 1px solid #fff
}

.faq-custom_header-block:first-child {
    border-right: 0;
    width: 35%;
}

.faq-custom_header-block:last-child {
    width: 65%;
}

.faq-custom_heading {
    color: var(--clr-white);
    font-family: 'Montserrat';
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.faq-custom_header-link {
    color: var(--clr-white);
    font-family: 'Montserrat';
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
}

.faq-custom_content-wrap {
    padding: 30px;
    display: flex;
}

.faq-custom_content-block:first-child {
    margin-right: 30px;
}

.question-custom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-white);
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    opacity: 1;
    border-bottom: none;
}

.question_item-custom {
    padding: 0 20px;
    transition: 0.5s ease-in-out;
}

.question_item-custom:focus {
    outline: 1px solid #fff;
}

.question_item-custom:hover {
    outline: 1px solid #fff;
}

.question_item-custom:active {
    outline: 1px solid #fff;
}

.question-arrow:before {
    content: '\276F';
    float: right;
    transition: 0.5s ease-in-out;
}

.question-arrow-rotated {
    transition: 0.5s ease-in-out;
    transform: rotate(90deg);
}

.answer-custom {
    color: var(--clr-white);
}

/*faq -custom*/

/*information-section custom*/

.information-custom {
    padding: 5% 5% 0;
}

.information-custom_body {
    display: flex;
}

.information-custom_content {
    margin-left: 30px;
}

.information-custom_header-text {
    margin-bottom: 30px;
}

/*information-section custom*/

/* widget */

.icon-wrapper {
    background-color: #242424;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 0;
    top: 43%;
    z-index: 10;
}

.icon-link {
    margin: 15px 15px 0;
}

.icon-link:last-child {
    margin-bottom: 15px;
}

.icon-img {
    transition: .3s ease-in-out;
    width: 30px;
}

.widget-contacts_wrapper {
    position: sticky;
    bottom: 0;
    height: 0;
    z-index: 7;
}

.widget-contacts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: -1px;
    right: 0;
    height: 50px;
    width: 640px;
    background: #012237;
    padding: 10px 30px;
}

.widget-contacts_header {
    color: var(--clr-white);
    text-transform: uppercase;
}

.widget-contacts_telegram {
    color: #229ED9;
    text-decoration: none;
    text-transform: uppercase;
}

.widget-contacts_telegram:hover {
    opacity: 0.7;
}

.widget-contacts_whatsapp {
    text-decoration: none;
    color: #25D366;
    text-transform: uppercase;
}

.widget-contacts_whatsapp:hover {
    opacity: 0.7;
}


.widget-contacts_callback {
    font-size: 16px;
    color: #f00;
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
}

.widget-contacts_callback:hover {
    opacity: 0.7;
}


.mobile_widget-contacts {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: -1px;
    height: 54px;
    width: 150px;
    background: #012237;
    padding: 10px;
}

.mobile_widget-contacts_telegram {
    font-family: 'Font Awesome 5 Brands';
    font-size: 30px;
    color: #229ED9;
    text-decoration: none;
}

.mobile_widget-contacts_telegram:after {
    content: '\f2c6';
}

.mobile_widget-contacts_whatsapp {
    font-family: 'Font Awesome 5 Brands';
    font-size: 30px;
    color: #25D366;
    text-decoration: none;
}

.mobile_widget-contacts_whatsapp:after {
    content: '\f232';
}

.mobile_widget-contacts_callback {
    font-family: 'Font Awesome Solid';
    font-size: 28px;
    color: #f00;
    font-weight: 900;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile_widget-contacts_callback:before {
    content: '\f0e0';
}

/* /widget */

.over-footer-application {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    color: var(--clr-white);
    padding-top: 90px;
    padding-bottom: 90px;
}

.over-footer-application h2 {
    padding-bottom: 70px;
}

.over-footer-application_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.over-footer-application_background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.over-footer-application_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 200px;
}

.over-footer-application_subheader {
    font-size: 14px;
    color: #f73900;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.over-footer-application_description {
    font-size: 14px;
    color: var(--clr-white);
    text-align: center;
    opacity: .5;
}

.over-footer-application_button {
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 40px;
    border-radius: 23px;
}

.footer {
    position: relative;
    flex: 0 0 auto;
    color: var(--clr-white);
    background: var(--clr-black);
    padding: 90px 10%;

}

.footer_copyrigth-vbrnd {
    position: absolute;
    right: 10%;
    bottom: 90px;
    display: flex;
    align-items: center;
}

.footer_copyrigth-link-vbrand {
    margin-right: 30px;
}

.footer_copyrigth-text:first-child {
    margin-top: 0px;
}

.footer_menu-list {
    margin: 20px 0 0;
    display: flex;
}

.footer_menu-item:not(:last-child) {
    margin-right: 15px;
}

.footer_icon-min {
    max-width: 30px;
    min-width: 20px;
    max-height: 30px;
    min-height: 20px;
}

.footer_icon-min-dzen {
    max-width: 65px;
    min-width: 65px;
    max-height: 30px;
    min-height: 20px;
}

.footer_heading-min {
    color: var(--clr-white);
    font-family: 'Montserrat';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer_menu_tel {
    margin: 30px 0 0;
}

.footer_menu_column_item {
    margin-bottom: 18px;   
}

.footer_menu_tel a {
    color: var(--clr-white);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer_menu {
    display: flex;
    justify-content: space-between;
}

.footer_menu_column {
    display: flex;
    flex-direction: column;
}

.footer_menu_column-social {
    margin: 30px 0;
}

.footer_menu_column_item {
    color: var(--clr-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer_menu_column_item a {
    color: var(--clr-white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer_menu_column_item a:hover {
    opacity: 0.7;
}

.footer_menu_column_item .footer_youtube,
.footer_menu_column_item .footer_vk, 
.footer_menu_column_item .ya_dz {
    color: #f00;
}

.footer_menu_column_item .footer_telegram,
.footer_menu_column_item .footer_whatsapp {
    color: #f00;
    text-transform: initial;
}

.footer_application {
    font-size: 12px;
    color: #f00;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
}

.footer_application:hover {
    opacity: 0.7;
}

.footer_contacts {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer_copyright {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.footer_copyright_logo {
    flex: 0 0 70px;
    margin: 0 0 15px;
}

.footer_copyright_logo img {
    height: 85px;
}

.footer_copyright_text {
    margin-left: 0;
}

.footer_copyright_text_row {
    margin: 2px;
}

.footer_yandex iframe {
    width:150px;
    height:96px;
    border:1px solid #e6e6e6;
    border-radius:8px;
}

.footer_lemur {
    display: flex;
    align-items: flex-end;
}

.footer_lemur_text {
    font-size: 12px;
    text-align: right;
    margin-right: 20px;
    
}

.footer_lemur_text a {
    color: #f00;
    text-decoration: none;
}

.footer_lemur_text a:hover {
    opacity: .7;   
}

.footer_lemur_logo {
    width: 47px;
}

.footer_lemur_logo img {
    width: 100%;
}

.up-button {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    font-size: 16px;
    color: white;
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 12;
}

.up-button.show {
    display: block;
}

/* overlay */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    transition: .3s;
    z-index: 20;
}

.overlay.show {
    position: fixed;
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: .3s;
}

.modal {
    visibility: hidden;
    opacity: 0;
    z-index: 21;
    transition: .3s;
}

.modal.show {
    display: block;
    visibility: visible;
    opacity: 1;
}

.form_wrapper {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 410px;
    background: var(--clr-white);
    border-radius: 6px;
    transform: translateX(-50%);
}

.form_wraper_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #e6e6e6;
}

.form_wraper_name {
    font-size: 16px;
}

.form_close {
    position: relative;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.form_close:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    background: #a2a2a2;
    transform: rotate(45deg);
}

.form_close:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    background: #a2a2a2;
    transform: rotate(-45deg);
}

.tour_form_wraper_head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #242424;
    padding: 15px;
}

.tour_form_wraper_header {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--clr-white);
    text-align: center;
}

.tour_form_wraper_name {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--clr-white);
    text-align: center;
}

.tour_form_wrapper_dates {
    font-size: 16px;
    color: var(--clr-white);
    text-align: center;
    opacity: .7;
}

.tour_form_close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.tour_form_close:before {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    background: var(--clr-white);
    transform: rotate(45deg);
}

.tour_form_close:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    width: 12px;
    height: 2px;
    background: var(--clr-white);
    transform: rotate(-45deg);
}

.form {
    display: flex;
    flex-direction: column;
    margin: 25px;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 3.3px 10px 0px rgba(0, 0, 0, 0.1);
}

.form_label {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.form_name {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: .8;
}

.form_input {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    background: #f5f5f5;
    padding: 12px 10px;
    border: 1px solid #f5f5f5;
    border-radius: 5px;
}

.form_input:focus {
    outline: none;
}

.form_input.error {
    border: 1px solid #f73900;
}

.form_input_error {
    position: absolute;
    top: 100%;
    left: 50%;
    font-size: 12px;
    color: #f73900;
    white-space: nowrap;
    transform: translateX(-50%);
}

.form_label_checkbox {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}

.form_checkbox {
    display: none;
}

.form_custom-checkbox {
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    width: 18px;
    height: 18px;
    background: var(--clr-white);
    border: 3px solid #242424;
    cursor: pointer;
}

.form_checkbox:checked + .form_custom-checkbox:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #242424;
    transform: translate(-50%, -50%);
}

.form_checkbox_name {
    font-size: 13px;
    text-align: center;
    margin-left: 10px;
}

.form_checkbox_name a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed #333;
}

.form_checkbox.error + .form_custom-checkbox + .form_checkbox_name {
    color: #f73900;
}

.form_text_prepayment {
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
}

.form_submit_wrapper {
    margin-bottom: 20px;
}

.form_submit {
    font-size: 16px;
    color: #000;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.form_submit.send {
    visibility: hidden;
    opacity: 0;
}

.form_agree_wrapper {
    font-size: 13px;
    text-align: center;
}

.form_agree_wrapper a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed #333;
}

.form_send-successfull_header {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.form_send-successfull_subheader {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.successfull-pay_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 21;
}

.successfull-pay {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 960px;
    background: var(--clr-white);
    border-radius: 6px;
    padding: 40px;
    transform: translateX(-50%);
}

.successfull-pay_logo {
    text-align: center;
}

.successfull-pay_header {
    font-size: 40px;
    color: #ff0000;
    font-weight: bold;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.successfull-pay_description {
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.successfull-pay_button {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 25px;
}

.successfull-pay_button a {
    font-size: 18px;
    padding-top: 10px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
}

.successfull-pay_closed {
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-align: center;
    margin-top: 30px;
    cursor: pointer;
}

/* /overlay */

.optional-tours-tanzania {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    color: var(--clr-white);
    padding-top: 90px;
    padding-bottom: 90px;
}

.optional-tours-tanzania h2 {
    padding-bottom: 70px;
}

.optional-tours-tanzania_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.optional-tours-tanzania_background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.optional-tours-tanzania_wrapper {
    margin-top: 40px;
}

.optional-tours-tanzania_buttons_wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.optional-tours-tanzania_button {
    color: #ccc;
    text-transform: uppercase;
    padding-bottom: 7px;
    border-bottom: 3px solid rgba(255, 255, 255, 0);
    cursor: pointer;
    transition: all .3s;
}

.optional-tours-tanzania_button:first-child {
    margin-right: 30px;
}

.optional-tours-tanzania_button:hover {
    color: #f73900;
    border-bottom: 3px solid #f73900;
    padding-bottom: 7px;
}

.optional-tours-tanzania_button.active {
    color: var(--clr-white);
    border-bottom: 3px solid #f73900;
    padding-bottom: 7px;
}

.optional-tours-tanzania_button.active:hover {
    color: var(--clr-white);
}

.optional-tour {
    display: none;
    justify-content: space-between;
    align-items: center;
}

.optional-tour.active {
    display: flex;
}

.optional-tour_text {
    flex: 0 0 50%;
    color: #ccc;
    text-align: justify;
    padding-right: 20px;
}

.optional-tour_text p {
    margin-top: 20px;
    margin-bottom: 20px;
}

.optional-tour_text_list {
    list-style: none;
}

.optional-tour_text_list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.optional-tour_text_list-item:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 5px;
    display: block;
    height: 12px;
    width: 5px;
    border-right: 3px solid #f73900;
    border-bottom: 3px solid #f73900;
    transform: rotate(45deg);
}

.optional-tour_button {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.optional-tour_link {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-right: 25px;
}

.optional-tour_images {
    flex: 0 0 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.optional-tour_image_wrapper {
    flex: 0 0 48%;
    overflow: hidden;
    position: relative;
    padding-bottom: 52%; /* пропорции блока определяются здесь */
}

.optional-tour_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.optional-tour_image img {
    width: 100%;
}

/* tanzania travel info */

.travel-info_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    transition: .3s;
    z-index: 20;
}

.travel-info_overlay.show{
    position: fixed;
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: .3s;
}

.travel-info_popup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 450px;
    background: var(--clr-white);
    border-radius: 6px;
    padding: 20px;
    transform: translateX(-50%);
    z-index: 21;
}

.travel-info_popup_row {
    text-align: center;
}

.travel-info_popup_header {
    font-size: 16px;
    margin-bottom: 20px;
}

.travel-info_popup_link {
    margin-bottom: 20px;
}

.travel-info_popup_link a {
    font-size: 16px;
    color: #ff0000;
}

.travel-info_popup_closed {
    font-size: 14px;
    text-decoration: underline;
    text-decoration-style: dashed;
    cursor: pointer;
}

/* /tanzania travel info */

/* enter popup */

.enter-popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.4);
    z-index: 20;
}

.enter-popup {
    position: absolute;
    top: 10%;
    left: 50%;
    width: 100%;
    max-width: 380px;
    background: var(--clr-white);
    padding: 20px 20px 30px;
    transform: translateX(-50%);
}

.enter-popup_insert {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    width: 100px;
    height: 100px;
    background: #f00;
    border-radius: 50%;
    padding: 15px;
    z-index: 3;
}

.enter-popup_image_wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 65%;
    margin-bottom: 20px;
    overflow: hidden;
}

.enter-popup_image_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.enter-popup_image_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.enter-popup_image_background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.enter-popup_description {
    font-size: 16px;
}

.enter-popup_button_wrapper {
    text-align: center;
}

.enter-popup_button {
    font-size: 14px;
    color: var(--clr-white);
    font-weight: 600;
    background: #f00;
    border-radius: 28px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 30px;
    padding-left: 30px;
}

.enter-popup_button:hover {
    opacity: 0.7;
}
.mee_r95{
        display: none;
}
/* enter popup */




/*CUSTOM STYLE DIMOVENT*/






/*HERO*/

.section-hero {
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: no-repeat url(/assets/images/bg-hero.webp) center/cover;
}

.hero-title {
    width: 50%;
}

.article-hero {
    margin-bottom: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.article-date-text {
    color: var(--clr-white);
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    font-size: 32px;
    font-family: 'Montserrat' !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.article-btn-wrap {
    display: flex;
    margin: 20px 0;
}

.hero-text {
    max-width: 675px;
    color: var(--clr-white);
}

.text-absolute {
    margin: 0 0 10px 0;
}

.article-btn {
    padding: 16px 0;
    max-height: 70px;
    width: 232px;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-family: 'Montserrat' !important;
    font-weight: 500;
    line-height: normal;
    text-transform: lowercase;
    border: none;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    color: #000;
    background-color: var(--clr-white);
}

.hero-content-wrap {
    position: absolute;
    bottom: 15%;
    display: flex;
    align-items: center;
}

.article-btn:first-child {
    margin-right: 50px;
}

.article-btn:hover {
    color: var(--clr-white);
    background-color: #000;
}

.hero-info {
    margin-right: 50px;
}

.hero-info-block span {
    display: flex;
    align-items: center;
}

.hero-label {
    position: absolute;
    bottom: 5%;
    right: 5%;
    height: auto;
    width: 20%;
}

/*HERO END*/

/*SWIPER ONE*/



/*SWIPER ONE END*/

/*PRICE SECTION*/

.section-price {
    padding: 75px 5%;
    background-color: #F4F4F4;
}

.section-price-block {
    position: relative;
    background-color: var(--clr-white);
}

.section-price-block_one {
    display: flex;
    justify-content: space-between;
}

.section-price-block_two {
    padding: 45px;
}

.price-block {
    padding: 45px 45px 45px 0;
    display: flex;
    flex-direction: column;
}

.price-youtube {
    margin-bottom: 50px;
    height: auto;
    width: 100%;
}

.article-price {
    padding: 45px;
    width: 55%;
    display: flex;
    flex-direction: column;
    background-color: var(--clr-white);
}

.price-heading {
    margin: 0 0 20px;
    font-size: 32px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.price-text {
    margin: 20px 0;
    font-family: 'Montserrat' !important;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.price-text span {
    margin-left: 30px;
    font-size: 24px;
}

.price-btn {
    margin: 15px 0;
    padding: 17px 0;
    max-height: 70px;
    width: 300px;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-family: 'Montserrat' !important;
    font-weight: 500;
    line-height: normal;
    text-transform: lowercase;
    border: none;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    color: var(--clr-white);
    background-color: #000;
}

.price-btn:hover {
    outline: 1px solid #000;
    color: #000;
    background-color: var(--clr-white);
}

.article-list {
    width: 100%;
    padding-left: 20px;
    line-height: 35px;
}

.price-block-article {
    height: 350px;
    padding: 50px 80px;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    background-color: #000;
}

.youtube-heading {
    width: 350px;
}

.price-label {
    height: auto;
    width: 70%;
}

.price-block_img-wrap {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.price-block_logo {
    height: 100%;
    width: 35%;
}

.price_gead-wrap {
    margin-top: 15px;
}

.text-gead {
    font-size: 18px;
}

/*PRICE SECTION END*/

/*swiper two*/

.mySwiperTwo {
    height: 415px !important;
}

.section-edge {
    padding: 75px 5%;
}

.swiper-wrapper {
    height: 300px !important;
}

.swiper-button-next-two {
    padding: 18px 22px;
    border-radius: 50px;
    background-color: #000;
    color: var(--clr-white) !important;
}

.swiper-button-prev-two {
    padding: 18px 22px;
    border-radius: 50px;
    background-color: #000;
    color: var(--clr-white) !important;
}

.swiper-button-next-two::after, .swiper-button-prev-two::after {
    font-size: 12px !important;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset,92%) !important;
}

.slide-edge {
    display: flex;
    flex-direction: column;
}

.heading-edge {
    margin: 24px 0;
    color: var(--clr-black);
    font-family: 'Montserrat';
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.edge-img-wrap {
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset,44%) !important;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,44%) !important;
}

.slide-edge-icon {
    width: 35px;
    height: 35px;
}

.edge-text-wrap {
    padding: 30px 0;
    height: 220px;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.edge-text {
    color: var(--clr-black);
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/*swiper two end*/

/*question*/

.section-question {
    padding: 75px 5%;
    background: no-repeat url(/assets/images/bg-rock.webp) bottom / cover;
}

.question-block {
    padding: 50px;
    background-color: var(--clr-black);
}

.question-info-wrap {
    display: flex;
    border: 1px solid #fff;
}

.qestion-heading-wrap {
    padding: 0 60px;
    display: flex;
    align-items: center;
    border-right: 1px solid #fff;
}

.question-heading {
    color: var(--clr-white);
    font-size: 32px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.question-desc {
    padding: 0 60px;
    max-width: 600px;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: lowercase;
}

.question-img-wrap {
    padding-top: 70px;
    display: flex;
    justify-content: space-between;
}

.question-img {
    object-fit: cover;
}

.acor-container {
    width: 55%;
}
.acor-container .acor-body {
    width: calc(100% - 40px);
    margin: 0 auto;
    height: 0;
    color: rgba(0, 0, 0, 0);
    background-color: #f4f4f4;
    padding: 0 30px;
    box-sizing: border-box;
    transition: color 0.5s, padding 0.5s;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 10px 16px rgba(0,0,0,0.2);
}
.acor-container .acor-body p {
    margin: 0 0 10px;
}
.acor-container label {
    cursor: pointer;
    background-color: var(--clr-black);
    display: block;
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 20px;
    width: 100%;
    color: var(--clr-white);
    box-sizing: border-box;
    z-index: 100; 
    margin: 0 0 5px;
    transition: color .35s;
}
.acor-container label:hover {
    color: var(--clr-white);
}
.acor-container input{
    display: none;
}
.acor-container label:before {
    content: '\276F';
    float: right;
}
.acor-container input:checked + label {
    color: var(--clr-white);
    background: transparent;
    border: 1px solid var(--clr-white);
    box-shadow: 0 8px 26px rgba(0,0,0,0.4), 0 28px 30px rgba(0,0,0,0.3);
}
.acor-container input:checked + label:before {
    transition: transform .35s;
    transform: rotate(90deg);
}
.acor-container input:checked + label + .acor-body {
    height: auto;
    margin-top: -5px;
    color: var(--clr-white);
    background-color: transparent;
    padding: 20px 30px 10px;
}

/*question end*/

/*table dem*/

.schedule-custom {
    padding: 75px 5%;
}

.container-custom {
    margin: 0;
    width: 100%;
}

.schedule-head-custom {
    margin-bottom: 40px;
}

.schedule_header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    padding-top: 15px;
    padding-bottom: 15px;
}

.schedule_header_cell-custom {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--clr-white);
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    line-height: normal;
}

.schedule_header_cell-custom:not(:last-child) {
    border-right: 1px solid #fff;
}

.schedule_tour_wrapper-custom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

.schedule_tour_cell-custom {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    line-height: normal;
    font-style: normal;
    font-size: 13px;
}

.schedule_price-custom {
    flex-direction: column;
}

.schedule_price_usd {
    margin-right: 15px;
}

.schedule_tour_cell-custom:not(:last-child) {
    border-right: 1px solid #000;
}

.table-btn {
    padding: 15px 10px;
    text-align: center;
    font-family: 'Montserrat';
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: lowercase;
    color: var(--clr-black);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid var(--clr-black);
    background-color: var(--clr-white);
}

#oplata {
    margin-left: 15px;
}

.table-btn:hover {
    color: var(--clr-white);
    background-color: var(--clr-black);
}

.table-btn:last-child {
    margin-left: 10px;
}

/*table dem end*/

/*review*/

.reviews-block-custom {
    position: relative;
    padding: 75px 5%;
    background-color: #f4f4f4;
}

.reviews-label {
    width: 20%;
    position: absolute;
    top: 5%;
    right: 5%;
}

.reviews-block_wrapper-custom {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    background-color: #f4f4f4;
}

.review-block_content-custom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    font-family: 'Montserrat';
    font-size: 12px;
}

.review-block-custom {
    box-shadow: 0px 5px 10px 0px rgba(34, 60, 80, 0.2);
}

.review-block_open-button-custom {
    color: var(--clr-black);
    font-family: 'Montserrat';
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: underline;
}

.review-block_video_header-custom {
    font-family: 'Montserrat';
}

.review-block_author_name-custom {
    font-family: 'Montserrat';
}

.review-block_author_description-custom {
    font-family: 'Montserrat';
}

/*review end*/

/*slider*/

.slider-dem {
    position: relative;
}

.slider-slide__list {
    list-style: circle;
    color: var(--clr-white);
}

.slider-slide-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.slide-article {
    height: 50%;
}

.slider-slide-right {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider__nav-and-tabs {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.slider-custom {
    display: block;
    width: 100%;
    height: 1080px;
    overflow: hidden;
    position: relative;
    display: flex;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0,0,0,.1)
}

.slider__slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s ease;
}

.slider__slide_active{
    opacity: 1;
}

.slider__slide:nth-of-type(odd){
    background: no-repeat url(/assets/images/slide-bg-one.webp) center/cover;
    color: #222;
}


.slider__nav-custom,
.slider__tabs {
    display: flex;
    padding: 4% 1%;
}

.slider__nav-btn {
    height: 100%;
    width: 100%;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
}

.slider__nav-btn:not(:last-child) {
    margin-right: 22px;
}

.slider__nav-custom {
    margin-right: 15px;
    margin-left: 15px;
}

.button-tab-slide {
    width: 120px;
    display: flex;
    flex-direction: column;
    padding: 5px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
}

.slider__tab {
    height: 120px;
    width: 130px;
    text-align: left;
    color: rgba(255, 255, 255, 0.70);
    transition: 0.3s ease-in-out;
}

.slider__tab:not(:last-child) {
    margin-right: 25px;
}

.slider__tab p {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.slider__tab span {
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.slider__tab:hover {
    color: var(--clr-white);
    border-top: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.slider__tab:focus {
    color: var(--clr-white);
    border-top: 5px solid #fff;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.slider-one {
    padding: 70px;
    display: flex;
    justify-content: space-between;
}

.bg-slide-one {
    background: no-repeat url(/assets/images/slide-bg-one.webp) center/cover;
}

.slider-two {
    background: no-repeat url(/assets/images/slide-bg-three.webp) center/cover;
}

.slider-three {
    background: no-repeat url(/assets/images/slide-bg-four.webp) center/cover;
}

.slider-four {
    background: no-repeat url(/assets/images/slide-bg-five.webp) center/cover;
}

.slider-five {
    background: no-repeat url(/assets/images/slide-bg-six.webp) center/cover;
}

.slider-six {
    background: no-repeat url(/assets/images/slide-bg-seven.webp) center/cover;
}

.slide-heading {
    margin: 20px 0;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Montserrat';
    line-height: normal;
    color: var(--clr-white);
}

.slide-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    font-family: 'Montserrat';
    line-height: normal;
    color: var(--clr-white);
}

.slider-img {
    /* width: 100%; */
}

.slide-map {
    height: 50%;
    width: 100%;
}

.carousel {
    height: 80vh;
}

/*slider end*/

/*CUSTOM STYLE DIMOVENT*/

/*banner in homepage*/

    .banner_wrapper {
        padding: 5%;
        background-color: #f4f4f4;
    }

    .banner_block {
        width: 100%;
    }

    .banner_grid {
        display: grid;
        grid-template-columns: 20% 20% 20% 20% 20%;
        grid-template-rows: 323px 323px 323px;
    }

    .item-one {
        padding: 42px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        font-style: normal;
        line-height: normal;
        color: var(--clr-black);
        background-color: var(--clr-white);
    }

    .banner_grid-item_heading {
        font-size: 24px;
        font-weight: 700;
    }

    .banner_grid-item_text {
        font-size: 18px;
        font-weight: 300;
    }

    .item-two {
        grid-column-start: 2;
        grid-column-end: 6;
        background: no-repeat url(/assets/images/1-min.webp) center / cover;
    }

    .item-three {
        background: no-repeat url(/assets/images/2-min.webp) center / cover;
    }

    .item-four {
        padding: 42px;
        display: flex;
        align-items: center;
        grid-column-start: 2;
        grid-column-end: 4;
        color: var(--clr-white);
        background-color: var(--clr-black);
    }

    .banner_grid-item_line {
        margin-right: 42px;
        width: 8px;
        height: 100%;
        border-radius: 5px;
        background-color: var(--clr-white);
    }

    .item-five {
        grid-column-start: 4;
        grid-row-start: 2;
        grid-row-end: 4;
        background: no-repeat url(/assets/images/5-min.webp) center / cover;
    }

    .item-six {
        grid-column-start: 5;
        grid-row-start: 2;
        grid-row-end: 4;
        background: no-repeat url(/assets/images/6-min.webp) center / cover;
    }

    .item-seven {
        background: no-repeat url(/assets/images/3-min.webp) center / cover;
    }

    .item-nine {
        grid-column-start: 2;
        grid-column-end: 4;
        background: no-repeat url(/assets/images/4-min.webp) center / cover;
    }

    .banner_info {
        padding: 30px 102px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        color: var(--clr-white);
        background-color: var(--clr-black);
    }

    .banner_info-item_heading {
        margin: 0;
        font-size: 72px;
        font-style: italic;
        font-weight: 700;
        line-height: normal;
    }

    .banner_info-item_text {
        width: 315px;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

/*banner in homepage*/

.swiper {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
}

.swiper-slide {
    padding: 30px;
    text-align: center;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #000;
    background-color: #f4f4f4;
}

.swiper-pagination-bullet {
    background: #000 !important;
}

.video-form_wrapper {
    position: relative;
    padding: 5%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    color: #f4f4f4;
    background: no-repeat url(/assets/images/anapyrta.webp) center / cover;
}

.video-form_article {
    width: 50%;
}

.video-form {
    margin-right: 5%;
    width: 420px;
}
#phone, #phone2, #phone3, #phone4, #phone5, #phone6, #phone7, #phone8, #phone9{
        width: 100%;
}
.equipment_form_client-form_field .iti{
        display: block;
}
.iti__country-name {
        color: #333;
}
.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code{
    color: #333;
}
