* {
	font-family: "Montserrat", sans-serif;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
}

body {
	margin: 0 !important;
	padding: 0 !important;
	background-color: #FAFAFA;
}

section {
	padding: 60px 0;
}

.popup_plan_wrapper {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-color: rgba(24, 24, 24, .55);
	z-index: 10000;
	backdrop-filter: blur(5px);
	padding: 15px;
	scrollbar-width: none;
}
.popup_container {
	position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
	max-height: 100vh;
    width: 100%;
    background-color: #f8f8f8;
    border-radius: 25px;
    padding: 17px;
	padding-top: 30px;
	gap: 20px;
	overflow-y: scroll;
	scrollbar-width: none;
}
.popup_container::-webkit-scrollbar , .popup_plan_wrapper:-webkit-scrollbar {
    display: none;
}
.close_btn_wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.close_popup_btn {
	width: 30px;
	height: 30px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	opacity: 0.5;
	transition: .15s;
}
.close_popup_btn:hover {
	opacity: 1;
}
.close_popup_btn span {
	position: relative;
}
.close_popup_btn span::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -1px;
	height: 20px;
	width: 3px;
	border-radius: 4px;
	background-color: #444;
	transform: rotate(45deg);
}
.close_popup_btn span::after {
	content: '';
	position: absolute;
	top: -10px;
	left: -1px;
	height: 20px;
	width: 3px;
	border-radius: 4px;
	background-color: #444;
	transform: rotate(-45deg);
}
.popup_header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.poput_title_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.popup_title {
	font-size: 35px;
	color: #3073fe;
	font-weight: 600;
	text-transform: capitalize;
}
.popup_subtitle {
	font-size: 20px;
	font-weight: 600;
	color: #f17835;
	text-transform: capitalize;
}
.popup_title_text {
	font-size: 20px;
	font-weight: 500;
	color: #333;
	text-align: center;
}
.popup_prices_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
}
.popup_price_option {
	position: relative;
	display: flex;
	padding: 10px;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: auto;
	border: 1px solid #e7e7e7;
	border-radius: 15px;
	gap: 10px;
	overflow: hidden;
	cursor: pointer;
	transform: scale(0.96);
	transition: 0.15s;
}
.active_price_option {
	box-shadow: 0px 0px 7px rgb(112 255 65);
	transform: scale(1);
}
.popup_check_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
.price_option_desc_wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.price_option_duration {
	font-size: 20px;
	font-weight: 600;
	color: #333;
}
.plans_amount {
	font-size: 14px;
	color: #797f91;
	text-transform: capitalize;
}
.popup_price_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}
.price_ticket {
	opacity: 0.1;
}
.popup_price {
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.popup_price_main {
	font-size: 27px;
	color: #333;
	font-weight: 600;
	line-height: 1;
}
.popup_price_substr {
	font-size: 12px;
	color: #6c6c6c;
}
.popup_price_discount {
	position: absolute;
	padding: 5px 0;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #ff6a6a;
	width: 100%;
}
.popup_price_discount span {
	font-size: 14px;
	color: #fff;
	text-align: center;
}
.buy_popup_btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 12px 55px;
	background: linear-gradient(125.73deg, #3038FF 0%, #308FFF 110.46%);
	border-radius: 10px;
	font-size: 20px;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: 0.15s;
}
.buy_popup_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, .25);
}
.popup_counter {
	width: 100%;
	padding: 15px;
	border: 1px solid #FFC6B5;
	border-radius: 10px;
}
.popup_counter p {
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #333;
}
.popup_counter p .popup_counter_num {
	font-weight: 600;
}
.popup_descleimer {
	background-color: #f2f2f2;
	padding: 10px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
}
.popup_descleimer p {
	font-size: 10px;
	text-align: center;
}
.popup_descleimer p a {
	color: #333;
}






