/** START OF GENERAL SETTINGS  **/
:root {
  /*--fontMain: "EB Garamond", serif;*/
  --fontMain: "Roboto", sans-serif;
  --fontHeader: "M PLUS 1p", sans-serif;
  --white: #ffffff;
  --black: #242424;
  --bodyBgGrey: #F6F6F6; 
  --grey:#bcbcbc;
  --textColor:#161616; 
  --goldColor:#a58d05; 
  --blueColor:#354255; 
  
  /*--bgMainOpacity: rgba(176,160,108, .1);*/
  --bgBurgerMenu:#f3f6f8;

  --letterSpacingBtn:1px;    
  --transition3s: 0.3s linear;
  --backdropBlur: blur(1px);
  interpolate-size: allow-keywords;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

button {
    background: rgba(0,0,0,0.005);
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

button:active{
outline: none;
border: none;
box-shadow: none !important;

}
button:focus {
  outline:none;
  box-shadow: none !important;
}
b, strong {
    font-weight: 700;
}
a, a:hover {
  text-decoration: none;
  opacity: .9;
  color: var(--goldColor);
}
.visually-hidden {
    background: rgba(0,0,0,0.005);
}
.BGWhite{
  background-color:var(--white);
}
.BGBlack{
  padding: 50px 70px;
  background-color: var(--blueColor);
}

.Spacer,
 .mt-offset{
  margin-top: 120px;
}
.Spacer-pt{
     padding-top: 120px;
}
.SpacePadding{
  padding: 50px;
}
@media (max-width: 1199px){
    .Spacer-pt{
        padding-top: 80px;
    }    
}
@media (max-width: 767px){
    .Spacer,
    .mt-offset{
      margin-top: 50px;
    }
    .Spacer-pt{
        padding-top: 50px;
    }
    .BGBlack {
        padding: 30px 10px;
    }
    .SpacePadding {
        padding: 30px;
    }
}
@media (max-width: 320px){
    .Spacer,
    .mt-offset{
      margin-top: 30px;
    }
    .SpacePadding {
        padding: 20px;
    }
    .Spacer-pt{
        padding-top: 30px;
    }
}

/*=== MAX-width 
============================*/

.max-width {
  padding-left: 100px;
  padding-right: 100px;
}
@media (max-width: 1479px) {
	.max-width {
		padding-left: 70px;
        padding-right: 70px;
	} 
}
@media (max-width: 767px) {
	.max-width {
        padding-left: 15px;
        padding-right: 15px; 
  	}
}
@media (min-width: 1480px) {
    .max-xl-width {
        padding-left: 100px;
        padding-right: 100px;
    }
}

body {
    font-family: var(--fontMain);
    color: var(--textColor);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
    background-color: var(--bodyBgGrey);
    letter-spacing: .2px;
}

h1, .h1,
h2, .h2,
h3 {
    font-family: var(--fontHeader);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    word-wrap: break-word;
    line-height: 1.2;
    margin: 0px 0 30px;
}
h1 span,
h2 span{
    display: block;
}
h1, .h1 {
    font-size: 52px;
}
h1 span{
    font-size: 38px;
    padding-top: 5px;
}
h2, .h2{
    font-size: 50px;
    margin-bottom: 10px;
} 
h2 span{
    font-size: 34px;
}
h3 .h3{
    font-size: 30px;
    margin-bottom: 0px;
}

@media (max-width: 1400px) and (min-width: 1200px){
    h1, .h1 {
        font-size: 42px;
    }
    h1 span{
        font-size: 34px;
    }
}

@media (max-width: 1199px) {
    h1, .h1 {
        font-size: 46px;
    }
    h1 span{
        font-size: 38px;
    }
    h2, .h2 {
        font-size: 40px;
    }
    h2 span{
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    h1, .h1 {
        font-size: 40px;
    }
    h1 span{
        font-size: 26px;
    }
    h2, .h2 {
        font-size: 30px;
    }
    h2 span{
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    h1, .h1 {
        font-size: 34px;
    }
    h1 span{
        font-size: 26px;
    }
    h2, .h2 {
        font-size: 28px;
    }
    h2 span{
        font-size: 22px;
    }
}
/*Button
=============================*/
.button,
.MoreLink {
    font-family: var(--fontMain);
    border-radius: 0px;
    font-weight: 400;
}
.button {
    display: inline-block;
    padding: 10px 16px;
    color: var(--textColor)!important;
   /* text-transform: uppercase; */
    font-size: 15px!important;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
.button:after,
.button:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
}
.button:after {
    width: 100%;
    background-color: var(--bodyBgGrey);
    z-index: -2;
}
.button:before {
    width: 0%;
    background-color: var(--goldColor);
    transition: all 0.3s;
    z-index: -1;
}
.button:hover {
    color: var(--white)!important;
}
.button:hover:before {
    width: 100%;
}
@media (max-width: 767px){
    .button {
        padding: 8px 14px;
        font-size: 12px!important;
        letter-spacing: 1.4px;
    }
}
@media (max-width: 565px){
    .button {
        padding: 8px 10px;
        letter-spacing: 1px;
    }
}
@media (max-width: 480px){
    .button {
        padding: 6px 8px;
        letter-spacing: 0px;
    }
}
@media (max-width: 360px){
    .button {
        padding: 5px 6px;
        letter-spacing: 0px;
        font-size: 9px!important;
    }
}
.MoreLink {
    line-height: 2;
    position: relative;
    display: inline-block;
    transition: .3s linear;;
    letter-spacing: 1.4px;
    padding: 0px;
    margin-right: 20px;
    font-size: 16px;
    color: var(--textColor);
}
.MoreLink::before {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--grey);
    z-index: 0;
    bottom: 2px;
    transition: .3s linear;
}
.MoreLink:hover {
    color: inherit;
}
.MoreLink:hover::before {
    height: 5px;
}
@media (max-width: 767px){
    .MoreLink { 
        font-size: 14px;
    }
}

.button.tel span.number {
    display:none;
}
.button.tel:hover span:not(.number) {
    display:none;
}
.button.tel:hover span.number {
    display:block;
}

/*PAGE HEADER - H1
============================================*/
@media (min-width: 1200px){
    .header-container{
        padding-left:70px; 
        margin-bottom:70px; 
        position:relative;
    }
    .header-container h1,
    .header-container h2,
    .header-container h3 {
        margin-bottom:0px;
    }
    .header-container .left-hr {
        position: absolute;
        z-index: 2;
        width: 150px;
        border: none;
        opacity: .8;
        left: 0px;
        bottom: -30px;
        overflow: visible;
        margin: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 1);
    }
    .header-container.vertical-center {
         padding-left:100px; 
    }
    .header-container.vertical-center .left-hr {
        bottom: 30px;
        width: 70px;
    }
    .header-container.revert .left-hr {
         border-bottom: 2px solid rgba(255, 255, 255, 1);
    }
}
 .header-container.centered{
     position:relative;
     padding-left:140px;
     padding-right:140px;
 }
 .header-container.centered hr {
    position: absolute;
    z-index: 1;
    width: calc(100% - 280px);
    border: none;
    opacity: .8;
    margin: 0px;
    bottom: calc(100% / 2);
    overflow: visible;
    background: transparent;
}
.header-container.centered hr:before,
.header-container.centered hr:after {
    position: absolute;
    width: 140px;
    content: '';
    height: 2px;
    top: 0px;
    background: black;
}
.header-container.centered hr:before {
    left: -140px;
}
.header-container.centered hr:after {
    right: -140px;
}
@media (max-width: 991px) {
    .header-container.centered{
        padding-left:70px;
        padding-right:70px;
    } 
    .header-container.centered hr {
        width: calc(100% - 140px);
    }
    .header-container.centered hr:before,
    .header-container.centered hr:after {
        width: 70px;
    }
    .header-container.centered hr:before {
        left: -70px;
    }
    .header-container.centered hr:after {
        right: -70px;
    }
}
@media (max-width: 480px) {
    .header-container.centered{
        padding-left:40px;
        padding-right:40px;
    } 
    .header-container.centered hr {
        width: calc(100% - 80px);
    }
    .header-container.centered hr:before,
    .header-container.centered hr:after {
        width: 40px;
    }
    .header-container.centered hr:before {
        left: -40px;
    }
    .header-container.centered hr:after {
        right: -40px;
    }
}


/*SLIDER
=============================== */
.noTopMedia {
    height: 120px;
}
@media (max-width: 767px){
    .noTopMedia {
        height: 100px;
    }
}
@media (max-width: 480px){
    .noTopMedia {
        height: 80px;
    }
}
.topMedia {
    height: 100%;
    position: relative; 
 }
#bigCarousel .carousel-item,
#bigCarousel {
    position: relative;
    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;
}

.carousel-control-next, .carousel-control-prev {
    width:10%;
}
#bigCarousel .carousel-control-next-icon {
  background-image: url(../images/right-arrow.svg)!important;
}
#bigCarousel .carousel-control-prev-icon {
  background-image: url(../images/right-arrow.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: 50px!important;
  height: 50px!important;
  background: no-repeat 50%/100% 100%;
}
@media screen and (max-width: 991px) {
      #bigCarousel .carousel-item,
      #bigCarousel {
        height: 550px !important;
      }
}
@media screen and (max-width: 575px) {
  #bigCarousel .carousel-item,
  #bigCarousel {
    height: 350px;
  }
}

