/** START OF GENERAL SETTINGS  **/
:root {
  --fontMain: "Arsenica Antiqua", serif;
  --fontSecondary: "Figtree", sans-serif;

  
  --Off-White:#F7F4EE;
  --Sand: #D8CBB8; 
  --Warm-Stone: #B7AA98; 
  --Clay: #7E6A53; /* brand brown (logo) — παλιά #A1846A */
  --Clay_light: #A1846A; /* το παλιό Clay — π.χ. header bar bg */
  --Brown: #7C5029;
  --Sage:#8C9A8B;
  --Deep-Olive: #4E5A4F;
  --Charcoal: #2B2B2B;

  --letter-spacing:3px;
  --letterSpacingBtn:1px;
  --transition3s:  0.3s ease-in-out;
  interpolate-size: allow-keywords;


      /*==========Font Size=========*/
  --step--2: clamp(0.8681rem, 0.7915rem + 0.3405vw, 1.2rem);
  --step--1: clamp(1.0417rem, 0.9359rem + 0.4701vw, 1.5rem);
  --step-0: clamp(1.25rem, 1.1058rem + 0.641vw, 1.875rem);
  --step-1: clamp(1.5rem, 1.3053rem + 0.8654vw, 2.3438rem);
  --step-2: clamp(1.8rem, 1.5393rem + 1.1587vw, 2.9297rem);
  --step-3: clamp(2.16rem, 1.8134rem + 1.5406vw, 3.6621rem);
  --step-4: clamp(2.592rem, 2.1338rem + 2.0366vw, 4.5776rem);
  --step-5: clamp(3.1104rem, 2.5077rem + 2.6786vw, 5.722rem);

    /*==========Font Size=========*/

}


.Off-White{
    color: var(--Off-White);
}
.Deep-Olive-bg{
    background-color:  var(--Deep-Olive);
}
.Sand-bg{
    background-color:  var(--Sand);
}
.Clay-bg{
    background-color:  var(--Clay);
}
.Clay-light-bg{
    background-color:  var(--Clay_light);
}

/* Fonts */

@font-face {
  font-family: "Arsenica Antiqua";
  src: url("../Fonts/Arsenica-Antiqua-Regular/Ttf/Arsenica-Antiqua-Regular.ttf");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../Fonts/Figtree/Figtree-Regular.ttf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../Fonts/Figtree/Figtree-Medium.ttf");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../Fonts/Figtree/Figtree-ExtraBold.ttf");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("../Fonts/Figtree/Figtree-Italic.ttf");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

