/* === Header === */

.header {
	/* position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000; */
	/* display: flex; */
	/* justify-content: space-between; */
	/* align-items: center; */
	color: var(--text-secondary);
	width: 100%;
	padding: 15px 25px;
	overflow-x: hidden;
	background-color: var(--primary-color);
}

.header-nav {
	display: flex;
	gap: 430px;
	align-items: center;
}

.header-nav-list {
	display: flex;
	gap: 30px;
}

.header-nav-list a {
	transition: all 0.3s ease;
	color: var(--text-secondary);
}

.header-nav-list a:hover {
	color: var(--primary-hover);
	text-decoration: underline;
}

.burger-btn {
	display: none;
}

.mobile-menu {
	display: none;
}

@media screen and (max-width: 1240px) {
	.header {
		padding: 10px 25px;
	}

	.header .secondary-btn,
	.header-nav {
		display: none;
	}

	.burger-btn {
		display: block;
		border: none;
		background-color: transparent;
		cursor: pointer;
		padding: 3px;
	}

	.burger-btn svg {
		width: 45px;
		height: 45px;
		color: #fff;
	}

	.burger-btn:active svg {
		color: var(--primary-hover);
	}

	.mobile-menu {
		display: flex;
		flex-direction: column;
		/* justify-content: space-between; */
		align-items: center;
		gap: 20px;
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100vh;
		background-color: var(--text-inverted);
		padding: 22px 33px;
		z-index: 1000;
		transition: all 0.3s ease;
	}

	.mobile-menu-active {
		right: 0;
	}

	.close-btn {
		display: block;
		border: none;
		background-color: transparent;
		cursor: pointer;
		padding: 3px;
		margin-left: auto;
	}

	.close-btn svg {
		width: 25px;
		height: 25px;
		fill: var(--secondary-color);
	}

	.close-btn:active svg {
		fill: var(--secondary-hover);
	}

	.mobile-nav-list {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
}

/* === Hero === */

.hero {
	background-color: var(--secondary-background);
	/* background-image: url('../images/hero-bg.png');
	background-size: cover;
	background-repeat: no-repeat; */
	padding: 100px 0 100px;
	height: 60vh;
}

.hero .container {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 50px;
	padding-right: 0;
	height: 100%;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 600px;
	width: 100%;
}

.hero-title {
	font-family: var(--second-family);
	font-weight: 700;
	font-size: 60px;
	line-height: 110%;
	letter-spacing: 0.01em;
	color: var(--text-inverted);
	margin-bottom: 24px;
}

.hero .descr {
	color: var(--text-inverted);
	max-width: 430px;
	margin-bottom: 40px;
}

.hero .primary-btn {
	margin-bottom: 75px;
}

.hero-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 32px;
}

.hero-list-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: 190px;
	text-align: center;
}

.hero-list-item h3 {
	font-family: var(--second-family);
	font-weight: 600;
	font-size: 44px;
	line-height: 127%;
	color: var(--primary-color);
}

.hero-list-item p {
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 175%;
	color: var(--text-inverted);
}

.hero-img {
	max-width: 700px;
	height: auto;
	width: 100%;
	object-fit: cover;
	border-radius: var(--border-radius-third);
}

@media screen and (max-width: 1240px) {
	.hero {
		height: auto;
	}

	.hero .container {
		padding-right: 15px;
	}

	.hero-title {
		font-size: 48px;
	}
}

/* === About Us === */

.about-us {
	padding: 140px 0 70px;
}

.our-history {
	padding: 70px 0 140px;
}

.our-history .container,
.about-us .container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	gap: 50px;
}

.wrapper {
	max-width: 620px;
	width: 100%;
	height: 100%;
	position: relative;
}

.wrapper-img {
	width: 100%;
	max-width: 400px;
	height: 100%;
	min-height: 450px;
	object-fit: cover;
	border-radius: var(--border-radius-third);
}

.wrapper-decoration {
	width: 180px;
	height: 180px;
	object-fit: contain;
	position: absolute;
	bottom: -50px;
	z-index: -1;
}

.wrapper-decoration.left {
	left: -40px;
}

.wrapper-decoration.right {
	right: -40px;
}

.our-history-content,
.about-us-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 600px;
}

.our-history-content .section-name,
.about-us-content .section-name {
	margin-bottom: 24px;
}

