/* Reset */
*,
*::before,
*::after {padding: 0; margin: 0; border: 0; -webkit-box-sizing: border-box; box-sizing: border-box;}
a {text-decoration: none; color: inherit;}
ul, ol, li {list-style: none;}
img {vertical-align: top;}
h1, h2, h3, h4, h5, h6 {font-size: inherit; font-weight: inherit;}
html, body {line-height: 1;}
textarea, button, input, select {font-family: inherit; font-weight: inherit; font-size: inherit; color: inherit; outline: none;}
button {cursor: pointer; background-color: inherit;}

/* Variables */
:root {
	--body-bgcolor: #171717;
	
	--black-color: #070707;
	--dark-color: #171717;
	--gray-color: #1F1F1F;
	--grey-color: #4F4F4F;
	--light-grey-color: #777777;
	--light-color: #CCCCCC;

	--white-color: #FFFFFF;
	--accent-color: #CAAB75;

	--header-height-pc: 88px;
	--header-height-mob: 68px;

}

/*-------------START---------------*/
/*---------------------------------*/

::-webkit-input-placeholder {
	opacity: 1;
	color: var(--white-color);
}
::-moz-placeholder {
	opacity: 1;
	color: var(--white-color);
}
:-ms-input-placeholder {
	opacity: 1;
	color: var(--white-color);
}
::-ms-input-placeholder {
	opacity: 1;
	color: var(--white-color);
}
::placeholder {
	opacity: 1;
	color: var(--white-color);
}
::selection {
	background-color: var(--accent-color);
	color: var(--dark-color);
}

body {
	background: var(--black-color);
	font-family: 'Manrope', sans-serif;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 400;
	font-style: normal;
	color: var(--light-color);
	scroll-behavior: smooth;
	min-width: 340px;
	overflow-x: hidden;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	display: block;
	font-family: 'Oxanium', sans-serif;
	font-weight: 400;
	line-height: 1.15;
	text-transform: capitalize;
	color: var(--white-color);
	margin: 0;
}

h1, .h1 {
	font-size: 38px;
}

h2, .h2 {
	font-size: 34px;
}

h3, .h3 {
	font-size: 30px;
}

h4, .h4 {
	font-size: 26px;
}

h5, .h5, h6, .h6 {
	font-size: 22px;
}

.txt_page h1, .txt_page .h1 { margin-bottom: 10px;}
.txt_page h2, .txt_page .h2,
.txt_page h3, .txt_page .h3,
.txt_page h4, .txt_page .h4,
.txt_page h5, .txt_page .h5,
.txt_page h6, .txt_page .h6 {
	margin-top: 20px;
	margin-bottom: 10px;
}

h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
h4 span, .h4 span {
	display: inline-block;
}


b, strong { font-weight: 700; }
i, em { font-style: normal; }

a {
	color: var(--white-color);
	transition: all 0.3s ease;
}

a:hover, a:active {
	color: var(--accent-color);
}

img { max-width: 100%; }
video { max-width: 100%; }

p:not(:last-child) {
	margin-bottom: 10px;
}

hr {
	border: none;
	border-top: 1px solid var(-color);
	text-align: center;
	height: 1px;
	margin: 20px auto;
	max-width: 90%;
}

.txt_page ol, .txt_page ol,
.txt_page ul, .txt_page ul {
	margin: 10px 0;
	padding-left: 23px;
}

.txt_page ul li {
	list-style: disc;
}

.txt_page ol li {
	list-style: decimal;
}

.custom-list ul,
.custom-list ol {
	margin: 10px 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.custom-list ul.twocols,
.custom-list ol.twocols {
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 20px;
}

.custom-list ul.twocols li,
.custom-list ol.twocols li {
	flex: 0 1 calc(50% - 10px);
}

.custom-list ul:last-child,
.custom-list ol:last-child {
	margin-bottom: 0;
}

.custom-list ul > li,
.custom-list ol > li {
	position: relative;
	line-height: 1.4;
	display: flex;
}

.custom-list ul > li::before,
.custom-list ol > li::before {
	flex: 0 0 4px;
	display: inline-block;
	content: '';
	margin-top: 9px;
	margin-right: 10px;
	width: 4px;
	height: 4px;
	line-height: 1;
	border-radius: 2px;
	background-color: var(--light-color);
	overflow: hidden;
}

blockquote {
	border-left: 4px solid var(--accent-color);
	margin: 0 0 10px;
	padding: 6px 10px;
	font-style: normal;
}

.table-wrap {
	overflow-x: auto;
	width: 100%;
}

table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--light-color);
	margin-bottom: 10px;
}