.form-control:focus,
.form-select:focus,
button:focus,
a:focus {
  outline: none;
  box-shadow: none;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
button {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
a,
a:hover {
  color: var(--Deep-Olive);
  text-decoration: none;
}

a:hover {
  color: var(--Sage);
}


/**START OF BODY AND HEADINGS
=====================================**/
body {
    font-family: var(--fontSecondary);
    color: var(--Charcoal);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    background: #F7F4EE;
    text-align: left;
    padding-top:0px;
}

@media (max-width: 767px) {
    body {
        font-size: 16px;
    }
}
/* @media (max-width: 1199px) {
    body {
        padding-top: 90px;
    }
}
@media (max-width: 767px) {
    body {
        padding-top: 70px;
    }
} */



body::-webkit-scrollbar-track {
  background-color: #F7F4EE;
}
body::-webkit-scrollbar {
  width: 5px;
  background-color: #F7F4EE;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--Deep-Olive);
}
.no-slider-pt {
    padding-top: 95px;
}
@media (max-width: 767px) {
    .no-slider-pt {
        padding-top: 80px;
    }
}
/**START OF HEADINGS
=====================================**/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-family: var(--fontMain);
  margin-bottom: 30px;
  line-height: 1.2;
  color: var(--Clay);
  font-weight: 400;
  word-wrap: break-word;
}
h1, .h1 {
  font-size:var(--step-3);
  margin-bottom: 30px;
}

h1 img{
    display: block;
    width: clamp(1.875rem, 1.5865rem + 1.2821vw, 3.125rem);
    margin-bottom: 15px;
    height: auto;
}
h2, .h2 {
  font-size:var(--step-2);
  margin-bottom: 26px;
}
h3, .h3 {
  font-size:var(--step-1);
  margin-bottom: 22px;
}
h4, .h4 {
  font-size:var(--step-0);
  margin-bottom: 20px;
}




/** START OF MARGIN  
============================== **/

@media (min-width: 992px) {
    .max-width-text {
        width: 50%;   
        margin:auto;
    }   
}
@media (min-width: 1400px) {
    .max-width-text {
        width: 40%;   
    }
}

.mt-offset{
    margin-top:120px;
}
.mb-offset{
    margin-bottom:120px;
}
.mt-offset-half{
    margin-top:60px;
}
.pt-offset {
    padding-top: 120px;
}
.pb-offset{
    padding-bottom: 120px!important;
}
.py-offset {
    padding-top: 120px;
    padding-bottom: 120px;
}
.py-offset-half {
    padding-top: 60px;
    padding-bottom: 60px;
}
.hero_olive_section.pt-offset {
    padding-top: 150px;
}
.hero_olive_section.pb-offset {
    padding-bottom: 30px!important;
}

@media (max-width: 1199px) { 
    .mt-offset{
        margin-top:90px;
    }
    .mb-offset{
        margin-bottom:90px;
    }
    .mt-offset-half{
        margin-top:45px;
    }
    .pt-offset {
        padding-top: 90px;
    }
    .pb-offset{
        padding-bottom: 90px!important;
    }
    .py-offset {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .py-offset-half {
        padding-top: 45px;
        padding-bottom: 45px;
    }
    .hero_olive_section.pt-offset {
        padding-top: 110px;
    }
    .hero_olive_section.pb-offset {
        padding-bottom: 20px!important;
    }
}
@media (max-width: 991px) {
    .mt-offset{
        margin-top:70px;
    }
    .mt-offset-half{
        margin-top:40px;
    }
    .mb-offset{
        margin-bottom:70px;
    }
    .pb-offset{
        padding-bottom: 70px!important;
    }
    .pt-offset {
        padding-top: 70px;
    }
    .py-offset {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .py-offset-half {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero_olive_section.pt-offset {
        padding-top: 55px;
    }
    .hero_olive_section.pb-offset {
        padding-bottom: 10px!important;
    }
}
@media (max-width: 575px) {
   .mt-offset{
        margin-top:50px;
    } 
    .mt-offset-half{
        margin-top:25px;
    }
    .mb-offset{
    margin-bottom:50px;
}
    .pb-offset{
        padding-bottom: 50px!important;
    }
    .pt-offset {
        padding-top: 50px;
    }
    .py-offset {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .py-offset-half {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .hero_olive_section.pt-offset {
        padding-top: 30px;
    }
    .hero_olive_section.pb-offset {
        padding-bottom: 10px!important;
    }
}



.container-spacing {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
@media (min-width: 768px) {
    .container-spacing {
        padding-left:2rem!important;  
        padding-right:2rem!important;  
    }  
}


@media (min-width: 1200px) {
    .container-spacing {
        padding-left:3rem!important;  
        padding-right:3rem!important;  
    }  
}


/* START OF BUTTONS  
====================================*/
.button {
    position: relative;
    display: inline-block;
    font-family: var(--fontMain);
    text-align: center;
}
.button {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 10px 20px;
    border: 1px solid  rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.08);
}
.button:hover {
  color: #ffffff !important;
  background-color: rgba(216, 203, 184, 0.6);
  border: 1px solid var(--Sand);
  transition: all 0.3s ease-in-out;
}


.button-dark {
    position: relative;
    display: inline-block;
    font-family: var(--fontMain);
    text-align: center;
}
.button-dark {
    color: var(--Deep-Olive);
    font-size: 16px;
    font-weight: normal;
    padding: 10px 20px;
    border: 1px solid  rgba(78, 90, 79, 0.15);
    transition: all 0.3s ease;
    background-color: rgba(78, 90, 79, 0.08);
}
.button-dark:hover {
  color: var(--Off-White) !important;
  background-color: rgba(78, 90, 79, 0.6);
  border: 1px solid var(--Deep-Olive);
  transition: all 0.3s ease-in-out;
}


.textMainButton .button-dark{
    font-size: var(--step--1);
    padding: 14px 40px;
}

@media (max-width: 575px) {
.header-container .button {
    font-size: 13px;
    padding: 10px 8px;
}
}


/*more link
=============================*/
a.more-link{
    position: relative;
    display: inline-block;
    color: #ffffff!important;
    text-decoration: none;
    padding-bottom: 6px;
    font-family: var(--fontMain);
}

a.more-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 1px;
    background: #ffffff;
    transition: width 0.35s ease;
}

a.more-link:hover{
    color: var(--Off-White);
}

a.more-link:hover::after{
    width: 100%;
}


/*more link Dark mode
=============================*/
a.more-link-dark{
    position: relative;
    display: inline-block;
    color: var(--Charcoal)!important;
    text-decoration: none;
    padding-bottom: 6px;
    font-family: var(--fontMain);
}

a.more-link-dark::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 1px;
    background: var(--Charcoal);
    transition: width 0.35s ease;
}

a.more-link-dark:hover{
    color: var(--Charcoal);
}

a.more-link-dark:hover::after{
    width: 100%;
}


/* Video
=================================== */
.mainVideoSlider {
        position: relative;
        height: 100vh;
    }
.mainVideoSlider video {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 400px;
    }
}
@media screen and (max-width: 480px) {
    .mainVideoSlider, .mainVideoSlider video {
        height: 350px;
    }
}
        
.YTvideo-placement{
    height:calc(100vh - 40px);
}    







/* Carousel Slider-Video
-----------------------------------*/
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
    height: 70vh;
}
.homepage #bigCarousel .carousel-item,
.homepage #bigCarousel {
    height: 100vh;
} 
#bigCarousel .carousel-control-prev,
#bigCarousel .carousel-control-next {
    visibility: hidden; }
