*:focus {
	outline: none;
}

* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	outline: 0;
	-webkit-appearance: none;
	border-radius: 0;
	line-height: 0;
	font-weight: normal;
	border: 0;
	background: none;
	box-sizing: border-box;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("../fonts/RobotoSlab-Bold.woff2") format("woff2"), url("../fonts/RobotoSlab-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Slab";
    src: url("../fonts/RobotoSlab-Regular.woff2") format("woff2"), url("../fonts/RobotoSlab-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body, html {
	font-family: "Roboto", sans-serif;
	color: #040404;
}

body {
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

body::-webkit-scrollbar {
	width: 5px;
	background: #D4E3E3;
}
  
body::-webkit-scrollbar-thumb {
	background: #00A56D;
}

.header-logo, .header-language a, .footer-content a, .main-content__buttons a, .main-content__inner--content a, .popup-close, .popup-form__input p a, .popup-form__input--text, .popup-form__input--textbox, .popup-form__input--submit, .footer-links a{
    transition: all 0.3s ease;
}

.container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	width: 100%;
}

header {
	padding: 40px 0 24px 0;
}

.header-logo svg {
	height: 40px;
	width: auto;
}

.header-logo:hover {
	opacity: .75;
}

.header-content {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
}

.header-language {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header-language a {
	height: 32px;
	width: 48px;
	background-color: #D4E3E3;
	color: #00A56D;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 16px;
}

.header-language a:nth-child(1) {
	border-radius: 8px 0 0 8px;
}

.header-language a:nth-child(2) {
	border-radius: 0px 8px 8px 0;
}

.header-language a.header-language__active, .header-language a:hover {
	background-color: #00A56D;
	color: #fff;
}

.footer-padding {
	padding-top: 64px;
}

.footer-content {
	display: flex;
	gap: 16px 40px;
	border-top: 1px solid #B2C8D2;
	align-items: center;
	padding: 24px 0 16px 0;
	flex-wrap: wrap;
}

.footer-content a {
	font-size: 20px;
	line-height: 32px;
}

.footer-content__phone {
	color: #969696;
}

.footer-content__phone:hover {
	color: #00A56D;
}

.footer-content__email {
	color: #00A56D;
}

.footer-content__email:hover {
	opacity: .75;
}

.main-content__index {
	position: relative;
}

.main-contet__image {
	border-radius: 16px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	object-position: center bottom;
	object-fit: cover;
}

.main-inner__image {
	border-radius: 16px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	object-position: center left;
	object-fit: cover;
}

.main-content__index--wrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.main-content__index--wave img {
	width: 100%;
	height: auto;
	max-width: 460px;
}

.main-content__index--list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.main-content__index--text {
	display: flex;
	gap: 16px;
	padding: 32px;
	border-right: 1px solid rgba(255, 255, 255, .5);
	align-items: flex-start;
}

.main-content__index--text:last-child {
	border: none;
}

.main-content__index--text p {
	font-size: 24px;
	line-height: 36px;
	color: #fff;
    font-family: "Roboto Slab";
}

.main-content__index--text svg {
	width: 24px;
	height: auto;
	margin-top: 12px;
}

b, strong {
	font-weight: bold;
}

.main-content__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 20px;
}

.main-content__buttons a {
	border-radius: 8px;
	background-color: #D4E3E3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 14px;
	line-height: 21px;
	color: #040404;
	flex-direction: column;
	padding: 24px;
	text-align: center;
	border: 4px solid #D4E3E3;
}

.main-content__buttons a img {
	max-height: 48px;
	width: auto;
}

.main-content__buttons a:hover, .main-content__buttons a.main-content__buttons--active {
	background-color: transparent;
}

.main-content__buttons a.main-content__buttons--alt {
	background-color: #00A56D;
	border-color: #00A56D;
	color: #fff;
	font-size: 20px;
	line-height: 32px;
	flex-direction: row;
	gap: 8px;
	justify-content: center;
	text-align: left;
}

.main-content__buttons a.main-content__buttons--alt:hover {
	opacity: .9;
}

.main-content__inner {
	display: grid;
	grid-template-columns: 1.96fr 4fr;
	gap: 20px;
}

.main-content__inner--left {
	background: #00A56D;
	background: linear-gradient(90deg,rgba(0, 164, 108, 1) 0%, rgba(0, 69, 35, 1) 100%);
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 48px 32px;
	color: #fff;
	gap: 24px;
}

.main-content__inner--right {
	position: relative;
}

.hidden {
	display: none;
}

h1 {
	font-size: 32px;
	line-height: 48px;
    font-family: "Roboto Slab";
	font-weight: bold;
}

.main-content__inner--content p {
	font-size: 18px;
	line-height: 27px;
	margin-bottom: 24px;
}

.main-content__inner--content a {
	display: flex;
	background-color: #D4E3E3;
	width: 168px;
	align-items: center;
	justify-content: center;
	color: #00A56D;
	font-size: 14px;
	text-transform: uppercase;
	line-height: 21px;
	border-radius: 4px;
	font-weight: bold;
	gap: 8px;
}

.main-content__inner--content a span {
	border-left: 1px solid #00A56D;
	height: 32px;
}

.main-content__inner--content a svg {
	width: 16px;
	height: auto;
}

.main-content__inner--content a:hover {
	opacity: .9;
}

.popup {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 165, 109, .5);
	z-index: 1;
	display: none;
}

.popup-wrapper {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 20px;
}

.popup-content {
	padding: 48px 32px;
	background-color: #fff;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	max-width: 528px;
}

