@import url("https://fonts.googleapis.com/css2?family=Domine:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italiana&display=swap");
:root {
	--font-normal: "Inter", sans-serif;
	--primary-font: "Domine", serif;
	--second-font: "Inter", sans-serif;
	--three-font: "Italiana", sans-serif;
	--primary-color: rgba(34, 197, 94, 1);
	--normal-color: #0f0f0f;
	--text-primary: #0f0f0f;
	--second-color: #5B5B5C;
	--text-second: #5B5B5C;
	--border-default: #DEDFE0;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video {
	max-width: 100%;
}

ol,
ul {
	list-style: none;
}

html {
	font-size: 62.5%;
}

body {
	font-family: var(--font-normal);
	font-size: 1.6rem;
	font-style: normal;
	line-height: 1.5;
	position: relative;
	color: var(--normal-color);
}

.ov-hidden {
	overflow: hidden;
}

.container {
	max-width: 1360px;
}

a {
	color: var(--normal-color);
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: none;
	color: var(--normal-color);
}

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

.row-collapse {
	margin-left: 0;
	margin-right: 0;
}
.row-collapse > div[class=col], .row-collapse > div[class^=col-] {
	padding-left: 0;
	padding-right: 0;
}

.btn {
	font-size: 1.6rem;
	padding: 8px 24px;
	border-radius: 8px;
}

.btn-primary {
	background-color: var(--primary-color);
	color: #fff;
	border: 0;
	text-decoration: none;
	transition: background-color 0.3s ease;
}
.btn-primary:hover {
	background-color: #1a9a49;
	color: #fff;
}

.btn-normal {
	min-width: 80px;
	font-weight: 600;
	color: var(--primary-color);
}

.btn-link {
	color: var(--normal-color);
	text-decoration: underline;
	padding: 8px 0;
}
.btn-link:hover {
	color: var(--primary-color);
}

.btn-border {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
}
.btn-border:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.heading-title {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 32px;
	text-align: center;
	max-width: 1280px;
	margin: 0 auto;
	margin-bottom: 32px;
}
.heading-title .sectitle {
	font-size: 3.2rem;
	font-weight: 700;
	font-family: var(--primary-font);
	margin-bottom: 0;
}
@media (max-width: 767.98px) {
	.heading-title .sectitle {
		font-size: 2.8rem;
	}
}
.heading-title .subtitle {
	font-size: 1.6rem;
	font-weight: 400;
}
.heading-title.typerow {
	flex-direction: row;
	text-align: unset;
}
.heading-title.typerow .sectitle {
	flex: 1;
}
.heading-title.typerow .subtitle {
	width: 60%;
}
@media (max-width: 1024px) {
	.heading-title.typerow {
		flex-direction: column;
	}
	.heading-title.typerow .subtitle {
		width: 100%;
	}
}
@media (max-width: 991.98px) {
	.heading-title {
		text-align: left;
	}
}

.form-group {
	margin-bottom: 20px;
}
.form-group > label {
	font-weight: 600;
	margin-bottom: 4px;
}
.form-group .required {
	color: #EF4444;
}
.form-group .agree-checkbox {
	font-weight: 500;
	cursor: pointer;
}
.form-group .agree-checkbox input {
	width: 20px;
	height: 20px;
}
.form-group .input-group {
	position: relative;
}
.form-group .input-group .form-control {
	border-radius: 8px !important;
}
.form-group .input-group .tag {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	padding: 2px 6px;
	border-radius: 6px;
	font-size: 1.6rem;
	z-index: 10;
}

.form-btn {
	margin-top: 30px;
}

.form-control {
	height: 40px;
	border: 1px solid #DEDFE0;
	background-color: #F2F3F5;
	border-radius: 8px;
	color: #5B5B5C;
	font-size: 1.6rem;
	padding: 8px;
}

.form-row {
	align-items: flex-end;
	margin-left: -15px;
	margin-right: -15px;
}
.form-row > col, .form-row > [class*=col-] {
	padding-left: 15px;
	padding-right: 15px;
}

.checkbox-group label {
	margin-bottom: 0;
}
.checkbox-group input {
	width: 20px;
	height: 20px;
}
.checkbox-group span {
	margin-left: 12px;
}

.radio-group {
	display: flex;
	gap: 20px;
	margin-top: 8px;
	flex-wrap: wrap;
}
.radio-group label {
	font-weight: normal;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.6rem;
	cursor: pointer;
	margin-bottom: 0;
}
.radio-group label:not(:last-of-type) {
	margin-right: 40px;
}
.radio-group input {
	appearance: none;
	-webkit-appearance: none;
	background-color: #fff;
	border: 1.5px solid #747475;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	cursor: pointer;
	position: relative;
	outline: none;
}
.radio-group input:checked {
	border: 1.5px solid var(--primary-color);
}
.radio-group input:checked::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 12px;
	height: 12px;
	background-color: var(--primary-color);
	border-radius: 50%;
}