#bigCarousel:hover .carousel-control-prev,
#bigCarousel:hover .carousel-control-next {
    visibility: visible; }
    
#bigCarousel img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.visually-hidden{
    background: rgba(0, 0, 0, 0.05);
}
.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/ArrowLeft.svg)!important;

}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/ArrowLeft.svg)!important;
  transform:          rotate(180deg);
  -ms-transform:      rotate(180deg);
  -moz-transform:     rotate(180deg);
  -webkit-transform:  rotate(180deg);
  -o-transform:       rotate(180deg);

}
#bigCarousel .carousel-control-next-icon, 
#bigCarousel .carousel-control-prev-icon {
    display: inline-block;
    width: 70px !important;
    height: 70px !important;
    background: no-repeat 50% / 100% 100%;
    background-size: 70%;
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 500px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 350px;
  }
}
.contentOverSlider {
    position: absolute;
    z-index: 1;
    bottom: 0%;
    height: 30%;
    width: 100%;
    font-family: var(--fontMain);
    color: var(--Off-White);
    font-size: var(--step-3);
    line-height:1;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    left: 0;
    right: 0;
}

@media (max-width: 1480px) {
  .contentOverSlider {
    height: 40%;
  }
}
@media (max-width: 1199px) {
    /* .contentOverSlider {
        font-size: 48px;
    } */
}
@media (max-width: 991px) and (min-width: 768px){
    .contentOverSlider {
        height: 30%;
        /* font-size: 48px; */
    }
}



/* START OF HEADER  
============================*/
.header {
  color: var(--Sand);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size:16px;
  font-weight: normal;
}
.scrolled .header-container{
    background-color: rgba(78, 90, 79, 0.9);
    width: 100%;
    height: calc(80px + 0.4rem) !important;
}
@media (max-width:480px) {
    .header {
        font-size:14px;
    }
    .header-container {
    height: calc(70px + 0.4rem) !important;
}
    .scrolled .header-container {
    height: calc(65px + 0.4rem) !important;
}
}
.header-container {
    display:flex;
    justify-content: space-between !important;
    align-items: center !important; 
    padding-top: 0.7rem  !important;
    padding-bottom: 0.7rem  !important;
    height: calc(60px + 1.4rem) !important;
    background-color: rgba(78, 90, 79, 0.6);
    transition: all 0.3s ease-in-out;
}
.header-col {
    width:33.333%;
    position:relative;
    z-index:1040;
}
.header-container .left-col{
    z-index:1030!important;
}

.header-container .space-left-container,
    .scrolled .header-container .space-left-container {
         margin-left:1rem; 
    }

.header-container .space-right-container,
.scrolled .header-container .space-right-container{
        margin-right:1rem;  
}
@media (min-width: 575px) {
.header-container {
    height: calc(60px + 0.7rem);
}
.scrolled .header-container {
    height: calc(60px + 0.4rem) !important;
}
}

@media (min-width: 767px) {
.header-container{
    height: calc(60px + 1.4rem) !important;
}
.scrolled .header-container {
    height: calc(62x + 1.4rem) !important;
}
}

@media (min-width: 768px) {
    .header-container {
    height: calc(80px + 1.4rem) !important;
}
.scrolled .header-container {
    height: calc(70px + 1.4rem) !important;
}
    .header-container .space-left-container,
    .scrolled .header-container .space-left-container {
         margin-left:2rem; 
    }
     .header-container .space-right-container,
     .scrolled .header-container .space-right-container{
        margin-right:2rem;  
    }
}

@media (min-width: 1400px) {
    .header-container .space-left-container,
    .scrolled .header-container .space-left-container {
        margin-left:3rem;  
    }
    .header-container .space-right-container,
    .scrolled .header-container .space-right-container{
    margin-right:3rem;
  } 
}

