
:root {
    /*--fontFira: 'Fira Sans', sans-serif;*/
    --fontRoboto: 'Roboto Condensed', sans-serif;
    --fontOpen: 'Open Sans', sans-serif;
    --white: #fff;
    --whiteF7: #f7f7f7;
    --black: #000;
    --grey: #666666;   /*Header Color*/
    --grey80: #808080; /*Main Text Color*/
    --greyC9: #c9c9c9; /*explore link Color*/
    --colorBg:#0074b7;  /*Blue*/
    --colorBg-darker:#0074b7; /*Blue darker*/
    --btnBg:#fcb340;    /*BUTTON BG*/
}        
        
        
body {
  font-family: var(--fontRoboto);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--grey80);
} 
@media screen and (max-width: 1480px) {
  body {
    font-size: 20px;
  }
}
button, .btn {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
button:focus,
.btn.focus,
.btn:focus,
input:focus,
select:focus{
  outline: 0;
  box-shadow: none !important;
}

a{
  text-decoration: none;
 /* opacity: .9;*/
  color: var(--blue);
}
a:hover{
  text-decoration: none;
  /*opacity: .9;*/
    color: var(--black)!important;
}

h1, .h1,
h2, .h2,
h3, .h3 {
    font-family: var(--fontRoboto);
    color: var(--grey);
    font-weight: 600;
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0px 0 30px;
    text-transform: uppercase;
    letter-spacing: 8px;
}
h1, .h1{
   font-size: 56px;
}
.h1{
    letter-spacing: 3px;
}
h2, h3 {
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 40px;  
}
@media screen and (max-width: 1480px) {
    h1, .h1 {
        font-size: 46px;
    }
    h2 {
        font-size: 36px; 
    }
}
@media screen and (max-width: 1199px) {
    h1, .h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 34px; 
    }
}
@media screen and (max-width: 991px) {
    h1, .h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px; 
    }
}
@media screen and (max-width: 575px) {
    h1, .h1 {
        font-size: 26px;
        letter-spacing: 5px;
    }
    h2 {
        font-size: 26px; 
    }
}
@media screen and (max-width: 320px) {
  h1, .h1 {
    font-size: 22px;
    letter-spacing: 3px;
  }
}

/*SPACING
========================================== */
.y-offset{
    margin-top: 80px; 
}
@media screen and (max-width: 575px) {
    .y-offset{
        margin-top: 40px; 
    }   
}
.x-offset {
  padding: 0px 150px;
}

@media (max-width: 1480px) {
  .x-offset {
    padding: 0px 80px;
  }
}

@media (max-width: 1199px) {
  .x-offset {
    padding: 0px 60px;
  }
}

@media (max-width: 767px) {
  .x-offset {
    padding: 0px 40px;
  }
}

@media (max-width: 575px) {
  .x-offset {
    padding: 0px 30px;
  }
}

@media (max-width: 480px) {
  .x-offset {
    padding: 0px 15px;
  }
}


