#wait_top{display:none!important}
.breadcrumbs{
    color: #aaa;
    padding-top: 30px;
    padding-bottom: 30px;
}
.breadcrumbs a {
    color: #aaa;
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.breadcrumbs a:hover {
    text-decoration: none;
    border-bottom-color: #aaa;
}
body {
    font: 16px "Mont", sans-serif;
}
.form__input {
    display: block;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 10px 10px 10px 20px;
    -webkit-transition:0.5s border ease;
    -o-transition:0.5s border ease;
    transition:0.5s border ease;
}
select.form__input{
	-webkit-appearance:none;-moz-appearance:none;appearance:none;
    background: url(/local/templates/acv/images/icon-triangle-down.svg) no-repeat calc(100% - 5px) center / 6px 6px;
	
}
.product-preview__price {
    display: flex;
}
textarea.form__input{
	resize:none;
	height:110px;
}
textarea.form__input_resize{
    resize:vertical;
    height:auto;
    min-height: 63px;
}
.form__input:focus{
    border-color:#626262;
}
.form__input.complete{
    border-color:green;
}
.form__input.error{
    border-color:#e5232f;
	background-image:url(../images/icon-warning.svg);
	background-repeat:no-repeat;
	background-position:calc(100% - 15px) center;
	background-size: 20px 20px;
}
.form__input-error-text {
    color: #e5232f;
    font-size: 14px;
    display: none;
}
.form__input.error + .form__input-error-text{
	display:block;
}


.form__label {
    display: block;
    margin: 0 0 10px;
}
.form__label span.required{
    color:red;
}

.form__field {
    margin-bottom: 15px;
}

.form__button {
    text-align: center;
    display: block;
    outline: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
    border: 1px solid #626262;
    background: #626262;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    width: 100%;
    border-radius: 5px;
    padding: 10px 5px;
    cursor: pointer;
}

.form__button:hover {
    background: #e5232f;
    border-color: #e5232f;
	text-decoration:none;
	color:#fff
}
.product-preview__tags {
    /*position: absolute;*/
}
.product-preview__tags_static{
	position:static;
    min-height: 27.5px;
	margin-bottom:10px;
}
.form__button._dark:not(:hover) {
    background: #19222a;
}
.form__button._bordered:not(:hover) {
    background: transparent;
	color:#19222a;
}

.radiobox {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0;
}

.radiobox__input {
    display: none;
}

.radiobox__text {
    display: block;
    padding-left: 30px;
    position: relative;
}

.radiobox__text:before {
    width: 20px;
    height: 20px;
    border: 1px solid #cccccc;
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -10px;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.radiobox__text:after {
    width: 14px;
    height: 14px;
    background:#e5232f;
    position: absolute;
    content: '';
    left: 3px;
    top: 50%;
    margin-top: -7px;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    opacity:0;
}
.radiobox__input:checked + .radiobox__text:before{
    border-color:#e5232f
}
.radiobox__input:checked + .radiobox__text:after{
    opacity:1;
}
.radiobox__input.error + .radiobox__text {
    color: #e5232f;
}
.radiobox__input.error + .radiobox__text:before {
    border-color: #e5232f;
}

.form__input + .chosen-container .chosen-single {
    display: block;
    width: 100%;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 10px 10px 20px;
    -webkit-transition: 0.5s border ease;
    -o-transition: 0.5s border ease;
    transition: 0.5s border ease;
    height: auto;
    background: #fff;
}

.form__input + .chosen-container-single .chosen-single div b {
    background-position: 0 13px;
    margin-right: -2px;
}

.form__input + .chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 13px;
}

.form__input + .chosen-container-single .chosen-single div {
    right: -2px !important;
}

.form__input.error + .chosen-container .chosen-single{
    border-color:#e5232f
}


.button{
	text-transform:uppercase;
	border:1px solid #242424;
	background:#242424;
	outline:none;
	box-shadow:none;
	padding: 8px 30px;
	display:block;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
	border-radius: 20px;
	font: 18px "Mont", sans-serif;
    font-weight: bold;
	color:#fff;
	cursor:pointer;
	width:100%;
	text-align:center;
	text-decoration:none !important;
}
.button:hover,
.button:focus{
	background:#fff;
	color:#000;
}


.notifyjs-acv-base {
    width: 350px;
    border-radius: 5px;
    background-color: #fff;
    overflow:hidden;
    -webkit-box-shadow:0px 2px 3px rgba(0, 0, 0, 0.2);
            box-shadow:0px 2px 3px rgba(0, 0, 0, 0.2)
}

.notify__title {
    min-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 10px;
}
.notify__close {
    position: absolute;
    right: 5px;
    width: 20px;
    height: 20px;
    top: 5px;
    opacity: 0.6;
    z-index: 5;
    cursor:pointer;
}
.notify__close:before{
    content:'';
    position:absolute;
    width:14px;
    height:3px;
    background:#fff;
    right: 3px;
    top: 9px;
    z-index:20;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg);
}
.notify__close:after{
    content:'';
    position:absolute;
    width:14px;
    height:3px;
    background:#fff;
    right: 3px;
    top: 9px;
    z-index:20;
    -webkit-transform:rotate(-45deg);
        -ms-transform:rotate(-45deg);
            transform:rotate(-45deg);
}
.notify__text {
    padding: 10px 10px;
    font-size: 14px;
    line-height: 1.3;
    min-height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.notifyjs-acv-error .notify__title{
    background:#dc3545;
}
.notifyjs-acv-success .notify__title{
    background:#28a745;
}
.product__not-available {
    max-width: 430px;
    margin: 15px 0 0 0;
    text-align: center;
}
.product__not-available-link {
    margin: 0;
    text-transform: initial;
    font-weight: 700;
    width: auto;
    height: auto;
    transition: 0.5s all ease;
    padding: 0;
    line-height: 1.3;
    min-width: unset;
    position: static;
    font-size: 16px;
    cursor:pointer;
}
.product__not-available-link:hover {border-color: transparent;}

.product__slider-item img{
	display:block;
	max-width:100%;
}

.product__slider-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
-webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;
}

.product__slider {
    padding-bottom: 0px;
}

.product__slider-arr{
    position: static;
	opacity:1 !important;
    width: 20px;
    height: 20px;
    background-size: 50%;
    border-radius: 50%;
    background-color: #d8d8d8;
    margin:0 20px;
	background-image:none;
	
	  display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    color: #fff;
	
}
.product__slider-arr img {
    display: block;
	max-width: 9px;
    height: 12px;
}
.product__slider-next{
	transform:rotate(-180deg);
}
.product__slider-pagination {
    position: static;
}
.product__slider-pagination .swiper-pagination-bullet{
    margin:0 5px;
	background-color:#bfbfbf;
	opacity:1;
	width:6px;
	height:6px;
}
.product__slider-pagination .swiper-pagination-bullet-active{
    background-color:#d8d8d8;
}

.card-tovar__linked {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -5px 30px;
}

.card-tovar__linked-item a {
    font-size: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: 1px solid #8c8c8c;
    padding: 5px;
    background: #fff;
	
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.card-tovar__linked-item a:hover,
.card-tovar__linked-item a.active{
	border-color:#e60d2e;
}

.card-tovar__linked-item {
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
	margin-bottom:5px;
}

.card-tovar__linked-item img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.product__slider-footer {position: relative;margin-top:20px}

.product__slider-footer .socials-tovar-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
}
.ZoomContainer {
	display:none;
}
.product__slider-wrapper {
    width: 100%;
}
.card .card-tovar p.name a {
    color: #333333;
    font: 17px "Mont", sans-serif;
}
.mt-4 a {
    color: #333333;
    font: 17px "Mont", sans-serif;
}
.tovar-desc-wrapper iframe{
	width:100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.inner-banner{	
	/*position:absolute;*/
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	text-align:center;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	width:100%;
	height:100%;
	background-size:cover;
	background-position:center;
	-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;
	padding:40px 0;
	height:600px;
}
.inner-banner p{
    color: #fff;
    font: 90px "Mont", sans-serif;
    font-weight: bold;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
}
.section-banner{
    overflow: hidden;
    min-height: 360px;
    padding: 150px 0 30px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
	
    background-color: #191919;
}
.section-banner h1 {
    color: #fff;
    font: 72px "Mont", sans-serif;
    font-weight: bold;
    letter-spacing: 11px;
}
.section-banner p {
    color: #fff;
    font: 16px "Mont", sans-serif;
    font-weight: 100;
    letter-spacing: 2px;
    margin-top: 6px;
}
.text-grey{
	color:#7f7f7f;
}
.text-grey:hover{
	color:#7f7f7f;
}
.cart-empty font.errortext{
	color:#7f7f7f !important;
}


.popup-cart{
    max-width:640px;
}

.popup-cart__title{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #80868e;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    max-width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    margin:-5px 0 25px 0
}

.popup-cart__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom:30px;
}


.popup-cart__image {
    width: 50%;
}

.popup-cart__info {
    width: 50%;
    padding-left: 10px;
}

.popup-cart__image img {
    display: block;
    max-width: 100%;
}

.popup-cart__name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup-cart__info p {
    font-size: 16px;
}

.popup-cart__price {
    font-size: 24px;
    font-weight: 700;
}

.popup-cart__footer {
    text-align: center;
}

.popup-cart__button .btn {
    margin: 0 auto 10px;
	background:#7e7e7e;
	border:1px solid #7e7e7e !important;
}
.popup-cart__button .black-btn {
    margin: 0 auto 10px;
	background:#1f1f1f;
	border:1px solid #1f1f1f !important;
}
.popup-cart__button .btn:hover{
	background:#fff;
	color:#000;
}

.popup-testing {
    max-width: 490px;
    width: 100%;
    background: #e5e5e5;
    padding:30px 25px;
}