.our-history-content .title,
.about-us-content .title {
	margin-bottom: 16px;
}

.our-history-content .descr:not(:last-child),
.about-us-content .descr:not(:last-child) {
	margin-bottom: 10px;
}

.our-history-content .descr,
.about-us-content .descr {
	max-width: 600px;
}

.about-us-content .primary-btn {
	margin-top: 50px;
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.about-us-content .primary-btn:hover {
	background-color: var(--secondary-hover);
	color: var(--primary-color);
}

/* === Why Choose === */

.why-choose {
	padding: 70px 0;
}

.why-choose .container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px;
}

.why-choose-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 600px;
}

.why-choose .section-name {
	margin-bottom: 24px;
}

.why-choose .title {
	margin-bottom: 16px;
}

.why-choose .descr {
	margin-bottom: 40px;
}

.why-choose-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
	max-width: 450px;
}

.why-choose-item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.why-choose-item-wrap {
	display: flex;
	justify-content: center;
	align-items: center;

	max-width: 70px;
	width: 100%;
	height: 70px;
	background-color: var(--secondary-color);
	border-radius: 50%;
}

.why-choose-item-wrap img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.why-choose-item-content {
	width: 100%;
}

/* === Our Services === */

.our-services {
	padding: 70px 0;
	overflow: hidden;
}

.our-services-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 80px;
}

.our-services-content .section-name {
	margin-bottom: 24px;
}

.our-services-content .title {
	max-width: 795px;
	margin-bottom: 16px;
	text-align: center;
}

.our-services-content .descr {
	max-width: 865px;
	text-align: center;
}

.our-services-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}

.our-services-item {
	max-width: 300px;
	width: 100%;
	padding: 32px;
	background-color: #fff;
	border-radius: var(--border-radius-third);
	transition: all 0.3s ease;
}

.our-services-item:hover {
	box-shadow: 0 30px 50px -10px rgba(152, 151, 151, 0.37);
}

.our-services-item-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--secondary-background);
	margin-bottom: 22px;
}

.our-services-item-wrap img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.our-services-item .subtitle {
	margin-bottom: 12px;
}

.our-services-item p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 111%;
	letter-spacing: -0.01em;
	color: #555c68;
}

/* === Price === */

.price {
	padding: 140px 0;
}

.price-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 80px;
}

.price-content .section-name {
	margin-bottom: 24px;
}

.price-content .title {
	margin-bottom: 16px;
}

.price-content .descr {
	max-width: 900px;
	text-align: center;
}

.price-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.price-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 380px;
	width: 100%;
	padding: 25px 15px;
	background-color: #fff;
	border-radius: var(--border-radius-third);
	transition: all 0.3s ease;
}

.price-item-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100px;
	height: 100px;
	width: 100%;
	border-radius: 50%;
	margin-bottom: 25px;
	background-color: var(--secondary-color);
}

.price-item img {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.price-item .subtitle {
	margin-bottom: 16px;
	text-align: center;
}

.price-item p {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 18px;
	line-height: 111%;
	letter-spacing: -0.01em;
	color: #555c68;
	margin-bottom: 35px;
	text-align: center;
}

.price-item-price {
	font-size: 20px;
	margin-bottom: 25px;
}

/* === Our Blog === */

.our-blog {
	padding: 70px 0;
}

.our-blog .container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.our-blog-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	margin-bottom: 58px;
}

.our-blog-content .section-name {
	margin-bottom: 24px;
}

.our-blog-content .title {
	max-width: 500px;
	text-align: center;
}

.our-blog-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px;
	margin-bottom: 50px;
}

.our-blog-item {
	display: flex;
	flex-direction: column;
	align-items: start;
	max-width: 380px;
	width: 100%;
}

.our-blog-item img {
	height: 400px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 30px;
	border-radius: var(--border-radius-third);
}

.our-blog-item .subtitle {
	margin-bottom: 20px;
	font-size: 34px;
}

.our-blog-item .descr {
	margin-bottom: 16px;
}

.our-blog-item .link {
	margin-top: auto;
}

/* === Testimonial === */

.testimonial {
	padding: 70px 0 0;
	overflow: hidden;
}

.testimonial-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 50px;
}

.testimonial-content .section-name {
	margin-bottom: 24px;
}