.SmallMenu{
    font-size: 14px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
@media (max-width: 575px) {
    .awards-text {
        display: none;
    }
}
.SmallMenu a{
  color: var(--Sand);
  transition: var(--transition3s);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-right: 10px;
  text-decoration: none;
}
.SmallMenu a:last-child{
    padding-right: 0px;
    padding-left: 10px;
}
.SmallMenu a:hover{
    color: var(--Clay);
}
@media (max-width: 575px) {
.SmallMenu {
    margin-bottom: 40px;
}
.scrolled .SmallMenu {
    margin-bottom: 40px;
}
}

/* MAIN NAVIGATION
=============================== */ 
.menu-trigger {
    position: fixed;
    top: 44px;
    left: 1.2rem !important;
    z-index: 1040;
    display: inline-block;
    height: 29px;
    color: var(--Sand);
    font-size: 14px;
    font-family: var(--fontMain);
    font-weight: 300;
    line-height: 1;
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}
body.scrolled .menu-trigger  {
    top: 50px;   
}

@media (max-width: 576px){
     .menu-trigger {
        top: 46px;
        left: 1.3em !important;
    }
    body.scrolled .menu-trigger  {
        top: 46px;   
    }
}
@media (max-width: 757px){
     .menu-trigger {
        top: 46px;
        left: 1.3em !important;
    }
    body.scrolled .menu-trigger  {
        top: 46px;   
    }
}
@media (min-width: 768px){
    .menu-trigger {
        top: 60px;
        left: 2rem !important;
    }
    body.scrolled .menu-trigger  {
        top: 50px;   
    }
}


@media (min-width: 991px) {
    .menu-trigger {
    left: 2rem !important;
 }
}
@media (min-width: 1200px){
 .menu-trigger {
    left: 2rem !important;
 }
}
@media (min-width: 1400px) {
.menu-trigger {
    left: 3rem !important;
 }
}
.menu-trigger:hover {
    color: var(--Sand);
}
.menu-icon {
    color: var(--Sand);
    display: inline-block;
    width: 30px;
    height: 1px;
    -webkit-transform: translateX(-0%) translateY(-0%);
    -moz-transform: translateX(-0%) translateY(-0%);
    -ms-transform: translateX(-0%) translateY(-0%);
    -o-transform: translateX(-0%) translateY(-0%);
    transform: translateX(-0%) translateY(-0%);
    background: var(--Sand);
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    transition: background-color 0.3s;
    z-index: 100;
    margin-right:10px;
}
.menu-icon::before,
.menu-icon:after {
    content: '';
    position: absolute;
    left: 0px;    
    height: 100%;
    background: var(--Sand);
    -webkit-transition: -webkit-transform 0.3s, top 0.3s, background-color 0s;
    -moz-transition: -moz-transform 0.3s, top 0.3s, background-color 0s;
    transition: transform 0.3s, top 0.3s, background-color 0s;
}
body:not(.noSlider):not(.scrolled):not(.hover-header) .menu-trigger:not(.is-clicked) .menu-icon,
body:not(.noSlider):not(.scrolled):not(.hover-header) .menu-trigger:not(.is-clicked) .menu-icon::before,
body:not(.noSlider):not(.scrolled):not(.hover-header) .menu-trigger:not(.is-clicked) .menu-icon:after{
    background: var(--Sand);
}
.menu-icon::before {
    width: 30%;
}
.menu-icon:after{
    width: 70%;
}

.menu-icon::before {
    top: -7px;
}
.menu-icon::after {
    top: 7px;
}
.menu-trigger.is-clicked {
    color:var(--Sand)!important;
}
.menu-trigger.is-clicked .menu-icon{
    background-color: rgba(255, 243, 226, 0);
}
.menu-trigger.is-clicked .menu-icon::before,
.menu-trigger.is-clicked .menu-icon::after {
    background: var(--Sand);
}
.menu-trigger.is-clicked .menu-icon::before {
    top: 0;
    width: 100%;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}
.menu-trigger.is-clicked .menu-icon::after {
    top: 0;
    width: 100%;
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -o-transform: rotate(225deg);
    transform: rotate(225deg);
}  




/*LOGO
---------------------------------*/
.header .img-logo {
  height: 90px;
  /* -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out; */
  transition: height 0.3s;
  margin: 0 auto;
}
.scrolled .header .img-logo {
    height: 80px;
}

@media (max-width: 992px) {
    .header .img-logo {
       height: 90px;
    }
    .scrolled .header .img-logo {
        height: 80px;
    }
}
@media (max-width: 991px) {
    .header .img-logo {
       height: 80px;
    }
    .scrolled .header .img-logo {
        height: 70px;
    }
}

@media (max-width: 767px) {
    .header .img-logo {
       height: 60px;
        margin: 0 auto;
    }
    .scrolled .header .img-logo {
        height: 60px;
    }
}

@media (max-width: 575px) {
    .header .img-logo {
       height: 50px;
        margin: 0 auto;
    }
    .scrolled .header .img-logo {
        height: 50px;
    }
}
.menu-opened .header .img-logo {
   -webkit-transition: 0.0s ease-in-out;
    -o-transition: 0.0s ease-in-out;
    transition: 0.0s ease-in-out;
    filter: brightness(0) saturate(100%) invert(9%) sepia(77%) saturate(4265%) hue-rotate(9deg) brightness(97%) contrast(106%);
}

/*Mainmenu
====================*/
.scrolled .header .Mainmenu {
    padding: 5px 0;
    display: none;
}
.Mainmenu {
  --menu-height: 50px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;

   position: relative;
    z-index: 0;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px 0;
    border-top: 1px solid var(--Sand);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.Mainmenu ul {
  list-style: none;
  padding: 16px;
  margin: 0;
}
.Mainmenu ul li,
.Mainmenu ul li a {
  /* opacity: 0.8; */
  color: var(--Off-White);
  cursor: pointer;
  transition: 200ms;
  text-decoration: none;
  white-space: nowrap;
}

.Mainmenu > ul > li:hover > a{
    color: var(--Brown);
    background: var(--Off-White);
}
.Mainmenu ul li a{
  position: relative;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 400;
  font-family: var(--fontMain);
  font-size: var(--step--2);
  color: var(--Off-White);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.Mainmenu ul li:hover,
.Mainmenu ul li a:hover {
  color: var(--Brown)!important;
  background: var(--Off-White);
}
.Mainmenu ul li a,
.Mainmenu ul li a a {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.Mainmenu ul li {
  /* padding-right: 36px; */
  margin-right: 0;
}

.Mainmenu > ul {
  display: flex;
  height: var(--menu-height);
  align-items: center;
}
.Mainmenu > ul li {
  position: relative;
  margin: 0 8px;
}

.Mainmenu > ul li ul li {
  margin: 0;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 30px;
}
.Mainmenu > ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
} 

.Mainmenu .SubMenu-Title{
    color: var(--Brown);
    font-family: var(--fontMain);
    font-size: var(--step--1);
}

 .Mainmenu ul.SubMenu{
 visibility: hidden;
  opacity: 0;
  transform: translateY(2px);
  padding: 20px;
  min-width: 160px;
  background-color: var(--Off-White);
  position: absolute;
  top: calc(var(--menu-height) + 5px);
  left: 0;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0s linear 0.35s;
 }
.Mainmenu ul.SubMenu li a{
    color: var(--Charcoal);
    font-size: 16px;
    font-family: var(--fontSecondary);
    background: transparent;
    border: 0px;

}
.Mainmenu ul.SubMenu li a:hover{
    color: var(--Brown);
}
.Mainmenu ul.SubMenu li a::before{
    content: "";
    width: 10px;
    height: 0px;
    border-right: 5px solid transparent;
    border: 1px solid var(--Brown);
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
}
.Mainmenu ul.SubMenu li a:hover::before {
    border: 1px solid white;
}
.Mainmenu ul.SubMenu li{
    padding: 8px 0px;
}
.Mainmenu ul.SubMenu li a{
    padding: 0px 0px 0 20px;
}





/*bookingForm
=====================*/
.bookingForm {
    position: fixed !important;
    bottom: 0px;
    z-index: 9;
    left: 0;
    right: 0;
    background-color: var(--Deep-Olive);
    color: var(--Off-White);
    padding: 10px !important;
    /* font-weight: 100;*/
}

.bookingForm .button {
    margin: 0 auto;
    position: relative;
    display: inline-block;
    font-family: var(--fontMain);
    text-align: center;
    color: var(--Deep-Olive);
    font-size: var(--step--1);
    font-weight: normal;
    padding: 14px 40px;
    border: 1px solid var(--Off-White);
    transition: all 0.3s ease;
    background-color: rgba(247, 244, 238, 0.7);
}
.bookingForm .button:hover {
  color: var(--Off-White) !important;
  background-color: rgba(216, 203, 184, 0.6);
  border: 1px solid var(--Off-White);
  transition: all 0.3s ease-in-out;
}

/*Offer Banner
==========================*/
.homepage .reward-badge{
    width: 180px;
    position: absolute;
    bottom: 13%;
    top: unset;
    right: 3%;
    z-index: 1;
}

.reward-badge {
    width: 150px;
    position: absolute;
    top: unset;
    bottom: -5%;
    right: 3%;
    z-index: 1;
}

.reward-badge:hover {
    border-radius: 110px;
    background: rgba(230, 215, 200, 0.2);
    border: 1px solid rgba(230, 215, 200, 0.3)
} 

.reward-badge svg {
    width: 100%;
    height: auto;
}

.reward-text {
    fill: var(--Off-White);
    font-size:var(--step--1);
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--fontMain);

    transform-origin: center;
    transition: transform 0.5s ease;
}
.reward-badge:hover .reward-text {
    transform: rotate(90deg);
}

.badge-circle {
    fill: #E6D7C8;
    opacity: 0.4;
}

.logo {
    fill: #b7ab98;
}

@media (min-width: 768px) and (max-width: 991px) {
    .reward-badge {
        width: 130px;
    }
}



/*BgMask
======================*/
.BgMask{
    position: relative;
    z-index: 0;
    background: url(../images/bgMask.jpg) no-repeat center center;
    background-size: cover;
    /* background-color: rgba(78, 90, 79, 0.9); */
    width: 100%;
    height: auto;
    background-size: cover;
    background-blend-mode: darken;
}
.BgMask::after{
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    background-color: rgba(78, 90, 79, 0.9);
}



/*JourneyHero
=====================*/
.JourneyHero{
    position: relative;
    width: 100%;
    min-height: 50vh;
    margin-left: clamp(50px, 5vw, 50px);
    /* overflow: hidden; */
    margin-right: clamp(20px, 5vw, 20px);
    height: 100%;
}
.JourneyHero:nth-child(even) {
    margin-top: 50px;
}

.JourneyHero img{
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.JourneyHero-overlay{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 30%,
        rgba(0,0,0,.15) 60%,
        rgba(0,0,0,.05) 100%
    );
}

.JourneyHero-content{
 position: absolute;
    left: clamp(-50px, 5vw, -50px);
    bottom: clamp(20px, 6vw, 20px);
    z-index: 3;
    max-width: 400px;
    color: #fff;
}

.JourneyHero-content h2.h2{
    margin: 0;
    font-family: var(--fontMain);
    line-height: 1;
    font-size: var(--step-2);
    color: var(--Off-White);
}

.JourneyHero-btn{
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    padding-bottom: 6px;
    font-family: var(--fontMain);
}

.JourneyHero-btn::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 1px;
    background: #ffffff;
    transition: width 0.35s ease;
}

.JourneyHero-btn:hover{
    color: var(--Off-White);
}

.JourneyHero-btn:hover::after{
    width: 100%;
}

@media (min-width: 1200px) {
    .JourneyHero {
    margin-left: clamp(30px, 3vw, 30px);
    }
    .JourneyHero-content {
    left: clamp(-30px, 5vw, -30px);
    }
}
/* @media (max-width: 991px) and (min-width: 768px){
    .JourneyHero {
        width: 50%!important;
    }
} */
@media (max-width:768px){
    .JourneyHero {
         min-height: 100svh;
        margin-left: clamp(0px, 5vw, 0px);
    }
    .JourneyHero img {
        position: relative;
    }
    .JourneyHero-overlay{
        display: none;
    }
.JourneyHero-content {
    position: relative;
}

    .JourneyHero-content{
        top: 30px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        max-width: 100%;
    }

    .JourneyHero-content p{
        max-width: 100%;
    }
}

@media (max-width: 767px){
.JourneyHero:nth-child(even) {
    margin-top: 0px;
}
.JourneyHero{
    margin-bottom: 30px;
    /* min-height: auto; */
}
}

@media (max-width: 575px){
    .JourneyHero{
    min-height: auto;
    margin-bottom: 60px;
    }
}

/*Special Journeys
===========================*/
.JourneySwiper .swiper-wrapper{
    margin-bottom: 50px;

}
.JourneySwiper .swiper-scrollbar{
    opacity: 1!important;
    background-color: var(--Sand);
    height: 1px;
}
.JourneySwiper .swiper-scrollbar-drag{
    opacity: 1!important;
    background-color: var(--Sage);
        height: 3px;
    margin: -1px 0;
}

.JourneyBox {
    position: relative;
    width: 100%;
    min-height: 56vh;
    margin-right: clamp(100px, 5vw, 100px);
    height: 100%;
    background: var(--Sand);
    padding: 6% 32% 6% 6%;
}
.PhotoCombo {
    position: absolute;
    right: clamp(0px, 5vw, 0px);
    top: 0;
    z-index: 3;
    max-width: 300px;
    max-width: 50%;
    bottom: 0;
}

@media (max-width: 575px){
    .JourneyBox {
    padding: 6% 40% 6% 6%;
}
}

@media (max-width: 767px) {
    .PhotoCombo {
        position: relative;
        right: clamp(0px, 5vw, 0px);
        top: 0;
        z-index: 3;
        max-width: unset;
        bottom: 0;
        margin: 0 auto;
        padding: 20px;
        background: var(--Sand);
}
.JourneyBox {
    padding: 20px;
    min-height: unset;
}
}

@media (max-width: 991px) and (min-width: 768px){
    .JourneyBox {
    padding: 10% 40% 10% 6%;
}
}

@media (max-width: 1199px) and (min-width: 992px){
    .JourneyBox {
        padding: 6% 34% 6% 6%;
    }
    .PhotoCombo {
        max-width: 250px;
    }
}
@media (min-width: 1200px){
    .JourneyBox {
        padding: 6% 44% 6% 6%;
    }
    .PhotoCombo {
    }
}


/*Text-Photo-Combo
===========================*/


@media (max-width: 991px) and (min-width: 768px){
.Text-Photo-Combo{
    padding: 0px 0px;
}
 }

@media (max-width: 575px){
.Text-Photo-Combo{
    padding: 0px 0px;
}
 }

.Text-Photo-Combo{
    padding: 50px 70px;
}


.PhotoOver{
    position: absolute;
    top: 40%;
    right: -20px;
    z-index: 1;
    max-width: 260px;
    bottom: unset;
 }
@media (max-width: 1199px) and (min-width: 992px){
.PhotoOver {
    top: 18%;
    max-width: 180px;
}
}

 @media (max-width: 1200px){
.PhotoOver{
    top: 20%;
    right: -20px;
    z-index: 1;
    max-width: 200px;
    bottom: unset;
 }
 }



 /*BlogSwiper
 ====================*/
 .BlogSwiper h3{
    font-size: var(--step--1);
    margin-bottom: 10px;
 }
 .date{
    font-size: 12px;
 }

 .BlogSwiper .swiper-wrapper{
    margin-bottom: 50px;

}
.BlogSwiper .swiper-scrollbar{
    opacity: 1!important;
    background-color: var(--Clay);
    height: 1px;
}
.BlogSwiper .swiper-scrollbar-drag{
    opacity: 1!important;
    background-color: var(--Sage);
    height: 3px;
    margin: -1px 0;
}

 /*Spotlight
 ====================*/
 .SpotlightSwiper .swiper-wrapper{
    margin-bottom: 50px;

}
.SpotlightSwiper .swiper-scrollbar{
    opacity: 1!important;
    background-color: var(--Clay);
    height: 1px;
}
.SpotlightSwiper .swiper-scrollbar-drag{
    opacity: 1!important;
    background-color: var(--Sage);
    height: 3px;
    margin: -1px 0;
}


@media (min-width: 992px) {

     .SpotlightSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 16px;
    align-items: start;
    }

    .SpotlightSwiper .swiper-wrapper .swiper-slide:first-child {
    grid-column: 1;
    grid-row: 1 / span 4;
    } 
.SpotlightSwiper .swiper-scrollbar{
    display: none;
}


    .SpotlightSwiper .swiper-wrapper .swiper-slide:not(:first-child) {
        display: block;
    }
    .SpotlightSwiper .swiper-wrapper .swiper-slide:not(:first-child) .imageHolder img{
        height: 30%;
        width: 30%;
        float: left;
        margin-right: 20px;
}
    
    .SpotlightSwiper .swiper-wrapper .swiper-slide:not(:first-child) .NewsText p {
        display: none;
    }
     .NewsText{
        margin-left: 20px;
    }
  

}