.contentOverSlider {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 0px 20px;
    background:rgba(0,0,0,0.001);
    font-size: 54px;
    color: var(--white);
    font-weight: 100;
    line-height: 1.2;
    text-shadow: 1px 1px 2px #000000;
}
@media screen and (max-width: 1399px) {
  .contentOverSlider {
    font-size: 48px;
  }
}
@media screen and (max-width: 991px) {
  .contentOverSlider {
    font-size: 32px;
    line-height: 1.1;
  }
}

@media screen and (max-width: 575px) {
  .contentOverSlider {
    font-size: 26px;
  }
}
  
/*== HEADER
============================================*/
header{
    padding: 25px 50px 25px 50px;
    z-index: 1020 !important;
    width: 100%; 
    -webkit-transition: all ease-out .5s;
    -moz-transition: all ease-out .5s;
    -o-transition: all ease-out .5s;
    transition: all ease-out .5s;
}
.headerBg,
.dark{
    background-color: var(--blueColor);
}
.headerBg .logo img,
.dark .logo img{
    filter: brightness(0) invert(1);
}
    
.logo img{
    height: 50px;
     filter: brightness(0) invert(1);
}
@media (max-width: 992px){
    header .button{
        text-align: center;
        margin-left: auto;
        width: 140px;
        line-height: 1.4;
        padding: 8px 10px;
        font-size: 12px!important;
    }
}
@media (max-width: 767px){
    header{
        padding: 15px 30px;
    }
    .logo img{
        height: auto;
    }
    header .button{
        text-align: center;
        margin-left: auto;
        width: 120px;
        line-height: 1.4;
        padding: 8px 10px;
    }
}
@media (max-width:480px){
    header {
        padding: 10px;
    }
    header .button {
            width: 80px;
        padding: 5px 6px;
        letter-spacing: 0px;
        font-size: 9px!important;
    }
}
/*
@media (max-width:320px){
    .logo img{
        height: 50px;
    }
}*/
.topSmallMenu {
    padding-bottom:6px;
    line-height: 1;
}
.topSmallMenu a {
    font-size: 15px; 
    color: white;
    text-align: center;
    display:inline-block;
    font-family: var(--fontMain);
    font-weight: 400;
}
.topSmallMenu a:hover{
      text-decoration: underline;
}
@media (max-width: 767px){
    .topSmallMenu a {
        font-size: 12px;
    }
}
@media (max-width: 565px){
    .topSmallMenu a {
        font-size: 12px;
    }
}
@media (max-width: 480px){
    .topSmallMenu a {
        font-size: 11px;
    }
}
@media (max-width: 420px){
    .topSmallMenu a {
        font-size: 9px;
    }
}
@media (max-width: 320px){
    .topSmallMenu a {
        font-size: 8px;
    }
}
/* LANGUAGES 
=============================== */ 
.languagesDrop {
    font-size: 18px;
   /* margin-left: 60px;*/
}
@media (max-width: 767px) {
   .languagesDrop {
        font-size: 14px;
    }   
}
@media (max-width: 575px) {
   .languagesDrop {
        font-size: 12px;
        /*margin-left:50px;  */
    }   
}
.languagesDrop .dropdown-toggle {
    color: #fff;
}
.languagesDrop a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px; 
}
@media (max-width: 575px) {
    .languagesDrop a {
        font-size: 12px; 
    }
}
 .languagesDrop .dropdown-menu {
    min-width: 40px;
    border-radius: 0;
    background-color: var(--blueColor);
 }
 .languagesDrop .dropdown-item {
    display: block;
    padding: 0px;
    text-align: center;
 }
 .languagesDrop .dropdown-item:hover {
    background:none;
    color:grey;
 }

