@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra-Light.woff2') format('woff2'),
		url('../fonts/Effra-Light.woff') format('woff');
	font-weight: 100;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Light.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Light.woff') format('woff');
	font-weight: 200;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Light.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra.woff2') format('woff2'),
		url('../fonts/Effra/Effra.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Medium.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Bold.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Bold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Bold.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Heavy.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Heavy.woff') format('woff');
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Effra';
	src: url('../fonts/Effra/Effra-Heavy.woff2') format('woff2'),
		url('../fonts/Effra/Effra-Heavy.woff') format('woff');
	font-weight: 900;
	font-style: normal;
}

:root {
	--primary: rgba(181, 127, 34, 1);
	--secondary: rgba(181, 127, 34, 0.7);
	--white: #fff;
	--black: #000;
	--title: rgba(33, 33, 33, 1);
	--text: rgba(0, 0, 0, 1);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	overflow-x: hidden;
}

body {
	font-family: "Barlow", sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--text);
	background: rgba(255, 255, 255, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin-top: 0;
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.btn {
	border-radius: 2px;
	width: 300px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 20px;
	padding: 15px;
	border: unset;
}

.btn.btn-small {
	width: 250px;
}

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

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus-visible {
	background-color: var(--primary) !important;
	border: unset !important;
}

.btn-secondary,
.btn-secondary:hover,
.btn-primary:focus-visible {
	color: var(--primary) !important;
	background-color: transparent !important;
	border: 1px solid var(--primary) !important;
}

.section-title {
	font-family: 'Effra', sans-serif;
	font-size: 52px;
	line-height: 1.2;
	font-weight: 700;
	color: var(--title);
}

.container {
	max-width: 100%;
}

strong {
	font-weight: 700;
}

.newsletter-section .container {
	background-image: url('../img/newsletter-bg.webp');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding: 36px 90px;
	border-radius: 12px;
	color: var(--white);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
}

.newsletter-section * {
	color: var(--white);
}

.newsletter-section .section-title {
	font-size: 42px;
}

.newsletter-section .tnp-field {
	margin: 0;
}

.newsletter-section .tnp-field-email {
	width: 100%;
}

.newsletter-section .tnp-subscription {
	margin: 0;
	max-width: 100%;
}

.newsletter-section form {
	display: flex;
	gap: 10px;
	width: -webkit-fill-available;
}

.newsletter-section .container label {
	display: none;
}

.newsletter-section .container input[type="email"] {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid var(--white);
	padding: 15px 20px;
	font-size: 16px;
	color: var(--white);
	outline: unset;
}

.newsletter-section .container input[type="email"]::placeholder {
	color: var(--white);
	opacity: 1;
}

.newsletter-section .container input[type="submit"] {
	width: 250px;
	height: 50px;
	background: var(--primary);
	padding: 15px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.cta-section {
	margin-bottom: 124px;
	min-height: 386px;
	display: flex;
  	align-items: stretch;
}

.cta-section .container {
	padding: 32px 70px;
	position: relative;
	display: flex;
  	align-items: center;
}

.cta-section .container::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 70%;
	height: 100%;
	background-image: url('../img/cta-bg-1.webp');
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	border-radius: 12px;
}

.cta-section .container::after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	width: 46%;
	height: 100%;
	background-image: url('../img/cta-bg-2.webp');
	background-repeat: no-repeat;
	background-size: 100% 100%;
	z-index: -1;
}

.cta-section .section-title {
	font-size: 42px;
}

.cta-section * {
	color: var(--white);
}

.cta-section .section-p {
	margin: 10px 0 32px;
}

.page-hero-section {
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	min-height: 350px;
	display: flex;
	align-items: center;
}

.page-hero-section::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) -77.63%, #FFFFFF 100%);
	z-index: 0;
}

.page-hero-section .container {
	position: relative;
	z-index: 1;
}

.page-hero-section .section-title {
	margin-bottom: 10px;
}

.pagination {
	margin-top: 80px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

.pagination .page-numbers {
	width: 40px;
	height: 40px;
	border: 1px solid var(--primary);
	color: var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 2px;
	font-size: 22px;
}

.pagination .page-numbers.current {
	background-color: var(--primary);
	color: white;
	font-weight: 700;
}

.pagination .prev,
.pagination .next {
	display: none;
}

@media (min-width: 768px) {
	.container {
		padding-inline: 32px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1572px;
	}
}

@media (max-width: 1400px) {
	.section-title {
		font-size: 40px;
	}

	.newsletter-section .container input[type="submit"] {
		width: 200px;
	}

	.cta-section .container::after {
		background-size: auto 100%;
	}
	.cta-section{
		min-height: 412px;
	}
}

@media (max-width: 1200px) {
	body {
		font-size: 20px;
	}

	.newsletter-section .container {
		flex-direction: column;
		gap: 32px;
		padding: 36px 48px;
		background-size: 102% 100%;
		background-position: center;
		border-radius: 24px;
	}
	.cta-section{
		min-height: 500px;
	}

}

@media (max-width: 992px) {
	body {
		font-size: 18px;
	}

	.btn {
		width: 280px;
		max-width: 100%;
	}

	.cta-section .container::after {
		width: 33%;
	}
	.cta-section{
		min-height: 450px;
	}
}

@media (max-width: 768px) {
	.page-hero-section {
		padding: 64px 0;
	}

	.newsletter-section .container {
		padding: 24px;
	}

	.newsletter-section .section-title {
		font-size: 32px;
	}

	.newsletter-section .container input[type="submit"] {
		max-width: 100%;
	}

	.cta-section .container::before {
		width: 100%;
	}

	.cta-section .container::after {
		display: none;
	}

	.cta-section .section-title {
		font-size: 36px;
	}

	.pagination {
		gap: 10px;
		margin-top: 64px;
	}

	.pagination .page-numbers {
		font-size: 18px;
		width: 36px;
		height: 36px;
	}
	.cta-section{
		min-height: 412px;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 32px;
		text-align: center;
	}

	.section-p {
		text-align: center;
	}


	.btn {
		padding: 10px;
		margin: 0 auto;
	}

	.newsletter-section .section-title {
		font-size: 26px;
	}

	.newsletter-section form {
		flex-direction: column;
		gap: 0;
	}

	.newsletter-section .container input[type="submit"] {
		width: 100%;
	}

	.cta-section .container {
		padding: 32px 24px;
	}

	.cta-section .section-title {
		font-size: 32px;
	}

}