/*--- HEADER ---*/
.section--header {
    background: #000;
}

.header {	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

/*logo*/
.logo {
    display: block;
    flex: 0 0 150px;
    padding: 12px 0;
}

.logo img {
	display: block;
	width: 100%;
}

/*navigation*/
.navigation {	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 24px;
	margin: 0;
	list-style: none;
	padding: 0;
	align-self: stretch;
}

.navigation li {
	
}

.navigation a {
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	height: 100%;
	transition: 0.1s cubic-bezier(0.86, -0.05, 0, 1.06);
}

.navigation a:hover {
	color: var(--main-clr);
	box-shadow: inset 0px -4px 0px 0px var(--main-clr);
}

/*language*/
.language {	
	padding: 6px 12px;
	background: #000;
	border: 1px solid #2e2e2e;
	border-radius: 6px;
	position: relative;
	color: #fff;
}

.language:hover {
	border-bottom-color: transparent;
	border-radius: 6px 6px 0 0;
}

.language-popup {	
	display: none;
	position: absolute;
	top: 100%;
	left: -1px;
	width: calc(100% + 2px);
	color: #232332;
	background: #ffffff;
	border: 1px solid #2e2e2e;
	border-top: none;
	padding: 6px 12px;
	border-radius: 0 0 6px 6px;
}

.language:hover .language-popup {
	display: block;
} 

.language__selected,
.language__item {	
	display: flex;
	align-items: center;
	font-weight: 400;
	cursor: pointer;
	width: 100%;
font-size: 14px;}

.language__selected img,
.language__item img {	
	display: block;
	width: 24px;
	margin: 0 6px 0 0;
	cursor: pointer;
}

.language__item:hover {
	color: var(--main-clr);
}

/*burger*/
.burger {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

@media (min-width: 768px) {
	.burger {
		display: none;
	}
}

.menu-expanded .burger:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000087;
    backdrop-filter: blur(1px);
	z-index: 9;	
}

.burger span {
    background: #fff;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    display: block;
}

/*--- HELLO ---*/
.section--hello {	
    min-height: calc(100vh - 104px);
    background: url(/assets/img/bg/hello-bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hello {
    max-width: 630px;	
}

.hello h1 {

}

.hello p {
	color: #fff;
}

.hello .btn {
    max-width: 280px;	
}

/*--- ADVANTAGE ---*/
.section--advantage {
	background: #000;
}

.advantage {	
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 24px 0;
}

.advantage__item {	
	padding: 24px;
}

.advantage__item + .advantage__item {	
	border-left: 2px solid #2e2e2e;
}

.advantage__item:first-child {
	padding-left: 0;
}

.advantage__item:last-child {
	padding-right: 0;
}

.advantage__item h3 {
	
}

.advantage__item p {
	
}

/*--- ABOUT & FEEDBACK WRAPPER ---*/
.section--about-feedback {
	background: url(/assets/img/bg/feedback-bg.jpg);
    background-size: cover;
    background-position: center;
}

/*--- ABOUT ---*/
.section--about {	
	padding: 48px 0;
	background: url(/assets/img/bg/about-bg.jpg);
    background-size: cover;
    background-position: center;
}

.section--about-feedback .section--about {
	background: none;
    padding: 96px 0 48px;	
}

.about {	
	background: #000;
	padding: 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0 48px;
	border-radius: 6px;
}

.about--big {
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 0 24px;
}

.about--big h3 {
	font-weight: 500;
}

/*--- FEEDBACK ---*/
.section--fedback {
	padding: 48px 0;
	background: url(/assets/img/bg/feedback-bg.jpg);
    background-size: cover;
    background-position: center;
}

.section--about-feedback .section--fedback {
	background: none;
	padding: 48px 0 96px;	
}

.feedback {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 0 96px;
	align-items: center;
}

.feedback--short {
	grid-template-columns: 1fr;
}

.feedback__info {
	max-width: 400px;
	margin: 0 0 0 auto;
}

.feedback__info h3 {
	font-weight: 400;
	font-size: 2rem;
	text-transform: uppercase;
}

.feedback__info a {
	display: block;
	font-size: 1.75rem;
	margin: 0;
}

.feedback__info a + p {
	margin-top: 24px;
}

.feedback__form {	
	max-width: 400px;
}

.feedback--short .feedback__form {	
    max-width: 480px;
    margin: 0 auto;
}

.feedback__form h4 {
	font-weight: 400;
	font-size: 1.5rem;
	text-align: center;
}

.feedback__form .btn {
	width: 100%
}

/*--- FOOTER ---*/
.section--footer {
	padding: 48px 0;
}

.footer {
	display: grid;
	grid-template-columns: 2fr 3fr 3fr;
	grid-gap: 0 48px;
}

.footer__caption {	
	font-size: 2rem;
	text-transform: uppercase;
	margin: 0 0 24px 0;
	border-top: 3px solid #fff;
	padding: 24px 0 0 0;
}

.footer-company {
	
}

.footer-company__logo {
	display: block;
	max-width: 168px;
	margin: 0 auto 24px;
}

.footer-company__logo img {
	display: block;
	width: 100%;
}

.footer-company__name {	
	text-align: center;
}

.footer-contacts {
	
}

.footer-contacts__item {
	color: #fff;
	display: block;
	margin: 0;
}

.footer-contacts__item + .footer-contacts__item {
	margin-top: 1rem;
}

.footer-contacts__item > a {
	color: #fff;
}

.footer-contacts__item > a:hover {
	color: var(--main-clr-hov);
}

/*--- COPIRIGHT ---*/
.section--copiright {
	padding: 12px 0;
	border-top: 1px solid #2e2e2e;
}

.copiright {	
	display: flex;
    justify-content: space-between;
	align-items: center;
}

.copiright__text {
	
}

.copiright__up {	
	border: 2px solid #2e2e2e;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	cursor: pointer;
}

/*--- WTF ---*/
.section--wtf {	
	padding: 48px 0;
}

.wtf {
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 0 48px;
}

.wtf h3 {
	font-weight: 500;
	font-size: 28px;
}

.wtf h4 {
	font-weight: 500;
	font-size: 22px;
}

.wtf-side {
	
}

.wtf-side * + h4 {
	margin-top: 3rem;
}

/*--- SLIDER ---*/
.section--slider {
    padding: 48px 0;
}

.slider-outer {	
	display: grid;	
	grid-template-columns: calc(70% - 24px) 30%;	
	grid-template-areas: "slider text";	
	grid-gap: 24px;	
	align-items: flex-start;
}

.slider-outer--text-top {
	grid-template-columns: 100%;
	grid-template-areas: "text" "slider";	
}

.slider-outer--text-bottom {
	grid-template-columns: 100%;
	grid-template-areas: "slider" "text";	
}

.slider-text {	
	grid-area: text;
}

.slider {	
	position: relative;
}

.slider-item {
	
}

.slider-item img {
	width: 100%;
}

.slider__arrow {
	width: 36px;
	height: 36px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
	z-index: 1;
	cursor: pointer;
	transition: 0.1s cubic-bezier(0.42, 0, 0.23, 1.02);
}

.slider__arrow:hover {
	opacity: 0.75;
}

.slider__arrow--prev {	
	left: 0;
}

.slider__arrow--prev svg {
	transform: rotateZ(90deg);
}

.slider__arrow--next {
	right: 0;
}

.slider__arrow--next svg {
	transform: rotateZ(-90deg);
}

.slider .slick-dots {
	list-style-type: none;
	display: flex!important;
	justify-content: center;
	padding: 00;
	margin: 0;
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
}

.slider .slick-dots > li {		
	padding: 0 9px;
}

.slider .slick-dots > li > button {
	border: 2px solid transparent;
	background: #fff;
	color: transparent;
	width: 9px;
	height: 16px;
	white-space: nowrap;
	border-radius: 50%;
	display: block;
	font-size: 0;
	line-height: 0;
	cursor: pointer;
}

.slider .slick-dots > li.slick-active > button {	
	border-color: var(--main-clr);
	background: var(--main-clr);
}

/*--- CATALOG ---*/
.section--catalog {
	padding: 48px 0;
	background: url(/assets/img/bg/about-bg.jpg);
	background-size: cover;	
	background-position: center;
}

.catalog {
	
}

.catalog-wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 48px 0 0 0;
	grid-gap: 24px;
}

.catalog-card {
	
}

.catalog-card__image {
	margin: 0 0 12px 0;
	border-radius: 3px;
	overflow: hidden;
}

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

.catalog-card__title {
	text-align: center;
	display: block;
	font-size: 18px;
	font-weight: 700;
	position: relative;
	padding: 0 0 5px 0;
}

.catalog-card__title:after {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--main-clr);
	position: absolute;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

.catalog-info {
    background: #000;
    padding: 24px;
    margin: 24px 0 0 0;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

.catalog-info .btn {
    max-width: 360px;
    margin: auto;
}

.catalog-info .btn:hover {
	color: #fff;
}

/* Стили соболезнования */
.up-header {
	background-color: black;
}
.up-header-center {
	padding-top: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.up-header-center img {
	width: 200px;
}
.up-header p {
	color: white;
	padding: 10px 0;
	text-align: center;
}
/* Конец стилей соболезнования */