/*BUTTONS
=====================================*/
.btn {
    font-family: var(--fontRoboto);
    font-weight: 700;
    font-size: 16px;
    background-color: var(--btnBg);
    border: 0;
    color: var(--white);
    border-radius: 0;
    padding: 10px 25px;
    text-decoration:none;
    letter-spacing: 3px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;    
}
.bookBtn {
    transition: all 0.7s;
}
.bookBtn:hover {
   color: var(--black);
   transition: all 0.7s;
}
@media (max-width: 575px) {
    .bookBtn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.exploreLink {
  color: var(--greyC9);
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  padding: 20px 0 20px 80px;
  position:relative;
}
.exploreLink:hover {
  text-decoration: none;
  color: var(--black) !important;
}

.exploreLink:before {
    content: url(/images/right-arrow1.svg);
    position:absolute;
    background: url(/images/kiklaki-galazio.png);
    background-repeat: no-repeat!important;
    width: 64px !important;
    height: 60px;
    padding: 14px 18px;
    position:absolute;
    left:0;
    top:0;
    background-size: contain!important;
}
.exploreLink.revert {
   color: #fff; 
}
.exploreLink.revert:before {
    content: url(/images/right-arrow2.svg);
    background: url(/images/kiklaki-aspro.png); 
}

@media screen and (max-width: 1199px) {
    .exploreLink {
        padding: 16px 0 16px 70px;
    }
   .exploreLink:before {
        width: 54px !important;
        height: 50px;
        padding: 12px 14px;
   }
}
@media screen and (max-width: 991px) {
  .exploreLink {
    font-size: 14px;
     padding: 16px 0 16px 60px;
  }
   .exploreLink:before {
        width: 48px !important;
        height: 44px;
        padding: 12px 14px;
   }
}
@media screen and (max-width: 757px) {
      .exploreLink {
        padding: 12px 0 12px 50px;
      }
   .exploreLink:before {
        width: 44px !important;
        height: 40px;
        padding: 10px 12px;
   }
}
.color-white{
    color:#fff;
}


/*Header
======================*/
.header {
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
}
.header.active,
.header.bg {
  background: rgba(0, 0, 0, 0.5);
}
.header .space{
    padding: 8px;
    width:100%;
}
@media screen and (min-width: 1200px) {
    .header .space{
        padding: 20px 40px;
    }
    .header.active .space{
       padding: 10px 40px;
    }
}
@media screen and (max-width: 1199px) {
    .header .flex-eq-col-width {
      -webkit-flex: 1;          
      -ms-flex: 1;             
      flex: 1
    }
}
.sitelogo {
    width: 140px;
}
@media screen and (max-width: 1479px) {  
    .sitelogo {
      width: 90px;
    }    
}
@media screen and (max-width: 767px) {
    .sitelogo {
        width: 70px;
    }
}
@media screen and (max-width: 480px) {
    .sitelogo {
        width: 50px;
    }
}
@media screen and (min-width: 1200px) {
    .sitelogo {
        margin-right:40px;
    }
}

@media (min-width: 1200px){
    .header .bookBtn{
        padding: 10px 40px;
    }    
}
.header-right .tel {
  color: var(--white);
  display: inline-block;
  margin-top: 10px;
  margin-right: 25px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing:1px;
}
.header-right .tel:hover {
  color: var(--white);
}
@media screen and (max-width: 1199px) {
    .header-right .bookBtn{
        margin-left:15px;
    }
    .header-right .main-menu,
    .header-right .tel {
        display:none;
    }
}

.main-menu-open {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #fff;
}
.main-menu-open .nav-link {
  color: #fff;
  margin: 0 20px;
  font-weight: 700;
  letter-spacing: 2px;
  padding:0 5px;
}
.main-menu-open .nav-link.active,
.main-menu-open .nav-link:hover, 
.main-menu-open .nav-link:visited {
  color: #fff !important;
}
.main-menu-open .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: width .8s ease;
  transition: width .8s ease;
}
.main-menu-open .nav-link:hover::after,
.main-menu-open .nav-link.active::after{
  width: 100%;
}
@media (max-width: 1480px){
    .main-menu-open {
        font-size: 14px;
    }
    .main-menu-open .nav-link {
        margin: 0 10px;
        padding:0 5px;
    }
}
@media (max-width: 1199px){
    .main-menu-open {
        display:none;
    }
}

.main-menu-open .nav-item.dropdown.active .dropdown-menu,
.main-menu-open .nav-item.dropdown:hover .dropdown-menu{
    position: absolute!important;
	display: block;	
	border: 0px solid rgba(0,0,0,.15);
	background-color: rgba(255,255,255,1);
    border-radius: 0;
	 padding: 8px 10px;
	min-width: 200px;
	font-size: inherit;
	    z-index: 1030;
	left: 20px;
	top:calc( 100% - 2px );
	    margin: 0;
	    line-height:1.4;
}
.main-menu-open .nav-item.dropdown .dropdown-menu li{
	display:block;
	padding: 10px 8px 0px 8px;
}
.main-menu-open .nav-item.dropdown .dropdown-menu li a{
    color:var(--grey);
}
.main-menu-open .nav-item.dropdown .dropdown-menu a.active,
.main-menu-open .nav-item.dropdown .dropdown-menu a:hover {
	text-decoration:underline;
	color:var(--btnBg);
}


