/* @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap"); */

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter_24pt-Regular.woff2') format('woff2');
	font-weight: 400;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter_24pt-Medium.woff2') format('woff2');
	font-weight: 500;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter_24pt-SemiBold.woff2') format('woff2');
	font-weight: 600;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter_24pt-Bold.woff2') format('woff2');
	font-weight: 700;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter_24pt-ExtraBold.woff2') format('woff2');
	font-weight: 800;
}
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter_24pt-Black.woff2') format('woff2');
	font-weight: 900;
}
html {
	scroll-behavior: smooth;
}

:root {
	--primary: #3e7e53;
	--black: #2a3337;
	--font-main: 'Inter', sans-serif;
	--container-desk: 1420px;
	--container-laptop: 1120px;
	--container-mob: calc(100% - 30px);
	--scroll-desk: 110px;
	--scroll-mob: 60px;
}

body,
* {
	font-family: var(--font-main);
}

body {
	color: #fff;
}

.container {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: var(--container-desk);
	height: 100%;
}

.btn {
	background: none;
	border: none;
	height: 60px;
	width: 100%;
	font-size: 24px;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
}

.btn-primary {
	background: var(--primary);
	color: #fff;
}

.btn-primary:hover {
	background: #fff;
	color: var(--primary);
	border: 1px solid var(--primary);
}

.btn-outline {
	border: 1px solid #fff;
	color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: var(--black);
}

.btn-outline-primary {
	border: 1px solid var(--primary);
	color: var(--primary);
}

.btn-outline-primary:hover {
	background-color: var(--primary);
	color: #fff;
}

.btn-outline-black {
	border: 1px solid var(--black);
	color: var(--black);
}

.btn-outline-black:hover {
	background-color: var(--black);
	color: #fff;
}

.input {
	height: 44px;
	background: none;
	border: 0;
	border-bottom: 1px solid #fff;
	font-size: 16px;
	font-weight: 500;
	padding: 0;
	color: #fff;
	width: 100%;
}

.section {
	margin-top: 80px;
	scroll-margin-top: var(--scroll-desk);
}

.section__title {
	font-size: 42px;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 50px;
}

.header {
	position: fixed;
	z-index: 5;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	background: none;
	transition: all 0.3s;
}

.header.scroll {
	background: var(--primary);
}