.popup-close:hover {
	opacity: .75;
}

.popup-form {
	display: flex;
	gap: 20px;
	flex-direction: column;
}

.popup-form p {
	font-size: 16px;
	line-height: 25px;
}

.popup-form__error {
	color: red;
	display: none;
}

.popup-form__positive {
	color: #00A56D;
	font-weight: bold;
	display: none;
}

.popup-form__heading {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}

.popup-form__heading p {
	font-size: 32px;
	line-height: 48px;
    font-family: "Roboto Slab";
	font-weight: bold;
	color: #00A56D;
}

.popup-form__input {
	display: flex;
	gap: 4px;
	flex-direction: column;
}

label {
	font-size: 14px;
	line-height: 21px;
}

.error {
	color: red;
}

.popup-form__input--error {
	border-color: red;
}

.popup-form__input--text {
	border: 3px solid #D4E3E3;
	height: 40px;
	line-height: 40px;
	padding: 0 8px;
	font-size: 16px;
    font-family: "Roboto";
	color: #040404;
	border-radius: 8px;
}

::placeholder {
	color: #969696;
}

.popup-form__input p {
	font-size: 14px;
	line-height: 21px;
}

.popup-form__input p a {
	color: #00A56D;
}

.popup-form__input p a:hover {
	opacity: .75;
}

.popup-form__input--textbox {
	border: 3px solid #D4E3E3;
	padding: 0 8px;
	font-size: 16px;
	line-height: 25px;
    font-family: "Roboto";
	color: #040404;
	border-radius: 8px;
	resize: none;
	height: 96px;
	padding-top: 4px;
}

.popup-form__input--text:focus, .popup-form__input--textbox:focus {
	border-color: #00A56D;
}

.popup-form__input--submit {
	width: 128px;
	height: 40px;
    font-family: "Roboto Slab";
	font-weight: bold;
	background-color: #00A56D;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 40px;
	border-radius: 4px;
	cursor: pointer;
}

.popup-form__input--submit:hover {
	opacity: .75;
}

.main-content__frame {
	margin-bottom: 20px;
}

.main-content__index--wrapper {
	aspect-ratio: 16/7;
}

.main-content__index--wrapper {
	height: 100%;
}

.main-content__inner {
	aspect-ratio: 16/7;
}

.footer-links {
	display: flex;
	gap: 8px 24px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}

.footer-links a {
	font-size: 12px;
	line-height: 15px;
	color: #969696;
}

.footer-links a:hover {
	color: #00A56D;
}

@media screen and (max-width: 1280px) {
	.main-content__index--text p {
		font-size: 20px;
		line-height: 32px;
	}
	.main-content__index--text svg {
		margin-top: 8px;
	}
	.main-content__buttons a {
		padding: 16px;
	}
	.main-content__buttons a.main-content__buttons--alt {
		font-size: 18px;
		line-height: 27px;
	}
	h1 {
		font-size: 24px;
		line-height: 36px;
	}
	.main-content__inner--content p {
		font-size: 16px;
		line-height: 25px;
	}
	.main-content__inner--left {
		padding: 32px 24px;
	}
}

@media screen and (max-width: 1024px) {
	header {
		padding: 32px 0 16px 0;
	}
	.footer-content {
		padding: 24px 0 16px 0;
	}
	.footer-links {
		margin-bottom: 32px;
	}
	.header-logo svg {
		height: 32px;
		width: auto;
	}
	.header-language a {
		font-size: 14px;
	}
	.wrapper {
		grid-template-rows: 80px 1fr 148px;
	}
	.footer-content a {
		font-size: 18px;
		line-height: 27px;
	}
	.footer-padding {
		padding-top: 48px;
	}
	.main-content__index--wave img {
		margin-left: -32px;
		max-width: 320px;
	}
	.main-content__index--text {
		padding: 24px;
	}
	.main-content__buttons {
		grid-template-columns: 1fr 1fr 1fr;
	}
	.main-content {
		grid-template-rows: 400px auto;
	}
	.main-content.main-content--inner {
		grid-template-rows: 1fr auto;
	}
	.main-content__inner {
		grid-template-columns: 1fr 1fr;
	}
	.popup-content {
		padding: 32px 20px;
	}
	.popup-form__heading p {
		font-size: 24px;
		line-height: 36px;
	}
	.main-content__index--wrapper {
		aspect-ratio: 16/9;
	}
}

@media screen and (max-width: 768px) {
	.main-content__index--wrapper {
		min-height: 380px;
		aspect-ratio: unset;
	}
	.main-content__inner {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.main-content__inner--left {
		order: 2;
	}
	.main-content__inner--right {
		min-height: 256px;
	}
	.main-inner__image {
		border-radius: 16px 16px 0 0;
	}
	.main-content__inner--left {
		border-radius: 0 0 16px 16px;
	}
	.main-content__index--list {
		grid-template-columns: 1fr;
		border: none;
		margin-top: 24px;
		gap: 16px;
	}
	.main-content__index--text {
		padding: 0 16px;
	}
	.main-content__index--text p {
		font-size: 18px;
		line-height: 27px;
	}
	.main-content__index--text svg {
		width: 16px;
	}
	.main-content__buttons {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.main-content__index--wave {
		max-width: 250px;
	}
	.main-content__buttons a {
		font-size: 12px;
		line-height: 19px;
	}
	.main-content__buttons a.main-content__buttons--alt {
		font-size: 14px;
		line-height: 21px;
	}
}