@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  --white: #ffffff;
  --grey: #58595b; 
  --grey-light: #f6f6f6;
  --blue: #17becf;
  --blue-light: #17d6e9; 
  --blue-xlight: #a7e7ed; 
  --black: #000000;
  
  
  --white-dark1: #f8f8f7;
  --black-07: #070707;
  --green: #669583;

  --black-26: #262626;
  --black-light: #2b2e34;
  --gold-veryDark: #97875b;
  --gold-dark: #8e7e52;
  --gold: #b5a26d;
  --gold-light: #d7c080;

  --gold-xlight: #dfd9cf;
  --gold-xxlight: #f5f2ed;

  --pink: #c19e9a;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
    color: var(--grey);
}

h1, h2, h3, .h1, .h2, .h3{
  font-family: 'Comfortaa', cursive;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
}
h1, .h1 {
  font-size: 42px;
}
h2, .h2 {
  font-size: 34px;
}
h3, .h3 {
  font-size: 28px;
}
@media screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 32px;
  }
  h2,
  .h2 {
    font-size:28px;
  }
     h3, .h3 {
      font-size: 22px;
    } 
}
@media screen and (max-width:767px) {
  h1, .h1 {
    font-size: 26px;
  }
  h2, .h2 {
    font-size:24px;
  }
  h3, .h3 {
    font-size:20px;
  }
}

.main-container-padding {
  padding: 50px 50px 0 50px;
}
@media (max-width: 1199px) and (min-width: 992px){
  .main-container-padding{
    padding: 30px 30px 0 30px;
  }
}
@media (max-width: 767px) {
  .main-container-padding{
    padding: 20px 20px 0 20px;
  }
}
@media (max-width: 320px) {
  .main-container-padding{
    padding: 20px 10px 0 10px;
	  
  }
}

.underline:after {
  content: " ";
  display: block;
  width: 200px;
  height: 4px;   
  background: var(--blue-light);
  margin-top:10px;
}
.underline.centered:after {
    margin-left:auto;
    margin-right:auto;
}
/*
@media screen and (max-width: 767px) {
    .innerpages .underline:after {
        margin-left:auto;
        margin-right:auto;
    }
}*/
a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  color: var(--grey);
}

a:hover {
  text-decoration: none;
      color: var(--blue);
}
.main-container-padding a {
 color: var(--black-07);
}
.main-container-padding a:hover {
      color: var(--blue);
   
}
.section-bg-grey-light {
      background: var(--grey-light);
}
/*SPACE 
==================== */
.top-distance {
   margin-top: 50px;   
}
@media (max-width: 767px){
    .top-distance {
       margin-top: 20px;   
    }    
}
.flex-eq-col-width {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
}
.btn {
    font-family: 'Comfortaa', cursive;
    position: relative;
    font-size: 14px;
    line-height: 19px;
    text-align: center;
    text-transform: uppercase;
    color: var(--grey);
    border-radius: 0;
    border: none;
    padding: 10px 25px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    background: var(--white);
    font-weight: 800;
}
.btn.blue{
    background: var(--blue); 
    color: var(--black);
}
.btn.blue:hover{
    background: var(--blue-light); 
    color: var(--black);
}
.bookButton {
  background: var(--blue);
  color:#000000;
   /*color: var(--white);*/
  display: block;
  margin: 0px auto;
}
.bookButton:hover {
  background: var(--blue-light);
}
@media (max-width: 1199px){
   .btn {
        padding: 10px 18px;
   }
}
/*

.btnBordered {
  background-color: transparent;
  border: 1px solid var(--gold);
}
.btnBordered:hover,
.btnBordered:focus{
  border: 1px solid var(--gold);
  background-color: var(--gold);
}
*/
button:focus,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}


/*CAROUSEL
======================= */
.owl-carousel .owl-nav {
  text-align:center;
  padding-top:20px;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    height: 50px;
    width: 100px;
    position: relative;
} 
.owl-carousel .owl-nav .owl-prev {
    background: url(/images/icons/arrow-grey.svg) no-repeat center !important;
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    
}
@media screen and (max-width: 1199px) {
    .owl-carousel .owl-nav .owl-prev,
    .owl-carousel .owl-nav .owl-next {
      height: 40px;
      width: 80px;
    }
}
.owl-carousel .owl-nav .owl-next {
    background: url(/images/icons/arrow-grey.svg) no-repeat center !important;
}