.popup-testing__title {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.popup-testing__content {
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.popup-testing__content p {
    margin: 0;
}
.popup-testing__content a {
    color: #000;
    font-weight: 700;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
    border-bottom: 1px solid transparent;
}

.popup-testing__content a:hover {
    border-color: #000;
    text-decoration: none;
}

.popup-testing__footer {
    text-align: right;
}

.popup-testing .fancybox-close-small{
    padding:0;
    color:#7f7f7f;
    right:5px;
    top:5px;
}
.popup-testing__footer{
	max-width:200px;
	margin-left:auto;
}
.popup-testing__footer .button{
	padding:8px 0;
}
.header__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__control {
    margin-left: 25px;
}

.header__control-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor:pointer;
    text-decoration: none !important;
	color: #fff;
    font: 12px "Mont", sans-serif;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.header__control-link:hover{
	color:#767676;
}
.header__control-link svg,
.header__control-link img{
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.header__control-link:hover svg,
.header__control-link:hover img{
	opacity:0.5;
}
.header__control-cart:hover .header__control-cart-num,
.header__control-cart.active .header__control-cart-num{
	color:#fff;
}
.header__control-link-text{
	margin-left:10px;
}
.header__control-cart-icon-container {
    position: relative;
}
.header__control-cart-num {
    position: absolute;
    font-size: 10px;
    top: 3px;
    color: #000;
    width: calc(100% - 3px);
    height: 15px;
    text-align: center;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.header__control-cart img {
    width: 25px;
}
.header__control-where img{
	max-width:20px;
}

.auth-block__icon {
    max-height: 22px;
    width: 23px;
}

.auth-block {
    position: relative;
}

.auth-block__logout{
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    display: none;
	width:150px;
	background:#e5e5e5;
	padding:20px;
	z-index:20;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.auth-block__logout:before{
	position:absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 11px 7px 11px;
	border-color: transparent transparent #e5e5e5 transparent;
	margin-left:0;
	left:auto;
	right:10px;
	margin-left:0px;
	content:'';
	top:-7px;

}



.checkout__group-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 30px;
}

.checkout__radio{
    cursor:pointer;
    margin:0;
}
.checkout__radio-input {
    display: none;
}

.checkout__radio-text {
    position: relative;
    display: block;
    padding-left: 25px;
}

.checkout__radio-text:before {
    width: 16px;
    height: 16px;
    border: 1px solid #d9d9d9;
    border-radius:50%;
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    margin-top: -8px;
    background:#fff;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.checkout__radio-text:after {
    width: 8px;
    height: 8px;
    background:#000;
    border-radius:50%;
    position: absolute;
    content: '';
    left: 4px;
    top: 50%;
    margin-top: -4px;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    opacity:0;
}
.checkout__radio-input:checked + .checkout__radio-text:before{
    border-color:#e6d7b1;
    background:#fffbd6;
}
.checkout__radio-input:checked + .checkout__radio-text:after{
    opacity:1;
}

.checkout__field {
    margin-bottom: 15px;
}

.checkout__group-person-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	margin-bottom:10px;
}
.checkout__group-person-type .checkout__control{
    margin-right:25px;
}

.checkout__group {
    margin-bottom: 40px;
}

.checkout {
    margin: 40px 0 60px;
}
.checkout__inner{
	max-width:840px;
}


.checkout__label {
    display: block;
    margin: 0;
    border-radius: 5px;
    border: 1px solid #ced4da;
    overflow: hidden;
    padding-top: 10px;
}

.checkout__input {
    border: none;
    display: block;
    padding: 0 20px 10px 20px;
	width:100%;
}
select.checkout__input{
	border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: none !important;
	-webkit-appearance:none;-moz-appearance:none;appearance:none;
}

.checkout__label-text {
    font-size: 12px;
    padding: 0 20px 5px 20px;
    display: block;
}


.checkout__delivery {
    margin-bottom: 15px;
}

.checkout__delivery-label {
    border-radius: 5px;
    border: 1px solid #d8dde1;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 20px;
    -webkit-transition:0.5s all ease;
    -o-transition:0.5s all ease;
    transition:0.5s all ease;
}
.checkout__delivery .checkout__delivery-input:checked + .checkout__delivery-label{
    border-color:#000;
}

.checkout__delivery-name {
    font-weight: 500;
    color: #000;
    margin: 0 0 10px;
    font-size: 16px;
}

.checkout__delivery-price {
    margin: 0 0 10px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}

.checkout__delivery-description {
    font-size: 14px;
}

.checkout__delivery-label:after,
.checkout__delivery-label:before {
    display: none !important;
}
.checkout__payment-logo {
    height: 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 15px;
	margin:15px auto;
	max-width:140px;
}




.checkout__cart {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
	margin-bottom:40px;
}
.checkout__cart th {
    background: #f5f5f5;
    font-weight: 400;
    padding: 10px 20px;
}
.checkout__cart td{
    padding: 15px 20px;
}

.checkout__cart-image {
    width: 115px;
    height: 115px;
    border: 1px solid #d5dfe6;
    border-radius: 5px;
    overflow: hidden;
}

.checkout__cart-image a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
}

.checkout__cart-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.checkout__cart-name a {
    color: #000;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.checkout__cart-name a:hover {
    border-color: #000;
    color: #000;
    text-decoration: none;
}
.checkout__cart .itemphoto{
	max-width:140px;
}
.checkout__confirm h3 {
    margin-bottom: 10px;
	font-family:"Mont", sans-serif;
    font-weight: bold;
}

.checkout__confirm p {
    line-height: 1.3;
}

@media screen and (min-width:1600px){
	.auth-block__logout{
		left: -35px;
		right:auto;
	}
	.auth-block__logout:before{
		left:50%;
		margin-left:-11px;
		right:auto;
	}
}
.auth-block__logout.active{
	display:block;
}

.auth-block__logout-menu-item {
    display: block !important;
	margin-bottom:15px;
}

.auth-block__logout-menu {
    padding: 0;
    margin: 0;
}

.auth-block__logout-menu-item a {
    font-size: 15px;
    color: #000;
	text-decoration:none !important;
}
.auth-block__logout-menu-item a:hover {
    font-weight: 700;
}
.auth-block__logout-footer .button {
    font-size: 10px;
    padding: 6px 0px;
}
.auth-block__logout-footer .button:hover{
	background-color:#fff;
}
.home-banner__new {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin: 0 0 15px;
	font-weight:700;
	font-family:'Mont';
}
.home-section__button{
	width:200px;
	margin:0 auto;
}
.home-section__button a{
	width:100%;
	text-transform:uppercase;
	font-size:16px;
}
.home-section__button a:hover{
	background:#fff;
	color:#000;
	border-color:#000;
}
.home-section__link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
	z-index:10;
}
.personal {
    margin-top: -3rem;
}
.personal__menu {
    padding: 90px 10px 90px 35px;
    background: #cccccc;
	height:100%;
}

.personal__menu-link {
    color: #000;
    padding: 15px 0;
    display: block;
    max-width: 220px;
    border-bottom: 1px solid #fff;
    position: relative;
	text-decoration:none !important;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.personal__menu-link:hover{
	color:#000;
}
.personal__menu-title{
	/*
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
	*/
}
.personal__menu-link:hover .personal__menu-title{
	font-weight:700;
}
.personal__menu-num {
    position: absolute;
    color: #fff;
    background: #e5222f;
    line-height: 24px;
    padding: 0 5px;
    right: 0;
}

.personal__menu-item:last-child a {
    border-bottom: 0;
}


.personal-orders__menu {
    padding: 0 0 0 0px;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.personal-orders__menu-item {
    margin-right: 40px;
}

.personal-orders__menu-link {
    background: #dfdfdf;
    display: block;
    font-size: 14px;
    color: #000;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    position: relative;
    text-align: center;
    width: 160px;
    padding: 2px 30px 2px 0;
}
.personal-orders__menu-link:hover,
.personal-orders__menu-link.active{
    background:#626262;
    color:#fff;
    text-decoration:none;
}
.personal-orders__menu-link span {
    position: absolute;
    right: 0;
    color: #fff;
    background: #e5222f;
    min-width: 25px;
    padding: 0 5px;
    top: 0;
    line-height: 25px;
}


.personal-orders {
    padding-bottom: 60px;
}
.personal-orders__order-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
	-ms-flex-wrap:wrap;flex-wrap:wrap;
}

.personal-orders__order-item {
    padding: 0 10px;
	margin-bottom:10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
}

.personal-orders__order-item img {
    display: block;
    max-width: 100%;
}

.personal-orders__body td, 
.personal-orders__body th {
    padding: 20px 10px;
    border-top: 1px solid #cccccc;
    vertical-align:top;
    font-size:14px;
}
.personal-orders__body {
    margin-top: 25px;
}
.personal-orders__body table{
    width:100%;
    border-bottom: 1px solid #cccccc;
}

.personal-orders__body th:nth-child(2), 
.personal-orders__body td:nth-child(2) {
    max-width:300px;
}

.personal-orders__order-info {
    font-size: 12px;
}

.personal-orders__order-info p {
    margin-bottom: 10px;
}


.personal-orders__pay {
    text-decoration: none;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    color: #fff;
    background: #626262;
    display: block;
    padding: 5px 0 7px;
    text-align: center;
    border: 1px solid #626262;
    outline: none;
    cursor: pointer;
}

.personal-orders__pay:hover {
    color: #626262;
    background: transparent;
    text-decoration: none;
}

.personal-orders__order-link {
    text-decoration: none !important;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    color: #000000;
}

.personal-orders__order-link:hover {
    color: #e60d2e;
}


.personal-order {
    border-top: 1px solid #cccccc;
    padding-top: 20px;
    margin-bottom: 80px;
}

.personal-order__title {
    font-weight: 700;
    margin-bottom: 20px;
    min-height: 40px;
}

.personal-order__info p {
    margin: 0 0 5px;
}

.personal-order__items {
    margin-top: 30px;
    margin-bottom: 30px;
}

.personal-order__summary {
    text-align: right;
}

.personal-order__summary p {
    margin: 0;
}

.personal-order__items td, .personal-order__items th {
    border: 1px solid #cccccc;
    padding: 5px;
    font-size: 14px;
    text-align: center;
}
.personal-order__items td:first-child, 
.personal-order__items th:first-child{
    max-width:390px;
}
.personal-order__items table {
    width: 100%;
}

.personal-order__product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
}

.personal-order__product-title {
	padding-left:20px;
    margin: 0;
    width: calc(100% - 130px);
}

.personal-order__product-title a {
    color: #000;
    border-bottom: 1px solid;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}

.personal-order__product-title a:hover {
    border-color: transparent;
    text-decoration: none;
}

.personal-order__product-thumb {
    width: 130px;
}

.personal-order__product-thumb a {
    display: block;
}

.personal-order__product-thumb img {
    display: block;
    max-width: 100%;
}

.personal-profile__menu {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack:justify;
    -ms-flex-pack:justify;
        justify-content:space-between;
    list-style: none;
margin:0 0 30px;
overflow:auto;
}

.persona-profile__menu-item {
    cursor: pointer;
margin-bottom:5px;
    font-size: 14px;
    width: 150px;
    text-align: center;
    background: #dfdfdf;
    padding: 5px 10px;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
	white-space:nowrap;
}

.persona-profile__menu-item:hover,
.persona-profile__menu-item.active {
    color: #fff;
    background: #626262;
}

.personal-profile__photo{
	margin-bottom:20px;
}
.personal-profile__photo-holder {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background-color: #d0d0d0;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
	cursor:pointer;
}

.personal-profile__photo-button {
    display: block;
    margin: 0;
}

.persona-profile__photo-text {
    text-align: center;
}
.persona-profile__photo-text.active{
	color:#e5222f;
	cursor:pointer;
}

.personal-profile {
    margin-bottom: 70px;
}
.personal-profile__group{
	display:none;
}
.personal-profile__group.active{
	display:block;
}
.personal-profile__photo-del {
    max-width: 130px;
    margin: 10px auto 0;
}
.checkout__summary {
    width: 100%;
}



.checkout__print {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    background: #ececec;
    width: 250px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 20px;
    border-radius: 5%;
	cursor:pointer;
}

.checkout__print span {
    display: block;
    margin-left: 14px;
}

.checkout__group-text {
    font-size: 16px;
    line-height: 1.5;
}


.cart__row {
    padding: 30px 0;
    border-top: 1px solid #e8e9ea;
}

.cart {
	max-width:840px;
	margin: 40px 0;
}

.cart__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
		position:relative;
}

