@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
4. Menu
5. Home
6. Features
7. Gallery
8. About
9. Testimonials
10. Booking
11. Blog
12. Footer


******************************/

/***********
1. Fonts
***********/

/* @import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700,800,900'); */
/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*********************************
2. Body and some general stuff
*********************************/

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
	/* font-family: 'Raleway', sans-serif; */
	font-family: 'Heebo', sans-serif;
	font-size: 17px;
	font-weight: 400;
	background: #FFFFFF;
	color: #4b4b4b;
}

:root {
	/* --color-primary: #FF6347 */
	--color-primary: #FEA116;
}

div {
	display: block;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-family: 'Heebo', sans-serif;
	font-size: 17px;
	line-height: 1.5;
	font-weight: 400;
	text-align: justify;
	color: #4b4b4b;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	/* border-bottom: solid 1px #FF6347; */
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

p:last-of-type {
	margin-bottom: 0;
}

a {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p a:active {
	position: relative;
	color: #FF6347;
}

p a:hover {
	color: #FFFFFF;
	/* background: #FF6347; */
}

p a:hover::after {
	opacity: 0.2;
}

::selection {
	/* background: rgba(255, 163, 123, 1); */
	background: var(--color-primary);
	color: #ffffff;
}

.text-primary {
	color: var(--color-primary) !important;
}

p::selection {}

h1 {
	font-size: 38px;
}

h2 {
	font-size: 32px;
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
}

h5 {
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Heebo', sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
	line-height: 1.5;
	/* color: #5f5f5f; */
	color: #0F172B;
	font-weight: 600;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {}

img {
	max-width: 100%;
}

button:active {
	outline: none;
}

.form-control {
	color: #db5246;
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.clear {
	clear: both;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.trans_200 {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.trans_300 {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.trans_400 {
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.trans_500 {
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.fill_height {
	height: 100%;
}

.super_container {
	width: 100%;
	overflow: hidden;
}

.prlx_parent {
	overflow: hidden;
}

.prlx {
	height: 130% !important;
}

.parallax-window {
	min-height: 400px;
	background: transparent;
}

.parallax_background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.background_image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.background_Myimage {
	/* background-position: center left !important; */
}

.nopadding {
	padding: 0px !important;
}

.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage,
.owl-carousel .owl-item {
	height: 100%;
}

.slide {
	height: 100%;
}

.carousel-indicators {
	/* box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease; */
}

/*********************************
3. Header
*********************************/

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	z-index: 100;
}

.header::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	background: rgba(0, 0, 0, 0.8);
	content: '';
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.header.scrolled::before {
	height: 100%;
}

.header_content {
	width: 100%;
	height: 128px;
	padding-left: 62px;
	padding-right: 62px;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.header.scrolled .header_content {
	height: 90px;
}

.logo {
	border: solid 2px #ffffff;
	text-align: center;
	padding: 0px 5px;
	width: auto;
	height: auto;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	display: flex;
	align-items: center;
}

.logo a {
	display: block;
	font-size: 24px;
	font-weight: 600;
	color: #ffffff;
	line-height: 37px;
}

.main_nav ul li {
	position: relative;
}

.main_nav ul li:not(:last-of-type) {
	margin-right: 49px;
}

.main_nav ul li a {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}

.main_nav ul li a:hover,
.main_nav ul li.active a {
	color: var(--color-primary);
	/* position: relative; */
}

.main_nav a:after {
	background: none repeat scroll 0 0 transparent;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	background: #fff;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}

.main_nav a:hover:after {
	width: 100%;
	left: 0;
}

button:focus {
	outline: 1px solid #00000000 !important;
}

.book_button {
	width: 152px;
	height: 54px;
	background: var(--color-primary);
	margin-left: 45px;
	text-align: center;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.book_button:hover {
	background: rgba(255, 255, 255, 0.2);
}

.book_button:hover a {
	color: var(--color-primary);
}

.book_button a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 54px;
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
}

.header_phone {
	width: 190px;
	height: 54px;
	background: var(--color-primary);
	margin-left: 14px;
}

.header_phone span {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	margin-left: 9px;
}

.header_phone span::selection {
	background: #ffffff;
	color: var(--color-primary);
}

.hamburger {
	display: none;
	margin-left: 25px;
	cursor: pointer;
}

.hamburger i {
	font-size: 24px;
	color: #ffffff;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.hamburger:hover i {
	color: var(--color-primary);
}

/*********************************
4. Menu
*********************************/

.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 101;
	background: rgb(255 255 255 / 95%);
	visibility: hidden;
	opacity: 0;
}

.menu.active {
	visibility: visible;
	opacity: 1;
}

.menu_content {
	/* padding-right: 30px;
	padding-top: 170px; */
	position: absolute;
    top: 100px;
    left: 50%;
    transform: translate(-50%);
}

.menu_close {
	position: absolute;
	top: 25px;
	right: 25px;
	cursor: pointer;
	z-index: 1;
}

.menu_close i {
	font-size: 24px;
	color: #121212;
}

.menu_close:hover i {
	color: var(--color-primary);
}

.menu_nav ul li:not(:last-of-type) {
	margin-bottom: 5px;
}

.menu_nav ul li a {
	font-weight: 700;
	font-size: 26px;
	color: #121212;
	line-height: 2;
}

.menu_nav ul li a:hover {
	color: var(--color-primary);
}

.menu_nav ul li a span {
	color: #690772;
}

.menu_extra {
	position: absolute;
	right: 30px;
	bottom: 30px;
}

.menu_book {
	display: none;
	margin-top: 50px;
}

.menu_book a {
	display: inline-block;
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.5);
}

.menu_book a::after {
	display: block;
	position: absolute;
	bottom: 1px;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(0, 0, 0, 0.62);
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.menu_book a:hover {
	color: var(--color-primary);
}

.menu_book a:hover::after {
	background: var(--color-primary);
}

.menu_phone {
	margin-top: 10px;
}

.menu_phone span {
	font-size: 16px;
	font-weight: 500;
	color: rgba(0, 0, 0, 0.5);
	margin-left: 9px;
}

/*********************************
5. Home
*********************************/

.home {
	width: 100%;
	height: 100vh;
}

.home_slider_container {
	width: 100%;
	height: 100%;
}

.home_slider .owl-dots {
	display: none;
}

.home_slider_dots_container {
	position: absolute;
	left: 50%;
	bottom: 39px;
	z-index: 1;
}

.home_slider_custom_dots li {
	content: "-";
	width: 25px;
	height: 2px;
	background-color: #ffffff;
	font-size: 14px;
	color: #ffffff;
	cursor: pointer;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.home_slider_custom_dots li:not(:last-of-type) {
	margin-right: 5px;
}

.home_slider_custom_dots li.active,
.home_slider_custom_dots li:hover {
	color: var(--color-primary);
	background-color: var(--color-primary);
}

.home_slider .slide {
	background: rgb(6 8 14);
}

.home_slider .background_image {
	opacity: 0.3;
}

.home_container {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
}

.home_title {
	font-size: 45px;
	font-weight: 600;
	color: #ffffff;
	/* line-height: 1.2; */
}

.booking_form_container {
	width: 100%;
	margin-top: 34px;
	padding-left: 78px;
	padding-right: 88px;
}

.booking_form {
	display: block;
	width: 100%;
}

.booking_input {
	width: 100%;
	height: 54px;
	background: rgba(255, 255, 255, 0.2);
	border: solid 2px #ffffff;
	padding-left: 27px;
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	outline: none;
}

.booking_input_container {
	width: 100%;
}

.booking_input_container>div {
	padding-right: 10px;
}

.booking_input_container>div:first-child,
.booking_input_container>div:nth-child(2) {
	width: 32.60869565217391%;
}

.booking_input_container>div:nth-child(3),
.booking_input_container>div:nth-child(4) {
	width: 17.39130434782609%;
}

.booking_input_a {}

.booking_input_b {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}

.booking_input::-webkit-input-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #FFFFFF !important;
}

.booking_input:-moz-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #FFFFFF !important;
}

.booking_input::-moz-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #FFFFFF !important;
}

.booking_input:-ms-input-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #FFFFFF !important;
}

.booking_input::input-placeholder {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #FFFFFF !important;
}

.booking_button {
	width: 152px;
	height: 54px;
	background: var(--color-primary);
	font-size: 14px;
	font-weight: 500;
	color: #ffffff;
	border: none;
	outline: none;
	cursor: pointer;
}

.contact_button {
	width: 100%;
	height: auto;
	background: var(--color-primary);
	font-size: 18px;
	font-weight: 500;
	color: #ffffff !important;
	border: none;
	outline: none;
	cursor: pointer;
	display: flex;
	padding: 10px;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
}

.contact_button span {
	font-size: 16px;
	padding-top: 6px;
}

.contact_button:hover {
	background: #cc7a00;
}

.booking_button:hover {
	background: rgba(255, 255, 255, 0.2);
}

/*********************************
6. Features
*********************************/

.features {
	background: #ffffff;
	padding-top: 70px;
	padding-bottom: 20px;
}

.icon_box_col {
	margin-bottom: 50px;
}

.icon_box_icon {
	width: 82px;
	/* height: 82px; */
}

.icon_box_icon img {
	max-width: 100%;
	max-height: 100%;
}

.icon_box_icon svg {
	max-width: 100%;
	max-height: 100%;
	width: 60px;
	height: 60px;
}

.logo_svg {
	line-height: 50px;
}

.logo_svg>svg {
	width: 40px;
}

.logo_svg .svg path {
	fill: #ffffff;
}

.svg path,
.svg rect,
.svg polygon {
	/* fill: #a1a1a1; */
	fill: var(--color-primary);
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.icon_box:hover .svg path,
.icon_box:hover .svg rect,
.icon_box:hover .svg polygon {
	fill: #a1a1a1;
}

.icon_box_title {
	margin-top: 10px;
}

.icon_box_title h2 {}

.icon_box_text {
	margin-top: 10px;
}

/*********************************
7. Gallery
*********************************/
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 20px;
	/* max-width: 1200px; */
}

.gallery>a>img {
	border: 1px solid #eb6a00;
	padding: 3px;
}

.gallery {
	width: 100%;
}

.gallery_item {
	height: calc(100vw / 4);
}

.gallery_item a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	border-left: 3px solid #ffffff;
}

a.colorbox.cboxElement:hover {
	background: #fca01682;
}

.colorbox i {
	position: absolute;
	top: 50%;
	left: 55%;
	border-radius: 50%;
	font-size: 34px;
	color: #ffffff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	-webkit-transform: translate(-50%, -50%) scale(0);
	transform: translate(-50%, -50%) scale(0);
	transition: all 300ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

.gallery_item:hover i {
	-webkit-transform: translate(-50%, -50%) scale(1);
	transform: translate(-50%, -50%) scale(1);
	transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/*********************************
8. About
*********************************/

.about {
	background: #ffffff;
	padding-top: 80px;
	padding-bottom: 80px;
}

.about_text {
	margin-top: 12px;
}

.about_text span {
	font-weight: 600;
	font-weight: 600;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
	padding-bottom: 20px;
}

.about_text li {
	font-size: 18px;
	line-height: 1.6;
	padding-bottom: 10px;
}

.about_text ul li img {
	width: 30px;
	margin-right: 5px;
	padding-bottom: 10px;
	border: 1px solid #d3d3d3;
	border-radius: 50%;
	padding: 3px;
}

.about_images {
	height: 100%;
	padding-left: 17px;
	padding-right: 19px;
}

.about_images img {
	border-radius: 3px;
	border: 2px solid var(--color-primary);
	padding: 3px;
}

.about_ppatti {
	background: #ffffff;
	padding: 60px 40px;
	border-radius: 6px;
}

.about_title {
	max-width: 585px;
}

.about_row {
	margin-top: 21px;
}

.about_images {
	height: 100%;
	padding-left: 17px;
	padding-right: 19px;
	padding-top: 14px;
}

.about_sig {
	margin-top: 20px;
}


.about_home {
	width: 100%;
	height: 300px;
	background: rgb(6 8 14);
}

.about_home .background_image {
	opacity: 0.3;
}

.home_container {
	position: absolute;
	top: 60.3%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}

.home_content {}

.home_title {
	font-size: 72px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.2;
}

.container_custom .container {
	padding-left: 0;
	padding-right: 0;
	max-width: 100%;
}

.container_custom .container .row {
	margin-left: 0;
	margin-right: 0;
}

.container_custom .container .row>div[class^='col'] {
	padding-left: 0;
	padding-right: 0;
}

/*********************************
7. Split Section Right
*********************************/

.split_section_right {
	background: #ffffff;
	border-top: 1px solid #eee;
}

.split_section_right_content {
	padding: 100px 65px;
}

.split_section_text {
	margin-top: 10px;
}

.icon_bg {
	color: var(--color-primary);
	margin-right: 6px;
}

.milestones_container {
	margin-top: 15px;
	justify-content: space-between !important;
	padding: 0px 50px;
}

.milestone {
	/* width: calc(100% / 3); */
}

.milestone_counter {
	font-size: 72px;
	color: #393939;
	font-weight: 600;
	line-height: 0.75;
}

.milestone_counter>img {
	width: 50px;
}

.milestone_content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.milestone_title {
	font-size: 18px;
	color: #868686;
	font-weight: 600;
	line-height: 0.75;
	margin-top: 10px;
	white-space: nowrap;
}

.split_section_image {
	height: 100%;
}

/*********************************
8. Split Section Left
*********************************/

.split_section_left {
	background: #ffffff;
}

.split_section_left_content {
	padding: 100px 65px;
}

.loaders_container {
	margin-top: 43px;
	margin-left: -22px;
}

.loader_container {
	width: calc(100% / 3);
	height: 155px;
}

.loader {
	width: 155px;
	height: 155px;
	background: transparent;
}

.loader_content {
	position: absolute;
	left: 50%;
	bottom: 48px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 18px;
	font-weight: 500;
	color: #232323;
	white-space: nowrap;
	text-align: center;
}

.loader_title {
	font-size: 14px;
	font-weight: 600;
	color: #868686;
	line-height: 0.75;
	white-space: nowrap;
}

.progressbar-text {
	top: calc(40% + 1px) !important;
	font-size: 48px !important;
	font-weight: 600 !important;
	color: #393939 !important;
	line-height: 0.75 !important;
}

/*********************************
9. Testimonials
*********************************/

.testimonials {
	padding-top: 117px;
	padding-bottom: 114px;
}

.testimonials_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 11, 24, 0.79);
	pointer-events: none;
}

.test_slider_item {
	background: #ffffff;
	padding-top: 43px;
	padding-bottom: 58px;
	padding-left: 45px;
	padding-right: 45px;
}

.rating i::before {
	font-family: 'FontAwesome';
	content: "\f005";
	font-style: normal;
	font-size: 18px;
	color: rgba(0, 0, 0, 0.2);
}

.rating i:not(:last-of-type) {
	margin-right: 6px;
}

.rating_1 i:first-child::before {
	color: #ffb400;
}

.rating_2 i:first-child::before {
	color: #ffb400;
}

.rating_2 i:nth-child(2)::before {
	color: #ffb400;
}

.rating_3 i:first-child::before {
	color: #ffb400;
}

.rating_3 i:nth-child(2)::before {
	color: #ffb400;
}

.rating_3 i:nth-child(3)::before {
	color: #ffb400;
}

.rating_4 i:first-child::before {
	color: #ffb400;
}

.rating_4 i:nth-child(2)::before {
	color: #ffb400;
}

.rating_4 i:nth-child(3)::before {
	color: #ffb400;
}

.rating_4 i:nth-child(4)::before {
	color: #ffb400;
}

.rating_5 i:first-child::before {
	color: #ffb400;
}

.rating_5 i:nth-child(2)::before {
	color: #ffb400;
}

.rating_5 i:nth-child(3)::before {
	color: #ffb400;
}

.rating_5 i:nth-child(4)::before {
	color: #ffb400;
}

.rating_5 i:nth-child(5)::before {
	color: #ffb400;
}

.testimonial_title {
	margin-top: 21px;
}

.testimonial_title a {
	font-size: 24px;
	font-weight: 600;
	color: #393939;
	line-height: 1.2;
}

.testimonial_title a:hover {
	color: var(--color-primary);
}

.testimonial_text {
	margin-top: 24px;
}

.testimonial_image {
	width: 106px;
	height: 106px;
	border-radius: 50%;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	margin-top: 12px;
}

.testimonial_author {
	margin-top: 26px;
	font-size: 15px;
	font-weight: 600;
	color: #393939;
}

.testimonial_author a {
	font-size: 15px;
	font-weight: 600;
	color: #393939;
}

.testimonial_author a:hover {
	color: var(--color-primary);
}

/*********************************
10. Services
*********************************/

.service-item {
	height: 200px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: #FFFFFF;
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transition: .5s;
}

.service-icon {
	margin: 0 auto 30px auto;
	width: 65px;
	height: 65px;
	transition: .5s;
}

.service-item:hover {
	background: var(--color-primary);
}

.service-item .svg path {
	/* fill: #0F172B; */
}

.service-item:hover .svg path,
.service-item:hover h4,
.service-item:hover p {
	color: #FFFFFF !important;
	fill: #ffffff;
}

.booking {
	background: #ffffff;
	padding-top: 70px;
	padding-bottom: 70px;
}

.booking_text {
	margin-top: 28px;
}

.booking_slider_container {
	margin-top: 63px;
}

.booking_item {
	height: 569px;
}

.booking_price {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 128px;
	height: 36px;
	background: #ffffff;
	text-align: center;
	line-height: 36px;
	font-size: 16px;
	font-weight: 600;
	color: #393939;
}

.booking_link {
	position: absolute;
	bottom: 18px;
	left: 15px;
	width: calc(100% - 30px);
	height: 65px;
	background: var(--color-primary);
	text-align: center;
}

.booking_link a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 65px;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
}

.booking_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(13, 9, 30, 0.67);
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
}

.booking_item:hover .booking_overlay {
	visibility: visible;
	opacity: 1;
}

/*********************************
11. Blog
*********************************/

.blog {}

.blog_slider_container {
	width: 100%;
	height: 487px;
	background: #efefef;
	padding: 80px 10px 50px;
}

.blog_slide {
	height: 100%;
	background: #0f0a27;
}

.blog_slide .background_image {
	opacity: 0.33;
}

.blog_content {
	position: absolute;
	left: 52px;
	bottom: 57px;
	width: calc(100% - 52px);
	padding-right: 30px;
}

.blog_date {
	width: 116px;
	height: 26px;
	background: var(--color-primary);
	text-align: center;
}

.blog_date a {
	display: block;
	height: 100%;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	line-height: 26px;
}

.blog_title {
	margin-top: 14px;
}

.blog_title a {
	font-size: 36px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.2;
}

.blog_title a:hover {
	color: var(--color-primary);
}


/*********************************
6. Contact
*********************************/
.contact-form-wrap {
    border-radius: 10px;
    /* background: var(--tg-secondary-color); */
    padding: 45px 35px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.contact-form-wrap .title {
    color: #22252f;
    font-size: 25px;
    margin-bottom: 30px;
}
.contact-form-wrap .form-grp {
    margin-bottom: 20px;
}
.contact-form-wrap .form-grp textarea,
.contact-form-wrap .form-grp input {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #C2C2C2;
    background: transparent;
    color: var(--tg-secondary-color);
    font-size: 15px;
    font-weight: 400;
    padding: 15px 22px;
    height: 50px;
    line-height: 1;
    display: block;
}
.contact-form-wrap .form-grp textarea {
    min-height: 183px;
    max-height: 183px;
}
.contact-form-wrap .form-grp textarea::placeholder,
.contact-form-wrap .form-grp input::placeholder {
    color: #898989;
    font-size: 15px;
    font-weight: 400;
}
.contact-form-wrap .btn:hover {
    color: var(--tg-primary-color);
}
.contact-form-wrap .btn::before {
    background: var(--tg-white);
}
.contact-form-wrap .row {
    --bs-gutter-x: 20px;
}

.contact-info-item {
	border-radius: 10px;
	border: 1px solid #C2C2C2;
	text-align: center;
	padding: 10px !important;
	margin-bottom: 35px;
	height: 255px;
}

.contact-info-item .icon {
	font-size: 50px;
	line-height: 1;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.contact-info-item .icon i{
	color: var(--color-primary);
}

.contact-info-item .content .title {
	margin-bottom: 20px;
	font-weight: 500;
	text-transform: uppercase;
}

.contact-info-item .content p {
	margin-bottom: 0;
	font-size: 16px;
	font-weight: 400;
	color: #0f0e24;
	line-height: normal;
}

.contact-info-item .content p a {
	color: #0f0e24
}

.contact {
	background: #ffffff;
	margin-bottom: 50px;
}

.contact_content {
	padding: 30px;
}

.contact_list {
	margin-top: 58px;
}

.contact_list ul li {
	font-size: 16px;
	font-weight: 500;
	color: #605d5d;
}

.contact_list ul li:not(:last-of-type) {
	margin-bottom: 17px;
}

.contact_form_container {
	margin-top: 10px;
}

.contact_form {
	display: block;
	position: relative;
}

.input_container {
	margin-bottom: 5px;
}

.contact_input {
	border-radius: 5px;
    border: 1px solid #C2C2C2;
    background: transparent;
    color: #0f0a27;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 22px;
    height: 50px;
	width: 100%;
}

.contact_input::-webkit-input-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.contact_input:-moz-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.contact_input::-moz-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.contact_input:-ms-input-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.contact_input::input-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.contact_textarea {
	height: 129px;
	padding-top: 15px;
}

.contact_button:hover {
	box-shadow: 0px 10px 23px rgba(0, 0, 0, 0.15);
}

.contact_map {
	/* width: calc(100% + ((100vw - 1120px) / 2)); */
	height: 100%;
}

.map {
	width: 100%;
	height: 100%;
}

.google_map {
	width: 100%;
	height: 100%;
}

.map_container {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#map {
	width: 100%;
	height: calc(100% + 30px);
}


/*********************************
12. Footer
*********************************/

.footer {
	/* background: #ffffff; */
	background: #0F172B;
	padding-top: 50px;
}

.footer_content {
	padding-bottom: 52px;
}

.footer_logo {
	display: inline-block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.footer_logo>div {
	width: auto;
	height: auto;
	border: solid 3px #ffffff;
	font-size: 30px;
	font-weight: 600;
	color: #ffffff;
	line-height: 55px;
	display: flex;
	align-items: center;
	padding: 5px 7px;
}

/* .footer_logo>div:last-of-type {
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	line-height: 0.75;
	margin-top: 15px;
} */

.footer_logo a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.footer_row {
	margin-top: 50px;
}

.footer_title {
	font-size: 22px;
	font-weight: 500;
	color: #eeeeee;
	line-height: 1.2;
	border-bottom: 2px solid #7f7f7f;
	width: fit-content;
}

.footer_list {
	margin-top: 9px;
}

.footer_list ul li {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	line-height: 2;
}

.footer_list ul li a {
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	line-height: 2;
}

.footer_list ul li a:hover{
	color: var(--color-primary);
}

.newsletter_container {
	margin-top: 8px;
}

.newsletter_form {
	display: block;
	position: relative;
}

.newsletter_input {
	width: 100%;
	height: 64px;
	background: #ffffff;
	border: none;
	border-bottom: solid 2px #393939;
	outline: none;
	font-size: 15px;
	font-weight: 600;
	color: #393939;
}

.newsletter_input::-webkit-input-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.newsletter_input:-moz-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.newsletter_input::-moz-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.newsletter_input:-ms-input-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.newsletter_input::input-placeholder {
	font-size: 15px !important;
	font-weight: 500 !important;
	color: #6d6d6d !important;
}

.newsletter_button {
	width: 152px;
	height: 54px;
	background: var(--color-primary);
	margin-top: 23px;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
}

.certificates {
	padding-left: 12px;
	padding-top: 10px;
}

.cert {
	margin-bottom: 30px;
}

.copyright {
	width: 100%;
	height: auto;
	background: #ffffff;
	text-align: center;
	line-height: 33px;
	font-size: 15px;
	font-weight: 500;
	color: #6d6d6d;
}