/* ------------------ */

.header {
    font-family: 'Comfortaa', cursive;
    background-color: var(--white);
    padding: 0px 40px;
    height: 115px;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.75px;
}
.header.tiny {
  height: 80px;
}
.header.menuHeader {
  z-index: 10000000000;
  background: transparent;
  color: var(--white);
}
.header .headerLogo {
    width: 177px;
    transition: transform 1s;
}
.header.tiny .headerLogo {
  width: 120px;
}


.header.menuHeader .headerLogo,
.header.menuHeader .tel img{ /*.whiteLogo {*/
    filter:  brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.header .tel img {
  margin-bottom: 4px;
}


.header .nav-link{ 
    padding: 0px 5px;
}
@media screen and (max-width: 991px) {
    .header .tel.mobileTel img {
      width: 25px;
    }
}
@media screen and (max-width: 575px) {
    .header .tel.mobileTel img {
      width: 18px;
    }
}

@media screen and (max-width: 1440px) {
  .header {
    padding: 0px 15px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  .header .headerLogo {
        width: 120px;
    }
    
    .header .bookButton {
        margin-right: 0px !important;
         padding: 10px 5px
    }
    
    .languagesDrop.dropdown {
        margin-right: 10px !important;
    }
    
    .languagesDrop button {
        font-size: 14px !important;
       
    }
}

@media screen and (max-width: 991px) {
  .header {
    height: 80px;
  }
  .header .headerLogo {
    width: 113px;
    height: 55px;
  }
  .header.tiny .headerLogo {
    width: 85px;
    height: 50px;
  }
  .header.menuHeader .whiteLogo {
    width: 85px;
    height: 50px;
  }
}

@media screen and (max-width: 575px) {
  .header .bookButton {
    width: 100px;
   /* height: 40px;*/
    padding: 8px;
  }
  .header {
    padding: 0px 15px;
  }
}

@media screen and (max-width: 380px) {
  .header .bookButton {
     /*width: 85px;
   height: 48px;*/
    padding: 6px;
    padding: 6px;
    font-size: 12px;

  }
}


.header .menu-btn {
  width: 25px;
  height:25px;
  background: url(/images/icons/menu.svg) no-repeat right 2px;
  cursor: pointer;
  margin-left:15px;
}
.header .menu-btn.active {
  background: url(/images/icons/menu-close.svg) no-repeat right 2px;
}
/*
.header.menuHeader .menu-btn.closeMenu {
  display: inline-block !important;
}
.header.menuHeader .menu-btn.openMenu {
  display: none;
}
*/
.menu-container {
  height: 0%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  /*background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.85)));*/
  /*background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));*/
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.95)), to(rgba(0, 0, 0, 0.95)));
  background: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
  overflow-y: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}
