@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&display=swap');

:root {

    /* Site Properties */
    --background-color: #fff;
    --main-color: #FE9506;
    --alternate-color: #B36902;
    --main-text-color: #000;
    --soft-text-color: #444;
    --column-gap: 10px;
    --main-gap: 20px;
    --section-gap: 40px;
    --main-transition: 0.2s;
    --box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    --small-border-radius: 3px;
    --border-color: rgba(0,0,0,0.1);
    --transparent-color: rgba(0,0,0,0.2);
    --transparent-color-2: rgba(0,0,0,0.1);

    /* Font Properties */
    --font-size: 14px;
    --mobile-font-size: 12px;
    --line-height: 1.4em;
    --letter-spacing: 0.4px;
    --font-family: 'Work Sans', sans-serif;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;

    /* Form Elements */
    --input-color: #000;
    --input-padding: 0 10px;
    --input-height: 40px;
    --input-border: solid 1px #bbb;
    --placeholder-color: #888;
    --textarea-padding: 10px;
    --button-color: #FE9506;
    --button-hover-color: #B36902;
    --button-padding: 0 10px;
    --button-height: 40px;
    --button-border: none;
    
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: 'Open Sans', sans-serif;;
}

html {
    font-size: var(--font-size);
    font-weight: var(--font-regular);
    color: #000;
}

* {
    text-decoration: none !important;
    outline: none !important;
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
}

::placeholder {
    color: var(--placeholder-color);
}

.panel-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: -10px;
    font-weight: var(--font-regular);
    text-align: justify;
}

.panel-text img,
.panel-text iframe,
.panel-text video {
    max-width: 100%;
}

.panel-text iframe {
    width: 100%;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
    display: block;
    margin-bottom: 10px;
    font-weight: var(--font-medium);
    color: #000;
}

.panel-text h1 {
    font-size: 1.6em;
}

.panel-text h2 {
    font-size: 1.5em;
}

.panel-text h3 {
    font-size: 1.4em;
}

.panel-text h4 {
    font-size: 1.3em;
}

.panel-text h5 {
    font-size: 1.2em;
}

.panel-text h6 {
    font-size: 1em;
}

.panel-text p {
    display: block;
    margin-bottom: 10px;
}

.panel-text b {
    font-weight: 600;
}

.panel-text ul {
    list-style: circle;
    display: block;
    padding-left: 20px;
}

.panel-text ul li {
    margin-bottom: 5px;
    position: relative;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    transform: none !important;
    min-width: unset !important;
    margin: 0;
    border-radius: 0;
    border: none;
    background: #fff;
    box-shadow: none;
    padding: 0;
}

.row {
    margin-left: calc(10px * -1);
    margin-right: calc(10px * -1);
}

.row>[class*="col-"],
.container,
.container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

.smt {
    margin-top: 40px;
}

.smr {
    margin-right: 40px;
}

.smb {
    margin-bottom: 40px;
}

.sml {
    margin-left: 40px;
}

.dmt {
    margin-top: 20px;
}

.dmr {
    margin-right: 20px;
}

.dmb {
    margin-bottom: 20px;
}

.dml {
    margin-left: 20px;
}

.dmth {
    margin-top: calc(20px/2);
}

.dmrh {
    margin-right: calc(20px/2);
}

.dmbh {
    margin-bottom: calc(20px/2);
}

.dmlh {
    margin-left: calc(20px/2);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.mobile-nav > .mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    width: 400px;
    height: 100%;
    background: none;
    z-index: 99;
}

.mobile-nav > .mobile-nav-content > .mobile-nav-inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: 20px;
    pointer-events: all;
    overflow-y: auto;
}

.mobile-nav.active {
    pointer-events: all;
}