tr, td {
	border: 1px solid var(--light-color);
	padding: 6px 12px;
	vertical-align: top;
}

.hidden {
	display: none;
}

@media only screen and (max-width: 1199.98px) {
	h1, .h1 {font-size: 34px;}
	h2, .h2 {font-size: 30px;}
	h3, .h3 {font-size: 26px;}
	h4, .h4 {font-size: 22px;}
	h5, .h5, h6, .h6 {font-size: 18px;}
}

@media only screen and (max-width: 767.98px) {
	h1, .h1 {font-size: 30px;}
	h2, .h2 {font-size: 26px;}
	h3, .h3 {font-size: 22px;}
	.custom-list ul.twocols,
	.custom-list ol.twocols {
		flex-direction: column;
		flex-wrap: nowrap;
		column-gap: 0;
	}
	.custom-list ul.twocols li,
	.custom-list ol.twocols li {
		flex: 0 1 auto;
	}
}

/*-------------BUTTONS-------------*/

.btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 25px;
	min-width: 220px;
	background-color: var(--accent-color);
	border: none;
	outline: none;
	border-radius: none;
	color: var(--white-color);
	height: 54px;
	font-family: 'Oxanium', sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1.3;
	box-shadow: none;
	cursor: pointer;
	transition: all 0.3s ease;
	max-width: 100%;
	overflow: hidden;
}

.btn > .btn__icon {
	font-size: 24px;
	line-height: 0;
}

.btn > .btn__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.btn:active, .btn:focus {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.btn:hover {
	background-color: var(--white-color);
	color: var(--dark-color);
}

/*---------Header-Main-Footer---------*/
/*------------------------------------*/

.wrapper {
	background-color: var(--body-bgcolor);
	position: relative;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow: clip;
}

.wrapper > .main-content {
	flex-grow: 1;
	padding-top: var(--header-height-pc);
	padding-bottom: 20px;
}

[class*="__container"] {
	position: relative;
	max-width: 1448px;
	width: 100%;
	padding-left: 24px;
	padding-right: 24px;
	margin: 0 auto;
}

[class*="__container"].c--xl {
	max-width: 1920px;
}

[class*="__container"].no--padding {
	padding-left: 0;
	padding-right: 0;
}

[class*="__container-ff"] {
	position: relative;
	max-width: 100%;
	width: 100%;
	padding: 0;
	margin: 0;
}

.fancybox__container {
	position: fixed;
	max-width: inherit;
	padding-left: inherit;
	padding-right: inherit;
	margin: inherit;
	--fancybox-bg: rgba(12, 12, 12, 0.7);
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
	height: var(--header-height-pc);
	padding: 5px 0;
}

.header::before {
	background-color: var(--black-color);
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	z-index: 3;
	transition: all 0.3s ease;
}

/*.header.open-menu::before {
	opacity: 1;
}

.header.header--scroll::before {
	opacity: 1;
}*/

.header__container {
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.header__logo,
.header__menu,
.header__buttons,
.header__mobile-nav {
	position: relative;
}

.header__logo {
	display: inline-block;
	line-height: 0;
	flex: 0 0 140px;
	z-index: 4;
	transition: all 0.3s ease;
}

.header__logo img {
	max-width: 140px;
}

.header__logo-text {
	color: var(--white-color);
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	max-width: 180px;
	z-index: 4;
}

.header__buttons {
	display: flex;
	gap: 12px;
	z-index: 4;
}

.header__menu {
	z-index: 4;
	margin-left: auto;
}

.header__menu-list {
	display: flex;
	column-gap: 30px;
	align-items: center;
	justify-content: end;
	flex-wrap: wrap;
}

.header__menu-list .menu-item {
	line-height: 24px;
	font-family: 'Oxanium', sans-serif;
	font-size: 20px;
	font-weight: 400;
	position: relative;
}

.header__menu-list .menu-item > a {
	color: var(--white-color);
	padding: 8px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	transition: all 0.3s ease;
}

.header__menu-list > li.menu-item-has-children > a::after {
	position: relative;
	display: inline-block;
	content: '\e901';
	line-height: 1;
	font-family: 'icons_font' !important;
	font-size: 12px;
	font-weight: normal;
	pointer-events: none;
}

.header__menu-list .menu-item.current-menu-item > a {
	color: var(--accent-color);
	pointer-events: none;
}

.header__menu-list .menu-item:not(.current-menu-item):hover > a {
	color: var(--accent-color);
}

.header__menu-list .menu-item.menu-item-has-children:hover > .sub-menu {
	display: flex;
}

.header__menu-list .menu-item:not(.current-menu-item):hover > a {
	color: var(--accent-color);
}

.header__menu-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	flex-direction: column;
	width: 280px;
	padding-top: 24px;
	z-index: 2;
}

.header__menu-list .sub-menu > li {
	position: relative;
}

.header__menu-list .sub-menu > li > a {
	position: relative;
	background-color: var(--black-color);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	gap: 20px;
	padding: 0 20px 0 20px;
	color: var(--white-color);
	line-height: 22px;
	font-size: 18px;
	font-weight: 400;
	border: none;
}

.header__menu-list .sub-menu .menu-item:hover > a {
	color: var(--accent-color);
}

.header__mobile-nav {
	position: relative;
	display: none;
}

.header__mobile-menu {
	display: none;
}

.header__mobile-burger {
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-right: -5px;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
	z-index: 4;
}

.burger__icon {
	padding-top: 2px;
	font-size: 26px;
	line-height: 1;
	color: var(--white-color);
}

.header__mobile-burger.active .burger__icon {
	color: var(--white-color);
}

.burger__icon::before {
	font-family: 'icons_font';
	content: '\e900';
}

.header__mobile-burger.active .burger__icon::before {
	content: '\e90b';
}

/*-----mobile-menu-----*/

.header__mobile-menu {
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	position: fixed;
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black-color);
	overflow: auto;
	padding: 120px 30px 30px;
	transition: all 0.3s;
	z-index: 2;
}