.cart__image {
    width: 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.cart__info {
    width: calc(100% - 200px);
    padding-left: 30px;
}

.cart__image img {
    display: block;
    max-width: 100%;
}

.cart__name {
    margin: 0 0 15px;
}

.cart__name a {
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    color: #000;
    border-bottom: 1px solid;
}

.cart__name a:hover {
    border-color: transparent;
    color: #000;
    text-decoration: none;
}

.cart__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.cart__quantity {
    margin-right: 15px;
}

.quantity__input {
    text-align: center;
    min-width: 80px;
    display: block;
    padding: 5px 10px;
    border: 1px solid #e8e9ea;
    border-radius: 3px;
    color: #52595f;
}

.quantity {
    position: relative;
}

.quantity__control {
    height: 100%;
    width: 25px;
    display: block;
    position: absolute;
    top: 0;
}
.quantity__control:before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    background:#52595f;
    width:11px;
    margin-left:-5px;
    height:1px;
}
.quantity__control.plus {
    right: 0;
}
.quantity__control.minus {
    left: 0;
}
.quantity__control.plus:after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    background:#52595f;
    height:11px;
    width:1px;
    margin-top:-5px;
}
.cart__articul{
	font-size:14px;
	margin-bottom:5px;
	color:#8895a0;
}



.cart__delete {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 0;
    top: 0;
}
.cart__delete:before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    background:#cbcdd0;
    width:15px;
    margin-left:-7px;
    height:1px;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg)
}
.cart__delete:after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    background:#cbcdd0;
    height:15px;
    width:1px;
    margin-top:-7px;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg)
}
.cart__items{
	margin-bottom:40px;
    border-bottom: 1px solid #e8e9ea;
}
.cart__coupon-coupons{
	margin-bottom:20px;
}
.cart__coupon{
	margin-bottom:15px;
	position:relative;
}
.cart__coupon-remove {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 0;
    top: 0;
	cursor:pointer;
}
.cart__coupon-remove:before{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    background:#cbcdd0;
    width:15px;
    margin-left:-7px;
    height:1px;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg)
}
.cart__coupon-remove:after{
    content:'';
    position:absolute;
    top:50%;
    left:50%;
    background:#cbcdd0;
    height:15px;
    width:1px;
    margin-top:-7px;
    -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
            transform:rotate(45deg)
}
.cart__coupon-wrapper {
    position: relative;
	margin-bottom:20px;
}
.cart__coupon-name {
    font-size: 12px;
    margin-bottom: 10px;
}
.cart__coupon-button {
    position: absolute;
    display: block;
    width: 55px;
    height: 100%;
    right: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.cart__coupon-button img {width: 20px;}

.cart__summary-prices{
	margin-bottom:30px;
}
.cart__summary-total {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 18px;
}

.cart__summary-total span:last-child {
    font-weight: 700;
}

.cart__summary-control {
    margin-bottom: 15px;
}
.bonus-history{
	margin-bottom:40px;
}
.bonus-history table {
    width: 100%;
}

.bonus-history td, .bonus-history th {
    border-top: 1px solid #cccccc;
    padding: 15px 0;
}

.bonus-history td a {
    transition: 0.5s all ease;
    color: #000;
    border-bottom: 1px solid;
}

.bonus-history td a:hover {
    border-color: transparent;
    color: #000;
    text-decoration: none;
}



.new-profile {
    margin-bottom: 50px;
}

.new-profile__preview p {
    line-height: 1.5;
    margin: 0 0 30px;
}

.new-profile .form__control {
    max-width:350px;
}

.choosebox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -5px;
}

.choosebox__text {
    font-size: 12px;
    display: block;
    text-transform: uppercase;
    color: #fff;
    width: 80px;
    line-height: 24px;
    background: #8e8e8e;
    text-align: center;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border-radius: 25px;
    cursor: pointer;
}

.choosebox__item {
    padding: 0 5px;
}
.new-profile__radio {
    margin-bottom: 40px;
}

.choosebox__text:hover,
.choosebox__input:checked + .choosebox__text {
    background: #242424;
}
.profile__preview{
	margin-bottom:30px;
}

.contacts-form{
	position:relative;
    padding: 0px 20px;
}
.contacts-form p{
    color: #7f7f7f;
    font: 16px "Mont", sans-serif;
    font-weight: 300;
    text-align: center;
    margin-bottom: 13px;
}
.contacts-form textarea.form__input{
	height:60px;
}
.contacts-form .form__input{
	padding:5px 10px;
	font-size:14px;
}
.contacts-form__success{
	position:absolute;
	top:0;
	left:0;
	display:none;
	width:100%;
	height:100%;
}
.contacts-form__success-inner{
	background:#eeeeee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
	-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;
    text-align: center;
    padding: 20px;
	width:100%;
	height:100%;
}
.contacts-form__success p {
    margin: 0 0 20px;
    color: #000;
    line-height: 1.5;
    font-size: 18px;
}

.contacts-form__success a {
    display: block;
    background: #fff;
    width: 120px;
    margin: 0 auto;
    color: #000;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    padding: 7px 0 11px;
}

.contacts-form__success a:hover {
    text-decoration: none;
    background: #e5232f;
    color: #fff;
}

.page-heading {
    background-color: #272727;
    color: #fff;
    text-align: center;
    padding: 28px 0 24px;
}

.page-heading + .breadcrumbs {
    padding-top: 0;
}

.page-heading__inner {
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
}

.page-heading__back {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-family: "TTLakesCompressed";
    font-size: 25px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    color: #7C7C7C;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

.page-heading__back:hover {
    color: #C5052B;
    text-decoration: none;
}

@media screen and (max-width: 991.98px) {
    .page-heading__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        padding-right: 0;
    }
    .page-heading__back {
        position: static;
        font-size: 20px;
        margin-bottom: 18px;
    }
}