.mobile-nav.active > .mobile-nav-content > .mobile-nav-inner {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-menu-links > .item > a {
    position: relative;
    display: block;
    font-size: 1rem;
    color: #000 !important;
    font-weight: var(--font-medium);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: solid 1px var(--border-color);
}

.mobile-menu-links > .item > .inner-menu {
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    background: var(--transparent-color-2);
    margin-top: -10px;
    margin-bottom: 10px;
}

.mobile-menu-links > .item.active > .inner-menu {
    display: flex;
}

.mobile-menu-links > .item > .inner-menu > a {
    display: block;
    font-size: 0.9rem;
    color: #444 !important;
}

.mobile-menu-links > .item > .inner-menu > a:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-links > .item > a > i {
    position: absolute;
    top: 0;
    right: 0;
}

.mobile-menu-links > .item.active > a > i:before {
    content: "\F0140";
}

.main-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: none;
    background:#ddd;
    padding: 0 10px;
    height: 40px;
    border-radius: 0;
    overflow: hidden;
    white-space: nowrap;
}

.main-btn.small {
    height: calc(40px / 1.4);
}

.main-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: #2c3e99;
    transition: 0.2s ease 0s;
}

/*.main-btn:hover:before {
    left: 0;
}*/

.main-btn > span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    color: #000;
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.main-btn.small > span {
    font-size: 0.8rem;
    text-transform: unset;
}

.main-btn > span > i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 24px;
    font-size: 1.2rem;
    border-radius: 0;
    background: #222;
}

.main-btn.small > span > i {
    font-size: 1.3rem;
    min-width: 20px;
    height: 20px;
}

.main-btn.full-width {
    display: flex;
    width: 100%;
}

.main-btn.full-height {
    height: 100%;
}

.main-btn.no-radius {
    border-radius: 0;
}

/* Burger Nav General START ------------------------------ */

.burger-nav {
    display: block;
    position: relative;
    padding: 10px 0;
    background: #001B42;
}

.burger-nav.transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: none;
}

.burger-nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #001b42;
    animation: bn-fixed-anim;
    animation-duration: 0.2s;
}

@keyframes bn-fixed-anim {
    0% {
        margin-top: -100%;
    }

    100% {
        margin-top: 0;
    }
}

/* Burger Nav General END ------------------------------ */

/* Burger Nav Flex START ------------------------------ */

.burger-nav .bn-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.burger-nav .bn-flex>.left,
.burger-nav .bn-flex>.center,
.burger-nav .bn-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

/* Burger Nav Flex END ------------------------------ */

/* Burger Nav Logo START ------------------------------ */

.burger-nav .bn-logo {
    display: block;
    margin-right: 20px;
}

.burger-nav .bn-logo>img {
    height: 50px;
    margin-left: 20px;
}

.burger-nav.transparent .bn-logo>img {
    filter: contrast(0) brightness(2);
}

.burger-nav.fixed .bn-logo>img {
    filter: none;
}

/* Burger Nav Logo END ------------------------------ */

/* Burger Nav Elements START ------------------------------ */

.burger-nav .bn-open,
.burger-nav .bn-close {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    line-height: 30px;
    min-width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 5px;
    background: #1E398D;
    border: none;
    color: #fff !important;
}

.burger-nav.transparent .bn-open {
    color: #fff !important;
}

.burger-nav.fixed .bn-open {
    color: #fff !important;
}

.burger-nav .bn-links-desktop {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.burger-nav .bn-links-desktop>a {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #fff !important;
    padding: 5px 0;
    margin-right: 20px;
    transition: 0.2s ease 0s;
}

.burger-nav .bn-links-desktop>a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ddd;
    transition: 0.2s ease 0s;
}

.burger-nav .bn-links-desktop>a:hover:after,
.burger-nav .bn-links-desktop>a.active:after {
    width: 100%;
}

.burger-nav .bn-links-desktop>a:last-child {
    margin-right: 20px;
}

.burger-nav.transparent .bn-links-desktop>a {
    color: #fff !important;
}

.burger-nav.fixed .bn-links-desktop>a {
    color: #fff !important;
}

.burger-nav .bn-links-desktop>a:hover {
    color: #ddd !important;
}

.burger-nav.transparent .bn-links-desktop>a:hover {
    color: #ddd!important;
}