/*=== MENU 
========================================*/
.menu-btn input[type="checkbox"] {
    display: none;
}
.overlay-menu.opened .aside-left, 
.menu-btn input[type="checkbox"]:checked ~ aside .aside-left {
    transform: translateY(0%);
    transition: transform 0.4s ease-in-out;
}
.overlay-menu.opened .aside-right, 
.menu-btn input[type="checkbox"]:checked ~ aside .aside-right {
    transform: translateX(0%);
    transition: transform 0.4s ease-in-out;
}
.menu-btn input[type="checkbox"]:checked ~ label .bar {
    background-color: #fff;
}
.menu-btn input[type="checkbox"]:checked ~ label .top {
    -webkit-transform: translateY(10px) rotateZ(45deg);
    -moz-transform: translateY(10px) rotateZ(45deg);
    -ms-transform: translateY(10px) rotateZ(45deg);
    -o-transform: translateY(10px) rotateZ(45deg);
    transform: translateY(10px) rotateZ(45deg);
}

.menu-btn input[type="checkbox"]:checked ~ label .bottom {
    -webkit-transform: translateY(-15px) rotateZ(-45deg);
    -moz-transform: translateY(-15px) rotateZ(-45deg);
    -ms-transform: translateY(-15px) rotateZ(-45deg);
    -o-transform: translateY(-15px) rotateZ(-45deg);
    transform: translateY(-15px) rotateZ(-45deg);
}
.menu-btn input[type="checkbox"]:checked ~ label .middle {
  width: 0;
}
.middle {
    margin: 0 auto;
}
.overlay-menu label {
    top: 35px;
    left: 50px;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    z-index: 3;
    position: fixed;
}
@media (max-width: 767px){
    .overlay-menu label {
        top: 25px;
        left: 30px;
    }
}
@media (max-width:480px){
    .overlay-menu label {
        top: 15px;
        left: 10px;
    }
}
@media (max-width:320px){
    .overlay-menu label {
        top: 10px;
    }
}
.menu-btn .bar {
  display: block;
  background-color: #ffffff;
  width: 40px;
  height: 2px;
  border-radius: 5px;
  margin: 11px auto;
  transition: background-color 0.4s ease-in, transform 0.4s ease-in,
    width 0.4s ease-in;
}
@media (max-width: 767px){
    .menu-btn .bar {
        width: 35px;
    }
}
.menu-btn.active .bar.top {
  -webkit-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.active .bar.middle {
  opacity: 0;
}
.menu-btn.active .bar.bottom {
  -webkit-transform: translateY(-16px) rotate(-45deg);
    -ms-transform: translateY(-16px) rotate(-45deg);
    transform: translateY(-16px) rotate(-45deg);
}
.overlay-menu  {
    height: 0%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    transition: 0.5s linear;
    overflow: hidden;
    overflow-y: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
.aside-section {
    top: 0;
    bottom: 0;
    position: absolute;
}
.aside-left {
    display: none;
    width: 30%;
    left: 0;
    /*background: url(../images/lady2.jpg) no-repeat left center var(--black);
    background-size: auto 100%;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;*/
}
@media (min-width: 992px) {
    .aside-left {
        display: block;
    }
}
.aside-right {
    width: 70%;
    right: 0;
    background-color: var(--black);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
@media (max-width: 991px){
  .aside-right {
    width: 100%;
  }
}
.aside-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 150px;
    text-align: left;
    padding-left: 50px;
    font-family: var(--fontMain);
    font-weight: 500;
}
.aside-list li {
    margin-bottom: 20px;
}
@media (max-width: 991px){
    .aside-right .row{
        margin:0;
    }
    .aside-section {
        position: fixed; 
        overflow-y: scroll;
    }
}
@media (max-width: 767px){
    .aside-list {
        margin-top: 100px;
        padding-left: 40px;
    }
    .aside-list li {
        margin-bottom: 12px;
    }
}
/*menu links*/
.aside-anchor {
    padding: 10px 16px;
    border-radius: 0rem;
    color: var(--goldColor);
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 0.15rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width: 1199px) {
    .aside-anchor{
        padding: 8px 16px;
        font-size: 32px;
    }
}
@media (max-width: 320px){
    .aside-list {
        padding-left: 20px;
    }
    .aside-anchor{
        padding: 5px 16px;
        font-size: 18px;
    }
}
@media screen and (min-height: 901px) and (max-width: 1199px){ 
        .aside-list li {
        margin-bottom: 20px;
    }
    .aside-anchor{
        padding: 8px 16px;
        font-size: 26px;
    }
}

@media screen and (max-height: 900px) {
    .aside-list {
        margin-top: 110px;
    }
    .aside-list li {
        margin-bottom: 20px;
    }
    .aside-anchor{
        padding: 8px 16px;
        font-size: 26px;
    }
}
@media screen and (max-height: 800px) {
    .aside-list li {
        margin-bottom: 16px;
    }
    .aside-anchor{
        font-size: 20px;
    }
}
@media screen and (max-height: 600px) {
    .aside-list li {
        margin-bottom: 14px;
    }
    .aside-anchor{
        padding: 5px 16px;
        font-size: 18px;
    }
    .menuContact {
        font-size: 14px;
    }
}

.aside-anchor:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-radius: 0rem;
    z-index: -2;
    border-left: 2px solid var(--goldColor);
}
.aside-anchor:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--goldColor);
    transition: all 0.3s;
    border-radius: 0rem;
    z-index: -1;
}
.aside-anchor:hover {
    color: var(--black)!important;
}
.aside-anchor:hover:before {
    width: 100%;
}
.menuContact{
    color: white;
    margin: 20px 20px 0 0;
}
.menuContact img{
    width: 24px;
    margin: 0 6px;
}