textarea.form-control {
	height: auto;
}

.breadcrumb {
	padding: 10px;
	background: transparent;
	margin-top: 30px;
	gap: 4px;
	font-weight: 500;
}
.breadcrumb a {
	display: inline-block;
}
.breadcrumb a:hover {
	color: var(--primary-color);
}

.header {
	background-color: var(--primary-color);
	color: #fff;
	padding: 20px 0;
	position: relative;
	z-index: 1000;
}
.header-wrap > .container{
	max-width: 90%;
}
.header-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .logo {
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}
.header .logo img {
	max-width: 150px;
	height: auto;
}
.header .toggle-menu {
	display: none;
	font-size: 3.2rem;
	cursor: pointer;
}
@media (max-width: 1279.98px) {
	.header .toggle-menu {
		display: block;
	}
}
.header nav > ul {
	display: flex;
	list-style: none;
	gap: 10px;
	margin-bottom: 0;
}
.header nav > ul > li {
	position: relative;
}
.header nav > ul > li > a {
	display: block;
	color: #fff;
	text-decoration: none;
	font-size: 1.6rem;
	padding: 20px 0;
}
.header nav > ul > li > a:hover {
	color: var(--secondary-color);
}
.header nav > ul > li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	color: var(--primary-color);
	min-width: 200px;
	transform-origin: top left;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header nav > ul > li .submenu li {
	display: block;
	position: relative;
}
.header nav > ul > li .submenu li a {
	display: block;
	color: var(--primary-color);
	padding: 5px 10px;
}
.header nav > ul > li .submenu li a:hover {
	color: var(--secondary-color);
}
.header nav > ul > li .submenu li .submenu-children {
	position: absolute;
	top: 0;
	right: 100%;
	background-color: #fff;
	color: var(--primary-color);
	min-width: 200px;
	transform-origin: top left;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: none;
}
@media (min-width: 1280px) {
	.header nav > ul > li .submenu li:hover .submenu-children {
		display: block;
	}
}
@media (min-width: 1280px) {
	.header nav > ul > li:hover > .submenu {
		display: block;
	}
}
.header nav .close-menu {
	position: relative;
	text-align: right;
	display: none;
}
@media (max-width: 1279.98px) {
	.header nav {
		position: fixed;
		top: 0;
		left: -100%;
		width: 90%;
		height: 100%;
		background-color: #fff;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
		z-index: 1010;
		transition: all 0.3s ease-in-out;
	}
	.header nav > ul {
		display: block;
		padding: 20px;
	}
	.header nav > ul > li:not(:last-child) {
		border-bottom: 1px solid #e0e0e0;
	}
	.header nav > ul > li a {
		padding: 12px 0;
		color: var(--normal-color);
	}
	.header nav > ul > li a:hover {
		color: var(--normal-color);
	}
	.header nav > ul > li .submenu {
		position: relative;
		box-shadow: none;
		background-color: transparent;
	}
	.header nav > ul > li .submenu li a {
		color: var(--normal-color);
	}
	.header nav > ul > li .submenu li a .caret {
		top: 5px;
	}
	.header nav > ul > li .submenu li .submenu-children {
		position: static;
		width: 100%;
		box-shadow: none;
		background-color: transparent;
	}
	.header nav > ul > li .submenu li .submenu-children .submenu-list {
		padding-left: 10px;
	}
	.header nav > ul .hasChildren {
		cursor: pointer;
	}
	.header nav > ul .hasChildren .caret {
		position: absolute;
		top: 14px;
		right: 0px;
		z-index: 1;
		font-size: 18px;
		width: 24px;
		height: 24px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
	}
	.header nav > ul .hasChildren .caret.active {
		transform: rotate(180deg);
		transition: all 0.3s ease;
	}
	.header nav.opened {
		left: 0;
		transition: all 0.3s ease-in-out;
	}
	.header nav .close-menu {
		display: block;
		padding: 10px 20px;
		font-size: 2.4rem;
		cursor: pointer;
	}
	.header nav .close-menu .close-menu-button {
		color: var(--normal-color);
	}
}

.overlay-over {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0C0C0D66;
	display: none;
	z-index: 1005;
}

.block-main {
	position: relative;
	padding: 40px 0;
}
.block-main .box-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.block-main .box-content .meta {
	color: #5b5b5c;
	font-size: 1.4rem;
	text-transform: uppercase;
}
.block-main .box-content .title {
	font-size: 3.2rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
}
@media (max-width: 767.98px) {
	.block-main .box-content {
		margin-bottom: 30px;
	}
}
.block-main .box-image-slide .item {
	overflow: hidden;
	border-radius: 12px;
}
.block-main .box-image-slide .item img {
	width: 100%;
	height: auto;
}