.burger-nav.fixed .bn-links-desktop>a:hover {
    color: #ddd !important;
}

/* Burger Nav Elements END ------------------------------ */

/* Burger Nav Mobile Menu START ------------------------------ */

.burger-nav .bn-menu-container {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
}

.burger-nav .bn-menu-container.active {
    opacity: 1;
    pointer-events: all;
}

.burger-nav .bn-menu-box {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(100%, 0);
    width: 400px;
    max-width: 100vw;
    height: 100%;
    overflow: hidden;
    z-index: 10;
}

.burger-nav .bn-menu-box.left {
    right: unset;
    left: 0;
    transform: translate(-100%, 0);
}

.burger-nav .bn-menu-container.active .bn-menu-box {
    transform: translate(0, 0);
}

.burger-nav .bn-menu {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    padding: 15px;
    overflow-y: auto;
}

.burger-nav .bn-menu .bn-menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.burger-nav .bn-menu .bn-menu-links>a {
    display: block;
    position: relative;
    padding: 10px 15px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888 !important;
    padding-right: 40px;
    transition: 0.2s ease 0s;
}

.burger-nav .bn-menu .bn-menu-links>a:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 25px;
    text-align: center;
    transform: translate(0, -50%);
}

.burger-nav .bn-menu .bn-menu-links>a.active:after {
    content: "\f107";
}

.burger-nav .bn-menu .bn-menu-links>a:last-child {
    margin-bottom: 0;
}

.burger-nav .bn-menu .bn-menu-links>a:hover {
    color: #222 !important;
}

.burger-nav .bn-menu .bn-menu-link-dropdown {
    display: none;
    padding: 15px;
    margin-bottom: 10px;
    background: #f5f5f5;
}

.burger-nav .bn-menu .bn-menu-link-dropdown>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    padding: 5px 10px;
    margin-bottom: 10px;
    color: #888 !important;
    transition: 0.2s ease 0s;
}

.burger-nav .bn-menu .bn-menu-link-dropdown>a:last-child {
    margin-bottom: 0;
}

.burger-nav .bn-menu .bn-menu-link-dropdown>a:hover {
    color: #222 !important;
}

/* Burger Nav Mobile Menu END ------------------------------ */

.nav-top {
    background: #fff;
    padding: 5px 0;
}

.nav-top .nt-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-top .nt-flex>.left,
.nav-top .nt-flex>.center,
.nav-top .nt-flex>.right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-contact i {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    border: solid 1px #fff;
    margin-right: 10px;
    border-radius: 15px;
}

.nt-contact > a {
    display: block;
    font-size: 14px;
    line-height: 18px;
    color: #000 !important;
    margin-left: 25px;
}

.nt-contact > a:hover {
    text-decoration: underline !important;
}

.nt-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 35px;
    height: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #000;
    background: none;
    margin-right: 5px;
    transition: 0.2s ease 0s;
}

.nt-social > a:hover {
    background: #ddd;
}

.nt-social > a:last-child {
    margin-right: 20px;
    border-left: solid 1px #000;
    padding: 0 0 0 10px;
}

.main-slider-container {
    display: block;
    width: 100%;
    position: relative;
}

.main-slider-container > .tns-outer > button {
    display: none;
}

.main-slider-container > .tns-outer > .tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    transform: translate(0, -50%);
    z-index: 10;
    pointer-events: none;
}

.main-slider-container > .tns-outer > .tns-controls > button {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    font-size: 30px;
    line-height: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff !important;
    border: none;
    border-radius: 20%;
}

.main-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(840 / 1920 * 100%);
}

.main-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.main-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000, transparent);
    z-index: 4;
    opacity: 0.8;
}

.main-banner .slide-desc-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translate(0, -50%);
    z-index: 10;
}

.slide-desc {
    margin-bottom: 40px;
}

.slide-desc > h2 {
    font-size: 40px;
    line-height: 46px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.slide-desc > span {
    display: block;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}

.main-about-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
}