.header__content {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.burger {
	display: none;
}

.header__logo {
	display: block;
	width: 250px;
}

.header__logo img {
	width: 100%;
}

.header__right {
	display: flex;
	align-items: center;
	flex: 1;
	justify-content: flex-end;
	gap: 30px;
}

.header__contacts {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header__contacts-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	flex-direction: column;
	align-items: flex-start;
}

.header__contacts-item-address {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header__btn {
	height: 65px;
	max-width: 288px;
	font-size: 20px;
}

.menu {
	display: none;
}

.hero {
	height: 960px;
	position: relative;
}

.hero__inner {
	background-image: url(../img/hero.webp);
	/* background-image: url(../img/hero-1.png); */
	background-size: cover;
	height: 100%;
}

.hero__content {
	height: 100%;
	padding-top: 200px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.hero__heading {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	/* max-width: 640px; */
	max-width: 100%;
}

.hero_subtitle {
	font-weight: 600;
	/* font-size: 20px; */
	font-size: 27px;
}

.hero__btn {
	margin-top: 50px;
	max-width: 360px;
}

.hero__timer {
	width: 360px;
	padding-top: 10px;
	border-top: 1px solid #fff;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.hero__timer-title {
	font-size: 12px;
}

.hero__bottom {
	position: absolute;
	left: 0;
	bottom: 44px;
	width: 100%;
}

.hero__benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.hero__benefits-item {
	display: flex;
	align-items: center;
	padding: 40px;
	position: relative;
	z-index: 1;
}

.hero__benefits-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.25;
}

.hero__benefits-item:hover::before {
	opacity: 0.1;
	cursor: pointer;
}

.hero__benefits-item p {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.hero__benefits-item p span {
	font-weight: 700;
}

.models {
	position: relative;
	min-height: 1400px;
}

.models__bg {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 160px;
	width: 100%;
	height: 1144px;
	background-image: url(../img/models-bg.svg);
	background-size: cover;
	background-position: center;
}

.models__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 20px;
}

.model-card {
	position: relative;
	box-shadow: 0px 0px 18px 0px rgba(42, 51, 55, 0.3);
}

.model-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 300px;
	height: 12px;
	background-color: #fff;
	opacity: 0.3;
}

.model-card__images {
	height: 305px;
	width: 100%;
	position: relative;
}

.model-card__bg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.model-card__main-image {
	position: absolute;
	left: 25px;
	top: 95px;
	width: calc(100% - 50px);
	height: 308px;
}

.model-card__main-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.model-card__header {
	position: absolute;
	top: 20px;
	left: 20px;
	width: calc(100% - 40px);
	height: 42px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.model-card__name {
	height: 100%;
	min-width: 205px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	background-color: var(--primary);
}

.model-card__description {
	font-size: 16px;
}

.model-card__content {
	color: var(--black);
	padding: 70px 25px 48px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 455px;
	background-color: #fff;
}

.model-card__prices {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.model-card__old-price {
	font-size: 20px;
	line-height: 1;
}

.model-card__prices-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--primary);
}

.model-card__prices-row .price-label {
	display: none;
}

.model-card__new-price {
	font-size: 30px;
	font-weight: 600;
}

.model-card__payment {
	font-size: 18px;
	font-weight: 600;
}

.model-card__terms {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: disc;
	padding-left: 20px;
}

.model-card__terms-item {
	font-size: 16px;
	font-weight: 500;
}

.model-card__buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filter {
	display: grid;
	grid-template-columns: repeat(2, 460px);
	gap: 110px;
}

.select2-container--default .select2-selection--single {
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid var(--black);
	height: 40px;
}

.select2-container--default
	.select2-selection--single
	.select2-selection__rendered {
	font-size: 24px;
	padding: 0 4px;
}

.select2-results__option--selectable {
	color: var(--black);
}

.select2-container--default
	.select2-results__option--highlighted.select2-results__option--selectable {
	background-color: var(--primary);
}

.select2-selection__arrow {
	width: 24px;
	background-image: url(../img/select-arrow.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.select2-selection__arrow b {
	display: none !important;
}

.equipments__titles {
	display: grid;
	grid-template-columns: 185px 315px 160px 160px 210px;
	color: var(--primary);
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	margin: 40px 0;
}

.equipments__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.equipment-card {
	padding: 10px;
	display: grid;
	grid-template-columns: 195px 295px 130px 395px auto;
	gap: 5px;
	align-items: center;
	color: var(--black);
}

.equipment-card:nth-child(odd) {
	background: rgba(245, 245, 245, 0.75);
}

.equipment-card__name {
	font-size: 20px;
	font-weight: 700;
}

.equipment-card__specs {
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
	text-transform: uppercase;
}

.equipment-card__old-price {
	font-size: 16px;
}

.equipment-card__prices {
	display: grid;
	grid-template-columns: 200px auto;
	font-size: 20px;
	font-weight: 800;
	color: var(--primary);
}

.equipment-card__btn {
	height: 65px;
}

.credit {
	height: 640px;
	background-image: url(../img/credit.webp);
	background-size: cover;
}

.credit__content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 105px 0 124px;
}

.credit__text {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.credit__heading {
	font-size: 42px;
	font-weight: 800;
}

.credit__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	list-style-type: disc;
	padding-left: 20px;
	font-size: 24px;
	font-weight: 500;
}

.credit__form {
	display: flex;
	flex-direction: column;
	max-width: 410px;
	gap: 10px;
}

.agreement {
	display: flex;
	align-items: center;
	gap: 10px;
}

.agreement input {
	display: none;
}

.agreement input + span {
	width: 14px;
	height: 14px;
	background-color: rgba(255, 255, 255, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
}

.agreement input:checked + span::after {
	content: '';
	width: 8px;
	height: 8px;
	background-color: #fff;
}

.agreement p {
	font-size: 10px;
}

.agreement p a {
	text-decoration: underline;
}

.special__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 20px;
}

.special-card {
	position: relative;
	box-shadow: 0px 0px 18px 0px rgba(42, 51, 55, 0.3);
	background-color: #fff;
	max-width: 460px;
}

.special-card__name {
	position: absolute;
	top: 20px;
	left: 20px;
	background-color: var(--primary);
	padding: 7px 10px;
	font-size: 24px;
	font-weight: 500;
	text-transform: uppercase;
	z-index: 2;
}

.special-card__gallery {
	height: 350px;
}

.swiper-special {
	height: 100%;
}

.swiper-special img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.swiper-special .swiper-pagination-bullet {
	height: 2px;
	width: 40px;
	border-radius: 0;
	background-color: #fff;
	opacity: 0.5;
}

.swiper-special .swiper-pagination-bullet-active {
	opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	color: #fff;
}

.special-card__content {
	height: 320px;
	padding: 20px 25px 35px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	color: var(--black);
}

.special-card__old-price {
	font-size: 16px;
}

.special-card__prices {
	display: grid;
	grid-template-columns: 240px auto;
	align-items: center;
	gap: 10px 16px;
	color: var(--primary);
}

.special-card__prices .price-label {
	font-size: 16px;
	font-weight: 500;
	color: rgba(42, 51, 55, 0.5);
	text-transform: uppercase;
}

.special-card__new-price {
	font-size: 32px;
	font-weight: 600;
}

.special-card__payment {
	font-size: 18px;
	font-weight: 600;
}

.special-card__equipment {
	font-size: 20px;
	font-weight: 700;
}

.special-card__specs {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
}

.footer {
	position: relative;
	background-color: var(--black);
	color: #fff;
	min-height: 516px;
}

/* .map {
    background-image: url(../img/map.webp);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: 0;
    height: 516px;
    width: calc(100% - 480px - (100vw - var(--container-desk)) / 2);
} */
#map {
	max-width: 60%;
	width: 100%;
	height: 516px;
	position: absolute;
	top: 0;
	right: 0;
}
@media (max-width: 768px) {
	#map {
		position: unset;
		max-width: 100%;
	}
}
.contacts {
	padding: 50px 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.contacts__heading {
	font-size: 42px;
	font-weight: 700;
}

.contacts__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contacts__list-item {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 16px;
}

.contacts__list-item-address {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 30px;
	position: relative;
}

.contacts__list-item-address::before {
	content: '';
	position: absolute;

	background-image: url(../img/contacts-address-icon.svg);
	width: 14px;
	height: 22px;
	left: 0;
}

.contacts__list-item-address span br {
	display: none;
}

.contacts__btn {
	height: 65px;
	max-width: 288px;
	font-size: 20px;
}

.footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 16px;
	text-decoration: underline;
}

