:root {
	--transparent-color: #ffffff00;
    --white-color: #ffffff;
    --white-color-05: #ffffff0d;
	--white-color-15: #ffffff26;
	--white-color-25: #ffffff40;
	--white-color-50: #ffffff80;
	--white-color-75: #ffffffbf;
	
    --black-color: #000000;
	--black-color-15: #00000026;
	--black-color-25: #00000040;
	--black-color-50: #00000080;
	--black-color-75: #000000bf;

    --dark-color: #151515;
    --dark-color-05: #1515150d;
    --dark-color-10: #1515151a;
    --dark-color-15: #15151526;
	--dark-color-25: #15151540;
	--dark-color-50: #15151580;
	--dark-color-75: #151515bf;

    --theme-color-01: #eb0919;
    --theme-color-01-15: #eb091926;
	--theme-color-01-25: #eb091940;
	--theme-color-01-50: #eb091980;
	--theme-color-01-75: #eb0919bf;

    --theme-color-02: #0a5694;
    --theme-color-02-15: #0a569426;
	--theme-color-02-25: #0a569440;
	--theme-color-02-50: #0a569480;
	--theme-color-02-75: #0a5694bf;

    --theme-color-03: #f5b73a;
    --theme-color-03-10: #f5b73a1a;
    --theme-color-03-15: #f5b73a26;
	--theme-color-03-25: #f5b73a40;
	--theme-color-03-50: #f5b73a80;
	--theme-color-03-75: #f5b73abf;

	--gray-color: #f4f6f8;
	
	--red-color: #bb1818;
	--green-color: #20769d;
	--yellow-color: #e84f10;
	
	--mask-color-01: linear-gradient(270deg, #ffffff00 50%, #ffffff 100%);
	--mask-color-02: linear-gradient(90deg, #ffffff00 50%, #ffffff 100%);
    --mask-color-03: linear-gradient(-15deg, var(--theme-color-02-15) 20%, var(--theme-color-03-15) 50%, var(--theme-color-01-15) 80%);
    --mask-color-04: linear-gradient(-15deg, var(--theme-color-02) 20%, var(--theme-color-03) 50%, var(--theme-color-01) 80%);
	
    --border-radius-00: 0;
	--border-radius-01: .25rem;
	--border-radius-02: .25rem;
	--border-radius-03: .5rem 0 0 .5rem;
	--border-radius-04: 0 .5rem .5rem 0;
	--border-radius-05: 0 0 .5rem .5rem;
    --border-radius-06: .5rem .5rem 0 0;
    --border-radius-07: .5rem;
    --border-radius-08: 0 0 1rem 1rem;
    --border-radius-09: 1rem 1rem 0 0;
    --border-radius-10: 2rem;
    --border-radius-11: 0 .25rem 0 0;

    --font-jakarta: "Plus Jakarta Sans", sans-serif;
	--font-awesome: "Font Awesome 5 Pro", sans-serif;
}

* {
    outline: 0 !important;
    box-shadow: none !important;
}

html {
    position: relative;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
	font-family: var(--font-jakarta);
    color: var(--dark-color);
    background-color: var(--white-color);
	font-size: 1rem;
	font-weight: 400;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100%;
	direction: ltr;
}

a,
a:focus,
a:hover {
    text-decoration: none !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

ul {
    padding: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
	color: var(--theme-color-02);
}

p {
    margin-bottom: 0;
    line-height: 1.875;
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1320px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

@media (max-width: 576px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
		padding-right: 1.25rem !important;
		padding-left: 1.25rem !important;
    }
}

::selection {
    background: var(--theme-color-02);
    color: var(--white-color);
}


/****** Header ******/

header {
    position: fixed;
    top: 0;
    left: 0;
	right: 0;
    width: 100%;
    z-index: 20;
    border-radius: var(--border-radius-00);
	background-color: var(--white-color);
	box-shadow: none;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

header .navbar-brand img {
	height: 3rem;
	width: auto;
}

header .nav-item .nav-link,
header .nav-item .nav-link:focus {
    color: var(--theme-color-02);
	margin-right: .5rem;
	margin-left: .5rem;
    font-weight: 600;
    padding-left: .25rem !important;
    padding-right: .25rem !important;
}

header .nav-item .nav-link:hover,
header .nav-item .nav-link.active {
    color: var(--dark-color);
}

header .nav-item:last-child .nav-link {
    margin-right: 0rem;
}

header.headroom--not-top {
    position: fixed;
	background-color: var(--white-color);
    box-shadow: 5px 3px 20px var(--dark-color-15) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

header.headroom--not-top .nav-item .nav-link,
header.headroom--not-top .nav-item .nav-link:focus {
    color: var(--theme-color-02);
	margin-right: .5rem;
	margin-left: .5rem;
}

header.headroom--not-top .nav-link:hover,
header.headroom--not-top .nav-link.active {
    color: var(--dark-color);
}

header.headroom--not-top .nav-item:last-child .nav-link {
    margin-right: 0rem;
}

header.headroom--unpinned {
    opacity: 1;
}

header.headroom {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform, opacity;
}

header.headroom.headroom--pinned {
    -webkit-animation-name: headroom--pinned;
    animation-name: headroom--pinned;
}

header.headroom.headroom--unpinned {
    -webkit-animation-name: headroom--unpinned;
    animation-name: headroom--unpinned;
}

header.headroom.headroom--unpinned.headroom--between {
	opacity: 0;
    visibility: hidden;
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    padding: 0;
}

header.headroom.headroom--pinned.headroom--between {
    -webkit-animation-name: headroom--unpinned;
    animation-name: headroom--unpinned;
}

@media (max-width: 992px) {
	header .navbar-brand img {
		height: 2.5rem;
	}
	header .nav-item .nav-link,
	header .nav-item .nav-link:focus {
        color: var(--dark-color);
		margin-right: 0;
		margin-left: .5rem;
	}
    header .navbar-toggler i.open-menu {
        color: var(--theme-color-02);
        transform: rotateY(0deg);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        display: inline-block;
    }
    header .navbar-toggler i.close-menu {
        color: var(--dark-color);
        height: 30px;
        width: auto;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        display: none;
    }
    header.headroom--not-top .navbar-toggler i.open-menu {
        color: var(--theme-color-02);
    }
    header.headroom--not-top .navbar-toggler i.close-menu {
        color: var(--dark-color);
    }
    header .navbar-toggler[aria-expanded="true"] i.open-menu {
        display: none;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    header .navbar-toggler[aria-expanded="true"] i.close-menu {
        display: inline-block;
        color: var(--dark-color);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
	header .navbar-toggler {
		padding: 0;
		border-radius: 0;
		position: absolute;
		top: 1rem;
		right: .75rem;
	}
	header .navbar-nav {
		margin-top: 1rem;
	}
	.menu-mob header {
		background-color: var(--white-color);
		padding-bottom: 0;
		-webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
	}
	.menu-bg {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background-color: var(--dark-color-50);
		z-index: 5;
		display: none;
		-webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
	}
	
	.menu-mob .menu-bg {
		display: block;
		-webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
	}
}

@-webkit-keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes headroom--pinned {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes headroom--unpinned {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

header .nav-item .dropdown-menu li {
    width: 100%;
    display: inline-block;
}

header .nav-item .nav-link.dropdown-toggle {
    padding-right: 1.25rem;
}

@media (min-width: 992px) {
	header .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        margin-top: 0;
        padding: .5rem;
        border: none;
        border-radius: var(--border-radius-05);
        background-color: var(--white-color);
		border-bottom: 1px solid var(--gray-color);
        min-width: 10rem;
    }
    header .dropdown-menu.fade-up {
        top: 140%;
    }
	header .dropdown-menu.dropdown-menu-end {
        right: 0;
		min-width: 11rem;
    }
    header .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
		border: 1px solid var(--dark-color-15);
		border-top: none;
        transform: rotateX(0deg);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    header .dropdown-toggle::after {
        display: none;
        content: "\f107";
        font-family: var(--font-awesome);
        border: none;
        font-weight: 400;
        position: absolute;
        margin-left: .5rem !important
    }
    header .dropdown-menu .dropdown-item,
    header .dropdown-menu .dropdown-item:focus {
        display: block;
        width: 100%;
        padding: .5rem .5rem;
        clear: both;
        color: var(--theme-color-02);
        font-size: .9375rem;
        text-align: inherit;
        text-decoration: none;
        white-space: nowrap;
        font-weight: 600;
        background-color: var(--transparent-color);
        border: 0;
        cursor: pointer;
        position: relative;
    }
    header .dropdown-menu .dropdown-item:hover,
    header .dropdown-menu .dropdown-item.active {
        color: var(--dark-color);
        padding: .5rem .75rem;
    }
    header .dropdown-menu .dropdown-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 20px;
        width: .25rem;
        height: 2px;
        opacity: 1;
        background-color: var(--theme-color-02);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    header .dropdown-menu .dropdown-item:hover::before,
    header .dropdown-menu .dropdown-item.active::before {
        width: .5rem;
		background-color: var(--theme-color-02);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    header .dropdown-menu .dropdown-item.active {
        color: var(--theme-color-02);
    }
	header .dropdown-menu .dropdown-item img {
        width: calc(100% + 1rem);
		padding: 0;
		margin: 0;
		margin-left: -1rem;
		-webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
	header .dropdown-menu .dropdown-item:hover img {
        width: calc(100% + 1.5rem);
		padding: 0;
		margin: 0;
		margin-left: -1.5rem;
		-webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
}

@media (max-width: 992px) {
    header .navbar-expand-lg .navbar-nav {
        margin: 1rem 0 0 0;
        padding: 0;
    }
    header .navbar-expand-lg .navbar-nav .nav-link,
	header .navbar-expand-lg .navbar-nav .nav-link:focus {
        padding: 0 !important;
        margin-bottom: 1.5rem;
        margin-right: 0;
    }
	header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link,
	header .navbar-expand-lg .navbar-nav .nav-item.last-child .nav-link:focus {
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 1rem;
		padding-left: 1rem !important;
		padding-top: .5rem !important;
		padding-bottom: .5rem !important;
	}
	header .navbar-expand-lg .navbar-nav .nav-link .text-name {
		text-transform: none !important;
	}
    header .navbar-expand-lg .navbar-nav .dropdown-menu {
        border-radius: var(--border-radius-05);
        padding: .5rem;
        margin-bottom: 0;
		margin-top: 1rem;
        max-width: 11rem;
		border: 1px solid var(--dark-color-15);
    }
    header .dropdown-menu .dropdown-item,
    header .dropdown-menu .dropdown-item:focus {
        padding: .5rem .75rem;
        color: var(--dark-color);
        font-size: .9375rem;
        font-weight: 600;
        background-color: var(--transparent-color);
        position: relative;
    }
    header .dropdown-menu .dropdown-item:hover,
    header .dropdown-menu .dropdown-item.active,
    header .dropdown-menu .dropdown-item:active {
        color: var(--theme-color-02);
        background-color: var(--transparent-color);
    }
    header .dropdown-menu .dropdown-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1.25rem;
        width: .25rem;
        height: 2px;
        opacity: 1;
        background-color: var(--dark-color);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    header .dropdown-menu .dropdown-item:hover::before,
    header .dropdown-menu .dropdown-item.active::before {
        background-color: var(--dark-color);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }
    header .dropdown-menu .dropdown-item.active {
        color: var(--dark-color);
        pointer-events: none;
        cursor: default;
    }
	header .dropdown-menu .dropdown-item img {
        display: none !important;
    }
    header .dropdown-toggle::after {
        display: none;
    }
    header .dropdown-toggle::before {
        display: inline-block;
        content: "\f107";
        font-family: var(--font-awesome);
        border: none;
        font-weight: 400;
        margin-top: 2px;
        position: absolute;
        right: .25rem;
    }
}

header .lang-mob {
	display: none;
}

header .search-mob {
	display: none;
}

@media (max-width: 992px) {
	header .lang-mob {
		display: inline-block;
		position: absolute;
		top: 0;
        right: 6rem;
	}
	header .lang-mob .dropdown-toggle::before {
		display: none;
	}
	header .navbar-expand-lg .navbar-nav.lang-mob .nav-link,
	header .navbar-expand-lg .navbar-nav.lang-mob .nav-link:focus {
		padding: 0 !important;
		margin-bottom: 1rem;
		text-align: right;
	}
	header .search-mob {
		display: inline-block;
		position: absolute;
		top: .5rem;
    	right: 7.5rem;
	}
}


/****** Search ******/

header .nav-link-search {
    position: absolute;
    right: 3.25rem;
    top: .75rem;
    background: none;
    background-color: var(--transparent-color);
    border: none;
    color: var(--theme-color-02);
    font-size: 1.125rem;
    font-weight: 600;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

header .search-box {
    position: absolute;
    top: 4rem;
    width: 30%;
    right: 0;
}

.search-btn,
.search-btn:focus,
.search-btn:hover {
    background: none;
    background-color: var(--theme-color-02);
    color: var(--white-color);
    border: 1px solid var(--theme-color-02-25);
    border-radius: 0 .25rem .25rem 0;
    padding: 0 .75rem;
}

header .search-box .form-outline .invalid-feedback, .error {
    right: 0;
    padding: 0 .25rem;
    background-color: var(--white-color);
    border-radius: .25rem;
}

@media (max-width: 992px) {
    header .search-box {
        position: relative;
        top: 0;
        width: 100%;
        padding-bottom: 0;
    }
    header.headroom--not-top .nav-link-search {
        color: var(--theme-color-02);
    }
    header .navbar-toggler[aria-expanded="true"] ~ .nav-link-search {
        color: var(--theme-color-02);
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

}


/****** Footer ******/

footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 5rem;
    border-radius: var(--border-radius-00);
	background-color: var(--theme-color-02);
    color: var(--white-color-75);
    z-index: 2;
}

footer .logo-footer {
    width: auto;
	height: 3rem;
    margin: auto;
}

footer p {
	color: var(--white-color-75);
	font-size: .9375rem;
}

@media (max-width: 992px) {
	footer .footer-about .logo-footer {
		height: 6rem;
	}

	footer .footer-about p.footer-pra {
		padding-right: 2rem;
		padding-left: 0;
	}	
}

@media (max-width: 992px) {
	footer .footer-about .logo-footer {
		height: 4.5rem;
		margin-right: 0;
	}	
}

@media (max-width: 576px) {
	footer .footer-about p.footer-pra {
		padding-right: 0;
		padding-left: 0;
	}	
}

footer .copyright {
    width: 100%;
    height: auto;
    padding: 1rem 0;
    position: relative;
}

footer .copyright hr {
    margin: 1.5rem 0;
    color: inherit;
    background-color: var(--white-color-15);
    border: 0;
    opacity: 1;
}

footer .copyright p {
    margin-bottom: 0;
    color: var(--white-color-75);
    font-size: .875rem;
}

footer .copyright p a,
footer .copyright p a:focus {
    color: var(--white-color-75);
}

footer .copyright p a:hover {
    color: var(--white-color);
}

footer .back-to-top,
footer .back-to-top:focus {
	position: fixed;
    right: 1rem;
    bottom: 1rem;
    padding: 0;
    width: 3rem;
    height: 3rem;
	line-height: 2.5rem;
    display: inline-block;
    border-radius: var(--border-radius-02);
    background-color: var(--dark-color-75);
	color: var(--white-color);
	text-align: center;
    z-index: 1;
    transform: translate(0, 200%);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

footer .back-to-top:hover {
    background-color: var(--dark-color);
	color: var(--white-color);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

footer .back-to-top i {
	font-size: 1.25rem;
    position: relative;
    top: 0.25rem;
}

footer .back-to-top.active {
    transform: translate(0, 0);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

@media (max-width: 576px) {
	footer .back-to-top,
    footer .back-to-top:focus {
        right: .5rem;
        bottom: .5rem;
        width: 2rem;
        height: 2rem;
        line-height: 1.5rem;
    }
    footer .copyright {
        padding: 1rem 0 3rem 0;
    }

    .tourbook footer .back-to-top,
    .tourbook footer .back-to-top:focus {
        bottom: 2.75rem;
    }
}

footer .social {
	position: relative;
	margin-top: 1rem;
}

footer .social a,
footer .social a:focus {
	display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--white-color-75);
    border-radius: 100%;
    text-align: center;
    margin-right: .5rem;
    line-height: 2.35rem;
    color: var(--white-color-75);
	background-color: var(--transparent-color);
	font-size: 1rem;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

footer .social a:hover {
    color: var(--white-color);
	background-color: var(--transparent-color);
	border: 1px solid var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

footer .social a:last-child {
    margin-right: 0;
}

footer .footer-title {
    font-weight: 700;
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
	position: relative;
}

footer .footer-links ul {
    margin-bottom: 0;
    padding-left: 0;
}

footer .footer-links a,
footer .footer-links a:focus {
    color: var(--white-color-75);
	font-size: .9375rem;
    line-height: 2.5rem;
	position: relative;
}

footer .footer-links a:hover,
footer .footer-links a.active {
    color: var(--white-color);
}


footer .footer-newsletter {
    background: var(--mask-color-04);
    background-color: var(--theme-color-03);
    color: var(--dark-color);
    padding: 5rem 1.5rem;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    border-radius: var(--border-radius-07);
    position: relative;
    width: 100%;
    z-index: 0;
    top: -5rem;
}

footer .footer-newsletter .form-control {
    border-radius: var(--border-radius-03);
    border: none;
}

footer .footer-newsletter .form-control::placeholder {
	color: var(--dark-color-50) !important;
	font-weight: 400 !important;
	font-size: 1rem;
	opacity: 1 !important;
}

footer .footer-newsletter .form-control::-ms-input-placeholder {
	color: var(--dark-color-50) !important;
	font-weight: 400 !important;
	font-size: 1rem;
	opacity: 1 !important;
}

footer .footer-newsletter .form-control::placeholder {
	color: var(--dark-color-50) !important;
	font-weight: 400 !important;
	font-size: 1rem;
	opacity: 1 !important;
}

@media (max-width: 576px) {
	footer .footer-newsletter {
        padding: 3rem 1.5rem;
    }	
}

footer .footer-action {
    background-color: var(--white-color);
    color: var(--white-color);
    padding: 3rem 1.5rem;
    border-radius: var(--border-radius-07);
    position: relative;
    width: 100%;
    top: -5rem;
}

footer .footer-action .action-title {
    color: var(--theme-color-02);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: normal;
}

footer .footer-action p {
    color: var(--dark-color-75) !important;
    margin-top: .75rem;
}

@media (max-width: 576px) {
	footer .footer-action {
        padding: 2rem 1rem;
        text-align: center;
    }	
    footer .footer-action .action-title {
        font-size: 1.75rem;
    }
}

footer .footer-contact .contact-item {
    padding: 0;
    position: relative;
    display: flex;
	margin-bottom: 1.25rem;
}

footer .footer-contact .contact-item p {
    color: var(--white-color-75);
    font-size: 1.125rem;
	margin-bottom: 1rem;
}

footer .footer-contact .contact-item i {
    Color: var(--white-color-75);
    position: relative;
    top: 2px;
    font-size: 1.25rem;
    min-width: 1.25rem;
}

footer .footer-contact .contact-item a,
footer .footer-contact .contact-item a:focus {
    Color: var(--white-color-75);
    display: inline-block;
    margin-left: 1rem;
    font-size: .9375rem;
}

footer .footer-contact .contact-item a:hover {
    Color: var(--white-color);
}

footer .footer-contact .contact-item .form-control {
	font-family: var(--font-roboto);
	background-color: var(--transparent-color);
	color: var(--white-color);
	border: 1px solid var(--white-color-25);
	border-right: none;
	border-radius: var(--border-radius-03);
	height: 3rem;
}


/****** Main ******/

main {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 74px;
    z-index: 1;
}

main.offers-padding {
    padding-top: 138px;
}

.menu-overflow {
	overflow: hidden;
}

@media (max-width: 992px) {
	main {
        padding-top: 66px;
    }
    main.offers-padding {
        padding-top: 132px;
    }	
}

@media (max-width: 576px) {
    main.offers-padding {
        padding-top: 153.5px;
    }	
}

.bg-white {
	background-color: var(--white-color);
}

.bg-black {
	background-color: var(--black-color);
}

.bg-gray {
	background-color: var(--gray-color) !important;
}

.bg-gray-bord {
	background-color: var(--gray-color) !important;
    border: 1px solid var(--dark-color-15);
}

.bg-theme-color-01 {
	background-color: var(--theme-color-01);
}

.bg-theme-color-02 {
	background-color: var(--theme-color-02);
}

.bg-theme-mask-03 {
    background: var(--gray-color);
    border-radius: var(--border-radius-01);
    border: 1px solid var(--dark-color-15);
}

.text-white {
	color: var(--white-color);
}

.text-black {
	color: var(--black-color);
}

.text-gray {
	color: var(--gray-color);
}

.text-theme-01 {
	color: var(--theme-color-01);
}

.text-theme-02 {
	color: var(--theme-color-02);
}

.font-size-2 {
	font-size: 1.5rem;	
}

.font-size-2-25 {
	font-size: 1.25rem;	
}

.font-size-3 {
	font-size: 3rem;	
}

@media (max-width: 576px) {
	.font-size-2 {
		font-size: 1.25rem;	
	}
	.font-size-2-25 {
		font-size: 1rem;	
	}
	.font-size-3 {
		font-size: 2rem;	
	}	
}

.img-border-radius-01 {
    border-radius: var(--border-radius-01);
}

.btn-cus-01,
.btn-cus-01:focus {
	position: relative;
    font-size: .875rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
    background: none;
    background-color: var(--theme-color-02);
    padding: .75rem 1.5rem;
    border-radius: var(--border-radius-01);
    display: inline-block;
    text-align: center;
    border: none;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-01::after {
    position: absolute;
    content: "";
    display:block;
    left: 10%;
    right: 0;
    top: -5%;
    height: 110%;
    width: 110%;
    bottom: 0;
    border-radius: var(--border-radius-01);
    background-color: var(--dark-color);
    transform: skewX(45deg) scale(0,1);
    z-index: -1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-01:hover {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-01:hover::after {
    transform: skewX(45deg) scale(1,1);
}

.btn-cus-01 i {
    font-size: 1rem;
}

.btn-cus-02,
.btn-cus-02:focus {
	position: relative;
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
    background: none;
    background-color: var(--theme-color-02);
    padding: .75rem 1.5rem;
    border-radius: var(--border-radius-01);
    display: inline-block;
    text-align: center;
    border: none;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-02::after {
    position: absolute;
    content: "";
    display:block;
    left: 10%;
    right: 0;
    top: -5%;
    height: 110%;
    width: 110%;
    bottom: 0;
    border-radius: var(--border-radius-01);
    background-color: var(--theme-color-02);
    transform: skewX(45deg) scale(0,1);
    z-index: -1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-02:hover {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;;
}

.btn-cus-02:hover::after {
    transform: skewX(45deg) scale(1,1);
}

.btn-cus-02-02,
.btn-cus-02-02:focus {
	position: relative;
    font-size: .875rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
    background: none;
    background-color: var(--theme-color-02);
    padding: .75rem 1.5rem;
    border-radius: var(--border-radius-01);
    display: inline-block;
    text-align: center;
    border: none;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-02-02::after {
    position: absolute;
    content: "";
    display:block;
    left: 10%;
    right: 0;
    top: -5%;
    height: 110%;
    width: 110%;
    bottom: 0;
    border-radius: var(--border-radius-01);
    background-color: var(--dark-color);
    transform: skewX(45deg) scale(0,1);
    z-index: -1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-02-02:hover {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;;
}

.btn-cus-02-02:hover::after {
    transform: skewX(45deg) scale(1,1);
}

.btn-cus-03,
.btn-cus-03:focus {
	position: relative;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white-color);
    background: none;
    background-color: var(--theme-color-01);
    padding: .5rem 1.5rem;
    border-radius: var(--border-radius-04);
    display: inline-block;
    text-align: center;
    border: none;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-03::after {
    position: absolute;
    content: "";
    display:block;
    left: 10%;
    right: 0;
    top: -5%;
    height: 110%;
    width: 130%;
    bottom: 0;
    border-radius: var(--border-radius-01);
    background-color: var(--theme-color-02);
    transform: skewX(45deg) scale(0,1);
    z-index: -1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-03:hover {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;;
}

.btn-cus-03:hover:after {
    transform: skewX(45deg) scale(1,1);
}

.btn-cus-04 {
    border-radius: var(--border-radius-01);
    background-color: var(--theme-color-02);
    font-weight: 700;
    font-size: .9375rem;
    color: var(--white-color);
    letter-spacing: .48px;
    text-transform: capitalize;
    line-height: 1;
    padding: .875rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn-cus-04::after {
    position: absolute;
    content: "";
    border-radius: var(--border-radius-01);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--dark-color);
    transform-origin: right;
    transform: scalex(0);
    z-index: -1;
    transition: transform .7s
}

.btn-cus-04:hover {
    color: var(--white-color)
}

.btn-cus-04:hover::after {
    transform: scalex(1);
    transform-origin: left
}

.btn-cus-05,
.btn-cus-05:focus {
	position: relative;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--dark-color);
    background: none;
    background-color: var(--white-color);
    padding: .75rem 1.5rem;
    border-radius: var(--border-radius-01);
    display: inline-block;
    text-align: center;
    border: none;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-05::after {
    position: absolute;
    content: "";
    display:block;
    left: 10%;
    right: 0;
    top: -5%;
    height: 110%;
    width: 110%;
    bottom: 0;
    border-radius: var(--border-radius-01);
    background-color: var(--dark-color);
    transform: skewX(45deg) scale(0,1);
    z-index: -1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-05:hover {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-cus-05:hover::after {
    transform: skewX(45deg) scale(1,1);
}

.btn-cus-06 {
    border-radius: var(--border-radius-01);
    background-color: var(--white-color);
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-color);
    letter-spacing: .48px;
    text-transform: capitalize;
    line-height: 1;
    padding: .75rem 1.25rem;
    display: inline-flex;
    align-items: center;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn-cus-06::after {
    position: absolute;
    content: "";
    border-radius: var(--border-radius-01);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--dark-color);
    transform-origin: right;
    transform: scalex(0);
    z-index: -1;
    transition: transform .7s
}

.btn-cus-06:hover {
    color: var(--white-color)
}

.btn-cus-06:hover::after {
    transform: scalex(1);
    transform-origin: left
}

.btn-cus-07 {
    border-radius: 35px;
    background-color: var(--theme-color-03);
    font-weight: 500;
    font-size: .875rem;
    color: var(--dark-color);
    letter-spacing: .48px;
    text-transform: capitalize;
    line-height: 1;
    padding: .25rem .5rem;
    display: inline-flex;
    align-items: center;
    transition: .5s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn-cus-07::after {
    position: absolute;
    content: "";
    border-radius: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--theme-color-02);
    transform-origin: right;
    transform: scalex(0);
    z-index: -1;
    transition: transform .7s
}

.btn-cus-07:hover {
    color: var(--white-color)
}

.btn-cus-07:hover::after {
    transform: scalex(1);
    transform-origin: left
}

.cus-link,
.cus-link:focus {
    position: relative;
    display: inline-block;
    color: currentColor;
}

.cus-link:hover {
    color: var(--theme-color-02);
}

.cus-link::after,
.cus-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 100%;
    background-color: currentColor;
}

.cus-link::before {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.cus-link::after {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
}

.cus-link:hover::before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
}

.cus-link:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    transition: transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
}

.section-cus-01 {
    position: relative;
	padding: 8rem 0;
}

.section-cus-02 {
    position: relative;
	padding: 8rem 0 0 0;
}

.section-cus-03 {
    position: relative;
	padding: 0 0 8rem 0;
}

.section-cus-04 {
    position: relative;
	padding: 4rem 0;
}

.section-cus-05 {
    position: relative;
	padding: 0 0 4rem 0;
}

@media (max-width: 576px) {
	.section-cus-01 {
		padding: 4rem 0;	
	}
	.section-cus-02 {
		padding: 4rem 0 0 0;	
	}
	.section-cus-03 {
		padding: 0 0 4rem 0;	
	}
	.section-cus-04 {
		padding: 2rem 0;	
	}
    .section-cus-05 {
		padding: 0 0 2rem 0;	
	}
}

.page-title {
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
    position: relative;
    z-index: -2;
    width: auto;
    height: 60vh;
    max-height: 60vh;
	text-align: center;
	color: var(--white-color);
	background-color: var(--theme-color-02);
    border-radius: var(--border-radius-00);
    overflow: hidden;
}

.page-title::before {
	content: "";
    background-color: var(--dark-color-50);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-title h1 {
	color: var(--white-color);
	font-size: 4rem;
	font-weight: 900;
	letter-spacing: .125rem;
}

.page-title a,
.page-title a:focus {
	color: var(--white-color);
	display: inline-block;
	margin-right: .25rem;
}

.page-title a:hover {
	color: var(--white-color-75);
}

.page-title a::after {
    content: "/";
	margin-left: .5rem;
	color: var(--white-color);
}

.page-title span {
	margin-right: .25rem;
	color: var(--white-color);
}

.page-title span::after {
    content: "/";
	margin-left: .5rem;
	color: var(--white-color);
}

@media (max-width: 576px) {
	.page-title {
        height: 25vh;
        max-height: 25vh;
    }
    .page-title h1 {
		font-size: 2.25rem;
	}
}

.page-title .page-title-text {
    position: absolute;
    width: calc(100% - 2.5rem);
    bottom: 10%;
    left: 1.25rem;
    margin: auto;
}

.page-title.page-title-02 {
    height: 30vh;
    max-height: 30vh;
}

.row-cus-01 {
    display: flow-root;
}

.col-cus-01 {
    float: left;
}

.col-cus-02 {
    float: right;
}

@media (max-width: 992px) {
	.row-cus-01 {
		display: flex;
	}
}

.p-cus-01 {
	font-weight: 400;
	line-height: 1.75rem;
    color: var(--dark-color);
}

.p-cus-01 a,
.p-cus-01 a:focus {
	position: relative;
    display: inline-block;
    color: currentColor;
}

.p-cus-01 a:hover {
    color: var(--theme-color-02);
}

.p-cus-01 a::after,
.p-cus-01 a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 100%;
    background-color: currentColor;
}

.p-cus-01 a::before {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.p-cus-01 a::after {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
}

.p-cus-01 a:hover::before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
}

.p-cus-01 a:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    transition: transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
}

.p-cus-01 ul,
.p-cus-01 ol {
    padding-left: 1.25rem;
    line-height: 1.875;
}

.p-cus-01 ul li {
    list-style: disc;
}

.p-cus-01 ol li {
    list-style: auto;
}

.small-title {
	color: var(--theme-color-02);
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-left: 2.75rem;
	position: relative;
	display: inline-block;
}

.small-title::before {
	content: "";
	position: absolute;
	left: -2.75rem;
    top: 0.625rem;
    width: 2rem;
    height: 2px;
	background-color: var(--theme-color-02);
}

.small-title-02 {
	color: var(--white-color-75);
	margin-bottom: 1rem;
	text-transform: uppercase;
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: 1px;
	margin-left: 2.75rem;
	position: relative;
	display: inline-block;
}

.small-title-02::before {
	content: "";
	position: absolute;
	left: -2.75rem;
    top: 0.625rem;
    width: 2rem;
    height: 2px;
	background-color: var(--white-color-75);
}

.img-section-01 {
	position: relative;
}

.img-section-01 .img-sec-01 {
	position: relative;
	text-align: start;
}

.img-section-01 .img-sec-02 {
	position: absolute;
	right: 0;
	bottom: 0;
}

.img-section-01 .img-sec-03 {
	position: relative;
	bottom: 2rem;
	left: 6rem;
	display: inline-block;
}

.img-section-01 .img-sec-03 .high-01 {
	background-color: var(--theme-color-02);
	border-radius: 100%;
	color: var(--white-color);
	font-size: 1rem;
	font-weight: 500;
	padding: .5rem;
	text-align: center;
	width: 9rem;
	height: 9rem;
	line-height: 1.25rem;
	position: relative;
}

.img-section-01 .img-sec-03 .high-01 span {
	font-size: 4rem;
	font-weight: 900;
	display: block;
	line-height: normal;
}

.img-section-01 .img-sec-03 .high-01::after {
	content: "";
	background-color: var(--white-color);
	width: 9.5rem;
	height: 9.5rem;
	border-radius: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

@media (max-width: 576px) {
	.img-section-01 .img-sec-03 {
		left: 0;
	}
}

.img-cus-01 {
	position: relative;
}

.img-cus-01::before {
	content: "";
	position: absolute;
    left: -1.5rem;
    top: 2rem;
    background-color: var(--theme-color-02);
    height: 400px;
    width: 1.5rem;
	z-index: 0;
}

.img-cus-01::after {
	content: "";
	position: absolute;
    right: 1rem;
    bottom: 0;
    background-color: var(--theme-color-02);
    height: 270px;
    width: 1.5rem;
	z-index: 1;
}

.fact-01 {
	border: 1px solid var(--theme-color-02);
	border-radius: 0;
	background-color: var(--white-color);
	padding: 1.5rem;
	position: relative;
}

.fact-01 i {
    font-size: 4rem;
    margin-right: 2rem;
    position: relative;
    top: .75rem;
}

.fact-01 .counter-number {
    display: inline-block;
    font-size: 3rem;
    font-weight: 900;
	color: var(--theme-color-02);
	line-height: normal;
}

.fact-01 p {
    font-weight: 700;
}

.img-cus-02 {
	position: relative;
	padding: .25rem;
	border: 1px solid var(--theme-color-02-25);
	border-radius: .5rem;
}

.img-cus-04 {
	position: relative;
	padding: .25rem;
	border: 1px solid var(--white-color-25);
	border-radius: .5rem;
}

.p-point p {
    margin-left: 1.25rem;
    margin-top: .5rem;
    display: block;
    position: relative;
}

.p-point p:first-child {
    margin-top: 0;
}

.p-point p::before {
    content: "\f111";
    font-family: var(--font-awesome);
    font-size: .5rem;
    font-weight: 900;
    color: var(--dark-color);
    position: absolute;
    left: -1.25rem;
    top: 8px;
}

.p-point-in p {
    margin-left: 1.5rem;
    margin-top: .5rem;
    display: block;
    position: relative;
    color: var(--dark-color);
}

.p-point-in p:first-child {
    margin-top: 0;
}

.p-point-in p::before {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-weight: 500;
    color: var(--theme-color-02);
    position: absolute;
    left: -1.5rem;
    top: 2px;
}

.p-point-out p {
    margin-left: 1.25rem;
    margin-top: .5rem;
    display: block;
    position: relative;
    color: var(--dark-color);
}

.p-point-out p:first-child {
    margin-top: 0;
}

.p-point-out p::before {
    content: "\f00d";
    font-family: var(--font-awesome);
    font-weight: 500;
    color: var(--theme-color-01);
    position: absolute;
    left: -1.25rem;
    top: 1px;
}

.ifram-map {
	border: none;
    width: 100%;
    height: 30rem;
    margin: 0;
	margin-bottom: -.5rem;
    margin-top: 1.5rem;
    padding: .25rem;
    border: 1px solid var(--dark-color-15);
    border-radius: var(--border-radius-01);
}

.contact-cus-01 {
	display: flex;
	padding: 1rem 0;
}

.contact-cus-01 i {
	color: var(--theme-color-02);
	font-size: 2rem;
	margin-right: 1.5rem;
	position: relative;
    top: .25rem;
}

.contact-cus-01 p {
	font-size: 1.125rem;
	font-weight: 400;
}

.contact-cus-01 p span {
	font-size: 1.25rem;
	font-weight: 700;
	display: block;
}

.contact-cus-01 p a,
.contact-cus-01 p a:focus {
	display: block;
	color: var(--dark-color);
	font-weight: 400;
	font-size: 1.125rem;
}

.contact-cus-01 p a:hover {
	color: var(--theme-color-02);
}

.home-page-title {
    width: 100%;
    margin: 0;
    height: auto;
	text-align: center;
	font-size: 1.125rem;
	color: var(--white-color);
    border-radius: var(--border-radius-00);
    position: relative;
    overflow: hidden;
}

.carousel-control-next,
.carousel-control-prev {
    width: 10%;
    transition: opacity .5s ease;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    bottom: 10%;
    position: absolute;
}

.home-page-title {
    width: 100%;
    height: 100%;
	text-align: center;
	font-size: 1.125rem;
	color: var(--white-color);
    border-bottom: var(--theme-color-02-25);
    position: relative;
}

.home-page-title .slide-bg::before {
    content: "";
    background-color: var(--dark-color-50);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-page-title .slide-bg img {
    object-fit: cover;
    width: 100%;
    height: 60vh;
}

.home-page-title .slide-bg .slide-bg-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 50% 50%;
    position: relative;
    z-index: -2;
    width: auto;
    height: 60vh;
    max-height: 60vh;
    text-align: center;
    font-size: 1.125rem;
    color: var(--white-color);
    background-color: var(--white-color);
    border-bottom: var(--theme-color-02-25);
}

.carousel-caption {
    bottom: 4rem;
    padding-top: .5rem;
    padding-bottom: 0;
    color: var(--white-color);
    left: 10%;
    right: 10%;
}

.home-page-title .carousel-caption .slide-title {
	color: var(--white-color);
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: .125rem;
	line-height: 3.5rem;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.home-page-title .carousel-caption p {
	color: var(--white-color);
	font-size: 1.125rem;
	font-weight: 400;
    margin: 0 auto;
    width: 80%;
	position: relative;
	display: block;
	z-index: 1;
}

@media (max-width: 576px) {
	.home-page-title .carousel-caption .slide-title {
		font-size: 2rem !important;
		line-height: 2.5rem !important;
	}
	.home-page-title .carousel-caption p {
		width: 100% !important;
        display: none !important;
	}
	.home-page-title .p-cus-2 {
		display: none!important;
	}
    .home-page-title .slide-bg .slide-bg-img {
        height: 40vh;
        max-height: 40vh;
    }
}

.home-slide-01 {
    position: absolute;
    left: 40%;
    bottom: -2.5rem;
	z-index: -1;
}

.home-slide-01 img {
    max-height: 80vh;
	width: auto;
}

.img-cus-03 {
	position: relative;
	top: -8rem;
}

@media (max-width: 576px) {
	.img-cus-03 {
		top: -4rem;
	}
}

.tour-cus-01 {
    position: relative;
    background-color: var(--white-color);
    border-radius: var(--border-radius-01);
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 24px 0 var(--dark-color-15) !important;
    overflow: hidden;
}

.tour-cus-01 .tour-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    border-radius: var(--border-radius-00);
    transition: all .5s ease-out;
}

.tour-cus-01 .tour-card-img .tour-img {
    position: relative;
    margin: 0;
	padding: 0;
	padding-top: 60%;
    overflow: hidden;
    border-radius: var(--border-radius-00);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tour-cus-01 .tour-img::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}

.tour-cus-01:hover .tour-card-img .tour-img {
    transform: scale(1.05)
}

.tour-cus-01:hover .tour-card-img .tour-img::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
}

.tour-cus-01 .tour-info {
    padding: 1rem 1rem 0 1rem;
    position: relative;
    top: -1rem;
    background-color: var(--white-color);
    border-radius: var(--border-radius-01);
}

.tour-cus-01 .tour-info .tour-info-cus {
    position: relative;
    display: inline-block;
}

.tour-cus-01 .tour-info .location {
    font-size: .875rem;
    font-weight: 400;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: .5rem;
    margin-left: 1.25rem;
    position: relative;
}

.tour-cus-01 .tour-info .location i {
    font-size: .875rem;
    color: var(--theme-color-02);
    position: absolute;
    left: -1.25rem;
    top: 3px;
}

.tour-cus-01 .tour-info .date {
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.tour-cus-01 .tour-info .date i {
    font-size: .875rem;
    color: var(--theme-color-02);
}

.tour-cus-01 .tour-info .tour-cat {
    color: var(--white-color);
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: 0;
    display: inline-block;
    text-align: center;
    background-color: var(--theme-color-02);
    padding: .25rem .5rem;
    min-width: 5rem;
    border-radius: var(--border-radius-02);
}

.tour-cus-01 .tour-info a .tour-name,
.tour-cus-01 .tour-info a .tour-name:focus {
    margin: 0 0 .5rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
    color: var(--dark-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tour-cus-01 .tour-info a .tour-name:hover {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.tour-cus-01 .tour-info .tour-des {
    color: var(--dark-color-75);
    margin-bottom: 1rem;
    font-size: .875rem;
}

.tour-cus-01 .batch {
    position: absolute;
    top: .5rem;
    left: .5rem;
    z-index: 1;
}

.tour-cus-01 .batch .date {
    color: var(--white-color);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .6px;
    text-transform: uppercase;
    display: table;
    padding: .5rem .75rem;
    margin-top: .125rem;
    background-color: var(--dark-color);
    border-radius: var(--border-radius-01);
}

.tour-cus-01 .batch .location {
    background-color: var(--white-color);
    border: 1px solid var(--dark-color-25);
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.4;
    padding: .5rem .75rem;
    display: inline-block;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
}

.tour-cus-01 .batch .location i {
    font-size: 1.25rem;
    color: var(--theme-color-02);
}

.tour-cus-01 .batch .offer {
    color: var(--white-color);
    font-weight: 700;
    line-height: 1;
    letter-spacing: .6px;
    display: inline-block;
    text-align: center;
    padding: .5rem .75rem;
    background-color: var(--theme-color-02);
    border-radius: var(--border-radius-01);
}

.tour-cus-01 .card-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-color-15);
}

.tour-cus-01 .card-content-bottom .price-area {
    line-height: 1;
}

.tour-cus-01 .card-content-bottom .price-area .price-from {
    color: var(--dark-color-75);
    font-size: .75rem;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: .24px;
    margin-bottom: 0;
}

.tour-cus-01 .card-content-bottom .price-area span {
    color: var(--theme-color-02);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.tour-cus-01 .card-content-bottom .price-area .old-price {
    color: var(--dark-color-50);
    font-size: .875rem;
    text-decoration: line-through;
}

.blog-cus-01 {
    position: relative;
    background-color: var(--white-color);
    border-radius: var(--border-radius-01);
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 24px 0 var(--dark-color-15) !important;
    overflow: hidden;
}

.blog-cus-01 .blog-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: inline-block;
    transition: all .5s ease-out;
}

.blog-cus-01 .blog-card-img .blog-img {
    position: relative;
    margin: 0;
	padding: 0;
	padding-top: 60%;
    overflow: hidden;
    border-radius: var(--border-radius-06);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-cus-01 .blog-img::after {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}

.blog-cus-01:hover .blog-card-img .blog-img {
    transform: scale(1.05)
}

.blog-cus-01:hover .blog-card-img .blog-img::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent
}

.blog-cus-01 .blog-info {
    padding: .25rem 1rem 1rem 1rem;
    position: relative;
}

.blog-cus-01 .blog-info .blog-cat {
    color: var(--white-color);
    font-size: .875rem;
    font-weight: 500;
    padding: .25rem .75rem;
    position: absolute;
    top: -35px;
    border-radius: var(--border-radius-11);
    left: 0;
    min-width: 10rem;
    text-align: center;
    z-index: 1;
    background-color: var(--theme-color-02)
}

.blog-cus-01 .blog-info a .blog-name,
.blog-cus-01 .blog-info a .blog-name:focus {
    margin: .25rem 0 .5rem 0;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-block;
    color: var(--dark-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-cus-01 .blog-info a .blog-name:hover {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-cus-01 .blog-info p {
    color: var(--dark-color-75);
    margin-bottom: 1rem;
    font-size: .875rem;
}

.blog-cus-01 .blog-info .blog-date {
    color: var(--dark-color-75);
    font-size: .75rem;
    font-weight: 600;
}

.blog-cus-01 .blog-info .blog-link a,
.blog-cus-01 .blog-info .blog-link a:focus {
    color: var(--theme-color-02);
    font-weight: 700;
    font-size: .9375rem;
    display: inline-block;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-cus-01 .blog-info .blog-link a i,
.blog-cus-01 .blog-info .blog-link a i:focus {
    font-size: 1.5rem;
    position: relative;
    top: 4px;
    transform: rotate(-25deg);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.blog-cus-01 .blog-info .blog-link a:hover {
    color: var(--dark-color);
}

.blog-cus-01 .blog-info .blog-link a:hover i {
    transform: rotate(0deg);
    color: var(--dark-color);
}

.pagination-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-color-25);
}

.pagination-list li {
    margin-right: 20px
}

.pagination-list li a,
.pagination-list li a:focus {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize
}

.pagination-list li a:hover {
    color: var(--theme-color-02);
}

.pagination-list li a.active {
    color: var(--dark-color-50);
}

.blog-meta {
    padding: 1rem 0;
    margin: 1.5rem 0 1rem 0;
    border-top: 1px solid var(--dark-color-15);
    border-bottom: 1px solid var(--dark-color-15);
}

.blog-meta .blog-meta-date {
    color: var(--dark-color-75);
    text-align: end;
}

.tour-info-det {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    margin: 0 0 1rem 0;
    padding: 1rem .5rem;
    border-top: 1px solid var(--dark-color-15);
    border-bottom: 1px solid var(--dark-color-15);
}

.tour-info-det li {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding-right: 40px;
    font-weight: 500;
    color: var(--dark-color);
}

.tour-info-det li i {
    font-size: 1.125rem;
    color: var(--theme-color-02);
}

.article-cont {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.article-cont h3 {
    color: var(--theme-color-02);
    margin-top: 1rem;
}

.article-cont p {
    color: var(--dark-color);
    line-height: 1.875;
}

.article-cont ul,
.article-cont ol {
    padding-left: 1.25rem;
    line-height: 1.875;
}

.article-cont ul li {
    list-style: disc;
}

.article-cont ol li {
    list-style: auto;
}

.article-cont p a,
.article-cont p a:focus {
    font-weight: 700;
    color: var(--theme-color-02);
    border-bottom: 1px solid var(--theme-color-02);
}

.article-cont p a:hover {
    color: var(--theme-color-02);
    border-bottom: 1px solid var(--theme-color-02);
}

.article-cont ul a,
.article-cont ul a:focus,
.article-cont ol a,
.article-cont ol a:focus,
.article-cont ul li a,
.article-cont ul li a:focus,
.article-cont ol li a,
.article-cont ol li a:focus {
    font-weight: 700;
    color: var(--theme-color-02);
    border-bottom: 1px solid var(--theme-color-02);
}

.article-cont ul a:hover,
.article-cont ol a:hover,
.article-cont ul li a:hover,
.article-cont ol li a:hover {
    color: var(--dark-color);
    border-bottom: 1px solid var(--dark-color);
}

.toursswiper-01 {
	padding-bottom: 7rem;
    padding-top: 0;
}

.toursswiper-01 .swiper-button-prev,
.toursswiper-01.swiper-container-rtl .swiper-button-next {
    left: 45%;
    right: auto;
    top: calc(100% - 42px);
    border-radius: 100%;
    padding: 1.5rem;
	text-align: center;
	border: 1px solid var(--theme-color-02);
	background-color: var(--transparent-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-prev::after {
    content: "\f104";
	font-family: var(--font-awesome);
    color: var(--theme-color-02);
	font-size: 2rem;
    font-weight: 300;
    position: absolute;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-prev:hover {
    background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-prev:hover::after {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-next,
.toursswiper-01.swiper-container-rtl .swiper-button-prev {
    right: 45%;
    left: auto;
    top: calc(100% - 42px);
    border-radius: 100%;
    padding: 1.5rem;
	text-align: center;
	border: 1px solid var(--theme-color-02);
	background-color: var(--transparent-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-next::after {
    content: "\f105";
	font-family: var(--font-awesome);
    color: var(--theme-color-02);
	font-size: 2rem;
    font-weight: 300;
    position: absolute;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-next:hover {
    background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.toursswiper-01 .swiper-button-next:hover::after {
	color: var(--white-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
	.toursswiper-01 .swiper-button-prev,
	.toursswiper-01.swiper-container-rtl .swiper-button-next {
		left: 40%;
	}
	
	.toursswiper-01 .swiper-button-next,
	.toursswiper-01.swiper-container-rtl .swiper-button-prev {
		right: 40%;
	}
}

@media (max-width: 576px) {
	.toursswiper-01 .swiper-button-prev,
	.toursswiper-01.swiper-container-rtl .swiper-button-next {
		left: 33%;
	}
	
	.toursswiper-01 .swiper-button-next,
	.toursswiper-01.swiper-container-rtl .swiper-button-prev {
		right: 33%;
	}
}

.icon-cus-01 {
	margin-right: 1.5rem;
    font-size: 3rem;
    color: var(--theme-color-02);
    position: relative;
    top: -1rem;
}

.section-full-01 {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
	position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
}

@media (max-width: 992px) {
	.section-full-01 {
		background-attachment: scroll;
	}
}

.section-full-01::before {
	content: "";
	background-color: var(--theme-color-02-50);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	z-index: -1;
}

.section-full-cont {
	padding: 6rem 0;
	color: var(--white-color);
}

.section-full-cont h5 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.section-full-cont h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.section-full-cont h6 {
	color: var(--white-color);
}

.section-full-cont p {
	margin-bottom: 2rem;
}

.section-full-cont .counter-number {
	display: inline-block;
	font-size: 3rem;
    font-weight: 600;
}

.section-full-cont i {
	display: inline-block;
    font-size: 2rem;
    position: relative;
    top: 4px;
}

.section-gradient-01 {
    background: var(--mask-color-01);
	width: 100vw;
}

.section-gradient-over {
	background: var(--mask-color-02);
	display: inline-grid;
	width: 100vw;
}

.text-word-01 {
	width: 100vw;
	color: var(--theme-color-02);
    font-size: 8rem;
    font-weight: 700;
    line-height: 10rem;
	z-index: -1;
	white-space: nowrap;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.text-word-02 {
	width: 100vw;
	color: var(--transparent-color);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--theme-color-02-75);
    font-size: 8rem;
    font-weight: 700;
    line-height: 10rem;
	z-index: -1;
	white-space: nowrap;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.scroll-lef-01 {
	display: inline-block;
	-webkit-animation: scrolling-left-01 90s infinite linear;
    animation: scrolling-left-01 90s infinite linear;
}

.scroll-lef-02 {
	display: inline-block;
	-webkit-animation: scrolling-left-02 90s linear infinite;
	animation: scrolling-left-02 90s linear infinite;
}

@keyframes scrolling-left-01 {
  100% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
  }
}

@keyframes scrolling-left-02 {
  100% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
  }
}

@media (max-width: 992px) {
	.text-word-01 {
		font-size: 6rem;
		line-height: 7rem;;
	}

	.text-word-02 {
		font-size: 5rem;
		line-height: 6rem;
	}	
}

@media (max-width: 576px) {
	.text-word-01 {
		font-size: 4rem;
		line-height: 4rem;
	}

	.text-word-02 {
		-webkit-text-stroke-width: 1px;
		font-size: 4rem;
		line-height: 4rem;
	}	
}

.section-bg-cus-01 {
	background: linear-gradient(180deg, var(--theme-color-02) 90%, var(--transparent-color) 10%);
}

.widget-box {
	background-color: var(--white-color);
    border-radius: var(--border-radius-01);
    padding: 1rem;
    position: relative;
    box-shadow: 0 0 24px 0 var(--dark-color-15) !important;
}

.widget-box .widget-title {
	color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid var(--dark-color);
    display: inline-block;
    margin-bottom: 1.5rem;
    line-height: 1.25rem;
}

.widget-box .widget-title-bg {
	color: var(--white-color);
    font-size: 1.25rem;
    font-weight: 700;
    background-color: var(--theme-color-02);
    text-align: center;
    display: block;
    margin-bottom: 1rem;
    padding: .75rem 0;
    border-radius: var(--border-radius-06);
}

.widget-box .widget-period {
	color: var(--dark-color);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.widget-box .widget-categories li {
    margin-bottom: 1rem;
    white-space: normal;
    color: var(--dark-color);
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-categories li::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    font-weight: 400;
    border-radius: 100%;
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    left: 0;
    top: 4px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    color: var(--dark-color);
    font-weight: 400;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-categories li:hover::before,
.widget-box .widget-categories li.active::before {
    border: 1px solid var(--theme-color-02);
    background-color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-categories li:hover a,
.widget-box .widget-categories li.active a {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-tags {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.widget-box .widget-tags a,
.widget-box .widget-tags a:focus {
    color: var(--dark-color-75);
    background-color: var(--white-color);
    font-size: .875rem;
    font-weight: 600;
    display: inline-block;
    line-height: 1;
    padding: .5rem .75rem;
    border: 1px solid var(--dark-color-15);
    border-radius: var(--border-radius-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-tags a:hover {
    color: var(--white-color);
    background-color: var(--theme-color-02);
    border: 1px solid var(--theme-color-02);
    border-radius: var(--border-radius-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li {
    margin-bottom: 1rem;
    white-space: normal;
    color: var(--dark-color);
    position: relative;
    display: block;
    padding-left: 2rem;
    display: flex;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li::before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-weight: 400;
    border-radius: 100%;
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    left: 0;
    top: 1px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    color: var(--dark-color);
    font-weight: 400;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li:hover::before {
    background-color: var(--dark-color-15);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li.active::before {
    border: 6px solid var(--theme-color-02);
    background-color: var(--transparent-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li:hover a {
    color: var(--dark-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-destination li.active a {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-type .form-outline {
    margin-bottom: 1rem;
}

.widget-box .widget-type .form-outline .form-check-label {
    cursor: pointer;
}

.widget-box .widget-type .form-outline .form-check-input {
    margin-right: .75rem;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-type .form-outline:hover .form-check-input {
    cursor: pointer;
    background-color: var(--theme-color-02);
    border: 1px solid var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-type .form-outline .form-check-input:checked {
    background-color: var(--theme-color-02);
    border-color: var(--theme-color-02);
}

.widget-box .widget-type .form-outline .form-check-input:checked[type=checkbox]::after {
    color: var(--white-color);
}

.widget-box .widget-post {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.widget-box .widget-post .widget-post-img {
    width: 40%;
    min-width: 40%;
    height: auto;
}

.widget-box .widget-post .widget-post-img-cus {
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 75%;
    overflow: hidden;
    border-radius: var(--border-radius-02);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.widget-box .widget-post a.blo-na-ti,
.widget-box .widget-post a.blo-na-ti:focus {
    color: var(--dark-color);
    font-size: .875rem;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 3px;
    display: block;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-post a.blo-na-ti:hover {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-post a.date,
.widget-box .widget-post a:focus.date {
    color: var(--dark-color-75);
    font-size: .75rem;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 3px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-post a:hover.date {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .banner-card-01 {
    position: relative;
    border-radius: var(--border-radius-01);
}

.widget-box .banner-card-01.theme-01::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--theme-color-02);
    border-radius: var(--border-radius-01);
}

.widget-box .banner-card-01.theme-02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color-75);
    border-radius: var(--border-radius-01);
}

.widget-box .banner-card-01 .banner-card-01-img {
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 60%;
    overflow: hidden;
    border-radius: var(--border-radius-07);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.widget-box .banner-card-01 .banner-content-wrap {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-radius: var(--border-radius-05);
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}

.widget-box .banner-card-01::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    border: 1px solid var(--white-color-50);
    border-radius: var(--border-radius-01);
}

.widget-box .banner-card-01 .banner-title {
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
}

.widget-box .banner-card-01 p {
    color: var(--white-color);
    font-size: .75rem;
    margin: .5rem 0 1rem 0;
}

.widget-box .widget-social {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-box .widget-social li {
    position: relative;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-social li::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -17px;
    background: var(--dark-color-50);
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.widget-box .widget-social li:first-child:before {
    display: none;
}

.widget-box .widget-social li a,
.widget-box .widget-social li a:focus {
    color: var(--dark-color-50);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.widget-box .widget-social li a:hover {
    color: var(--theme-color-02)
}

.widget-box .widget-prices li {
    margin-bottom: .75rem;
    white-space: normal;
    position: relative;
    color: var(--theme-color-02);
    font-size: 1.125rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.widget-box .widget-prices li span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 59%;
    flex-wrap: wrap;
    color: var(--dark-color);
    font-weight: 500;
    background-color: var(--dark-color-10);
    padding: .25rem .5rem;
    margin-right: .97rem;
    font-size: .9375rem;
    text-align: left;
    border-radius: var(--border-radius-02);
}

.widget-box .widget-prices li .old-price {
    color: var(--dark-color-75);
    font-size: .875rem;
    text-decoration: line-through;
}

@media (max-width: 576px) {
    .widget-box .widget-prices li {
        display: inline-block;
        width: 100%;
    }
    .widget-box .widget-prices li span {
        width: 100%;
        font-size: .875rem;
        text-align: center;
        display: inline-block;
    }
    .widget-box .widget-prices li .old-price {
        display: inline-block;
    }
}

.widget-box .price-area {
    margin-bottom: 1.5rem;
    text-align: center;
}

.widget-box .price-area h6 {
    color: var(--dark-color-75);
    font-size: .875rem;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .24px;
    margin-bottom: .25rem;
}

.widget-box .price-area .price-from {
    color: var(--dark-color-75);
    font-size: .875rem;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .24px;
    margin-bottom: .25rem;
}

.widget-box .price-area .price-cus {
    color: var(--theme-color-02);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.widget-box .price-area .offer {
    color: var(--white-color);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: .6px;
    display: block;
    padding: .75rem;
    background-color: var(--theme-color-02);
    margin-bottom: .75rem;
    border-radius: var(--border-radius-01);
}

.widget-box .price-area .old-price {
    color: var(--dark-color-75);
    font-size: 1.125rem;
    text-decoration: line-through;
}

.widget-box .price-area .date {
    color: var(--white-color);
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .6px;
    display: block;
    padding: .5rem .75rem;
    margin-bottom: .75rem;
    margin-top: -.5rem;
    background-color: var(--dark-color);
    border-radius: var(--border-radius-01);
}

.widget-cus-03 {
    background-color: var(--dark-color-05);
    border: 1px solid var(--dark-color-15);
    border-radius: var(--border-radius-01);
    padding: 1rem;
    overflow: hidden;
}

.tour-det {
	text-align: center;
}

.tour-det i {
	font-size: 1.5rem;
    display: inline-block;
    margin-bottom: .5rem;
    border: 1px solid var(--theme-color-02-75);
    color: var(--theme-color-02);
    border-radius: 50%;
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    padding: 1rem 0;
}

.tour-det .widget-box-price {
    color: var(--theme-color-02);
    font-weight: 600;
}

.tour-det .widget-box-title {
	color: var(--theme-color-02);
    font-weight: 600;
}

.day-iti {
    position: relative;
    margin-top: 2.5rem;
}

.day-num {
    display: grid;
    background-color: var(--theme-color-02);
    color: var(--white-color);
    width: 7rem;
    height: 7rem;
    text-align: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--border-radius-01);
    margin-bottom: 1rem;
}

.day-tit {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.day-info {
    display: block;
    position: relative;
    padding-left: 1.5rem;
}

.day-info i {
    top: 4px;
    right: auto;
    bottom: auto;
    left: 0;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--theme-color-02);
}

.day-info .meals-cus {
    margin-bottom: .25rem;
    color: var(--theme-color-02);
    font-weight: 700;
}

.day-meals {
    margin-left: -1.5rem;
}

.day-meals .meals {
    margin-left: 1.25rem;
    margin-right: .75rem;
    color: var(--dark-color-75);
    display: inline-block;
    font-weight: 500;
    position: relative;
}

.day-meals .meals:last-child {
    margin-right: 0;
}

.day-meals .meals.active {
    color: var(--theme-color-02);
}

.day-meals .meals::before {
    content: "\f00d";
    font-family: var(--font-awesome);
    font-weight: 500;
    color: va(--white-color-25);
    position: absolute;
    left: -1.25rem;
}

.day-meals .meals.active::before {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-weight: 500;
    color: var(--theme-color-02);
    position: absolute;
    left: -1.25rem;
}

.trip-gallery {
    display: grid;
    grid-template-columns: 50% 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.trip-gallery .isotope:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.trip-gallery .isotope:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.trip-gallery .isotope:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.trip-gallery .isotope:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.trip-gallery .isotope:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.trip-gallery .isotope:nth-child(n+6) {
    display: none;
}

.tour-trip-img-inner {
    position: relative;
    padding: 0;
    padding-top: 75%;
    margin: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    border-radius: var(--border-radius-01);
    overflow: hidden;
}

.tour-trip-img-inner::after {
    content: "";
    background-color: var(--dark-color-50);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0);
    transition: all .5s ease-in-out;
}

.tour-trip-img-inner:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease-in-out;
}

.tour-trip-img-inner::before {
    content: "\f06e";
    font-family: var(--font-awesome);
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--white-color);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1.25rem;
    margin-left: -1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    opacity: 0;
    transform: scale(0);
    z-index: 1;
    transition: all .5s ease-in-out;
}

.tour-trip-img-inner:hover::before {
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease-in-out;
}

.tour-trip-img-inner.more::after {
    content: "";
    background-color: var(--dark-color-15);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease-in-out;
}

.tour-trip-img-inner.more::before {
    content: "+ View More Images";
    font-weight: 400;
    font-size: .875rem;
    color: var(--white-color);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    width: 100%;
    height: auto;
    text-align: center;
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    transition: all .5s ease-in-out;
}

@media (max-width: 576px) {
    .trip-gallery {
        gap: .5rem;
        grid-template-columns: 49% 1fr 1fr;
    }
    .trip-gallery .isotope:nth-child(1) {
        grid-column: 1 / 1;
        grid-row: auto;
        width: 205% !important;
    }
    .trip-gallery .isotope:nth-child(2) {
        grid-column: 2 / 1;
        grid-row: 2 / 2;
    }
    .trip-gallery .isotope:nth-child(3) {
        grid-column: 2 / 4;
        grid-row: 2 / 2;
    }
    .trip-gallery .isotope:nth-child(4) {
        grid-column: 2 / 1;
        grid-row: 3 / 3;
    }
    .trip-gallery .isotope:nth-child(5) {
        grid-column: 2 / 4;
        grid-row: 3 / 3;
    }
}

.popupvid {
    position: relative;
}

.popupvid .video-cus {
	width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--theme-color-02-50);
    border-radius: .5rem;
}

.popupvid .video-cus::before {
	content: "\f144";
	font-family: var(--font-awesome);
	font-weight: 300;
    font-size: 2rem;
	color: var(--white-color);
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	z-index: 1;
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.popupvid:hover .video-cus::before {
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.popupvid .video-cus::after {
	content: "";
	background-color: var(--dark-color-25);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.popupvid:hover .video-cus::after {
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.isotope {
	width: 100% !important;
    display: inline-block;
}

.isotope.isotope-cus {
	position: relative;
    border-radius: var(--border-radius-01);
    overflow: hidden;
}

.isotope.isotope-cus a::before {
	content: "\f00e";
	font-family: var(--font-awesome);
	font-weight: 300;
    font-size: 2rem;
	color: var(--white-color);
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
    opacity: 1;
	-webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	z-index: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.isotope.isotope-cus:hover a::before {
	opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.isotope.isotope-cus a::after {
	content: "";
	background-color: var(--dark-color-25);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.isotope.isotope-cus:hover a::after {
	opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.isotope .isotope-img {
    position: relative;
    padding: 0;
    padding-top: 60%;
    margin: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
    border-radius: var(--border-radius-01);
    filter: grayscale(0.25);
    -webkit-filter: grayscale(0.25);
    -moz-filter: grayscale(0.25);
    -o-filter: grayscale(0.25);
    -ms-filter: grayscale(0.25);
}

.isotope.isotope-cus:hover .isotope-img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
}

.tabs-cus-01 .nav-pills {
	border-bottom: 1px solid var(--theme-color-02-25);
    padding-bottom: 1.5rem;
}

.tabs-cus-01 .nav-pills .nav-link {
    background: 0 0;
    border: 1px solid var(--theme-color-02);
    border-radius: .25rem;
	margin: 0 .5rem;
	color: var(--theme-color-02);
	padding: .5rem 2.5rem;
    font-weight: 600;
}

.tabs-cus-01 .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--white-color);
    background-color: var(--theme-color-02);
}

.single-contact {
    border: 1px solid var(--dark-color-15);
    border-radius: var(--border-radius-01);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    margin-top: 2.5rem;
}

.single-contact .title {
    line-height: 1;
    background-color: var(--white-color);
    position: absolute;
    left: 35px;
    top: -8px;
    padding: 0 20px;
}

.single-contact .title h6 {
    color: var(--dark-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0
}

.single-contact .icon {
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    border-radius: 50px;
    background-color: var(--theme-color-02);
    display: flex;
    align-items: center;
    justify-content: center
}

.single-contact .icon i {
    color: var(--white-color);
    font-size: 1.25rem;
}

.single-contact .content {
    line-height: 1
}

.single-contact .content h6 {
    margin-bottom: 0
}

.single-contact .content h6 a,
.single-contact .content h6 a:focus {
    color: var(--dark-color);
    line-height: 1.5rem;
    font-weight: 500;
}

.single-contact .content h6 a:hover {
    color: var(--theme-color-02);
}

@media (max-width: 576px) {
    body.tourbook {
        padding-bottom: 2rem;
    }

    .booknow-btn,
    .booknow-btn:focus,
    .booknow-btn:hover {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        padding: .5rem;
        z-index: 50;
        background-color: var(--white-color);
        color: var(--dark-color);
        font-weight: 700;
        border-radius: var(--border-radius-06);
        box-shadow: -3px -5px 20px var(--dark-color-15) !important;
    }

    .single-contact {
        padding: 1rem .5rem;
        margin-top: 1.5rem;
        gap: 8px;
    }
}

.about-img {
    position: relative;
    position: relative;
    margin: 0;
    padding: 0;
    padding-top: 90%;
    overflow: hidden;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    mask-image: url(../img/img-bg-vector.png);
    mask-size: cover;
    mask-repeat: no-repeat;
}

.activities-counter {
    padding: 40px 0;
    border-bottom: 1px solid rgba(16,12,8,.1);
    border-top: 1px solid rgba(16,12,8,.1)
}

@media(max-width: 767px) {
    .activities-counter {
        padding:25px 0
    }
}

.activities-counter .single-activity {
    display: flex;
    align-items: center;
    gap: 20px
}

.activities-counter .single-activity .icon i {
    color: var(--theme-color-02);
    font-size: 50px
}

.activities-counter .single-activity .content .number {
    display: flex;
    align-items: center;
    font-weight: 700;
    line-height: 1;
    color: var(--theme-color-02);
    margin-bottom: 4px
}

.activities-counter .single-activity .content .number .counter-value {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1
}

.activities-counter .single-activity .content .number span {
    font-size: 27px;
    display: inline-block;
    line-height: 1
}

.activities-counter .single-activity .content p {
    margin-bottom: 0;
    color: var(--dark-color);
    line-height: 22px;
    font-size: 16px;
    font-weight: 400
}

.activities-counter .divider {
    position: relative
}

.activities-counter .divider::after {
    content: "";
    height: 41px;
    width: 1px;
    background-color: rgba(19,20,26,.16);
    position: absolute;
    right: 0;
    top: 50%;
    left: unset;
    transform: translateY(-50%)
}

@media(max-width: 991px) {
    .activities-counter .divider::after {
        display:none;
        visibility: hidden
    }
}

.activities-counter.two {
    padding: 30px 0
}

@media(min-width: 992px) and (max-width:1199px) {
    .activities-counter.two {
        padding:20px 0
    }
}

.activities-counter.two .single-activity {
    gap: 10px
}

@media(min-width: 992px) and (max-width:1199px) {
    .activities-counter.two .single-activity {
        flex-direction:column
    }
}

.activities-counter.two .single-activity .content .number {
    font-weight: 600
}

@media(min-width: 992px) and (max-width:1199px) {
    .activities-counter.two .single-activity .content .number {
        justify-content:center
    }
}

.activities-counter.two .single-activity .content .number h5 {
    font-size: 22px
}

.activities-counter.two .single-activity .content .number span {
    font-size: 22px
}

.activities-counter.two .divider {
    position: relative
}

@media(max-width: 991px) {
    .activities-counter.two .divider::after {
        display:block;
        visibility: inherit
    }
}

@media(max-width: 767px) {
    .activities-counter.two .divider::after {
        display:none;
        visibility: hidden
    }
}

.page-over {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
width: 100vw;
height: 100vh;
background-color: var(--dark-color-50);
z-index: 1080;
display: none;
}

.page-over::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 3.5rem;
height: 3.5rem;
border: .25rem solid var(--white-color);
border-top: .25rem solid transparent;
border-radius: 50%;
animation: spin .5s linear 0s infinite;
margin-left: -1.75rem;
}

@keyframes spin {
from {
transform: rotate(0);
}
to{
transform: rotate(359deg);
}
}

/****** Offers ******/

.offers-pro {
    padding: .75rem 1rem;
    background-color: var(--theme-color-02);
    text-align: center;
    border-radius: var(--border-radius-00);
}

.offers-pro span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
    display: inline-block;
}

@media(max-width: 576px) {
    .offers-pro span {
        font-size: .9375rem;
    }
    .btn-cus-06 {
        font-size: 1rem;
        padding: .5rem 1rem;
    }
}

.filter-btn-cus {
   position: absolute;
   right: 0;
   top: -.75rem;
}


/****** Accordion ******/


.accordion-button:not(.collapsed) {
    color: var(--dark-color);
    background-color: var(--dark-color-10);
    font-weight: 600;
}

.accordion-button,
.accordion-button:focus {
    z-index: 3;
    border-color: var(--dark-color-10);
    font-weight: 600;
    outline: 0;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23151515'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a5694'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/****** Validate & Sweet Alert ******/

.form-outline {
    position: relative;
}

.form-outline .form-control:-ms-input-placeholder {
	color: var(--gray-color) !important;
	font-weight: 400 !important;
	opacity: 1 !important;
}

.form-outline .form-control::-ms-input-placeholder {
	color: var(--gray-color) !important;
	font-weight: 400 !important;
	opacity: 1 !important;
}

.form-outline .form-control {
    padding: .5rem .75rem;
	height: 2.625rem;
    font-size: .9375rem;
    color: var(--dark-color);
    background-color: var(--white-color);
    background-clip: padding-box;
    border: 1px solid var(--dark-color-15);
	border-radius: var(--border-radius-01);
}

.form-outline .textarea-01 {
    resize: none;
	height: 9rem;
}

.form-outline .textarea-02 {
    resize: none;
	height: 12rem;
}

.form-outline .invalid-feedback, .error {
    width: auto;
    position: absolute;
    bottom: -1.125rem;
    right: .5rem;
    z-index: 2;
    color: var(--red-color);
    font-size: .75rem;
    font-weight: 500;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

footer .form-outline .invalid-feedback, .error {
    width: auto;
    position: absolute;
    bottom: -1rem;
    right: 0;
    z-index: 2;
    color: var(--white-color-75);
    font-size: .75rem;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.form-outline.is-invalid .form-control {
    border: 1px solid var(--red-color) !important;
	border-right: none; 
}

.form-outline .form-label {
    margin-bottom: 0;
    margin-left: .25rem;
    font-size: .75rem;
    font-weight: 700;
}

.form-outline .form-control.input-select-cus {
    width: calc(100% - 12rem);
}

.pt-tailor-cus {
	margin-top: 1.5rem;
    padding: .5rem 0;
    font-size: 1rem;
    text-align: center;
    background-color: var(--theme-color-02);
    color: var(--white-color);
	border-radius: var(--border-radius-01);
}

@media (max-width: 576px) {
	.pt-tailor-cus {
		margin-top: .75rem;
		margin-left: .75rem;
    	margin-right: .75rem;
		width: calc(100% - 1.5rem);
	}
}

.form-outline .btn-light,
.form-outline .btn-light:focus {
    color: var(--dark-color);
    background-color: var(--transparent-color);
    border: none;
    outline: 0 !important;
    box-shadow: none !important;
}

.form-outline .btn.btn-light,
.form-outline .btn.btn-light:focus,
.form-outline .btn.btn-light:hover {
    display: inline-block;
    color: var(--dark-color);
    font-size: .9375rem;
    background-color: var(--transparent-color);
    border: none;
    padding: 0;
    border-radius: 0;
    outline: 0 !important;
    box-shadow: none !important;
}

.form-outline .btn.btn-light.bs-placeholder {
    color: var(--dark-color) !important;
}

.form-outline .dropdown-menu {
    padding: 0;
    left: -.75rem !important;
    font-size: 1rem;
    color: var(--dark-color);
    text-align: left;
    list-style: none;
    background-color: var(--white-color);
    background-clip: padding-box;
    border: 1px solid var(--white-color) !important;
    border-radius: var(--border-radius-01) !important;
    box-shadow: 0 0 5px 5px rgb(0 0 0 / 10%) !important;
}

@media (max-width: 576px) {
    .form-outline .dropdown-menu {
        left: -.75rem !important;
    }
}

.form-outline .bootstrap-select .dropdown-toggle .filter-option {
    left: 0;
    right: auto;
    float: left;
    text-align: left;
}

.bootstrap-select>.dropdown-toggle:after {
    margin-left: -0.5rem;
    color: var(--dark-color-75);
}

.form-outline .dropdown-item,
.form-outline .dropdown-item:focus {
    padding: .5rem .75rem;
    color: var(--dark-color);
    font-size: .9375rem;
}

.form-outline .dropdown-item:hover {
    color: var(--dark-color);
    background-color: var(--dark-color-15);
    padding: .5rem .75rem;
}

.form-outline .dropdown-item.active,
.form-outline .dropdown-item:active {
    color: var(--dark-color);
    text-decoration: none;
    background-color: var(--dark-color-25);
}

.form-outline .dropdown-item.selected {
    color: var(--dark-color);
    text-decoration: none;
    background-color: var(--dark-color-25);
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    right: 12px;
    top: 12px;
}

.form-outline .dropdown-item img {
	width: 1.5rem;
	height: auto;
	margin-right: .5rem;
    border: 1px solid var(--theme-color-02-50);
    position: relative;
    top: -2px;
}

.form-outline .filter-option-inner-inner img {
	width: 1.5rem;
	height: auto;
	margin-right: .5rem;
	border: 1px solid var(--theme-color-02-50);
    position: relative;
    top: -2px;
}

.daterangepicker {
    color: var(--dark-color) !important;
    background-color: var(--white-color) !important;
    border-radius: var(--border-radius-01);
    border: 1px solid var(--dark-color-25) !important;
    text-shadow: none !important;
	font-size: 1rem;
	margin-top: 2px;
}

.daterangepicker .calendar-table {
    border: 1px solid var(--dark-color-25);
    border-radius: 4px;
    background-color: var(--white-color);
}

.daterangepicker option.disabled, .daterangepicker td.disabled {
    color: var(--dark-color-50);
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker td.off, .daterangepicker td.off.end-date, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date {
    background-color: var(--white-color);
    border-color: var(--transparent-color);
    color: var(--dark-color-50);
}

.daterangepicker::before {
    display: none;
}

.daterangepicker::after {
    display: none;
}

.daterangepicker .btn-primary,
.daterangepicker .btn-primary:focus {
    color: var(--white-color);
    background-color: var(--theme-color-02);
    border-color: var(--theme-color-02);
	border-radius: var(--border-radius-01);
}

.daterangepicker .btn-primary:hover {
    color: var(--white-color);
    background-color: var(--theme-color-02);
    border-color: var(--theme-color-02);
}

.daterangepicker .btn-default,
.daterangepicker .btn-default:focus {
    color: var(--dark-color);
}

.daterangepicker .btn-default:hover {
    color: var(--theme-color-02);
}

.daterangepicker td.in-range {
    background-color: var(--dark-color-15);
    color: var(--theme-color-02);
    font-weight: 600;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: var(--dark-color-15);
	color: var(--theme-color-02);
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid var(--dark-color);
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
}

.daterangepicker td.start-date {
    border-radius: 0;
    font-weight: 600;
}

.daterangepicker td.end-date {
    border-radius: 0;
    font-weight: 600;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    margin: .25rem 0 0 1rem;
    padding: .5rem !important;
}

.bootstrap-datetimepicker-widget.dropdown-menu::after,
.bootstrap-datetimepicker-widget.dropdown-menu::before {
    display: none;
}

.bootstrap-datetimepicker-widget table td {
    border: 1px solid var(--dark-color-25) !important;
    text-shadow: none !important;
}

.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:focus,
.bootstrap-datetimepicker-widget table td.disabled:hover {
    text-decoration: line-through !important;
    color: var(--dark-color-50) !important;
    background-color: var(--transparent-color) !important;
    text-shadow: none !important;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover,
.bootstrap-datetimepicker-widget table td span.active {
    background-color: var(--dark-color-10) !important;
    color: var(--theme-color-02) !important;
    font-weight: 600 !important;
    text-shadow: none !important;
}

.bootstrap-datetimepicker-widget table td.day:hover,
.bootstrap-datetimepicker-widget table td.hour:hover,
.bootstrap-datetimepicker-widget table td.minute:hover,
.bootstrap-datetimepicker-widget table td.second:hover,
.bootstrap-datetimepicker-widget table td span.month:hover,
.bootstrap-datetimepicker-widget table td span.year:hover {
    background-color: var(--white-color-15);
}

.bootstrap-datetimepicker-widget table th.next,
.bootstrap-datetimepicker-widget table th.prev {
    position: relative;
    background-color: var(--transparent-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--white-color-15) !important;
}

.form-outline .form-check-input {
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    position: relative;
    top: -2px;
    width: 20px;
    height: 20px;
    margin-right: .5rem;
}

.form-outline .form-check-input[type=checkbox] {
    border-radius: var(--border-radius-02);
}

.form-outline .form-check-input:checked {
    background-color: var(--transparent-color);
    border-color: var(--dark-color);
}

.form-outline .form-check-input:checked[type=checkbox] {
    background-image: none;
}

.form-outline .form-check-input:checked[type=checkbox]::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: .875rem;
    font-weight: 400;
    color: var(--theme-color-02);
    position: relative;
    top: -3px;
    left: 2px;
}

.form-outline .form-check-input:checked[type=radio] {
    background-image: none;
}

.form-outline .form-check-input:checked[type=radio]::after {
    content: "\f111";
    font-family: var(--font-awesome);
    font-size: .625rem;
    font-weight: 800;
    color: var(--theme-color-02);
    position: absolute;
    top: 2px;
    left: 4px;
    width: 10px;
    height: 10px;
}

.form-outline .form-check-label {
    color: var(--dark-color);
    font-size: .875rem;
}

.form-outline.is-invalid .form-check-input {
    border: 1px solid var(--red-color);
}

.hr-cus {
    margin: 1rem 0;
    background-color: var(--dark-color-15);
    border: 0;
    opacity: 1;
}

.sweet-alert {
    padding: 1rem;
    border-radius: 0;
}

.sweet-alert h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: var(--theme-color-02);
}

.sweet-alert .text-muted {
    color: var(--dark-color) !important;
}

.sweet-alert .sa-confirm-button-container {
    position: relative;
    display: grid !important;
}

.sweet-alert .sa-icon.sa-success .sa-line {
    background-color: var(--green-color);
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    border: 4px solid var(--green-color) !important;
}

.sweet-alert .btn-primary,
.sweet-alert .btn-primary:focus {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: .5rem 2.5rem;
    border-radius: 0;
    color: var(--white-color);
    background-color: var(--theme-color-02);
    border: 1px solid var(--theme-color-02);
    display: inline-block;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.sweet-alert .btn-primary:hover {
    color: var(--white-color);
	background-color: var(--theme-color-02);
	border: 1px solid var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.sweet-overlay {
    background-color: var(--theme-color-02);
    opacity: .8 !important;
}


/****** Jssocials Shares ******/

.share-sec {
	display: inline-block;
    font-size: 1.5rem;
    position: relative;
    top: 1.125rem;
    margin-right: 1.25rem;
	color: var(--theme-color-02);
}

#shareRoundIcons {
	display: block;
}

.jssocials-shares {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jssocials-share {
    display: inline-block;
    margin: 0;
    position: relative;
}

.jssocials-share-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    line-height: 1;
}

.jssocials-shares .jssocials-share::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -17px;
    background: var(--dark-color-50);
    width: 3px;
    height: 3px;
    border-radius: 50%;
}

.jssocials-shares .jssocials-share:first-child::before {
    display: none;
}

.jssocials-share-logo,
.jssocials-share-logo:focus {
    font-size: 1rem;
    color: var(--dark-color-50);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.jssocials-share-logo:hover {
    color: var(--theme-color-02);
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


/****** Model Frameless ******/

.model-frameless .modal-content {
    background-color: var(--white-color);
    border: none;
    border-radius: 0.25rem;
	-webkit-box-shadow: 0 27px 24px 0 rgba(0,0,0,.2), 0 40px 77px 0 rgba(0,0,0,.22) !important;
    box-shadow: 0 27px 24px 0 rgba(0,0,0,.2), 0 40px 77px 0 rgba(0,0,0,.22) !important;
}

@media (max-width: 576px) {
	.model-frameless .modal-content {
		width: 96%;
		margin: 0 2%;
        padding: 1rem;
        border-radius: var(--border-radius-01);
	}
}

.model-frameless .btn-close {
    position: absolute;
    right: 0;
    top: -2.5rem;
}

.model-frameless .modal-content .btn-close {
    box-sizing: content-box;
	background: none;
    border: 0;
    border-radius: 0;
    opacity: 1;
	z-index: 1;
	color: var(--white-color);
	font-size: 1.5rem;
}

.modal-open {
	padding-right: 0 !important;
}

.model-frameless .modal-footer {
    display: inline-block;
    padding: 0;
    border-top: none;
}

.model-frameless .modal-footer.modal-footer-cus {
	padding: .75rem 1rem;
    margin-bottom: 0;
    background-color: var(--white-color);
}

.modal-backdrop {
    background-color: var(--dark-color);
}

.modal-backdrop.show {
    opacity: .5;
}

.form-control-02 {
    display: block;
    width: 100%;
    height: 4rem;
    padding: 0.5rem 0.75rem 0.375rem 0.75rem;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--theme-color-02) !important;
    background-color: transparent!important;
    background-clip: padding-box;
    border: none;
	border-bottom: 1px solid var(--theme-color-02-50);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.btn-modal {
	background-color: var(--white-color);
    border: none;
    color: var(--theme-color-02);
}


/****** Unifilter ******/

.unifilter {
    position: relative;
}

.results {
    display: flex;
    font-size: 1.25rem;
    font-weight: 800;
    border-bottom: 1px solid var(--dark-color-25);
    padding-bottom: .75rem;
    margin-bottom: 2rem;
    position: relative;
}

.uf-filter-wrap,
.uf-sort-wrap {
    margin: 0 !important;
}

#uf-city,
#uf-country,
#uf-category,
#uf-duration,
#uf-price,
.uf-sort {
    background-color: var(--white-color);
    border-radius: var(--border-radius-01);
    padding: 1.5rem !important;
    position: relative;
    display: block;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 24px 0 var(--dark-color-15) !important;
}

#uf-city.uf-filter .uf-tags li {
    margin-bottom: 1rem;
    white-space: normal;
    color: var(--dark-color);
    position: relative;
    padding-left: 2rem;
    margin-right: 0 !important;
    display: block !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li a {
    display: block !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    color: var(--dark-color) !important;
    font-size: 1rem !important;
    font-weight: 400;
    border: none !important;
    text-align: left !important;
    padding: 0;
    line-height: normal !important;
    min-width: auto !important;
    height: auto !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li a::before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-weight: 400;
    border-radius: var(--border-radius-02);
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    left: 0;
    top: 1px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li a::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: .875rem;
    font-weight: 400;
    color: var(--white-color);
    position: absolute;
    top: 4px;
    left: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li:hover a::before {
    border: 1px solid var(--dark-color) !important;
    background-color: var(--dark-color-15);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li.uf-selected a::before {
    border: 1px solid var(--theme-color-02);
    background-color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li.uf-selected a::after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li:hover a {
    color: var(--dark-color) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags li.uf-selected a {
    color: var(--theme-color-02) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-city.uf-filter .uf-tags .uf-reset {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    margin: 0;
    padding: 0;
}

#uf-city.uf-filter .uf-tags .uf-tooltip {
    position: absolute;
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    min-width: auto !important;
    margin-left: 0 !important;
    text-align: right !important;
    background-color: var(--transparent-color) !important;
    font-size: 1rem !important;
    opacity: 1;
    font-weight: 600 !important;
    color: var(--dark-color) !important;
    border-radius: 0;
    padding: 0 !important;
    pointer-events: none !important;
    transition: all .5s ease .5s !important;
    transform: none !important;
}

#uf-city.uf-filter .uf-tags .uf-tooltip::before {
    content: "(";
    position: relative !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    margin-left: 0 !important;
    top: 0 !important;
    left: 0 !important;
    margin-left: 0 !important;
}

#uf-city.uf-filter .uf-tags .uf-tooltip::after {
    content: ")";
}

#uf-category.uf-filter .uf-tags .uf-tooltip {
    position: absolute;
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    min-width: auto !important;
    margin-left: 0 !important;
    text-align: right !important;
    background-color: var(--transparent-color) !important;
    font-size: 1rem !important;
    opacity: 1;
    font-weight: 600 !important;
    color: var(--dark-color) !important;
    border-radius: 0;
    padding: 0 !important;
    pointer-events: none !important;
    transition: all .5s ease .5s !important;
    transform: none !important;
}

#uf-category.uf-filter .uf-tags .uf-tooltip::before {
    content: "(";
    position: relative !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    margin-left: 0 !important;
    top: 0 !important;
    left: 0 !important;
    margin-left: 0 !important;
}

#uf-category.uf-filter .uf-tags .uf-tooltip::after {
    content: ")";
}

#uf-category.uf-filter .uf-tags li {
    margin-bottom: 1rem;
    white-space: normal;
    color: var(--dark-color);
    position: relative;
    padding-left: 2rem;
    margin-right: 0 !important;
    display: block !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags li a {
    display: block !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    color: var(--dark-color) !important;
    font-size: 1rem !important;
    font-weight: 400;
    border: none !important;
    text-align: left !important;
    padding: 0;
    line-height: normal !important;
    min-width: auto !important;
    height: auto !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags li a::before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-weight: 400;
    border-radius: 50%;
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    left: 0;
    top: 1px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags li:hover a::before {
    border: 1px solid var(--dark-color);
    background-color: var(--dark-color-15);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags li.uf-selected a::before {
    border: 6px solid var(--theme-color-02);
    background-color: var(--transparent-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags li:hover a {
    color: var(--dark-color) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags li.uf-selected a {
    color: var(--theme-color-02) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-category.uf-filter .uf-tags .uf-reset {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    margin: 0;
    padding: 0;
}

#uf-country.uf-filter .uf-tags li {
    margin-bottom: 1rem;
    white-space: normal;
    color: var(--dark-color);
    position: relative;
    padding-left: 2rem;
    margin-right: 0 !important;
    display: block !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li a {
    display: block !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    color: var(--dark-color) !important;
    font-size: 1rem !important;
    font-weight: 400;
    border: none !important;
    text-align: left !important;
    padding: 0;
    line-height: normal !important;
    min-width: auto !important;
    height: auto !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li a::before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-weight: 400;
    border-radius: var(--border-radius-02);
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    left: 0;
    top: 1px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li a::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: .875rem;
    font-weight: 400;
    color: var(--white-color);
    position: absolute;
    top: 4px;
    left: 3px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li:hover a::before {
    border: 1px solid var(--dark-color) !important;
    background-color: var(--dark-color-15);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li.uf-selected a::before {
    border: 1px solid var(--theme-color-02);
    background-color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li.uf-selected a::after {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li:hover a {
    color: var(--dark-color) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags li.uf-selected a {
    color: var(--theme-color-02) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-country.uf-filter .uf-tags .uf-reset {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    margin: 0;
    padding: 0;
}

#uf-country.uf-filter .uf-tags .uf-tooltip {
    position: absolute;
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    min-width: auto !important;
    margin-left: 0 !important;
    text-align: right !important;
    background-color: var(--transparent-color) !important;
    font-size: 1rem !important;
    opacity: 1;
    font-weight: 600 !important;
    color: var(--dark-color) !important;
    border-radius: 0;
    padding: 0 !important;
    pointer-events: none !important;
    transition: all .5s ease .5s !important;
    transform: none !important;
}

#uf-country.uf-filter .uf-tags .uf-tooltip::before {
    content: "(";
    position: relative !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    margin-left: 0 !important;
    top: 0 !important;
    left: 0 !important;
    margin-left: 0 !important;
}

#uf-country.uf-filter .uf-tags .uf-tooltip::after {
    content: ")";
}

#uf-duration.uf-filter .uf-tags .uf-tooltip {
    position: absolute;
    left: auto !important;
    right: 0 !important;
    top: 0 !important;
    min-width: auto !important;
    margin-left: 0 !important;
    text-align: right !important;
    background-color: var(--transparent-color) !important;
    font-size: 1rem !important;
    opacity: 1;
    font-weight: 600 !important;
    color: var(--dark-color) !important;
    border-radius: 0;
    padding: 0 !important;
    pointer-events: none !important;
    transition: all .5s ease .5s !important;
    transform: none !important;
}

#uf-duration.uf-filter .uf-tags .uf-tooltip::before {
    content: "(";
    position: relative !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    margin-left: 0 !important;
    top: 0 !important;
    left: 0 !important;
    margin-left: 0 !important;
}

#uf-duration.uf-filter .uf-tags .uf-tooltip::after {
    content: ")";
}

#uf-duration.uf-filter .uf-tags li {
    margin-bottom: 1rem;
    white-space: normal;
    color: var(--dark-color);
    position: relative;
    padding-left: 2rem;
    margin-right: 0 !important;
    display: block !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags li a {
    display: block !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    color: var(--dark-color) !important;
    font-size: 1rem !important;
    font-weight: 400;
    border: none !important;
    text-align: left !important;
    padding: 0;
    line-height: normal !important;
    min-width: auto !important;
    height: auto !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags li a::before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    font-weight: 400;
    border-radius: 50%;
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    left: 0;
    top: 1px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags li:hover a::before {
    border: 1px solid var(--dark-color);
    background-color: var(--dark-color-15);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags li.uf-selected a::before {
    border: 6px solid var(--theme-color-02);
    background-color: var(--transparent-color);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags li:hover a {
    color: var(--dark-color) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags li.uf-selected a {
    color: var(--theme-color-02) !important;
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

#uf-duration.uf-filter .uf-tags .uf-reset {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    margin: 0;
    padding: 0;
}

.uf-filter .uf-tags a {
    display: block !important;
    padding: 0 8px;
    line-height: 32px;
    border-radius: 0;
    min-width: 25px;
    height: 32px;
    border: 1px solid var(--dark-color-25);
    color: var(--dark-color);
    transition: all .5s ease-in-out !important;
}

.uf-filter .uf-title,
.uf-range .uf-title,
.uf-search .uf-title,
.uf-sort .uf-title {
    color: var(--dark-color) !important;
    font-size: 1.125rem !important;
    font-weight: 800 !important;
    border-bottom: 1px solid var(--dark-color) !important;
    display: inline-block !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.25rem !important;
}

.uf-filter .uf-tags a,
.uf-filter .uf-tags a:focus {
    border: 1px solid var(--theme-color-02-50) !important;
    border-radius: var(--border-radius-01) !important;
    color: var(--dark-color-75) !important;
    font-size: .875rem !important;
}

.uf-filter .uf-tags a:hover {
    border: 1px solid var(--theme-color-02) !important;
    color: var(--white-color) !important;
	background-color: var(--theme-color-02) !important;
}

.uf-filter .uf-tags .uf-selected a {
    background-color: var(--theme-color-02) !important;
    color: var(--white-color) !important;
    border: 1px solid var(--theme-color-02) !important;
}

.uf-slider {
    max-width: 100% !important;
    width: 100% !important;
}

.uf-slider .uf-path {
    background-color: var(--dark-color-25) !important;
}

.uf-slider .uf-handle-left,
.uf-slider .uf-handle-left:focus,
.uf-slider .uf-handle-right,
.uf-slider .uf-handle-right:focus {
    background-color: var(--theme-color-02) !important;
}

.uf-slider .uf-handle-left:hover,
.uf-slider .uf-handle-right:hover,
.uf-slider.uf-dragging-left .uf-handle-left,
.uf-slider.uf-dragging-right .uf-handle-right {
    background-color: var(--theme-color-02) !important;
}

.uf-slider .uf-end,
.uf-slider .uf-start {
    color: var(--theme-color-02) !important;
    letter-spacing: 0 !important;
    margin-top: 10px !important;
    font-size: .875rem !important;
    font-weight: 700 !important;
}

.uf-sort-box .uf-select span {
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
    padding: .5rem 1rem !important;
    font-size: .875rem !important;
    margin-bottom: 0 !important;
    background-color: var(--transparent-color) !important;
    border: 1px solid var(--dark-color-25) !important;
    border-radius: var(--border-radius-01) !important;
}

.uf-sort-box .uf-options {
    width: 100% !important;
    max-width: calc(100% - 30px) !important;
    padding: 0 !important;
    top: 42px !important;
    color: var(--dark-color) !important;
    background-color: var(--white-color) !important;
    border: 1px solid var(--dark-color-50) !important;
    border-radius: var(--border-radius-01) !important;
}

.uf-sort-box .uf-select span:after {
    left: auto !important;
    right: 46px !important;
    top: 0 !important;
    margin-top: 20px !important;
    border-top-color: var(--white-color-50) !important;
}

.uf-sort-box .uf-options li a,
.uf-sort-box .uf-options li a:focus {
    color: var(--dark-color) !important;
    font-size: .875rem !important;
    padding: .5rem 1rem !important;
}

.uf-sort-box .uf-options li a:hover {
    color: var(--dark-color) !important;
    background-color: var(--dark-color-15) !important;
}

.uf-sort-box .uf-options li:last-child a {
    border-top: 1px solid var(--dark-color-25) !important;
    font-style: normal !important;
}

#uf-type {
    margin-bottom: 10px;
}

.uf-filter .uf-tag-hidden {
    opacity: .5 !important;
    pointer-events: none !important;
}

.uf-list #uf-empty {
    color: var(--dark-color) !important;
    font-weight: 700 !important;
}

.uf-list #uf-separator {
    border-top: 1px solid var(--dark-color-25) !important;
    color: var(--dark-color) !important;
    font-weight: 700 !important;
}


@media (max-width: 576px) {
    .uf-filter-wrap {
        width: 100% !important;
    }

    .uf-sort-wrap {
        width: 100% !important;
    }

    .uf-range-wrap {
        width: 100% !important;
    }

    .uf-slider {
        max-width: 320px !important;
    }

    .uf-sort-box .uf-select span {
        max-width: 275px !important;
    }

    .uf-sort-box .uf-select span:after {
        left: 245px !important;
        margin-top: 20px !important;
        border-top-color: var(--white-color-50) !important;
    }
}

.pagination {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-color-15);
}

.pagination li {
    margin-right: 1rem;
}

.pagination li:last-child {
    margin-right: 0;
}

.pagination li .page-link,
.pagination li .page-link:focus {
    color: var(--dark-color);
    background-color: var(--transparent-color) !important;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    border: none;
    padding: 0;
    margin: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.pagination li .page-link:hover {
    color: var(--theme-color-02);
    background-color: var(--transparent-color) !important;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.pagination li.active .page-link {
    color: var(--dark-color-50) !important;
    background-color: var(--transparent-color) !important;
    pointer-events: none;
    cursor: default;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.tripsswiper-01 {
    padding: 1.5rem;
}

.search-loader {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--white-color);
    visibility: visible;
    opacity: 1;
    z-index: 999999;
}

.search-loader::after {
    content: "";
    position: absolute;
    top: 8rem;
    left: 50%;
    width: 3.5rem;
    height: 3.5rem;
    border: .25rem solid var(--dark-color);
    border-top: .25rem solid transparent;
    border-radius: 50%;
    animation: spin .5s linear 0s infinite;
    margin-left: -1.75rem;
    }

.search-loader.loaded {
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/****** Gallery & Filter ******/

.grid-item {
	display: inline-block;
	height: 260px;
	overflow: hidden;
	text-align: center;
	width: 33.33334%;
    padding: .5rem;
}

.grid-item-02 {
	display: inline-block;
	height: 390px;
	overflow: hidden;
	text-align: center;
	width: 33.33334%;
    padding: .5rem;
}

@media (max-width: 992px) {

	.grid-item {
		width: 50%;
		height: 280px;
	}
    .grid-item-02 {
		width: 50%;
		height: 270px;
	}
	
}

@media (max-width: 576px) {

	.grid-item {
		width: 100%;
		height: 200px;
	}
    .grid-item-02 {
		width: 100%;
		height: 320px;
	}
}

.grid-item img {
	width: 100%;
	height: auto;
}

.grid-item img:hover{
	filter: none;
}

.grid-item-02 img {
	width: 100%;
	height: auto;
}

.grid-item-02 img:hover{
	filter: none;
}

.isotope-pager .pager {
	display: inline-block;
}

.filters {
	width: 100%;
	text-align: center;
}

.filters ul {
	margin: 0 0 2rem 0;
}

.filters li {
	margin: 0 .25rem;
	display: inline-block;
}

.filters li::after {
    content: "|";
    padding-left: .5rem;
    color: var(--theme-color-02);
}

.filters li:last-child::after {
	display: none;
}

.filters li a,
.filters li a:focus {
    color: var(--theme-color-02);
    font-weight: 500;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.filters li a:hover {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}   

.filters li.active a,
.filters li.active a:focus,
.filters li.active a:hover {
    color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.isotope-pager {
	text-align: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dark-color-25);
}

.isotope-pager a,
.isotope-pager a:focus {
    margin-right: .5rem;
    margin-left: .5rem;
    display: inline-block;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 500;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.isotope-pager a:hover {
	color: var(--theme-color-02);
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.isotope-pager a.active {
    color: var(--dark-color-50);
    pointer-events: none;
    cursor: default;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.isotope-pager .prev {
	margin-right: 1rem !important;
}

.isotope-pager .prev.disabled {
    color: var(--dark-color-25);
    pointer-events: none;
    cursor: default;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.isotope-pager .next {
	margin-left: 1rem !important;
}

.isotope-pager .next.disabled {
    color: var(--dark-color-25);
    pointer-events: none;
    cursor: default;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}


/****** Rate ******/

.hotel-sec {
    position: relative;
    margin-bottom: 1rem;
}

.hotel-sec .hotel-img {
    position: relative;
    margin: 0;
    margin-bottom: .75rem;
    padding: 0;
    padding-top: 60%;
    overflow: hidden;
    border-radius: var(--border-radius-02);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.hotel-sec h6 {
    margin-bottom: 0;
    font-size: .875rem;
}

.hotel-sec .hotel-name {
    margin-bottom: 0;
    font-size: .875rem;
    font-weight: 800;
    color: var(--dark-color);
}

.rating-container .clear-rating {
    color: var(--theme-color-03);
    cursor: not-allowed;
    display: none;
    vertical-align: middle;
    font-size: 15px;
    padding-right: 5px;
}

.rating-container .empty-stars {
    color: var(--theme-color-03);
}

.rating-container .filled-stars {
    position: absolute;
    left: 0;
    top: 0;
    margin: auto;
    color: var(--theme-color-03);
    white-space: nowrap;
    overflow: hidden;
    -webkit-text-stroke: 1px var(--transparent-color);
    text-shadow: none;
}

.rating-md {
    font-size: 1rem;
}

.rating-container .caption {
    color: var(--white-color);
	background-color: var(--theme-color-03);
	border-radius: .25rem;
    display: inline-block;
    vertical-align: middle;
    font-size: .875rem;
    margin-top: -2px;
    margin-left: 5px;
    margin-right: 0;
    display: none;
}

.rating-container .star {
    margin: 0 2px;
}

.rating-disabled .rating-stars {
	cursor: pointer;
    pointer-events: none;
}


.mfp-figure figure::before {
    content: "";
    background-image: url(../img/logos/logo.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: contain;
    width: 33%;
    height: 10%;
    position: absolute;
    left: 2rem;
    bottom: 4rem;
    z-index: 2;
    opacity: .85;
}

@media (max-width: 576px) {
    .mfp-figure figure::before {
        width: 33%;
        height: 10%;
        left: 1rem;
        bottom: 3.5rem;
    }
}

.mfp-arrow {
    position: absolute;
    opacity: .75;
    margin: 0;
    top: 50%;
    margin-top: 0;
    padding: 0;
    width: auto;
    height: auto;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.mfp-arrow:active {
    margin-top: 0;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.mfp-arrow::before,
.mfp-arrow::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 0;
    margin-left: 0;
    border: none;
    opacity: 1;
}

.mfp-arrow-left {
    left: 1rem;
}

.mfp-arrow-left::after {
    content: "\f053";
    font-family: var(--font-awesome);
    color: var(--white-color);
    font-size: 1.5rem;
    -webkit-box-shadow: 0 0 5px 1px rgb(0 0 0 / 7%) !important;
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 7%) !important;
}

.mfp-arrow-left::before {
    border: none;
}

.mfp-arrow-right {
    right: 3rem;
}

.mfp-arrow-right::after {
    content: "\f054";
    font-family: var(--font-awesome);
    color: var(--white-color);
    font-size: 1.5rem;
    -webkit-box-shadow: 0 0 5px 1px rgb(0 0 0 / 7%) !important;
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 7%) !important;
}

.mfp-arrow-right:before {
    border: none;
}


/****** Widget Button ******/

.widget-buttons {
    opacity: 1;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: block;
    cursor: pointer;
    overflow: hidden;
    position: fixed;
    bottom: 4.5rem;
    right: 1rem;
    z-index: 2000;
    text-align: center;
    text-decoration: none !important;
    background-color: var(--theme-color-02) !important;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 8px !important;
}

@media (max-width: 576px) {
    .widget-buttons {
        bottom: 3rem;
        right: .25rem;
    }    
    .tourbook .widget-buttons {
        bottom: 5rem;
        right: .25rem;
    }
}

.widget-buttons i {
    color: var(--white-color);
    font-size: 1.5rem;
    padding: .75rem;
}

.widget-buttons-links {
    opacity: 1;
    width: 2.5rem;
    height: auto;
    position: fixed;
    bottom: 7.5rem;
    right: 1.25rem;
    z-index: 200;
    text-decoration: none !important;
    display: none;
}

.widget-buttons-links i {
    color: var(--white-color);
    font-size: 1.25rem;
}

.widget-buttons-links a {
    color: var(--white-color);
    font-size: 1.25rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0px 4px !important;
    text-decoration: none !important;
    z-index: 200;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    display: block;
    padding: 5px 0;
    opacity: 1;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: .5rem;
}

.widget-buttons-links .widget-whatsapp {
    background-color: #25d366 !important;
}

.widget-buttons-links .widget-facebook {
    background-color: #168aff !important;
}

.widget-buttons-links .widget-telegram {
    background-color: #0088cc !important;
}

.widget-buttons-links .widget-wechat {
    background-color: #09b83e !important;
}

.widget-buttons-links .widget-lineapp {
    background-color: #06C755 !important;
}

.modal.model-frameless-02 {
    padding-right: 0 !important;
    width: 300px !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    bottom: 3rem;
    right: 1.5rem;
}

.model-frameless-02 .modal-content {
    background-color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-01);
	-webkit-box-shadow: 0 27px 24px 0 rgba(0,0,0,.2), 0 40px 77px 0 rgba(0,0,0,.22) !important;
    box-shadow: 0 27px 24px 0 rgba(0,0,0,.2), 0 40px 77px 0 rgba(0,0,0,.22) !important;
}

.model-frameless-02 .modal-header {
    color: var(--white-color) !important;
    padding: .5rem 1rem !important;
    border-top-left-radius: calc(.5rem - 1px) !important;
    border-top-right-radius: calc(.5rem - 1px) !important;
}

.model-frameless-02 .btn-close,
.model-frameless-02 .btn-close:focus {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: var(--white-color);
    background: none;
    border: 0;
    border-radius: var(--border-radius-02);
    opacity: 1;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.model-frameless-02 .btn-close:hover {
    opacity: 1;
	-webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.model-frameless-02 .btn-close::after {
    content: "\f00d";
	font-family: var(--font-awesome);
	color: var(--white-color);
    font-size: 1.25rem;
    font-weight: 300;
	position: relative;
    top: -.25rem;
}

.model-frameless-02 .modal-footer {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1rem;
    padding: 0 0 .75rem 0;
    border-top: none;
}

.model-frameless-02 .modal-footer a,
.model-frameless-02 .modal-footer a:focus,
.model-frameless-02 .modal-footer a:hover {
    color: var(--dark-color);
}

.qr-img {
    width: 15.625rem;
	height: 15.625rem;
    margin: 0;
    padding: 0;
}


/****** Wizard Form ******/

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
    margin-top: 40px;
}

.stepwizard p {
    margin-top: 10px;
}

.stepwizard .stepwizard-row {
    display: table-row;
}

.stepwizard .stepwizard-row:before {
    top: 23px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: var(--dark-color-15);
}
.stepwizard .stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
    width: 25%;
}

.stepwizard .stepwizard-step .btn.disabled {
    opacity: 1 !important;
}

.stepwizard .btn-circle {
    width: 48px;
    height: 48px;
    text-align: center;
    padding: 6px 0;
    font-size: 1rem;
    line-height: 2.25;
    border-radius: 50%;
}

.stepwizard .btn-default {
    color: #fff;
    background-color: var(--theme-color-02);
    border-color: var(--theme-color-02);
}

.stepwizard .btn-primary {
    color: #fff;
    background-color: var(--theme-color-02);
    border-color: var(--theme-color-02);
}

.setup-content .bootstrap-datetimepicker-widget.dropdown-menu {
    display: none;
}

#map {
    height: 345px;
    width: 100%;
    border: 1px solid var(--dark-color-15);
    border-radius: var(--border-radius-01) var(--border-radius-01) 0 0;
}

#panel {
    margin-top: -1px;
    background-color: var(--white-color);
    border: 1px solid var(--dark-color-15);
    border-radius: 0 0 var(--border-radius-01) var(--border-radius-01);

}

#panel .total {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem 1.5rem;
}

#panel .total i {
    color: var(--theme-color-02);
    font-size: 3rem;
}

#panel .total p {
    text-transform: uppercase;
    color: var(--dark-color-50);
    font-size: .875rem;
}

#panel .total span {
    font-size: 1.25rem;
}

@media (max-width: 576px) {
    #panel .total {
        display: flow;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    #panel .total i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

#panel .por-right {
    border-right: 1px solid var(--dark-color-15);
}

.pac-container {
    border: 1px solid var(--dark-color-15);
    border-radius: var(--border-radius-01);
}

.pac-logo::after {
    display: none;
}

.adp {
    display: none;
}

.vehicles-type {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--dark-color-15);
}

.vehicles-type .vehicles-img {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    border-radius: var(--border-radius-01);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.vehicles-type h5 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    
}

.vehicles-type .price {
    color: var(--theme-color-02);
    font-size: 2.5rem;
    line-height: normal;
}

.vehicles-type a.more-info,
.vehicles-type a.more-info:focus,
.vehicles-type a.more-info:hover {
    text-transform: uppercase;
    display: block;
    color: var(--dark-color-50);
}

.vehicles-type a.less-info,
.vehicles-type a.less-info:focus,
.vehicles-type a.less-info:hover {
    text-transform: uppercase;
    display: block;
    color: var(--dark-color-50);
}

.vehicles-type .vehicles-info {
    margin-top: 1.5rem;
    font-size: 2rem;
    color: var(--dark-color-50);
}

.vehicles-type .vehicles-info .numb {
    position: relative;
    top: -.25rem;
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2rem;
    border: 1px solid var(--dark-color-15);
}

.vehicles-type .more-info-det {
    font-size: .875rem;
    color: var(--dark-color-50);
    text-align: left;
    margin-top: 1rem;
}

.vehicles-type .form-check {
    position: relative;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 0;
}

.vehicles-type .form-outline .form-check-label {
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    background-color: var(--dark-color-15);
    padding: .75rem 2rem .75rem 4rem;
    line-height: 28px;
    border-radius: 2rem;
}

.vehicles-type .form-outline .form-check-input {
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    position: absolute;
    top: 6px;
    left: calc(50% - 2rem);
    width: 32px;
    height: 32px;
    z-index: 1;
}

.vehicles-type .form-outline .form-check-input:checked[type=radio] {
    border: 1px solid var(--white-color);
    background-color: var(--transparent-color);
}

.vehicles-type .form-outline .form-check-input:checked[type=radio]::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white-color);
    position: absolute;
    top: 1px;
    left: 4px;
    width: 10px;
    height: 10px;
}

.vehicles-type .form-outline .form-check-input:checked[type=radio] + .form-check-label {
    color: var(--white-color);
    background-color: var(--theme-color-02);
}

.vehicles-type .form-outline .invalid-feedback, .error {
    width: auto;
    position: absolute;
    bottom: -1.125rem;
    right: .5rem;
    z-index: 2;
    color: var(--red-color);
    font-size: .75rem;
    font-weight: 500;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 576px) {
    .vehicles-type {
        padding: 1rem 0;
        text-align: center;
    }
    .vehicles-type h5 {
        margin-top: .25rem;
        margin-bottom: 1rem;
    }
    .vehicles-type .vehicles-info {
        margin-top: 1rem;
    }
    .vehicles-type .form-outline .form-check-label {
        padding: .75rem 6rem .75rem 8rem;
    }
}

.services-type {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--dark-color-15);
}

.services-type h5 span {
    color: var(--theme-color-02);
    font-weight: 500;
}

.services-type p {
    font-size: .875rem;
    color: var(--dark-color-75);
    margin-top: 1rem;
}

.services-type .serv-quant {
    position: relative;
    display: inline-block;
    margin: 0 0 1rem 0;
    padding: .125rem .75rem;
    border: 1px solid var(--dark-color-25);
    border-radius: .5rem;
}

.services-type .serv-quant button {
    background: none;
    background-color: var(--transparent-color);
    border: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    font-size: .75rem;
}

.services-type .serv-quant .form-outline .form-control {
    padding: .25rem;
    font-size: 1.125rem;
    font-weight: 400;
    width: 3rem;
    color: var(--dark-color);
    background-color: var(--white-color);
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    text-align: center;
}

.services-type .total {
    color: var(--theme-color-02);
    font-size: 2.5rem;
    line-height: normal;
}

.services-type .form-outline .form-label {
    margin-bottom: .25rem;
    margin-left: .25rem;
    font-size: .75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--dark-color-50);
}

.widget-box-02 {
	background-color: var(--white-color);
    border-radius: var(--border-radius-01);
    padding: 1rem;
    position: relative;
    box-shadow: 0 0 24px 0 var(--dark-color-15) !important;
}

.widget-box-02 .widget-title-02 {
    color: var(--dark-color);
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid var(--dark-color);
    display: inline-block;
    margin-bottom: 1.5rem;
    line-height: 1.25rem;
}

.widget-box-02 .widget-title-02 span {
    position: absolute;
    right: 1rem;
}

.widget-box-02 .widget-title-03 {
    text-transform: uppercase;
    display: block;
    color: var(--dark-color-50);
    font-size: .75rem;
}

.widget-box-02 p {
    font-size: .95rem;
}

.widget-box-02 .form-outline {
    padding: 1rem 0;
    border-bottom: 1px solid var(--dark-color-15);
}

.widget-box-02 .form-outline:first-child {
    padding: 0 0 1rem 0;
}

.widget-box-02 .form-outline:last-child {
    padding: 1rem 0 0 0;
    border-bottom: none;
}

.widget-box-02 .det-info {
    color: var(--dark-color-75);
    font-size: .875rem;
    padding-left: .75rem;
}

.widget-box-02 .det-info-price {
    color: var(--dark-color);
    font-size: 1rem;
}

.widget-box-02 .det-info-price-total {
    color: var(--dark-color);
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 500;
}

.widget-box-02 .total-sec {
    padding-top: .5rem;
    margin-top: .5rem;
    border-top: 1px solid var(--dark-color-25);
}

.widget-box-02 .total-sec-cus {
    padding-top: .5rem;
    margin-top: .5rem;
    border-top: 1px solid var(--dark-color);
}

.widget-box-02 .vehicles-img {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    border-radius: var(--border-radius-01);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}


.setup-content .nav-pills {
    border-bottom: 1px solid var(--dark-color-25);
}

.setup-content .nav-pills .nav-link {
    background: 0 0;
    color: var(--dark-color-25);
    background-color: var(--white-color);
    border: 1px solid var(--dark-color-25);
    border-radius: .5rem .5rem 0 0;
    margin: 0 .5rem -1px .5rem;
    font-size: .875rem;
    font-weight: 500;
}

.setup-content .nav-pills .nav-link.active,
.setup-content .nav-pills .show>.nav-link {
    color: var(--dark-color);
    background-color: var(--white-color);
    border: 1px solid var(--dark-color-25);
    border-bottom: 1px solid var(--white-color);
}

.ride-serv-cus .form-outline.form-check {
    position: relative;
    min-height: 0;
    padding-left: 0;
    margin-bottom: 1rem;
}

.ride-serv-cus .form-outline .form-check-label {
    color: var(--dark-color-75);
    position: relative;
    display: inline-block;
    background-color: var(--dark-color-15);
    padding: 4rem 1rem 1rem 1rem;
    line-height: 32px;
    border-radius: 1rem;
    width: 100%;
    text-align: center;
    font-size: .875rem;
}

.ride-serv-cus .form-outline .form-check-label span {
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 500;
    display: block;
    line-height: normal;
}

.ride-serv-cus .form-outline .form-check-input {
    border: 1px solid var(--dark-color);
    background-color: var(--transparent-color);
    position: absolute;
    top: 1rem;
    left: calc(50% + .5rem);
    width: 32px;
    height: 32px;
    margin-right: 0;
    z-index: 1;
}

.ride-serv-cus .form-outline .form-check-input:checked[type=radio] {
    border: 1px solid var(--white-color);
    background-color: var(--transparent-color);
}

.ride-serv-cus .form-outline .form-check-input:checked[type=radio]::after {
    content: "\f00c";
    font-family: var(--font-awesome);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white-color);
    position: absolute;
    top: 1px;
    left: 4px;
    width: 10px;
    height: 10px;
}

.ride-serv-cus .form-outline .form-check-input:checked[type=radio] + .form-check-label {
    color: var(--white-color);
    background-color: var(--theme-color-02);
}

.ride-serv-cus .form-outline .form-check-input:checked[type=radio] + .form-check-label span {
    color: var(--white-color);
}

@media (max-width: 576px) {
    .setup-content li {
        width: 100%;
        display: block;
    }
    .setup-content .nav-pills {
        border-bottom: none;
    }
    .setup-content .nav-pills .nav-link {
        width: 100%;
        display: block;
        margin: 0 0 .25rem 0;
    }
    .setup-content .nav-pills .nav-link.active,
    .setup-content .nav-pills .show>.nav-link {
        border-bottom: 1px solid var(--dark-color-25);
    }
}

/****** Offer PopUp ******/


#offer-popup.model-frameless .modal-content {
    background-color: var(--transparent-color);
    border: none;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 27px 24px 0 rgba(0, 0, 0, .2), 0 40px 77px 0 rgba(0, 0, 0, .22) !important;
    box-shadow: 0 27px 24px 0 rgba(0, 0, 0, .2), 0 40px 77px 0 rgba(0, 0, 0, .22) !important;
}

@media (min-width: 992px) {
    #offer-popup.model-frameless .modal-content .tour-cus-01 {
        background-color: var(--transparent-color);
        border: none;
        padding: 0;
        margin-top: 0;
        margin-bottom: 0;
        display: flex;
    }
    #offer-popup.model-frameless .modal-content .tour-cus-01 .tour-info {
        min-height: auto !important;
        position: absolute;
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        height: 33%;
        width: calc(100% - 2rem);
        padding-bottom: 0;
        background-color: var(--white-color-75);
    }
    #offer-popup.model-frameless .modal-content .tour-cus-01 .tour-info .tour-des {
        display: none;
    }
    #offer-popup.model-frameless .modal-content .tour-cus-01 .tour-info .tour-info-cus {
        min-height: 66px !important;
        position: absolute;
        right: 1rem;
        top: 1rem;
        max-width: 48%;
    }
    #offer-popup.model-frameless .modal-content .tour-cus-01 .tour-info .tour-name {
        max-width: 48%;
    }
    #offer-popup.model-frameless .modal-content .tour-cus-01 .card-content-bottom {
        border-top: none;
    }
}

@media (max-width: 992px) {
    #offer-popup.model-frameless .modal-content .tour-cus-01 {
        margin-bottom: 0;
    }
    #offer-popup.model-frameless .modal-content {
        width: 96%;
        margin: 0 2%;
        padding: 0;
    }
}
  