.main-title {
    display: block !important;
    margin-bottom: 20px !important;
    color: #000 !important;
    font-size: 2.3rem !important;
    font-weight: 600 !important;
    position: relative !important;
    padding: 10px 50px !important;
}

.travel-item-all {
    display: block;
    margin-bottom: 20px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.travel-item-all.list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.travel-item-all.list>.travel-item-container {
    min-width: 300px;
    width: 300px;
}

.travel-item-container > .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding: 8px 3px;
    background: #0000005c;
    pointer-events: none;
}

.travel-item-all.list>.desc {
    width: calc(100% - 300px);
}

.travel-item-all > .id-line {
    display: flex;
    justify-content: flex-end;
    text-align: right;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 5px;
    padding-right: 0px;
    padding-bottom: 0px;
}

.travel-item-all > .id-line > span {
    display: block;
    padding: 5px 10px;
    border: solid 1px #9FC39B;
    background: #9FC39B;
    color: #fff;
}

.travel-item-all.list .price {
    position: absolute;
    left: 0;
    top: 20px;
    border-radius: 0;
    z-index: 20;
}

.travel-item-all>.img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
}

.travel-item-all>.img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.2s ease 0s;
}

.travel-item-all:hover>.img>img {
    transform: scale(1.1);
}

.travel-item-all>.desc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
}

.travel-item-all>.desc .specs {
    display: block;
}

.travel-item-all>.desc .specs>span {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #618198;
    letter-spacing: normal;
}

.travel-item-all>.desc .specs>span:last-child {
    margin-bottom: 0;
}

.travel-item-all>.desc .specs>span>i {
    min-width: 20px;
    text-align: center;
    margin-right: 5px;
    color: #666;
}

.travel-item-all>.desc>.right {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
}

.travel-item-all .add-favorite {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    color: #666 !important;
    font-size: 20px;
    line-height: 1.6;
    transition: 0.2s ease 0s;
    border: solid 1px #ddd;
    margin-bottom: 10px;
}

.travel-item-all>.desc>.right>.item-id {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    border: solid 1px #ddd;
    border-radius: 2px;
}

.travel-item-all>.desc>.right>.item-id>b {
    color: #222;
    font-weight: 400;
    margin-left: 4px;
}

.travel-item-all .add-favorite:hover {
    background: #fbfbfb;
    color: #222 !important;
}

.travel-item-all .price {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #133b58;
    background: #fff;
    text-align: start;
}

.travel-item-all .price>small {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
}

.travel-item-all.list>.travel-item-container {
    min-width: 300px;
    width: 300px;
}

.travel-item-container > .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding: 8px 3px;
    background: #0000005c;
    pointer-events: none;
}



.travel-item {
    display: block;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 310px;
    width: 100%;
    object-fit: cover;
}


.travel-item:hover img {
    transform: scale(1.1);
}

.travel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.travel-item-tour {
    display: block;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 200px;
    width: 100%;
    object-fit: cover;
}


.travel-item-tour:hover img {
    transform: scale(1.1);
}

.travel-item-tour > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.hli-favorite {
    position: absolute;
    top: 0px;
    right: 20px;
    z-index: 20;
    font-size: 1.8rem;
    color: #fff !important;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2));
}

.hli-favorite > i:last-child {
    display: none;
}

.hli-favorite.active > i:first-child {
    display: none;
}

.hli-favorite.active > i:last-child {
    display: block;
    color: #eb0013;
}

.price {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #133b58;
    background: #fff;
    text-align: start;
    margin-bottom: 20px;
}

.banner-title {
    font-family: "Domine", serif;
    font-weight: 400;
    font-size: 20px;
    text-shadow: 2px 2px #000;
}

footer {
    background: #001B42;
}

.ftr-content {
    padding-top: 40px;
    padding-bottom: 20px;
}

.ftr-content .bn-logo>img {
    width: 150px;
}

.ftr-bottom {
    padding: 5px 0;
    background: #000;
}