/* LANGUAGES
============================ */ 
.languagesDrop .dropdown-toggle {
    font-family: var(--fontRoboto);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 2px;
}
.languagesDrop .dropdown-toggle::after {
    margin-left: 0;
}  
.languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.5);
}
.languagesDrop .dropdown-item {
    display: block;
    padding: 0px;
    text-align: left;
    padding: 0 4px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 700;
    font-size:14px;
}
.languagesDrop .dropdown-item:hover {
    background:none;
    color: var(--grey)!important;
}

 @media (max-width: 767px) {
  .languagesDrop {
       margin-left:10px;  
     }   
 }
 


/*Mobile munu - headerLeft
======================= */
/*mobile tel icon*/
@media screen and (max-width: 1199px) {
    .tel-icon a {
        background: url(/images/phone-call.svg) no-repeat left 3px;
        background-size: 22px;
        height: 25px;
        display: inline-block;
        padding-left: 30px;
        color:#fff;
        letter-spacing:1px;
    }
}
@media (max-width: 767px) {
    .tel-icon span{
        display: none;
    }
    .tel-icon a {
        width: 30px;
    }
}
/*MOBILE MENU*/
.menu-wrap {
    width:50px;
    height:30px;
}
.menu-wrap .toggler,
.menu-wrap .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}
.menu-wrap .toggler {
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.menu-wrap .hamburger {
  z-index: 1;
}
.menu-wrap .hamburger,
.menu-wrap .hamburger > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.menu-wrap .hamburger > div {
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}
.menu-wrap .hamburger > div::after {
  top: 10px;
}
.menu-wrap .toggler:checked + .hamburger > div {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
/* Show Menu 
=================== */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}
.menu-wrap .toggler:checked ~ .menu > div {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}
.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease 0.4s;
  transition: opacity 0.4s ease 0.4s;
}
.menu-wrap .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
 
}
.menu-wrap .menu > div {
     background: var(--colorBg-darker);
  width: 100%;
  min-height:100%;
   height: auto;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.95;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;

}
.menu-wrap .menu > div > div {
  text-align: center;
 /* max-width: 90vw;
  max-height: 100vh;*/
    height: inherit;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  padding: 5px;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
@media (max-width: 480px) {
  .menu-wrap .menu > div > div > ul > li {
    padding: 2px;
  }
}

.menu-wrap .menu > div > div > ul > li a::after{
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: width .8s ease;
  transition: width .8s ease;
}

.menu-wrap .menu > div > div > ul > li a:hover::after,
.menu-wrap .menu > div > div > ul > li a.active::after{
  width: 100%;
}
.flags-mobile a {
    color:#5385b5!important;
    padding:0 5px 15px 5px;
}
.flags-mobile a:after{
    display:none!important;
} 


/* TOP MEDIA  
========================== */
/*SLIDER
=============================== */
.noTopMedia {
    height:160px;
    position: relative;
}
.topMedia {
    height: 100%;
    position: relative; 
}
.topMedia:after {
    content:"";
    display:block;
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background:rgba(0,0,0, .5);
    z-index:1;
}
.topMediaInner {
  height: 80%;
  position: relative;
}
/*
@media (max-width: 767px) {
	.topMedia,
	.topMediaInner{
		height:360px;
	}
	.noTopMedia {
        height: 100px;
    }
}*/

/*=== Carousel Slider ===*/
.carousel,
.carousel-inner,
.carousel-item {
    width: 100%;
    height: 100vh; 
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    visibility: hidden; 
        width: 50px;
     z-index: 2;
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    visibility: visible; }
.full-screen {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#carousel_slider .carousel-control-next-icon {
  background-image: url(../images/carousel-arrow.svg)!important;
}
#carousel_slider .carousel-control-prev-icon {
  background-image: url(../images/carousel-arrow.svg)!important;
  transform:          rotate(-180deg);
  -ms-transform:      rotate(-180deg);
  -moz-transform:     rotate(-180deg);
  -webkit-transform:  rotate(-180deg);
  -o-transform:       rotate(-180deg);
}
#carousel_slider .carousel-control-next-icon, 
#carousel_slider .carousel-control-prev-icon {
  display: inline-block;
  width: 50px!important;
  height: 50px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 991px) {
    .carousel, .carousel-inner, .carousel-item {
    width: 100%;
    height: unset;
    }
  #carousel_slider .carousel-item,
  #carousel_slider {
    height: 550px;
  }
}
@media screen and (max-width: 575px) {
  #carousel_slider .carousel-item,
  #carousel_slider {
    height: 350px;
  }
}
.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: #ffffff;
    top: 50px;
    bottom: 50px;
    left: 50px;
    right: 50px;
    text-align: center;
    height: calc(100% - 100px);
    width: calc(100% - 100px);
    /*text-shadow: 1px 1px 3px #000000;*/
    font-family: var(--fontRoboto);
    font-weight: 400;
    font-size: 70px;
    line-height: 1;
    letter-spacing: 10px;
}
.contentOverSlider span{
    display:block;
    font-size: 28px; 
}
@media (max-width: 1199px){
  .contentOverSlider {
    font-size: 50px;
  } 
}
@media (max-width: 767px){
  .contentOverSlider {
    font-size: 18px;
  } 
}
@media (max-width: 575px){
  .contentOverSlider {
    display: none !important; } 
}
/*END OF TOP CAROUSEL 
=========================== */

