/* ==================================================== */
/* ---------------------- HEADER ---------------------- */
.header {
	height: 80px;
	width: 100%;
	position: fixed;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(10px);
	transition: transform 0.4s ease, opacity 0.3s ease;
}

header.header--hidden {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

.header__mobile-row {
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.header__nav {
	justify-content: space-between;
}

.navigation__list {
	gap: 44px;
}

.menu-item-has-children {
	position: relative;
	height: 80px;
	display: flex;
}

.menu-item-has-children>a,
.menu-item-has-children>span {
	display: flex;
	align-items: center;
	gap: 12px;
}

.menu-item-has-children>a::after,
.menu-item-has-children>span::after {
	content: url(../img/dropdown.svg);
	height: 30px;
}

.sub-menu {
	width: max-content;
	max-width: 240px;
	display: none;
	padding: 16px 32px 20px;
	position: absolute;
	top: 100%;
	left: -16px;
	background: rgba(0, 0, 0, 0.5);
}

.header__lang .sub-menu {
	left: 50%;
	transform: translate(-50%, 0);
}

.sub-menu .menu-item {
	padding: 8px 0;
}

.sub-menu .menu-item a {
	display: inline-block;
	width: 100%;
}

.menu-item-has-children:hover .sub-menu {
	display: block;
}

.header .navigation__element.parent {
	display: flex;
	align-items: center;
	gap: 8px;
}

.navigation__item.phone {
	padding: 6px 12px;
	border-radius: 20px;
	background-color: rgba(31, 41, 55, 0.5);
}

.header__burger svg {
	transition: transform 0.3s ease;
	cursor: pointer;
}

.header.shown .header__burger svg {
	transform: scaleX(-1);
}

@media (max-width: 1260px) {
	.navigation__list {
		gap: 20px;
	}
}

@media (min-width: 1081px) {
	.header__mobile-row {
		display: none;
	}

	.header__nav {
		display: flex;
	}
}

@media (max-width: 1080px) {
	.header.shown {
		height: 100vh;
		flex-direction: column;
		background-color: rgba(0, 0, 0, 0.75);
	}

	.header__mobile-row {
		display: flex;
		height: 80px;
	}

	.header__lang.menu-item-has-children:hover .sub-menu {
		display: flex;
	}

	.header__nav {
		display: none;
	}

	.header.shown .header__nav {
		height: calc(100% - 80px);
		padding: 60px 0;
		display: flex;
		flex-direction: column;
		gap: 52px;
	}

	.navigation__list {
		flex-direction: column;
		gap: 32px;
	}

	.header__logo--desktop {
		display: none;
	}

	.menu-item-has-children {
		height: auto;
	}

	.menu-item-has-children#menu-item-39 .sub-menu,
	.menu-item-has-children>a::after,
	.menu-item-has-children>span::after {
		display: none;
	}

	.header__lang .sub-menu {
		display: flex;
		background: none;
		padding: 0;
		position: static;
		transform: translate(0, 0);
	}

	.header__lang,
	.header__lang .sub-menu {
		gap: 20px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ---------------------- FOOTER ---------------------- */
.site-footer {
	border-top: 1px solid var(--gray-600);
	padding: 60px 0 40px;
}

.site-footer.with-form {
	padding-top: 100px;
}

.with-form .contact-block {
	margin-bottom: var(--main-margin);
}

.contact-block {
	justify-content: space-between;
	gap: 20px;
}

.contact-block__info {
	width: 35%;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-block__info h2 {
	text-align: left;
}

.contact-block__info p {
	color: var(--gray-400);
}

.contact-block__small-heading {
	margin-top: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.contact-block__contacts {
	gap: 20px 40px;
	flex-wrap: wrap;
}

.contact-block__form {
	width: 50%;
	padding: 56px;
	border-left: 1px solid var(--gray-600);
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.contact-block__form .field-wrapper {
	position: relative;
}

.contact-block__form .few-inputs .field-wrapper {
	flex: 1;
}

.contact-block__form input,
.contact-block__form textarea {
	width: 100%;
	background: none;
	padding: 16px 20px;
	border-bottom: 1px solid var(--gray-600);
}

.contact-block__form input::placeholder,
.contact-block__form textarea::placeholder {
	color: var(--gray-300);
}

.footer-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--main-margin);
}

.with-form .footer-block__nav {
	border-top: 1px solid var(--gray-500);
}

.footer-block__nav {
	width: 100%;
	padding: 20px 0;
	display: flex;
	gap: 20px;
}

.footer-block__column {
	flex: 1;
	padding-right: 20px;
	border-right: 1px solid var(--gray-500);
}

.footer-nav__heading {
	font-size: 13px;
	margin-bottom: 16px;
}

.footer-nav__list>li {
	padding: 8px 0;
}

.footer-block__media {
	gap: var(--main-margin);
}

@media (max-width: 1560px) {
	.contact-block__info {
		width: 45%;
		padding-left: 56px;
	}
}

@media (max-width: 980px) {
	.contact-block__info {
		padding-left: 28px;
	}

	.contact-block__form {
		padding: 52px 28px;
	}
}

@media (max-width: 640px) {
	.contact-block {
		flex-direction: column;
		gap: var(--main-padding);
	}

	.contact-block__info,
	.contact-block__form {
		width: 100%;
	}

	.contact-block__info {
		padding-left: 0;
	}

	.contact-block__form {
		padding: 40px 20px;
		border-left: none;
		border-top: 1px solid var(--gray-600);
	}

	.footer-block__nav {
		flex-wrap: wrap;
		gap: 40px 20px;
		border-bottom: 1px solid var(--gray-500);
		padding: var(--main-padding) 0;
	}

	.footer-block__column {
		border-right: none;
	}

	.footer-block__column.contacts {
		width: 100%;
		flex-basis: auto;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ----------------------- HERO ----------------------- */
.hero {
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

.hero::before {
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
	z-index: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, #ffffff00 25%, rgba(0, 0, 0, 0.9) 100%);
}

.hero .container {
	height: 100%;
	padding-bottom: var(--main-padding);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	z-index: 1;
	position: relative;
}

.hero__offer {
	max-width: 640px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

/* ==================================================== */


/* ==================================================== */
/* ----------------------- FORM ----------------------- */
.primary-form {
	background-color: var(--white);
	border-radius: 8px;
	padding: 40px 24px;
	gap: 40px;
	align-items: stretch;
}

.primary-form__section {
	flex-grow: 2.5;
	flex-basis: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;
}

.primary-form__section.contacts {
	flex-grow: 1;
	gap: 16px;
}

.primary-form__buttons {
	gap: 20px;
}

.primary-form__buttons button {
	font-size: 14px;
	padding: 12px 20px;
	flex: 1;
}

.primary-form .few-inputs {
	gap: 20px;
}

.primary-form label {
	color: var(--secondary);
	font-weight: 600;
	line-height: 1.2;
}

.primary-form .with-icon {
	position: relative;
}

.primary-form input {
	width: 100%;
	min-height: 55.2px;
	background: none;
	padding: 12px 12px 12px 28px;
	border-bottom: 2px solid var(--secondary);
	color: var(--secondary);
}

.primary-form input::placeholder {
	color: var(--gray-500);
}

.primary-form__section.contacts input {
	padding-left: 0;
}

.primary-form .input-wrapper {
	display: flex;
	flex-direction: column;
	position: relative;
	flex: 1;
	flex-basis: 0;
	min-width: 0;
	max-height: fit-content;
}

.primary-form .input-wrapper svg {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.primary-form__section.vehicles-selection {
	flex-grow: 2;
	display: flex;
	flex-direction: column;
}

.primary-form .car-selection {
	justify-content: space-between;
	margin-top: 8px;
}

.car-selection__element {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 16px 16px;
	gap: 12px;
	border-radius: 8px;
	cursor: pointer;
	color: var(--secondary);
}


.car-selection__element:hover,
.car-selection__element.active {
	background-color: var(--secondary);
	color: var(--white);
}

.car-selection__element:hover path,
.car-selection__element.active path {
	fill: var(--white);
}

.primary-form .selection {
	position: absolute;
	top: 100%;
	background-color: var(--gray-200);
	z-index: 1;
	height: 112px;
	width: 100%;
	overflow-y: scroll;
	padding: 4px 0;
	display: none;
}

.primary-form .selection::-webkit-scrollbar-track {
	background: none;
}

.tour input {
	cursor: pointer;
}

.primary-form .selection.shown {
	display: block;
}

.primary-form .selection__item {
	padding: 6px 28px;
	color: var(--secondary);
	cursor: pointer;
}

.primary-form .just-validate-error-label {
	bottom: 2px;
	font-size: 10px;
}

@media (max-width: 1260px) {
	.primary-form {
		gap: 28px;
	}

	.primary-form__section {
		max-width: 460px;
	}
}

@media (max-width: 480px) {
	.primary-form {
		padding: 16px;
		gap: 16px;
	}

	.primary-form .few-inputs {
		flex-wrap: wrap;
	}

	.primary-form .route .input-wrapper,
	.primary-form .input-wrapper.passengers {
		flex-basis: auto;
		width: 100%;
	}

	.car-selection__element svg {
		height: auto;
		width: 80px;
	}
}

@media (max-width: 1080px) {
	.primary-form__section {
		max-width: 400px;
	}

	.primary-form__buttons {
		gap: 12px;
	}

	.primary-form__buttons button {
		padding: 10px 16px;
	}

	.primary-form__buttons button svg {
		display: none;
	}

	.primary-form .few-inputs {
		gap: 16px;
	}

	.car-selection__element {
		padding: 12px 12px;
	}
}

@media (max-width: 980px) {
	.primary-form {
		gap: 40px;
		flex-wrap: wrap;
	}

	.primary-form__section.main-inputs {
		max-width: 100%;
		width: 100%;
		flex-basis: auto;
	}
}

@media (max-width: 640px) {
	.primary-form {
		margin: 0 8px;
		flex-direction: column;
		gap: 40px;
	}

	.primary-form__section {
		max-width: 100%;
		gap: 20px;
	}

	.primary-form__section.contacts {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 20px;
	}

	.primary-form .input-wrapper.phone {
		width: 100%;
		flex-basis: auto;
	}

	.primary-form__buttons {
		margin-bottom: 12px;
	}

	.primary-form__buttons button.rounded {
		padding: 16px;
		border: none;
		border-radius: 4px;
	}

	.primary-form .selection {
		height: 132px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* -------------------- ADVANTAGES -------------------- */
.advantages__list .info-card__body {
	min-height: 160px;
}

@media (max-width: 768px) {
	.advantages .info-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.advantages .info-card__body {
		min-height: max-content;
	}

	.advantages .info-cards {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* ==================================================== */


/* ==================================================== */
/* --------------------- AUTOPARK --------------------- */

.autopark__card {
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	padding: 40px 20px;
	border-radius: var(--border-radius);
	background-color: var(--white);
}

.autopark__card_img {
	height: 220px;
	width: 100%;
	object-fit: cover;
}

.autopark__card_info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	flex: 1;
}

.autopark__card_info h3 {
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: 1%;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 16px;
}

.autopark__card_info p {
	color: var(--gray-500);
}

.autopark__card_info-short {
	border-top: 1px solid var(--gray-400);
	padding-top: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.autopark__card_info-short span {
	color: var(--secondary);
}

@media (max-width: 1260px) {
	.autopark__card_img {
		height: 196px;
	}
}

@media (max-width: 1080px) {

	.autopark .swiper-next,
	.autopark .swiper-prev {
		color: var(--secondary);
	}

	.autopark .swiper-next {
		right: 0;
	}

	.autopark .swiper-prev {
		left: 0;
	}
}

@media (max-width: 640px) {
	.autopark__card_info h3 {
		font-size: 24px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* --------------------- PROCESS ---------------------- */
.process {
	background-color: var(--secondary);
}

.process__list {
	max-width: 80%;
	margin: 0 auto;
}

@media (max-width: 1260px) {
	.process__list {
		max-width: 90%;
	}
}

@media (max-width: 1080px) {
	.process__list {
		max-width: 100%;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ------------------- TEXT + PHOTO ------------------- */
.text-block__text {
	max-width: 680px;
	margin: var(--main-margin) auto 0;
	text-align: center;
	color: var(--gray-400);
}

.photo-block img {
	width: 100%;
	height: 600px;
	border-radius: var(--border-radius);
	object-fit: cover;
}

@media (max-width: 1080px) {
	.photo-block img {
		height: 480px;
	}
}

@media (max-width: 768px) {
	.photo-block img {
		height: 400px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ---------------------- FEEDS ----------------------- */
.feeds__slider-container {
	position: relative;
}

.feeds__list_element {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	padding: 40px 20px;
	border-right: 1px solid var(--gray-400);
	height: auto;
}

.feeds__list_element .icon-text {
	margin-bottom: 28px;
}

.feeds__list_element .icon-text,
.feeds__list_element .date {
	color: var(--gray-400);
}

.feeds__list_element .feed {
	font-style: italic;
}

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

.feeds__list_element .name {
	font-weight: 600;
}

.feeds__list_element svg {
	flex-shrink: 0;
}

.feeds__list_element .icon-text span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 275px;
}

/* ==================================================== */


/* ==================================================== */
/* ----------------------- FAQs ----------------------- */
.faq__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: start;
}

.faq__item {
	background-color: var(--white);
	color: var(--secondary);
	border-radius: var(--border-radius);
	cursor: pointer;
}

.faq__question {
	padding: 16px;
	justify-content: space-between;
	font-weight: 600;
	user-select: none;
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.3s ease-out;
	margin: 0;
}

.faq__item.active .faq__answer {
	padding: 0 16px 16px;
	max-height: min-content;
	opacity: 1;
	display: block;
}

.faq__question svg {
	transition: transform 0.3s ease;
}

.faq__item.active .faq__question svg {
	transform: rotate(180deg);
}

/* ==================================================== */


/* ==================================================== */
/* --------------------- VEHICLES --------------------- */
.vehicles {
	margin-bottom: 100px;
}

.vehicles-block-wrapper {
	margin-top: 80px;
}

.vehicles__topbar {
	position: sticky;
	top: 20px;
	background-color: var(--white);
	padding: 8px 8px;
	gap: 20px;
	border-radius: 4px;
	z-index: 2;
}

.vehicle__topbar_element {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 20px;
	color: var(--secondary);
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease-out;
}

.vehicle__topbar_element.active,
.vehicle__topbar_element:hover {
	background-color: var(--secondary);
	color: var(--white);
}

.vehicle__topbar_element.active path,
.vehicle__topbar_element:hover path {
	fill: var(--white);
}

.vehicle__wrapper {
	padding: 64px 0;
	gap: 80px;
}

.vehicle__photo-set,
.vehicle__info-block {
	flex: 1;
	overflow: hidden;
}

.vehicle__photo-set img {
	border-radius: var(--border-radius);
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.vehicle__main-slider .swiper-wrapper {
	height: 520px;
}

.vehicle__thumbs-slider .swiper-wrapper {
	margin-top: 20px;
	max-height: 92px;
}

.vehicle__thumbs-slider .swiper-slide {
	height: 92px;
	opacity: 0.6;
	cursor: pointer;
}

.vehicle__thumbs-slider .swiper-slide-thumb-active {
	opacity: 1;
}

.prev-photo,
.next-photo {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	cursor: pointer;
}

.prev-photo {
	left: 12px;
}

.next-photo {
	right: 12px;
}

.vehicle__info-block {
	padding: 32px 0;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.vehicle__info-block h2 {
	text-align: left;
}

.vehicle__info-block p {
	color: var(--gray-400);
}

.vehicle__characteristic_row {
	display: flex;
	width: 100%;
	padding: 16px 12px;
	border-bottom: 1px solid var(--gray-600);
	color: var(--gray-300);
}

.vehicle__characteristic_name {
	width: 200px;
	padding-right: 20px;
}

.vehicle__characteristic_text {
	width: calc(100% - 200px);
	border-left: 1px solid var(--gray-600);
	padding-left: 20px;
}

@media (max-width: 1260px) {

	.vehicle__wrapper {
		gap: 36px;
	}

	.vehicle__characteristic_name {
		width: 176px;
	}
}

@media (min-width: 1081px) {
	.vehicles .car-type.long {
		display: inline-block;
	}

	.vehicles .car-type.short {
		display: none;
	}
}

@media (max-width: 1080px) {
	.vehicle__wrapper {
		gap: 20px;
	}

	.vehicle__main-slider .swiper-wrapper {
		height: 640px;
	}

	.vehicle__thumbs-slider .swiper-wrapper {
		margin-top: 16px;
		max-height: 108px;
	}

	.vehicle__thumbs-slider .swiper-slide {
		height: 108px;
	}

	.vehicle__info-block {
		gap: 24px;
	}

	.vehicles .car-type.long {
		display: none;
	}

	.vehicles .car-type.short {
		display: inline-block;
	}
}

@media (max-width: 980px) {
	.vehicles__topbar {
		gap: 16px;
	}

	.vehicle__topbar_element {
		padding: 20px 12px;
		gap: 12px;
	}

	.vehicle__wrapper {
		flex-direction: column;
	}

	.vehicle__photo-set {
		max-width: 100%;
	}
}

@media (max-width: 768px) {

	.vehicle__topbar_element svg {
		display: none;
	}

	.vehicle__main-slider .swiper-wrapper {
		height: 500px;
	}

	.vehicle__thumbs-slider .swiper-slide {
		height: 88px;
	}
}

@media (max-width: 480px) {

	.vehicle__main-slider .swiper-wrapper {
		height: 440px;
	}

	.vehicle__thumbs-slider .swiper-slide {
		height: 72px;
	}

	.vehicle__characteristic_name {
		width: 140px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ----------------------- BLOG ----------------------- */
.blog h2 {
	text-align: left;
}

.blog__head .section-heading {
	align-items: flex-start;
}

.blog__head-button {
	display: none;
}

.blog__body {
	display: flex;
	gap: 20px;
}

.blog__list-wrapper {
	flex: 3;
}

.blog__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.blog__sidebar {
	flex: 1;
}

.categories__list {
	margin-top: 24px;
}

.categories__item a {
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--gray-600);
}

.blog-card {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	border-left: 1px solid var(--gray-600);
	position: relative;
}

.blog-card__link::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blog-card__photo {
	height: 180px;
	width: 100%;
	border-radius: 8px;
	object-fit: cover;
}

.blog-card__content h2.special {
	font-size: 20px;
	text-transform: none;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
	max-height: 4.5em;
}

.blog-card__bottom {
	margin-top: 24px;
	justify-content: space-between;
}

.blog-card__bottom .date {
	color: var(--gray-400);
}

.blog-card__bottom .category {
	text-transform: uppercase;
	font-weight: 500;
}

.blog__paginator {
	margin-top: var(--main-padding);
	display: flex;
	justify-content: center;
}

ul.page-numbers {
	display: flex;
	align-items: center;
	gap: 12px;
}

a.page-numbers,
span.page-numbers {
	display: block;
	padding: 4px 12px;
	border-radius: 4px;
}

.page-numbers.current,
.blog__paginator ul .page-numbers:hover {
	background-color: var(--white);
	color: var(--secondary);
}

.paginator__button {
	display: flex;
	align-items: center;
	gap: 8px;
}

@media (max-width: 1080px) {
	.blog__list-wrapper {
		flex: 2.5;
	}

	.blog__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 981px) {
	.blog__sidebar-close {
		display: none;
	}
}

@media (max-width: 980px) {
	.blog__body {
		flex-direction: column-reverse;
	}

	.blog__head .section-heading {
		align-items: center;
		margin-bottom: 40px;
	}

	.blog__head-button.square {
		display: flex;
		background: none;
		margin: 0 auto 56px;
		padding: 12px 40px;
		border: 1px solid var(--white);
		color: var(--white);
	}

	.blog__sidebar {
		display: none;
	}

	.blog__sidebar.modal {
		display: block;
		width: 100vw;
		height: 100vh;
		background: var(--primary-dark);
		padding: 56px 20px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1001;
	}

	.blog__sidebar-title-wrapper {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.categories__list {
		margin-top: 48px;
	}
}

@media (max-width: 640px) {

	.faq__list,
	.blog__list {
		grid-template-columns: repeat(1, 1fr);
	}

	.blog-card {
		flex-direction: row;
		align-items: center;
	}

	.blog-card__link {
		flex-shrink: 0;
	}

	.blog-card__photo {
		height: 152px;
		width: 168px;
	}

	.paginator__button span {
		display: none;
	}
}

@media (max-width: 480px) {

	.blog-card__photo {
		width: 120px;
	}

	.blog-card__content h2.special {
		font-size: 16px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ------------------- SINGLE POST -------------------- */
.single-post.without-hero {
	padding-top: 132px;
}

.single-post .go-back {
	display: inline-flex;
	color: var(--gray-400);
	gap: 12px;
}

.single-post__title {
	margin-top: 32px;
	font-weight: 600;
	text-align: left;
}

.single-post__info {
	margin: 36px 0 56px;
	gap: 40px;
}

.single-post__category {
	text-transform: uppercase;
	font-weight: 600;
	margin-right: 20px;
}

.single-post__date {
	color: var(--gray-400);
}

.single-post__photo {
	height: 480px;
	width: 100%;
	object-fit: cover;
	border-radius: var(--border-radius);
}

.single-post__content {
	width: 75%;
	margin: 64px auto;
	line-height: 2;
	color: var(--gray-300);
}

.single-post__content>* {
	margin-bottom: 20px;
}

.single-post__content h3 {
	color: var(--gray-200);
	text-transform: uppercase;
	font-weight: 600;
}

.single-post__content ul {
	list-style: circle;
	padding-left: 40px;

}

.single-post .nav-links {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 28px;
	padding: 20px;
	border-top: 1px solid var(--gray-600);
	border-bottom: 1px solid var(--gray-600);
}

.single-post .nav-links svg {
	flex-shrink: 0;
}

.single-post .nav-links:not(:has(.nav-previous)) {
	justify-content: flex-end;
}

.single-post .nav-previous a,
.single-post .nav-next a {
	display: flex;
	align-items: center;
	gap: 12px;
}

.single-post .nav-title {
	max-width: 360px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

@media (max-width: 640px) {
	.single-post__title {
		margin-top: 28px;
		font-size: 32px;
	}

	.single-post__info {
		margin: 36px 0 44px;
		gap: 28px;
	}

	.single-post__photo {
		height: 320px;
	}

	.single-post__content {
		width: 95%;
		margin: 52px auto;
	}

	.single-post .nav-links {
		flex-direction: column;
	}

	.single-post .nav-next a {
		justify-content: flex-end;
	}
}

@media (max-width: 480px) {

	.single-post .nav-links {
		padding: 20px 16px;
	}

	.single-post .nav-links>div {
		max-width: 100%;
	}
}

/* ==================================================== */


/* ==================================================== */
/* ------------------- 404 & THANKS ------------------- */
.undefined-page.without-hero,
.thanks-page.without-hero {
	margin-bottom: 160px;
	text-align: center;
}

.undefined-page h1 {
	font-size: 120px;
	font-weight: 600;
	margin-bottom: 56px;
}

.undefined-page a.button-square,
.thanks-page a.button-square {
	display: inline-block;
}

.thanks-page h1 {
	font-size: 92px;
	font-weight: 600;
	margin-bottom: 56px;
}

.thanks-page h2 {
	text-transform: none;
}

@media (max-width: 640px) {

	.undefined-page .section-heading__sub,
	.thanks-page .section-heading__sub {
		display: block;
	}

	.thanks-page h1 {
		font-size: 64px;
	}

	.thanks-page h2 {
		font-size: 20px;
	}
}

/* ==================================================== */


/* ==================================================== */
/* --------------------- services --------------------- */

.services .process__list {
	max-width: 100%;
}

.services .process__list .info-card__body {
	height: calc(100% - 300px);
}

@media (max-width: 768px) {
	.services .process__list {
		grid-template-columns: repeat(1, 1fr);
		gap: 32px;
	}
}

/* ==================================================== */