.imageHolder{
        margin-bottom: 20px;
    }

 .NewsText h3{
    color: var(--Off-White);
    font-size: var(--step-0);
 }

 .NewsText .date,
 .NewsText p{
    color: var(--Sand);
 }


 /*Footer
 ====================*/
  footer .container {
    margin-bottom: 7%;
  }

@media (max-width: 1200px) { 
  footer .container{
    margin-bottom: 25%;
  }
}

 footer .social a {
    display: inline-block;
    margin:0 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.08);
}
footer .social a:hover {
  color: #ffffff !important;
  background-color: rgba(216, 203, 184, 0.6);
  border: 1px solid var(--Sand);
  transition: all 0.3s ease-in-out;
}

footer .social img {
  width: 30px;
  height: 30px;
}


.footer-nav {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.footer-nav ul {
    font-family: var(--fontMain);
    margin: 0 auto;
    text-align: center;
}
.footer-nav li{
    display: inline-block;
    list-style-type: none;
}
.footer-nav li a{
    color: var(--Off-White);
    padding: 0 15px;
}

.footer-nav li span{
    color: var(--Off-White);
}

.footer-nav li a:hover{
    color:var(--Sand);
}
.copyright {
    color: var(--Off-White);
    /* padding-top: 1rem;
    padding-bottom: 1.3rem; */
    font-size: 14px;
}
.copyright a {
    font-size: 14px;
    text-decoration: none;
    color:var(--Sand);
}
.copyright a:hover {
    text-decoration:underline;
}


    /*=========== To Top =========== */
.toTop {
  text-align: right; }
      
a.scrollup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    bottom: 15px !important;
    text-indent: -9999px;
    width: 40px;
    height: 40px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
    background-size: 100% auto;
 }
 a.scrollup:after {
    position:absolute;
    content:"";
    left:0;
    top:0;
    bottom:0;
    right:0;
    z-index: 1;
    background:url(../images/ToTop.svg) center center no-repeat!important;
 }