.lang_switcher_wrapper {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.leng_switcher {
	position: absolute;
	top: 40px;
	z-index: 500;
	right: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: #fff;
}

.leng_switcher a {
	font-size: 17px;
	text-transform: uppercase;
	color: #fff;
	opacity: 0.7;
	text-decoration: none;
}

.leng_switcher .active_leng {
	opacity: 1;
	font-weight: 600;
}

.stop_scroll {
	overflow: hidden;
}

.section_title {
	margin-bottom: 50px;
	/*font-size: 30px;*/
    font-size:3rem;
    font-weight: 700;
	color: #333;
	font-weight: 600;
	text-align: center;
	text-transform: capitalize;
}

.hidden {
	display: none !important;
}

header {
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0;
	background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.fixed_header {
	position: fixed;
	padding: 15px;
	background: linear-gradient(180deg, #131B3A 0%, #111727 100%);
}

.fixed_header .header_links {
	font-size: 16px;
}

.fixed_header .header_logo a svg {
	width: 80px;
}

.header_logo a svg {
	width: 90px;
}

.header_nav {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.desc_menu {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

.header_links {
	font-weight: 400;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	padding-bottom: 5px;
	position: relative;
	overflow: hidden;
}

.header_links:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
	opacity: 0;
	transition: .2s;
}

.header_links:hover::after {
	bottom: 2px;
	opacity: 1;
}

.mob_menu {
	position: relative;
	z-index: 100;
	display: none;
}

.hamburger {
	padding-right: 0;
}

.hamburger-box {
	width: 35px;
	height: 23px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	background-color: #f2f2f2;
	height: 2px;
	width: 35px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
	background-color: #f2f2f2;
}

.mob_menu_links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}

.main_section {
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.9)), url(../img/bg_desc.webp);


    /*background-image: url(../img/bg_desc.webp);*/
	background-position: 100% 50%;
	background-size: cover;
	height: 100vh;
	position: relative;
	background-color: #182142;
}

.main_wrapper {
	display: flex;
	height: calc(100vh - 100px);
	/*width: 50%;*/
	min-width: 500px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 30px;
}
.main_title_wrapper {
    z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
}
.main_title {
    z-index: 9999;
	font-size: 55px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	line-height: 1;
	max-width: 500px;
}
.main_sub_title {
    z-index: 9999;
	font-size: 20px;
	color: #fff;
}

.main_contant_wrapper {
    z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

.timer_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 15px;
	color: #fff;
	font-size: 35px;
}

.time {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
	padding: 10px 25px;
	width: 111px;
	background-color: transparent;
	border-radius: 7px;
	border: 1px solid #3038FF;
	font-weight: 400;
	line-height: 1;
	font-size: 20px;
	gap: 2px;
}

.time span {
	font-size: 35px;
	font-weight: 700;
	margin-bottom: -2px;
}

.sale_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sale_container .price {
	font-size: 23px;
	font-weight: 600;
	/*color: #E1FF29;*/
    color:white;
	line-height: 1;
	margin-bottom: -7px;
	letter-spacing: 1px;
}

.sale_container .price span {
	color: #fff;
	font-size: 25px;
}

.main_sale {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 142px;
	color: #fff;
	font-weight: 600;
	line-height: 0.9;
}

.main_sale .precent {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 90px;
	font-weight: 800;
}

.main_sale .precent span {
	font-size: 32px;
	font-weight: 600;
	text-transform: uppercase;
}

.main_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 55px;
	font-size: 28px;
	font-weight: 400;
	border-radius: 15px;
	border: none;
	text-decoration: none;
	color: #fff;
	opacity: 0.9;
	width: 100%;
}

.primary_btn {
	background: linear-gradient(125.73deg, #3038FF 0%, #308FFF 110.46%);
	color: #fff;
	transition: .15s;
}

.request-loader {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 1);
}

.request-loader::after {
	opacity: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -3px;
	left: -3px;
	right: 0;
	bottom: 0;
	content: '';
	height: 100%;
	width: 100%;
	border: 3px solid #3038FF;
	border-radius: 20px;
	animation-name: ripple;
	animation-duration: 3s;
	animation-delay: 0s;
	animation-iteration-count: infinite;

	z-index: -1;
}

.request-loader::before {
	opacity: 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -3px;
	left: -3px;
	right: 0;
	bottom: 0;
	content: '';
	height: 100%;
	width: 100%;
	border: 3px solid #3038FF;
	border-radius: 20px;
	animation-name: ripple;
	animation-duration: 3s;
	animation-delay: 0.5s;
	animation-iteration-count: infinite;

	z-index: -1;
}

@keyframes ripple {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}

	100% {
		opacity: 0;
		transform: scale3d(1.2, 1.2, 1);
	}
}

.main_section-stronges {
	display: flex;
	flex-direction: row;
	margin-top: 20px;
	gap: 60px;
}

.strong_container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.strong_container svg {
	width: 60px;
	height: 65px;
}

.strong_descr {
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	text-align: left;
}

.what_you_get {
	padding: 70px 0;
	position: relative;
}
.bg_mountain {
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
	right: 0;
	opacity: 0.5;
}

.what_you_get_wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 55px;
}

.get_item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	max-width: 313px;
	gap: 10px;
}

.get_item svg {
	height: auto;
	width: 74px;
}

.get_text {
	width: 230px;
	font-size: 20px;
	font-weight: 600;
}
.section_plan {
	transition: ease-in-out .5s;

}
.plan_slider {
	width: 100%;
	/*margin-top: 60px;*/
}
.block-plan-inner{
    background-color: white;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, .25);
    border-radius: 25px;

    padding: 20px;
}
.block-plan-inner-center{
    background: linear-gradient(140.03deg, #3038FF 0.06%, #308FFF 100.06%);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, .25);
    border-radius: 25px;

    padding: 20px;
}
.plan_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*padding: 20px 15px;*/
	border-radius: 25px;
	/*box-shadow: 0px 4px 15px rgba(0, 0, 0, .25);*/
	margin: 0 10px;
	gap: 15px;
	transform: scale(0.95);
	/*background-color: #fff;*/
}