@media (max-width: 767px){
    .menuContact {
        margin: 20px 0px 0 40px;
        font-size: 14px;
    }
    .menuContact img{
        margin: 10px 6px 0;
    }
}



/*CONTENT
============================== */
.Image-Behind{
  position: relative;
}
.text-over{
  right: -240px;
  padding: 50px 50px;
  text-align: left;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
.text-over.revert{
    right:unset;
    left: -240px;
}
.textBody{
  margin-left: 170px;
}
.text-over.distance{
      top: 100px;
}
.text-over.rev{
  right: 120px;
}
@media (max-width: 1400px) and (min-width: 1200px){
  .text-over {
    right: -90px;
  }
    .text-over.revert{
        right:unset;
        left: -90px;
      }
  .textBody{
    margin-left: 80px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .text-over{
    right: -50px;
    padding: 40px 30px;
  }
   .text-over.revert{
        right:unset;
        left: -50px;
      }
  .textBody{
    margin-left: 50px;
  }
}
@media (max-width: 991px) and (min-width: 768px){
  .text-over{
    right: 0px;
  }
    .text-over.revert{
        right:unset;
        left: 0px;
      }
  .textBody{
    margin-left: 40px;
  }
  .text-over.rev{
    top: 0px;
    right: 0px;
  }
}

@media (max-width: 767px){
  .textBody {
    margin-left: 80px;
}
  .text-over{
    right: 0px;
  }
    .text-over.revert{
        right:unset;
        left: 0px;
      }
  .Image-Behind {
    position: relative;
}
.text-over.distance {
    top: 0px;  
}
.text-over.rev{
  top: 0px;
  right: 0px;
}

}

@media (max-width: 565px){
  .textBody{
    margin-left: 40px;
  }
}
@media (max-width: 480px){
  .text-over {
    padding: 10px 20px;
  }
  .textBody {
    margin-left: 60px;
}
}
@media (max-width: 320px){
  .text-over {
    padding: 10px 20px;
  }
  .textBody {
    margin-left: 40px;
}

}

/*=== Accommodation ===*/

.swiper {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
}
.swiper-button-next,
.swiper-button-prev {
    background: url(../images/right-arrow.svg) no-repeat center center !important;
    width:40px;
    height:40px;
    top:calc(100% - 20px);
}
.swiper-button-prev {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.swiper-button-next {
     right: calc(50% - 50px);
}
.swiper-button-prev {
     left: calc(50% - 50px);
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display:none;  
}       
@media (min-width: 992px){
    .swiper-button-next,
    .swiper-button-prev {
        position:absolute;
        position: absolute;
        top: 40%;
        left: auto;
        right: calc(20% - 80px);
        width:80px;
        height:80px;
    }
    
    .swiper-button-prev {
        top:calc(40% - 100px);
    }
}

/*SUBMENU
==============================*/
.TextSubmenu ul{
    margin: 20px 0 20px 70px;
    padding: 0;
    font-family: var(--fontMain);
}
.TextSubmenu li{
    display: block;
    margin-bottom: 20px;
    list-style-type: none;
}
/*
.TextSubmenu li::before{
  content: "";
  display: block;
  width: 50px;
  background-color: #131313;
  height: 1px;
  margin: 0px 0px -23px -70px;
}*/
.TextSubmenu li a{
    color: var(--textColor);
    font-size: 24px;
    transition: all 0.3s ease 0s;
    text-decoration: none;
}
.TextSubmenu li a:hover,
.TextSubmenu li.active a{
    color: var(--goldColor);
    transition: all 0.3s ease 0s;
}
/*REASONS
================================== */
.BGBlack.BGLady{
    background-size: 100%!important;
    /*background: url(../images/lady4.jpg) no-repeat right bottom var(--black);*/
    background: var(--black);
    text-align:center;
    /*font-family: 'EB Garamond', serif;*/
    font-family: var(--fontMain);
    font-weight: 300;
    color: #FFF;
}
@media (max-width: 1200px){
    .BGBlack.BGLady{
        background-size: 120%!important;
    }
}
.BGBlack .smalltitle{
    font-size: 30px;
}
.Boxes {
    line-height:1.2;
    font-style: italic;
    padding: 20px 10px;
    min-height: 120px;
    margin-bottom: 10px;
}
@media (min-width: 576px){
  .Boxes {
      height:100%;
  }
}
.Boxes.Bdr{
    font-size: 18px;
    border: 1px solid var(--grey);
}
.Boxes img{
    width:50px;
    display: block;
    margin: 0 auto 10px auto;
}
@media (max-width: 1199px){
    .Boxes{
        font-size: 17px;
        min-height: 110px
    }
    .Boxes.Bdr {
        font-size: 20px;
    }
}
@media (max-width: 991px){
    .BGBlack.BGLady {
        background-size: 150%!important;
    }
    .BGBlack .smalltitle {
        font-size: 30px;
    }
    .Boxes {
        min-height: 120px;
        padding: 8px 2px;  
    }
    .Boxes.Bdr {
        font-size: 18px;
    }
}
@media (max-width: 767px){
    .BGBlack.BGLady {
        background: none;
        background-color: var(--black);
    }
    .BGBlack .smalltitle {
        font-size: 26px;
    }
}

/*BOXES IMAGES - text over
=====================================*/
.ImageBox .content-over::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: '';
    opacity: 1;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
    display: block;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;    
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.ImageBox:hover .content-over::before{
    opacity: 1;
    background-color: #CCBE8F;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.ImageBox .content-over .imageBoxTitle {
    position: absolute;
    top: 5%;
    left: 0px;
    right: 0px;
    padding: 0px 20px;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    line-height: 24px;
    -webkit-transform: translate3d(0,20px,0);
	transform: translate3d(0,20px,0);
    -webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}
.ImageBox .content-over:hover .imageBoxTitle {
    color: var(--black);
    -webkit-transform: translate3d(0,70px,0);
	transform: translate3d(0,70px,0);
}
.imageBoxText{
    position: absolute;
    top: 40%;
    left:0;
    right:0;
    z-index: 1;
    margin: 0 30px;
    text-align: center;
    opacity: 0;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.ImageBox .content-over:hover .imageBoxText{
    opacity: 1;
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
}
@media (max-width: 1199px){
    .ImageBox .content-over .imageBoxTitle {
        font-size: 26px;
        top: 80px;
    }
    .ImageBox .content-over:hover .imageBoxTitle {
        -webkit-transform: translate3d(0,50px,0);
    	transform: translate3d(0,50px,0);
    }
    .imageBoxText {
        margin: 0 10px;
    }
}
@media (max-width: 767px){
    .ImageBox .content-over .imageBoxTitle {
        font-size: 20px;
          top:10px;
    }
    .imageBoxText {
        margin: 0 10px;
    }
}
.swiper-pagination {
    bottom: 0px !important;
}
.swiper-pagination-bullet {
    background-color:#000;
    height:12px;
    width:12px;
    opacity:.8;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color:var(--goldColor);
       opacity:1;
}




/*News Carousel Intro 
============================ 
.color-white {
    color: white;
}
.BoxTitle{
  font-size: 16px;
  font-family: var(--fontMain);
  text-transform: uppercase;
}
.BoxDate{
    background:url(/images/calendar.svg) no-repeat center left;
    padding:5px 0 0 35px;
    color: #8B8888;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--fontMain);
}
.BoxText{
  color: #8B8888;
}
.BoxTitle a{
    color: var(--textColor);   
}
.BoxTitle a:hover{
     color: var(--goldColor);  
}
.BoxTitle.color-white a{
    color: white;
}
.BoxTitle.color-white a:hover{
    color: #8B8888;
}
*/
/*News Page 
============================ 
@media (min-width: 768px){
    .boxTextBelow {
        padding: 0 40px 40px;
    }
}
.boxTextBelow .BoxTitle{
    font-size: 16px;
}
.backBtn a {
    background: url(../images/left-arrow.svg) no-repeat center left !important;
    background-size:40px;
    padding: 8px 0 8px 50px;
}
*/

/*INSTAGRAM 
============================ */
.InstaThumb {
  width: 120px;
}
@media (max-width:767px){
    .InstaThumb {
        margin:15px 0 0 0;
    }  
    .InstaThumb:nth-child(2n) {
        margin:15px 15px 0px 15px;
    }  
}
@media (min-width:768px){
    .InstaThumb:nth-child(2n) {
        align-self: flex-end!important;
    }
}
@media (min-width: 992px){
    .InstaRow{
        position: relative;
        left: -70px;
    }
    .InstaThumb {
        width: 170px;
    }
}
@media (min-width: 1199px){
    .InstaRow{
        left: -80px;
    }
    .InstaThumb {
        width: 210px;
    }
}
@media (min-width: 1480px) {
    .InstaRow {
        left: -150px;
    }
    .InstaThumb{
      width: 240px;
    }
}

/*REVIEWS
======================== */
.section_reviews .quotesText {
    font-style: italic;
    position:relative;
    padding-left:48px;
    padding-bottom:30px;
    text-align: justify;
}
.section_reviews .quotesText:before{
    content:"“";
    display:inline-block;
    position:absolute;
    top:0;
    left:0;
    width:20px;
    font-size: 76px;
    line-height: .8;
} 
.section_reviews .swiper-pagination {
     text-align: right;   
}
.section_reviews .swiper-pagination-bullet {
    background-color:var(--grey);
    width: 20px;
    height: 5px;
    margin: 5px 7px;
    opacity:.8;
    border-radius:0;
}
.section_reviews .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color:var(--goldColor);
       opacity:1;
}




/*Section NEWSLETTER
======================== 
.section-newsletter {
    position:relative;
}
@media (min-width: 992px) {
    .section-newsletter {
        position:relative;
        padding-top:80px;
        padding-bottom:80px;
    }
    .section-newsletter:before {
        content: "";
        width: 45%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #fff;
        display: block;
        z-index: -1;
    }
}
.section-newsletter .bg {
    background:url(/images/newsletter.jpg) no-repeat center center;
    position:relative;
}
.section-newsletter .bg:before {
    content: "";
    background:rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    z-index: 0;
}
 .section-newsletter #theFormNewsletter {
    z-index: 10;
    position: relative;
    color: #fff;
 } 
@media (min-width: 1200px) {
 .section-newsletter #theFormNewsletter {
    padding-left:100px; 
    padding-right:100px; 
 }
}
.newsletterform .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    border-radius: 0px;
    padding: 7px 15px 2px;
    font-size: 18px;
    color:#fff;
    font-weight: 300;
}
.newsletterform ::-webkit-input-placeholder {
 	color:#fff;
}
.newsletterform :-moz-placeholder { 
   color:#fff;
}
.newsletterform ::-moz-placeholder {  
   color:#fff;
}
.newsletterform :-ms-input-placeholder { 
   color:#fff;
}
.newsletterform .form-agree label {
    color: #ffffff;
    font-size:14px;
    font-weight: 300;
}
.newsletterform .form-agree label a {
    color: #ffffff;
    text-align:underline;
}

.newsletterform .submitBtn{
    background-color: #efefef; 
    padding: 10px 25px;
}
*/
/* FORMS
====================================== */
.contactform {
    font-size:15px;
}
.contactform .form-control {
  	border-radius: 0px;
  	height: 40px;
  	background-color:transparent;
	border:none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	outline: none;
	color: #565656;
	padding: .375rem 0rem;
	font-size: 15px;
    font-weight: 400;
	
}
.contactform .form-control:focus {
	outline: 0;
	border-bottom: 1px solid rgba(97, 97, 97, 1);	
	box-shadow: 0 1px 3px transparent;
	background-color:transparent;
}
::-webkit-input-placeholder {
 	color:#565656;
}
:-moz-placeholder { 
   color:#565656;
}
::-moz-placeholder {  
   color:#565656;
}
:-ms-input-placeholder { 
   color:#565656;
}
.contactform select.form-control {
	color:#565656;
}
.contactform textarea.form-control {
  height: auto;
}
.field-validation-valid {
  display: none;
  color: red; }
.field-validation-error {
  display: block;
  color: red;
  font-size: 14px;
  text-align: left; }
.field-validation-error:empty {
	display: none;
}  


.contactform label span {
  color: red; }
.contactform label.required:after {
  content: " *";
  color: #FF0000; }

.asterisk {
	text-align:left;
	font-size:14px;
}
.asterisk span {
  display: inline;
  font-size: 24px;
  line-height: 22px;
}

.form-agree label {
	display:inline;
}
.form-agree .field-validation-error {
	display: inline-block;
}
.form-agree a {
    text-decoration:underline;
}
.form-agree a:hover {
    text-decoration:none;
}
.submitBtn {
  padding: 10px 25px;
  border-radius: 0rem;
  color: var(--textColor)!important;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.15rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--fontMain);
}
.submitBtn:after,
.submitBtn:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    border-radius: 0rem;
}
.submitBtn:after {
    width: 100%;
    background-color: #efefef;
    z-index: -2;
}
.submitBtn:before {
  width: 0%;
  background-color: var(--goldColor);
  transition: all 0.3s;
  z-index: -1;
}
.submitBtn:hover {
  color: #fff!important;
}
.submitBtn:hover:before {
  width: 100%;
}
.grecaptcha-badge {
	display: none !important;
}
/*
input[type="file"] {
    visibility:hidden;
    height:0;
    line-height:0;
    width:0;
} 
.attachment-field{
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 18px 6px 45px;
    cursor: pointer;
    background: url(/images/upload-icon.svg) no-repeat 8px center;
    background-size: 30px;
}
*/
input[type="file"] {
    /*border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 18px 6px 45px;
    cursor: pointer;*/
    padding:6px;

}
.attachment-field{
    min-width: 100px;
    background: url(/images/upload-icon.svg) no-repeat top left;
    background-size: 20px;  
    padding-left:25px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

#json-msg {
    padding-top:20px;
}
.status-failure,
.status-busy {
    margin:6px 0 0 0;
}
.status-busy img{
   height: 10px;
}


.map_link {
	display:block;
	z-index: 11;
    position: relative;
}

.map_link.inner {
	background:url(/images/map.jpg) no-repeat center center;	
	/*background-size: cover;*/
	min-height:450px;
	width:100%;
}
@media screen and (max-width: 767px) {
    .map_link.inner {
        min-height:350px;
        margin-bottom:30px;
    }   
}




/*GROUP LOGOS -footer
=====================*/
.group-logos a {
    padding:15px;
    display:block;
}
.group-logos img{
    width:320px;
}
@media (max-width: 992px){
    .group-logos img{
        width:220px;
    }  
}
.footer{
  text-align: left;
  margin: 30px 0;
  border-top: 2px solid #d5d8dc;
  border-bottom: 2px solid #d5d8dc;
          color: var(--blueColor);
}
.footer img{
  width: 220px;
  margin: 30px 0;
  /*filter: brightness(0%) saturate(0%); */
}
.footer-col {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.footer-col h3 {
    text-align: center;
            color: var(--blueColor);
}
@media (min-width: 768px){
    .footer-col{
      text-align: left;
     padding: 0 20px;
    }
    .footer-col h3 {
        text-align: left;
    }
    .footer-col:nth-child(1),
    .footer-col:nth-child(2){
      border-right: 2px solid #d5d8dc;
    }
}
@media (min-width: 992px){
    .footer-col {
        padding: 0 30px;
    }   
}
@media (min-width: 1200px){
    .footer-col {
        padding: 0 60px;
    }   
}
@media (min-width: 1400px){
    .footer-col {
        padding: 0 80px;
    }   
}
.social img{
  width: 24px;
  margin: 0 6px;
 /* filter: brightness(0%) saturate(0%); */
  filter: brightness(0) saturate(100%) invert(22%) sepia(55%) saturate(326%) hue-rotate(176deg) brightness(89%) contrast(87%);
}


.copyright{
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 400;
}
.copyright a{
    color: var(--blueColor);
}
.footerMenu ul{
  text-align: right;
  margin: 0px;
  padding: 0px;
}
.footerMenu li{
  font-size: 14px;
  display: inline-block;
  list-style-type: none;
  margin-left: 20px;
  text-align: right;
  font-weight: 400;
}
.footerMenu a{
  color: var(--textColor);
  text-decoration: none;
}
.footerMenu a:hover{
  color: var(--goldColor);
  text-decoration: none;
}
@media (max-width: 767px){
    .footerMenu ul {
      text-align: center;
    }
    .copyright{
      text-align: center;
    }
}

/*=== Accommodation Page
====================================*/
@media (min-width: 1200px){
    .rowListItem .content{
        margin: 0 110px;    
    }
    .rowListItem picture{
        position:relative;
        left:-110px;
        
    }
    .rowListItem .revert picture{
        position:relative;
        left:unset;
        right:-110px;
    }
}
@media (min-width: 768px){
    .rowListItem .content{
        margin: 0 100px;    
    }
}


.gallerySwiper .swiper-button-next, 
.gallerySwiper .swiper-button-prev {
    top:unset;
    bottom:40px;
    right:40px;
}
.gallerySwiper  .swiper-button-prev {
    bottom:calc(40px + 100px);
}
    
    

/*DINING PAGE
================================ */
/* container main section :left margin*/
.white-half-bg:before {
    content:"";
    width:45%;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    background:#fff;
    display:block;
    z-index:-1;
}
@media (max-width: 991px){
    .white-half-bg:before {
        width:100%;
    }
}
.text-padding {
    padding: 10px 20px;
}
@media (min-width: 992px){
    .spaceFromLeft{
        margin-left:50px;
    }
    .text-padding {
        padding: 40px 30px;
    }
}
@media (min-width: 1200px){
    .spaceFromLeft{
        margin-left:90px;
    }
    .text-padding {
        padding: 50px 50px;
    }
}
@media (min-width: 1400px){
    .spaceFromLeft{
        margin-left:240px;
    }
}
/* MENU CAROUSEL
======================= */
/*
@media (min-width: 992px){
    .swiper.menuSwiper {
        width: calc(100% - 160px);
        margin-left: 80px;
        margin-right: 80px;
    }
}
@media (min-width: 1200px){
    .swiper.menuSwiper {
        width: calc(100% - 200px);
        margin-left: 100px;
        margin-right: 100px;
    }
}
@media (min-width: 1400px){
    .swiper.menuSwiper {
        width: calc(100% - 240px);
        margin-left: 120px;
        margin-right: 120px;
    }
}
@media (min-width: 575px) and (max-width: 991px){
    .swiper.menuSwiper {
        width:480px;
    }
}*/
.menuSwiper .bannerBgColor{
    position: absolute;
    top: 0;
    left: 0;
    bottom:0;
    right:0;
    background-color: rgba(0, 0, 0, 0.5);
} 
.menuSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menuSwiper .bannerBgColor .BannerBgTitle{
  padding: 0px 6px;
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  line-height:1.4;
}
.menuSwiper .bannerBgColor .BannerBgTitle a{
    color: #ffffff;
}
.menuSwiper .bannerBgColor .BannerBgTitle span {
  display: block;
  font-size: 18px;
}
@media (min-width: 992px){
    .menuSwiperContainer .swiper-button-next,
    .menuSwiperContainer .swiper-button-prev {
        top:unset;
        bottom:0;
        left: 0px;
        right: auto;
        width:80px;
        height:80px;
    }
    .menuSwiperContainer .swiper-button-prev {
        bottom:calc( 100px);
    }

}
@media (min-width: 992px) and (max-width: 1199px){
    .menuSwiperContainer .swiper-button-next,
    .menuSwiperContainer .swiper-button-prev {
        width:60px;
        height:60px;
    }
    .menuSwiperContainer .swiper-button-prev {
        bottom:calc( 80px);
    }

}


/*
.SmallBoxes{
  margin-top: 150px;
}
.SmallBoxes .text-over{
  top: 100px;
  right: -120px;
}
.SmallBoxes .text-over.rev{
  top: 100px;
  right: 120px;
}

@media (max-width: 1400px) and (min-width: 1200px){
  .SmallBoxes .text-over .textBody ,
  .SmallBoxes .text-over.rev .textBody {
    margin-left: 134px;
  }

.SmallBoxes .text-over,
.SmallBoxes .text-over.rev{
  padding: 30px 20px;
}
}
@media (max-width: 1199px) and (min-width: 992px){
  .SmallBoxes {
    margin-top: 50px;
    margin-bottom: 150px;
}
.SmallBoxes .text-over{
  right: -80px;
}
.SmallBoxes .text-over.rev{
  right: 80px;
}
}

@media (max-width: 991px) and (min-width: 768px){
  .SmallBoxes {
    margin-top: 50px;
}
.SmallBoxes .text-over,
.SmallBoxes .text-over .rev {
  top: 0px!important;
}
.SmallBoxes .text-over{
  right: 0px;
}
.SmallBoxes .text-over.rev{
  right:0px;
}
}

@media (max-width: 767px){
  .SmallBoxes {
    margin-top: 50px;
}
.SmallBoxes .text-over,
.SmallBoxes .text-over .rev {
  top: 0px!important;
}
.SmallBoxes .text-over{
  right: 0px;
}
.SmallBoxes .text-over.rev{
  right:0px;
}
}
*/

/*=========== To Top =========== */
.toTop {
  text-align: right; }
      
a.scrollup {
    background: url(/images/top.png) no-repeat center center;
    bottom: 10px;
    display: none;
    position: fixed;
    right: 10px;
    text-indent: -9999px;
    width: 30px;
    height: 40px;
    text-decoration: none;
    padding: 0px 0px 0;
    z-index: 10000;
    transition: height 350ms ease-in-out, opacity 750ms ease-in-out;
 }
.scrollup.is-visible {
	display: inline;
  	opacity: 1;
}

 /*GALLERY
======================*/
.gallery-box > div{
	height: 420px;
    position:relative;
        color: #fff;
}
 @media screen and (max-width: 575px) {
    .gallery-box > div{
        height: 350px;
    }
 }
.gallery-box > div:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    content: '';
    opacity: 1;
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
    display: block;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
.gallery-box:hover > div:before {
    background-color: rgba(204, 190, 143,1);
    -webkit-transition: background-color 1s ease-out;
    -moz-transition: background-color 1s ease-out;
    -o-transition: background-color 1s ease-out;
    transition: background-color 1s ease-out;
}
.gallery-box a {
    text-align:center;
      color: #fff;
      font-size:26px;
}
.gallery-box span {
    display:block; 
    font-size:16px;
}
.gallery-page img{
    margin-bottom:25px;
}


.smallTitle{
    font-family: var(--fontMain);
    font-size: 19px;
    font-weight: 500;
}


 


 ul.TextList{
  margin: 40px 0 0 40px;
  padding: 0;
}
.TextList li{
  display: block;
  margin-bottom: 20px;
  list-style-type: none;
}
.TextList li::before{
  content: "";
  display: block;
  width: 30px;
  background-color: var(--textColor);
  height: 1px;
  margin: 0px 0px -20px -40px;
}


/** START OF MODAL 
=======================*/
.modal {
  z-index: 20000;
}
  .modal .modal-dialog {
    max-width:640px;
  }
.modal .modal-content {
  border-radius: 0px;
}
.modal .btn-close {
  /*background-color: var(--gold-main);*/
  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;
  }
}

/* START SCROLL UP  */
#progress {
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 44px;
    width: 44px;
    z-index: 10;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
@media screen and (max-width: 992px) {
    #progress {
        bottom: 0px;
    }
}
#progress-value {
  display: block;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#progress-value img {
  width: 20px;
 /* filter: brightness(0) saturate(100%) invert(68%) sepia(20%) saturate(354%)
    hue-rotate(359deg) brightness(90%) contrast(87%);*/
}

/*Privacy Policy
============================*/

.wordbreak a{
     word-break: break-word;  
}
.privacyList ul{
    margin: 0 0 15px 20px;
}
.privacyList ul ul{
    margin:0 0 15px 40px;
}
.privacyList li{
    list-style: disc;
}
.privacyList ul ul li{
    list-style: circle;
}

