.body {
	position: relative;
}

.body--specialists {

}

.body--specialists::before {
	content: '';

	position: absolute;
	inset: 0;
	z-index: -1;

	height: 1100px;

	background-color: #999;
	background-image: url(/wp-content/themes/DailyDrive/assets/img/specialists-bg.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
.right_img_post {
    float: right;
    margin: 10px;
}
span.diametr_price {
    font-size: 25px;
    margin-right: 40px;
    font-weight: bold;
}
.body--specialists::after {
	content: '';

	position: absolute;
	inset: 0;
	z-index: -1;

	height: 1100px;

	background: linear-gradient(0deg, var(--bg), transparent 20%);
}

.main {
	position: relative;
}

.main::before {
	content: '';

	position: absolute;
	inset: 0;

	background-image: url(/wp-content/themes/DailyDrive/assets/img/fog.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	z-index: -1;
}

.main--secondary {
	--space: 123px;

	position: relative;
	top: var(--space);
	z-index: 0;

	margin-bottom: var(--space);

	background: white;
	color:#000;
}

.main--catalog-2 {
	--space: 0;
}

@media (max-width: 1040px) {
	.main--secondary {
		--space: 108px;
	}

	.main--catalog-2 {
		--space: 0;
	}
}

/* HEADER */

.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: var(--z-2);
	background-color: var(--bg);
	padding: 34px 0;
}

/* .header--secondary {
	background-color: #999;
	background-image: url('../img/hero.png');
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
} */

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header__logo {

}

.header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.header__nav {

}

.menu__nav-list {
	display: flex;
	align-items: center;
	gap: 28px;
}

.header__link {
	color: var(--text);

	font-family: var(--extra-font);
	font-size: 20px;
	text-decoration: none;

	transition: 0.3s;
}

.header__link:hover {
	color: var(--accent);
}

.header__phone {
	color: var(--accent);

	font-family: var(--accent-font);
	font-size: 20px;
	text-decoration: none;
}

.header__phone-icon {
	display: none;
}

.menu__toggle {
	display: none;

	background: transparent;
	border: none;
}

.menu__close-btn {
	display: none;

	background: transparent;
	border: none;

	color: var(--accent);

	font-family: var(--extra-font);
	font-size: 36px;
}

@media (max-width: 1260px) {
	.header__phone {
		font-size: 18px;
	}

	.header__link {
		font-size: 18px;
	}

	.menu__nav-list {
		gap: 16px;
	}
}

@media (max-width: 1040px) {
	.header {
		top: 0px;
		padding: 24px 0;
	}

	.menu__toggle {
		display: block;
	}

	.header__phone-text {
		display: none;
	}


	.header__phone-icon {
		display: inline-block;
	}

	.menu__nav {
		display: none;
		width: 375px;
    height: 100%;
    background-color: var(--bg);
    position: fixed;
    top: 0;
    left: -250px;
    transition: left 0.3s ease;
    z-index: 15;
	}

	.menu__nav.active {
		display: block;
		left: 0; /* Сдвигаем меню на экран */
	}

	.menu__nav-list {
		flex-direction: column;
		align-items: flex-start;
	}

	.menu__close-btn {
		display: block;
		margin-left: auto;
    margin-right: 22px;
    margin-top: 16px;
	}
}

/* HERO */

.hero {
	position: relative;
	height: 1032px;
	overflow: hidden
}

.hero__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1032px
}

.hero__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero > .container {
	height: 100%;
}

.hero__inner {
	padding-top: 190px;
	position: relative;
	height: 100%;
}

.hero__inner::before {
	content: 'Drive';

	bottom: 91px;
	right: -44px;

	font-size: 128px;
}

.hero__inner::after {
	content: 'Daily';

	top: 412px;
	right: -262px;

	transform: rotate(-90deg);

	font-size: 128px;
}

.hero__title {
	max-width: 775px;
	margin-top: 0;

	font-family: var(--accent-font);
	font-size: 40px;
	font-weight: 700;
}

.hero__text {
	display: inline-block;

	background: #F95A00;
	background: linear-gradient(to right, var(--accent) 0%, #F8E3DB 50%, #8C5757 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;

	font-family: var(--secondary-font);
	font-size: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hero__btn {
	margin-top: 20px;
	margin-left: 16px;
}

.hero__info {
	display: none;
}

@media (max-width: 1040px) {
	.hero__title {
		font-size: 30px;
		max-width: 525px;
		text-wrap: balance;
		height: 120px;
	}
}

@media (max-width: 840px) {
	.hero {
		height: auto;
	}

	.hero__img {
		height: 654px;
		overflow: hidden;
	}

	.hero__img img{
		height: 708px;
		object-fit: cover;
    object-position: 75% -69px;
	}

	.hero__inner {
		padding-top: 130px;
		height: 866px;

		display: flex;
		flex-direction: column;
	}

	.hero__inner::before {
		font-size: 48px;

		bottom: 321px;
		right: 104px;

		letter-spacing: 4px;
	}

	.hero__inner::after {
		font-size: 64px;

		top: 391px;
		right: -62px;

		letter-spacing: 4px;
	}

	.hero__title {
		font-size: 20px;
		max-width: 350px;
		text-wrap: balance;
		height: 120px;
	}

	.hero__text {
		display: none;
		line-height: 160%;
	}

	.hero__info {
		display: flex;
		align-items: center;
		flex-direction: column;

		font-family: var(--text-accent);

		margin-top: 370px;
	}

	.hero__info-text {
		font-size: 20px;
	}

	.hero__phone {
		color: var(--text);

		font-family: var(--text-accent);
		font-size: 36px;
		font-weight: 700;
		text-decoration: none;
	}

	.hero__btn {
		margin: 18px auto 0px;
	}
}

/* ADVANTAGES */

.advantages {
	padding-top: var(--outer-space);
	padding-bottom: var(--outer-space);
}

.advantages__slider {
	padding-top: var(--outer-space);
}

.advantages__item {
	position: relative;

	padding: 0px 32px;
	padding-left: 14px;

	font-family: var(--extra-font);
	text-align: center;
}

.advantages__item-img {
	position: absolute;
	top: -30px;
  left: 47%;

	border-radius: 50%;
	overflow: hidden;

	width: 48px;
	height: 48px;
	object-fit: cover;
	object-position: center center;
}

.advantages__item::before {
	content: '';
	position: absolute;
	inset: -2px;

	background: linear-gradient(to bottom, #F95A00 0%, #FFE1B5 47%, #FA2323 100%);
	transform: skew(var(--skew-2));
	z-index: -1;

	font-size: 128px;
}

.advantages__item::after {
	content: '';
	position: absolute;
	inset: 0px;

	background: var(--bg);
	transform: skew(var(--skew-2));
	z-index: -1;

	font-size: 128px;
}

.advantages__item-title {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
  margin-left: 8%;
}

.advantages__item--review .advantages__item-title {
	margin-left: 15%;
	margin-top: 25px;
}

.advantages__item-desc {
	font-size: 16px;
}

#advantages-slider.owl-theme {
  position: relative;
}

@media (max-width: 1260px) {
	.advantages__slider {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 37px;
	}

	.advantages__item--review .advantages__item-title {
		margin-left: 7%;
	}

	.advantages__item-img {
		left: 46%;
	}
}

@media (max-width: 1040px) {
	.advantages {
		background: var(--text);
		color: var(--bg);
		padding-top: var(--inner-space);
		padding-bottom: var(--inner-space);
	}

	.advantages__item::before,
	.advantages__item:not(.advantages__item--review)::after {
		display: none;
	}

	.advantages__item {
    padding: 34px 32px;
    background: var(--bg);
    color: var(--text);
		width: 100%;
	}

	.advantages--review .owl-carousel .owl-item img {
		width: 48px;
		left: 48%;
	}

	.advantages__item--review {
		margin: 0 45px;
		margin-top: 32px;
		background: transparent;
	}

	.advantages__item--review .advantages__item-title {
		margin-left: 3%;
		margin-top: 0;
	}

	.advantages__slider .owl-stage {
		display: flex;
	}

	.advantages__slider .owl-stage .owl-item {
		display: flex;
		align-items: stretch;
	}

	.advantages--review .advantages__slider {
		padding-top: calc(var(--inner-space) - 24px);
	}

	.advantages__slider {
		padding-top: var(--inner-space);
	}
}

@media (max-width: 840px) {
	.advantages__slider {
		padding-top: var(--inner-space);
	}
}

@media (max-width: 640px) {
	.advantages__item {
		background: var(--bg);

	}
	.advantages__item::after {
		display: none;
	}

	.advantages__item--review {
		margin-left: 0;
		margin-right: 0;
	}

	.advantages--review .owl-carousel .owl-item img {
    left: 50%;
    transform: translateX(-50%);
  }

	.advantages__item--review .advantages__item-title {
		margin-left: 0;
	}

	.advantages > .container {
		padding: 0;
	}
}

/* ABOUT */

.about {
	background: var(--bg-accent);
	color: var(--text-accent);

	padding-top: var(--outer-space);
	padding-bottom: var(--outer-space);
}

.about__inner {
	display: grid;
	gap: 20px;
	grid-template-columns: 264px 1fr;

	margin: 0 183px;
}

.about__img {
	display: flex;
	align-items: center;
	max-width: 410px;
}

.about__img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center center;
}

.about__title {
	position: relative;
	display: inline;

	font-size: 24px;
}

.about__title::after {
	content: '';

	position: absolute;
	left: 50%;
	top: -33px;
	transform: translateX(-50%);

	background-image: url(/wp-content/themes/DailyDrive/assets/img/icons/stars.svg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	width: 98px;
	height: 28px;

}

.about__desc {
	margin: 0;
  margin-top: 20px;

	color: #B4B4B4;

	font-family: var(--extra-font);
	font-size: 15px;
	font-weight: 400;
}

.about__params {
	display: flex;
  gap: 105px;
	margin-top: 34px;
}

.about__item {
}

.about__item-title {
	color: var(--accent);

  font-family: var(--extra-font);
  font-size: 36px;
	bottom: 0;
	margin: 0;
}

.about__item-desc {
	color: #DCDCDC;

	font-family: var(--extra-font);
  font-size: 24px;
  margin-top: -3px;
  margin-bottom: 0;
}

.about__text {
  margin: 0;
  margin-top: 12px;
  max-width: 477px;

  font-size: 20px;
}

@media (max-width: 1260px) {
	.about__inner {
		margin: 0px 55px;
	}
}

@media (max-width: 1040px) {
	.about {
		padding-top: 60px;
		padding-bottom: var(--inner-space);
	}

	.about__inner {
		display: flex;
		flex-direction: column-reverse;
		margin: 0;
	}

	.about__title {
		display: block;
		text-align: center;
	}

	.about__desc {
		text-align: center;
	}

	.about__params {
		justify-content: flex-start;
    gap: 90px;
    row-gap: 32px;
    flex-wrap: wrap;
	}
}

@media (max-width: 840px) {
	.about__title {
		font-size: 20px;
	}

	.about__desc {
		margin-top: 11px;
	}

	.about__params {
		margin-top: 30px;
	}

	.about__text {
		margin-top: 23px;
	}
}

@media (max-width: 600px) {

}

/* SERVICES */

.services {
	padding-top: var(--outer-space);
	position: relative;
}

.services__content {
	padding-top: var(--outer-space);
}

.services__item {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;

	text-decoration: none;

	color: white;
}

.services__item-bg {
	display: flex;
	flex-direction: column;

	width: 100%;

	height: 195px;

	background: var(--url);
	background-color: #999;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.services__item-title {
	font-size: var(--extra-font);
	font-size: 20px;
	font-weight: 700;

	padding-right: 45px;
	margin-bottom: 0;
}

.services__item-btn-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;

	margin-top: auto;
}

.services__item-btn {
	width: 100%;
	padding-right: 45px;
}

.services__item-btn::before {
	transform: skew(0deg);
}

@media (max-width: 1040px) {
	.services__item-bg {
		height: 300px;
	}

	.services .owl-theme .owl-nav.disabled+.owl-dots {
		margin-top: 15px;
	}

	.services {
		padding-top: var(--inner-space);
	}

	.services__content {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px 20px;
		padding-top: var(--inner-space);
	}
}

@media (max-width: 840px) {
	.services__content {
		display: flex;
		flex-direction: column;
	}

	.services__item-title {
		padding-right: 0;
	}

	.services > .container {
		padding: 0;
		margin: 0;
		max-width: none;
	}
	.services__item-bg {
		width: 100%;
		aspect-ratio: 410/260;

		clip-path: none;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.services__item-btn-wrapper {
		background-color: rgba(36, 38, 44, 0.8);
		padding: 10px;
	}

	.services__item-btn {
		width: fit-content;
	}

	.services .owl-theme .owl-nav.disabled+.owl-dots {
		margin-top: 10px;
	}

	.services .title {
		margin: 0 10px;
	}

	.services__content {
		padding-bottom: var(--inner-space);
	}

	.services__item-btn::before {
		transform: skew(var(--skew));
	}

	.services .title {
		margin: 0 10px;
	}
}

/* RESULTS */

.results {
	padding-top: var(--outer-space);
	/* padding-bottom: calc(var(--outer-space) - 30px); */
}

.result__slider {
	padding-top: var(--outer-space);
}

.result__item {
	aspect-ratio: 461/244;
}

.result__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.results .owl-carousel {
	height: 100%;
}

.results .owl-dots {
	display: none;
}

.results .owl-theme .owl-nav {
	margin-top: 30px;
}

@media (max-width: 1040px) {
	.results {
		padding-top: var(--inner-space);
	}

	.result__slider  {
		padding-top: var(--inner-space);
	}
}

@media (max-width: 840px) {
	.results {
		background: var(--text);
		color: var(--bg);
	}

	.results__inner {
		max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
	}

	.result__item {
		aspect-ratio: 306/415;
		max-width: 450px;
		margin: 0 auto;
	}

	.results .owl-theme .owl-nav.disabled+.owl-dots > * {
		z-index: var(--z-1);
	}
}

@media (max-width: 500px) {
	.results .owl-carousel {
		overflow: hidden;
	}
}

.cta {
	padding-top: var(--outer-space);
	padding-bottom: var(--outer-space);

	position: relative;
	overflow: hidden;

	background-color: #999;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	height: 500px;

	margin-top: 89px;

}

.cta > .container {
	position: relative;
}

.cta__inner {
	padding: 0 50px;
}

.cta__inner::before {
	content: 'Drive';

	top: -43px;
	right: 150px;
}

.cta__inner::after {
	content: 'Daily';

	top: 115px;
	right: -146px;

	transform: rotate(-90deg);
}

.cta__decor {
	position: absolute;

	bottom: -168px;
  right: -56px;

	z-index: var(--z-1);
}


.cta__content {
	display: flex;
	flex-direction: column;
	align-items: center;

	max-width: 370px;

	text-align: center;
}

.cta__title {
	margin: 0;

	background: #F95A00;
	background: linear-gradient(to right, #73372C 0%, #EDA57D 19%, #9A4835 35%, #B65741 57%, #E18B6A 79%, #702B1D 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta__text {
	max-width: 325px;
	color: #fff;
	font-family: var(--extra-font);
	font-size: 16px;
}

.cta__form {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cta__input-wrapper {
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;

	height: 54px;
	aspect-ratio: 211/36;

	background-color: transparent;
	background-image: url('/wp-content/themes/DailyDrive/assets/img/input.svg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.cta__input {
	position: relative;

	display: block;

	width: 100%;
	height: 100%;
	padding: 0 27px;

	border: none;

	background: transparent;
	color: var(--text);

	font-family: var(--accent-font);
	font-size: 16px;
	text-align: center;
}

.cta__input:focus {
	outline: none;
}

.cta__input::placeholder {
	color: var(--text);

	font-family: var(--accent-font);
	font-size: 16px;
}

.cta__mobile {
	display: flex;
	flex-direction: column;
	gap: 40px;

	margin-top: 30px;
}

.cta__mobile-phone {
	font-size: 36px;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	z-index: var(--z-1);
}

.cta__mobile-dialog {
	padding: 0;
	border: none;
}

.cta__form {
	position: relative;

	margin-top: 0;
	padding: 60px;
	padding-top: 60px;

	background: var(--bg);
}

.cta__form .title {
	color: var(--text);
	margin-top: -30px;
}

.cta__form-close {
	display: block;
	position: absolute;

	top: 10px;
	right: 20px;

	background: transparent;
	border: none;
	color: var(--accent);
	font-family: var(--extra-font);
	font-size: 36px;
	margin-left: auto;
}

@media (max-width: 1260px) {
	.cta__decor {
		right: -6%;
	}
}

@media (max-width: 1040px) {
	.cta {
		height: 660px;
	}

	.cta__decor {
		bottom: -312px;
	}
}

@media (max-width: 840px) {
	.cta > .container {
		padding: 0;
		max-width: none;
		background-position: 64% center;
	}

	.cta {
		padding-top: 49px;
		margin-top: 0;

		height: 838px;

		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.cta > .container {
		position: static;
	}

	.cta__title {
		font-size: 24px;
		line-height: 124%;
		background: var(--text);
    background-clip: text;
	}

	.cta__text {
		margin-top: 35px;
	}

	.cta__decor {
		z-index: 0;
		bottom: -23px;
    right: -381px;
	}

	.cta__inner::before {
		top: auto;
		right: 149px;
		bottom: -127px;
	}

	.cta__inner::after {
		top: auto;
		right: -50px;
		bottom: -199px;
		transform: rotate(-90deg);
	}

	.cta__form--desktop {
		display: none;
	}
}

@media (max-width: 500px) {
	.cta__mobile-phone {
		font-size: 32px;
		margin: 0 -20px;
		text-decoration: underline;
	}

	.cta__form {
		position: relative;

		margin-top: 0;
		padding: 40px;
		padding-top: 60px;

		background: var(--bg);
	}
}

@media (max-width: 400px) {
	.cta__mobile-phone {
		font-size: 28px;
	}
}

.footer {
	position: relative;

	margin-top: auto;

	background-color: var(--bg);
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding: 20px 0;
}

.footer__nav {
	display: flex;
	gap: 38px;
}

.footer__nav-link {
	color: var(--text);

	font-family: var(--extra-font);
	font-size: 20px;
	text-decoration: none;

	transition: 0.3s;
}

.footer__nav-link:hover {
	color: var(--accent);
}

@media (max-width: 1260px) {
	.footer__nav {
		gap: 28px;
	}
}

@media (max-width: 1040px) {
	.footer__inner {
		flex-direction: column;
		margin-top: 0;
		padding: 0;
	}

	.footer {
		padding: var(--inner-space) 0;
	}
}

@media (max-width: 840px) {
	.footer__inner {
		flex-direction: column;
		gap: 50px;
	}

	.footer__nav {
		flex-direction: column;
		align-items: center;
		text-align: center;
		position:relative;
	}

	.footer {
		position: relative;
		padding: 108px 0 var(--inner-space);
	}

	.footer::before {
		content: '';

		position: absolute;
		inset: 0;
		left: 0;
		right: 0;

		background-image: url('/wp-content/themes/DailyDrive/assets/img/footer-fog.png');
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;

	}
}


/* CATALOG PAGE */

.catalog-hero {
	position: relative;
  height: 450px;
  overflow: hidden;
}

.catalog-hero__img {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
}

.catalog-hero__img::before {
	content: '';
  position: absolute;
  inset: 0;
  top: 80%;
  background: linear-gradient(0deg, var(--bg), transparent);
}

.catalog-hero__img img {
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.catalog-hero > .container {
	height: 100%;
}
.catalog-hero__inner {
	padding-top: 190px;
  position: relative;
  height: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;
}
.catalog-hero__title {
	max-width: 775px;
  margin-top: 0;
  font-family: var(--accent-font);
  font-size: 40px;
  font-weight: 700;
	margin-bottom: 20px;
}
.catalog-hero__text {
	margin: 0;
  font-family: var(--extra-font);
  font-size: 20px;
  max-width: 880px;
  text-align: center;
}
.catalog-hero__info {
	display: none;
}
.catalog-hero__info-text {
}
.catalog-hero__phone {
}
.catalog-hero__btn {
}

/* PRICES */

.prices {
	padding-top: var(--outer-space);
}

.prices__list {
	padding-top: var(--outer-space);
}

.prices__item {
	border-bottom: 1px solid var(--accent);
	padding: 24px 0;
}

.prices__item:first-child {
	padding-top: 0;
}

.prices__item:last-child {
	border-bottom: none;
}

.prices__item-title {
	font-family: var(--extra-font);
	font-weight: 700;
	font-size: 28px;
	margin: 0;
}

.prices__item-desc {
	font-family: var(--extra-font);
	font-size: 16px;
}

.prices__item-price {
	margin: 0;

	color: var(--accent);

	font-weight: bold;
}

@media (max-width: 840px) {
	.prices {
		padding-top: var(--inner-space);
		padding-bottom: 0;
	}

	.prices__list {
		padding-top: var(--inner-space);
	}

}

/* BREADCRUMB */

.breadcrumb {
}

.breadcrumb__inner {
  padding: 10px 0px;
  list-style: none;
}
.breadcrumb__inner li {
  display: inline;
  font-size: 18px;
}
.breadcrumb__inner li::after {
  padding: 8px;
  padding-right: 5px;
  color: #9A9A9A;
  content: "/";
}
.breadcrumb__inner li a {
  color: #9A9A9A;

	font-family: var(--extra-font);
	font-size: 16px;
	font-weight: 400;
  text-decoration: none;
}
.breadcrumb__inner li a:hover {
  text-decoration: underline;
}

.breadcrumb__inner li:last-child {
	color: var(--accent);
}

.breadcrumb__inner li:last-child::after {
	content: '';
}

/* CATALOG DETAILS */

.catalog-details {
	margin-bottom: 56px;
}

.catalog-details__title {
  max-width: 500px;
}

.catalog-details__text {
	color: var(--text-gray);

	font-family: var(--extra-font);
	font-size: 20px;
	font-weight: 400;

	margin: 0;
	margin-top: 30px;
}

.catalog-details__hero {
	display: grid;
  grid-template-columns: 2fr 1fr;
	gap: 40px;
}

.catalog-details__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.catalog-details__info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 58px;

	margin-top: 50px;
}

.catalog-details__info-title {
	margin: 0;
	margin-bottom: 20px;

	color: var(--bg);

	font-family: var(--extra-font);
	font-size: 20px;
	font-weight: 700;
}

.catalog-details__info-text {
	margin: 0;
	max-width: 435px;

	color: var(--accent);

	font-family: var(--extra-font);
	font-size: 20px;
	font-weight: 400;
}
.accordion-collapse {
    max-width: 100%;
}
.catalog-details__info-params {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.catalog-details__info-param {
	display: grid;
	align-items: center;
	gap: 7px;

	padding-left: 20px;

	border-left: 2px solid var(--accent);
}

.catalog-details__info-param:last-child {
	border-right: 2px solid var(--accent);
}

.catalog-details__info-param-title {
	margin: 0;

	color: #777777;

	font-family: var(--extra-font);
	font-size: 12px;
	font-weight: 400;
}

.catalog-details--info-param-text {
	margin: 0;

	font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 700;
}

@media (max-width: 1040px) {
	.catalog-details__hero {
		grid-template-columns: 1fr;
	}

	.catalog-details__info {
		grid-template-columns: 1fr;
		gap: 64px;
		margin-top: 18px;
	}

	.catalog-details__info-title {
		margin-bottom: 35px;
	}

	.catalog-details__info-text {
		margin-top: 38px;
	}
}

@media (max-width: 840px) {
	.catalog-details__info-item:nth-child(2) .catalog-details__info-title {
		text-align: center;
	}

	.catalog-details__info-params {
		grid-template-columns: repeat(1, 1fr);
		gap: 34px;

    max-width: 76%;
    margin: 0 auto;
	}

	.catalog-details__info-param,
	.catalog-details__info-param:last-child{
		border-left: none;
		border-right: none;
	}

	.catalog-details__info-param {
		gap: 34px;
		justify-content: center;

		padding: 0;
		padding-bottom: 32px;

		border-bottom: 2px solid var(--accent);
	}

	.catalog-details__info-param-title {
		font-size: 20px;
		text-align: center;
	}

	.catalog-details--info-param-text {
		text-align: center;
	}
}

/* CONTACTS */

.contacts {
	margin-top: 50px;
}

.contacts__info {
	display: flex;
	justify-content: space-between;
	gap: 20px;

	margin-top: 58px;
}

.contacts__info-item-icon {
	height: 55px;
  width: 70px;
}

.contacts__info-item-icon::before {
	transform: skew(-10deg);
}

.contacts__info-item {
	display: flex;
	align-items: center;
	gap: 23px;
}

.contacts__info-item-text {
	display: grid;
	gap: 12px;
}

.contacts__info-item-title {
	margin: 0;

	color: var(--bg);

	font-family: var(--accent-font);
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
}

.contacts__info-item-desc {
	margin: 0;

	color: #8d8d8d;

	font-family: var(--extra-font);
	font-weight: 700;
	font-size: 16px;
}

/* CONTACTS EXTRA */
.catalog-details__content img {
    max-width: 100%;
}
.contacts-extra {
	margin-top: 61px;
}

.contacts-extra__inner {
  display: grid;
  grid-template-columns: 1fr 539px;
	gap: 30px;
}

.contacts-extra__title {
	margin: 0;
	margin-bottom: 31px;

	color: var(--bg);

	font-family: var(--extra-font);
	font-size: 20px;
	font-weight: 700;
}

.contacts-extra__content {
	margin: 0;

	color: #373636;

	font-family: var(--extra-font);
	font-size: 18px;
	font-weight: 400;
}

.contacts-extra__content ol {
	margin: 2px 0;
  padding: 0px;
  padding-left: 26px;
}

.contacts-extra__map {
	aspect-ratio: 539 / 351;
	max-width: 539px;
}

.contacts-extra__map img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@media (max-width: 1260px) {
	.contacts-extra__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media (max-width: 1040px) {
	.contacts__info {
		flex-wrap: wrap;
	}

	.contacts__info-item {
		flex: 1 0 48%;
	}
}

@media (max-width: 840px) {
	.contacts {
		margin-top: 24px;
	}

	.contacts__info {
		margin-top: 38px;
    flex-direction: column;
		gap: 34px;
	}

	.contacts__info-item {
		display: flex;
		align-items: center;
		gap: 33px;
	}

	.contacts-extra {
		margin-top: 68px;
		margin-bottom: -56px;
		overflow: hidden;
	}

	.contacts-extra__title {
		margin-bottom: 56px;
	}
}

@media (max-width: 550px) {
	.contacts-extra__map {
		margin: 0 -20px;
	}
}

/* SPECIALISTS HERO */

.specialists-hero {
	margin-top: 187px;
}

.specialists-hero__desc {
	margin: 0;
	margin-top: 24px;
	max-width: 575px;

	color: var(--text);

	font-family: var(--extra-font);
	font-size: 18px;
	font-weight: 400;
}

.specialists-hero__info-params {
	display: grid;
	grid-template-columns: repeat(3, 1fr);

	max-width: 545px;
	margin-top: 57px;
}

.specialists-hero__info-param {
	display: grid;
	align-items: center;
	gap: 13px;

	padding-left: 11px;
	padding-bottom: 19px;

	border-left: 2px solid var(--accent);
}

.specialists-hero__info-param-title {
	margin: 0;

	color: var(--text);

	font-family: var(--accent-font);
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
}

.specialists-hero--info-param-text {
	margin: 0;

	font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 700;
}

/* OUR SPECIALISTS */

.our-specialists {
	position: relative;
	padding-top: var(--outer-space);
	margin-top: 13px;
	padding-bottom: 87px;

	overflow: hidden;
}

.our-specialists::before {
	content: '';

	position: absolute;
	left: 5%;
  top: 317px;
	z-index: 0;

	width: 392px;
	aspect-ratio: 392 / 497;

	background-image: url('/wp-content/themes/DailyDrive/assets/img/specialists-fog.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.our-specialists::after {
	content: '';

	position: absolute;
	right: -3%;
  top: 400px;
	z-index: 0;

	width: 392px;
	aspect-ratio: 392 / 497;

	background-image: url('/wp-content/themes/DailyDrive/assets/img/specialists-fog.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.our-specialists__content {
  padding-top: 80px;
}

.our-specialists__item {
	position: relative;

	display: flex;
	flex-direction: column;
	align-items: center;

	z-index: var(--z-1);

	text-decoration: none;
}

.our-specialists__item-bg {
	display: flex;
	flex-direction: column;

	width: 100%;

	height: 195px;

	background: var(--url);
	background-color: #999;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.our-specialists__item-title {
	font-size: var(--extra-font);
	font-size: 20px;
	font-weight: 700;

	padding-right: 45px;
}

.our-specialists__item-btn-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;

	margin-top: auto;
}

.our-specialists__item-btn {
	width: 100%;
	padding-right: 45px;
}

.our-specialists__item-btn::before {
	transform: skew(0deg);
}

@media (max-width: 1040px) {
	.our-specialists__content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 840px) {
	.body--specialists::before,
	.body--specialists::after {
		height: 812px;
	}

	.our-specialists::before,
	.our-specialists::after {
	display: none;
	}

	.specialists-hero__inner {
		display: flex;
		flex-direction: column;
	}

	.specialists-hero {
		margin-top: 153px;
	}

	.specialists-hero__title {
		font-size: 24px;
		line-height: 119%;
	}

	.specialists-hero__desc {
		order: 1;
		margin-top: 17px;
	}

  .hero__info {
		/* margin-top: 42px; */
	}

	.specialists-hero__info-params {
		display: flex;
		flex-direction: column;
		width: fit-content;

		margin-top: 35px;
		gap: 33px;
	}

	.specialists-hero__info-param {
		border-left: none;
		padding-bottom: 0;
	}

	.our-specialists__title {
		font-size: 24px;
	}

	.our-specialists {
		padding-top: 13px;
	}

	.our-specialists__content {
		grid-template-columns: repeat(1, 1fr);
		padding-top: 44px;
	}
}

/* NEWS */

.news {
	margin-top: 59px;
}

.news__title {
	font-size: 36px;
}

.news__types {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

	margin-top: 28px;
	padding-top: 3px;
	padding-left: 18px;

}

.news__type {
  position: relative;
	height: 52px;
  padding: 16px 32px;

	color: var(--accent);

  font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	text-wrap: nowrap;
}

.news__type::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(to right, #B5372F 0%, #FC5F07 55%, #F9B300 100%);
  transform: skew(var(--skew-2));
  z-index: -1;
  font-size: 128px;
}

.news__type::after {
  content: '';
  position: absolute;
  inset: 0px;
	background: white;
  transform: skew(var(--skew-2));
  z-index: -1;
  font-size: 128px;
}

.news__type--active {
	color: var(--text);
}

.news__type--active::after {
	background: transparent;
}

.news__list {
	display: grid;
	gap: 10px;

	margin-top: 28px;
}

.news__item {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 22px;

	width: 760px;
}

.news__item-img {
	aspect-ratio: 360 / 214;
	overflow: hidden;
}

.news__item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.news__item-content {
}

.news__item-text {
	margin: 0;

	color: black;

	font-family: var(--extra-font);
	font-size: 16px;
	font-weight: 700;
}

.news__item-content-info {
	display: flex;
	align-items: center;
	gap: 60px;

	margin-top: 47px;
}

.news__item-title {
	margin: 0;

	color: var(--accent);

	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 700;
}

.news__item-date {
	margin: 0;

	color: #C2C2C2;

	font-family: var(--extra-font);
	font-size: 16px;
	font-weight: 400;
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;

	margin-top: 53px;
	margin-bottom: 63px;

}

.pagination-link {
	color: #D4D4D4;

	font-family: var(--extra-font);
	font-size: 16px;
	font-weight: 400;
}

.pagination-link--active {
	color: var(--accent);
	text-decoration: underline;
}

@media (max-width: 1040px) {
	.news__types {
		height: 85px;
		flex-wrap: nowrap;

		overflow-x: scroll;
		overflow-y: hidden;
	}

	.news__title {
		font-size: 24px;
		line-height: 135%;
	}
}

@media (max-width: 840px) {
	.news {
		margin-top: 28px;
	}

	.news__list {
		margin-top: 45px;
	}

	.news__item {
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;

		width: 100%;
		margin-bottom: 14px;
	}
}

/* ARTICLE */

.article {
	margin-top: 59px;
}

.article__inner {
  padding-left: 54px;
	max-width: 755px;
}

.news__item-content .link{
	display:inline-block;
	margin-top:20px;
	font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.article__title,.article__single h2 {
	max-width: 535px;

	color: black;

	font-family: var(--extra-font);
	font-size: 24px;
	font-weight: 700;

	margin: 0;
}

.article__type {
  display: inline-block;

	position: relative;

	margin-top: 10px;

	color: var(--accent);

	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}

.article__type::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -5px;

	height: 2px;

	background: var(--accent);
}

.article .article__text {
	color: #626262;

	font-family: var(--extra-font);
	font-size: 16px;
	font-weight: 400;
}

.article__btn {
	margin-top: 8px;

	font-size: 16px;
}

.article__subtitle {
	font-family: var(--accent-font);
	font-size: 36px;
	font-weight: 700;

	margin: 0;
	margin-top: 53px;
  margin-bottom: 36px;
}

.article p {
	color: #626262;

	font-family: var(--extra-font);
	font-size: 20px;
	font-weight: 400;
}

.article__advertisement {
	margin-bottom: 50px;
}

.article__advertisement img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* ARTICLE CTA */


.article-cta {
	padding-top: 46px;
	padding-bottom: var(--outer-space);

	position: relative;
	overflow: hidden;

	height: 260px;
}

.article-cta > .container {
	position: relative;
	padding: 0;
}

.article-cta__inner {
	background-color: #999;
	background-image: url('');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	position: relative;
}

.article-cta__inner::before {
  content: 'Drive';

  top: -4px;
  right: 55px;
}

.article-cta__inner::after {
	content: 'Daily';

  top: 97px;
  right: 67px;
}

.article-cta__decor {
	position: absolute;

	bottom: -168px;
  right: -56px;

	z-index: var(--z-1);
}

.article-cta__content {
	display: flex;
	flex-direction: column;

	padding: 30px 18px 49px;
}

.article-cta__title {
	margin: 0;
	max-width: 486px;


	font-size: 24px;
	text-align: center;

	background: #F95A00;
	background: linear-gradient(to right, #73372C 0%, #EDA57D 19%, #9A4835 35%, #B65741 57%, #E18B6A 79%, #702B1D 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.article-cta__text {
	max-width: 325px;

	font-family: var(--extra-font);
	font-size: 16px;
}

.article-cta__form {
	display: flex;

  margin-top: 25px;
  margin-left: -21px;

	height: 56px;
}

.article-cta__input-wrapper {
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;

  width: 491px;
	aspect-ratio: 410/56;

	background-color: transparent;
	background-image: url('/wp-content/themes/DailyDrive/assets/img/input-email.svg');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.article-cta__input {
	position: relative;

	display: block;

	width: 100%;
	height: 100%;
	padding: 0 27px;

	border: none;

	background: transparent;
	color: var(--text);

	font-family: var(--accent-font);
	font-size: 16px;
	text-align: center;
}

.article-cta__input:focus {
	outline: none;
}

.article-cta__input::placeholder {
	color: var(--text);

	font-family: var(--accent-font);
	font-size: 16px;
}

.article-cta__btn {
	margin-left: -11px;
}

.article-cta__btn::before {
	transform: skew(-24deg);
}

.article-sharing {
	display: flex;
	flex-direction: column;
	gap: 13px;

	margin-bottom: 50px;
}

.article-sharing__text {
	color: black;

	font-family: var(--extra-font);
	font-size: 20px;
	font-weight: 400;
}

.article-sharing__socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.article-sharing__social {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 37px;
	height: 37px;
}

.article-sharing__social img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@media (max-width: 840px) {
	.article {
		margin-top: 30px;
	}

	.article__inner {
		padding-left: 0;
		max-width: none;
	}

	.article__type {
		margin-top: 24px;
	}

	.article__btn {
		padding: 16px 14px;
	}

	.article__btn::before {
		transform: skew(-11deg)
	}

	.article__subtitle {
		margin-top: 27px;
		margin-bottom: 43px;

		font-size: 24px;
	}

	.article-cta,
	.article-cta__content {
		height: 843px;
	}

	.article-cta__content {
		padding-top: 61px;
	}

	.article-cta__title {
		line-height: 129%;
	}

	.article-cta__form {
		margin-top: 84px;
		margin-left: 0;

		flex-direction: column;
	}

	.article-cta__input-wrapper {
		background-image: url(/wp-content/themes/DailyDrive/assets/img/input.svg);
  	aspect-ratio: 211 / 36;

		width: 330px;
		height: 60px;
		margin-left: 9px;
	}

	.article-cta__btn {
		margin-left: 27px;
    margin-top: 32px;
    width: 286px;
	}

	.article-cta__inner::before,
	.article-cta__inner::after {
		font-size: 96px;
	}

	.article-cta__inner::before {
		top: auto;
		bottom: 280px;
		right: -13px;
	}

	.article-cta__inner::after {
    top: auto;
    bottom: 144px;
    right: 0px;
	}

	.article-sharing {
		margin-top: 10px;
	}
}

/* REVIEWS */

.reviews {
  margin-top: 40px;
}

.reviews__title {
	display: inline-flex;

	padding-right: 2px;

	font-size: 24px;
}

.reviews__list {
	display: flex;
	flex-direction: column;
	gap: 13px;

	margin-top: 33px;
}

.reviews__item {
	padding: 22px;

	border: 1px solid #e0e0e0;
}

.reviews__item-header {
	display: flex;
	align-items: center;
	gap: 29px;
}

.reviews__item-info {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.reviews__item-name {
	margin: 0;

	color: black;

	font-family: var(--extra-font);
	font-size: 24px;
	font-weight: 700;
}

.reviews__item-theme {
	margin: 0;

	color: var(--accent);

	font-family: var(--extra-font);
	font-size: 24px;
	font-weight: 400;
}

.reviews__item-img {
	border-radius: 50%;
	width: 73px;
	height: 73px;
	object-fit: cover;
	object-position: center center;
}

.reviews__item-content {
	margin-top: 24px;
}

.reviews__item-content p {
	margin-top: 12px;
	margin-bottom: 0;

	color: #626262;

	font-family: var(--extra-font);
	font-size: 16px;
	font-weight: 400;
}

@media (max-width: 840px) {
	.reviews {
		margin-top: 22px;
	}

	.reviews__list {
		margin-top: 39px;
		gap: 20px;
	}

	.reviews__item-header{
		align-items: flex-start;
	}

	.reviews__item {
		padding: 22px 15px;
	}

	.reviews__item-theme {
		font-size: 20px;
	}

	.reviews__item-content {
		margin-top: 34px;
	}
}


/* GALLERY */

.gallery {
	background-color: black;
	background-image: url(/wp-content/themes/DailyDrive/assets/img/gallery-bg.png);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;

	padding-bottom: 150px;
}

.gallery__inner {
	margin-top: 155px;
}

.gallery__title {
	font-size: 32px;
}

.gallery__text {
	margin: 0;
	margin-top: 31px;
	max-width: 855px;

	color: var(--text);

	font-family: var(--extra-font);
	font-size: 18px;
	font-weight: 400;
}

.gallery__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 40px;
	row-gap: 20px;

	margin-top: 56px;
}

.gallery__item {

}

.gallery__item-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

@media (max-width: 1040px) {
	.gallery__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 840px) {
	.gallery__inner {
		margin-top: 168px;
	}

	.gallery__text {
		margin-top: 17px;
	}
}

@media (max-width: 600px) {
	.gallery__list {
		grid-template-columns: repeat(1, 1fr);
    margin: 0 -20px;
		margin-top: 48px;
	}

	.gallery {
		background-position: left center;
	}
}

/* CATALOG DETAILS HERO */
.catalog-details-hero {
}

.catalog-details-hero__inner {
}

.catalog-details-hero__title {
  padding: var(--inner-space) 0;
	margin: 0;

	color: black;

  font-family: var(--accent-font);
  font-size: 33px;
  font-weight: 700;
}

.catalog-details-hero__img {
	height: 500px;
}

.catalog-details-hero__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.catalog-details-hero__info {
	display: flex;
	flex-direction: column;
	gap: 20px;

	padding: 20px 30px 40px;

	background: var(--bg);
}

.catalog-details-hero__info-text {
	margin: 0;

	font-size: 20px;
}

.catalog-details-hero__phone {
	color: var(--text);

	font-family: var(--text-accent);
	font-size: 36px;
	font-weight: 700;
	text-decoration: none;
}

.catalog-details-hero__btn {
	width: fit-content;
}

@media (max-width: 840px) {
	.catalog-details-hero__inner {
		margin: 0 -20px;
	}

	.catalog-details-hero__title {
		margin: 0 20px;
		font-size: 20px;
		padding-top: 40px;
		padding-bottom: 27px;
	}

	.catalog-details-hero__img {
		height: 389px;
	}