.page-heading_catalog {
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
    height: 340px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.page-heading h1 {
    font-family: "Mont", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 36px;
    line-height: 1;
	margin:0;
}
.page-heading_catalog h1{
	font-size:67px;
}

.product-preview {
    height: 100%;
    border-bottom: 1px solid #9c9c9c;
}

.product-preview__inner {
    height: 100%;
    position: relative;
}

.product-preview-col {
    margin-bottom: 30px;
}

.product-preview__heading{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
	position:relative;
	z-index:10;
}
.product-preview__data {
	/*
    position: absolute;
	*/
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-preview__image {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
	max-height:270px;
    object-fit: contain;
    -webkit-transition:0.5s all ease;
    -o-transition:0.5s all ease;
    transition:0.5s all ease;
}
.product-preview:hover .product-preview__image{
    -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
}

.product-preview__thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.product-preview__thumb._photo {
    /*padding: 0;*/
}

.product-preview__thumb._photo img {
    max-height: 356px;
    width: 100%;
    object-fit: cover;
	transform:none !important;
}


.product-preview__name {
    flex: 1 1 auto;
    font-family: "Mont", sans-serif;
    font-weight: bold;
    font-size: 17px;
    line-height: 1.2;
}

.product-preview__model {
    font: 30px "Mont", sans-serif;
    font-weight: bold;
    margin-top: 20px;
}

.product-preview__title {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.product-preview__stars {
    margin-bottom: 20px;
}

.product-preview__tag {
    font-size: 11px;
    font-family: "Mont", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 7px;
    background: #242424;
    color: #fff;
    padding: 4px 10px 2px;
    width: auto;
}
.product-preview__tag_violet{
    background:#E5222F;
}
.product-preview__tag_purple{
    background:#E5222F;
}

.product-preview__price {
    position: absolute;
    top: calc(100% - 40px);
    font: 17px "Mont", sans-serif;
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.product-preview__price .product__price-old{
	font-size:14px;
}

.product-preview__button {
    text-align: center;
    position: absolute;
    width: 100%;
    top: calc(100% - 115px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.product-preview__button a {
    max-width: 200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.product-preview:hover .product-preview__button{
    opacity:1;
    visibility:visible;
}
.product-preview__head-thumb {
    position: relative;
    height: 100%;
}

.product-preview__thumb2{
	display:none;
}
@media screen and (min-width:768px){
	
	.product-preview__thumb2 {
		display:block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: calc(100% - 50px);
		z-index: 100;
		transition: 0.5s all ease;
		opacity: 0;
		visibility:hidden;
		font-size:0;
		display:block;
	}

	.product-preview__thumb2-img {
		display: block;
		width: calc(100% + 31px);
        margin-left: -15px;
		height: 100%;
		object-fit: cover;
	}

	.product-preview:hover .product-preview__thumb2{
		opacity: 1;
		visibility:visible;
	}
}

.catalog-section {
    margin-bottom: 50px;
}
.catalog-section__pagination{
	max-width:200px;
	width:100%;
	margin:0 auto;
}
.element-hidden {
    opacity: 0;
}
.loadmore{
	position:relative;
}
.loadmore a {
    padding-left: 0;
    padding-right: 0;
}
.loadmore a:hover{
	background:#7e7e7e;
	border-color:#7e7e7e;
	color:#fff;
}

.catalog-filter {
    height: 100%;
    background: #f4f4f4;
    padding: 25px 30px;
}

.catalog-filter__heading {
    font-size: 17px;
    text-transform: uppercase;
    font-family: "Mont", sans-serif;
    font-weight: bold;
    margin-bottom: 25px;
}

.catalog-filter__group-heading {
    border-bottom: 1px solid #959595;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.catalog-filter__group-title {
    display: block;
    font-size: 18px;
    font-family: "Mont", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}

.catalog-filter__group {
    margin-bottom: 30px;
}

.catalog-filter__categories a {
    font-size: 17px;
    color: #272727;
    font-family: "Mont", sans-serif;
    font-weight: bold;
}

.catalog-filter__categories p {
    margin: 0 0 5px;
}

.catalog-filter__radio {
    margin: 0;
    position: relative;
    cursor: pointer;
}

.catalog-filter__radio-input {
    display: none;
}

.catalog-filter__radio-text {
    display: block;
    font-size: 17px;
    color: #242424;
    font-family: "Mont", sans-serif;
    font-weight: 400;
    padding-left: 35px;
    position: relative;
}

.catalog-filter__radio-text:before {
    content: '';
    position: absolute;
    border: 2px solid #a6a6a6;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: -9px;
}

.catalog-filter__radio-text:before {
    content: '';
    position: absolute;
    border: 2px solid #a6a6a6;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-top: -9px;
}
.catalog-filter__radio-text:after {
    content: '';
    position: absolute;
    background:#242424;
    left: 4px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: -5px;
    -webkit-transition:0.5s all ease;
    -o-transition:0.5s all ease;
    transition:0.5s all ease;
    opacity:0;
    visibility:hidden;
}
.catalog-filter__radio-input:checked + .catalog-filter__radio-text:after{
    opacity:1;
    visibility:visible;
}


.catalog-filter__field {
    margin-bottom: 7px;
}

.catalog-filter__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -7px;
	position:relative;
}

.btn-gray,
.btn-grey{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
    color: #fff;
    background: #7e7e7e;
    border-color: #7e7e7e;
	outline:none !important;
	box-shadow:none !important;
	border-radius:20px;
	font-family:"Mont", sans-serif;
    font-weight: bold;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
	font-size:16px;
	font-weight:700;
}
.btn-gray:hover,
.btn-grey:hover {
	background:#000;
	border-color:#000;
	color:#fff;
}
.catalog-filter__button {
    padding-left: 7px;
    padding-right: 7px;
}
.catalog-filter__button .btn{
	text-transform:uppercase;
}

.catalog-filter__loader {
    position: absolute;
    width: 40px;
    right: 0;
    top: 50%;
    margin-top: -26px;
	pointer-events:none;
	display:none;
}

.catalog-filter__loader img {
    display: block;
    max-width: 100%;
}

.loadmore__loader{
	right:-60px;
}


.catalog-filter__toggler {
	margin-bottom: 20px;
}

.catalog-filter__toggler a {
	background: #242424;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	width: 150px;
	border-radius: 20px;
	color: #7e7e7e;
	fill: #7e7e7e;
	text-transform: uppercase;
	font-weight: 700;
	padding: 8px 0;
	border:none;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
	font-size:16px;
}
.catalog-filter__toggler a:hover{
	color:#7e7e7e;
	border:none;
	outline:none;
	text-decoration:none;
}
.catalog-filter__toggler span {
	display: block;
	margin-right: 10px;
}
.catalog-filter__toggler svg{
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}
.catalog-filter__toggler a.active svg {
	-webkit-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
			transform: rotate(-180deg);
}


.auth{
	padding:40px 0;
}
.auth__inner{
	max-width:420px;
	margin:0 auto;
}
.auth__foot {
    margin-top: 20px;
    padding-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: 1px solid #d4d5da;
    margin-left: -10px;
    margin-right: -10px;
}

.auth__button {
    width: auto;
    min-width: 200px;
    margin: 0 auto;
}

.auth__foot span {
    display: block;
    padding: 0 10px;
}

.auth__foot a {
    font-size: 12px;
    color: #000;
    font-family: "Mont", sans-serif;
    font-weight: bold;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border-bottom: 1px solid;
}

.auth__foot a:hover {
    border-color: transparent;
    text-decoration: none;
}
.auth__recaptcha {
    width: 304px;
    margin: 0 auto;
}
.starrequired{color:red}
.auth__radiobox a {
    color: #000;
    transition: 0.5s all ease;
    border-bottom: 1px solid transparent;
}

.auth__radiobox a:hover {
    text-decoration: none;
    border-color: #000;
}

.auth__radiobox :before {
    top: 5px;
    margin: 0;
}

.auth__radiobox :after {
    top: 8px;
    margin: 0;
}
.auth__form-register{
	max-width:450px;
}
.auto-text-top {
    font-family: "Mont", sans-serif;
	max-width: 620px;
    margin: 0 auto;
}
.auth__success {
    text-align: center;
    font-family: "Mont", sans-serif;
    font-size: 24px;
    margin-bottom: 50px;
}
.auth__success-button{
	display:inline-block;
}



.product__buybutton{
    background: #000;
	border:1px solid #000;
    width: 100%;
    max-width: 430px;
    border-radius: 50px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font: 18px "Mont", sans-serif;
    font-weight: bold;
    letter-spacing: 3px;
	
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
    text-decoration: none !important;
}
.product__buybutton:hover{
    text-decoration: none !important;
    color: #000;
    background: #fff;
	border:1px solid #000;
}
.product__buybutton_disabled{
	background:#000;
	pointer-events:none;
	
}
.product__buybutton-img{
    margin-right: 10px;
	stroke:#fff;
	-webkit-transition:0.5s all ease;
	-o-transition:0.5s all ease;
	transition:0.5s all ease;
}

.product__buybutton:hover .product__buybutton-img{
	stroke:#000;
}

.product__tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.product__tags .product-preview__tag {
    margin: 0 0 0 10px;
}

.product__tags .stars-wrapper {
    margin: 5px 15px 0 0;
}
.product__price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 35px 0 25px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
}

.product__price-old {
    margin-right: 15px;
    color: #a8a8a7;
    font-size: 21px;
    text-decoration: line-through;
    font-family: "Mont", sans-serif;
}

.product__price-current {
    font-size: 36px;
    font-family: "Mont", sans-serif;
    line-height: 1;
}
.form__input-description {
    font-size: 14px;
    color: #909aa1;
    font-family: "Mont", sans-serif;
    font-weight: 300;
}
.teamacv{
	max-width:1110px;
}
.teamacv__group{
	margin-bottom:40px;
}
.team-acv__heading {
    font-family: "Mont", sans-serif;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
}

.teamacv__group-name {
    margin-bottom: 10px;
    font-size: 24px;
    font-family: "Mont", sans-serif;
}
.form__input-description .filesize {
    color: red;
    font-family: "Mont", sans-serif;
}
.teamacv__conditions {
    text-align: center;
    margin-bottom: 40px;
}

.teamacv__conditions h3 {
    margin: 0 0 10px;
    font-family: "Mont", sans-serif;
    color: #fff;
    background: #7a7a7a;
    font-size: 30px;
    padding: 2px 0;
}

.teamacv__conditions h4 {
    font-family: "Mont", sans-serif;
    font-weight: bold;
    line-height: 2;
}
.teamacv textarea{
	height:220px;
}
.teamacv__text{
	margin-top:-30px;
    font-size: 18px;
}
.teamacv__text p,
.teamacv__text li{
    color: #6c6c6c;
}
.team-acv__offer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 40px;
}
.teamacv__group-row-subtitle2{
	margin-top:10px;
}
.team-acv__offer span {
    display: block;
    width: 80px;
    color: red;
    font-family: "Mont", sans-serif;
    font-size: 77px;
}

.team-acv__offer h4 {
    font-family: "Mont", sans-serif;
    font-weight: bold;
    line-height: 1.4;
}

.teamacv__group-row-heading {
    margin-bottom: 10px;
}
.teamacv__group-row-title {
    font-family: "Mont", sans-serif;
    font-weight: bold;
}
.teamacv__text ol {
    padding: 0;
    margin: 0 0 25px 17px;
}

.teamacv__text .teamacv__group-name {
    font-family: "Mont", sans-serif;
    font-weight: bold;
}

.teamacv__promo {
    margin: 50px 0;
}

.teamacv__promo h4 {
    color: #fff;
    background: #7a7a7a;
    font-family: "Mont", sans-serif;
    padding: 5px 10px;
}

.teamacv__promo h5 {
    font-family: "Mont", sans-serif;
    font-weight: bold;
}

.teamacv {
    margin-bottom: 60px;
}

.teamacv .form__control {
    width:250px;
}


.product__offers-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin: 0 -5px;
    list-style: none;
}

.product__offers-col {
    padding: 0 5px;
    margin-bottom: 10px;
}

.product__offers-item {
    display: block;
    cursor: pointer;
    margin: 0;
}

.product__offers-item-thumb img {
    display: block;
    max-width: 40px;
    height: auto;
}

.product__offers-item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #e5e5e5;
    padding: 5px 5px;
    -webkit-transition:0.5s all ease;
    -o-transition:0.5s all ease;
    transition:0.5s all ease;
    border-radius: 4px;
    width: 100px;
}
:checked + .product__offers-item-content{
    border-color: #8c8c8c;
}

.product__offers-item-name {
    display: block;
    font-weight: 500;
    margin-left: 10px;
}

.product__offers-item-thumb {
    display: block;
}

.product__offers {
    margin-bottom: 15px;
}

.product__offers-item-color {
    width: 30px;
    height: 30px;
    border: 1px solid #8c8c8c;
    border-radius: 2px;
    position: relative;
}

.product__offers-item-color:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #e5222f;
    border-radius: 50%;
    margin-top: -5px;
    margin-left: -5px;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    opacity: 0;
}
:checked + .product__offers-item-color{
    border-color:#e5222f;
}
:checked + .product__offers-item-color:after{
    opacity:1;
}

@media screen and (min-width:992px){
	.product-preview-home {
		margin-bottom:0;
	}
}
@media screen and (min-width:767px){
	.product-preview-home .product-preview {
		border: none;
		position:relative;
	}

	.product-preview-home  .product-preview__price {
		bottom:0;
		top: auto;
	}

	.product-preview-home .product-preview__thumb {
		padding-bottom:46px;
        padding-left: 20px;
        padding-right: 20px;
	}

	.product-preview-home  .product-preview__name {
		min-height:80px;
	}
   .product-preview__name {
        /*min-height:80px;*/
    }
	.product-preview__name_short{
		min-height:40px;
	}
	.product-preview-home .product-preview:after {
		content:'';
		position:absolute;
		left:-15px;
		top:80px;
		width:1px;
		height:105px;
		background:#959595;
	}
	
	
	
}




@media screen and (min-width:992px){
	header .nav-item:last-child .submenu-wrapper{
		margin-left:-160px;
	}
	.submenu-wrapper-support{
		padding:0;
	}
	.nav-item .sub-menu-support {
		border-left: none;
		display: flex;
		margin-left: -600px;
		width:auto;
		padding:60px 0;
	}
	.nav-item .sub-menu-support li {
		padding-left: 20px;
		border-left: 1px solid #767676;
		white-space: nowrap;
		margin-right: 60px;
		margin-bottom:0;
	}
}


.catalog-filter__subcategorties {padding: 0 0 0 15px;}

.catalog-filter__subcategorties-item a {font-family: "Mont", sans-serif;font-size: 14px;}

@media screen and (max-width:1400px){
	.inner-banner p {
		font-size: 60px;
	}
	.product-preview__inner{
		height: 100%;
	}
}
@media screen and (max-width:991px){
	.product-preview__image{
		max-height:160px;
	}
}
@media screen and (max-width:991px){
	
	.page-heading h1 {
		font-size: 26px;
	}
	.page-heading_catalog {
		height: auto;
	}
	
	.inner-banner p {
		font-size: 60px;
	}

	.inner-banner {
		height: 250px;
		position: static;
	}

	header {
		height: auto;
	}
	.section-banner{
		padding:30px 0;
		min-height:auto;
	}
	
	

	.header__control-mobile {
		margin-top: 33px;
	}

	.auth-block__authorized {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
			-ms-flex-align: center;
				align-items: center;
	}

	.auth-block__authorized-item {
		margin-left: 20px;
		padding-left: 20px;
		border-left: 1px solid #4d4d4d;
	}

	.header__control-link {
		font-size: 14px;
	}

	.header__controls-mobile {
		padding-bottom: 40px;
	}
	
	.home-banner__new{
		margin:0;
		font-size:14px;
	}
	.personal__menu {
		padding: 30px 20px 30px 20px;
		height: auto;
	}
	.personal-order__title {
		min-height: unset;
	}
	.header__control-mobile-fullname{
		overflow: hidden;
		white-space: normal;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		max-width: 80px;
	}
	.header__control-mobile-profile {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
			-ms-flex-align: center;
				align-items: center;
	}
	.header__control-mobile-profile a:last-child{
		margin-left:20px;
	}
	.catalog__section-col{
		padding-left:30px;
		padding-right:30px;
	}
	.catalog-filter {margin-bottom: 30px;height: auto;padding: 20px 15px;background: #3d3d3d;}
	.catalog-filter__heading {
		color: #fff;
	}
	.catalog-filter__group{
		margin-bottom:20px;
	}

	.catalog-filter__group-title {
		color: #000;
	}

	.catalog-filter__group-heading {
	}

	.catalog-filter__categories a {
		color: #fff;
	}

	.catalog-filter__radio-text {
		color: #ffffff;
	}

	.catalog-filter__radio-text:after {
		background: #fff;
	}

	.catalog-filter__button .btn {
		color: #7e7e7e;
		background: #242424;
		border-color: #242424;
		text-transform:initial;
	}

	.catalog-filter__button .btn:hover {
		background: #fff;
		color: #000;
		border-color: #fff;
	}
	
	.catalog-filter__body{
		display:none;
	}
	
	.catalog-filter__controls{
		max-width:330px;
	}
	
	.home-section__button a:not(:hover){
		background: #2f2f2f;
		border-color: #2f2f2f;
	}
	
}
@media screen and (max-width:767px){
	.inner-banner p{
		margin:0;
	}
	.section-banner h1,
	.inner-banner p {
		font-size: 42px;
	}
	.section-banner p br{
		display:none;
	}
	.personal-orders__menu-item {
		margin: 0;
	}

	.personal-orders__menu-link {
		width: 120px;
		text-align: left;
		padding: 10px 30px 10px 10px;
	}

	.personal-orders__menu-link span {
		top: 50%;
		margin-top: -12.5px;
		text-align: center;
		right: 10px;
	}
	.personal-order__product-thumb {
		width: 50px;
	}

	.personal-order__product-title {
		font-size: 12px;
		padding-left:  15px;
		width: calc(100% - 50px);
	}

	.personal-order__info {
		font-size: 14px;
	}

	.personal-order__summary {
		font-size: 14px;
	}
	
	.checkout__cart {
		font-size: 14px;
	}

	.checkout__cart-image {
		width: 70px;
		height: 70px;
	}

	.checkout__cart td {
		padding: 5px 10px;
	}

	.checkout__cart-name a {
		font-size: 14px;
		display: block;
	}
	
	
	.breadcrumbs{
		margin-bottom:0px;
	}
	
	.product-preview__button {
		opacity: 1;
		visibility: visible;
		top: auto;
		bottom: 30px;
	}

	.product-preview__price {
		top: calc(100% - 110px);
	}

	.product-preview__image {
        max-width: 100%;
        height: auto;
        object-fit: contain;
	}

	.product-preview__thumb {
		padding-bottom: 80px;
	}
	.product-preview:hover .product-preview__image {
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		transform: translateY(0px);
	}
	
	.product-preview__inner {
		height: 520px;
	}
    .product-preview__data {
        display: block;
    }

	.product-preview__thumb {
		padding: 0;
		height: 340px;
        width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 114px;
	}
	
	
	.team-acv__heading {
		margin-bottom: 20px;
		font-size: 30px;
	}

	.teamacv__group-name {
		font-size: 20px;
		margin: 0 0 10px;
	}

	.teamacv__group {
		margin-bottom: 20px;
	}

	.teamacv__conditions h3 {
		font-size: 24px;
	}

	.teamacv__conditions h4 {
		font-size: 18px;
		line-height: 1.2;
	}

	.teamacv__conditions h4 br {
		display: none;
	}

	.teamacv__conditions {
		margin-bottom: 20px;
	}

	.team-acv__offer span {
		font-size: 40px;
		line-height: 1;
		width: 50px;
		min-width: 50px;
	}

	.team-acv__offer h4 {
		font-size: 18px;
	}

	.team-acv__offer {
		margin: 0 0 20px;
	}

	.teamacv__promo {
		margin: 30px 0;
	}
}
@media screen and (max-width:575px){
	.card-tovar__linked-item {
		width: 70px;
		height: 70px;
	}
	.product__slider-footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
			-ms-flex-direction: column-reverse;
				flex-direction: column-reverse;
	}
	.product__slider-footer .socials-tovar-wrapper {
		position: static;	
		-webkit-box-pack: start;
-ms-flex-pack: start;
        justify-content: flex-start;
		margin-top: 20px;
	}
	
	.section-banner h1,
	.inner-banner p {
		letter-spacing:1px;
	}
	
	.popup-cart{
		padding:25px;
	}
	.popup-cart__wrapper{
		display:block;
	}
	.popup-cart__image{
		width:100%;
		margin-bottom:15px;
	}
	.popup-cart__info{
		padding:0;
		width:100%;
	}
	.popup-testing__title {
		font-size: 17px;
	}

	.popup-testing__content {
		padding: 0;
	}

	.popup-testing .fancybox-close-small {
		right: 0;
		top: 0;
		padding: 5px;
	}

	.popup-testing {
		padding: 30px 15px;
	}

	.popup-testing__footer {
		max-width: 150px;
	}

	.popup-testing__footer .button {
		font-size: 13px;
	}
	
	

	.personal-orders__body td, .personal-orders__body th {
		font-size: 10px;
		padding: 10px 5px;
	}

	.personal-orders__order-info {
		font-size: 10px;
	}

	.personal-orders__order-info p {}

	.personal-orders__body th:nth-child(2), .personal-orders__body td:nth-child(2) {
		max-width: 150px;
	}

	.personal-orders__order-item {
		-webkit-box-flex: 0;
			-ms-flex: 0 0 50%;
				flex: 0 0 50%;
		max-width: 50%;
	}
	.personal-orders__pay {
		font-size: 10px;
		padding: 2px 3px;
	}
	.personal-orders__menu{
		overflow:auto;
	}
	.personal-orders__pay {
		font-size: 10px;
		padding: 2px 3px;
	}

	.personal-orders__menu-link {
		width: 115px;
		padding: 12px 30px 12px 10px;
		font-size: 14px;	}

	.personal-orders__menu-link span {
		min-width: 15px;
		line-height: 15px;
		margin-top: -7.5px;
		right: 10px;
	}
	.personal-order__items td:first-child, .personal-order__items th:first-child {
		max-width: unset;
	}

	.personal-order__product-title {
		width: 100%;
	}

	.personal-order__info {
		font-size: 12px;
	}

	.personal-order__items {
		margin: 10px 0;
	}

	.personal-order__items td, .personal-order__items th {
		font-size: 12px;
	}

	.personal-order__summary {
		font-size: 12px;
	}
	.notifyjs-container {
		width: 100% !important;
		margin: 0 !important;
	}

	.notifyjs-corner {
		width: 90%;
		left: 5%;
		right: auto !important;
		margin: 10px 0 0 0 !important;
	}

	.notifyjs-wrapper.notifyjs-hidable {
		width: 100% !important;
		margin: 0 !important;
	}
	.notifyjs-acv-base{
		width:100%;
	}
	.checkout__cart{
		margin-bottom:20px;
	}
	.checkout__cart .itemphoto{
		padding:0;
	}
	.checkout__cart-name a {
		font-size: 10px;
	}

	.checkout__cart {
		font-size: 10px;
	}

	.checkout__group {
		margin-bottom: 20px;
	}

	.order-head.checkout__group-title {
		margin-bottom: 15px;
	}
	
	.bonus-history td, .bonus-history th {
		font-size:12px;
	}
	.auth-block__authorized-item{
		margin-left:10px;
		padding-left:10px;
	}
	.header__control-mobile-profile a:last-child{
		margin-left:10px;
	}
	.persona-profile__menu-item{
		padding:12px 10px;
	}
	.product__tags {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.product__tags .stars-wrapper {
		width: 100%;
		margin: 0 0 15px;
	}

	.product__tags .product-preview__tag {
		margin: 0 10px 10px 0;
	}
	.card-tovar-separator{
		margin:20px 0;
	}
	.product__price-current {
		font-size: 24px;
	}

	.product__price-old {
		font-size: 16px;
	}

	.product__price {
		margin: 25px 0 15px;
	}
	.cart__image{
		width:100px;
	}
	.cart__info{
		width:calc(100% - 100px);
		padding-left:15px;
	}
	.checkout__group-content{
		overflow:auto;
	}
    .product-preview__inner {
        height: auto;
    }
	.product-preview__thumb {
        position: static;
        margin-bottom: 20px;
        height: auto;
    }
    .product-preview__image {
        max-height: 290px;
    }
    .product-preview__price {
        position: static;
        margin-bottom: 15px;
    }
    .product-preview__button {
        position: static;
    }
    .product-preview__foot {
        margin-bottom: 30px;
    }
	.product-preview{
		border-bottom:none;
	}
	.product-preview__model{
		font-size:19px;
	}
	
}
@media screen and (max-width:375px){
	.section-banner h1,
	.inner-banner p {
		font-size: 24px;
	}
	.cart__meta {
		display: block;
	}

	.cart__quantity {
		width: 80px;
		margin: 0 0 10px;
	}

	.cart__item {
		align-items: flex-start;
	}
	.checkout__cart td,
	.checkout__cart th{
		padding:10px 5px;
	}
	.checkout__cart-quantity{
		white-space:nowrap;
	}
}
@media screen and (max-width:374px){
	.auth-block__authorized .auth-block__icon{
		display:none
	}
	.header__control-mobile-fullname{
		margin-left:0;
	}
}
.block-text__aligner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 370px;
}
.block-text__aligner span {
    color: #8a563b;
}
.block-text__aligner h2 {
    text-align: center;
}
.block-text__aligner h3 {
    text-align: center;
}
.block-text__aligner p {
    text-align: center;
}
@media screen and (max-width: 992px) {
    .block-text__aligner {
        width: 100%;
    }
    .block-text__aligner h2 {
        width: 100%;
        text-transform: uppercase!important;
        font-family: 'Mont'!important;
        font-weight: 900!important;
        line-height: 35px!important;
    }
    .block-text__aligner h2 br {
        display: block!important;
    }
    .block-text__aligner h3 {
        width: 100%;
    }
}
@media screen and (min-width: 1600px){
    .block-text__aligner {
        margin-left: -180px;
    }
}
.banner__video {
    display: block;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
	position:absolute;
	left:0;
	top:0;
    width: 100%;
    height: 100%;
}
.banner__video-static{
	position:static;
}

.banner__video_mob {
    display: none;
}
@media (max-width: 991px) {
    .banner__video {
        position: static;
        width: auto;
        height: auto;
    }
}
@media (max-width: 592px) {
    .banner__video {
        display: none;
    }
    .banner__video_mob {
        display: block;
    }
    .home-section.home-section__center-left.home-section__video {
        height: auto!important;
    }
}

.home-section__backdrop{
	padding:20px;
	background:rgba(0,0,0,0.45);
}


.banner__button {
  position: absolute;
  left: 50%;
  z-index: 5;
  bottom: 32px;
  width: 24px;
  height: 24px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.0013 5.66667V26.328C20.0013 27.7653 18.3026 28.528 17.228 27.5733L11.2386 22.248C11.0558 22.0851 10.8195 21.995 10.5746 21.9947H5.66797C4.87255 21.9947 4.10969 21.6788 3.54712 21.1165C2.98455 20.5541 2.66832 19.7914 2.66797 18.996V13C2.66797 12.2044 2.98404 11.4413 3.54665 10.8787C4.10926 10.3161 4.87232 10 5.66797 10H10.5746C10.8195 9.99971 11.0558 9.90956 11.2386 9.74667L17.2266 4.42267C18.3026 3.46533 20.0013 4.22667 20.0013 5.66667ZM25.324 7.86267C25.4296 7.78457 25.5495 7.72804 25.6769 7.69629C25.8043 7.66455 25.9368 7.65821 26.0667 7.67765C26.1965 7.69709 26.3213 7.74192 26.4339 7.80958C26.5464 7.87725 26.6445 7.96641 26.7226 8.072C28.4229 10.3652 29.3388 13.1453 29.3346 16C29.3383 18.8549 28.4219 21.6349 26.7213 23.928C26.5602 24.1316 26.3262 24.2646 26.0688 24.2989C25.8114 24.3331 25.5508 24.2658 25.3421 24.1113C25.1334 23.9568 24.9929 23.7272 24.9505 23.471C24.908 23.2149 24.9669 22.9522 25.1146 22.7387C26.5603 20.7897 27.3388 18.4265 27.3346 16C27.3388 13.5735 26.5603 11.2103 25.1146 9.26133C25.0365 9.15575 24.98 9.03582 24.9483 8.90839C24.9165 8.78096 24.9102 8.64852 24.9296 8.51864C24.9491 8.38877 24.9939 8.26399 25.0616 8.15143C25.1292 8.03888 25.2184 7.94076 25.324 7.86267ZM22.8586 11.16C22.9742 11.0974 23.1009 11.0582 23.2316 11.0447C23.3623 11.0311 23.4944 11.0434 23.6204 11.081C23.7463 11.1185 23.8636 11.1805 23.9656 11.2633C24.0675 11.3462 24.1522 11.4484 24.2146 11.564C24.9293 12.884 25.3346 14.3973 25.3346 16.0013C25.3369 17.5507 24.9519 19.076 24.2146 20.4387C24.1521 20.5542 24.0675 20.6563 23.9655 20.7392C23.8635 20.822 23.7462 20.884 23.6203 20.9215C23.4944 20.959 23.3623 20.9714 23.2316 20.9578C23.1009 20.9443 22.9742 20.9052 22.8586 20.8427C22.7431 20.7802 22.641 20.6955 22.5581 20.5935C22.4753 20.4915 22.4133 20.3743 22.3758 20.2483C22.3383 20.1224 22.3259 19.9903 22.3395 19.8597C22.353 19.729 22.3921 19.6022 22.4546 19.4867C23.0146 18.4507 23.3346 17.2653 23.3346 16.0013C23.3346 14.7373 23.0146 13.552 22.4546 12.516C22.3921 12.4005 22.3529 12.2737 22.3393 12.143C22.3258 12.0123 22.3381 11.8802 22.3756 11.7543C22.4131 11.6283 22.4751 11.511 22.558 11.4091C22.6409 11.3071 22.743 11.2225 22.8586 11.16Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 0;
  cursor: pointer;
  transform:translateX(-50%);
}
.banner__button--disabled {
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.37224 2.96C4.28069 2.86175 4.17029 2.78295 4.04762 2.72829C3.92495 2.67364 3.79254 2.64425 3.65827 2.64188C3.524 2.63951 3.39062 2.66421 3.26611 2.7145C3.14159 2.7648 3.02848 2.83966 2.93352 2.93462C2.83856 3.02958 2.7637 3.14269 2.71341 3.2672C2.66311 3.39172 2.63841 3.52509 2.64078 3.65936C2.64315 3.79364 2.67254 3.92605 2.72719 4.04872C2.78185 4.17138 2.86065 4.28179 2.9589 4.37333L8.5829 10H5.66557C4.87015 10 4.10729 10.3159 3.54472 10.8782C2.98215 11.4405 2.66592 12.2032 2.66557 12.9987V18.9947C2.66557 19.7903 2.98164 20.5534 3.54425 21.116C4.10686 21.6786 4.86992 21.9947 5.66557 21.9947H10.5722C10.8171 21.995 11.0534 22.0851 11.2362 22.248L17.2242 27.5733C18.2989 28.528 19.9989 27.7653 19.9989 26.328V21.4133L27.6256 29.04C27.8143 29.2221 28.0669 29.3228 28.3291 29.3204C28.5913 29.3179 28.8421 29.2127 29.0274 29.0272C29.2127 28.8417 29.3178 28.5908 29.3199 28.3286C29.3221 28.0664 29.2212 27.8139 29.0389 27.6253L4.37224 2.96Z' fill='white'/%3E%3Cpath d='M22.8539 18.6133L24.3712 20.1293C25.0053 18.8453 25.3343 17.4321 25.3325 16C25.3347 14.4507 24.9497 12.9254 24.2125 11.5627C24.15 11.4471 24.0654 11.345 23.9634 11.2621C23.8614 11.1793 23.7441 11.1173 23.6182 11.0798C23.4923 11.0423 23.3602 11.03 23.2295 11.0435C23.0988 11.057 22.9721 11.0962 22.8565 11.1587C22.741 11.2212 22.6388 11.3058 22.556 11.4078C22.4731 11.5098 22.4112 11.6271 22.3737 11.753C22.3362 11.8789 22.3238 12.011 22.3373 12.1417C22.3509 12.2724 22.39 12.3991 22.4525 12.5147C23.0125 13.5507 23.3325 14.736 23.3325 16C23.3325 16.9213 23.1632 17.8013 22.8539 18.6133Z' fill='white'/%3E%3Cpath d='M25.8485 21.608L27.3059 23.0667C28.6327 20.9487 29.3348 18.4992 29.3312 16C29.335 13.1451 28.4186 10.365 26.7179 8.07199C26.5568 7.86834 26.3228 7.73535 26.0654 7.70113C25.808 7.66692 25.5473 7.73418 25.3386 7.88867C25.1299 8.04317 24.9895 8.27278 24.947 8.52896C24.9046 8.78513 24.9635 9.04777 25.1112 9.26132C26.5568 11.2103 27.3354 13.5734 27.3312 16C27.3344 17.9666 26.8233 19.8999 25.8485 21.608Z' fill='white'/%3E%3Cpath d='M12.6914 8.45066L19.9981 15.7573V5.66666C19.9981 4.228 18.2994 3.46666 17.2247 4.42133L12.6914 8.45066Z' fill='white'/%3E%3C/svg%3E%0A")
}
@media (min-width:992px) {
  .banner__button {
    bottom: 56px
  }
}

/*
.banner__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
*/
.page-gallery{
	margin: 20px 0;
}
.page-gallery__link{
	display:block;
	font-size:0;
}
.page-gallery__img{
	width:100%;
	display:block;
}
.personal-profile__body.contactsform {
    font-family: "Mont", sans-serif;
}

.promo-message {
    font-family: "GothamUltra";
    background-color: #ac0024;
    color: #fff;
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    padding: 5px 0;
    min-height: 54px;
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    .promo-message {
        padding: 8px 0;
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .promo-message {
        font-size: 22px;
    }
}
@media (max-width: 479px) {
    .promo-message {
        font-size: 18px;
    }
}

.pagination__body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
}
.pagination__arrow {
    display: flex;
    color: #9c9c9c;
    transition: all 0.3s ease 0s;
}
.pagination__arrow:hover {
    color: #000;
}
.pagination__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 20px;
}
.pagination__item {
    padding: 0 5px;
    font-size: 14px;
    color: #9c9c9c;
    min-width: 25px;
    text-align: center;
}
.pagination__link {
    font-size: 14px;
    color: #9c9c9c;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
.pagination__link:hover {
    color: #9c9c9c;
    text-decoration: none;
    font-weight: 700;
}
.pagination__link._current {
    font-weight: 700;
}

.sales-offer{
    padding-top: 7px;
    padding-bottom: 80px;
}
.sales-offer__inner  {
    max-width: 594px;
    margin-left: auto;
    margin-right: auto;
}
.sales-offer__title {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 50px;
}
.sales-offer__text {
    margin-bottom: 69px;
}
.sales-offer__text p {
    line-height: 120%;
    margin-bottom: 1.2rem;
}
.sales-offer__text ol {
    padding-left: 0;
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 15px;
}
.sales-offer__text ol:last-child {
    margin-bottom: 0;
}
.sales-offer__text ol li {
    counter-increment: item;
    line-height: 120%;
    margin-bottom: 20px;
}
.sales-offer__text ol li:last-child {
    margin-bottom: 0;
}
.sales-offer__text ol li::before {
    content: counters(item, ".") ". ";
    font-weight: bold;
    margin-right: 2px;
}
.sales-offer__caption {
    font-size: 12px;
    line-height: 120%;
    max-width: 387px;
}
.sales-offer__form {
    max-width: 552px;
}
.sales-offer__form-body {
    margin-bottom: 57px;
}
.sales-offer__form .form__item {
    margin-bottom: 32px;
}
.sales-offer__form .form__item:last-child {
    margin-bottom: 0;
}
.sales-offer__form .form__label {
    font-weight: bold;
    margin-bottom: 12px;
}
.sales-offer__form .form__input {
    height: 44px;
    background-color: #e1e1e1;
}
.sales-offer__form-footer {
    padding-left: 3px;
}
.sales-offer__form .form__control {
    margin-top: 53px;
}
.sales-offer__btn {
    width: auto;
    min-width: 205px;
}
@media screen and (max-width: 991px) {
    .sales-offer {
        padding-top: 0;
    }
    .sales-offer__title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .sales-offer__text {
        margin-bottom: 40px;
    }
    .sales-offer__form-body {
        margin-bottom: 30px;
    }
    .sales-offer__form .form__item {
        margin-bottom: 15px;
    }
    .sales-offer__form .form__item:last-child {
        margin-bottom: 0;
    }
    .sales-offer__form .form__control {
        margin-top: 20px;
    }
}

.lang {
    position: relative;
    color: #fff;
    display: inline-flex;
    width: 50px;
}
.lang__header {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.lang__header .lang__title {
    text-transform: uppercase;
}
.lang__icon {
    flex: 0 0 16px;
    margin-right: 5px;
}
@media (max-width: 767.98px) {
    .lang__icon {
        flex: 0 0 18px;
    }
}
.lang__icon img {
    width: 100%;
    height: auto;
    border-radius: 0;
}
.lang__title {
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}
@media (max-width: 479.98px) {
    .lang__title {
        font-size: 11px;
        font-weight: normal;
    }
}
.lang__arrow {
    display: flex;
    margin-left: 3px;
    transition: all 0.3s ease 0s;
}
.lang__arrow img {
    width: auto;
    height: auto;
}
.lang__header._active .lang__arrow {
    transform: rotate(-180deg);
}
.lang__list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    min-width: 65px;
    z-index: 11;
    list-style: none;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.header__control-mobile .lang__list,
.logo-footer-wrapper .lang__list {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 12px;
}
.lang__header._active + .lang__list {
    opacity: 1;
    visibility: visible;
}
.lang__item {
    display: flex !important;
    margin-bottom: 12px;
}
.lang__item:last-child {
    margin-bottom: 0;
}
.lang__link {
    display: flex;
    align-items: center;
    color: #000;
    text-transform: none;
    transition: all 0.3s ease 0s;
}
.lang__link .lang__title {
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease 0s;
}
.lang__link:hover {
    color: #000;
    text-decoration: none;
}
.lang__link:hover .lang__title {
    border-bottom-color: #000;
}

.mt-5-negative {
	margin-top: -3rem !important;
}

.swap-fund {
    margin-bottom: 60px;
}
.swap-fund h1 {
    padding-top: 0;
}

.swap-fund .card {
    border: 1px solid rgba(0, 0, 0, .125);
}

.swap-fund .card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    font-weight: 700;
    cursor: pointer;
}

.swap-fund .card-body {
    padding: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.swap-fund__accordion>.card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.product-item {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    padding: 10px 10px 20px;
    border-radius: 9px;
    color: #000;
    background: #FFF;
    text-align: center;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.product-item:hover {
    color: inherit;
    text-decoration: none;
    z-index: 2;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.product-item .preview {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 5px;
}

.product-item .preview::before {
    content: '';
    display: table;
    position: relative;
    padding-top: 100%;
}

.product-item .preview img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item .title {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 5px;
}

.grey-block {
    border-radius: 9px;
    padding: 15px 20px;
    background-color: #f3f3f3;
}
@media (min-width: 992px) {
    .grey-block {
        padding: 30px 40px;
    }
}
.form__caption {
    font-size: 14px;
    line-height: 1.25;
    color: #5c5c5c;
}

@media (max-width: 767px) {
    .swap-fund__accordion .product-item .title {
        word-break: break-word;
        hyphens: auto;
    }
}
@media (max-width: 415px) {
    .swap-fund__accordion .card-body .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.home-section__slider,
.home-section__swiper {
    width: 100%;
    height: 100%;
}
.home-section__slider-pagination {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 10;
}
.home-section__slider-pagination .swiper-pagination-bullet {
    background-color: rgb(244, 244, 244);
    margin-right: 10px;
}
.home-section__slider-pagination .swiper-pagination-bullet:last-child {
    margin-right: 0;
}
.mb--5{
	margin-top: -3rem!important;
}

.home-section__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    max-width: calc(100% - 30px);
    max-height: calc(100% - 30px);
    width: 620px;
    display: flex;
    cursor: pointer;
    transition: all 0.3s ease 0s;
}
.home-section__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
.home-section__play img {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 767.98px) {
    .home-section__play {
        width: 346px;
    }
}

.vector-bg {
    position: relative;
    overflow: hidden;
}

.vector-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 618px);
    max-height: calc(100% - 291px);
    aspect-ratio: 2538 / 1318;
    background-image: url(/local/templates/acv/images/vector-bg-red.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.vector-bg--grey::before {
    width: calc(100% + 45px);
    aspect-ratio: 1965 / 620;
    max-height: 100%;
    background-image: url(/local/templates/acv/images/vector-bg-grey.svg);
}

.vector-bg.vector-bg--with-family::after {
    content: "";
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 237px);
    max-width: 2158px;
    max-height: calc(100% - 118px);
    aspect-ratio: 2158 / 1200;
    background-image: url(/local/templates/acv/images/vector-text-family-black.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 63px;
}

.vector-bg .container {
    position: relative;
    z-index: 10;
}

.section-label {
    position: relative;
    display: inline-block;
}

.section-label__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-label__text {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-family: "TTLakesCompressed";
    font-size: 80px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #DBDBDB;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    padding: 23px 40px 13px;
    transform: rotate(-6deg);
}


.section-label--year .section-label__text {
    font-family: "Mont", sans-serif;
    font-size: 40px;
    font-style: normal;
    padding: 17px 42px 15px;
    transform: rotate(0);
}

@media screen and (min-width: 767.98px) {

    .vector-bg--mob::before,
    .vector-bg--mob::after {
        content: none;
    }
}

@media screen and (max-width: 767.98px) {
    .section-label__text {
        font-size: 35px;
        transform: rotate(-4deg);
    }

    .section-label--year .section-label__text {
        font-size: 30px;
        padding: 8px 18px 5px;
    }
}

/* --- .team-members --- */
.team-members {
    padding: 100px 0 90px;
    background-color: #272727;
}
.team-members__grid {
    --gutter-x: 30px;
    --gutter-y: 40px;
    display: flex;
    flex-wrap: wrap;
    row-gap: var(--gutter-y);
    column-gap: var(--gutter-x);
}
.team-members__col {
    flex: 0 0 calc((100% - var(--gutter-x) * 2) / 3);
    min-width: 280px;
}
.team-members__card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}
.team-members__name {
    display: inline-block;
    margin: 0;
    width: 100%;
    padding: 5px 10px 8px;
    font-family: "TTLakesCompressed";
    font-size: 32px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    background-color: #1a1a1a;
    text-decoration: none;
    border: 5px solid #fff;
    border-radius: 32px 0 32px 0;
    line-height: 125%;
    margin-bottom: 8px;
    transition: all 0.3s ease 0s;
}
a.team-members__name:hover {
    text-decoration: none;
    background-color: #C5052B;
    color: #FFFFFF;
}
.team-members__card-main {
    position: relative;
    flex: 1 1 auto;
}
.team-members__image-wrap {
    clip-path: url(#team-card-clip);
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.team-members__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 405 / 404;
}
.team-members__btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50.61728395%;
    height: 12.84653465%;
    fill: #DBDBDB;
    color: #727272;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease 0s;
}
.team-members__btn:hover {
    fill: #C5052B;
    color: #FFFFFF;
}
.team-members__btn-bg {
    display: block;
    width: 100%;
    height: 100%;
}
.team-members__btn-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "TTLakesCompressed";
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    line-height: 125%;
    text-transform: uppercase;
}
.team-members__footer {
    position: relative;
    z-index: 2;
}
.team-members__more {
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 40px;
    background-color: #6D6D6D;
    color: #DBDBDB;
    border: none;
    border-radius: 0;
    padding: 7px 20px;
    font-family: "TTLakesCompressed";
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
    width: 100%;
    margin-top: 65px;
}
@media screen and (max-width: 1279.98px) {
    .team-members__name {
        font-size: 28px;
    }
}
@media screen and (max-width: 991.98px) {
    .team-members__col {
        flex-basis: calc((100% - var(--gutter-x)) / 2);
    }
}
@media screen and (max-width: 767.98px) {
    .team-members {
        padding-top: 25px;
        padding-bottom: 45px;
    }
    .team-members.vector-bg::before,
    .team-members.vector-bg::after {
        content: none;
    }
    .team-members__grid {
        --gutter-y: 70px;
    }
    .team-members__col {
        position: relative;
        flex: 0 0 100%;
    }
    .team-members__col::before {
        content: "";
        position: absolute;
        top: -32px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 750px);
        max-height: calc(100% + 163px);
        aspect-ratio: 1093 / 568;
        background-image: url(/local/templates/acv/images/vector-bg-red.svg);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        margin-left: -50px;
    }
    .team-members__col::after {
        content: "";
        position: absolute;
        top: 34px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 584px);
        max-height: calc(100% + 123px);
        aspect-ratio: 929 / 516;
        background-image: url(/local/templates/acv/images/vector-text-family-black.svg);
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: -37px;
    }
    .team-members__col:nth-child(even)::before,
    .team-members__col:nth-child(even)::after,
    .team-members__col:last-child:not(:first-child)::before,
    .team-members__col:last-child:not(:first-child)::after {
        content: none;
    }
    .team-members__name {
        font-size: 25px;
    }
    .team-members__col:nth-child(n+7) {
        display: none;
    }
    .team-members__col:nth-child(n+7).is-visible {
        display: block;
    }
    .team-members__more {
        display: flex;
    }
    .team-members__more.is-hidden {
        display: none;
    }
}