.ftr-bottom>.ftr-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-bottom span {
    display: block;
    font-size: 12px;
    line-height: 18px;
    color: #ddd;
    margin: 5px 0;
}

.ftr-bottom a {
    display: block;
    margin: 5px 0;
}

.ftr-bottom a img {
    width: 70px;
    filter: grayscale(1);
}

.ftr-bottom a:hover img {
    filter: none;
}

.ftr-table {
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.ftr-title {
    display: block;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.ftr-contact {
    display: block;
    margin-bottom: 20px;
}

.ftr-contact > .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    height: 40px;
}

.ftr-contact > .item:last-child {
    margin-bottom: 0;
}

.ftr-contact > .item > i {
    display: block;
    font-size: 18px;
    line-height: 24px;
    min-width: 20px;
    text-align: center;
    margin-right: 20px;
    color: #fff;
    position: relative;
}

.ftr-contact > .item > i:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    border-right: solid 1px rgba(255,255,255,0.3);
    height: 25px;
    transform: translate(0, -50%);
}

.ftr-contact > .item > span,
.ftr-contact > .item > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #ddd !important;
}

.ftr-contact > .item > a:hover {
    text-decoration: underline !important;
}

.ftr-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ftr-social > a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 40px;
    height: 40px;
    font-size: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-right: 10px;
    border: solid 1px rgba(255,255,255,0.3);
    color: #fff !important;
    transition: 0.2s ease 0s;
}

.ftr-social > a:hover {
    background: #fff;
    color: #222 !important;
}

.ftr-links {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
}

.ftr-links > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #ddd !important;
    margin-bottom: 5px;
}

.ftr-links > a:hover {
    text-decoration: underline !important;
}

.ftr-links > a:last-child {
    margin-bottom: 0;
}

.ftr-logos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-logos > a {
    margin-right: 10px;
}

.ftr-logos > a.white > img {
    filter: contrast(0) brightness(2);
}

.ftr-logos img {
    width: 80px;
    object-fit: contain;
}

/* Footer END ------------------------------ */

.rezervation {
    margin-right: 10px;
}

.bcrumb {
    padding-top: 20px;
    padding-bottom: 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bcrumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1E398D;
}

.bcrumb-inner {
    position: relative;
    z-index: 10;
    text-align: left;
}

.bcrumb-inner>.title {
    display: block;
    font-size: 28px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff !important;
}

.bcrumb-inner>.links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.bcrumb-inner>.links>a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #fff !important;
    margin-right: 20px;
    position: relative;
}

.bcrumb-inner>.links>a:hover {
    text-decoration: underline !important;
}

.bcrumb-inner>.links>a:after {
    content: "\F0142";
    font-family: "Material Design Icons";
    font-weight: 400;
    color: #fff;
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
    text-align: center;
    pointer-events: none;
}

.bcrumb-inner>.links>a:last-child {
    margin-right: 0;
}

.bcrumb-inner>.links>a:last-child:after {
    content: none;
}

.main-title-bc {
    display: block;
    font-size: 35px;
    line-height: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.page-banner {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(620/1200*100%);
}

.page-banner > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 32px;
    color: #fff !important;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.phone-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 32px;
    color: #fff !important;
    background: #01A3F5;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease 0s;
    z-index: 999;
}

.phone-fixed {
    right: unset;
    left: 20px;
}

.whatsapp-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.phone-fixed:hover {
    transform: scale(1.1);
    opacity: 0.5;
}
.page-inner {
    padding: 15px;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 20px;
}

.contact-item i {
    min-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    padding: 10px;
    color: #fff;
    background: #001B42;
}

.contact-item > div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
}

.contact-item small {
    display: block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: #222;
}

.contact-item span, .contact-item a {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #444;
}

.contact-item a {
    color: #666 !important;
    text-decoration: underline !important;
}

.contact-item a:hover {
    color: #222 !important;
    text-decoration: none !important;
}

