/*BANER START*/
.where_baner__section{
	margin-bottom: 32px;
}
.where_baner__wrap{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 70vh;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	padding-left: calc((100% - 1312px) / 2);
}
.where_baner__wrap h1{
	margin-bottom: 32px;
}
.where_baner__wrap > p{
	margin-bottom: 64px;
	max-width: 30%;
}
.where_baner__link{
	position: relative;
	margin-bottom: 32px;
	padding-left: 48px;
}
.where_baner__link::before{
	content: '';
	position: absolute;
	display: block;
	width: 32px;
	height: 32px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.where_baner__link.phone::before{
	background-image: url(../img/phone.svg);
}
.where_baner__link.address::before{
	background-image: url(../img/marker.svg);
}
.where_baner__link.email::before{
	background-image: url(../img/mail.svg);
}
.where_baner__socials{
	margin-top: 16px;
	margin-bottom: 64px;
}
.where_baner__socials a {
	display: inline-block;
	margin-right: 16px;
	transition: all .5s;
}
.where_baner__socials a:hover{
	filter: invert(37%) sepia(49%) saturate(1251%) hue-rotate(320deg) brightness(88%) contrast(97%);
}
.where_baner__img{
	position: absolute;
	width: 60%;
	height: 100%;
	right: 0;
	top: 0;
	object-fit: cover;
/* 	z-index: -1; */
	border-radius: 16px 0 0 16px;
}
/*BANER END*/

/*CONTACTS START*/
.where_contacts__section{
	margin-bottom: 184px;
	position: relative;
}
.where_contacts__wrap{
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: space-between;
	align-items: center;
}
.where_contacts__tiles{
	width: 100%;
	padding-top: 52%;
	position: relative;
}
.where_contacts__tiles img{
	position: absolute;
	display: block;
	object-fit: cover;
}
.where_contacts__tiles img:first-child{
	width: calc(65% - 8px);
	height: calc(70% - 8px);
	top: 0;
	left: 0;
}
.where_contacts__tiles img:nth-child(2){
	width: calc(35% - 8px);
	height: calc(30% - 8px);
	top: 0;
	right: 0;
}
.where_contacts__tiles img:nth-child(3){
	width: calc(65% - 8px);
	height: calc(30% - 8px);
	bottom: 0;
	left: 0;
}
.where_contacts__tiles img:last-child{
	width: calc(35% - 8px);
	height: calc(70% - 8px);
	bottom: 0;
	right: 0;
}
.where_contacts__form{
	width: 100%;
	max-width: 400px;
	margin-left: 64px;
}
.where_contacts__form h2{
	margin-bottom: 36px;
}
.where_contacts__form .text{
	margin-bottom: 16px;
}
/*CONTACTS END*/


/*LIGHTBOX*/
.where_contacts__lightbox{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-wrap: wrap;
	background-color: #000000d4;
	padding: 24px;
	z-index: 6000;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transform: translateY(-110%);
	opacity: 0;
	transition: all .5s;
}
.where_contacts__lightbox.active{
	transform: translateY(0);
	opacity: 0;
}
.where_contacts__lightbox .where_contacts__main_slider{
	width: 100%;
	max-width: 870px;
}
.where_contacts__lightbox .where_contacts__secondary_slider{
	width: 100%;
	max-width: 240px;	
}
.where_contacts__main_slider .slick-slide{
	aspect-ratio: 1 / 0.53;
	object-fit: cover;
	object-position: center;
	border-radius: 16px;
}
.where_contacts__secondary_slider .slick-slide{
	aspect-ratio:  1 / 1;
	border-radius: 8px;
	margin: 5px;
	margin-top: 28px;
}
.where_contacts__secondary_slider .slick-slide.bordered{
	border: 2px solid var(--orange);
}
.where_contacts__secondary_slider .slick-prev,
.where_contacts__secondary_slider .slick-next{
	top: calc(100% + 28px);
}
.where_contacts__main_slider .slick-prev,
.where_contacts__main_slider .slick-next{
	top: calc(100% + 28px);
}
.where_contacts__main_slider .slick-prev{
	left: 0;
}
.where_contacts__main_slider .slick-next{
	right: 0;
}
.close_lighbox{
	position: absolute;
	top: 40px;
	right: 40px;
}
/*LIGHTBOX END*/


/*PARTNERS START*/
.where_partners__section{
	margin-bottom: 236px;
}
.where_partners__wrap h2{
	margin-bottom: 72px;
}
.where_partners__slider .slick-list{
	overflow: visible !important;
	/*overflow-x: hidden !important;*/
	z-index: 100;
}
.where_partners__slide{
	display: flex !important;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	visibility: hidden;
}
.where_partners__slide.slick-current{
	visibility: visible;
}
.where_partners__item{
	width: 100%;
	max-width: 25%;
	padding: 32px;
	position: relative;
}
.where_partners__item img{
	margin: auto;
	filter: grayscale(100%);
	transition: all .3s;
}
.where_partners__item:hover img{
	filter: grayscale(0);
}
.where_partners__tooltip{
	position: absolute;
	display: block;
	width: 100%;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-24px);
	background: linear-gradient(90.25deg, #FA8A72 0.19%, #FF685F 99.78%);
	border-radius: 8px;
	padding: 16px;
	transition: all .3s;
}
.where_partners__item:hover .where_partners__tooltip{
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	z-index: 100;
}
.where_partners__tooltip h3{
	font-weight: 600;
	font-size: 20px;
	line-height: 103%;
	color: #fff;
	margin-bottom: 8px;
}
.where_partners__tooltip p{
	font-weight: normal;
	font-size: 16px;
	line-height: 150%;
	color: #fff;
}
/*PARTNERS END*/




/*PRAVKY*/
.icons_text__content{
	padding-right: 32px;
}

@media screen and (max-width:  920px){
	.where_baner__section{
		margin-bottom: 64px;
	}
	.where_baner__img{
		position: static;
	    width: 100%;
	    order: -1;
	    border-radius: 0;
	    margin-bottom: 32px;
	}
	.where_baner__wrap > h1,
	.where_baner__wrap > p,
	.where_baner__wrap > div{
		width: 100%;
		padding: 0 24px;
		max-width: unset;
	}	
	.where_baner__wrap > .where_baner__link{
		padding-left: 64px;
	}
	.where_baner__link::before{
		left: 24px;
	}
	.where_baner__wrap > .orange-button{
		margin-left: 24px;
	}
	.where_baner__wrap h1{
		margin-bottom: 8px;
	}
	.where_baner__wrap > p{
		margin-bottom: 40px;
	}
	.where_baner__socials{
		margin-top: 0;
		margin-bottom: 40px;
	}

	.where_contacts__section{
		margin-bottom: 96px;
	}
	.where_contacts__wrap{
		flex-wrap: wrap;
	}
	.where_contacts__tiles{
		padding-top: 90%;
	}
	.where_contacts__tiles img:first-child{
		width: calc(65% - 2px);
		height: calc(65% - 2px);
	}
	.where_contacts__tiles img:nth-child(2){
		width: calc(35% - 2px);
		height: calc(35% - 2px);
	}
	.where_contacts__tiles img:nth-child(3){
		width: calc(65% - 2px);
		height: calc(35% - 2px);
	}
	.where_contacts__tiles img:last-child{
		width: calc(35% - 2px);
		height: calc(65% - 2px);
	}
	.where_contacts__tiles{
		margin-bottom: 40px;
	}
	.where_contacts__form{
		max-width: unset;
		margin-left: 0;
	}
	.where_contacts__form h2{
		margin-bottom: 8px;
		display: none;
	}
	.where_contacts__form .text{
		margin-bottom: 32px;
	}
	.where_partners__item{
		max-width: 30%;
		width: auto;
		padding: 4px;
	}
	.where_partners__item img{
		width: 100%;
	}
	.where_partners__tooltip{
		display: none;
	}
	.where_partners__section .slick-prev{
		left: 0;
	} 
	.where_partners__section .slick-next{
		right: 0;
	}
	.where_partners__section{
		margin-bottom: 160px;
	}
	.where_contacts__lightbox .where_contacts__secondary_slider{
		max-width: 168px;
	}
	.where_contacts__main_slider .slick-prev,
	.where_contacts__main_slider .slick-next{
		top: calc(100% + 56px);
	}
	.where_contacts__secondary_slider .slick-slide{
		margin-top: 40px;
	}
	.close_lighbox{
		top: 20px;
		right: 20px;
	}
}