.plan_header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
}
.filter_side-container {
    display: flex
;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}
.filter_option {
    padding: 15px;
    display: flex
;
    flex-direction: column;
    background-color: #fafafa;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
}
.filter_option-title svg {
    width: 11px;
    height: auto;
    transition: .3s;
}
.rotate_arrow {
    transform: rotate(90deg);
}
.filter_option-title {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.filter_option-content {
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
    position: relative;
    width: 100%;
    height: 0%;
}
#custom-dots {

    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

#custom-dots button {
    background: transparent;
    border: 1px solid #aaa;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

#custom-dots button.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
.plan_buttons{

}
.plan_buttons h3{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 18px;
    color: #111727;
    margin-bottom: 36px;
}
.plan_buttons_container{
    background-color: #FFFFFF;
    z-index: 9;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.12) ;
    border-radius: 12px;
}
.plan_button{
    display: flex; justify-content: space-between; align-items: center;
    text-align: left;
    border-radius: 8px;
    width: 100%;
    margin: 10px 0;
    background-color: #fafafa;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12)!important;
    padding: 18px;
    color: black;
    font-weight: 400;
    font-size: 14px;
    background-color: #FFFFFF;
    border: none;
}
.plan-button-active{
    /*font-weight: 600;*/
    /*color: white;*/
    /*background-color: #3075ff;*/
}
.plan_title {
    background-color: #FFFFFF;
	padding: 6px 15px;
	border: 1px solid #3075FF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, .15);
	border-radius: 20px;
	font-size: 16px;
	font-weight: 600;
}

.plan_sale {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: center;
	font-size: 35px;
	font-weight: 700;
	color: #FF6A6A;
	line-height: 1;
	gap: 3px;
}

.plan_sale span {
	font-size: 22px;
	margin-bottom: 1px;
}

.video {
	width: 100%;
}

.video img {
	width: 100%;
	height: auto;
}

.plan_price {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	width: 100%;
}

.current_plan_price {
	font-size: 25px;
	font-weight: 700;
	color: #FF6A6A;
}
.current_plan_price_center {
    font-size: 25px;
    font-weight: 700;
    color: #e1ff29;
}

.old_plan_price {
	font-size: 25px;
	font-weight: 400;
	color: #b8b8b8;
	text-decoration: line-through;
}

.plan_bgt_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
}
.fade-out {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.fade-in {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
    .col-12.col-md-3 {
        order: -1; /* Перемещаем этот блок выше */
    }
    .container-logos{
        padding-left: 20px;
        padding-right: 20px;
    }
}


.plan_btn {
    position: relative; /* важно для :after */
    text-decoration: none;
    font-weight: 600!important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    background-color: #3075FF;
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    overflow: hidden; /* чтобы блик не выходил за края */
    transition: .2s;
}


.plan_btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(35deg);
    animation: move 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes move {
    0% {
        transform: translateX(-100%) rotate(35deg);
    }
    100% {
        transform: translateX(200%) rotate(35deg);
    }
}

.background_media {
    background-image: url("../../img/sdfsdfdsf.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px 400px;
}
.media-block{
    min-height: 500px;
}
.plan_btn_center {
    position: relative; /* важно для :after */
    overflow: hidden;
    text-decoration: none;
    font-weight: 600!important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 25px;
    border: none;
    border-radius: 20px;
    background-color: #FFFFFF;
    color: black;
    font-size: 17px;
    cursor: pointer;
    transition: .2s;
}
.plan_btn_center:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(35deg);
    animation: move 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    z-index: 2;
    pointer-events: none;
}

.plan_btn:hover {
	transform: translateY(-2px);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, .25);
}

.plan_contain {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.plan_contain_title {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

.plan_contain_list_item {
	font-size: 15px;
	color: #333;
	/*list-style-type: none;*/
	margin: 6px 0;
}
.plan_contain_list_item_center {
    font-size: 15px;
    color: #FFFFFF;
    /*list-style-type: none;*/
    margin: 6px 0;
}

.plan_contain_list_item span {
	font-weight: 600;
	margin-right: 3px;
}

/*.slick-current .plan_item {*/
/*	background: linear-gradient(140.03deg, #3038FF 0.06%, #308FFF 100.06%);*/
/*	transform: scale(1);*/
/*}*/

/*.slick-current .plan_title {*/
/*	border: none;*/
/*	background-color: #fff;*/
/*}*/

/*.slick-current .plan_sale,*/
/*.slick-current .current_plan_price {*/
/*	color: #e1ff29;*/
/*}*/

/*.slick-current .old_plan_price {*/
/*	color: #d4d4d4;*/
/*}*/

/*.slick-current .plan_btn {*/
/*	background-color: #fff;*/
/*	color: #000;*/
/*}*/

/*.slick-current .plan_contain_title,*/
/*.slick-current .plan_contain_list_item {*/
/*	color: #fff;*/
/*}*/

.plan_slider .slick-dots {
    flex-wrap: wrap;
	top: -70px;
	bottom: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 10px;
}

.plan_slider .slick-dots li {
	width: auto;
	height: auto;
	list-style-type: none;
	opacity: 1;
}

.plan_slider .slick-dots li button:before {
	display: none;
}

.plan_slider .slick-dots li button {
	display: flex;
	padding: 5px 15px;
	color: #333;
	font-weight: 400;
	font-size: 16px;
	border: none;
	border-radius: 20px;
	box-shadow: 0 3px 7px rgba(0, 0, 0, .25);
	transition: .15s;
	background-color: #fafafa;
	cursor: pointer;
	width: auto;
	height: auto;
	line-height: 1.2;
}

.plan_slider .slick-dots li button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 7px rgba(0, 0, 0, .25);
}

.plan_slider .slick-dots .slick-active button {
	box-shadow: none;
	transform: translateY(2px);
	background-color: #3075ff;
	color: #fff;
	/*font-weight: 600;*/
}

.plan_slider .slider-next {
	/*right: -60px;*/
}

.plan_slider .slider-prev {
	/*left: -60px;*/
}

.coach_slider {
	width: 90%;
}
.results_slider {
	width: 90%;
}
.results_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 20px;
	padding: 7px;
	padding-bottom: 15px;
	border-radius: 10px;
	box-shadow: 0px 4px 15px rgba(0,0,0,.25);
}
.results_video {
	border-radius: 5px;
	width: 100%;
	height: auto;
}
.results_text {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.results_name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}
.results_level {
	font-size: 16px;
	font-weight: 500;
	color: #878787;
}