.disclaimer {
	padding: 50px 0;
}

@media screen and (max-width: 1480px) {
	.container {
		max-width: var(--container-laptop);
	}

	.header {
		height: 100px;
	}

	.header__logo {
		width: 200px;
	}

	.header__btn {
		max-width: 240px;
		height: 60px;
	}

	.hero {
		height: 780px;
	}

	.hero__content {
		padding-top: 140px;
	}

	.hero__benefits-item {
		padding: 25px;
	}

	.hero__benefits-item p {
		font-size: 20px;
	}

	.models__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.models__bg {
		height: 850px;
	}

	.equipments__titles {
		font-size: 14px;
		grid-template-columns: 180px 255px 125px 115px 205px;
	}

	.equipment-card {
		grid-template-columns: 165px 260px 100px 310px auto;
	}

	.equipment-card__name {
		font-size: 16px;
	}

	.equipment-card__specs-item {
		font-size: 14px;
	}

	.equipment-card__old-price {
		font-size: 14px;
	}

	.equipment-card__prices {
		font-size: 16px;
		grid-template-columns: 150px auto;
	}

	.equipment-card__btn {
		font-size: 18px;
		height: 60px;
	}

	.special__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.special-card {
		max-width: 550px;
	}

	.map {
		height: 440px;
		width: calc(100% - 480px - (100vw - var(--container-laptop)) / 2);
	}
}

@media screen and (max-width: 1100px) {
	.header__contacts {
		display: none;
	}
}