.testimonial-content .title {
	text-align: center;
	margin-bottom: 16px;
}

.testimonial-content .descr {
	max-width: 800px;
	text-align: center;
}

.testimonial-list {
	padding: 40px 0 100px;
}

.testimonial-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	padding: 32px 60px;
	border-radius: var(--border-radius-third);
	transition: all 0.3s ease;
}

.testimonial-item.swiper-slide-active {
	box-shadow: 0 25px 32px 0 rgba(67, 67, 67, 0.14);
	transform: scale(1.1);
}

.testimonial-img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 16px;
}

.testimonial-name {
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: var(--text-secondary);
	margin-bottom: 4px;
}

.testimonial-position {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 12px;
	line-height: 150%;
	color: var(--text-primary);
	opacity: 0.8;
	margin-bottom: 4px;
}

.testimonial-stars {
	width: 80px;
	object-fit: contain;
	margin-bottom: 20px;
}

.testimonial-text {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.01em;
	text-align: center;
	color: var(--text-primary);
	opacity: 0.8;
}

.swiper-pagination-bullet {
	background: #d2d2d2;
	width: 16px;
	height: 16px;
	margin: 0 8px;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: #101c26;
	width: 20px;
	height: 20px;
}

/* === Contact === */

.contact {
	padding: 140px 0;
	scroll-margin-top: -100px;
	position: relative;
}

.contact .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 70px;
}

.contact-content {
	display: flex;
	flex-direction: column;
	align-items: start;
	max-width: 510px;
	width: 100%;
}

.contact-content .section-name {
	margin-bottom: 24px;
}

.contact-content .title {
	margin-bottom: 16px;
}

.contact-content .descr {
	margin-bottom: 24px;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.contact-list-item {
	display: flex;
	align-items: center;
	gap: 13px;
}

.contact-form {
	background-color: var(--secondary-color);
	padding: 60px 80px;
	max-width: 600px;
	width: 100%;
	border-radius: var(--border-radius-third);
}

@media screen and (max-width: 1240px) {
	.contact-form {
		padding: 30px 40px;
	}
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group {
	margin-bottom: 24px;
}

.form-group:nth-child(4) {
	margin-bottom: 60px;
}

.form-group label {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 14px;
	line-height: 171%;
	color: #d3d3d3;
	margin-bottom: 10px;
}

.form-group textarea,
.form-group input {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 150%;
	padding-bottom: 5px;
	color: #fff;
	border: none;
	background-color: transparent;
	outline: none;
	border-bottom: 1.5px solid #fff;
	transition: 0.3s all ease;
}

.form-group textarea:hover,
.form-group input:hover {
	border-bottom: 1.5px solid var(--primary-hover);
}

.form-group textarea:focus,
.form-group input:focus {
	border-bottom: 1.5px solid var(--primary-color);
}

.contact-map {
	width: 100%;
	height: 500px;
	border-radius: var(--border-radius-third);
}

/* === Footer === */

.footer {
	padding: 70px 0 20px;
	background: var(--secondary-background);
	color: var(--text-inverted);
	overflow: hidden;
}

.footer a {
	color: var(--text-inverted);
	opacity: 0.8;
}

.footer a:hover {
	text-decoration: underline;
}

.footer .container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 0 100px;
}

.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-contact,
.footer-menu ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-rights {
	width: 100%;
	margin-top: 30px;
	text-align: center;
}

@media screen and (max-width: 1240px) {
	.footer {
		padding: 60px 0 20px;
	}

	.footer .container {
		padding: 0 15px;
		justify-content: space-between;
		gap: 40px;
	}
}

/* === Cookie Popup === */

.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--background-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
	z-index: 1000;
	display: none;
}

.cookie-popup-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.cookie-popup a {
	text-decoration: underline;
}

.cookie-popup h2 {
	margin: 0 0 10px;
	font-size: 1.5rem;
}

.cookie-popup p {
	margin: 0 0 20px;
	font-size: 1rem;
}

.cookie-btn {
	background-color: var(--primary-color);
	color: #fff;
	border: none;
	padding: 10px 20px;
	cursor: pointer;
	border-radius: 5px;
	font-size: 1rem;
}

.cookie-btn:hover {
	background-color: var(--primary-hover);
}