.coach_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 15px;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, .25);
	gap: 15px;
	margin: 0 10px;
}

.coach_img {
	width: 150px;
	height: auto;
	border-radius: 150px;
}

.coach_name {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.coach_descr {
	font-size: 13px;
	font-weight: 400;
	color: #807f7f;
	min-height: 128px;
}

.coach_program {
	font-size: 14px;
	font-weight: 400;
	font-style: italic;
	color: #333;
	padding: 5px;
	border: 1px solid #a3bafb;
	border-radius: 4px;
}

.coach_slider .slider-next {
	right: -60px;
}

.coach_slider .slider-prev {
	left: -60px;
}

.coach_slider .slick-dots {
	bottom: -45px;
}

.section_offer-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 30px;
	background-image: url(../img/bg_offer.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center 15%;
}

.section_offer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
	padding: 10px;
	max-width: 300px;
	transition: .2s;
}

.offer_top_offset {
	margin-top: 80px;
}

.offer_img_grp {
	position: relative;
	padding-top: 44px;
	width: 233px;
}

.main_offer_img {
	width: 100%;
	height: auto;
}

.bg_offer_img {
	position: absolute;
	z-index: -1;
	top: -12px;
	left: 15px;
	width: 100%;
}

.offer_title {
	text-transform: uppercase;
	color: #333;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}

.offer_descr {
	color: #727272;
	font-size: 15px;
	text-align: center;
}

.section_review {
	position: relative;
	padding-bottom: 120px;
	padding-top: 100px;
}

.section_review .review_gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 140px;
	background-image: url(../img/review_gradient.svg);
	background-position: 50% 100%;
	z-index: 1;
}

.slide_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 10px;
	max-width: 665px;
	margin: auto;
}

.slider-avatar {
	width: 164px;
	height: auto;
	border-radius: 165px;
}

.slider-text {
	position: relative;
	font-weight: 500;
	font-style: italic;
	font-size: 14px;
	color: #767676;
	line-height: 1.6em;
	text-align: center;
	width: 100%;
}

.coma_review {
	position: absolute;
	top: -28px;
	left: 0;
	width: 50px;
	height: auto;
	z-index: -1;
}

.slider-name {
	font-size: 30px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
}

.slick-dots li {

	width: 10px;
	height: 10px;
	opacity: 0.5;
	transition: .15s;
	margin: 0 3px;
}
.custom-dot-btn{
    margin: 5px;
    padding: 5px 15px;
    color: #333;
    font-weight: 400;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .25);
    transition: .15s;
    background-color: #fafafa;
    cursor: pointer;
    width: auto;
    height: auto;
    line-height: 1.2;
}
.custom-dot-btn.active{
    transform: translateY(2px);
    background-color: #3075ff;
    color: #fff;

}
.slick-dots li button {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background-color: #3073FE;
	width: 100%;
	height: 100%;
}

.slick-dots li button:before {
	content: '';
}

.slick-dots .slick-active {
	width: 30px;
	opacity: 1;
}
.filter_side-title {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}
.slick-list {
    padding: 4px!important;
    /*padding: 100px 0px 0px!important ;*/
	overflow-y: visible;
    padding: 0px!important;
	overflow-x: clip;
}

.height_offer {
	height: 1500px;
}

.section_offer-wrapper {
	position: sticky;
	top: calc(50% - 230px);
}

.slider-prev,
.slider-next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 70px;
	background-color: transparent;
	border: none;
	opacity: 0.7;
	cursor: pointer;
	position: absolute;
	top: 50%;
	z-index: 1;
	transform: translateY(-50%);
	transition: .15s;
}

.slider-prev {
	left: 0;
}

.slider-next {
	right: 0;
}

.slider-prev:hover,
.slider-next:hover {
	opacity: 1;
}

.slider-arrow_button {
	width: 25px;
	height: auto;
}

.equpment_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

.equpment_text_side {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 480px;
	gap: 20px;
	transition: ease-in-out 0.7s;
}

.equpment_title_wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.equpment_title {
	color: #333;
	font-size: 30px;
	font-weight: 600;
	text-transform: uppercase;
}

.equpment_subtitle {
	font-size: 18px;
	color: #595959;
	font-weight: 400;
}