.menu-content {
  position: absolute;
  display: block;
  width: 100%;
  top:120px;
 /* top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);*/
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.menu-content .menu-items a {
  padding: 5px;
  text-decoration: none;
  color: var(--white);
  background: rgba(0,0,0,.25);
  display: block;
  text-align: center;
  margin: 5px 0px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.menu-content a:hover,
.menu-content a.active{
  color: var(--blue-xlight);
}
.menu-contact {
  letter-spacing: 0.75px;
  color: var(--white);
  text-align: center;
}

.menu-contact a {
  color: var(--white);
}

.menu-contact > a {
  padding-bottom: 5px;
  border-bottom: 1px solid;
}

.menu-contact .social ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style:none;
  margin:0;
}
.menu-contact .social ul img{
    filter:  brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
    height:25px;
} 
.menu-contact .social ul li a {
  border: none;
  padding: 0px 10px;
}
@media screen and (max-width: 1199px) {
  .menu-content .menu-items a {

  }
}

@media screen and (max-width: 991px) {
  .menu-btn span {
    visibility: hidden;
    opacity: 0;
  }
  /*.header .menu-btn {
    width: 50px;
  }*/
}

@media screen and (max-width: 380px) {
 /* .header .menu-btn {
    width: 40px;
  }
  .header.menuHeader .menu-btn {
    width: 50px;
  }*/
}

@media screen and (min-height: 1200px) {
  .menu-content .menu-items a {
    margin: 10px 0px;
  }
  .menu-contact {

  }
}

@media screen and (max-height: 800px) {
  .menu-content .menu-items a {
   
  }
  .menu-contact {

  }
}

@media screen and (max-height: 600px) {
  .menu-content .menu-items a {

    margin: 0px;
  }
  .menu-contact {
 
  }
}

.languagesDrop button {
  border: none;
  background: transparent;
  color: #000;
  font-weight: 700;
  font-size: 16px; 

}
.languagesDrop.dropdown{
    position:relative;
    z-index: 1000;
}
.languagesDrop .dropdown-menu{
    min-width: auto;
    width: 45px;
    border-radius: 0;
    padding: 5px 8px;
}
.languagesDrop .dropdown-menu .dropdown-item {
     color: #000;
  font-weight: 700;
  font-size: 16px; 
}
@media screen and (max-width: 480px) {
  .languagesDrop,
  .languagesDrop .dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}
.languagesDrop .dropdown-menu .dropdown-item {
    padding: 0;
    color: #000;
}
.languagesDrop .dropdown-menu .dropdown-item:hover {
    background:none;
}


/* TOP CAROUSEL 
========================= */
.noTopMedia {
    height:115px;
}
@media screen and (max-width: 991px) {
    .noTopMedia {
        height:80px;
    }   
}
.topMedia {
  height: 100%;
  position: relative;
}
@media (max-width: 767px) {
	.topMedia {
	    margin-top:80px;
		height:350px;
	}
}
#bgCarouselSlider .carousel-item:before {
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:2;
    height: 100vh;
   /* background: #070707 0% 0% no-repeat padding-box;
    opacity: 0.41;*/
}
#bgCarouselSlider .carousel-item .overlay {
  height: 100%;
}
.carousel-fade .carousel-item {
  display: block;
  position: absolute;
  opacity: 0;
  transition: opacity .75s ease-in-out;
  background-position: center center !important; 
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}
.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    visibility: hidden;
    width: 50px;
    z-index:2;
     background:none;
     border:0;
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  visibility: visible; 
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
    background:url(/images/icons/arrow-white.svg) no-repeat center center;
    width:50px;
    height:50px;
}
.carousel-control-prev-icon {
   -moz-transform:rotate(180deg);  
  -webkit-transform:rotate(180deg);  
  -o-transform:rotate(180deg);  
  -ms-transform:rotate(180deg);    
}
html,
body,
.carousel,
.carousel-inner,
.carousel-item {
  width: 100%;
  height: 100%; 
}
@media (max-width: 767px) {
	html,
	body,
	.carousel,
	.carousel-inner,
	.carousel-item {
	  height: inherit;
	}
}
.carousel {
  position: absolute;
  top: 0;
  left: 0; }