.form-group {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.form-group input, .form-group textarea {
    display: block;
    width: 100%;
    border: solid 1px #eee;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 22px;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.count-text {
    display: block;
    font-size: 14px;
    line-height: 22px;
    color: #444;
    margin-right: 2px;
}

.form-group span.error-label {
    display: block;
    font-size: 12px;
    line-height: 20px;
    color: #b22222;
}

.captcha-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#map {
    height: 400px;
    margin-bottom: 20px;
    border: solid 1px #eee;
}

/*.ftr-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.ftr-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fff !important;
    font-size: 16px;
    margin-right: 10px;
    margin-bottom: 5px;
    transition: 0.2s ease 0s;
}

.ftr-social a:hover {
    color: #888 !important;
}*/

  
.gal-item {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(3/4*100%);
    margin-bottom: 20px;
    border-radius: 5px;
}

.gal-item>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease 0s;
}

.gal-item:hover>img {
    transform: scale(1.1);
}

.gal-item>span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    transition: 0.4s ease 0s;
    z-index: 12;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.gal-item:hover>span {
    background: none;
}

.gal-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    transition: 0.4s ease 0s;
}

.gal-item:hover:before {
    opacity: 1;
}

.gal-item:after {
    content: "\2b";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    line-height: 26px;
    transform: translate(-50%, -50%);
    z-index: 12;
    color: #fff;
    opacity: 0;
    transition: 0.4s ease 0s;
}

.gal-item:hover:after {
    opacity: 1;
}

.article-img {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: calc(620 / 1280 * 100%);
}

.article-img > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.side-articles > a {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  background: #1E398D;
  border: solid 1px rgba(255,255,255,19%);
  border-radius: 15px;
}

.side-articles > a > .img {
  display: block;
  min-width: 80px;
  width: 80px;
  position: relative;
  margin-right: 10px;
}

.side-articles > a > .img > div {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: calc(3 / 4 * 100%);
}

.side-articles > a > .img > div > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s ease 0s;
}

.side-articles > a:hover > .img > div > img {
  transform: scale(1.1);
}

.side-articles > a > .content {
  display: block;
  overflow: hidden;
}

.side-articles > a > .content > .title {
  display: block;
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  margin-bottom: 10px;
  font-weight: var(--font-medium);
}

.side-articles > a > .content > .detail {
  display: block;
  font-size: 0.9rem;
  font-weight: var(--font-medium);
  color: #ddd;
}

.side-articles > a:hover > .content > .detail {
  text-decoration: underline !important;
}

.side-articles > a:not(:last-child) {
  margin-bottom: 10px;
}

.side-articles > a > .content > .date {
  display: block;
  font-size: 0.8rem;
  margin-top: -10px;
  color: var(--soft-text-color);
}

.nt-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nt-social>a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    min-width: 40px;
    height: 40px;
    border: solid 1px #8D0000;
    border-radius: 50%;
    margin-right: 10px;
    color: #8D0000 !important;
    transition: 0.2s ease 0s;
}

.nt-social>a:hover {
    color: #fff !important;
    background: #8d00006e;
}

.nt-social>a:last-child {
    margin-right: 0;
}

.mn-dropdown>.dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    font-size: 17px;
    line-height: 20px;
    color: #fff !important;
}

.flag-icon-tr {
    background-image: url(flags/4x3/tr.svg);
}

.flag-icon:before {
    content: '\00a0';
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.mn-dropdown>.dropdown-menu {
    left: 50% !important;
    top: 100% !important;
    margin: 0;
    transform: translate(-50%, 0) !important;
    min-width: unset;
    border-radius: 5px;
    border: solid 1px #eee;
    box-shadow: none;
    padding: 5px 0;
}

.mn-dropdown>.dropdown-menu>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #444 !important;
    border-bottom: solid 1px #eee;
    padding: 5px 10px;
    white-space: nowrap;
    margin: 0;
}

.mn-dropdown>.dropdown-menu>a:last-child {
    border-bottom: none;
}

.flag-icon-gb {
    background-image: url(flags/4x3/gb.svg);
}