.equpment_list_side {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0px 4px 25px rgba(0, 0, 0, .25);
	width: 100%;
	max-width: 585px;
	gap: 30px;
	transition: ease-in-out 0.7s;
}

.equpment_list_side::before {
	content: '';
	width: 1px;
	height: 90%;
	background-color: rgba(0, 0, 0, .25);
	position: absolute;
	top: 5%;
	right: 50%;
}

.equpment_list_wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.equpment_list_name {
	width: 100%;
	text-align: center;
	font-size: 25px;
	font-weight: 600;
	color: #333;
}

.equpment_list {
	width: 230px;
}

.equpment_item {
	list-style-type: none;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	margin: 5px 0;
	height: 39px;
}

.equpment_icon {
	width: 31px;
	height: auto;
}

.equpment_name {
	font-size: 17px;
	color: #333;
}

.equpment_divider {
	flex-grow: 1;
	height: 100%;
	width: 1px;
	background-color: rgba(0, 0, 0, .25);
}



.quiz_container {
	margin-top: 80px;
}

.quiz_wrapper {
	width: 100%;
	max-width: 800px;
	padding: 25px;
	border-radius: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, .25);
}

.quiz_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 20px;
	max-width: 700px;
}

.quiz_text h2 {
	font-size: 25px;
	font-weight: 600;
	color: #333;
}

.quiz_text p {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	line-height: 1.4em;
}

.quiz_img {
	max-width: 300px;
}

.quiz_img img {
	width: 100%;
	height: auto;
}



footer {
	background-color: #111727;
}

.footer_wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 40px 0;
	gap: 20px;
}

.footer_top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.footer_logo_wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer_logo_wrapper svg {
	width: 95px;
	height: auto;
}

.footer_logo_wrapper span {
	color: #fff;
	font-size: 12px;
}

.footer_btn {
	padding: 10px 15px;
	color: #fff;
	font-size: 18px;
	border: none;
	border-radius: 9px;
	cursor: pointer;
	text-decoration: none;
}

.footer_divider {
	width: 100%;
	height: 2px;
	background-color: #303dff;
	opacity: 0.2;
}

.footer_middle {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}

.footer_links_wrapper {
	display: flex;
	flex-direction: row;
	gap: 25px;
}

.footer_links_container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer_links_title {
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}

.footer_links_container ul li {
	margin: 3px;
	font-weight: 400;
	font-size: 15px;
	opacity: 0.8;
	transition: .15s;
	list-style-type: none;
}

.footer_links_container ul li:hover {
	opacity: 1;
}

.footer_link {
	color: #fff;
	text-decoration: none;
}

.footer_mail {
	text-decoration: none;
	color: #a5c2ff;
}

.privacy_wrapper {
	padding: 15px 0;
	background-color: #1b2339;
}

.privacy_container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.privacy_container span {
	color: #f2f2f2;
	font-size: 14px;
}

.privacy_container span a {
	font-weight: 600;
	color: #fff;
	text-decoration: none;
}

.privacy_container span a:hover {
	text-decoration: underline;
}

.switcher {
	display: none;
	width: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	gap: 15px;
	margin-bottom: 10px;
}

.switcher button {
	padding: 8px 20px;
	background-color: #fff;
	color: #333;
	font-size: 17px;
	text-transform: uppercase;
	border: 1px solid #dedede;
	border-radius: 5px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.switcher .blue {
	background-color: #3038FF;
	color: #fff;
	border: none;
}

.switcher .diactive_switcher {
	box-shadow: 0 3px 5px rgba(0, 0, 0, .25);
	transform: translateY(-3px);
	border: none
}

.quiz_btn {
	position: relative;
	overflow: hidden;
	font-size: 18px;
	width: auto;
	padding: 12px 55px;
}

.quiz_btn span {
	position: relative;
	z-index: 10;
}

.quiz_btn:after {
	background: #fff;
	content: "";
	height: 155px;
	left: -75px;
	opacity: .2;
	position: absolute;
	top: -50px;
	transform: rotate(35deg);
	width: 50px;
	z-index: 1;
	animation: move 2.55s cubic-bezier(0.19, 1, 0.22, 1) infinite;
	animation-fill-mode: forwards;
}

@keyframes move {
	0% {
		left: -75px;
	}

	40% {
		left: 120%;
	}

	100% {
		left: 120%;
	}
}

.caunter_wrapper {
	font-size: 20px;
	text-align: center;
	color: #333;
	margin-bottom: 30px;
}

.caunter_wrapper span {
	font-size: 20px;
	font-weight: 600;
	color: #3075ff;
}

.pulse {
	animation: pulse 0.5s;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.alert_wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: none;
	gap: 15px;
	border-radius: 10px;
	background-color: #d2daff;
	padding: 10px;
}

.alert_contant {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #000;
	font-size: 15px;
	gap: 5px;
}

.alert_circle {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	background-color: #fff;
	color: #333;
	width: 20px;
	height: 20px;
	border-radius: 20px;
	font-weight: 600;
}

.alert_circle_x {
	position: relative;
}

.alert_circle_x::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 6px;
	width: 8px;
	height: 2px;
	border-radius: 2px;
	background-color: #333;
	transform: rotate(45deg);
	z-index: 2;
}