/* --- .join-team --- */
.join-team {
    padding: 0 0 70px;
    background-color: #272727;
}
.join-team__title {
    text-align: center;
    color: #fff;
    font-family: "TTLakesCompressed";
    font-size: 95px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 110%;
    margin: 0 0 70px;
}
.join-team__desc {
    max-width: 850px;
    color: #fff;
    font-size: 25px;
    line-height: 125%;
    margin-bottom: 40px;
}
.join-team__content {
    position: relative;
    background-color: #f5f5f5;
    background-image: url(/local/templates/acv/images/bg-white-noise.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 66px;
    padding-bottom: 100px;
    padding-left: 110px;
    padding-right: 106px;
}
.join-team__image {
    position: absolute;
    top: -98px;
    right: -12px;
    z-index: 2;
}
.join-team__image img {
    display: block;
    max-width: 100%;
    height: auto;
}
.join-team__subtitle {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 115%;
    color: #232323;
    max-width: 457px;
    margin: 0 0 40px;
}
.join-team__list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: join-team-counter;
}
.join-team__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 5px solid #D9D9D9;
    counter-increment: join-team-counter;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 111%;
    color: #727272;
}
.join-team__item-text {
    max-width: 65%;
}
.join-team__item:first-child {
    padding-top: 0;
}
.join-team__item::after {
    content: counter(join-team-counter, decimal-leading-zero);
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #D9D9D9;
    flex-shrink: 0;
}
@media screen and (max-width: 1279.98px) {
    .join-team__title {
        font-size: 80px;
    }
    .join-team__content {
        padding-left: 40px;
        padding-right: 40px;
    }
    .join-team__image {
        top: -60px;
        right: -2px;
        max-width: 440px;
    }
}
@media screen and (max-width: 991.98px) {
    .join-team__image {
        top: -40px;
        max-width: 300px;
    }
}
@media screen and (min-width: 767.98px) {
    .join-team__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
@media screen and (max-width: 767.98px) {
    .join-team {
        padding-bottom: 25px;
    }
    .join-team__title {
        font-size: 30px;
        line-height: 102%;
        text-align: left;
        margin-bottom: 15px;
    }
    .join-team__desc {
        font-size: 16px;
        margin-bottom: 107px;
    }
    .join-team__content {
        padding: 120px 20px 50px;
    }
    .join-team__image {
        top: -63px;
        right: 0;
        max-width: 360px;
        height: 160px;
        width: 100%;
    }
    .join-team__subtitle {
        font-size: 25px;
        line-height: 100%;
        margin-bottom: 22px;
    }
    .join-team__item {
        position: relative;
        font-size: 16px;
        padding-bottom: 55px;
        border-bottom: none;
    }
    .join-team__item-text {
        max-width: 300px;
    }
    .join-team__item::after {
        position: absolute;
        bottom: 0;
        left: 0;
        font-size: 40px;
    }
    .join-team__item::before {
        content: "";
        position: absolute;
        bottom: 20px;
        left: 70px;
        right: 0;
        height: 4px;
        background-color: #D9D9D9;
    }
}

/* --- .marquee --- */
.marquee {
    background-color: #C5052B;
    overflow: hidden;
}
.marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee-scroll 15s linear infinite;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee__item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.marquee__item::before {
    content: '';
    display: block;
    width: 102px;
    height: 9px;
    background-color: #232323;
    flex-shrink: 0;
    margin-right: 20px;
}
.marquee__number {
    font-family: "Space-Shards";
    font-size: 127px;
    font-weight: 400;
    color: #232323;
    line-height: 110%;
    white-space: nowrap;
}
.marquee__text {
    font-size: 18px;
    font-weight: 700;
    color: #232323;
    text-transform: uppercase;
    line-height: 190%;
    margin-left: 6px;
    white-space: nowrap;
    padding-top: 2px;
}
@media screen and (max-width: 767.98px) {
    .marquee__item::before {
        width: 44px;
        height: 4px;
        margin-right: 9px;
    }
    .marquee__number {
        font-size: 55px;
    }
    .marquee__text {
        font-size: 10px;
        line-height: 150%;
        margin-left: 3px;
        padding-top: 0;
    }
}

/* --- .democar --- */
.democar {
    padding: 60px 0 75px;
    background-color: #272727;
}
.democar__row {
    display: flex;
    gap: 30px;
}
.democar__col {
    flex: 1;
    min-width: 0;
}
.democar__image-wrap {
    clip-path: url(#democar-clip);
    overflow: hidden;
    width: 100%;
    max-width: 545px;
    aspect-ratio: 545 / 392;
    border-radius: 20px;
}
.democar__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.democar__content .democar__image-wrap {
    margin-bottom: 50px;
}
.democar__title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 15px;
    line-height: 120%;
}
.democar__text {
    font-size: 25px;
    color: #FFFFFF;
    line-height: 125%;
}
.democar__text p {
    margin-bottom: 25px;
}
.democar__text p:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 767.98px) {
    .democar {
        padding-top: 25px;
        padding-bottom: 15px;
    }
    .democar__title {
        font-size: 25px;
        margin-bottom: 10px;
    }
    .democar__text {
        font-size: 16px;
    }
    .democar__text p {
        margin-bottom: 18px;
    }
}