.header__mobile-menu.active {
	top: 0;
}

.mobile-menu__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.mobile-menu__list .menu-item {
	position: relative;
	text-align: center;
	padding: 0;
}

.mobile-menu__list .menu-item > a {
	font-family: 'Oxanium', sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--white-color);
	display: inline-block;
	padding: 7px 0;
}

.mobile-menu__list .menu-item.current-menu-item > a,
.mobile-menu__list .menu-item > a:hover {
	color: var(--accent-color);
}

.mobile-menu__list .menu-item.current-menu-item > a {
	pointer-events: none;
}

/*---end mobile-menu---*/

.header__mobile-buttons {
	margin-top: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

@media only screen and (max-width: 1199.98px) {
	.header__menu-list {
		column-gap: 26px;
	}
	.header__btn2 {
		display: none;
	}
}

@media only screen and (max-width: 1079.98px) {
	.wrapper > .main-content {
		padding-top: var(--header-height-mob);
	}
	.header {
		height: var(--header-height-mob);
	}
	.header__menu,
	.header__buttons {
		display: none;
	}
	.header__logo {
		flex: 0 0 110px;
	}
	.header__logo img {
		max-width: 110px;
	}
	.header__mobile-nav {
		display: block;
		position: relative;
	}
	.header__mobile-menu {
		display: flex;
	}
}

.footer {
	position: relative;
	background-color: var(--black-color);
	padding: 75px 0 35px;
	color: var(--light-color);
	font-size: 18px;
	line-height: 1.4;
	z-index: 2;
}

.footer a {
	display: inline-block;
	color: var(--light-color);
}

.footer a:hover {
	color: var(--accent-color);
}

.grid-four {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.footer__info {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.footer__info-title {
	font-size: 22px;
	color: var(--white-color);
}

.footer__info-content p:not(:last-child) {
	margin-bottom: 13px;
}

.footer__info-content p > span {
	font-size: 14px;
}

.conts-list,
.footer__info ul:not(.soc-list),
.footer__info ul.footer-menu__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.conts-list > li,
.footer__info ul:not(.soc-list) > li,
.footer__info ul.footer-menu__list > li {
	position: relative;
	line-height: 1.4;
	display: flex;
	gap: 10px;
}

.footer__info ul.footer-menu__list > li::before {
	flex: 0 0 4px;
	display: inline-block;
	content: '';
	margin-top: 12px;
	width: 4px;
	height: 4px;
	line-height: 1;
	border-radius: 2px;
	background-color: var(--light-color);
	overflow: hidden;
}

ul.footer-menu__list > li.current-menu-item a {
	color: var(--accent-color);
	pointer-events: none;
}

.conts-list li > span {
	margin-top: 2px;
	display: inline-block;
	font-size: 22px;
	line-height: 1;
}

.conts-list li .small {
	margin-top: 2px;
	display: block;
	font-size: 14px;
}

.conts-list li a {
	color: var(--light-color);
}

.conts-list li a:hover {
	color: var(--accent-color);
}

.footer__soc {
	margin-top: 20px;
}

.soc-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	line-height: 1;
}

.soc-list li > a {
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 40px;
	width: 40px;
	border: 2px solid var(--light-color);
	border-radius: 20px;
	transition: all 0.3s ease;
	overflow: hidden;
}

.soc-list--white li > a {
	background-color: var(--white-color);
	border-color: var(--white-color);
	color: var(--dark-color);
}

.soc-list li > a:hover {
	background-color: var(--white-color);
	border-color: var(--white-color);
	color: var(--dark-color);
}

.soc-list--white li > a:hover {
	background-color: transparent;
	border-color: var(--white-color);
	color: var(--white-color);
}

.soc-list li > a span {
	font-size: 24px;
}

.footer__bottom {
	margin-top: 55px;
	text-align: center;
	line-height: 1.2;
}

.footer__copy {
	display: flex;
	flex-wrap: wrap;
	column-gap: 24px;
	justify-content: center;
	font-size: 16px;
	color: var(--grey-color);
}

.footer__copy a {
	color: var(--grey-color);
}

.footer__bottom p:not(:last-child) {
	margin-bottom: 7px;
}

.scroll-top {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--grey-color);
	bottom: 50px;
	right: -100%;
	color: var(--light-color);
	line-height: 1;
	height: 40px;
	width: 40px;
	padding: 3px;
	transition: all 0.8s ease;
	overflow: hidden;
	z-index: 7;
	cursor: pointer;
}

.scroll-top:hover {
	color: var(--white-color);
}

.scroll-top.visible {
    right: 0;
}

.scroll-top > span {
	font-size: 18px;
	line-height: 0;
}

@media only screen and (max-width: 1199.98px) {
	.footer {
		padding-top: 65px;
		font-size: 16px;
	}
	.footer__info-title {
		font-size: 20px;
	}
	.footer__info ul.footer-menu__list > li::before {
		margin-top: 10px;
	}
	.conts-list li > span {
		font-size: 20px;
	}
}

@media only screen and (max-width: 991.98px) {
	.grid-four {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px;
	}
}

@media only screen and (max-width: 599.98px) {
	.grid-four {
		grid-template-columns: 1fr;
	}
	.footer__info {
		gap: 16px;
	}
	.footer__copy {
		justify-content: start;
		column-gap: 12px;
	}
}

/*---------All CSS----------*/
/*--------------------------*/

.sect {
	position: relative;
	padding: 60px 0;
}

.sect.default-sect {
	padding: 65px 0 50px;
}

.sect .text-18 {
	font-size: 18px;
}

.sect .text-18 strong,
.sect .text-18 b {
	color: var(--white-color);
}

.sect .text-18.custom-list ul > li::before,
.sect .text-18.custom-list ol > li::before {
	margin-top: 11px;
}

.default__content-text {
	margin-top: 30px;
}

.content-404 {
	padding: 80px 0;
	text-align: center;
}

.number-404 {
	font-size: 110px !important;
	font-weight: 500;
	line-height: 0.9;
	color: var(--grey-color);
	margin-bottom: 25px;
}

.title-404 {
	font-size: 36px;
	font-weight: 400;
	margin-bottom: 35px !important;
	text-transform: capitalize;
}

.title-404 span {
	display: inline-block;
}

.button-back {
	margin-top: 30px;
	text-align: center;
}

.btn__back,
.btn__404 {
	min-width: 200px;
}

.sect-header {
	max-width: 1000px;
	margin: 0 auto 35px;
	text-align: center;
}

.sheader__title {
	font-size: 40px;
	line-height: 1.15;
	color: var(--white-color);
	text-transform: capitalize;
}

.sheader__desc {
	margin-top: 15px;
	font-size: 20px;
	color: var(--light-color);
}

.sheader__desc span,
.sheader__title span {
	color: var(--accent-color);
}

.sect__buttons {
	margin-top: 40px;
	position: relative;
	text-align: center;
}

.two-cols {
	display: flex;
	gap: 36px;
}

.two-cols__col {
	flex: 0 1 calc(100% / 2 - 18px);
}

.carousel__navigation {
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.carousel__pagination {
	display: inline-flex;
	gap: 6px;
	justify-content: center;
	align-items: center;
	width: auto !important;
	min-width: 180px;
}

.carousel__pagination .swiper-pagination-bullet {
	background-color: var(--grey-color);
	width: 8px;
	height: 8px;
	border-radius: 0;
	margin: 0 !important;
	opacity: 1;
	overflow: hidden;
	transition: all 0.3s ease;
}

.carousel__pagination .swiper-pagination-bullet:hover {
	background-color: var(--light-grey-color);
}

.carousel__pagination span.swiper-pagination-bullet-active:hover,
.carousel__pagination span.swiper-pagination-bullet-active {
	background-color: var(--accent-color);
	width: 20px;
	opacity: 1;
}

.carousel__btn-prev,
.carousel__btn-next {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	line-height: 0;
	font-size: 18px;
	color: var(--grey-color);
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.carousel__btn-prev:hover,
.carousel__btn-next:hover {
	color: var(--accent-color);
}

.block__toggles {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.block__toggle {
	background-color: var(--gray-color);
	padding: 20px 20px 0;
	transition: all 0.3s ease;
	overflow: hidden;
}

.toggle__header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 14px;
	cursor: pointer;
	padding-bottom: 17px;
}

.toggle__header-title {
	font-size: 24px;
	line-height: 1.2;
	text-transform: none;
	transition: all 0.3s ease;
	color: var(--light-color);
}

.t_active .toggle__header-title,
.t_active .toggle__header-btn,
.toggle__header:hover .toggle__header-title {
	color: var(--white-color);
}

.toggle__header-btn {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
	width: 24px;
	height: 24px;
	line-height: 0;
	font-size: 20px;
	color: var(--light-color);
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	overflow: hidden;
}

.toggle__header:hover .toggle__header-btn {
	color: var(--accent-color);
}

.toggle__header-btn.v_active {
	transform: rotateZ(180deg);
}

.toggle__content {
	max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
	color: var(--light-color);
	max-width: 1280px; /*-optional-*/
}

/*------------------------------------------*/

.hero-sect.sect {
	padding: 65px 0;
	min-height: 600px;
	height: calc(100svh - var(--header-height-pc));
}

.hero-sect::before {
	background-color: var(--black-color);
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.25;
	z-index: 2;
}

.hero-sect::after {
	background: var(--black-color);
	background: linear-gradient(0deg,rgba(7, 7, 7, 1) 3%, rgba(7, 7, 7, 0) 100%);
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 65%;
	left: 0;
	bottom: 0;
	opacity: 1;
	z-index: 2;
}

.hero__bgs {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero__img,
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 70% 60%;
	position: absolute;
	top: 0;
	left: 0;
}

.hero--paint-protection-film .hero__img { object-position: 99% 60%; }
.hero--full-detailing-more .hero__img { object-position: 55% 60%; }
.hero--gallery .hero__img { object-position: 28% 60%; }
.hero--contact-us .hero__img { object-position: 50% 40%; }

.hero__img.img--fallback,
.hero__video {
	display: none;
}


.hero__container {
	display: flex;
	flex-direction: column;
	justify-content: end;
	height: 100%;
	z-index: 4;
}

.hero__content {
	max-width: 750px;
	color: var(--white-color);
}

.hero__title {
	font-size: 46px;
	color: var(--white-color);
	text-transform: capitalize;
}

.hero__desc {
	margin-top: 15px;
	color: var(--light-color);
	font-size: 20px;
}

.hero__desc p:not(:last-child) {
	margin-bottom: 6px;
}

.hero__buttons {
	margin-top: 35px;
}

.logos-sect.sect {
	background-color: var(--light-color);
	padding: 10px 0;
}

.logos__carousel {
	overflow: hidden;
}

.logos__carousel .swiper-wrapper {
	align-items: center;
}

.logos__carousel .swiper-slide {
	position: relative;
	width: calc(100% / 5 - 32.5px);
	box-sizing: border-box;
}

.logos__card {
	max-width: 200px;
	margin: 0 auto;
}

.ourservs-sect.sect {
	padding-top: 80px;
}

.ourservs__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.ourservs__card {
    flex: calc(100% / 4 - 18px);
	display: flex;
	flex-direction: column;
	background-color: var(--dark-color);
	overflow: hidden;
	transition: all 0.3s ease;
}

.ourservs__card-img {
	position: relative;
	aspect-ratio: 1.2 / 1;
	overflow: hidden;
}

.ourservs__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transform: scale(1);
	opacity: 0.9;
	transition: all 0.3s ease;
}

.ourservs__card:hover .ourservs__card-img img {
	transform: scale(1.03);
}

.ourservs__card-info {
	background-color: var(--gray-color);
	padding: 16px 15px;
	display: flex;
	flex-grow: 1;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.ourservs__card-title {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
}

.detservs__cards {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.detservs__card {
	background-color: var(--gray-color);
	display: flex;
}

.detservs__card.card--reverse {
	flex-direction: row-reverse;
}

.detservs__card-info,
.detservs__card-img {
	flex: 0 1 50%;
}

.detservs__card-info {
	align-self: center;
	padding: 36px 36px;
}

.detservs__card-img {
	min-height: 470px;
	background-color: var(--dark-color);
	line-height: 0;
	position: relative;
	overflow: hidden;
}

.detservs__card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	pointer-events: none;
}

.detservs__card-title {
	font-size: 30px;
}

.detservs__card-text {
	margin-top: 15px;
}

.detservs__card-buttons {
	margin-top: 25px;
}

.reviews__carousel {
	position: relative;
	overflow: hidden;
}

.reviews__carousel .swiper-slide {
	position: relative;
	width: calc(100% / 4 - 18px);
	box-sizing: border-box;
	height: auto;
}

.reviews__card {
	background-color: var(--gray-color);
	padding: 20px 20px;
	overflow: hidden;
	height: 100%;
	transition: all 0.3s ease;
}

.reviews__card-header {
	display: flex;
	gap: 12px;
	justify-content: space-between;
}

.reviews__card-icon {
	flex: 0 0 24px;
}

.reviews__card-name {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--white-color);
}

.reviews__card-date {
	margin-top: 5px;
	font-size: 16px;
	line-height: 1.2;
	color: var(--light-grey-color);
}

.reviews__card-rating {
	margin-top: 14px;
	margin-left: -3px;
	max-width: 118px;
	line-height: 0;
}

.reviews__card-body {
	margin-top: 5px;
	font-size: 16px;
	color: var(--light-color);
}

.cta__content {
	display: flex;
	gap: 24px;
}

.cta__img {
	flex: 0 1 25%;
	position: relative;
	background-color: var(--dark-color);
	overflow: hidden;
}

.cta__img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	pointer-events: none;
}

.cta__info {
	flex: 0 1 50%;
	position: relative;
	padding: 50px 20px;
	min-height: 440px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.cta__info-img {
	position: absolute;
	background-color: var(--dark-color);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.cta__info-img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.45;
	pointer-events: none;
}

.cta__info-inner {
	position: relative;
	text-align: center;
	z-index: 1;
}

.cta__info-logo {
	margin-bottom: 35px;
}

.cta__info-logo img {
    max-width: 140px;
}

.cta__info-title {
	font-size: 30px;
}

.cta__info-soc {
	margin-top: 15px;
	justify-content: center;
}

.cta__info-buttons {
	margin-top: 35px;
}

.ourworks__content {
	display: flex;
	gap: 24px;
}

.ourworks__info {
	flex: 0 1 25%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
}

.ourworks__info-img {
	max-width: 360px;
	line-height: 0;
	overflow: hidden;
}

.ourworks__info-buttons {
	text-align: center;
}

.ourworks__info-btn {
	width: 100%;
}

.ourworks__images {
	flex: 0 1 75%;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.ourworks__image {
	flex: 0 1 calc(100% / 3 - 16px);
	background-color: var(--dark-color);
	position: relative;
	display: block;
	aspect-ratio: 1.3 / 1;
	line-height: 0;
	overflow: hidden;
}

.ourworks__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transform: scale(1);
	opacity: 0.9;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ourworks__image:hover > img {
	transform: scale(1.03);
}

.sheader__logo {
	display: inline-block;
	line-height: 1;
	max-width: 140px;
	margin-bottom: 20px;
}

.about__content {
	position: relative;
	background-color: var(--gray-color);
	padding: 36px 36px;
}

.text-sect.sect {
	padding-top: 80px;
	padding-bottom: 30px;
}

.packages-sect.sect {
	padding-top: 80px;
}

.packages__items {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.packages__item {
	background-color: var(--gray-color);
	display: flex;
}

.packages__item.item--reverse {
	flex-direction: row-reverse;
}

.packages__item-info {
	flex: 0 1 60%;
}

.packages__item-img {
	flex: 0 1 40%;
}

.items--5050 .packages__item-img,
.items--5050 .packages__item-info {
	flex: 0 1 50%;
}

.packages__item-info {
	align-self: center;
	padding: 36px 36px;
}

.packages__item-img {
	min-height: 470px;
	background-color: var(--dark-color);
	line-height: 0;
	position: relative;
	overflow: hidden;
}

.packages__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	pointer-events: none;
}

.packages__item-title {
	font-size: 30px;
}

.packages__item-toptext {
	margin-top: 15px;
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.packages__item-bottomtext {
	border-top: 1px solid var(--grey-color);
	padding-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.packages__item-bottomtext > *,
.packages__item-toptext > * {
	margin: 0 !important;
}

.packages__item-bottomtext a {
	text-decoration: underline;
}

.packages__item-buttons {
	margin-top: 25px;
}

.benefits__items {
	display: flex;
	gap: 20px;
	justify-content: space-around;
}

.benefits__item {
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
	text-align: center;
}

.benefits__item-icon {
	height: 80px;
	transition: all 0.3s ease;
	transform: scale(1);
	overflow: hidden;
}

.benefits__item:hover .benefits__item-icon {
	transform: scale(0.9);
}

.benefits__item-icon img {
	width: auto;
	height: 100%;
	pointer-events: none;
}

.benefits__item-desc {
	margin-top: 15px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
}

.ourgallery-sect.sect {
	padding-top: 80px;
}

.ourgallery__items {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

.ourgallery__item {
	flex: 0 1 calc(100% / 4 - 18px);
	background-color: var(--dark-color);
	position: relative;
	display: block;
	aspect-ratio: 1.3 / 1;
	line-height: 0;
	overflow: hidden;
}

.ourgallery__item > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	transform: scale(1);
	opacity: 0.9;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ourgallery__item:hover > img {
	transform: scale(1.03);
}

.cta2-sect.sect {

}

.cta2__content {
	background-color: var(--gray-color);
	display: flex;
}

.cta2__info,
.cta2__img {
	flex: 0 1 50%;
}

.cta2__info {
	align-self: center;
	padding: 36px 36px;
	text-align: center;
}

.cta2__info-logo {
	max-width: 280px;
	margin: 0 auto 35px;
}

.cta2__info-title {
	font-size: 32px;
	line-height: 1.25;
	text-transform: uppercase;
}

.cta2__info-buttons {
	margin-top: 35px;
}

.cta2__img {
	min-height: 450px;
	background-color: var(--dark-color);
	line-height: 0;
	position: relative;
	overflow: hidden;
}

.cta2__img > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.9;
	pointer-events: none;
}

.contacts-sect.sect {
	padding-top: 80px;
}

.contacts__content {
	display: flex;
	gap: 48px;
}

.contacts__content-col {
	flex: 0 1 50%;
}

.contacts__info-map,
.contacts__info-text {
	margin-top: 36px;
}

.contacts__info-map {
	position: relative;
	line-height: 0;
	overflow: hidden;
	background-color: var(--dark-color);
}

.contacts__info-map > iframe {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.9;
}

.contacts__form-wrap {
	background-color: var(--gray-color);
	position: relative;
	padding: 36px 36px;
	overflow: hidden;
}

/*-------------------------------------------*/
/*------------------MEDIA--------------------*/

@media only screen and (min-width: 991.99px) {
	/*.def-carousel .swiper-wrapper {
		gap: 24px;
	}
	.def-carousel .swiper-slide {
		flex: 0 1 calc(100% / 4 - 18px);
	}*/
	.hero__video {
		display: block;
	}
}

@media only screen and (max-width: 1199.98px) {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
	}
	.two-cols {
		gap: 24px;
	}
	.sect .text-18 {
		font-size: 16px;
	}
	.sect .text-18.custom-list ul > li::before,
	.sect .text-18.custom-list ol > li::before {
		margin-top: 9px;
	}
	.sect {
		padding: 50px 0;
	}
	.sect-header {
		margin-bottom: 30px;
	}
	.sheader__title {
		font-size: 36px;
	}
	.hero__desc,
	.sheader__desc {
		margin-top: 10px;
		font-size: 18px;
	}
	.hero__buttons,
	.sect__buttons {
		margin-top: 30px;
	}
	.hero__title {
		font-size: 40px;
	}
	.logos__carousel .swiper-slide {
		width: calc(100% / 4 - 30px);
	}
	.logos__carousel,
	.reviews__carousel {
		overflow: inherit;
		padding: 0;
	}
	.ourservs__card-title {
		font-size: 18px;
	}
	.packages__items,
	.detservs__cards {
		gap: 24px;
	}
	.contacts__form-wrap,
	.cta2__info,
	.about__content,
	.packages__item-info,
	.detservs__card-info {
		padding: 24px 24px;
	}
	.cta__info-title,
	.packages__item-title,
	.detservs__card-title {
		font-size: 26px;
	}
	.reviews__carousel .swiper-slide {
		width: calc(100% / 3 - 16px);
	}
	.ourworks__content {
		flex-direction: column-reverse;
		gap: 30px;
	}
	.ourworks__info {
		flex: 1 1 auto;
		justify-content: inherit;
	}
	.ourworks__info-img {
		display: none;
	}
	.ourworks__info-btn {
		width: auto;
	}
	.ourworks__images {
		flex: 1 1 auto;
		width: 100%;
	}
	.packages-sect.sect,
	.contacts-sect.sect,
	.ourgallery-sect.sect,
	.text-sect.sect,
	.ourservs-sect.sect {
		padding-top: 70px;
	}
	.packages__item-bottomtext {
		font-size: 14px;
	}
	.benefits__items {
		flex-wrap: wrap;
		row-gap: 36px;
	}
	.benefits__item {
		max-width: calc(100% / 3 - 13.33px);
	}
	.benefits__item-desc {
		font-size: 16px;
	}
	.toggle__header-title {
		font-size: 20px;
	}
	.toggle__header-btn {
		margin-top: 0;
	}
	.ourgallery__item {
		flex: 0 1 calc(100% / 3 - 16px);
	}
	.cta2__info-logo {
		max-width: 240px;
	}
	.cta2__info-title {
		font-size: 28px;
	}
	.contacts__content {
		gap: 24px;
	}
	.contacts__info-map,
	.contacts__info-text {
		margin-top: 24px;
	}
}

@media only screen and (max-width: 1079.98px) {
	.hero-sect.sect {
		height: calc(100svh - var(--header-height-mob));
	}
	.packages__item.item--reverse,
	.packages__item {
		flex-direction: column-reverse;
	}
	.packages__item-img,
	.packages__item-info {
		flex: inherit;
		align-self: inherit;
	}
	.packages__item-img {
		min-height: auto;
		max-height: 460px;
	}
}

@media only screen and (max-width: 991.98px) {
	.two-cols {
		flex-direction: column;
	}
	.two-cols__col {
		flex: 0 1 auto;
		width: 100%;
	}
	.sheader__title {
		font-size: 32px;
	}
	.hero__desc,
	.sheader__desc {
		font-size: 16px;
	}
	.hero__title {
		font-size: 36px;
	}
	.hero__img.img--fallback {
		display: block;
	}
	.ourservs__card {
        flex: 0 1 calc(100% / 2 - 12px);
    }
	.detservs__card.card--reverse,
	.detservs__card {
		flex-direction: column-reverse;
	}
	.detservs__card-img,
	.detservs__card-info {
		flex: inherit;
		align-self: inherit;
	}
	.detservs__card-img {
		min-height: auto;
		max-height: 460px;
	}
	.reviews__carousel .swiper-slide {
		width: calc(100% / 2 - 12px);
	}
	.cta__content {
		flex-direction: column;
	}
	.cta__img {
		display: none;
	}
	.cta2__info-logo {
		max-width: 220px;
	}
	.cta2__info-title {
		font-size: 24px;
	}
	.contacts__content {
		flex-direction: column-reverse;
		gap: 36px;
	}
	.contacts__content-col {
		flex: 0 1 auto;
		width: 100%;
	}
}

@media only screen and (max-width: 859.98px) {
	.logos__carousel .swiper-slide {
		width: calc(100% / 3 - 27px);
	}
	.cta2__content {
		flex-direction: column-reverse;
	}
	.cta2__info {
    	flex: inherit;
    	align-self: inherit;
	}
	.cta2__img {
		min-height: auto;
		max-height: 300px;
	}
	.cta2__info-logo {
		margin-bottom: 20px;
	}
	.cta2__info-buttons {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 767.98px) {
	.reviews__carousel .swiper-slide {
		width: 100%;
	}
	.cta__info-title,
	.packages__item-title,
	.detservs__card-title {
		font-size: 24px;
	}
	.ourgallery__item,
	.ourworks__image {
		flex: 0 1 calc(100% / 2 - 12px);
	}
	.benefits__item-icon {
		height: 60px;
	}
	.benefits__item {
		max-width: calc(100% / 2 - 10px);
	}
}

@media only screen and (max-width: 599.98px) {
	.carousel__pagination {
		display: none;
	}
	.def-carousel .swiper-slide {
		width: 86%;
	}
	.sheader__title {
		font-size: 30px;
	}
	.hero__title {
		font-size: 34px;
	}
	.logos__carousel .swiper-slide {
		width: calc(100% / 2 - 20px);
	}
	.ourservs__cards,
	.ourgallery__items,
	.benefits__items,
	.ourworks__images {
		gap: 16px;
	}
	.ourservs__card,
	.ourgallery__item,
	.benefits__item,
	.ourworks__image {
		flex: 0 1 calc(100% / 2 - 8px);
	}
	.ourservs__card-info {
	    padding: 13px 15px;
	}
	.ourservs__card-title {
	    font-size: 16px;
	}
}

@media only screen and (max-width: 479.98px) {
	.contacts__form-wrap,
	.cta2__info,
	.about__content,
	.packages__item-info,
	.detservs__card-info {
		padding: 24px 20px;
	}
	.cta2__info-btn,
	.packages__item-btn,
	.detservs__card-btn,
	.sect__btn,
	.hero__btn {
		width: 100%;
	}
	.cta2__info-title {
		font-size: 20px;
	}
}