.alert_circle_x::after {
	content: '';
	position: absolute;
	top: 9px;
	left: 6px;
	width: 8px;
	height: 2px;
	border-radius: 2px;
	background-color: #333;
	transform: rotate(-45deg);
	z-index: 2;
}



@media screen and (max-width: 1399.98px) {
	.plan_btn {
		font-size: 15px;
		padding: 10px 20px;
	}
	.results_slider {
		width: 100%;
	}
	.results_level {
		font-size: 14px;
	}
}

@media screen and (max-width: 1199.98px) {
	.results_slider {
		width: 90%;
	}
	.main_section {
		height: 800px;
	}

	.main_wrapper {
		height: calc(800px - 60px);
	}

	.main_title {
		font-size: 50px;
	}

	.plan_sale {
		font-size: 30px;
	}

	.main_section-sub_title {
		font-size: 18px;
	}

	.main_btn {
		font-size: 20px;
		padding: 15px 50px;
	}

	.main_section-buttons {
		width: 100%;
		max-width: 550px;
	}

	.strong_descr {
		font-size: 17px;
	}

	.get_item {
		width: 240px;
	}

	.get_item svg {
		width: 55px;
		height: auto;
	}

	.get_text {
		width: 175px;
		font-size: 15px;
	}

	.plan_slider {
		width: 100%;
	}

	.plan_btn {
		font-size: 15px;
		padding: 10px 19px;
	}

	.quiz_btn {
		font-size: 18px;
		padding: 12px 55px;
	}

	.quiz_text {
		max-width: 510px;
	}
}
.main_section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.main_section video {
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Чтобы видео не перекрывало контент */
}

@media screen and (max-width: 991.98px) {
    .main_section {
        background: none;
    }

    .main_section video {
        display: block;
    }
}
@media screen and (max-width: 991.98px) {
	.coach_descr {
		min-height: 176px;
	}
	.results_slider {
		width: 90%;
	}
	.main_section {
		/*background-image: url(../img/bg_mob.webp);*/
		/*background-position: 50% 25%;*/
		min-height: 100vh;
	}

	.main_wrapper {
		align-items: center;
		height: calc(100vh - 60px);
		min-height: 800px;
		width: 100%;
		padding-bottom: 40px;
		/*justify-content: flex-end;*/
	}

	.main_title, .main_sub_title {
		text-shadow: 0px 0px 20px #000;
	}

	.strong_container {
		min-width: 224px;
	}

	.what_you_get_wrapper {
		gap: 35px;
	}

	.section_title {
		font-size: 25px;
	}

	/*.plan_slider .slick-dots {*/
	/*	gap: 1px;*/
	/*}*/

	.plan_slider .slick-dots li button {
		font-size: 14px;
	}

	.plan_title {
		font-size: 18px;
	}

	.plan_content li span {
		max-width: 260px;
		font-size: 15px;
	}

	.plan_content li svg {
		width: 15px;
	}

	.buy_plan_btn {
		width: 115px;
		text-align: center;
	}

	.close_popup_btn {
		top: -50px;
		left: -25px;
	}

	.apply_btn_container {
		gap: 10px;
	}

	.apply_btn_container a,
	.remove_filter_btn {
		font-size: 13px;
		padding: 10px 15px;
	}

	.section_offer-wrapper {
		background-position: center 75%;
	}

	.offer_img_grp {
		width: 180px;
	}

	.bg_offer_img {
		left: 7px;
	}

	.coach_slider {
		width: 100%;
	}

	.equpment_title {
		font-size: 20px;
	}

	.equpment_subtitle {
		font-size: 16px;
	}

	.equpment_list {
		width: 180px;
	}

	.equpment_item {
		height: 35px;
	}

	.equpment_icon {
		width: 27px;
	}

	.equpment_name {
		font-size: 14px;
	}

	.quiz_text {
		max-width: 300px;
		gap: 20px;
	}

	.quiz_btn {
		font-size: 18px;
		padding: 12px 55px;
	}

	.quiz_text h2 {
		font-size: 23px;
	}

	.quiz_text p {
		font-size: 16px;
	}

	.slider_descr_program {
		font-size: 13px;
	}
}

