:root {
	--btn-accent-color: #E1119F;
	--white-color: #fff;
	--body-color: #010115;
	/* --main-font-size: clamp(0px, 0.833vw, 100px); */
	--family-ppneue: 'PPNeueMachina', sans-serif;
	--family-noname: 'no_name_37', sans-serif;
	--family-unbounded: 'Unbounded', sans-serif;
	--family-montserrat: 'Montserrat', sans-serif;
}

/* PPNeueMachina  */
@font-face {
	font-family: 'PPNeueMachina';
	src: local('PPNeueMachina Light'), local('PPNeueMachina-Light'),
			url(../fonts/pp_neue_machina/PPNeueMachina-Light.otf) format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'PPNeueMachina';
	src: local('PPNeueMachina Regular'), local('PPNeueMachina-Regular'),
			url(../fonts/pp_neue_machina/PPNeueMachina-Regular.otf) format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'PPNeueMachina';
	src: local('PPNeueMachina Ultrabold'), local('PPNeueMachina-Ultrabold'),
			url(../fonts/pp_neue_machina/PPNeueMachina-Ultrabold.otf) format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}


/* Unbounded */

@font-face {
	font-family: 'Unbounded';
	src: local('Unbounded Regular'), local('Unbounded-Regular'),
			url(../fonts/unbounded/Unbounded-Regular.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: local('Unbounded Medium'), local('Unbounded-Medium'),
			url(../fonts/unbounded/Unbounded-Medium.ttf) format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: local('Unbounded SemiBold'), local('Unbounded-SemiBold'),
			url(../fonts/unbounded/Unbounded-SemiBold.ttf) format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Unbounded';
	src: local('Unbounded Bold'), local('Unbounded-Bold'),
			url(../fonts/unbounded/Unbounded-Bold.ttf) format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Montserrat */

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

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

a{
	text-decoration: none;
}

a:focus{
	outline: none;
}

ul, ol{
	font-size: 0;
	list-style: none;
}

html {
	scroll-behavior: smooth;
}

button {
	border: 0;
	padding: 0;
	margin: 0;
	outline: none;
	background-color: transparent;
	cursor: pointer;
}

input:focus,
textarea:focus,
fieldset:focus {
	outline: none;
}

input,
textarea,
fieldset {
	border: 0;
}

html,
body {
	/* font-size: var(--main-font-size); */
	background-color: var(--body-color);
	font-family: var(--family-noname);
}

body{
	position: relative;
	font-family: var(--family-ppneue);
}

header .header_feedback-btn,
header .header_feedback-btn::before,
header .header_feedback-btn::after{
	border-radius: 10px;
	background: none;
	background-color: var(--btn-accent-color);
}

@keyframes dropDown {
	0% { 
		transform: translateY(-700%) rotate(0) scale(var(--scale));
	}
	60% { 
		transform: translateY(-40%) rotate(0) scale(var(--scale));
	}
	100% {
		transform: translateY(0) rotate(var(--rotate)) scale(var(--scale));
	}
}

@keyframes ball {
	0% { 
		transform: translateX(-90%) translateY(-150%) rotate(-150deg) scale(var(--scale));
	}
	30%{
		transform: translateX(-90%) translateY(-16%) rotate(-150deg) scale(var(--scale));
	}
	100%{
		transform: translateX(0) translateY(0) rotate(-15deg) scale(var(--scale));
	}
}

.section-title{
	font-family: var(--family-unbounded);
	font-size: 32px;
	line-height: 1.2;
	font-weight: 600;
	color: var(--white-color);
}

.section-text{
	font-size: 24px;
	line-height: 1.2;
	font-weight: 400;
	color: var(--white-color);
}

@media (max-width: 960px){
	.section-title{
		font-size: 36px;
	}
	.section-text {
		font-size: 32px;
	}
}

@media (max-width: 740px){
	.section-title{
		font-size: 28px;
	}
	.section-text {
		font-size: 24px;
	}
}

.btn{
	display: inline-block;
	font-family: var(--family-ppneue);
	font-size: 24px;
	color: var(--white-color);
	font-weight: 400;
	height: 70px;
	border-radius: 12px;
	max-width: 282px;
	width: 100%;
	padding: 15px 20px 15px 55px;
	background-color: var(--btn-accent-color);
	display: flex;
	align-items: center;
	transition: .2s linear;
	gap: 40px;
	cursor: pointer;
}

.btn-l{
	max-width: 336px;
	padding-left: 33px;
}

.btn-dark{
	background-color: transparent;
	box-shadow: 0px 0px 0px 1px var(--btn-accent-color) inset;
	background-color: rgba(1, 1, 21, 84%);
}

.btn span{
	width: 30px;
	overflow: hidden;
	font-size: 0;
}

.btn.btn-dark span svg .arw{
	fill: var(--btn-accent-color);
}

.btn span svg,
.btn span svg .arw{
	transition: .4s ease-in-out;
}

.btn span svg{
	transform: translateX(-25px);
}

.btn span svg .arw-1{
	transform: translate(40%, 30%) scale(0.4);
	opacity: 0;
}
.btn span svg .arw-2 {
	opacity: 0.5;
}
/* .btn span svg .arw-1 */

.btn:hover span svg{
	transform: translateX(-11px);
}

.btn:hover span svg .arw-1{
	transform: translate(0, 0) scale(1);
	opacity: 0.5;
}

.btn:hover span svg .arw-2{
	opacity: 1;
}

.btn:hover span svg .arw-3{
	opacity: 0;
	transform: translate(40%, 30%) scale(0.4);
}

/* .btn::after{
	content: "";
	display: block;
	background: url(../images/arrows.svg) right center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 45px;
	height: 30px;
	transition: .2s linear;
}

.btn-dark::after{
	background: url(../images/arrows-purple.svg) right center;
} */

.btn:hover{
	opacity: 0.8;
}

@media (max-width: 1470px){
	.btn{
		padding: 10px 20px 10px 30px;
		height: 64px;
		gap: 20px;
	}
	.btn-l{
		max-width: 313px;
	}
}

.container{
    max-width: 1470px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1470px){
	.container{
		max-width: 1230px;
	}
}

@media (max-width: 1230px){
	.header .container{
		max-width: 1024px;
	}
	.container{
		max-width: 960px;
		padding: 0 10px;
	}
}

@media (max-width: 960px){
	.header .container,
	.container{
		max-width: 740px;
	}
}

@media (max-width: 576px){
	.header .container,
	.container{
		max-width: 405px;
	}
	.container{
		padding: 0 5px;
	}
}

/* swiper navigation */

.swiper-slide-navigation{
	display: flex;
	align-items: center;
	gap: 40px;
	position: absolute;
    top: 65px;
    right: 40px;
}

.swiper-progress__bar{
	position: relative;
	width: 268px;
	height: 3px;
	border-radius: 10px;
	background-color: rgba(225, 17, 159, 50%);
	overflow: hidden;
}

.swiper-progress__fill{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--btn-accent-color);
	transform: translateX(-100%);
}

.swiper-buttons{
	position: relative;
	display: flex;
	min-height: 56px;
	min-width: 130px;
	border-radius: 7px;
	box-shadow: 0px 0px 0px 1px inset rgba(225, 17, 159, 40%),
				0px 0px 5px 5px inset rgba(0, 0, 0, 10%);

}

.swiper-buttons::before{
	content: '';
	display: block;
	width: 1px;
	height: 70%;
	background-color: rgba(225, 17, 159, 40%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.swiper-buttons .swiper-button-next,
.swiper-buttons .swiper-button-prev{
	all: unset;
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
    cursor: pointer;
}

.swiper-buttons .swiper-button-next::after,
.swiper-buttons .swiper-button-prev::after{
    color: rgba(225, 17, 159, 40%);
    font-size: 26px;
    font-weight: 900;
	transition: .2s linear;
}

.swiper-buttons .swiper-button-next:hover::after,
.swiper-buttons .swiper-button-prev:hover::after{
    color: rgba(225, 17, 159, 100%);
}

/* slider-card */

.swiper-slide.slider-card{
	box-shadow: 0px 0px 0px 1px inset rgba(206, 202, 236, 40%);
	border-radius: 12px;
	padding: 23px 25px 27px;
	height: 522px;
	display: flex;
	flex-direction: column;
}

.slider-card__image{
	width: 100%;
	padding-top: 55.5%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 28px;
}

.slider-card__image img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

.slider-card__box{
	display: flex;
	flex-direction: column;
	height: 100%;
}

.slider-card__title{
	font-family: var(--family-unbounded);
	font-weight: 700;
	font-size: 32px;
	line-height: 120%;
	color: var(--btn-accent-color);
	margin-bottom: 22px;
}

.slider-card__text{
	font-size: 24px;
	font-weight: 300;
	color: var(--white-color);
	line-height: 130%;
}

.slider-card__btn{
	margin-top: auto;
	padding-left: 66px;
}

.slider-card__btn:disabled {
	box-shadow: 0px 0px 0px 1px rgba(167, 168, 169, 60%) inset;
	color: #A7A8A9;
}

.btn.btn-dark:disabled span svg .arw{
	fill: #A7A8A9;
}

@media (max-width: 1470px){
	.swiper-slide.slider-card{
		height: 442px;
		padding: 20px 20px 30px;
	}
	.slider-card__title{
		font-size: 24px;
	}
	.slider-card__text{
		font-size: 16px;
		margin-bottom: 24px;
	}
	.slider-card__btn{
		max-width: 268px;
		padding: 12px;
		justify-content: center;
		height: 54px;
	}
}

@media (max-width: 1230px){
	.swiper-slide-navigation{
		right: 10px;
		top: 75px;
	}
	.swiper-slide.slider-card{
		height: 520px;
	}
	.slider-card__title {
        font-size: 32px;
		margin-bottom: 26px;
    }
	.slider-card__text{
		font-size: 24px;
	}
	.slider-card__image{
		margin-bottom: 33px;
	}
	.slider-card__btn{
		max-width: 313px;
		height: 64px;
	}
}

@media (max-width: 960px){
	.swiper-buttons{
		min-height: 76px;
    	min-width: 220px;
	}
	.swiper-slide-navigation{
		top: 175px;
		width: 720px;
		gap: 50px;
	}
	.swiper-progress__bar{
		width: 100%;
	}
	.swiper-slide.slider-card{
		padding: 24px 24px 32px;
	}
	.slider-card__title{
		font-size: 36px;
	}
	.slider-card__btn{
		max-width: 360px;
        transform: scale(1.4) translate(52px, -5px);
	}
}

@media (max-width: 740px){
	.swiper-buttons {
        min-height: 40px;
        min-width: 118px;
    }
	.swiper-buttons .swiper-button-next::after, 
	.swiper-buttons .swiper-button-prev::after{
		font-size: 20px;
	}
	.swiper-slide-navigation {
        top: 155px;
        width: 385px;
        gap: 25px;
    }
	.swiper-slide.slider-card{
		padding: 20px 20px 30px;
	}
	.slider-card__title{
		font-size: 24px;
		margin-bottom: 18px;
	}
	.slider-card__btn{
		transform: none;
		max-width: 313px;
	}
}

/* running line */

.running-line {
    width: 100%;
	overflow: hidden;
    position: relative;
    min-height: 60px;
    z-index: 5;
}

.running-line__track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    height: 100%;
}

.running-line__item{
    height: 100%;
    margin-left: 180px;
    display: flex;
    align-items: center;
}

.running-line__item img {
    display: block;
    pointer-events: none;
    max-height: 100%;
}

@media (max-width: 1470px){
	.running-line__item{
		margin-left: 130px;
	}
}

@media (max-width: 960px){
	.running-line__item{
		margin-left: 100px;
	}
}

/* intro */

.intro{
	position: relative;
	margin-bottom: 90px;
}

.intro__wrapper{
	min-height: 735px;
	background: url(../images/intro/intro__bg.png) center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 15px;
	padding: 210px 25px 0;
	color: var(--white-color);
}

.intro__suptitle{
	font-size: 16px;
	font-weight: 300;
	line-height: 1.3;
	margin-bottom: 30px;
}

.intro__title{
	font-size: 55px;
	font-family: var(--family-unbounded);
	font-weight: 700;
	line-height: 107%;
	margin-bottom: 30px;
}

.intro__subtitle{
	margin-bottom: 55px;
}

@media (max-width: 1470px){
	.intro{
		position: relative;
		margin-bottom: 80px;
	}
	.intro__wrapper{
		min-height: 615px;
		padding: 135px 25px 0;
		background-image: url(../images/intro/intro__bg-1200.png);
	}
	.intro__suptitle{
		margin-bottom: 40px;
	}
	.intro__title{
		margin-top: 0;
		margin-bottom: 40px;
		font-size: 52px;
	}
	.intro__subtitle{
		margin-bottom: 50px;
	}
}

@media (max-width: 1230px){
	.intro__wrapper{
		background-image: url(../images/intro/intro__bg-940.png);
		min-height: 700px;
		padding: 164px 30px 0;
	}
	.intro__subtitle{
		max-width: 360px;
		margin-bottom: 58px;
	}
}

@media (max-width: 960px){
	.intro__wrapper{
		background-image: url(../images/intro/intro__bg-720.png);
		padding: 60px 25px 0;
		min-height: 848px;
	}
	.intro__suptitle{
		margin-bottom: 32px;
	}
	.intro__title{
		margin-bottom: 32px;
	}
	.intro__subtitle{
		max-width: 100%;
		margin-bottom: 42px;
		font-size: 24px;
	}
}

@media (max-width: 740px){
	.intro {
        margin-bottom: 60px;
    }
	.intro__wrapper {
        background-image: url(../images/intro/intro__bg-385.png);
        padding: 100px 15px 0;
        min-height: 865px;
    }
	.intro__title{
		font-size: 44px;
		margin-bottom: 26px;
	}
	.intro__subtitle{
		font-size: 23px;
		margin-bottom: 32px;
	}
}

/* stat-cards */

.stat-cards{
	margin-bottom: 100px;
}

.stat-cards__list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.stat-cards__item{
	position: relative;
	box-shadow: 
		1px 1px 0px 0px rgba(255, 255, 255, 10%), 
		-2px -2px 0px 0px rgba(255, 255, 255, 10%), 
		6px 6px 20px 0px inset rgba(0, 0, 0, 10%);
	min-height: 195px;
	border-radius: 15px;
	padding: 30px 20px;
	background-color: rgba(255, 255, 255, 8%);
}

.stat-cards__info{
	font-family: var(--family-unbounded);
	font-weight: 700;
	font-size: 40px;
	color: var(--btn-accent-color);
	line-height: 120%;
	margin-bottom: 28px;
}

.stat-cards__text{
	font-size: 18px;
	font-weight: 400;
	color: var(--white-color);
	line-height: 130%;
}

.stat-cards__link{
	display: flex;
	font-size: 14px;
	font-family: var(--family-montserrat);
	font-weight: 500;
	color: var(--btn-accent-color);
	width: 20px;
	height: 20px;
	border-radius: 50px;
	background-color: var(--white-color);
	cursor: pointer;
	text-decoration: underline;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 8px;
	bottom: 8px;
}

.stat-cards__cloud{
	position: absolute;
    max-width: 210px;
    bottom: -40px;
    right: 20px;
	opacity: 0;
	z-index: 1;
	visibility: hidden;
	transition: .2s linear;
}

.stat-cards__cloud::before{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	backdrop-filter: blur(8px);
	z-index: 0;
	border-radius: 6px;
	width: 100%;
	height: 80%;
}

.stat-cards__cloud img{
	width: 100%;
	position: relative;
}

.stat-cards__link:hover + .stat-cards__cloud{
	opacity: 1;
	visibility: visible;
}

@media (max-width: 1470px){
	.stat-cards{
		margin-bottom: 80px;
	}
	.stat-cards__item{
		padding: 38px 13px;
	}
	.stat-cards__info{
		font-size: 36px;
	}
	.stat-cards__text{
		font-size: 16px;
	}
}

@media (max-width: 1230px){
	.stat-cards__list{
		grid-template-columns: repeat(2, 1fr);
		gap: 30px 60px;
	}
	.stat-cards__item{
		padding: 45px 30px;
	}
	.stat-cards__info{
		font-size: 52px;
		margin-bottom: 36px;
	}
	.stat-cards__text{
		font-size: 24px;
	}
	.stat-cards__link{
		width: 26px;
		height: 26px;
		font-size: 18px;
	}
	.stat-cards__cloud{
		max-width: 260px;
		bottom: -50px;
	}
}

@media (max-width: 960px){
	.stat-cards__list{
		gap: 20px;
	}
	.stat-cards__item{
		padding: 20px;
	}
	.stat-cards__info{
		font-size: 36px;
	}

	.stat-cards__text{
		max-width: 260px;
	}

	.stat-cards__text br{
		display: none;
	}

	.stat-cards__item:nth-of-type(1) .stat-cards__text br{
		display: block;
	}
	.stat-cards__item:nth-of-type(1) .stat-cards__text{
		width: 100%;
	}
}

@media (max-width: 740px){
	.stat-cards{
		margin-bottom: 60px;
	}
	.stat-cards__list{
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.stat-cards__item{
		min-height: 190px;
		padding: 22px 17px;
	}
	.stat-cards__info{
		margin-bottom: 24px;
	}
}

/* advantages-ctv */

.advantages-ctv{
	margin-bottom: 110px;
}

.advantages-ctv .container{
	position: relative;
}

.advantages-ctv__title{
	margin-bottom: 32px;
}

.advantages-ctv__subtitle{
	margin-bottom: 53px;
}

.advantages-ctv__item{
	position: relative;
	min-height: 390px;
	border-radius: 15px;
	padding: 87px 30px 0px 148px;
	box-shadow:
		0px 0px 0px 2px inset rgba(206, 202, 236, 40%), 
		1px 0px 30px 0px inset rgba(0, 0, 0, 10%);
	overflow: hidden;
}

.advantages-ctv__item::before{
	content: '';
	display: block;
	background: url(../images/advantages/advantages-bg.png) center center;
	width: 1500px;
    height: 840px;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 700px;
	z-index: -1;
}

.advantages-ctv__text{
	font-size: 32px;
	line-height: 120%;
	font-weight: 400;
	color: var(--white-color);
	max-width: fit-content;
}

.advantages-ctv__text span{
	color: var(--btn-accent-color);
}

.advantages-ctv__text span b{
	font-weight: 700;
}

.advantages-ctv__text .br-w{
	display: none;
}

.advantages-ctv__count{
	position: absolute;
	font-family: var(--family-unbounded);
	font-size: 24px;
	color: var(--btn-accent-color);
	font-weight: 700;
	bottom: 34px;
	left: 34px;
}

.advantages-ctv__count span{
	opacity: 0.6;
	font-size: 16px;
}

.advantages-ctv__bg-item{
	position: absolute;
	right: 110px;
	top: 50%;
	transform: translateY(-50%);
}

.advantages-ctv__bg-item img{
	width: 100%;
}

.advantages-ctv__item.advantages-ctv__item-1::before{
	display: none;
}

.advantages-ctv__item-1 .advantages-ctv__bg-item{
	background-color: rgba(255, 255, 255, 8%);
    padding-top: 15px;
	max-width: 580px;
	height: 336px;
    border-radius: 6px;
	right: 20px;
}

.advantages-ctv__item-1 .advantages-ctv__text{
	max-width: 580px;
}

@media (max-width: 1470px){
	.advantages-ctv{
		margin-bottom: 80px;
	}
	.advantages-ctv__item{
		min-height: 380px;
		padding-left: 125px;
	}
	.advantages-ctv__text{
		font-size: 24px;
	}
	.advantages-ctv__item-1 .advantages-ctv__text{
		max-width: 440px;
	}
	.advantages-ctv__bg-item{
		max-width: 320px;
		right: 80px;
	}
	.advantages-ctv__item-3 .advantages-ctv__bg-item{
		max-width: 290px;
	}
}

@media (max-width: 1230px){
	.advantages-ctv__subtitle{
		max-width: 440px;
	}
	.advantages-ctv__item {
        min-height: 324px;
        padding: 80px 30px 0 30px;
    }
	.advantages-ctv__item-1 .advantages-ctv__bg-item{
		padding-top: 10px;
		max-width: 430px;
		height: 250px;
		right: 30px;
	}
	.advantages-ctv__item::before{
		width: 1440px;
		height: 740px;    
		top: 0px;
		left: 200px;
	}
}

@media (max-width: 960px){
	.advantages-ctv__subtitle{
		max-width: 100%;
		margin-bottom: 130px;
	}
	.advantages-ctv__item{
		padding: 120px 26px 0;
		min-height: 620px;
	}
	.advantages-ctv__text{
		font-size: 32px;
	}
	.advantages-ctv__item-1 .advantages-ctv__text{
		max-width: 590px;
	}
	.advantages-ctv__count{
		font-size: 32px;
		bottom: unset;
		top: 45px;
	}
	.advantages-ctv__item::before{
		width: 2140px;
        height: 1240px;
        top: 180px;
        left: -80px;
	}
	.advantages-ctv__bg-item {
        max-width: 320px;
        right: 40px;
		top: 72%;
    }
	.advantages-ctv__item-2 .advantages-ctv__bg-item{
		top: 75%;
	}
	.advantages-ctv__item-1 .advantages-ctv__bg-item{
        padding-top: 5px;
        max-width: 665px;
        height: 265px;
        right: 25px;
	}
	.advantages-ctv__item-1 .advantages-ctv__bg-item img{
		width: 105%;
	}
}

@media (max-width: 740px){
	.advantages-ctv{
		margin-bottom: 60px;
	}
	.advantages-ctv__title{
		margin-bottom: 24px;
	}
	.advantages-ctv__subtitle{
		margin-bottom: 80px;
	}
	.advantages-ctv__item {
        padding: 113px 17px 0;
        min-height: 570px;
	}
	.advantages-ctv__text br{
		display: none;
	}
	.advantages-ctv__item-5 .advantages-ctv__text br,
	.advantages-ctv__text br.br-w{
		display: block;
	}
	.advantages-ctv__text{
		font-size: 23px;
	}
	.advantages-ctv__count{
		left: 17px;
	}
	.advantages-ctv__bg-item{
		max-width: 260px;
        right: 16%;
		top: 75%;
	}
	.advantages-ctv__item-3 .advantages-ctv__bg-item {
        max-width: 240px;
    }
	.advantages-ctv__item-1{
		padding-top: 120px;
	}
	.advantages-ctv__item-1 .advantages-ctv__bg-item {
        padding-top: 15px;
        max-width: 350px;
		width: 100%;
        height: 210px;
        right: unset;
		left: 50%;
		transform: translateX(-50%);
		top: 320px;
    }
	.advantages-ctv__item-1 .advantages-ctv__bg-item img{
		width: 100%;
	}
	.advantages-ctv__item-2 .advantages-ctv__bg-item {
        top: 79%;
    }
	.advantages-ctv__item::before{
		top: 140px;
        left: -330px;
	}
}

/* partners */

.partners{
	margin-bottom: 110px;
}

.partners__logo{
	display: flex;
	align-items: center;
	height: 100%;
}

.partners__logo img{
	display: block;
	max-height: 100%;
}


@media (max-width: 1470px){
	.partners{
		margin-bottom: 80px;
	}
}

@media (max-width: 740px){
	.partners{
		margin-bottom: 60px;
	}
}

/* cases */

.cases{
	margin-bottom: 140px;
}

.cases__wrapper{
	position: relative;
	height: 685px;
	border-radius: 18px;
	background-color: #F9EFFF;
	padding: 25px;
	display: flex;
	justify-content: space-between;
}

.cases__info{
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 570px;
	width: 100%;
}

.cases__title{
	color: #231F20;
	margin-top: 45px;
	margin-bottom: 52px;
}

.cases__text{
	color: #000;
	margin-bottom: 26px;
}

.cases__text .br-w{
	display: none;
}

.cases__text:last-of-type{
	margin-bottom: 0;
}

.cases__btn{
	margin-top: auto;
}

.cases__creo{
	position: relative;
	width: 700px;
	background-color: #131326;
	border-radius: 8px;
	overflow: hidden;
}

.cases__creo-wrap{
	position: relative;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cases__creo::before {
    content: '';
    display: block;
    background: url(../images/advantages/advantages-bg.png) center center;
    width: 1300px;
    height: 1540px;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 30px;
	transform: rotate(-10deg);
}

.creo-item__title{
	font-size: 26px;
	font-weight: 700;
	color: var(--btn-accent-color);
	font-family: var(--family-unbounded);
	margin-bottom: 12px;
	line-height: 110%;
}

.creo-item__text{
	font-size: 24px;
	font-weight: 300;
	color: var(--white-color);
	line-height: 120%;
}

/* == creo == */

.cases__creo-item{
	padding: 20px 40px;
	background-color: rgba(255, 255, 255, 7%);
	width: fit-content;
	border-radius: 1000px;
	overflow: hidden;
	box-shadow: 2px 2px 0px -1px rgba(255, 255, 255, 20%), 
				-2px -2px 0px -1px rgba(255, 255, 255, 20%), 
				6px 6px 10px 0px inset rgba(0, 0, 0, 10%);
	backdrop-filter: blur(3px);
	min-width: 280px;
	position: absolute;
	transform: translateY(-700%);
}

.cases__creo-item.creo-item-1{
	z-index: 2;
	top: 100px;
    min-width: 280px;
    right: 40px;
	--rotate: -15deg;
	--scale: 1;
}

.cases__creo-item.creo-item-2{
    z-index: 1;
    bottom: 310px;
    left: 80px;
    min-width: 430px;
    padding-left: 60px;
	--rotate: 10deg;
	--scale: 1;
}

.cases__creo-item.creo-item-3{
	z-index: 0;
	bottom: 180px;
    left: 20px;
	min-width: 645px;
	--rotate: 0deg;
	--scale: 1;
}

.cases__creo-item.creo-item-4{
	z-index: 1;
	bottom: 45px;
    left: 95px;
    min-width: 370px;
	--rotate: 17deg;
	--scale: 1;
}

.cases__creo-item.creo-item-2 .creo-item__text{
	font-size: 16px;
	line-height: 130%;
}
.cases__creo-item.creo-item-4 .creo-item__text{
	font-size: 18px;
}

.cases__creo-elem{
	position: absolute;
}

.cases__creo-elem.creo-elem-1{
	transform: translateY(50%) rotate(0);
    bottom: -235px;
    left: 120px;
	z-index: 4;
	transition: .5s .8s ease-in-out;
}
.cases__creo-elem.creo-elem-2{
	bottom: -35px;
    left: 15px;
	z-index: 4;
	transform: translateX(-110%) rotate(200deg);
	transition: .5s 1s ease-out;
}
.cases__creo-elem.creo-elem-3{
	bottom: 285px;
    left: 50px;
    z-index: 2;
	transform: translateY(-400%) rotate(260deg);
	transition: .7s 2s linear;
}
.cases__creo-elem.creo-elem-4{
	top: 180px;
    right: -26px;
    transform: rotate(0deg) scale(0.5);
	z-index: 4;
	opacity: 0;
	transition: .5s 1.2s ease-out;
}
.cases__creo-elem.creo-elem-5{
    z-index: 0;
    left: 240px;
    top: 40px;
    transform: translateX(-90%) translateY(-150%) rotate(-150deg) scale(var(--scale));
	--scale: 1;
}

.cases__creo.animated .creo-item-1{
	animation: dropDown 2s ease-in forwards;
}
.cases__creo.animated .creo-item-2{
	animation: dropDown 2s .2s ease-in forwards;
}
.cases__creo.animated .creo-item-3{
	animation: dropDown 2s .4s ease-in forwards;
}
.cases__creo.animated .creo-item-4{
	animation: dropDown 2s .5s ease-in forwards;
}

.cases__creo.animated .creo-elem-1{
	transform: translateY(0) rotate(-42deg);
}
.cases__creo.animated .creo-elem-2{
	transform: translateY(0) rotate(0);
}
.cases__creo.animated .creo-elem-3{
	transform: translateY(0) rotate(0);
}
.cases__creo.animated .creo-elem-4{
	transform: rotate(-33deg) scale(1);
	opacity: 1;
}
.cases__creo.animated .creo-elem-5{
	animation: ball 1s 1.5s ease-in forwards;
}

@media (max-width: 1470px){
	.cases{
		margin-bottom: 80px;
	}
	.cases__wrapper{
		height: 610px;
		padding: 32px 32px 32px 24px;
	}
	.cases__info{
		max-width: 475px;
	}
	.cases__title{
		margin-top: 40px;
	}
	.cases__text{
		font-size: 18px;
	}

	/* == creo 1470px == */

    .cases__creo {
        min-width: 700px;
        height: 635px;
        position: absolute;
        transform: scale(0.86);
        top: -10px;
        right: -20px;
    }
}

@media (max-width: 1230px){
	.cases__wrapper{
		flex-direction: column;
		padding: 30px;
		height: 830px;
	}
	.cases__title{
		margin: 0 0 40px;
	}
	.cases__info{
		display: grid;
        height: auto;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
	}
	.cases__text br{
		display: none;
	}
	.cases__text-1{
		grid-area: 2 / 1;
	}
	.cases__text-2{
		grid-area: 3 / 1;
	}
	.cases__btn{
		margin-left: auto;
    	grid-area: 3 / 2;
		justify-content: center;
		gap: 40px;
	}

	/* == creo 1230px == */

	.cases__creo{
		position: relative;
		right: unset;
		top: unset;
		height: 412px;
		width: 100%;
		transform: scale(1);
	}

	.cases__creo.animated .creo-elem-1 {
		transform: translateY(0) rotate(-30deg) scale(0.8);
	}
	.cases__creo-elem.creo-elem-1{
		bottom: -185px;
    	left: 260px;
	}
	.cases__creo.animated .creo-elem-2 {
		transform: translateY(0) rotate(0) scale(0.85);
	}
	.cases__creo-elem.creo-elem-2{
		bottom: 210px;
        left: 730px;
		transform: translateX(110%) rotate(200deg);
	}
	.cases__creo-elem.creo-elem-3{
		bottom: 150px;
	}
	.cases__creo.animated .creo-elem-4{
		transform: rotate(-33deg) scale(0.82);
	}
	.cases__creo-elem.creo-elem-4{
		top: 120px;
    	right: 244px;
	}
	.cases__creo-elem.creo-elem-5{
		left: 210px;
		top: -10px;
		--scale: 0.85;
	}
	.cases__creo-item.creo-item-1{
		top: 60px;
    	right: 280px;
		--scale: 0.85;
	}
	.cases__creo-item.creo-item-2{
		bottom: 150px;
		left: 70px;    
		--scale: 0.84;
	}
	.cases__creo-item.creo-item-3{
		bottom: 50px;
		left: -30px;
		--scale: 0.85;
	}
	.cases__creo-item.creo-item-4{
		bottom: 145px;
    	left: 535px;
		--scale: 0.85;
	}
}

@media (max-width: 960px){
	.cases__wrapper{
		padding: 50px 25px;
		height: 1430px;
	}
	.cases__title{
		margin-bottom: 42px;
	}
	.cases__info{
		grid-template-columns: 1fr;
	}
	.cases__text{
		font-size: 32px;
		margin-bottom: 32px;
	}
	.cases__text .br-w{
		display: block;
	}
	.cases__text-1,
	.cases__text-2,
	.cases__btn{
		grid-area: auto;
	}
	.cases__btn{
		margin-top: 42px;
		margin-left: 0;
	}

	/* == creo 960px == */

	.cases__creo {
        min-width: 700px;
        height: 635px;
        position: absolute;
        transform: scale(0.93);
        top: unset;
        right: 0;
		bottom: 30px;
    }

	.cases__creo.animated .creo-elem-1 {
		transform: translateY(0) rotate(-42deg) scale(1);
	}
	.cases__creo-elem.creo-elem-1{
		bottom: -235px;
    	left: 120px;
	}
	.cases__creo.animated .creo-elem-2 {
		transform: translateY(0) rotate(0) scale(1);
	}
	.cases__creo-elem.creo-elem-2{
		bottom: -35px;
    	left: 15px;
		transform: translateX(-110%) rotate(200deg);
	}
	.cases__creo-elem.creo-elem-3{
		bottom: 285px;
	}
	.cases__creo.animated .creo-elem-4{
		transform: rotate(-33deg) scale(1);
	}
	.cases__creo-elem.creo-elem-4{
		top: 180px;
    	right: -26px;
	}
	.cases__creo-elem.creo-elem-5{
		left: 240px;
    	top: 40px;
		--scale: 1;
	}
	.cases__creo-item.creo-item-1{
		top: 100px;
    	right: 40px;
		--scale: 1;
	}
	.cases__creo-item.creo-item-2{
		bottom: 310px;
    	left: 80px;  
		--scale: 1;
	}
	.cases__creo-item.creo-item-3{
		bottom: 180px;
    	left: 20px;
		--scale: 1;
	}
	.cases__creo-item.creo-item-4{
		bottom: 45px;
    	left: 95px;
		--scale: 1;
	}
}

@media (max-width: 740px){
	.cases{
		margin-bottom: 60px;
	}
	.cases__wrapper{
		padding: 35px 15px 15px;
		gap: 40px;
		height: auto;
	}
	.cases__title{
		margin-bottom: 28px;
	}
	.cases__text{
		font-size: 24px;
		margin-bottom: 28px;
		max-width: 98%;
	}
	.cases__text .br-w{
		display: none;
	}

	/* == creo 740px == */

	.cases__creo{
		position: relative;
		transform: scale(1);
		width: 100%;
		height: 520px;
		min-width: auto;
		bottom: 0;
	}

	.cases__creo.animated .creo-elem-1 {
		transform: translateY(0) rotate(-42deg) scale(1);
	}
	.cases__creo-elem.creo-elem-1{
		bottom: -214px;
        left: -40px;
	}
	.cases__creo.animated .creo-elem-2 {
		transform: translateY(0) rotate(0) scale(0.85);
	}
	.cases__creo-elem.creo-elem-2{
		bottom: -40px;
        left: -30px;
		transform: translateX(-110%) rotate(200deg);
	}
	.cases__creo-elem.creo-elem-3{
		bottom: 210px;
        left: 15px;
		transform: translateY(-400%) rotate(260deg) scale(0.6);
	}
	.cases__creo.animated .creo-elem-3 {
		transform: translateY(0) rotate(0) scale(0.6);
	}
	.cases__creo.animated .creo-elem-4{
		transform: rotate(-33deg) scale(0.7);
	}
	.cases__creo-elem.creo-elem-4{
		top: 148px;
        right: -58px;
        z-index: 0;
	}
	.cases__creo-elem.creo-elem-5{
        left: 40px;
        top: 35px;
        --scale: 0.6;
	}
	.cases__creo-item.creo-item-1{
		min-width: 290px;
		top: 95px;
        right: -25px;
		--scale: 0.65;
	}
	.cases__creo-item.creo-item-2{
        bottom: 242px;
        left: -90px;
		--rotate: 24deg;    
		--scale: 0.55;
	}
	.cases__creo-item.creo-item-2 .creo-item__text{
		font-size: 18px;
	}
	.cases__creo-item.creo-item-3{
		bottom: 150px;
		left: -150px;
		--scale: 0.5;
	}
	.cases__creo-item.creo-item-3 .creo-item__text{
		font-size: 22px;
	}
	.cases__creo-item.creo-item-4{
		z-index: 5;
		bottom: 55px;
        left: -40px;
		--scale: 0.75;
	}
}

/* effectiv */

.effectiv{
	margin-bottom: 160px;
}

.effectiv__creo{
	position: relative;
	width: 700px;
    height: 430px;
}

.effectiv__creo::before{
	content: '';
	display: block;
	background: url(../images/effectiv-creo.svg) center center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 100%;
}

.effectiv__creo img{
	width: 100%;
}

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

.effectiv__title{
	margin-bottom: 38px;
}

.effectiv__text{
	font-size: 24px;
	color: var(--white-color);
	line-height: 120%;
	margin-bottom: 120px;
}
.effectiv__text .br-w{
	display: none;
}

@media (max-width: 1470px){
	.effectiv{
		margin-bottom: 80px;
	}
	.effectiv__title{
		margin-bottom: 42px;
	}
	.effectiv__text{
		margin-bottom: 58px;
	}
	.effectiv__creo{
		top: 25px;
		width: 530px;
		height: 330px;
	}
}

@media (max-width: 1230px){
	.effectiv__title{
		max-width: 350px;
	}
	.effectiv__text br{
		display: none;
	}
	.effectiv__text .br-w{
		display: block;
	}
	.effectiv__text {
		max-width: 452px;
	}
	.effectiv__creo{
		top: 40px;
		width: 470px;
		height: 320px;
	}
	.effectiv__creo::before{
		background-image: url(../images/effectiv-creo-tablet.svg);
	}
}

@media (max-width: 960px){
	.effectiv__wrapper{
		position: relative;
		flex-direction: column;
	}
	.effectiv__title{
		max-width: 450px;
		margin-bottom: 32px;
	}
	.effectiv__text{
		max-width: 100%;
		font-size: 32px;
	}
	.effectiv__text .br-w{
		display: none;
	}
	.effectiv__creo{
		top: 0;
		width: 100%;
        height: 470px;
		margin-bottom: 110px;
	}
	.effectiv__btn{
		position: absolute;
		bottom: 0;
		left: 0;
	}
}

@media (max-width: 740px){
	.effectiv{
		margin-bottom: 60px;
	}
	.effectiv__title{
		max-width: 330px;
	}
	.effectiv__text{
		font-size: 24px;
		max-width: 360px;
		margin-bottom: 36px;
	}
	.effectiv__text .br-w{
		display: block;
	}
	.effectiv__creo{
		height: 270px;
	}
}


/* broadcasting */

.broadcasting{
	margin-bottom: 70px;
}

.broadcasting__wrapper{
	min-height: 568px;
	display: flex;
	align-items: flex-end;
    background: url(../images/broadcasting/broadcasting-bg.png) center left;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white-color);
	border-radius: 15px;
	overflow: hidden;
}

.broadcasting__galss{
	padding: 30px 24px;
	backdrop-filter: blur(25px);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 136px;
}

.broadcasting__btn{
	background-color: rgba(0, 0, 0, 65%);
	max-width: 313px;
	justify-content: center;
	gap: 36px;
}

@media (max-width: 1230px){
	.broadcasting__wrapper{
		min-height: 670px;
    	background-image: url(../images/broadcasting/broadcasting-bg-944.png);
	}
	.broadcasting__galss{
		padding: 30px;
		min-height: 240px;
		flex-direction: column;
		gap: 30px;
		align-items: baseline;
	}
}

@media (max-width: 960px){
	.broadcasting__wrapper{
		min-height: 776px;
    	background-image: url(../images/broadcasting/broadcasting-bg-720.png);
	}
	.broadcasting__galss{
		padding: 20px 25px;
		min-height: 270px;
	}
}

@media (max-width: 740px){
	.broadcasting{
		margin-bottom: 60px;
	}
	.broadcasting__wrapper{
		min-height: 570px;
	}
	.broadcasting__galss{
		padding: 15px;
		min-height: 212px;
		height: auto;
	}
	.broadcasting__title{
		font-size: 24px;
	}
}

/* stories */

.stories{
	margin-bottom: 66px;
}

.stories .container{
	position: relative;
}

.stories__item.not-published .stories__item-text{
	color: #A7A8A9;
}

.stories__item.case-place {
	padding: 22px;
}

.stories__item.case-place .stories__item-image{
	padding-top: 0;
	height: 100%;
	margin: 0;
}

.stories__item.case-place .stories__item-box{
	position: absolute;
	padding: 16px;
	bottom: 22px;
	left: 22px;
	height: auto;
	backdrop-filter: blur(20px);
	background-color: rgba(38, 38, 38, 25%);
	max-width: 396px;
	width: 100%;
	border-radius: 0px 0px 8px 8px;
}

.stories__item.case-place .stories__item-title{
	font-size: 32px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.stories__item.case-place .stories__btn{
	margin: 0;
	padding-left: 30px;
}

.stories__wrapper{
	box-shadow: 0px 0px 0px 1px inset var(--btn-accent-color);
	border-radius: 15px;
	padding: 80px 28px;
}

.stories__title{
	margin-bottom: 54px;
}

.stories__subtitle{
	max-width: 720px;
	line-height: 130%;
	margin-bottom: 90px;
}

.stories__navigation{
	top: 245px;
    right: 50px;
}

@media (max-width: 1470px){
	.stories{
		margin-bottom: 80px;
	}
	.stories__wrapper{
		padding: 68px 26px;
	}

	.stories__item.case-place .stories__item-title{
		font-size: 24px;
		max-width: 260px;
	}

	.stories__item.case-place .stories__item-box{
		padding: 32px 14px 14px 14px;
		max-width: 316px;
	}

	.stories__item.case-place .stories__btn{
		font-size: 20px;
	}
}

@media (max-width: 1230px){
	.stories__wrapper{
		padding: 40px 30px;
	}
	.stories__title{
		margin-bottom: 50px;
	}
	.stories__navigation{
		top: 260px;
		right: 40px;
	}
	.stories__item.case-place .stories__item-title{
		font-size: 32px;
		max-width: 100%;
	}
	.stories__item.case-place .stories__item-box{
		padding: 16px;
		max-width: 388px;
	}
	.stories__item.case-place .stories__btn{
		font-size: 24px;
	}
}

@media (max-width: 960px){
	.stories__subtitle{
		max-width: 100%;
		margin-bottom: 150px;
	}
	
	.stories__navigation{
		top: 440px;
		right: 40px;
		width: 660px;
	}
	.slider-card.stories__item{
		height: 675px;
	}
	.stories__item-image{
		padding-top: 49%;
		margin-bottom: 40px;
	}
	.stories__item.case-place .stories__item-box{
		padding: 25px 30px;
		max-width: 614px;
	}
	.stories__item.case-place .stories__item-title{
		font-size: 42px;
		margin-bottom: 50px;
		max-width: 380px;
	}
}

@media (max-width: 740px){
	.stories{
		margin-bottom: 60px;
	}
	.stories__wrapper{
		padding: 0;
		box-shadow: none;
	}
	.stories__title{
		margin-bottom: 28px;
	}
	.stories__navigation{
		top: 340px;
		right: 10px;
        width: 385px;
	}
	.stories__subtitle {
		margin-bottom: 110px;
	}
	.slider-card.stories__item{
		height: auto;
		padding-bottom: 45px;
	}
	.stories__item-image{
		margin-bottom: 23px;
	}
}

@media (max-width: 576px){
	.slider-card.stories__item.case-place {
		padding: 20px;
	}
	.stories__item.case-place .stories__item-box{
		padding: 30px 15px 15px 15px;
		max-width: 90%;
		bottom: 20px;
    	left: 21px;
	}
	.stories__item.case-place .stories__item-title{
		font-size: 24px;
		margin-bottom: 25px;
		max-width: 280px;
	}
	.stories__subtitle{
		max-width: 390px;
	}
}

/* shoppable */

.shoppable{
	margin-bottom: 50px;
}

.shoppable__wrapper{
	background-color: #F9EFFF;
	box-shadow: 0px 0px 0px 1px inset var(--btn-accent-color);
	border-radius: 18px;
	overflow: hidden;
	padding: 28px;
	display: flex;
	justify-content: space-between;
	min-height: 684px;
	position: relative;
}

.shoppable__wrapper::before{
	content: '';
	display: block;
	position: absolute;
	width: 600px;
	height: 600px;
	transform: rotate(40deg);
	top: -130px;
    left: -140px;
	background: url(../images/shoppable-bg.png) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.shoppable__info{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	z-index: 0;
}

.shoppable__title{
	color: #131326;
	margin-bottom: 32px;
}

.shoppable__text{
	color: #131326;
	margin-bottom: 40px;
}

.shoppable__text span{
	display: block;
	margin-top: 5px;
}

.shoppable__cards{
	display: flex;
	flex-direction: column;
	padding: 0 32px;
	border-radius: 8px;
	background-color: var(--white-color);
	width: 50%;
}

.shoppable__item{
	position: relative;
	padding: 34px 0;
	box-shadow: 0px 1px 0px rgba(1, 1, 21, 50%);
}

.shoppable__item:last-of-type{
	box-shadow: 0px 0px 0px rgba(1, 1, 21, 50%);
}

.shoppable__item-title{
	font-size: 24px;
	font-weight: 700;
	color: var(--btn-accent-color);
	margin-bottom: 24px;
	font-family: var(--family-unbounded);
	line-height: 120%;
}

.shoppable__item-text{
	font-size: 18px;
	line-height: 120%;
	color: #000;
}

.shoppable__item-num{
	position: absolute;
	top: 30px;
	right: 0;
	font-size: 25px;
	font-family: var(--family-unbounded);
	color: rgba(140, 140, 140, 35%);
	font-weight: 700;
}

@media (max-width: 1470px){
	.shoppable__wrapper{
		padding: 42px 40px 42px 24px;
	}
	.shoppable__item{
		padding: 30px 0 40px;
		box-shadow: 0px 2px 0px -1px rgba(1, 1, 21, 50%);
	}
	.shoppable__cards{
		width: 502px;
	}
	.shoppable__text{
		margin-bottom: 85px;
	}
	.shoppable__item-title{
		margin-bottom: 16px;
	}
	.shoppable__item-text br{
		display: none;
	}
	.shoppable__item-text{
		font-size: 16px;
		max-width: 360px;
	}
	.shoppable__btn{
		justify-content: center;
	}
}

@media (max-width: 1230px){
	.shoppable{
		margin-bottom: 90px;
	}
	.shoppable__wrapper{
		flex-direction: column;
		gap: 40px;
		padding: 60px 25px;
	}
	.shoppable__cards{
		flex-direction: row;
		width: 100%;
		padding: 0 25px;
		gap: 15px;
	}
	.shoppable__text{
		margin-bottom: 40px;
	}
	.shoppable__wrapper::before{
		top: 60px;
        left: unset;
        right: -20px;
        transform: rotate(195deg);
        width: 400px;
        height: 400px;
	}
	.shoppable__item{
		position: relative;
		padding: 88px 10px 40px 0px;
		box-shadow: none;
	}
	.shoppable__item::before{
		content: "";
		display: block;
		position: absolute;
		background-color: #01011550;
		width: 1px;
		height: 190px;
		top: 36px;
		right: 0;
	}
	.shoppable__item:last-of-type{
		padding-left: 0;
	}
	.shoppable__item:last-of-type::before{
		display: none;
	}
	.shoppable__item-title{
		font-size: 20px;
	}
	.shoppable__item-text{
		font-size: 14px;
	}
	.shoppable__item-num{
		right: unset;
		left: 0;
		top: 44px;
		font-size: 20px;
	}
}

@media (max-width: 960px){
	.shoppable__wrapper{
		gap: 60px;
	}
	.shoppable__wrapper::before{
		display: none;
	}
	.shoppable__btn{
		max-width: 313px;
	}
	.shoppable__cards{
		flex-direction: column;
		padding: 32px;
		gap: 24px;
	}
	.shoppable__item{
		padding: 0px 0px 24px 0px;
	}
	.shoppable__item:last-of-type{
		padding-bottom: 0;
	}
	.shoppable__item::before{
		width: 100%;
        height: 2px;
        top: unset;
        bottom: 0;
	}
	.shoppable__item-title{
		font-size: 36px;
		margin-bottom: 36px;
	}
	.shoppable__item-text{
		font-size: 24px;
	}
	.shoppable__item-text{
		max-width: 570px;
	}
	.shoppable__item-num {
        right: 0;
        left: unset;
        top: 0;
        font-size: 32px;
    }
	.shoppable__text br{
		display: none;
	}
	.shoppable__text br.br-w{
		display: block;
	}
}

@media (max-width: 740px){
	.shoppable{
		margin-bottom: 60px;
	}
	.shoppable__wrapper{
		padding: 40px 15px 20px;
		gap: 44px;
	}
	.shoppable__text{
		margin-bottom: 28px;
	}
	.shoppable__text span{
		margin-top: 15px;
	}
	.shoppable__cards{
		padding: 22px 15px 28px;
	}
	.shoppable__item-title{
		font-size: 24px;
		margin-bottom: 24px;
	}
	.shoppable__item-text{
		font-size: 18px;
	}
	.shoppable__item-num{
		display: none;
	}
}

/* news */

.news{
	margin-bottom: 66px;
}

.news .container{
	position: relative;
}

.news__title{
	margin-bottom: 60px;
}

.news__navigation{
	top: 0;
}

.news__item{
	background-color: var(--white-color);
}

.news__item-image{
	margin-bottom: 22px;
}

.news__item-title{
	margin-bottom: 12px;
}

.news__item-text{
	color: #000;
	line-height: 120%;
}

.news__item-text .br-w{
	display: none;
}

.news__item-5 .news__item-title,
.news__item-4 .news__item-title{
	font-size: 24px;
}

@media (max-width: 1470px){
	.news{
		margin-bottom: 80px;
	}
	.news__item-title {
    	margin-bottom: 20px;
	}
	.news__item-text{
		font-size: 18px;
	}
	.news__item-4 .news__item-title{
		font-size: 22px;
	}
	.news__item-5 .news__item-title{
		font-size: 20px;
	}
	
}

@media (max-width: 1230px){
	.news__title{
		margin-bottom: 50px;
	}
	.news__navigation{
		top: -10px;
	}
	.news__item-title{
		margin-bottom: 16px;
	}
	.news__item-text{
		font-size: 24px;
	}
	.news__item-5 .news__item-title,
	.news__item-4 .news__item-title{
		font-size: 24px;
	}
}

@media (max-width: 960px){
	.news__title{
		margin-bottom: 160px;
	}
	.news__navigation{
		top: 85px;
	}
	.slider-card.news__item{
		height: 730px;
	}
	.news__item-image{
		padding-top: 50%;
	}
	.news__item-text{
		font-size: 32px;
	}
	.news__item-text br{
		display: none;
	}
	.news__item-title{
		margin-bottom: 22px;
	}
	.news__item-5 .news__item-title,
	.news__item-4 .news__item-title{
		font-size: 36px;
		margin-bottom: 40px;
	}
}

@media (max-width: 740px){
	.news{
		margin-bottom: 60px;
	}
	.news__title{
		margin-bottom: 88px;
	}
	.news__navigation{
		top: 50px;
	}
	.slider-card.news__item{
		height: 470px;
	}
	.news__item-title{
		margin-bottom: 18px;
	}
	.news__item-text{
		font-size: 24px;
	}
	.news__item-text br,
	.news__item-text br.br-w{
		display: block;
	}
	.news__item-4 .news__item-title{
		font-size: 24px;
		margin-bottom: 30px;
	}
	.news__item-5 .news__item-title{
		font-size: 20px;
		margin-bottom: 30px;
	}
}

/* form */

.form-ctb__section{
	margin-bottom: 100px;
}

.form-ctb__section .container {
	position: relative;
	overflow: hidden;
}

.form-ctb__background img {
	width: 100%;
}


.form-ctb__background {
	position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
	z-index: -1;
}

.form-ctb__chain {
	position: absolute;
	top: -160px;
    right: -50px;
	z-index: -1;
	max-width: 660px;
}

.form-ctb__chain img {
	width: 100%;
}

.form-ctb__div {
	position: relative;
	overflow: hidden;
	padding: 90px 28px;
	border-radius: 18px;
	border: 1px solid #E1119F;
	z-index: 2;
}

.form-ctb__title {
	font-family: var(--family-unbounded);
	font-weight: 700;
	font-size: 32px;
	color: var(--btn-accent-color);
	margin-bottom: 80px;
}

.form-ctb__input {
	display: block;
	max-width: 604px;
	width: 100%;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.09);
	border-radius: 10px;
	padding: 9px 20px;
	color: #fff;
	margin-bottom: 28px;
	font-size: 17px;
	font-family: var(--family-montserrat);
}

.form-ctb__input::placeholder {
	color: #fff;
}

.btn-form-ctb {
	padding-left: 28px;
	margin-top: 63px;
	margin-bottom: 32px;
}

.btn-form-ctb:disabled{
	background-color: #A7A8A9;
}

.form-ctb__policy {
	font-family: var(--family-montserrat);
	font-size: 12px;
	color: #fff;
}

.form-ctb__label{
	position: relative;
}

.form-ctb__label.error .form-ctb__input{
	box-shadow: 0px 0px 0px 1px red inset;
}

.form__error {
	position: absolute;
    top: -20px;
    left: 0;
	color: var(--white-color);
	font-size: 12px;
}

.form-ctb__form{
	position: relative;
}

.form-ctb__response{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(30px);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	font-size: 32px;
	border-radius: 10px;
	box-shadow: 0px 0px 0px 2px var(--btn-accent-color) inset;
	transition: .1s ease-in-out;
	opacity: 0;
	visibility: hidden;
}

.form-ctb__response.failure,
.form-ctb__response.success,
.form-ctb__response.loading{
	opacity: 1;
	visibility: visible;
}

@media (max-width: 1470px){
	.form-ctb__section{
		margin-bottom: 80px;
	}
	.form-ctb__title{
		margin-bottom: 62px;
		max-width: 400px;
	}
	.form-ctb__div{
		padding: 54px 24px;
	}
	.form-ctb__input{
		margin-bottom: 16px;
		border-radius: 10px;
	}
	.btn-form-ctb{
		margin-top: 54px;
		margin-bottom: 22px;
	}
	.form-ctb__chain{
		top: -80px;
		right: -40px;
		max-width: 550px;
	}
}

@media (max-width: 1230px){
	.form-ctb__div{
		padding: 54px 32px 32px;
	}
	.form-ctb__input{
		max-width: 526px;
	}
	.form-ctb__policy{
		max-width: 420px;
	}
	.form-ctb__chain {
        top: -50px;
        right: -90px;
        max-width: 480px;
    }
	.form-ctb__background{
		right: -390px;
	}
}

@media (max-width: 960px){
	.form-ctb__div{
		padding: 46px 26px;
		min-height: 915px;
	}
	.form-ctb__chain{
		display: none;
	}
	.form-ctb__title {
        max-width: 100%;
    }
	.form-ctb__input{
		max-width: 630px;
		height: 90px;
		border-radius: 10px;
		font-size: 24px;
		margin-bottom: 32px;
	}
	.form-ctb__policy{
		font-size: 16px;
		max-width: 550px;
		margin-top: 95px;
	}
	.btn-form-ctb {
        margin: 0;
        transform: scale(1.4) translate(45px, 35px);
    }
	.form-ctb__background {
        right: -370px;
        top: 380px;
    }
	.form-ctb__response{
		font-size: 24px;
	}
}

@media (max-width: 740px){
	.form-ctb__div{
		padding: 0;
		border: none;
		min-height: 640px;
	}
	.form-ctb__title{
		font-size: 28px;
		max-width: 350px;
		margin-bottom: 34px;
	}
	.form-ctb__input{
		max-width: 100%;
		height: 74px;
		font-size: 18px;
		padding: 20px;
		margin-bottom: 24px;
	}
	.btn-form-ctb{
		transform: none;
		margin-top: 48px;
	}
	.form-ctb__policy{
		margin-top: 10px;
		max-width: 330px;
	}
	.form-ctb__response{
		font-size: 20px;
	}
}