.scrollup.is-visible {
	display: inline;
  	opacity: 1;
}

@media only screen and (max-width: 991px) {
    footer .social a {
        margin:0 6px;
        padding: 9px;
    }
}

@media (min-width: 992px){
    a.scrollup {
         bottom: 90px;
    }
}



/*InnerPages
========================*/



@media (max-width: 767px) {
.topBgHalfHeight {
    height: 30vh;
    padding-top: 0%;
    }
}
.topBgHalfHeight{
    position: relative;
    height: 40vh;
    padding-top: 20%;
}


.journeyIcon{
    position: absolute;
    left: 0;
    right: 0;
    top: unset;
    bottom: -40px;
    z-index: 1;
    width: 80px;
    height: 80px;
    padding: 25px;
    margin: 0 auto;
    border-radius: 50px;
    background: rgba(140, 154, 139, 0.9);
}

.journeyDuration{
    font-size: var(--step--1);
    font-family: var(--fontMain);
    padding: 10px;
    background: rgba(247, 244, 238, 0.2);
}


.Box {
    background: var(--Sand);
    transition: all 0.3s ease;
}
.Box h3{
    font-size: var(--step-1);
}

/* Box Hover */
.Box:hover {
    cursor: pointer;
    color: var(--Off-White);
    background: var(--Sage);
    transition: all 0.3s ease-in-out;
}
.Box:hover h3{
    color: var(--Off-White);
}