@media screen and (max-width: 767.98px) {

	.bg_mountain {
		display: none;
	}
	.section_plan {
		padding: 0;
	}
	.results_slider {
		width: 100%;
	}
	header,
	.fixed_header {
		padding: 5px 0;
	}

	.leng_switcher {
		top: 15px;
	}

	.mob_menu {
		display: block;
	}

	.desc_menu {
		display: none;
	}

	.mob_nav.open {
		visibility: visible;
		transform: translateX(-100%);
		z-index: -1;
	}

	.mob_nav {
		position: fixed;
		top: 0;
		min-height: 500px;
		height: 100%;
		z-index: 1035;
		left: 100%;
		max-width: 400px;
		width: 100%;
		padding-right: 2rem;
		padding-left: 2rem;
		padding-top: 40px;
		padding-bottom: 40px;
		overflow-y: auto;
		visibility: hidden;
		background: linear-gradient(180deg, #131B3A 0%, #111727 100%);
		transition: transform .3s ease-in-out, visibility .3s ease-in-out;
		box-shadow: -10px 0 15px rgba(255, 255, 255, .2);
	}

	.main_wrapper {
		min-width: auto;
		min-height: auto;
		/*padding-bottom: 20%;*/
        /*margin-top: 30px;*/
	}

	.main_title {
		font-size: 35px;
		max-width: 360px;
	}

	.main_contant_wrapper {
		gap: 15px;
	}

	.timer_wrapper {
		gap: 10px;
	}

	.time {
		padding: 7px 18px;
		font-size: 16px;
		width: 95px;
	}

	.time span {
		font-size: 30px;
	}

	.sale_container .price {
		font-size: 16px;
	}

	.sale_container .price span {
		font-size: 20px;
	}

	.main_sale {
		font-size: 100px;
	}

	.main_sale .precent {
		font-size: 55px;
	}

	.main_sale .precent span {
		font-size: 22px;
	}

	.plan_slider {
		margin-top: 70px;
	}

	/*.plan_slider .slick-dots {*/
	/*	flex-wrap: wrap;*/
	/*	gap: 10px;*/
	/*	top: -75px;*/
	/*}*/

	/*.plan_slider .slick-dots li button {*/
	/*	font-size: 16px;*/
	/*}*/


	.plan_title {
		font-size: 17px;
	}

	.plan_subtitle {
		font-size: 14px;
	}

	.plan_price {
		font-size: 37px;
	}

	.plan_price_descr span {
		font-size: 13px;
	}

	.buy_plan_btn {
		width: 140px;
	}

	.section_offer-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.offer_top_offset {
		margin-top: 0;
	}

	.offer_img_grp {
		width: 240px;
	}

	.section_offer-wrapper {
		background-image: none;
	}

	.height_offer {
		height: 1180px;
	}

	.coach_slider {
		width: 90%;
	}

	.equpment_wrapper {
		flex-direction: column;
	}

	.equpment_title_wrapper {
		align-items: center;
	}

	.equpment_title,
	.equpment_subtitle {
		text-align: center;
	}

	.equpment_img {
		display: none;
	}

	.privacy_container {
		flex-direction: column;
		gap: 15px;
	}

	.privacy_container span {
		text-align: center;
	}

	.switcher {
		display: flex;
	}

	.quiz_wrapper {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 30px;
	}

	.quiz_btn {
		font-size: 18px;
		padding: 12px 55px;
	}

	.quiz_text {
		max-width: 450px;
		align-items: center;
	}

	.quiz_text h2 {
		font-size: 21px;
	}

	.quiz_text p {
		font-size: 15px;
		text-align: center;
	}

	.slider_program {
		max-width: 340px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 575.98px) {
	.coach_descr {
		min-height: 115px;
	}
	.results_slider {
		width: 90%;
	}
	.main_section {
		height: 100vh;
		min-height: 667px;
	}

	.main_section-buttons {
		flex-direction: column;
		gap: 15px;
	}

	.time {
		width: 80px;
	}

	.main_section-stronges {
		margin-top: 0;
		gap: 15px;
	}

	.what_you_get_wrapper {
		gap: 15px;
	}

	.get_item {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		width: 150px;
		min-height: 87px;
		margin-bottom: 15px;
	}

	.get_item svg {
		width: 45px;
	}

	.get_text {
		width: 100%;
		text-align: center;
		font-size: 13px;
	}

	.strong_container {
		min-width: auto;
	}

	.strong_container svg {
		width: 35px;
		height: 35px;
	}

	.strong_descr {
		font-size: 13px;
	}

	.plan_content li {
		margin: 7px 0;
	}

	/*.plan_slider .slick-dots {*/
	/*	gap: 6px;*/
	/*}*/

	.plan_slider .slick-dots li {
		margin: 0;
	}

	.plan_slider .slick-dots li button {
		font-size: 13px;
	}

	.coach_slider {
		width: 100%;
	}

	.slider-avatar {
		width: 120px;
	}

	.equpment_list {
		width: 100%;
	}

	.equpment_icon {
		width: 24px;
	}

	.footer_middle {
		flex-direction: column;
		gap: 20px;
	}
	.popup_header {
		gap: 10px;
	}
	.popup_title {
		font-size: 30px;
	}
	.popup_subtitle {
		font-size: 17px;
	}
	.popup_title_text {
		font-size: 17px;
	}
	.price_option_duration {
		font-size: 17px;
	}
}
body2 {
    color: var(--base-color);
    padding: 1rem;
    margin: 0;
    min-height: 110vh;
    line-height: 1.6;
    /*font-family: muli, sans-serif;*/
    /*font-weight: 300;*/
    /*font-style: italic;*/
    font-size: 1.125rem;
}


main {
    visibility: hidden;
}

main {
    max-width: 1400px;
    margin: 1.5rem auto;
    display: grid;
    gap: 1rem;
}

@media (min-width: 800px) {
    main {
        grid-template-columns: 1fr 3fr;
        gap: 2rem;
    }
}

img,
video,
a {
    display: block;
    /*height: 100%;*/
}
a.plan_btn:hover{
    color:black;
}

article a {
    position: absolute;
    left: 0;
    right: 0;
}

img {
    max-width: 100%;
    width: 100%;
    /*object-fit: cover;*/
}

video {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.grid {
    display: grid;
    grid-gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(13rem, max-content);
    position: relative;
}

@media (min-width: 1024px) {
    .grid {
        grid-auto-rows: minmax(16rem, max-content);
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.grid article {
    border-radius: 20px;
    --max: 0;
    position: relative;
    overflow: hidden;
}

article:not(.details) button,
article:first-child button {
    display: none;
}

article:first-child p:last-of-type {
    margin: 0;
}

.description {
    color: white;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1rem, 2.5vmin, 2.25rem);
}

article.details {
    grid-row: span 2;
    grid-column: span 2;
}

.description {

}

.details-view {
    color: white;
    opacity: 0;
    transform: translateY(100%);
}

.article-6 {
    --overlayH: 47;
    --overlayS: 92%;
    --overlayL: 32%;
}

.article-2 {
    --overlayH: 353;
    --overlayS: 34%;
    --overlayL: 58%;
}

.article-5 {
    --overlayH: 136;
    --overlayS: 62%;
    --overlayL: 25%;
    --overlayH: 176;
    --overlayS: 49%;
    --overlayL: 16%;
}

.featured-section {
    padding: 4rem 0;
}
.featured-v1 {
    background-color: #f8f9fa;
}
.featured-v2 {
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
}
.featured-v3 {
    /*background-color: #212529;*/
    /*color: white;*/
}
.featured-logo {
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.featured-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}
.featured-v3 .featured-logo {
    filter: grayscale(100%) brightness(2);
}
.featured-v3 .featured-logo:hover {
    filter: grayscale(0) brightness(1);
}
.article-card {
    background-color: #FFFFFF;
    z-index: 9;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    transition: transform 0.3s ease;
    height: 100%;
}
.article-card:hover {
    transform: translateY(-5px);
}

.bggg{
    background-color: #3075FF!important;
}
.carousel-control-next-icon{
    background-image: url("../img/arrow_slider_next.svg");
}
.carousel-control-prev-icon{
    background-image: url("../img/arrow_slider_prev.svg");
}
.inner-card-featured{
    height: fit-content;
    padding: 10px;
}
.card-title{
    font-size: 13px;
    font-weight: 600;
}
.card-text{
    min-height: 160px;
    font-size: 13px;
}
.logo_featured{
    height: auto;
    max-height: 50px;
    margin-right: 15px;
    width: 100%;
    max-width: 130px;
}
.svg_check{
     height: 18px;
}
.label-gaps{
    gap: 10px;
    color: #6c6c85;
}
.text-muted{
    font-size: 13px;
}
.container-logos{
    /*padding-left: 50px;*/
    /*padding-right: 50px;*/
}
.gap-colls{

}
.gap-colls .col-3{
    padding: 20px;
}
.label-gaps svg{
    min-width: 10px;
}
.carousel{
    min-height: 260px;
}
.col-6.col-md-3.d-flex.justify-content-center.align-items-center{
    margin-top: 40px;
}
/*@media (max-width: 768px) {*/
/*    .container-logos{*/
/*        padding-left: 20px;*/
/*        padding-right: 20px;*/
/*    }*/
/*}*/
.stories.carousel .story > .item-link > .info .name{
    font-size: unset!important;
}
.media{
    width: unset;
}

.diffClass{
    background-color: #ffe229;
}

.modal2-content {
    padding: 60px 40px 60px;
    background: #FFFFFF;
    border-radius: 14px;
    border: 0;
}

.modal2-content {
    padding: 0;
}

.modal2-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
}

.modal2-content {
    padding: 60px 40px 60px;
    background: #FFFFFF;
    border-radius: 14px;
    border: 0;
}

.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10000000;
}

.btn-close {
    position: absolute;
    /*top: 40px;*/
    /*right: 40px;*/
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url('../../img/close_btn.svg') center / 1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5;
}

.mailchimp_btn {
    background: #308FFF;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    display: inline-block;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    padding: 16px;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    border: 0;
}

.mailchimp_input {

    background: #F0F0F1;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #111727;
    border: 0;
    width: 100%;
}

.modal2-body {
    /*padding: 1rem;*/
}

.modal2 {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5); /* затемнение */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal2-dialog {
    max-width: 500px;
    margin: 10rem auto;
}

.modal2-content {
    width: 100%;
    border: none;
    border-radius: 10px;
    background-color: #fff;

}
@media (max-width: 767.98px) {
    .modal-content {
        padding: 24px 24px;
    }
}
.media {
    width: unset;
}
.show{
    display: block!important;
}
.main_section-sale{
    color:white;
    font-size: 25px;
    /*font-weight: 600;*/
    padding-bottom: 25px;
}
.find_a_programm{

}
@media (max-width: 578px) {
    .main_section-sale{
        font-size: 15px;
        padding-bottom: 20px;
    }
    .find_a_programm{
        text-align: center;
    }
}
.diffClass{
    background: yellow;
}
.modal-dialog-centered{
    display: block;
}