.contact {
	padding: 60px 0;
}
.contact-title {
	margin-bottom: 20px;
}
@media (max-width: 767.98px) {
	.contact {
		padding: 40px 0;
	}
}

.block-destination {
	padding: 40px 0;
}
.block-destination-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.block-destination-list a {
	display: block;
	break-inside: avoid;
}
.block-destination-list a:hover {
	color: var(--primary-color);
}
@media (max-width: 991.98px) {
	.block-destination-list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 767.98px) {
	.block-destination-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.block-country {
	padding: 40px 0;
}
.block-country-slide .item .box-image {
	overflow: hidden;
	border-radius: 12px;
}
.block-country-slide .item .box-image img {
	width: 100%;
	height: auto;
}
.block-country-slide .item .box-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 16px;
}
.block-country-slide .item .box-content .title {
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
	text-align: center;
}
.block-country-slide.owl-carousel .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 8px;
	border: 1.5px solid var(--primary-color);
	width: 40px;
	height: 40px;
	color: var(--primary-color);
	background-color: transparent;
	transition: all 0.3s ease;
}
.block-country-slide.owl-carousel .owl-nav button.owl-prev {
	left: 0;
}
.block-country-slide.owl-carousel .owl-nav button.owl-next {
	right: 0;
}

.backtotop {
	position: fixed;
	bottom: 15px;
	left: 15px;
	z-index: 100;
	display: none;
}
.backtotop span {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #DCFCE7;
	padding: 8px;
	border-radius: 8px;
	color: var(--primary-color);
	font-size: 1.8rem;
	cursor: pointer;
}
.backtotop.show {
	display: block;
}

.footer {
	padding: 40px 0;
	background-color: #F3F4F6;
}
@media (max-width: 767.98px) {
	.footer .footer-top .item-col {
		margin-bottom: 30px;
	}
}

/*# sourceMappingURL=style.css.map */
.gap-2 {
	gap: .5rem !important;
}
.gap-3 {
	gap: .8rem !important;
}
.end-0 {
	right: 0 !important;
}

.top-0 {
	top: 0 !important;
}

.bottom-0 {
	bottom: 0 !important;
}
.end-0 {
	right: 0 !important;
}
.fw-medium {
	font-weight: 500 !important;
}
.fw-semibold {
	font-weight: 600 !important;
}
.text-start {
	text-align: left !important;
}
.image-actions {
	background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better visibility */
	border-radius: 4px;
}

.image-actions button {
	font-size: 12px;
	padding: 4px 8px;
}

.language-selector {
	position: relative;
	display: inline-block;
	font-family: sans-serif;
}
.selected-language {
	background-color: #fff;
	border: none;
	border-radius: 4px;
	padding: 4px 8px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
selected-language i {
	display: none;
}
.flag-icon {
	width: 20px;
	height: auto;
	border-radius: 2px;
}
.language-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
	padding: 8px;
	list-style: none;
	width: 180px;
	overflow: hidden;
	z-index: 1000;
}
.language-dropdown.open {
	display: block;
}
.language-dropdown li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
	color: #000;
}
.language-dropdown li:hover,
.language-dropdown li.active {
	background-color: #f2f3f5;
}


.my-gallery{
	overflow: hidden;
}

.justified-gallery > a, .justified-gallery > div, .justified-gallery > figure {
	overflow: visible;
}
.gallery, .my-gallery {
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        .image-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .copy-link-container {
            position: absolute;
            top: 5px;
            right: 5px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .dimensions-container {
            position: absolute;
            bottom: 5px;
            right: 5px;
            background: rgba(0,0,0,0.6);
            color: #fff;
            font-size: 11px;
            padding: 2px 4px;
            border-radius: 4px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .image-wrapper:hover .copy-link-container,
        .image-wrapper:hover .dimensions-container {
            opacity: 1;
        }

        .copyable {
            background: #00fa9a;
            border-radius: 4px;
            padding: 2px 4px;
            cursor: pointer;
            transition: all 0.2s;
        }

            .copyable:hover {
                background: #00cc7a;
                transform: scale(1.05);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

        .tooltip {
            position: absolute;
            background: #1a1a1a;
            color: #fff;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
            z-index: 99999;
        }

            .tooltip::after {
                content: '';
                position: absolute;
                top: 100%;
                left: 10px;
                border: 5px solid transparent;
                border-top-color: #1a1a1a;
            }
.justified-gallery {
	overflow: visible;
}
.my-gallery {
	overflow: visible;
}