.Box:hover .button-dark{
    color: #ffffff;
    border: 1px solid  rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
}

.Box:hover a.more-link-dark {
    color: #ffffff !important;
}

.Box:hover a.more-link-dark::after {
    background: #ffffff;
    width: 100%;
}


/*timeline
========================*/

.timeline ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    position:relative;
}
.timeline li:not(:last-child):before {
    content: " ";
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 2px;
    left: 13px;
    z-index: 0;
    background: var(--Clay);
}
.timeline li:first-child:before {
    top: 15px;
}
.timeline li {
    padding: 4px 20px 25px 45px;
    position: relative;
}
.timeline li::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    width: 14px;
    height: 14px;
    background: var(--Clay);
    border-radius: 100%;
    /* background-size: 17.5px; */
}

.timeline ul ul li::after{
    left: 20px;
    top: 15px;
    width: 7px;
    height: 7px;
    background: var(--Sand);
}
.timeline ul ul li::before{
    display: none;
}

.timeline ul ul li {
    padding: 4px 20px 5px 45px;
}

.timeline p {
    padding-left: 40px;
}

.timeline ul + p {
    margin-bottom: 3rem;
}

/*textList
=======================*/
.textList ul {
    list-style: none;
    padding: 0;
    position:relative;
    margin-bottom: 20px;
}