/* --- .conditions --- */
.conditions {
    padding: 0 0 60px;
    background-color: #272727;
}
.conditions__header {
    display: flex;
    justify-content: center;
    margin-bottom: 75px;
}
.conditions__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.conditions__card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    min-height: 194px;
    border: 3px solid #fff;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    line-height: 130%;
    box-sizing: border-box;
}
@media screen and (max-width: 767.98px) {
    .conditions {
        padding-bottom: 10px;
    }
    .conditions__header {
        margin-bottom: 20px;
    }
    .conditions__grid {
        row-gap: 10px;
    }
    .section-label__title {
        font-size: 35px;
        transform: rotate(-4deg);
    }
    .conditions__card {
        flex: 0 0 100%;
        min-height: 0;
        padding: 14px 15px;
        text-align: left;
        border-width: 1px;
        font-size: 16px;
        line-height: 120%;
    }
}

/* --- .apply-form --- */
.apply-form {
    padding: 145px 0 130px;
    background-color: #D9D9D9;
}
.apply-form.vector-bg--grey::before {
    z-index: 1;
}
.apply-form.vector-bg--grey::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: calc(100% + 45px);
    aspect-ratio: 1965 / 620;
    background-color: #272727;
    z-index: 0;
}
.apply-form__row {
    display: flex;
    align-items: center;
    column-gap: 30px;
    row-gap: 20px;
}
.apply-form__col-form {
    flex: 0 0 515px;
    max-width: 515px;
}
.apply-form__col-image {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}
.apply-form__image-outer {
    width: 515px;
    aspect-ratio: 515 / 543;
}
.apply-form__image-wrap {
    clip-path: url(#apply-form-clip);
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.apply-form__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.apply-form__input {
    display: block;
    width: 100%;
    height: 77px;
    padding: 0 44px 0 38px;
    border: none;
    border-radius: 64px;
    background-color: #fff;
    border: 1px solid #fff;
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    color: #232323;
    outline: none;
    box-sizing: border-box;
}
.apply-form__input::placeholder {
    color: #BDBDBD;
}
.apply-form .form__field {
    margin-bottom: 23px;
}
.apply-form .radiobox__text {
    color: #727272;
    padding-left: 42px;
}
.apply-form .radiobox__text:before {
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    border: 2px solid #9F9F9F;
    margin-top: 0;
}
.apply-form .radiobox__text:after {
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background-color: #C5052B;
    margin-top: 0;
}
.apply-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    background-color: #C5052B;
    color: #DBDBDB;
    border: none;
    border-radius: 164px;
    padding: 10px 13px 10px 42px;
    font-family: "TTLakesCompressed";
    font-size: 40px;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1;
    margin-top: 27px;
}
.apply-form__submit:hover {
    background-color: #a00423;
}
.apply-form__submit.success {
    background-color: #60AF00;
    pointer-events: none;
}
.apply-form__submit-icon {
    display: flex;
    width: 58px;
    height: 58px;
    fill: #DBDBDB;
}
.apply-form__submit-icon-check {
    display: none;
}
.apply-form__submit.success .apply-form__submit-icon-arrow {
    display: none;
}
.apply-form__submit.success .apply-form__submit-icon-check {
    display: block;
}
.apply-form__submit-icon svg {
    max-width: 100%;
    max-height: 100%;
}
@media screen and (max-width: 991.98px) {
    .apply-form {
        padding: 0 0 25px;
    }
    .apply-form.vector-bg::before {
        width: calc(100% + 206px + 888px);
        height: auto;
        left: -206px;
        transform: translateX(0);
        aspect-ratio: 1483 / 468;
    }
    .apply-form__row {
        flex-direction: column-reverse;
    }
    .apply-form__col-form {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    .apply-form__col-image {
        width: 100%;
        justify-content: center;
    }
    .apply-form__image-outer {
        width: 100%;
        max-width: 515px;
    }
    .apply-form__image-wrap {
        width: 100%;
        height: 100%;
    }
}
@media screen and (max-width: 767.98px) {
    .apply-form__image-outer {
        filter: drop-shadow(0px 2.51px 2.51px rgba(0, 0, 0, 0.25));
    }
    .apply-form__input {
        text-align: center;
        font-size: 16px;
        height: 50px;
        border-radius: 42px;
    }
    .apply-form .form__field {
        margin-bottom: 12px;
    }
    .apply-form .radiobox {
        padding-top: 12px;
    }
    .apply-form .radiobox__text {
        font-size: 14px;
        padding-left: 35px;
    }
    .apply-form .radiobox__text:before {
        width: 21px;
        height: 21px;
    }
    .apply-form .radiobox__text:after {
        width: 13px;
        height: 13px;
    }
    .apply-form__submit {
        font-size: 24px;
        padding: 5px 6px;
        padding-left: 60px;
        margin-top: 20px;
    }
    .apply-form__submit-icon {
        width: 40px;
        height: 40px;
    }
}

/* --- .project-section (acv-team-inner) --- */
.project-section {
    padding: 78px 0 253px;
    background-color: #272727;
}
.project-section.vector-bg::before {
    max-height: none;
    top: auto;
    bottom: 0;
    width: calc(100% + 47px);
    aspect-ratio: 1967 / 1020;
}
.project-section__header {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    align-items: flex-start;
}
.project-section__header-col {
    flex: 1;
}
.project-section__title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 120%;
    text-align: center;
}
.project-section__note {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    line-height: 120%;
    text-align: right;
}
.project-section__cards {
    display: flex;
    gap: 30px;
}
.project-section__card {
    flex: 1;
    padding: 0 10px;
    font-size: 23px;
    font-weight: 700;
    color: #fff;
    line-height: 120%;
}
.project-section__card:nth-child(1) {
    text-align: left;
}
.project-section__card:nth-child(2) {
    text-align: center;
}
.project-section__card:nth-child(3) {
    text-align: right;
}
@media screen and (max-width: 991.98px) {
    .project-section {
        padding: 20px 0 107px;
    }
    .project-section__header {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .project-section__header-col {
        width: 100%;
    }
    .project-section__title {
        width: 100%;
        text-align: center;
    }
    .project-section__header-col--empty {
        display: none;
    }
    .project-section__header-col--note {
        display: none;
    }
    .project-section__cards {
        margin-bottom: 35px;
    }
    .project-section__card {
        border: 1px solid #fff;
        padding: 10px 30px;
        font-size: 20px;
    }
    .project-section__card:nth-child(1),
    .project-section__card:nth-child(2),
    .project-section__card:nth-child(3) {
        text-align: center;
    }
    .project-section__note {
        text-align: right;
        font-size: 16px;
    }
}
@media screen and (max-width: 767.98px) {
    .project-section.vector-bg::before {
        width: calc(100% + 542px);
        aspect-ratio: 945 / 491;
        left: -52px;
        height: 100%;
        transform: translateX(0);
    }
    .project-section__cards {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
    }
    .project-section__cards:last-child {
        margin-bottom: 0;
    }
    .project-section__card br {
        display: none;
    }
}

/* --- .participation (acv-team-inner) --- */
.participation {
    padding: 0px 0 140px;
    background-color: #272727;
}
.participation__header {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}
.participation__event {
    margin-bottom: 40px;
}
.participation__event:last-child {
    margin-bottom: 0;
}
.participation__year {
    margin-bottom: 30px;
}
.participation__event-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 55px;
}
.participation__city {
    flex-shrink: 0;
    width: 300px;
    border: 2px solid #DBDBDB;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    padding: 10px 20px;
    line-height: 120%;
    text-align: center;
}
.participation__name {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
}
.participation__main {
    display: flex;
    gap: 28px;
    align-items: center;
}
.participation__trophies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 300px;
    flex-shrink: 0;
}
.participation__cup {
    width: 145px;
    height: 222px;
    object-fit: contain;
    display: block;
}
.participation__results {
    flex: 1;
    min-width: 0;
}
.participation__result {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    font-size: 25px;
    line-height: 120%;
    border-bottom: 2px solid #DBDBDB;
}
.participation__result:first-child {
    padding-top: 0;
}
.participation__result-info {
    flex: 1;
    min-width: 0;
    color: #fff;
}
.participation__result-place {
    font-weight: 700;
}
.participation__result-score {
    color: #727272;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
    .participation__result {
        font-size: 16px;
    }
}
@media screen and (max-width: 767.98px) {
    .participation {
        padding: 7px 0 50px;
    }
    .participation__header {
        margin-bottom: 40px;
    }
    .participation__year {
        margin-bottom: 20px;
    }
    .participation__event {
        margin-bottom: 36px;
    }
    .participation__event-meta {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-bottom: 20px;
    }
    .participation__city {
        align-self: center;
        text-align: center;
        box-sizing: border-box;
        min-width: 225px;
        width: auto;
    }
    .participation__main {
        flex-direction: column;
        gap: 14px;
    }
    .participation__trophies {
        width: 100%;
        justify-content: center;
    }
    .participation__cup {
        width: 120px;
        height: 184px;
    }
    .participation__results {
        width: 100%;
    }
    .participation__result {
        flex-direction: column;
        gap: 0;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .participation__result-score {
        text-align: left;
    }
    .participation__result-score br {
        display: none;
    }
}

.landing-gallery .swiper-slide {
    height: auto;
}
.landing-gallery .page-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}