.full-screen {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contentOverSlider {
    position: absolute;
    z-index: 9;
    color: white;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 90%;
    text-align:center;
    left:0;
    right:0;
    margin:auto;
}
@media screen and (max-width: 767px) {
    .contentOverSlider {
        width: 80%;  
    }
    .contentOverSlider .col{
        padding:0px;
        font-size: 38px;
        line-height: 42px;
    }
}
.grayscale .overlay {
    background-size: cover;
    -webkit-filter: grayscale(1);
        filter: grayscale(1);
}
.no-grayscale .overlay {
  -webkit-filter: grayscale(0) !important;
        filter: none !important;
}
.contentOverSlider .smallText {
    display:block;
}
.contentOverSlider .col {
    /*font-size: 60px;
    font-weight: 700;*/
    color: #fff;
    letter-spacing: 8px;
   /* margin-bottom: 20px;*/
    position: relative;
      /*  Animation decalaration   */
    animation-name: moveInleft;
    animation-duration: 3s;
}
.contentOverSlider .col span{
   /*  Animation decalaration   */
    animation-name: moveInleft;
    animation-duration: 3s;
    background: rgba(0,0,0,0.7);
    padding: 10px;
}

@keyframes moveInleft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    80% {
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    80% {
        transform: translateX(-10px);
    }
    
    100% {
        opacity: 1;
        transform: translate(0);
  
}  }


/*END TOP CAROUSEL  */



/*Book form
====================== */
.bookingRow{
  position: absolute;
   bottom: 0px;
   z-index: 3;
   left: 0px;
   right: 0px;
}
.bookingRow .container {
  background: rgba(255, 255, 255, .8);
}
.relative .bookingRow {
    position:relative;
}
/*
.relative .bookingRow .container {
  background: rgba(255, 255, 255, 0);
}*/
.bookingRow .form-inline{
  padding: 10px 20px;
}
@media (max-width: 575px) {
  .bookingRow {
    height: 63px; 
  }
 }
.bookingRow .form-group {
    margin-bottom: 0px;
    padding:5px 7px;
    width: 20%;
}
.bookingRow label,     
.bookingRow input.form-control, 
.bookingRow select.form-control {
     font-family: 'Open Sans', sans-serif;   
    color: #444444;
    width: 100%;
    text-align: left;  
    font-size: 14px;
    font-weight: 600;
}
.bookingRow input.form-control, .bookingRow select.form-control {
    height: 40px !important;
    font-size: 16px;
    font-weight: 300;
    border-radius: 0px;
    padding: 0px 12px 0px 5px;
    background-color:transparent; 
    border: 1px solid #b7b7b7;
}
.bookingRow label {
    display: block;
    margin-bottom: 6px;
}
/*
.bookingRow input.form-control.hasDatepicker{
    background:url(/images/calendar.svg) no-repeat center center;
    background-size: 24px;
    background-position: right 5px center;
}*/
  .bookingRow .bookButton {
    /*color: #fff;
    color:  var(--grey-light);*/
    color:#000000;
    border: none;
    margin-top: 20px;
    line-height: normal;
    padding: 15px 10px;
    font-weight: 500;
    font-size: 13px;
    vertical-align: bottom;
    background-color: var(--blue);  
    transition: all 0.3s ease 0s;
    letter-spacing: 2px;
    width:100%;
  }
    
  .bookingRow .bookButton:hover {
    color:  var(--grey-light);
    background-color: var(--grey);  
    transition: all 0.3s ease 0s;
}
@media (max-width: 1200px) {
  .bookingRow .bookButton {
    padding: 14px 12px 15px 12px;
    font-size: 13px;
}
}
@media (max-width: 767px) {
.bookingRow .bookButton{
    padding: 21px 16px;
  }
}


/*INTRO TEXT
======================= */
.intro .welcome .grey-bg {
  background: var(--grey);
   color: var(--white);
}


.welcome picture { 
    height: 100%;
}

.welcome img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*ACCOMMODATION INTRO
=============================== */
.accommodation-box,
.accommodation-box::before {
    position:absolute;
    top:10px;
    bottom:10px;
    left:10px;
    right:10px;
}
.accommodation-box::before {
    content:"";
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-20px,0,0);
  transform: translate3d(-20px,0,0);
  background-color: rgba(23, 190, 201, 0.8); 
  opacity: 0;
}
.accommodation-box:hover::before {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.accommodation-box {
    padding:50px;
    color: var(--black-07);    
}
@media screen and (max-width: 767px) {
    .accommodation-box {
        padding:30px 15px;
    }
}
.accommodation-box .room-details {
    position:relative;
    opacity:0;
}
.accommodation-box:hover .room-details {
    opacity:1;
}
.room-details .column{
    max-width:150px;
    line-height:initial;
}
.room-details .size:before,
.room-details .capacity:before,
.room-details .view:before{
    content:"";
    background-size: 100%!important;
    width: 32px;
    height: 32px;
    display: block;
    margin: auto;
    margin-bottom: 15px;
}
.room-details .size:before{
    background:url(/images/icons/r-size.svg) no-repeat center center; 
}
.room-details .capacity:before{
    background:url(/images/icons/r-capacity.svg) no-repeat center center; 
}
.room-details .view:before{
    background:url(/images/icons/r-view.svg) no-repeat center center;  
}
.room-details{
    text-align:center;
    font-size: 16px;
}
.room-details.colored {
      color: var(--grey);
}

.room-details.colored .size:before,
.room-details.colored .capacity:before,
.room-details.colored .view:before {
    filter: invert(60%);
}

@media screen and (max-width: 1199px) {
    .room-details .size:before,
    .room-details .capacity:before,
    .room-details .view:before{
        width: 25px;
        height: 25px;
    }
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 575px) {
}



/* ========================= */

.specialOffers .offersCarousel {
    background: var(--grey-light);  
}
.specialOffers .offersCarousel .offers-box {
  padding: 30px 80px 0px;
}
@media screen and (max-width: 575px) {
  .specialOffers .offersCarousel .offers-box {
    padding: 10px 20px 0px;
  }
}

/* AWARDS SECTIONS
==================================== */
.awardsHome {
   /* background: #F8F8F7;*/
}

.text-center .ListText {
   list-style-position: inside;
}

ul.ListText{
    margin-left:18px;
}
.room .ListText{
    text-align:left;
}

/* SCROLL UP
===================================== */
.toTop {
  text-align: right;
}

a.scrollup,
a:hover.scrollup {
  background: url(/images/scrollup.svg) no-repeat center center;
  background-size: 30px;
  bottom: 26px;
  position: fixed;
  right: 5px;
  text-indent: -9999px;
  width: 40px;
  height: 60px;
  text-decoration: none;
  padding: 0px 0px;
  z-index: 10001;
}
@media screen and (max-width: 767px) {
    a.scrollup,
    a:hover.scrollup {
        right: 20px;  
        bottom: 10px; 
          background-size: 25px;
              width: 35px;
    height: 45px;
    } 
}

/* FOOTER
============================== */
.footer {
    background-color: var(--blue);
    color: var(--black);
    padding: 30px 0;
    font-size: 16px;
 }
 .footer .footerMenu {
     border-bottom: var(--white) solid 1px;
     margin-bottom:30px;
 }
 
.footer .footerMenu li {
    font-family: 'Comfortaa', cursive;
    margin: 10px;
    list-style-type: none;
}
@media screen and (max-width: 767px) {
    .footer .footerMenu li {
          margin: 4px 0;
    }
}
.footer a {
  color: var(--black);
  cursor: pointer;
}
.footer a:hover,
.footer a.active{
  color: var(--black);
  text-decoration: underline;
}

.contactDetails a{
  color: var(--black);
  text-decoration: underline;
}


/*Newsletter
============================= */
.newsletter .contactform .form-group {
    margin-bottom: 0px; 
}
.newsletter .contactform input,
.newsletter .contactform .submitBtn {
    font-family: 'Comfortaa', cursive;
    font-size: 14px;
    font-weight: 500;
    color:#252525;
    border-radius: 0px; 
    outline: none;    
}
.newsletter input.mailBox {
    width: 100%;
    padding: 6px 10px 8px 10px;
    border: 1px solid #d7d7d7;
    border: var(--blue-dark) solid 1px;
    background-color: var(--white);
}
.newsletter input:focus {
    border: var(--blue-dark) solid 1px;
}
.newsletter .form-group {
    margin-bottom: 0px; 
}
.newsletter .submitBtn {
    background-color: var(--blue-light);
    border: 0px;
    padding: 12px 25px;
    vertical-align: inherit;
    transition: all 0.3s ease 0s;
    margin-top:0!important;
    color: var(--black)!important;
}
.newsletter .submitBtn:hover, 
.newsletter .submitBtn:focus {
        background-color: var(--blue-dark);
}
@media (max-width: 991px){
    .newsletter .submitBtn {
      padding:11px 20px;
    }
}
@media (max-width: 575px) {
    .newsletter {
        position:relative;
        padding-bottom: 70px;
    }
    .newsletter .form-inline {
      display: block; 
    } 
    .newsletter input.mailBox {
        margin-bottom:10px;
        width: 90%;
    }
    .newsletter .submitBtn {
        margin-top: 10px;
        position:absolute;
        bottom:0;
        left:50%;
        transform: translateX(-50%);
    }
}
.newsletter  .form-agree a {
    text-decoration:underline;
    	color: var(--black);
}

.footer .footerSocial {
  width: 100%;
}
.footer .footerSocial ul li {
  display: inline-block;
  padding: 0px 10px;
}
.footer .footerSocial img {
    height:25px;
}
.copyrightText {
    color: var(--grey);
    font-size: 14px;
    font-weight: 300;
    padding: 10px 0 0px 0;
    text-align: center;
    font-family: 'Comfortaa', cursive;
}


/*INNER PAGES
===================================== */

/* =============================== */
@media screen and (max-width: 767px) {
    .innerpages,
    .offers {
        text-align:center;
    }
}

/* Fancybox Overwrite
=========================== */
.fancybox-is-open .fancybox-bg {
    opacity: .95;
}
.fancybox-arrow {
    width: 80px;
}
.fancybox-arrow:after {
    background: url(/images/icons/arrow-white.svg) no-repeat center !important;
        width: 64px;
    height: 64px;
}


/* MAP
=========================== */

.map-container {
    height:420px;
    margin-bottom:30px;
}
.map_link {
    background: url(/images/map.jpg) no-repeat center center;
    height: inherit;
    display: block;
    background-size: auto;
}
@media screen and (max-width: 767px) {
    .map-container {
        height:350px;
    }   
}


/* FORMS
====================================== */
.contactform {
    	font-size: 16px;  
}
.contactform .form-control {
    font-family: 'Open Sans', sans-serif;
  	border-radius: 0px;
  	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	outline: none;
	color: var(--black);
	padding: .375rem .375rem;
}
.contactform .form-control:focus {
	outline: 0;
	border: 1px solid rgba(97, 97, 97, 1);		
	box-shadow: 0 1px 3px transparent;
}
.contactform select.form-control {
	color: var(--black);
}
.contactform textarea.form-control {
  height: auto;
}
.field-validation-valid {
  display: none;
   color: red;
}
.field-validation-error {
  display: block;
  color: red;
  font-size: 12px;
  text-align: left; 
}
.control-label {
  font-weight: normal;
  text-align: left;
  display: block; 
}
.asterisk {
	text-align:left;
	font-size:14px;
}
.form-agree label {
	display:inline;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
    	color: var(--black);
}
.form-agree a:hover {
    text-decoration:none;
}
.submitBtn{
    background-color: var(--blue);
    border: 0px;
    padding: 8px 30px;
    vertical-align: inherit;
    transition: all 0.3s ease 0s;
    margin-top: 0!important;
    color: var(--black)!important;
  border-radius:0;
    
}
.submitBtn:hover,
.submitBtn:focus {
	outline: 0 !important;
    background-color: var(--blue-xlight);
    border: 0px;
    color: var(--black)!important;
}

.signup .field-validation-error {
  text-align: center; }
  
.grecaptcha-badge {
	display: none !important;
}  

/* Popups
====================== */

.modal {
  z-index: 10500;
}

.modal .modal-content {
  -webkit-box-shadow: 0px 20px 20px #00000045;
          box-shadow: 0px 20px 20px #00000045;
 /* background: var(--green);
  color: var(--white);*/
  padding: 20px;
  border-radius: 0px;
  border: none;
  text-align: left;
  font: normal normal 300 19px/30px var(--fontAverta);
  letter-spacing: 0px;
}
.modal.green .modal-content {
  background: var(--green);
  color: var(--white); 
}

.modal .modal-header {
  padding: 0px;
  border: none;
  border-radius: 0px;
}

.modal .close {
  /*color: var(--white);*/
  text-shadow: none;
  font-weight: normal;
  font-size: 25px;
  opacity: 1;
}
.modal.green .close {
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .modal .modal-content {
    font: normal normal 300 16px/27px var(--fontAverta);
  }
}
.modal .modal-content a{
   color:#fff;     
}

/*# sourceMappingURL=style.css.map */


ul.TextList,
.wordbreak ul{
    margin:0px 0 0 20px;
    padding:0px;
}
ul.TextList li,
.wordbreak ul li{
    list-style-type: disc;
    padding-left: 0px;
    margin-bottom: 0px;
}

 
.wordbreak a{
     word-break: break-word;  
}