.textList li {
    padding: 4px 20px 5px 30px;
    position: relative;
}
.textList li::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 15px;
    width: 7px;
    height: 7px;
    background: var(--Sand);
    border-radius: 100%;
}


/*Tags
======================*/
.tags-group-title {
    color: var(--Deep-Olive);
    font-family: var(--fontMain);
    padding-bottom: 10px;
    font-size: var(--step--1);
}

ul.tags {
    /* margin-bottom: 20px; */
    display: flex;
    flex-wrap: wrap;
}

.tags .tag {
    background: none;
    background-color: var(--Sage);
    font-size: 14px;
    font-family: var(--fontMain);
    color: var(--Off-White);
    padding: 8px 16px;
    display: inline-block;
    margin: 0 6px 10px 0;
}

.tags .tag a {
    color: var(--Off-White);
    text-decoration: none;
}

.tags.colored .tag {
    background-color: var(--Sage);
}


/*Blog
======================= */
.Blog {
    cursor: pointer;
    background: var(--Sand);
}
.Blog h3{
    font-size: var(--step-1);
}
.blogDate{
    color: var(--Clay);
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 10px;
}

@media (min-width: 992px) {
    .place-left img {
        float: left;
        margin: 0 3rem 1.5rem 0;
        width: 50%;
    }
     .place-right img {
        float: right;
        margin: 0 0 1.5rem 3rem;
        width: 50%;
    }
}

@media (max-width: 991px) {
    .place-right img {
        margin: 0 0 3rem 0;
    }
}

.blogContainer span{
    font-size: var(--step--1);
}

.benefitBox{
    padding: 15px 0 5px 0;
    background: transparent;
    transition: all 0.3s ease;
}
.benefitBox:hover{
    background: #EDE6DC;
    transition: all 0.3s ease-in-out;
}
.benefit .journeyIcon{
    position: unset;
    width: 80px;
    height: 80px;
    padding: 25px;
    margin: 30px 0;
    border-radius: 50px;
    background: rgba(140, 154, 139, 0.9);
}
.borderLeft{
    padding-right: 30px;
    border-left: 1px solid var(--Warm-Stone);
}