/* USER VARIABLES SECTION */

:root {
	--accent: #36d8b9;
	--text: #333;
	--regular-text: 16px;
	--lineheight: 1.65;
	--userfont: bilory-light-400, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
/*.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row > * { --bs-gutter-x: 1.25rem; }*/

/* FONTS LOAD SECTION */

@font-face {
	src: url("../fonts/roboto-regular-webfont.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("../fonts/roboto-italic-webfont.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 400;
	font-style: italic;
}

@font-face {
	src: url("../fonts/roboto-bold-webfont.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 700;
	font-style: normal;
}

@font-face {
	src: url("../fonts/roboto-bolditalic-webfont.woff2") format("woff2");
	font-family: "roboto-st";
	font-weight: 700;
	font-style: italic;
}

/* Gilroy fonts */
@font-face {
	src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
	font-family: "bilory-bold-400";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
	font-family: "bilory-bold-600";
	font-weight: 600;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
	font-family: "bilory-regular-400";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Gilroy-Light.woff2") format("woff2");
	font-family: "bilory-light-300";
	font-weight: 300;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Gilroy-Light.woff2") format("woff2");
	font-family: "bilory-light-400";
	font-weight: 400;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
	font-family: "bilory-medium-500";
	font-weight: 500;
	font-style: normal;
}

@font-face {
	src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
	font-family: "bilory-medium-700";
	font-weight: 700;
	font-style: normal;
}


/* GENERAL CSS SETTINGS */

::placeholder {
	color: #666;
}

::selection {
	background-color: var(--accent);
	color: #fff;
}

input,
textarea {
	outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	border-color: red;
}

input:required:valid,
textarea:required:valid {
	border-color: green;
}

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
}

body._lock {
	overflow: hidden;
}

/* USER STYLES */

p {
	padding: 0;
	margin: 0;
}

figure {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

ul,
ol,
li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
	overflow: hidden;
}

/* .page__images {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
} */

/* .page__image {
	position: relative;
	padding: 0px 0px 90% 0px;
	background: url("../images/loading.gif") center / 50px no-repeat;
}

.page__image img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
} */

.custom_input {
	outline: none;
	/* color: #565656; */
	color: #fff;
	min-width: inherit;
	width: 100%;
	max-height: 32px;
	font-size: 14px;
	line-height: 1.5;
	padding: 10px;
	/* border-bottom: 1px solid white; */
	border: 1px solid #36d8b9;
	background: transparent;
}

.custom_input:focus {
	outline: none;
}

.custom_input::-webkit-input-placeholder {
	color: #BFBFBF;
}

.custom_input::-moz-placeholder {
	color: #BFBFBF;
}

.custom_input::-ms-input-placeholder {
	color: #BFBFBF;
}

.custom_input::placeholder {
	color: #BFBFBF;
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile+label {
	font-size: 1.25em;
	font-weight: 700;
	color: #565656;
	display: inline-block;
	display: -ms-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
}

.inputfile+label {
	cursor: pointer;
	/* "hand" cursor */
}

.default_btn {
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
	line-height: 20px;
	padding: 17px 20px 10px 20px;
	display: inline-block;
	color: #fff;
	border: 2px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	text-align: center;
	background: #ffae00;
	max-width: 285px;
	box-shadow: 0 5px 0 #c18b1c;
}

.default_btn:hover {
	background: #fff;
	color: #222b49;
	font-weight: bold;
	border: 2px solid #222b49;
	box-shadow: 0 5px 0 #222b49;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.blueHover_btn:hover {
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.hardBlueHover_btn:hover {
	background: #083356;
}

.whiteHover_btn:hover {
	background: white;
	color: #1e1d1d;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

@media (max-width: 767px) {
	.default_btn {
		font-size: 15px;
		/*line-height: 15px;*/
		/*padding: 10px 44px;*/
	}
}

.h2-custom {
	font-size: 20px;
	font-weight: 600;
	font-style: normal;
	margin-top: 0;
	margin-bottom: 0;
	text-transform: uppercase;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.h2-custom span {
	font-size: 32px;
	color: #154E55;
	text-transform: uppercase;
	font-weight: bold;
}

.h3-custom {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	margin-top: 0;
	padding-bottom: 20px;
	position: relative;
	margin-bottom: 0;
}

.h3-custom::after {
	content: "";
	display: block;
	width: 40px;
	height: 4px;
	background: #59a896;
	position: absolute;
	bottom: 0;
}

.h3-custom span {
	font-size: 14px;
	text-transform: none;
}

@media (max-width: 767px) {
	.h2-custom {
		font-size: 24px;
		line-height: 1.3;
		text-align: center;
	}

	.h3-custom {
		font-size: 12px;
		line-height: 16px;
		padding-bottom: 18px;
		margin-bottom: 20px;
		text-align: center;
	}

	.h3-custom::after {
		width: 20px;
		height: 2px;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
}

@media (max-width: 520px) {
	.h2-custom {
		font-size: 18px;
	}

	.h2-custom span {
		font-size: 26px;
	}
}

.visually-hidden {
	display: none;
}

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

ul {
	margin: 0;
	padding: 0;
}

li {
	margin: 0;
	padding: 0;
}

.container {
	padding-left: 2.5%;
	padding-right: 2.5%;
}

/* .form_container {
	padding-left: 2.5%;
	padding-right: 2.5%;
	} */

@media (min-width: 768px) {
	.container {
		padding: 0;
		padding-left: 2.5%;
		padding-right: 2.5%;
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}

	/* .form_container {
		padding: 0;
		padding-left: 2.5%;
		padding-right: 2.5%;
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
		} */
}

@media (min-width: 1200px) {
	.container {
		padding: 0;
		padding-left: 2.5%;
		padding-right: 2.5%;
		max-width: 1380px;
		margin-left: auto;
		margin-right: auto;
	}

	/* .form_container {
		padding: 0;
		padding-left: 2.5%;
		padding-right: 2.5%;
		max-width: 1380px;
		margin-left: auto;
		margin-right: auto;
		} */
}

/* -------------------- */
/* Header Start */
/* ------------------ */

.top_header_cont__wrap {
	min-height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top_header_cont {
	position: fixed;
	width: 100%;
	z-index: 60;
}

.top_header_cont .header_logo {
	z-index: 60;
}

.top_header_cont .header_social {
	z-index: 60;
	display: flex;
	color: #fff;
	margin-right: 60px;
}

.top_header_cont .header_social .header_social__phone {
	padding: 0 20px;
}

header .sticky {
	position: fixed;
	min-width: 100%;
	z-index: 60;
	background-color: rgb(0, 0, 0, 0.9);
}

.header_social__btn {
	display: none;
}

.header_social__btn a {
	font-family: "bilory-bold-600", serif;
	font-size: 18px;
	padding: 10px 40px;
	color: #fff;
	background-color: #36d8b9;
}

.header_social__btn a:hover {
	color: #000;
	background-color: #fff;
	transition: all .3s;
}

.header_social .book__show {
	display: block;
}

.header_social .book__menu_open_show {
	display: none;
}

.header_mobile__img {
	display: none;
}

.top_header_cont__white {
	background-color: #fff !important;
}

.top_header_cont__white .header_social {
	color: #000;
}

.top_header_cont__white .header_social a {
	color: #000;
}

.header_social__phone a {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
}

.header_social__phone a i {
	padding-right: 10px;
	font-size: 18px;
}

.header_social__lang {
	font-size: 18px;
	font-weight: 600;
	/* color: #fff; */
}

.header_social__lang i {
	padding-right: 6px;
	font-weight: 600;
}

.button_container {
	position: fixed;
	top: 28px;
	right: 2%;
	height: 27px;
	width: 35px;
	cursor: pointer;
	z-index: 100;
	transition: opacity 0.25s ease;
}

.button_container:hover {
	opacity: 0.7;
}

.button_container.active .top {
	transform: translateY(10px) translateX(0) rotate(45deg);
	background: #000;
}

.button_container.active .middle {
	opacity: 0;
	background: #fff;
}

.button_container.active .bottom {
	transform: translateY(-10px) translateX(0) rotate(-45deg);
	background: #000;
}

.button_container span {
	background: #fff;
	border: none;
	height: 3px;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0;
	transition: all 0.35s ease;
	cursor: pointer;
}

.button_container span:nth-of-type(2) {
	top: 10px;
	width: 25px;
}

.button_container span:nth-of-type(3) {
	top: 20px;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s, width 0.35s;
	z-index: 50;
	overflow-y: auto;
	overflow-x: hidden;
}

.overlay:before {
	content: "";
	background: #fff;
	left: -55%;
	top: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	transition: left 0.35s ease;
}

.overlay:after {
	content: "";
	background: #fff;
	right: -55%;
	top: 0;
	width: 50%;
	height: 100%;
	position: absolute;
	transition: all 0.35s ease;
}

.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
	background-color: #fff;
}

.overlay.open:before {
	left: 0;
}

.overlay.open:after {
	right: 0;
}

.overlay.open li {
	-webkit-animation: fadeInRight 0.5s ease forwards;
	animation: fadeInRight 0.5s ease forwards;
	-webkit-animation-delay: 0.35s;
	animation-delay: 0.35s;
}

/* .overlay.open li:nth-of-type(2) {
		-webkit-animation-delay: 0.45s;
						animation-delay: 0.45s;
	}
	.overlay.open li:nth-of-type(3) {
		-webkit-animation-delay: 0.55s;
						animation-delay: 0.55s;
	}
	.overlay.open li:nth-of-type(4) {
		-webkit-animation-delay: 0.65s;
						animation-delay: 0.65s;
	} */
.overlay nav {
	position: relative;
	height: 70%;
	top: 50%;
	transform: translateY(-50%);
	font-size: 19px;
	font-family: "bilory-light-400", sans-serif;
	font-weight: 700;
	color: #000;
	text-align: center;
	z-index: 100;
}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	/* display: inline-block; */
	position: relative;
	height: 100%;
	width: 100%;
	letter-spacing: 1px;
	display: grid;
	column-gap: 10px;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(6, 1fr);
	grid-template-areas:
		"s1 s1 s5 s5"
		"s2 s2 s6 s6"
		"s3 s3 s3 s3"
		"s10 s10 s10 s10"
		"s4 s4 s4 s4"
		".. .. .. .."
		".. .. .. .."
		"s7 s8 s9 ..";
	/* grid-template-columns: 1fr 1fr 1fr; */
	/* grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr; */
}

.overlay ul li:nth-child(1) {
	grid-area: s1;
}

.overlay ul li:nth-child(2) {
	grid-area: s2;
}

.overlay ul li:nth-child(3) {
	grid-area: s3;
}

.overlay ul li:nth-child(4) {
	grid-area: s4;
}

.overlay ul li:nth-child(5) {
	grid-area: s5;
}

.overlay ul li:nth-child(6) {
	grid-area: s6;
}

.overlay ul li:nth-child(7) {
	grid-area: s7;
	margin-bottom: 0;
}

.overlay ul li:nth-child(8) {
	grid-area: s8;
	margin-bottom: 0;
}

.overlay ul li:nth-child(9) {
	grid-area: s9;
	margin-bottom: 0;
}

.overlay ul li:nth-child(10) {
	grid-area: s10;
}

.overlay ul li {
	font-size: 19px;
	text-transform: uppercase;
	display: block;
	/* height: 25%; */
	/* height: calc(100% / 4); */
	/* min-height: 50px; */
	position: relative;
	opacity: 0;
	margin-bottom: 18px;
	display: flex;
	align-items: flex-start;
}

.overlay ul li a {
	display: block;
	position: relative;
	color: #000;
	text-decoration: none;
	text-align: left;
	overflow: hidden;
	max-width: 250px;
}

.overlay ul li a:hover {
	color: #36d8b9;
	transition: all .3s;
}

.overlay ul li a span {
	font-size: 15px;
	font-weight: 350;
	text-transform: initial;
	color: #9b9b9b;
	display: block;
}

/* .overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
		width: 100%;
	}
	.overlay ul li a:after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0%;
		transform: translateX(-50%);
		height: 3px;
		background: #fff;
		transition: 0.35s;
	} */

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}

	100% {
		opacity: 1;
		left: 0;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}

	100% {
		opacity: 1;
		left: 0;
	}
}

.amenamar_menu_icon1 {
	background-image: url('../images/header/menu/bed.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

.amenamar_menu_icon2 {
	background-image: url('../images/header/menu/breakfast-2.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

.amenamar_menu_icon3 {
	background-image: url('../images/header/menu/beach-2.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

.amenamar_menu_icon10 {
	background-image: url('../images/header/menu/fork-1.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

.amenamar_menu_icon4 {
	background-image: url('../images/header/menu/shop-2.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

.amenamar_menu_icon5 {
	background-image: url('../images/header/menu/explore.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

.amenamar_menu_icon6 {
	background-image: url('../images/header/menu/photo-1.png');
	background-repeat: no-repeat;
	background-position: 0 5px;
	padding-left: 80px;
}

/* .overlay ul li.amenamar_menu_item_fixed{
		display: inline-block;
		margin-bottom: 0;
		position: absolute;
		left: 0;
		bottom: 0;
	}

	.overlay ul li.amenamar_menu_item_fixed:nth-child(7) a{
		left: 0;
	}

	.overlay ul li.amenamar_menu_item_fixed:nth-child(8) a{
		left: 300px;
	}

	.overlay ul li.amenamar_menu_item_fixed:nth-child(9) a{
		left: 500px;
	} */

/* .overlay ul li.amenamar_menu_item_fixed1 {
	position: absolute;
	bottom: 0;
	margin-bottom: 0;
}

.overlay ul li.amenamar_menu_item_fixed2 {
	position: absolute;
	bottom: 0;
	margin-left: 190px;
	margin-bottom: 0;
}

.overlay ul li.amenamar_menu_item_fixed3 {
	position: absolute;
	bottom: 0;
	margin-left: 350px;
	margin-bottom: 0;
} */

.amenamar_menu_item_fixed1 a {
	font-size: 18px;
	text-transform: none;
}

.amenamar_menu_item_fixed2 a {
	font-size: 18px;
	text-transform: none;
}

.amenamar_menu_item_fixed3 a {
	font-size: 18px;
	text-transform: none;
}

.mnu_container {
	/* height: 100%; */
	height: calc(100vh - 200px);
}

/* ------------------ */
/* Header End */
/* ------------------ */


/* ------------------ */
/* Main Screen Start */
/* ------------------ */

.main_screen {
	position: relative;
}

.main_screen__room .slider img {
	object-fit: cover;
}

.main_screen__room_slider {}

.main_screen__room_slider .main_screen_overlay {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 120px;
	z-index: 1;
	color: #fff;
	background-color: rgba(45, 45, 45, 0.6);
	width: inherit;
	height: auto;
	/* padding: 30px 0 0px 55px; */
	/* min-width: 490px;
	min-height: 545px; */
}

.main_screen__room_slider .main_screen_overlay .main_screen_overlay__cont {
	/* margin-left: 55px;
	margin-top: 30px; */
	margin: 30px 15px 30px 55px;
	padding: 0;
}

.room_slider__picture_cont {
	justify-content: center;
}

.room_slider__picture_cont img {
	width: 360px;
}

.main_screen__room .main_screen_overlay_title {
	font-family: "bilory-medium-400", sans-serif;
	font-size: 50px;
	line-height: 1;
	text-transform: uppercase;
	margin-bottom: 60px;
}

.main_screen__room_slider .main_screen_overlay_title {
	color: #fff;
	font-family: "bilory-medium-700", sans-serif;
	font-size: 30px;
	line-height: 1.2;
	max-width: 430px;
	margin-bottom: 60px;
}

.room_slider__value {
	display: flex;
	align-items: center;
	font-size: 20px;
	margin-bottom: 20px;
}

.peoples_cont__item {
	display: flex;
	align-items: center;
	margin-right: 20px;
}

.room_slider__other_cont img {
	margin-right: 20px;
}

.main_screen__room .main_screen_overlay__cont .main_screen_overlay_location {
	line-height: 1;
	margin-bottom: 10px;
	max-width: 300px;
}

.main_screen__room .main_screen_overlay__cont .main_screen_overlay_location-breakfast {
	max-width: 330px;
}

.main_screen_overlay_descr-breakfast {
	opacity: 0.5;
}

.main_screen_overlay_descr-breakfast a {
	color: #36D8B9;
	opacity: 1;
}

.main_screen_overlay_descr-breakfast a:hover {
	color: #fff;
	transition: all .3s;
}

.main_screen__room-nosmoke {
	display: flex;
	align-items: center;
}

.main_screen__room-nosmoke img {
	margin-right: 20px;
}

.main_screen__room-nosmoke p {
	font-size: 17px;
	font-weight: 600;
	max-width: 220px;
}

.main_screen_overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(0, 0, 0, .3);
	/* max-width: 450px; */
	height: 100vh;
	width: 480px;
}

.main_screen_overlay__cont {
	padding-top: 160px;
	padding-bottom: 50px;
	margin-left: 90px;
}

.main_screen__breakfast .main_screen_overlay__cont {
	padding-top: 200px;
}

.main_screen_overlay__cont p {
	color: #fff;
}

.main_screen_overlay__cont .main_screen_overlay__image {
	margin-top: 10px;
	margin-bottom: 30px;
}

.main_screen_overlay__cont .main_screen_overlay_subtitle {
	font-family: "bilory-bold-600", sans-serif;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
}

.main_screen_overlay__cont .main_screen_overlay_location {
	font-family: "bilory-regular-400", sans-serif;
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 8px;
}

.main_screen_overlay__cont .main_screen_overlay_date {
	font-family: "bilory-regular-400", sans-serif;
	font-size: 22px;
	font-weight: 400;
}

.slider {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.slick-slide {
	text-align: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 100vh;
}

/* SLICK: ARROWS */
.slick-custom-arrow {
	position: absolute;
	transform: translateY(-50%);
	z-index: 100;
	padding: 20px 16px;
	background-color: #fff;
	color: #000;
}

.slick-custom-arrow:hover {
	cursor: pointer;
	background-color: #000;
	color: #fff;
}

.slick-custom-arrow-right {
	right: 0;
	top: 50%;
}

.slick-custom-arrow-left {
	left: 0;
	top: 50%;
}

.slick-slide.loaded {
	opacity: 1;
}

/* SLICK: DOTS */
.slick-dots {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 30px;
	/* left: 50%; */
	right: 0;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
}

.slick-dots .slick-active button {
	/* border: 0; */
	height: 18px;
	width: 18px;
	background-color: #00d9b9;
}

.slick-dots li {
	display: flex;
	align-items: center;
	margin: 0 4px;
	padding: 0;
	height: 20px;
	width: 20px;
}

.slick-dots li button {
	background-color: rgba(255, 255, 255, 0);
	border: 1px solid #fff;
	border-radius: 50%;
	opacity: 1;
	display: block;
	height: 18px;
	width: 18px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
}

.slick-slide img {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

.covid__banner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: -42px;
	top: calc(50% - 75px);
	z-index: 2;
	background: #36d8b9;
	color: #fff;
	transform: rotate(-90deg);
}

.covid__banner-hidden {
	display: none;
}

.covid__banner a {
	font-size: 22px;
	color: #fff;
	font-weight: 700;
	font-family: "bilory-bold-600", sans-serif;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 15px 30px;
}

.covid__banner a span:nth-child(1) {
	border-bottom: 2px solid #fff;
}

.main_screen__scroll-btn {
	margin-top: 30px;
	position: absolute;
	bottom: 15px;
	z-index: 2;
	margin-left: 100px;
}

.main_screen__scroll-btn a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-size: 22px;
}

.main_screen__scroll-btn a i {
	margin-right: 15px;
	font-size: 45px;
}

/* ------------------ */
/* Main Screen End */
/* ------------------ */

/* Section Requipments Start */

.our_partners {
	padding-top: 56px;
	padding-bottom: 56px;
	background-color: #fff;
}

.our_partners .our_partners__list {
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.our_partners .our_partners__list .our_partners__img {
	border: 1px solid #00D9B9;
	background: #fff;
	cursor: pointer;
	width: 65px;
	height: 65px;
	margin: 0 auto;
	border-radius: 50%;
	padding: 0;
	position: relative;
	top: 0;
	transition: top ease 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our_partners .our_partners__list .our_partners__img:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	top: -10px;
}


.text-tooltip {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: opacity 1s ease;
	bottom: -45px;
	line-height: 1;
	border-radius: 2px;
	font-size: 14px;
	text-align: center;
	color: #292929;
	box-shadow: 0px 0px 12px rgb(2 2 111 / 40%);
	width: 160px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our_partners .our_partners__list .our_partners__img:hover>.text-tooltip {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}



.our_partners .our_partners__list .our_partners__img img {
	cursor: pointer;
}

.our_partners .our_partners__list .our_partners__img .our_partners__white {
	background: #fff;
	/* min-height: 52px; */
}

.our_partners .our_partners__list .our_partners__img .our_partners__red {
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	text-align: center;
	opacity: 0;
	/* min-height: 52px; */
}

.our_partners .our_partners__list .our_partners__img .partners_first {
	/* margin-left: 10px; */
	margin-left: 0;
}

.our_partners .our_partners__list .our_partners__img:hover>.our_partners__white {
	opacity: 0;
}

.our_partners .our_partners__list .our_partners__img:hover {
	background: #00D9B9;
	-webkit-box-shadow: 0px 0px 15.2px 0.8px rgba(72, 72, 72, 0.45);
	box-shadow: 0px 0px 15.2px 0.8px rgba(72, 72, 72, 0.45);
}

.our_partners .our_partners__list .our_partners__img:hover>.our_partners__red {
	opacity: 1;
	cursor: pointer;
	max-width: 160px;
}

@media (max-width: 1200px) {
	.our_partners {
		padding-bottom: 50px;
	}

	.our_partners .our_partners__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}

	.our_partners .our_partners__list .our_partners__img {
		margin-top: 10px;
	}
}

@media (max-width: 992px) {
	.our_partners .our_partners__list .our_partners__img {
		background: #00D9B9;
		-webkit-box-shadow: 0px 0px 15.2px 0.8px rgb(72 72 72 / 45%);
		box-shadow: 0px 0px 15.2px 0.8px rgb(72 72 72 / 45%);
	}

	.our_partners .our_partners__list .our_partners__img>.our_partners__white {
		opacity: 0;
	}

	.our_partners .our_partners__list .our_partners__img>.our_partners__red {
		opacity: 1;
		cursor: pointer;
	}

	.our_partners .our_partners__list .our_partners__img>.text-tooltip {
		visibility: visible;
		opacity: 1;
		transition: opacity 0.5s ease-in-out;
	}

	.our_partners .our_partners__list .our_partners__img {
		width: 55px;
		height: 55px;
	}

	.our_partners .our_partners__list .our_partners__img img {
		max-width: 30px;
	}

	.text-tooltip {
		font-size: 12px;
		width: 110px;
		box-shadow: none;
		align-items: start;
	}

	.our_partners {
		padding-bottom: 80px;
	}
}

@media (max-width: 768px) {
	.text-tooltip {
		font-size: 12px;
		width: 80px;
	}
}

@media (max-width: 520px) {
	.our_partners .our_partners__list {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-row-gap: 45px;
	}
}

/* Section Requipments End */


/* ----------------------- */
/* Section Services Start */

.breakfast__services .services_item__info {
	width: auto;
}

.gallery__services .services_item__info {
	width: 370px;
}

.services .services__items {}

figure {}

.thumbnail {
	position: relative;
	height: 390px;
	/* margin-bottom: 10px; */
	overflow: hidden;
}

.thumbnail__beaches {
	position: relative;
}

.thumbnail__beaches .services_item__cont {
	position: absolute;
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 30px;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	column-gap: 30px;
	margin-left: 90px;
}

.figure__cont_overlay {
	background-color: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.thumbnail>.thumbnail_main_bg {
	width: 100%;
	height: 390px;
	transition: all 1.5s ease;
	object-fit: cover;
}

.tmumbnail_height_pr{
	height: 500px;
}

.tmumbnail_height_pr>.thumbnail_main_bg{
	height: 500px;
}

.thumbnail .services_item__cont {
	position: absolute;
	/* background: rgba(1, 1, 1, 0.8); */
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
	transition: all 0.3s ease;
	text-align: center;
	font-size: 30px;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	column-gap: 30px;
	margin-left: 90px;
}

.thumbnail:hover>.thumbnail_main_bg {
	transform: scale(1.3);
}

.services_item__cont .services_item__cont-img {
	background-color: #00D9B9;
	padding: 7px 12px 15px 12px;
	border-radius: 50%;
	opacity: 0.8;
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-top: 18px;
}

.services_item__info {
	text-align: left;
	width: 370px;
}

.serv__title {
	padding-bottom: 16px;
	position: relative;
	max-width: fit-content;
	min-width: 140px;
}

.serv_subtitle {
	position: relative;
}

.services_item__cont img {
	width: 30px;
	height: 30px;
}

.serv__title:before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	bottom: 28px;
	left: -4px;
	width: 111%;
	height: 23%;
	background-color: rgba(0, 0, 0, .6);
}

.serv_subtitle:before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	top: 3px;
	left: -4px;
	width: 102%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}

.services_item__cont .services_item__info-title {
	font-family: "bilory-medium-500", sans-serif;
	font-size: 35px;
	text-transform: uppercase;
}

.services_item__cont .services_item__info-title:after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	background-image: url('../images/homepage_sections/arrow-right-icon.png');
	top: 45%;
	right: -22px;
	width: 14px;
	height: 24px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.breakfast__services .services_item__cont .services_item__info-title:after {
	content: none;
}

.thumbnail__beaches .services_item__cont .services_item__info-title:after {
	content: none;
}

.services_item__cont .services_item__info-descr {
	font-size: 22px;
	font-weight: 300;
	max-width: 720px;
}

.serv_subtitle ul {
	margin-left: 30px;
}

.serv_subtitle ul li {
	list-style-type: disc;
}

/* ----------------------- */
/* Section Services End */


/* ----------------------- */
/* Section Reviews Start */

.reviews {
	background-color: #fff;
	text-align: center;
	padding-top: 60px;
	padding-bottom: 120px;
}

.reviews_title {
	font-family: "bilory-medium-700", sans-serif;
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.reviews_container {}

.reviews_item {}

.reviews__stars {
	max-width: 600px;
	margin: 0 auto;
	border-bottom: 1px solid #494949;
}

.reviews__stars_cont {
	max-width: 344px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.reviews__stars img {
	margin-right: 35px;
}

.reviews__stars img:last-child {
	margin-right: 0;
}

.reviews__name {
	font-family: "bilory-bold-600", sans-serif;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 35px;
	color: #636363;
}

.reviews__descr {
	font-family: "bilory-light-400", sans-serif;
	font-size: 19px;
	color: #292929;
	max-width: 890px;
	margin: 0 auto;
}

.reviews__stars img {
	height: auto;
	width: inherit;
	display: inline-block;
}

.reviews .slick-slide {
	min-height: inherit;
}

.reviews .slick-prev,
.reviews .slick-next {
	position: absolute;
	display: block;
	height: 60px;
	width: 30px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 80%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
}

.reviews .slick-next:before {
	content: "";
	width: 30px;
	height: 60px;
	display: block;
	background: url('../images/reviews/slider-prev-icon.png') center no-repeat;
	/* -webkit-transform: rotate(180deg);
	transform: rotate(180deg); */
}

.reviews .slick-prev:before {
	content: "";
	width: 30px;
	height: 60px;
	display: block;
	background: url('../images/reviews/slider-next-icon.png') center no-repeat;
}

.reviews .slick-prev {
	/* right: 100px; */
	right: 25px;
	z-index: 1;
}

.reviews .slick-next {
	/* left: 100px; */
	left: 25px;
	z-index: 1;
}

/* ----------------------- */
/* Section Reviews End */

/* ----------------------- */
/* Section Map Start */

.map_section iframe {
	width: 100%;
	height: 450px;
}

.map_section .page__map {
	height: 450px;
}

.page__map {
	/* padding: 0px 0px 50% 0px; */
	position: relative;
	background: url("../images/loading.gif") center / 50px no-repeat;
}

.page__map iframe {
	position: absolute;
	width: 100%;
	/* height: 100%; */
	top: 0;
	left: 0;
}

/* ----------------------- */
/* Section Map End */


._loading-icon {
	background: url("../images/loading.gif") center / 50px no-repeat;
	height: 50px;
}


/* ----------------------- */
/* Section Footer Start */

footer {
	background-color: #333333;
	color: #fff;
}

.footer_item__offers-btn a {
	font-family: "bilory-bold-600", serif;
	font-size: 18px;
	padding: 10px 40px;
	color: #fff;
	background-color: #36d8b9;
}

.footer_cont {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 30px;
}

.footer_item .footer_item__title {
	font-family: "bilory-bold-600", serif;
	font-size: 22px;
	padding: 32px 0 22px 0;
}

.footer_item_descr__cont .footer_item_descr__title {
	font-family: "bilory-bold-600", serif;
	font-size: 18px;
}

.footer_item_descr__cont .footer_item_descr__text {
	font-family: "bilory-light-400", sans-serif;
}

.footer_item_descr__cont .footer__phone a {
	font-size: 18px;
	color: #fff;
}

.footer_item_descr__cont .footer__phone a i {
	margin-right: 10px;
}

.footer_item_descr__cont .footer__mail a {
	font-size: 18px;
	color: #fff;
	text-decoration: underline;
}

.footer_item_descr__cont .footer__mail a i {
	margin-right: 10px;
}

.footer__social {
	padding-top: 20px;
}

.footer__social a {
	color: #fff;
}

.footer__social a:hover {
	color: #36d8b9;
	transition: all .3s;
}

.footer__social a i {
	font-size: 34px;
	margin-right: 16px;
}

.footer_item__reception {
	padding-top: 90px;
}

.footer_item__reception .footer_item__reception-title {
	font-family: "bilory-bold-600", serif;
	font-size: 18px;
}

.footer_item__reception .footer_item__reception-title i {
	margin-right: 10px;
}

.footer_item__reception .footer_item__reception-time {
	font-family: "bilory-light-400", sans-serif;
	font-size: 16px;
	display: inline-block;
	padding-left: 30px;
}

.footer_item__reception .footer_item__reception-faq {
	display: block;
	padding-top: 30px;
}

.footer_item__reception .footer_item__reception-faq a {
	text-decoration: underline;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}

.footer_item__reception .footer_item__reception-faq a i {
	padding-right: 10px;
}

.footer_item__offers {}

.footer_item__offers .footer_item__reception-title {}

.footer_item__offers .footer_item__reception-title a {
	font-weight: bold;
	color: #fff;
	text-decoration: underline;
	display: flex;
	align-items: center;
}

.footer_item__offers .footer_item__reception-title a:hover {
	color: #36d8b9;
	transition: all .3s;
}

.footer_item__offers .footer_item__reception-title a img {
	padding-right: 10px;
}

.footer_item__offers .footer_item__offers-btn {
	margin-top: 50px;
}

.footer_item__offers .footer_item__offers-btn a {}

/* ----------------------- */
/* Section Footer End */



/* ----------------------- */
/* Section Bottom Footer Start */

.bottom_footer_line {
	background: #555555;
	color: #838383;
}

.bottom_footer_line .bottom_footer_line__items {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 45px;
}

.bottom_footer_line .bottom_footer_line__items a {
	color: #fff;
	font-family: "bilory-medium-500", sans-serif;
	font-size: 14px;
	margin-right: 35px;
	letter-spacing: 2px;
}

.bottom_footer_line .bottom_footer_line__items a:hover {
	color: #838383;
	transition: all .3s;
}

.bottom_footer_line__top {
	position: absolute;
	height: 45px;
	display: flex;
	align-items: center;
}

.bottom_footer_line__top a {
	color: #e2e2e2;
	font-size: 20px;
	display: flex;
	align-items: center;
	font-weight: bold;
}

.bottom_footer_line__top a:hover {
	color: #36d8b9;
	transition: all .3s;
}

.bottom_footer_line__top a:hover i {
	color: #36d8b9;
	transition: all .3s;
}

.bottom_footer_line__top a i {
	color: #e2e2e2;
	margin-right: 30px;
	font-size: 28px;
}

/* ----------------------- */
/* Section Bottom Footer End */


/* ----------------------- */
/* ----------------------- */
/* Page Rooms And Suites */
/* ----------------------- */
/* ----------------------- */

.rooms_list__anchor {
	background-color: #fff;
}

.rooms_list__anchor-cont {
	max-width: 1080px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.rooms_list__item {
	display: flex;
}

.rooms_list__item .rooms_list__title {
	font-family: "bilory-bold-600", serif;
	font-size: 20px;
	color: #292929;
	line-height: 2;
	margin-right: 20px;
	width: 140px;
}

.rooms_list__item .rooms_list__descr {
	max-width: 920px;
}

.rooms_list__item .rooms_list__descr a {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 14px;
	padding: 4px 5px;
	color: #545454;
	background-color: #f0f0f0;
	font-family: "bilory-regular-400", sans-serif;
	font-size: 16px;
}

.rooms_list__item .rooms_list__descr a:hover {
	color: #00d9b9;
	transition: all .3s;
}


/* PAGE ROOM AND SUITES */

.room_advantages {
	background-color: #fff;
	padding: 50px 0;
}

.room_advantages_cont {
	display: flex;
	align-items: flex-start;
	justify-content: space-evenly;
}

.room_advantages__title {
	font-family: "bilory-bold-600", serif;
	font-size: 20px;
	color: #323232;
	width: 170px;
}

.room_advantages__descr {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.room_advantages__item {
	display: flex;
	align-items: flex-end;
	min-width: 310px;
	margin-bottom: 25px;
}

.room_advantages__item img {
	max-width: 32px;
	margin-right: 50px;
}

.room_advantages__item p {
	font-family: "bilory-regular-400", sans-serif;
	font-size: 15px;
	color: #323232;
	line-height: 1.4;
}

.contact_us {
	background-color: #555555;
	color: #000;
	padding-top: 90px;
	text-align: center;
}

.contact_us__cont{
	background-color: #fff;
	padding-top: 70px;
}

.contact_us__title {
	font-size: 28px;
	font-weight: bold;
	text-transform: uppercase;
}

.contact_us__subtitle {
	font-size: 18px;
	max-width: 590px;
	margin: 0 auto;
	padding-top: 10px;
	padding-bottom: 50px;
}

.main_contact_form {
	max-width: 740px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.label_container {
	display: flex;
	align-items: flex-end;
	padding-bottom: 50px;
}

.label_container__textares {
	align-items: flex-start;
}

.label_container input {
	/* max-width: 520px; */
}

textarea.custom_input {
	min-height: 100px;
}

.default_submit-btn_cont {
	text-align: right;
}

.default_submit-btn_cont input {
	font-family: "bilory-bold-600", serif;
	font-size: 18px;
	padding: 15px 60px;
	color: #fff;
	background-color: #36d8b9;
	cursor: pointer;
	border: none;
}

.label_container label {
	text-align: left;
	min-width: 200px;
	font-size: 18px;
}

.covid_text{
	margin-top: 40px;
	padding-bottom: 40px;
	text-align: justify;
}

.covid_text p{
	font-size: 18px;
	margin-bottom: 10px;
}

.covid_text p:last-child{
	margin-bottom: 0;
}

/*Back to top btn START*/
/*#button {
		display: inline-block;
		background-color: #154E55;
		width: 50px;
		height: 50px;
		text-align: center;
		border: 1px solid #154E55;
		border-radius: 2px;
		line-height: 50px;
		text-decoration: none;
		position: fixed;
		bottom: 30px;
		right: 30px;
		-webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
		transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
		opacity: 0;
		visibility: hidden;
		z-index: 1000;
	}

	#button {
		color: #fff;
	}

	#button i:hover {
		color: #59A896;
	}

	#button:hover {
		cursor: pointer;
		background-color: #111111;
		color: #59A896;
		border: 1px solid #444444;
	}

	#button:active {
		background-color: #555;
	}

	#button.show {
		opacity: 0.7;
		visibility: visible;
	}

	@media (min-width: 500px) {
		#button {
			margin: 30px;
		}
	}

	@media (max-width: 500px) {
		#button {
			display: none;
		}
		}*/

/*Back to top btn END*/

/* Popup Start */

/*	.white_popup{
		background: #fff;
	}
	.small-popup{
		position: relative;
		max-width: 500px;
		padding-right: 30px;
		padding-left: 30px;
		margin: 0 auto;
		}*/

/* Magnific Popup Animation Delay Start*/
/*	.mfp-fade.mfp-bg {
		opacity: 0;
		-webkit-transition: all 0.15s ease-out;
		-moz-transition: all 0.15s ease-out;
		transition: all 0.15s ease-out;
	}

	.mfp-fade.mfp-bg.mfp-ready {
		opacity: 0.8;
	}

	.mfp-fade.mfp-bg.mfp-removing {
		opacity: 0;
	}
	.mfp-fade.mfp-wrap .mfp-content {
		opacity: 0;
		transition: all 0.4s ease-out;
	}
	.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
		opacity: 1;
	}
	.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
		opacity: 0;
		}*/
/* Magnific Popup Animation Delay End */

/* Popup End */

/* Popup Form Start */

/* CONTACT FORM START */

/*	.form {
		max-width: 550px;
		margin: 0px auto;
		color: #fff; 
		padding: 30px 0; 
		}*/

/*	.select {
		position: relative;
	}

	.select__item {
		position: relative;
	}

	.select__title {
		color: #000;
		border: 1px solid #d9d9d9;
		background-color: #fff;
		cursor: pointer;
		border-radius: 5px;
	}

	.select__value {
		display: flex;
		font-size: 16px;
		height: 60px;
		padding: 0px 20px;
		align-items: center;
		justify-content: space-between;
		flex-direction: row-reverse;
	}

	.select__value span {
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}

	.select__value::before {
		content: "";
		display: inline-block;
		transition: all 0.3s ease 0s;
		width: 11px;
		height: 7px;
		background: url("../images/select.svg") center / 100% no-repeat;
	}

	.select__options {
		color: #000;
		display: none;
		position: absolute;
		top: 49px;
		border-radius: 0 0 4px 4px;
		min-width: 100%;
		left: 0;
		background-color: #fff;
		border-top: 0;
		border: 1px solid #d9d9d9;
		border-top: 0;
		font-size: 16px;
		padding: 0px 0px 5px 0px;
	}

	.select__option {
		cursor: pointer;
		padding: 10px 20px;
		margin: 0px 0px 0px 0px;
	}

	.select._active {
		z-index: 5;
	}

	.select._active .select__value::before {
		transform: rotate(-180deg);
	}

	.select._active.select__options {
		display: block;
	}

	.form * {
		outline: none;
	}

	.form__body {
		position: relative;
	}

	.form__body::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(51, 51, 51, 0.9) url("../images/loading.gif") center / 50px no-repeat;
		opacity: 0;
		visibility: hidden;
		transition: all 0.5s ease 0s;
	}

	.form__body._sending::after {
		opacity: 1;
		visibility: visible;
	}

	.form__title {
		font-size: 40px;
		font-weight: 700;
		margin: 0px 0px 30px 0px;
	}

	.form__item {
		margin: 0px 0px 20px 0px;
	}

	.form__label {
		font-size: 16px;
		display: block;
		margin: 0px 0px 10px 0px;
	}

	.form__input {
		height: 40px;
		padding: 0px 20px;
		width: -webkit-fill-available;
		font-size: 18px;
		transition: all 0.5s ease 0s;
	}

	.form__input:focus {
		box-shadow: 0 0 3px #7a956b;
	}

	.form__input._error {
		box-shadow: 0 0 15px red;
	}

	textarea.form__input {
		min-height: 60px;
		resize: vertical;
		padding: 20px;
	}

	.options {
		padding: 10px 0px 0px 0px;
	}

	.options__item {
		margin: 0px 0px 10px 0px;
	}

	.options__input {
		display: none;
	}

	.options__input:checked+.options__label::after {
		transform: scale(1);
	}

	.options__label {
		display: inline-flex;
		font-size: 16px;
		line-height: 140%;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	.options__label::before {
		content: "";
		align-self: flex-start;
		flex: 0 0 24px;
		height: 24px;
		background-color: #fff;
		border-radius: 50%;
		margin: 0px 10px 0px 0px;
	}

	.options__label::after {
		transition: transform 0.5s ease 0s;
		content: "";
		position: absolute;
		top: 4px;
		left: 4px;
		width: 16px;
		height: 16px;
		background-color: #7a956b;
		border-radius: 50%;
		transform: scale(0);
	}

	.file {}

	.file__item {
		position: relative;
	}

	.file__input {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		font-size: 0;
		cursor: pointer;
	}

	.file__button {
		display: inline-flex;
		min-height: 40px;
		border-radius: 30px;
		justify-content: center;
		align-items: center;
		background-color: #77608d;
		padding: 0px 20px;
	}

	.file__preview {
		display: inline-block;
		max-width: 100px;
		padding: 10px 0px 0px 0px;
	}

	.file__preview img {
		max-width: 100%;
	}

	.checkbox {}

	.checkbox._error .checkbox__label::before {
		box-shadow: 0 0 15px red;
	}

	.checkbox__input {
		display: none;
	}

	.checkbox__input:checked+.checkbox__label::after {
		transform: scale(1);
	}

	.checkbox__label {
		font-size: 16px;
		line-height: 140%;
		display: inline-flex;
		align-items: center;
		position: relative;
		cursor: pointer;
	}

	.checkbox__label::before {
		content: "";
		align-self: flex-start;
		flex: 0 0 24px;
		height: 24px;
		background-color: #fff;
		border-radius: 4px;
		margin: 0px 10px 0px 0px;
	}

	.checkbox__label::after {
		transition: transform 0.5s ease 0s;
		content: "";
		width: 16px;
		height: 16px;
		position: absolute;
		top: 4px;
		left: 4px;
		background-color: #7a956b;
		border-radius: 4px;
		transform: scale(0);
	}

	.checkbox__label a {
		color: #7a956b;
	}

	.main_form_section {
		padding: 50px 0;
	}

	.form__button {
		width: inherit;
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 60px;
		background-color: #154E55;
		color: #fff;
		font-size: 18px;
		text-transform: uppercase;
		letter-spacing: 2px;
		font-weight: 700;
		cursor: pointer;
		transition: background-color 0.5s ease 0s;
		position: relative;
		top: 0;
		padding: 18px 60px;
	}

	.form__button:hover {
		background-color: rgb(26, 103, 103);
	}

	.form__button:active {
		top: 3px;
		box-shadow: 0 2px 0 #161b13;
	}

	.form_container {
		display: grid;
		grid-column-gap: 30px;
		grid-template-areas:
		'form_item1 form_item2'
		'form_item3 form_item4'
		'form_item5 form_item5'
		'form_item6 form_item6';
	}

	.form_container__recall{
		grid-template-areas:
		'form_item1 form_item1'
		'form_item4 form_item4'
		'form_item6 form_item6';
	}

	.form_container .form_item1 {
		grid-area: form_item1;
	}

	.form_container .form_item2 {
		grid-area: form_item2;
	}

	.form_container .form_item3 {
		grid-area: form_item3;
	}

	.form_container .form_item4 {
		grid-area: form_item4;
	}

	.form_container .form_item5 {
		grid-area: form_item5;
	}

	.form_container .form_item6 {
		grid-area: form_item6;
		margin: 0 auto;
		}*/

/* CONTACT FORM END */

/* Popup Form End */