.arrow-wrap {
  z-index: 100;
  position: absolute;
  bottom: 8%;
  -webkit-transform: rotate(-90deg) translateY(0px);
          transform: rotate(-90deg) translateY(0px);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  /*font-family: "Montserrat", sans-serif;*/
  color: #fff;
  text-align: center;
  overflow: hidden;
  -webkit-transition: bottom .5s ease 0s;
  transition: bottom .5s ease 0s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.arrow-wrap:hover {
  bottom: 10%;
     color: #fff!important;
}

.arrow-wrap::before {
  display: inline-block;
  content: "";
  border-top: 3px solid #fff;
  width: 40px;
  margin: 0 5px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.arrow-wrap:hover::before {
  width: 60px;
}
/* BOOKINGROW  
========================= */
.bookingRow form {
  padding: 20px;
  background-color: var(--colorBg);
}
.bookingRow .form-group {
  margin-bottom: 0px;
  padding: 10px 40px;
  width: 25%;
  position: relative;
  cursor: pointer;
  display: block;
}
.bookingRow .form-group:last-child {
    width: 20%;
    padding: 10px 20px;
}
.bookingRow .form-group.selectGroup {
  width: 15%;
}
.bookingRow .form-group::after {
  content: "";
  background: var(--white);
  width: 1px;
  height: 120px;
  position: absolute;
  right: 0;
  top: -12px;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}
.bookingRow .form-group:nth-child(4):after,
.bookingRow .form-group:nth-child(5):after{
    display:none;
}
.bookingRow label {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  cursor: pointer;
  display:block;
}
.bookingRow input.form-control,
.bookingRow select.form-control {
  width: 100%;
  font-size: 28px;
  font-weight: 300;
  border-radius: 0px;
  color: var(--white);
  padding: 0px 15px 0px 0px;
  border: none;
  background-color: transparent;
  cursor: pointer;
    position: relative;
 font-family: var(--fontRoboto);  
}
.bookingRow select option {
    color:grey;
    font-size: 20px;
}
.bookingRow select.form-control {
    width: auto;
}
.bookingRow .has-feedback:before {
  content: '';
  color: transparent;
  background: url(../images/calendar.svg) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 24px;
  right: 60px;
}

@media (max-width: 1199px) {
  .bookingRow .has-feedback:before {
    width: 25px;
    height: 25px;
    right: 60px;
  }
  .bookingRow input.form-control, 
  .bookingRow select.form-control {
    font-size: 22px;
    padding: 0px 0px 0px 0px;
  }
}

@media (max-width: 991px) {
    .bookingRow .has-feedback:before {
        width: 20px;
        height: 20px;
        right: 40px;
  }
   .bookingRow .form-group {
        padding: 10px 20px;
   }
   .bookingRow .form-group::after {
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
    }
  .bookingRow input.form-control, 
  .bookingRow select.form-control {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .bookingRow {
    display: none;
  }
}


/* FOOTER
================== */
.footerSection {
  font-size: 18px;
  letter-spacing: 2px;
   color: var(--grey);
}
.footerSection .grey-bg{
  background: #f9f9f9;
}
@media (min-width: 992px) {
    .footerSection .grey-bg{
        margin-top:20px;   
    }
}


.footerSection .footerTitle {
  font-weight: 700;
  letter-spacing: 2px;
  color: #424242;
  font-size: 20px;
}
.footerSection .footerTitle span {
  display: block;
  color: var(--grey);
  font-size: 16px;
}

.footerSection .footerTitle.white {
  color: #fff;
}
.footerSection hr {
  position: relative;
  left: -55%;
  width: 80%;
  border-top: 2px solid var(--colorBg);
}

.footerSection .contactBox {
  line-height: 1.5;
}

.footerSection .contactBox a {
  text-decoration: none;
  color: var(--grey);
  cursor: pointer;
}
.socialBox a {
    display:inline-block;
}
.socialBox img {
  height: 30px;
}
.footerSection .awardsBox {
  background:var(--colorBg);
  padding: 10px;
}

.footerSection .awardsBtn {
  background-color: #f4f4f0;
  color: var(--colorBg);
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 0;
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

.footerSection .awardsBtn:hover {
  color: #404040;
  -webkit-transition: all 1.0s;
  transition: all 1.0s;
}

/* FOOTER MENU
=================== */
.footer-menu {
  background: #fff;
}

.footer-menu ul li a {
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--grey);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  padding: 0 10px;
}

.footer-menu ul li a:hover,
.footer-menu ul li a.active {
  color: var(--colorBg);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
@media (max-width: 767px) {
  .footer-menu ul li a {
    font-size: 14px;
  }
}

.copyright {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #828282;
  background: #fff;
}

.copyright a {
  color: #828282;
  text-decoration: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.copyright a:last-child {
  color: var(--colorBg);
}

.copyright a:hover {
  color: var(--colorBg);
}

@media (max-width: 991px) {
  .copyright {
    font-size: 12px;
  }
}

/*Newsletter
============================= */
.newsletter {
  text-align: left;
  color: #000;
  font-size: 14px;
  
}
#theFormNewsletter {
  letter-spacing: 1px;
}
.newsletter .form-group {
  margin-bottom: 0px;
}

.newsletter input.mailBox {
  color: #000000;
  border: none;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  width: 100%;
  padding: 8px 10px 10px 10px;
  border-bottom: 3px solid var(--colorBg);
  background-color: transparent;
  border-radius: 0px;
  outline: none;
  margin-bottom: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.newsletter input.mailBox:focus {
  -webkit-box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.15);
}
.submitBtn {
  background-color: var(--colorBg);
  background-image: none;
  border:0;
  font-weight: 300;
  border-radius: 0px;
  padding: 10px 30px;
  vertical-align: inherit;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  margin-top: 0 !important;
  outline: none;
}
.submitBtn:hover,
.submitBtn:focus {
  color: #000;
}
.newsletter ::-webkit-input-placeholder {
  color: #000;
}
.newsletter :-moz-placeholder {
  color: #000;
}
.newsletter ::-moz-placeholder {
  color: #000;
}
.newsletter :-ms-input-placeholder {
  color: #000;
}
.form-agree label {
  display: inline;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
}
.form-agree label {
	display:inline;
}
.form-agree a {
    color: #ae9866;
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; }
  
.asterisk {
	text-align:left;
	font-size:13px;
}
.grecaptcha-badge {
  display: none !important; } 
  
/*PAGINATION
===============================*/
.swiper-pagination {
    bottom: 0px !important;
}
.swiper-pagination-bullet {
      background: #d1d1d1;
    height:13px;
    width:13px;
    opacity:.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: var(--colorBg-darker);
       opacity:1;
}


  
  /* INTRO TEXT
========================= */

.welcome {
  background: url(../images/deksia-kikloi.png) no-repeat;
  background-position: left 100%;
  overflow: hidden;
}
.welcome .leftSide {
  padding: 80px 50px 80px 70px;
}
.welcome h1 span {
  display: block;
}
@media screen and (min-width: 992px) {
  .welcome .leftSide .text-holder {
      width: 70%;
  }
}    
@media screen and (max-width: 991px) {
  .welcome .leftSide {
    padding: 0px 50px 80px 50px;
  }
}
@media screen and (max-width: 767px) {
  .welcome .leftSide {
    padding: 0px 50px 0px 50px;
  }
}

@media screen and (max-width: 480px) {
  .welcome .leftSide {
    padding: 0px 20px 80px 20px;
  }
} 

.welcome .bgBLUE {
  background: url(../images/welcome-sima-gia-photo.png) no-repeat;
  background-size: cover;
    height: 700px;
    width: 640px;
}
.welcome .upImg {
/*  width: 545px;*/
    height: 434px;
  mask-image: url("../images/backgroundWelcome.png");
  mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-image: url("../images/backgroundWelcome.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
    align-self: self-start;
    margin-top: 25px;
    margin-left: 42px;
}

@media screen and (max-width: 1480px) {
  .welcome .bgBLUE {
    width: 620px;      
    height: 680px;
  }
  .welcome .upImg {
    /*width: 550px;*/
    height: 420px;
  }
}

@media screen and (max-width: 1199px) {
  .welcome .bgBLUE {
    width: 480px;
    height: 525px;
  }
  .welcome .upImg {
    /*width: 410px;*/
    height: 330px;
    margin-top: 15px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 991px) {
  .welcome .bgBLUE {
    width: 400px;
    height: 440px;
  }
  .welcome .upImg {
    /*width: 310px;*/
    height: 274px;
    margin-left: 32px;
  }

}
@media screen and (max-width: 575px) {
  .welcome .bgBLUE {
    width: 320px;
        height: 350px;
  }
  .welcome .upImg {
  /*  width: 290px;*/
    height: 220px;
    margin-left: 24px;
    margin-top: 10px;
  }
  .welcome .leftSide {
    padding: 0px 20px 10px 20px;
  }
}
@media screen and (max-width: 320px) {
  .welcome .bgBLUE {
    width: 280px;
    height: 310px;
  }
  .welcome .upImg {
    /*width: 250px; */
    height: 195px;
  }
}


/*ACCOMMODATION INTRO
=========================== */
.home_accommodation{}
.home_accommodation .carousel-box {
    position:relative;
}
.text-over {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    background-color: rgba(0, 116, 183, 0.7);
    color: #fff;
    padding:30px;
    transition: all .2s ease;
}
.text-over:hover {
       background-color: rgba(0, 116, 183, 0.85); 
}
.text-over h2 {
  color: #fff;
  margin:0;
}
.text-over h2 span {
    display:block;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
}
.btn-bottom-holder {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
}

.home_accommodationCarousel .carousel-box:first-child {
  margin-left: 0;
}

.home_accommodationCarousel .carousel-box:last-child {
  margin-right: 0;
}
@media screen and (max-width: 575px) {
  .text-over {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}

/*DINING INTRO
=========================== */
.dining {
  position: relative;
  overflow: hidden;
}
.dining .leftSide {
  position: absolute;
  width: 45%;
  top: auto;
  bottom:auto;
  height:100%;
  color: #fff;
  z-index: 2;
}
.dining .text-holder {
    background-color: var(--colorBg);
    padding: 60px 80px;
    width:100%;
}

@media screen and (max-width: 1190px) {
  .dining .leftSide {
    width: 50%;
    }
    .dining .text-holder {
    padding: 40px 50px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .dining .leftSide {
    width: 60%;
  }
}

.dining .rightSide {
  margin-left: auto;
  text-align: right;
  display: inline-block;
}



@media screen and (max-width: 767px) {
    .dining .leftSide {
    position: relative;

    width: 100%;
  }
  .dining .rightSide {
    position: relative;
  }

}

@media screen and (max-width: 380px) {
  .dining .text-holder {
    padding: 40px 40px;
  }
}
/*REASONS
============================= */

.reasonsToBook h2{
    color:#fff;
    text-align:center;
    margin-top:0;
}
.reasonsToBook .reasonsBox {
  background-color: var(--colorBg);
  padding: 40px 20px;
  position: relative;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 5px;
}
.reasonsToBook .column {
    padding-top:30px;
    padding-bottom:30px;
}
.reasonsToBook .column::after {
    content: "";
    background: #fff;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
}
.reasonsToBook .column:nth-child(3):after {
    display:none;
}
.reasonsToBook .num {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}
.reasonsToBook .btn-placement {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
}
@media screen and (max-width: 1199px) {
  .reasonsToBook .reasonsBox {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .reasonsToBook .reasonsBox {
    padding: 30px 20px;
  }    
    .reasonsToBook .num {
    font-size: 32px;
    }

}
@media screen and (max-width: 575px) {
      .reasonsToBook .column {
        padding: 12px 12px;
      }  
    .reasonsToBook .column::after {
        display:none;
        
    }
}

/*DESTINATION
===================== */

.explore .images-holder:before {
    content:"";
    position:absolute;
    top:auto;
    bottom:auto;
  height: 30%;
  width:100%;
 /* width: calc(100% - 30px);*/
  background: var(--colorBg);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
    .explore .images-holder:before {
        width: calc(100% - 30px);
    }
}
.explore .images-holder img {
    /*width: calc(50% - 15px);*/
    width: calc(100% - 30px);
}
.explore .images-holder img:first-child {
    margin-right:30px;
}
.explore .text-holder .padding{
  padding: 0 50px;
}
.explore .exploreLink {
  color: var(--greyC9);
}

@media screen and (max-width: 1480px) {
    .explore .text-holder .padding{
      padding: 0 20px;
    }
}

@media screen and (max-width: 1199px) {
    .explore .text-holder .padding{
      padding: 0 15px;
    }
}

.reviews {
  color: #fff;
  text-align: center;
  position: relative;
  background: #69a2c3 url(../images/aristeroi-kikloi.png) no-repeat center;
  background-position: right -60px;
  background-size: 300px;
}
.reviews h2{
  color: #fff;
  font-style: normal;
}
.reviews .heading {
  font-style: italic;
  font-size: 22px;
  letter-spacing: 5px;
  line-height: 27px;
  font-weight: 400;
  display: inline-block;
}

.reviews .reviewsBox {
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
  cursor: pointer;
}
.reviews .swiper-pagination-bullet {
    background: var(--white);
}
.reviews .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--colorBg-darker);
}



/*Content Row: img > text and reverse*/

.row-text.revert:before{
    content:"";
    position:absolute;
    left:0;
    right:-50%;
    top:0;
    bottom:0;
    background: var(--colorBg);
    z-index:-1;
}
@media screen and (max-width: 767px) {
    .row-text.revert:before{  
        right:0;     
    }
}
.row-text,
.row-text h2{
      color: var(--grey) !important;
}
.row-text h2 span {
    display: block;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 3px;
}
.row-text.revert,
.row-text.revert h2{
      color: #fff !important;
}
 .roomInfoDetails {
  text-align: center;
}
.roomInfoDetails img {
  display: block;
  margin: auto;
  margin-bottom: 15px;
  height: 65px;
}
@media screen and (max-width: 991px) {
  .roomInfoDetails img {
        height: 45px;
  }
}
@media screen and (max-width: 575px) {
    .roomInfoDetails {
        font-size: 18px;
    }
}
.row-text .exploreLink {
  color: var(--grey);
}
.row-text.revert .exploreLink {
  color: #fff;
}

.room-page {
  color: var(--grey);
}
.room-page h1 {
  display: inline-block;
 font-family: 'Roboto Condensed', sans-serif;
}
.room-page h1 span {
  display: inline-block;
  font-style: italic;
  font-weight: 300;
}
.room-page .roomImg {
    background: var(--colorBg-darker);
}
.room-page .amenities:before {
    content:"";
    display:block;
    background: var(--colorBg-darker);
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    position: absolute;
    z-index: -1;
}
.amenities h2{
    font-weight:300;
    color:#fff;
}
.amenities ul {
    margin-left:0px;
}
.amenities ul li {
  color: #fff;
  font-size: 18px;
  list-style-type:none;
}
.amenities ul li img {
  margin-right: 20px;
  height:40px;
  width:auto;
  margin-bottom:8px;
  filter: invert(100%);
-webkit-filter: invert(100%);
-moz-filter: invert(100%);
}

.boxes .carousel-box {
    margin-bottom:25px;
}

/*Submenu
========================= */
.submenu-col {
    padding-top:8px;
    padding-bottom:8px;
    background: #f9f9f9;
}
.submenu-col a{
    padding: 8px 15px;
    display: block;
    color: var(--grey);
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom:2px solid #fff;
}
.submenu-col a:last-child{
     border-bottom:none;
}
.submenu-col a.active, 
.submenu-col a:hover {
      color: var(--colorBg);
    text-decoration: none;
}
@media screen and (min-width: 768px) {
    .submenu-col.asRow a{
           border-bottom:0px solid #fff;
           border-right:2px solid #fff;
    }
    .submenu-col.asRow a:last-child{
         border-bottom:none;
         border-right:none;
    }
}
.map_link {
	display:block;
	height:100%;
	z-index: 11;
    position: relative;
}
.map_link.inner {
	background:url(/images/map.jpg) no-repeat center center;	
	min-height:450px;
}
@media screen and (max-width: 767px) {
    .map_link.inner {
        min-height:350px;
        margin-bottom:30px;
    }   
}


.gallery-page img {
    margin-bottom:30px;
}

.cool-link {
  display: inline-block;
  text-decoration: none !important;
}

.cool-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: width .8s ease;
  transition: width .8s ease;
}

.cool-link:hover::after {
  width: 100%;
}

a.scrollup, a:hover.scrollup {
  background: url(../images/scrollup.svg) no-repeat center center;
  background-size: 50%;
  bottom: 20px;
  position: fixed;
  right: 20px;
  text-indent: -9999px;
  width: 65px;
  height: 65px;
  text-decoration: none;
  padding: 0px 0px;
  z-index: 2;
}

/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:640px;
  }
.modal .modal-content {
  border-radius: 0px;
}
.modal .btn-close {
  position: absolute;
  width: 2em;
  height: 2em;
  right: 0px;
  top: 0px;
  opacity: .8;
  border-radius: 0px;
}
@media screen and (max-width: 767px) {
  .modal .modal-body .imgCol {
    height: 300px !important;
  }
  .modal .modal-dialog {
       max-width:400px;
  }
}


/* Feel free to change duration  */ 
.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  
.fadeOut  {
  -webkit-animation-name : fadeOut  ;
  animation-name : fadeOut  ;
}  
@-webkit-keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}
@keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}