@media screen and (max-width: 620px) {
	.container {
		max-width: var(--container-mob);
	}

	.container_wide {
		max-width: 100%;
	}
    .header__contacts-item-address{
        display: none;
        }
    .header__contacts-item-phone{
        display: none;
    }

	.btn {
		height: 50px;
		font-size: 16px;
	}

	.section {
		margin-top: 40px;
		scroll-margin-top: var(--scroll-mob);
	}

	.section__title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.header {
		height: 60px;
	}

	.header__btn {
		display: none;
	}

	.burger {
		display: flex;
		width: 24px;
		height: 24px;
		align-items: center;
		justify-content: center;
	}

	.burger__close {
		display: none;
	}

	.header.active .burger__close {
		display: block;
	}

	.header.active .burger__open {
		display: none;
	}

	.header__left {
		display: flex;
		align-items: center;
		gap: 20px;
		width: 100%;
		justify-content: space-between;
	}

	.header__right {
		display: none;
	}

	.header__logo {
		width: 112px;
	}

	.header__content {
		gap: 52px;
	}

	.header__contacts {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}

	.header__contacts-item {
		font-size: 10px;
		text-decoration: underline;
		line-height: 1.2;
	}

	.header__contacts-item:first-child svg {
		max-width: 9px;
	}

	.header__contacts-item:last-child svg {
		max-width: 13px;
	}

	.menu {
		display: block;
		/* height: 420px; */
		width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		background: linear-gradient(180deg, #000 25%, rgba(0, 0, 0, 0) 100%);
		transform: translateX(-100%);
		transition: all 0.3s;
		z-index: 4;
	}

	.menu::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		width: 100%;
		height: 100%;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}

	.header.active + .menu {
		transform: none;
	}

	.menu__content {
		height: 100%;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 94px 0 20px;
	}

	.menu__nav {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	.menu__contacts {
		display: flex;
		flex-direction: column;
		gap: 16px;
		margin: 26px 0;
	}

	.menu__contacts-item {
		display: flex;
		flex-direction: column;
		position: relative;
		padding-left: 30px;
	}

	.menu__contacts-item::before {
		content: '';
		position: absolute;

		background-image: url(../img/contacts-address-icon.svg);
		width: 14px;
		height: 22px;
		left: 0;
		top: 4px;
	}

	.menu__nav-item {
		position: relative;
		font-size: 18px;
		font-weight: 600;
	}

	.menu__nav-item:not(:last-child)::after {
		content: '';
		position: absolute;
		bottom: -20px;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #fff;
		opacity: 0.25;
	}

	.hero {
		height: auto;
	}

	.hero__inner {
		height: 720px;
		/* height: 650px; */
		/* background-position: center; */
		background-image: url(../img/hero-mob.webp);
		background-repeat: no-repeat;
	}

	.hero__content {
		padding: 75px 0 30px;
		justify-content: space-between;
	}

	.hero__heading {
		font-size: 30px;
		line-height: 1.2;
		max-width: 335px;
	}

	.hero_subtitle {
		font-size: 20px;
	}

	.hero__btn {
		margin-top: 20px;
		max-width: 100%;
		background-color: var(--primary);
		color: #fff;
		border: 0;
	}

	.hero__timer {
		width: 100%;
	}

	.hero__bottom {
		position: static;
		background-color: var(--black);
		padding: 20px 0;
	}

	.hero__benefits {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.hero__benefits-item {
		padding: 25px 20px;
	}

	.hero__benefits-item p {
		font-size: 16px;
	}

	.models {
		min-height: 0;
	}

	.models__bg {
		display: none;
	}

	.models__list {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.model-card__images {
		height: 252px;
	}

	.model-card__main-image {
		top: 90px;
		height: 236px;
	}

	.model-card__header {
		height: 38px;
	}

	.model-card__name {
		font-size: 20px;
		min-width: 160px;
	}

	.model-card__description {
		font-size: 12px;
	}

	.model-card__content {
		height: 400px;
		padding: 45px 15px 25px;
	}

	.model-card__terms {
		order: -1;
		gap: 6px;
	}

	.model-card__terms-item {
		font-size: 14px;
	}

	.model-card__prices {
		padding-top: 15px;
		border-top: 3px solid var(--primary);
		gap: 16px;
	}

	.model-card__old-price {
		font-size: 16px;
	}

	.model-card__prices-row {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}

	.model-card__prices-row .price-label {
		display: block;
		font-size: 16px;
	}

	.model-card__price-item {
		display: grid;
		grid-template-columns: 92px auto;
		align-items: center;
		gap: 22px;
	}

	.model-card__new-price {
		font-size: 20px;
	}

	.model-card__payment {
		font-size: 16px;
	}

	.filter {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.select2-container--default
		.select2-selection--single
		.select2-selection__rendered {
		font-size: 16px;
		padding: 0;
	}

	.select2-selection__arrow {
		width: 16px;
	}

	.equipments__titles {
		display: none;
	}

	.equipments__list {
		margin-top: 50px;
		gap: 0;
	}

	.equipment-card:nth-child(odd) {
		background: none;
	}

	.equipment-card {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding: 0;
	}

	.equipment-card__name {
		width: 100%;
		height: 40px;
		background-color: var(--black);
		color: #fff;
		font-size: 16px;
		padding: 0 15px;
		display: flex;
		align-items: center;
	}

	.equipment-card__specs {
		width: 100%;
		justify-content: space-between;
		padding: 15px 15px 0;
	}

	.equipment-card__specs-item {
		font-size: 16px;
	}

	.equipment-card__specs-item span {
		display: none;
	}

	.equipment-card__old-price {
		display: none;
	}

	.equipment-card__prices {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 15px 15px 0;
		font-size: 18px;
	}

	.equipment-card__btn {
		margin: 20px 15px;
		width: calc(100% - 30px);
	}

	.credit {
		height: 460px;
		background-image: url(../img/credit-mob.webp);
	}

	.credit__content {
		padding: 45px 0 15px;
	}

	.credit__text {
		gap: 78px;
	}

	.credit__heading {
		font-size: 24px;
	}

	.credit__list {
		font-size: 14px;
	}

	.credit__form {
		max-width: 100%;
	}

	.special__list {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.special-card {
		max-width: 100%;
	}

	.special-card__name {
		top: 15px;
		font-size: 20px;
	}

	.special-card__gallery {
		height: 308px;
	}

	.special-card__content {
		padding: 20px 15px;
		height: 254px;
	}

	.special-card__prices {
		grid-auto-flow: column;
		grid-template-rows: repeat(2, 20px);
		grid-template-columns: 92px auto;
		gap: 18px 22px;
	}

	.special-card__prices .price-label {
		font-size: 16px;
		text-transform: none;
		color: var(--primary);
	}

	.special-card__new-price {
		font-size: 20px;
	}

	.special-card__payment {
		font-size: 16px;
	}

	.map {
		position: static;
		height: 338px;
		width: 100%;
	}

	.contacts {
		padding: 26px 0 60px;
	}

	.contacts__heading {
		font-size: 24px;
	}

	.contacts__list {
		gap: 20px;
	}

	.contacts__btn {
		max-width: 100%;
	}

	.contacts__list-item-address span br {
		display: block;
	}
}

.filtered-hide,
.showmore-hide {
	display: none !important;
}

.js--show-more {
	margin: 20px auto;
	max-width: 200px;
	font-size: 16px;
	height: 40px;
}

/*!!!!!!!!!****!!!!!*** REVIEWS *!!!!!!!!!****!!!!!***/

.reviews {
	margin-top: 40px;
}

.reviews-wrapper {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.review-video {
	display: flex;
	flex: 1;
	max-width: 460px;
	max-height: 220px;
}

.review-text {
	background: #58b577;
	display: flex;
	flex-direction: column;
	flex: 3;
	padding: 25px;
	max-width: 1011px;
	width: 100%;
	flex-basis: 39%;
}

.review-text:nth-child(3) {
	background: #3e7e53;
}

.review-text:nth-child(5) {
	background: transparent;
	border: 1px solid #3e7e53;
}

.review-text:nth-child(5) .review-name {
	color: #2a3337;
}

.review-text:nth-child(5) .review-info {
	color: #2a3337;
}

.reviews-wrapper {
	display: flex;
}

.review-title {
	display: flex;
	gap: 10px;
}

.review-side-info {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-name {
	font-size: 24px;
	line-height: 29px;
}

.review-info {
	margin-top: 15px;
	font-size: 24px;
	line-height: 29px;
}

@media (max-width: 1480px) {
	.review-info {
		font-size: 19px;
		line-height: 24px;
	}
}

@media (max-width: 620px) {
	.reviews-wrapper {
		flex-direction: column;
	}

	.review-text {
		order: 1;
	}

	.review-video {
		order: 4;
		max-width: 100%;
		max-height: 220px;
	}
}

@media (max-width: 1140px) {
	.container {
		padding: 0 15px;
	}
}
