html{box-sizing: border-box;
}

*,
*::after,
*::before{
	box-sizing: inherit;
}
@font-face{
	font-family: 'Corporate-A-Bold';
	font-style: normal;
	font-weight: 700;
	src: url('..fonts/Corporate-A-Bold.woff2') format('woff2'),
		 url('..fonts/Corporate-A-Bold.woff') format('woff');
}
body{
	background: linear-gradient(180deg, #070A1B 0%, #2A3170 100%);
	font-size: 16px;
	line-height: 120%;
	font-weight: 400;
	color: #fff;
	font-family: 'Roboto Condensed', sans-serif;
}
img{
	max-width: 100%;
}

a{
	text-decoration: none;
	color: inherit;
}

ul{
	list-style-type: none;
}
button{
	background-color: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
}

.container{
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 10px;
}

.header__logo{
	margin-left: 115px;
}
.header{
	background: #070A1B;
}
.header__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
.list{
	display: flex;
}
.list__item + .list__item{
	margin-left: 30px;
}

.list__link{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	transition: background .3s;
}
.list__link:hover {
	background-color: #C1A1D2;
}
.header__content{
	background-image: url(../images/header-bg.png);
	min-height: calc(100vh - 100px);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	position: relative;
}
.header__content::before{
	content: "";
	background-image: url(../images/decor.svg);
	width: 50px;
	height: 50px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -25px;
}
.title{
	font-family: 'Corporate-A-Bold';
	margin-bottom: 5px;
	font-size: 72px;
	line-height: 120%;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.title-descr{
	font-size: 24px;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	margin-bottom: 50px;
}
.footer{
	background: #070A1B;
}
.footer__inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 300px;
	margin: 0 auto;
	padding: 0 10px;
}
.concept{
	padding-top: 150px;
	margin-bottom: 150px;
}
.concept_inner{
	max-width: 900px;
	margin-left: auto;
}
.section__title{
	margin-bottom: 25px;
	text-transform: uppercase;
	font-size: 18px;
	color: #F402A2;
	font-family: 'Corporate-A-Bold';
}
.concept__text{
	font-size: 24px;
	color: #FFFFFF;
	margin-bottom: 25px;
	line-height: 120%;
	max-width: 900px;
}
.premier{
	margin-bottom: 150px;
}
.premier__inner{
	display: flex;
	gap: 60px;
}
.premier__text{
	margin-bottom: 23px;
	max-width: 570px;
}
.premier__img{
	margin-bottom: 20px;
}
.premier__btn{
	display: block;
	width: 100%;
	color: #F402A2;
	font-size: 18px;
	line-height: 120%;
	text-transform: uppercase;
	text-align: center;
	padding: 14px;
	border: 1px solid #F402A2;
	font-family: 'Corporate-A-Bold';
	transition: all .3s;
}
.premier__btn:hover{
	color: #53A1CB;
	border: 1px solid #53A1CB;
}
.video{
	margin-bottom: 150px;
}
.video__img{
	margin-bottom: 25px;
}
.video__btn{
	display: flex;
	color: #F402A2;
	font-size: 18px;
	width: 100%;
	gap: 10px;
	line-height: 120%;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	padding: 14px;
	border: 1px solid #F402A2;
	font-family: 'Corporate-A-Bold';
	transition: all .3s;
}
.video__btn:hover{
	color: #53A1CB;
	border: 1px solid #53A1CB;
}
.video__btn path {
	transition: all .3s;
}
.video__btn:hover path {
	fill: #53A1CB;
}
.design__interior{
	display: grid;
	margin-bottom: 100px;
	grid-template-columns: 255px 255px auto 330px;
	grid-template-rows: auto auto;
	gap: 14px 44px;
}
.design__cell-one{
	grid-row: 1/3;
}
.design__cell-two{
	grid-row-end: -1;
	display: flex;
	align-items: flex-end;
}
.design__interior-img{
	grid-column:2/-1;
}
.design__cell-three{
	grid-row-end: -1;
	grid-column-end: -1;
	display: flex;
	align-items: flex-end;
}
.design__cell-text{
	margin-bottom: 15px;
}
.design-slider__item{
	margin: 0 30px;
}
.slick_track{
	margin-left: -35px;
}
.design-slider{
	padding-bottom: 25px;
}
.arrow{
	position: absolute;
	z-index: 10;
	cursor: pointer;
	bottom: 0;
	left: 50%;
}
.arrow-left{
	transform: translateX(-80px);
}
.arrow-right{
	transform: translateX(30px);
}
.design__box{
	max-width: 590px;
	padding: 0 10px;
	margin: 150px auto;
	display: flex;
	gap: 60px;
}
.design__box-tex{
	margin-bottom: 15px;
}
.design__box-colmn{
	width: 255px;
}
.design__img{
	max-width: 100%;
	display: block;
	object-fit: cover;
}

@media (max-width:1366px ){
	.footer__inner{
		height: 150px;
	}
}

@media (max-width:1020px ){
	.design__interior{
		display: block;
	}
	.design__interior-img{
		margin-bottom: 25px;
		width: 100%;
	}
	.design__cell-three .design__interior-img{
		max-width: 100%;
		width: auto;
	}
}

@media (max-width:768px ){
    .header__logo {
   		 margin-left: 115px;
	}
   .logo__img{
   		width: 180px;
   } 
   .list__item + .list__item {
  	    margin-left: 15px;
	}
	.list_link{
		width: 35px;
		height: 35px;
	}
	.title{
		font-size: 55px;
	}
	.title-descr{
		font-size: 18px;
	}
	.concept{
		padding-top: 75px;
		margin-bottom: 75px;
	}
	.concept__text{
		font-size: 16px;
	}
	.premier__inner{
		display: block;
	}
	.premier, .video {
        margin-bottom: 75px;
    }
    .premier__img{
    	width: 100%;
    	margin-top: 25px;
    }
    .design__box{
    	margin: 75px auto;
    	display: block;
    }
    .design__box-colmn{
    	width: 100%;
    }
}

@media (max-width:620px){
	.footer__inner{
		flex-wrap: wrap;
		align-content: center;
	}
	.footer .list{
		width: 100%;
		margin-top: 0px;
		justify-content: center;
	}
}

@media (max-width:520px){
	.header__top{
		flex-wrap: wrap;
		align-content: center;
	}
	.list{
		justify-content: center;
		padding-top: 10px;
		width: 100%;
	}
	.title {
        font-size: 34px;
	}
	.footer__inner{
		flex-direction: column;
		padding-top: 10px;
	}
}

@media (max-width:360px){
	.desihn-slider__item{
		margin: 0;
	}
	.slick-track{
		margin-left: 0;
	}
}