﻿@font-face {
  font-family: "CalibreRegular";
  font-display: swap;
  src: url("fonts/CalibreRegular.otf") format("opentype");
}
@font-face {
  font-family: "CalibreSemibold";
  font-display: swap;
  src: url("fonts/CalibreSemibold.otf") format("opentype");
}
@font-face {
  font-family: "georgiai";
  font-display: swap;
  src: url("fonts/georgiai.ttf") format("truetype");
}
@font-face {
  font-family: "CenturyGothicRegular";
  font-display: swap;
  src: url("fonts/CenturyGothicPaneuropeanRegular.ttf") format("truetype");
}
@font-face {
  font-family: "CenturyGothicSemibold";
  font-display: swap;
  src: url("fonts/CenturyGothicPaneuropeanSemiBold.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  --font-calibre: "CalibreRegular";
  --font-calibre-bold: "CalibreSemibold";
  --font-century: "CenturyGothicRegular";
  --font-century-bold: "CenturyGothicSemibold";
  --font-georgia: "georgiai";
  font-family: var(--font-calibre);
  background: var(--Light-Beige, #F2EBDE);
  color: var(--Black, #000);
  margin: 0;
}
body.greek {
  --font-calibre: var(--font-century), "CalibreRegular";
  --font-calibre-bold: var(--font-century-bold), "CalibreSemibold";
}

a {
  color: #fff;
}

.btn {
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.bold {
  text-align: center;
  /* mobile/H3 C no caps sb */
  font-size: 24px;
  font-family: var(--font-calibre-bold);
  line-height: normal;
}

.text-g {
  /* mobile/Body 3 G */
  font-family: var(--font-georgia);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  letter-spacing: 0.5px;
}

.counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

nav {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 30.29%, rgba(0, 0, 0, 0.5) 70%);
  position: fixed;
  top: 0;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  transition: 0.5s ease-in-out;
  z-index: 99;
  padding: 4px 0;
  max-width: 100%;
  border-bottom: 1px solid #D7D7D7;
}
.scrolled nav {
  background: var(--Dark-Brown, #26170F);
  padding: 4px 0;
  box-shadow: none;
}
nav:before {
  width: 54px;
  content: "";
  display: block;
  height: 100%;
}
nav .logo {
  height: 20px;
}
nav .extra-nav-items {
  list-style: none;
  margin: 0;
  display: flex;
  height: 36px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
nav .extra-nav-items:hover, nav .extra-nav-items *:hover {
  cursor: pointer;
}
nav .extra-nav-items a {
  text-decoration: none;
  color: #686868;
}
nav .extra-nav-items .flags-container {
  float: left;
  position: relative;
}
nav .extra-nav-items .flags-container .input-group-btn {
  float: left;
  line-height: 0;
}
nav .extra-nav-items .flags-container .input-group-btn > .btn {
  position: relative;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 0;
  display: flex;
  width: 34px;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
nav .extra-nav-items .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  float: left;
  /*min-width: 10rem;*/
  padding: 0.5rem 0;
  margin: 10px 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  line-height: normal;
}
nav .extra-nav-items .dropdown-menu.show {
  display: block;
}
nav .extra-nav-items .dropdown-menu .lang-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 10px;
}
nav .extra-nav-items .dropdown-menu .lang-line .lang-redirect {
  color: var(--brand-text-sub-color);
  font-size: 1.063rem;
  display: block;
  padding: 0;
  font-family: var(--main-font);
  text-transform: uppercase;
  width: 100%;
}

header {
  display: flex;
  justify-content: center;
}
header.video-banner {
  position: relative;
  overflow: hidden;
}
header.video-banner wistia-player {
  transform: scale(1.01);
}
header.video-banner .desktop {
  display: none;
}
header.video-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: none;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 74.04%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0) 71.15%, rgba(0, 0, 0, 0.7) 100%);
}
header .header-arrow {
  position: absolute;
  top: calc(100% - 33px - 26px);
  z-index: 9;
}
header .header-arrow:hover {
  cursor: pointer;
}

.content-section {
  /* mobile/Body 1 C */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  text-align: center;
  display: flex;
  padding-bottom: 50px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.content-section.bg-dark {
  background: var(--Dark-Brown, #26170F);
  padding-block: 50px;
}
.content-section .title {
  text-align: center;
  font-family: var(--font-calibre-bold);
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.content-section .title.title-h1 {
  font-size: 32px;
}
.content-section .title.title-h2 {
  font-size: 20px;
}
.content-section .title.title-light {
  font-family: var(--font-calibre);
  font-weight: 400;
}
.content-section .title-g {
  /* mobile/Title G */
  font-family: var(--font-georgia);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 24px; /* 133.333% */
  letter-spacing: 0.5px;
}
.content-section .title-g.title-h1 {
  font-size: 24px;
}
.content-section .title-g.title-h2 {
  font-size: 20px;
  line-height: 140%; /* 28px */
}
.content-section .content-sep {
  width: 250px;
  height: 1px;
  background: #26170F;
}
.content-section .content-sep.white {
  background: #fff;
}
.content-section.first-section {
  margin-top: 32px;
  gap: 32px;
}
.content-section.first-section .first-titles {
  gap: 25px;
  display: flex;
  flex-direction: column;
}
.content-section.first-section .content-sep {
  display: none;
}
.content-section.first-section .image-text-container {
  display: flex;
  flex-direction: column;
}
.content-section.first-section .btn-contact {
  border-radius: 4px;
  background: var(--Dark-Brown, #26170F);
  display: flex;
  width: 565px;
  padding: 20px 45px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  max-width: max-content;
  color: var(--White, #FFF);
  text-align: center;
  font-family: var(--font-calibre-bold);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}
.content-section.brown-hotels {
  padding-bottom: 80px;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 30px;
  align-items: stretch;
  align-content: stretch;
  min-height: 100%; /*height or min-height both work */
}
.content-section.brown-hotels .logo {
  display: none;
}
.content-section.brown-hotels .content-banners {
  width: 100%;
  gap: 7px;
  display: flex;
  flex-direction: column;
}
.content-section.brown-hotels .content-banners .image-text-container {
  height: 540px;
  background: url("images/Brown-hotels-horizontal.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  padding-inline-end: 65px;
}
.content-section.brown-hotels .content-banners .image-text-container .text-container {
  padding: 20px;
  box-sizing: border-box;
  max-width: 100%;
  padding-inline-end: 85px;
}
.content-section.brown-hotels .content-banners .image-text-container .text-container .text {
  line-height: normal;
  text-align: justify;
}
.content-section.approch-section {
  padding-bottom: 140px;
}
.content-section.approch-section .title-g {
  font-size: 24px;
  line-height: 32px; /* 133.333% */
}
.content-section.approch-section .inner-content {
  padding-inline: 32px;
}
.content-section.approch-section #image-banners .splide__arrow--prev {
  left: 36px;
}
.content-section.approch-section #image-banners .splide__arrow--next {
  right: 36px;
}
.content-section .inner-content {
  max-width: 100%;
  padding-inline: 16px;
}
.content-section.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding-inline: 10px;
}
.content-section.stats-section .stats-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}
.content-section.stats-section .stats-container p {
  margin: 0;
  line-height: 20px; /* 111.111% */
}
.greek .content-section.stats-section .stats-container p.bold {
  line-height: 1.2em;
}
.content-section.stats-section .stats-container .divider {
  width: 1px;
  height: 244px;
  background: #543B2B;
}
.content-section.stats-section .stats-container .stat {
  display: flex;
  min-height: 314px;
  gap: 35px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  margin-block: 40px;
}
.content-section.stats-section .stats-container .stat .title {
  text-align: start;
  text-transform: uppercase;
}
.content-section.stats-section .stats-container .stat .title.title-light {
  text-transform: none;
}
.content-section.stats-section .stats-container .stat .stat-info {
  display: flex;
  min-height: 244px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  max-width: 100%;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-number .big-number {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 70px;
  line-height: 0.45em;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-number .label {
  font-size: 20px;
}
.content-section.stats-section .stats-container .stat .stat-info .medium-numer {
  color: var(--Black, #000);
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  display: flex;
  align-items: flex-end;
  line-height: 0.7em;
  gap: 10px;
}
.content-section.stats-section .stats-container .stat .stat-info .medium-numer em {
  text-align: center;
  font-family: var(--font-georgia);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 140%; /* 33.6px */
  letter-spacing: 0.5px;
}
.content-section.stats-section .stats-container .stat .stat-info .highlight {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-extra {
  color: var(--Brown, #543B2B);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 45px;
  width: 301px;
  text-align: start;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-extra.stat-100 {
  gap: 24px;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-extra.stat-100 .stat-extra-content {
  gap: 0;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-extra .stat-extra-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}
.content-section.stats-section .stats-container .stat .stat-info .stat-extra .stat-extra-content .bold {
  text-align: start;
}
.content-section.stats-section-greek {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding-inline: 10px;
  padding-top: 30px;
  padding-bottom: 80px;
}
.content-section.stats-section-greek .content-sep {
  margin: 0 auto;
}
.content-section.stats-section-greek .title {
  font-size: 24px;
  text-transform: uppercase;
}
.content-section.stats-section-greek .stats-years-container {
  display: flex;
  gap: 25px 85px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.content-section.stats-section-greek .stats-years-container .stat-year {
  background: var(--Beige, #F5F3EE);
  box-shadow: 0 6px 19.1px 0 rgba(0, 0, 0, 0.1);
  width: 320px;
  min-height: 202px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 16px;
  gap: 25px;
}
.content-section.stats-section-greek .stats-years-container .stat-year p {
  margin: 0;
}
.greek .content-section.stats-section-greek .stats-years-container .stat-year {
  font-size: 14px;
  width: 370px;
}
.greek .content-section.stats-section-greek .stats-years-container .stat-year p:not(.highlight) {
  margin: 8px;
}
.content-section.stats-section-greek .stats-years-container .stat-year .bold {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}
.content-section.stats-section-greek .stats-years-container .stat-year .title-year {
  background: var(--Brown, #543B2B);
  display: flex;
  width: 100%;
  padding: 4px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.content-section.stats-section-greek .stats-years-container .stat-year .highlight {
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 10px;
  margin-block: 15px 0;
  font-family: var(--font-calibre-bold);
  margin-bottom: 20px;
}
.content-section.stats-section-greek .stats-years-container .stat-year .stat-year-content {
  display: flex;
  width: 100%;
  padding-bottom: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--Dark-Brown, #26170F);
  line-height: normal;
  height: 100%;
}
.content-section.partner-section {
  padding-bottom: 80px;
}
.content-section.partner-section .title-g {
  font-size: 24px;
  line-height: 32px; /* 133.333% */
}
.content-section.partner-section .image-text-container {
  height: 558px;
  margin: 0;
}
.content-section.partner-section .image-text-container .text-container {
  width: 910px;
}
.content-section.partner-section .image-text-container .image-container,
.content-section.partner-section .image-text-container .image-container img {
  height: 100%;
}
.content-section.our-team {
  padding-block: 100px;
  padding-top: 60px;
}
.content-section.our-team .title-g {
  font-size: 24px;
  line-height: 32px; /* 133.333% */
}
.content-section.our-team #people-banners .splide__arrow--prev {
  left: 16px;
}
.content-section.our-team #people-banners .splide__arrow--next {
  right: 16px;
}
.content-section.contact-form {
  padding-bottom: 80px;
}
.content-section.contact-form .contact-form-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  display: flex;
  padding: 25px;
  gap: 20px;
  border: 1px solid var(--Dark-Brown, #26170F);
  max-width: 100%;
  margin-inline: 16px;
}
.content-section.contact-form .contact-form-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.content-section.contact-form .contact-form-wrap .jatqWO {
  font-size: 20px;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget, .content-section.contact-form .contact-form-wrap .eFakUe, .content-section.contact-form .contact-form-wrap .hUFoof {
  width: 100%;
  max-width: 100%;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget .WidgetTitle__Header-sc-c581efe-2.jatqWO, .content-section.contact-form .contact-form-wrap .eFakUe .WidgetTitle__Header-sc-c581efe-2.jatqWO, .content-section.contact-form .contact-form-wrap .hUFoof .WidgetTitle__Header-sc-c581efe-2.jatqWO {
  display: none;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget .dJPZux, .content-section.contact-form .contact-form-wrap .eFakUe .dJPZux, .content-section.contact-form .contact-form-wrap .hUFoof .dJPZux {
  gap: 5px;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget .ceYyXQ, .content-section.contact-form .contact-form-wrap .eFakUe .ceYyXQ, .content-section.contact-form .contact-form-wrap .hUFoof .ceYyXQ {
  margin: 0;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget .Icon__IconContainer-sc-1013a803-0.kRFNhB.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU,
.content-section.contact-form .contact-form-wrap div.eapps-widget .Icon__IconContainer-sc-1013a803-0.fEcKDH.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU, .content-section.contact-form .contact-form-wrap .eFakUe .Icon__IconContainer-sc-1013a803-0.kRFNhB.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU,
.content-section.contact-form .contact-form-wrap .eFakUe .Icon__IconContainer-sc-1013a803-0.fEcKDH.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU, .content-section.contact-form .contact-form-wrap .hUFoof .Icon__IconContainer-sc-1013a803-0.kRFNhB.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU,
.content-section.contact-form .contact-form-wrap .hUFoof .Icon__IconContainer-sc-1013a803-0.fEcKDH.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU {
  display: none;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget .FormFieldLayout__Container-sc-b89a2d22-4.fkvJlq.es-field-layout-container.FieldContainer__FieldLayout-sc-97b65139-0.gNhHge .Icon__IconContainer-sc-1013a803-0.kRFNhB.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU,
.content-section.contact-form .contact-form-wrap div.eapps-widget .FormFieldLayout__Container-sc-b89a2d22-4.fkvJlq.es-field-layout-container.FieldContainer__FieldLayout-sc-97b65139-0.gNhHge .Icon__IconContainer-sc-1013a803-0.fEcKDH.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU, .content-section.contact-form .contact-form-wrap .eFakUe .FormFieldLayout__Container-sc-b89a2d22-4.fkvJlq.es-field-layout-container.FieldContainer__FieldLayout-sc-97b65139-0.gNhHge .Icon__IconContainer-sc-1013a803-0.kRFNhB.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU,
.content-section.contact-form .contact-form-wrap .eFakUe .FormFieldLayout__Container-sc-b89a2d22-4.fkvJlq.es-field-layout-container.FieldContainer__FieldLayout-sc-97b65139-0.gNhHge .Icon__IconContainer-sc-1013a803-0.fEcKDH.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU, .content-section.contact-form .contact-form-wrap .hUFoof .FormFieldLayout__Container-sc-b89a2d22-4.fkvJlq.es-field-layout-container.FieldContainer__FieldLayout-sc-97b65139-0.gNhHge .Icon__IconContainer-sc-1013a803-0.kRFNhB.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU,
.content-section.contact-form .contact-form-wrap .hUFoof .FormFieldLayout__Container-sc-b89a2d22-4.fkvJlq.es-field-layout-container.FieldContainer__FieldLayout-sc-97b65139-0.gNhHge .Icon__IconContainer-sc-1013a803-0.fEcKDH.DropdownItem__ItemIcon-sc-48b8ac44-2.bRbyOU {
  display: none;
}
.content-section.contact-form .contact-form-wrap div.eapps-widget .DropdownItem__Item-sc-48b8ac44-1.ceYyXQ,
.content-section.contact-form .contact-form-wrap div.eapps-widget .DropdownItem__ItemContainer-sc-48b8ac44-0.iQgFun, .content-section.contact-form .contact-form-wrap .eFakUe .DropdownItem__Item-sc-48b8ac44-1.ceYyXQ,
.content-section.contact-form .contact-form-wrap .eFakUe .DropdownItem__ItemContainer-sc-48b8ac44-0.iQgFun, .content-section.contact-form .contact-form-wrap .hUFoof .DropdownItem__Item-sc-48b8ac44-1.ceYyXQ,
.content-section.contact-form .contact-form-wrap .hUFoof .DropdownItem__ItemContainer-sc-48b8ac44-0.iQgFun {
  font-size: 16px;
}
.greek .content-section.contact-form .contact-form-wrap div.eapps-widget .DropdownItem__Item-sc-48b8ac44-1.ceYyXQ,
.greek .content-section.contact-form .contact-form-wrap div.eapps-widget .DropdownItem__ItemContainer-sc-48b8ac44-0.iQgFun, .greek .content-section.contact-form .contact-form-wrap .eFakUe .DropdownItem__Item-sc-48b8ac44-1.ceYyXQ,
.greek .content-section.contact-form .contact-form-wrap .eFakUe .DropdownItem__ItemContainer-sc-48b8ac44-0.iQgFun, .greek .content-section.contact-form .contact-form-wrap .hUFoof .DropdownItem__Item-sc-48b8ac44-1.ceYyXQ,
.greek .content-section.contact-form .contact-form-wrap .hUFoof .DropdownItem__ItemContainer-sc-48b8ac44-0.iQgFun {
  font-size: 13.5px;
}
.greek .content-section.contact-form .contact-form-wrap div.eapps-widget .dropdown__Select-sc-85fb8fb0-2.hYEZyj.es-fields-dropdown-select,
.greek .content-section.contact-form .contact-form-wrap div.eapps-widget .dropdown__Select-sc-85fb8fb0-2.cPcvgx.es-fields-dropdown-select, .greek .content-section.contact-form .contact-form-wrap .eFakUe .dropdown__Select-sc-85fb8fb0-2.hYEZyj.es-fields-dropdown-select,
.greek .content-section.contact-form .contact-form-wrap .eFakUe .dropdown__Select-sc-85fb8fb0-2.cPcvgx.es-fields-dropdown-select, .greek .content-section.contact-form .contact-form-wrap .hUFoof .dropdown__Select-sc-85fb8fb0-2.hYEZyj.es-fields-dropdown-select,
.greek .content-section.contact-form .contact-form-wrap .hUFoof .dropdown__Select-sc-85fb8fb0-2.cPcvgx.es-fields-dropdown-select {
  font-size: 13.5px;
}

.image-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  align-self: stretch;
}
.image-text-container.text-over-image {
  position: relative;
}
.image-text-container.text-over-image.bottom-start {
  justify-content: flex-start;
  align-items: flex-end;
}
.image-text-container.text-over-image .text-container {
  position: absolute;
}
.image-text-container .text-container {
  display: flex;
  width: 636px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: start;
  padding-inline: 16px;
  max-width: 100%;
  box-sizing: border-box;
}
.image-text-container .text-container p {
  margin: 0;
}
.image-text-container .text-container.text-center {
  align-items: center;
  text-align: center;
}
.image-text-container .image-container {
  line-height: 0;
  max-width: 100%;
}
.image-text-container .image-container img {
  object-fit: cover;
  max-width: 100%;
}
.image-text-container .image-container.full-width {
  width: 100%;
  height: 100%;
}
.image-text-container .image-container.full-width img {
  width: 100%;
  height: 100%;
}

.image-banners-wrap {
  overflow: hidden;
  width: 100%;
  padding-top: 20px;
}
.image-banners-wrap .image-banners {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  height: 359px;
  width: 100%;
}
.image-banners-wrap .image-banners .image-text-container {
  height: 100%;
  max-width: 251px;
  scroll-snap-align: start;
  scroll-margin-inline-start: 10px;
}
.image-banners-wrap .image-banners .image-text-container .text-container {
  padding: 13px 12px;
  box-sizing: border-box;
  width: 100%;
}
.greek .image-banners-wrap .image-banners .image-text-container .text-container {
  gap: 10px;
  font-size: 15px;
  line-height: 18px;
}
.greek .image-banners-wrap .image-banners .image-text-container .text-container .title-g {
  font-size: 22px;
}
.image-banners-wrap .image-banners .image-text-container .image-container {
  height: 100%;
}
.image-banners-wrap .image-banners .image-text-container .image-container:after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, #000 100%);
}

.people-banners-wrap {
  max-width: 100%;
  overflow: hidden;
}
.people-banners-wrap .people-banners {
  display: flex;
  padding: 0 49px;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  width: max-content;
}
.people-banners-wrap .people-banners .people-banner {
  background: var(--Beige, #F5F3EE);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  width: 251px;
  min-height: 285px;
  height: 100%;
  position: relative;
  padding: 25px;
  text-align: start;
}
.greek .people-banners-wrap .people-banners .people-banner {
  padding: 20px;
  font-size: 14px;
}
.greek .people-banners-wrap .people-banners .people-banner .banner-title {
  font-size: 20px;
  margin-bottom: 0;
}
.greek .people-banners-wrap .people-banners .people-banner .banner-position {
  font-size: 15px;
  margin-bottom: 4px;
}
.people-banners-wrap .people-banners .people-banner.long-text .banner-title, .people-banners-wrap .people-banners .people-banner.long-text .banner-position {
  margin-bottom: 8px;
}
.greek .people-banners-wrap .people-banners .people-banner.long-text .banner-title {
  font-size: 22px;
  margin-bottom: 0;
}
.greek .people-banners-wrap .people-banners .people-banner.long-text .banner-position {
  font-size: 16px;
  margin-bottom: 4px;
}
.greek .people-banners-wrap .people-banners .people-banner.long-text .banner-text {
  font-size: 16px;
}
.people-banners-wrap .people-banners .people-banner:before {
  border: 0.5px solid #000;
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 0;
  left: 0;
  margin: 10px;
  box-sizing: border-box;
}
.people-banners-wrap .people-banners .people-banner .banner-title {
  margin-bottom: 14px;
  text-align: start;
  line-height: normal;
}
.people-banners-wrap .people-banners .people-banner .banner-position {
  font-size: 16px;
  margin-bottom: 19px;
  line-height: 24.436px; /* 152.726% */
}
.people-banners-wrap .people-banners .people-banner .banner-text {
  line-height: normal;
}

.splide {
  width: 100%;
  display: block;
  display: flex;
  flex: 1 1 0%;
}
.splide .splide__pagination {
  display: none;
}
.splide .splide__arrow {
  transform: none;
  top: auto;
  bottom: -48px;
  background: none;
  width: 56px;
  height: 15px;
}
.splide .splide__arrow svg {
  width: 56px;
  height: 15px;
}
.splide .splide__arrow.splide__arrow--prev {
  left: 40px;
}
.splide .splide__arrow.splide__arrow--next {
  right: 40px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: var(--Dark-Brown, #26170F);
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  color: var(--White, #FFF);
}
footer .footer-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  flex-direction: column;
  gap: 20px;
}
footer .footer-logos > img {
  width: 246px;
}
footer .footer-logos .social-logos {
  display: flex;
  height: 38px;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
footer .footer-sep {
  width: 100%;
  height: 1px;
  background: #FFF;
}
footer .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex-direction: column;
  gap: 21px;
}
footer .copyright a {
  text-align: center;
  /* Desktop/Body 2 G */
  font-family: var(--font-georgia);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: 0.5px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/*desktop*/
@media screen and (min-width: 992px) {
  nav {
    padding: 31px 25px 30px 35px;
    border: 0;
  }
  nav:before {
    display: none;
  }
  .scrolled nav {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding: 10px 25px 10px 35px;
  }
  .scrolled nav .logo {
    height: 27px;
  }
  nav .logo {
    height: 32px;
  }
  header.video-banner wistia-player {
    transform: scale(1.005);
  }
  header.video-banner .desktop {
    display: block;
  }
  header.video-banner .mobile {
    display: none;
  }
  header .header-arrow {
    top: calc(100vh - 109px - 26px);
  }
  .content-section {
    gap: 35px;
    font-size: 18px;
    padding-bottom: 100px;
    line-height: normal;
  }
  .content-section.bg-dark {
    padding-block: 100px;
  }
  .content-section .title {
    font-size: 48px;
  }
  .content-section .title-g {
    font-size: 30px;
    line-height: 32px; /* 106.667% */
  }
  .content-section .content-sep {
    width: 360px;
  }
  .content-section .splide {
    visibility: visible;
  }
  .content-section.first-section {
    margin-top: 100px;
  }
  .content-section.first-section .content-sep {
    display: block;
  }
  .content-section.first-section .first-titles .title-g br {
    display: none;
  }
  .content-section.first-section .image-text-container {
    display: flex;
    flex-direction: row;
  }
  .content-section.first-section .btn-contact {
    font-size: 24px;
    line-height: normal;
  }
  .content-section.brown-hotels {
    padding-bottom: 100px;
  }
  .content-section.brown-hotels .logo {
    line-height: 0;
    background: url("images/Brown-hotels-horizontal.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: auto;
    max-height: 100%;
    display: block;
    min-width: 215px;
  }
  .content-section.brown-hotels .content-banners {
    gap: 0;
  }
  .content-section.brown-hotels .content-banners .image-text-container {
    height: auto;
    max-height: 940px;
    padding: 0;
    background: none;
  }
  .content-section.brown-hotels .content-banners .image-text-container:nth-child(1) .text-container {
    width: 994px;
  }
  .content-section.brown-hotels .content-banners .image-text-container:nth-child(2) .text-container {
    width: 1040px;
  }
  .content-section.brown-hotels .content-banners .image-text-container .text-container {
    padding: 130px 120px;
  }
  .content-section.brown-hotels .content-banners .image-text-container .text-container .title-g {
    line-height: 40px;
  }
  .content-section.approch-section {
    padding-bottom: 100px;
    gap: 24px;
  }
  .content-section.approch-section .title-g {
    font-size: 30px;
  }
  .content-section.approch-section .inner-content {
    width: 974px;
  }
  .content-section.approch-section #image-banners .splide__arrows {
    display: none;
  }
  .content-section.partner-section {
    padding-bottom: 100px;
  }
  .content-section.partner-section .image-text-container .text-container {
    gap: 24px;
  }
  .content-section.partner-section .image-text-container .image-container,
  .content-section.partner-section .image-text-container .image-container img {
    width: 100%;
  }
  .content-section.partner-section .title-g {
    font-size: 30px;
  }
  .content-section.our-team {
    width: 100%;
    gap: 24px;
  }
  .content-section.our-team .title-g {
    font-size: 30px;
  }
  .content-section.our-team > .bold {
    padding-block: 24px;
  }
  .content-section.our-team .inner-content {
    max-width: 1192px;
  }
  .content-section.our-team #people-banners .splide__arrow--prev {
    left: 40px;
  }
  .content-section.our-team #people-banners .splide__arrow--next {
    right: 40px;
  }
  .content-section.stats-section {
    margin-block: 112px 120px;
    margin-inline: 14%;
    padding: 0;
  }
  .content-section.stats-section .stats-container {
    flex-direction: row;
    width: 1382px;
  }
  .content-section.stats-section .stats-container .stat {
    gap: 50px;
    max-width: 50%;
    margin-block: 0;
  }
  .content-section.stats-section .stats-container .stat .stat-info {
    gap: 40px;
  }
  .content-section.stats-section .stats-container .stat .stat-info .stat-number .big-number {
    font-size: 128px;
    line-height: 79px;
  }
  .content-section.stats-section .stats-container .stat .stat-info .stat-number .label {
    font-size: 24px;
  }
  .content-section.stats-section .stats-container .stat .stat-info .medium-numer {
    font-size: 64px;
    line-height: normal;
  }
  .content-section.stats-section .stats-container .stat .stat-info .medium-numer em {
    font-size: 24px;
  }
  .content-section.stats-section .stats-container .stat .stat-info .highlight {
    font-size: 48px;
    line-height: normal;
    font-family: var(--font-calibre-bold);
  }
  .content-section.stats-section .stats-container .stat .stat-info .stat-extra.stat-100 .stat-extra-content {
    font-size: 20px;
  }
  .greek .content-section.stats-section .stats-container .stat .stat-info .stat-extra.stat-icons {
    width: 56%;
  }
  .content-section.stats-section .stats-container .stat .stat-info .stat-extra .stat-extra-content {
    gap: 18px;
  }
  .greek .content-section.stats-section .stats-container .stat.dead-sea {
    max-width: 55%;
  }
  .greek .content-section.stats-section .stats-container .stat.dead-sea .stat-info {
    width: 100%;
  }
  .greek .content-section.stats-section .stats-container .stat.dead-sea .stat-info .stat-extra {
    width: 100%;
  }
  .content-section.stats-section-greek {
    padding-top: 0;
    padding-bottom: 112px;
  }
  .content-section.stats-section-greek .title {
    font-size: 32px;
  }
  .content-section.stats-section-greek .title-g {
    font-size: 22px;
  }
  .content-section.stats-section-greek .stats-years-container {
    margin-top: 30px;
  }
  .content-section.stats-section-greek .stats-years-container .stat-year {
    width: 250px;
    min-height: 250px;
  }
  .greek .content-section.stats-section-greek .stats-years-container .stat-year {
    width: 300px;
  }
  .greek .content-section.stats-section-greek .stats-years-container .stat-year p:not(.highlight) {
    margin: 12px;
  }
  .greek .content-section.stats-section-greek .stats-years-container .stat-year .highlight {
    margin-bottom: 30px;
  }
  .content-section.stats-section-greek .stats-years-container .stat-year .title-year {
    font-size: 24px;
  }
  .greek .content-section.stats-section-greek .stats-years-container .stat-year .title-year {
    font-size: 18px;
  }
  .content-section.stats-section-greek .stats-years-container .stat-year .stat-year-content {
    gap: 0;
  }
  .greek .content-section.stats-section-greek .stats-years-container .stat-year .stat-year-content {
    gap: 24px;
    justify-content: flex-start;
    padding-bottom: 5px;
  }
  .content-section.stats-section-greek .stats-years-container .stat-year .stat-year-content > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .content-section.partner-section {
    margin-inline: 70px;
  }
  .content-section.contact-form {
    margin: 0;
    padding-bottom: 80px;
  }
  .content-section.contact-form .contact-form-wrap {
    flex-direction: row;
    width: 100%;
    max-width: 1032px;
    /*height: 419px;*/
    height: max-content;
    padding: 40px;
    gap: 40px;
  }
  .content-section.contact-form .contact-form-wrap .WidgetTitle__Header-sc-c581efe-2.jatqWO {
    display: none;
  }
  .content-section.contact-form .contact-form-wrap img {
    max-width: 427px;
    border-radius: 0;
  }
  .content-section.contact-form .contact-form-wrap div.eapps-widget .WidgetTitle__Header-sc-c581efe-2.jatqWO, .content-section.contact-form .contact-form-wrap .eFakUe .WidgetTitle__Header-sc-c581efe-2.jatqWO, .content-section.contact-form .contact-form-wrap .hUFoof .WidgetTitle__Header-sc-c581efe-2.jatqWO {
    display: block;
  }
  .image-text-container {
    gap: 80px;
  }
  .first-section .image-text-container {
    margin-top: 65px;
  }
  .image-text-container .text-container {
    padding-inline: 0px;
    gap: 35px;
  }
  .image-banners-wrap {
    padding-top: 56px;
  }
  .image-banners-wrap .image-banners {
    height: 345px;
    width: initial;
    overflow-x: initial;
    justify-content: center;
  }
  .image-banners-wrap .image-banners .image-text-container {
    overflow: hidden;
    max-width: 306px;
    flex: 1;
  }
  .image-banners-wrap .image-banners .image-text-container:hover .text-container .text {
    max-height: 250px;
    opacity: 1;
    margin-bottom: 0;
    transform: translateY(0px);
  }
  .image-banners-wrap .image-banners .image-text-container .text-container {
    gap: 0;
    transition: 0.5s ease-in-out;
  }
  .image-banners-wrap .image-banners .image-text-container .text-container .title-g {
    font-size: 20px;
  }
  .image-banners-wrap .image-banners .image-text-container .text-container .text {
    font-size: 16px;
    max-height: 0;
    margin-top: 14px;
    transition: 0.65s ease-in-out, opacity 0.5s ease-in;
    overflow: hidden;
    margin-bottom: -14px;
    opacity: 0;
  }
  .people-banners-wrap {
    max-width: none;
    width: 100%;
    padding: 0 49px;
  }
  .people-banners-wrap .people-banners {
    gap: 40px;
    width: 100%;
    height: 327px;
    overflow: hidden;
  }
  .people-banners-wrap .people-banners .people-banner {
    position: absolute;
    box-shadow: none;
    width: 288px !important;
    max-width: 288px;
    box-sizing: border-box;
    padding: 25px 30px;
  }
  .people-banners-wrap .people-banners .people-banner .banner-text {
    font-size: 0.93em;
  }
  .greek .people-banners-wrap .people-banners .people-banner {
    padding: 20px;
    font-size: 15px;
  }
  .greek .people-banners-wrap .people-banners .people-banner .banner-text {
    font-size: 0.97em;
  }
  .greek .people-banners-wrap .people-banners .people-banner .banner-title {
    font-size: 20px;
  }
  .greek .people-banners-wrap .people-banners .people-banner .banner-position {
    font-size: 16px;
  }
  .people-banners-wrap .people-banners .slick-slide {
    width: 288px !important;
    max-width: 288px;
    background: var(--Beige, #F5F3EE);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
  }
  .people-banners-wrap .people-banners .slick-slide > div {
    margin-inline-end: 10px;
  }
  footer {
    padding: 20px 80px;
  }
  footer .footer-logos {
    flex-direction: row;
    gap: initial;
  }
  footer .footer-logos > img {
    width: auto;
  }
  footer .copyright {
    flex-direction: row;
    gap: initial;
  }
  /* marquee animation */
  .marquee {
    --marquee-item-width: 288px;
    --marquee-item-height: 327px;
    --marquee-duration: 25s;
    --marquee-items: 10;
    display: flex;
    block-size: var(--marquee-item-height);
    /*margin-block: var(--marquee-item-height);*/
    position: relative;
    overflow-x: hidden;
    mask-image: linear-gradient(to right, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 10%, hsl(0, 0%, 0%) 90%, hsla(0, 0%, 0%, 0));
  }
  .marquee:hover .marquee__item {
    animation-play-state: paused;
  }
  .marquee .marquee__item {
    --marquee-item-offset: max( calc(var(--marquee-item-width) * var(--marquee-items)), calc(100% + var(--marquee-item-width)) );
    --marquee-delay: calc(var(--marquee-duration) / var(--marquee-items) * (var(--marquee-items) - var(--marquee-item-index)) * -1);
    position: absolute;
    inset-inline-start: var(--marquee-item-offset);
    transform: translateX(-50%);
    animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
  }
  .marquee .marquee__item:nth-of-type(1) {
    --marquee-item-index: 1;
  }
  .marquee .marquee__item:nth-of-type(2) {
    --marquee-item-index: 2;
  }
  .marquee .marquee__item:nth-of-type(3) {
    --marquee-item-index: 3;
  }
  .marquee .marquee__item:nth-of-type(4) {
    --marquee-item-index: 4;
  }
  .marquee .marquee__item:nth-of-type(5) {
    --marquee-item-index: 5;
  }
  .marquee .marquee__item:nth-of-type(6) {
    --marquee-item-index: 6;
  }
  .marquee .marquee__item:nth-of-type(7) {
    --marquee-item-index: 7;
  }
  .marquee .marquee__item:nth-of-type(8) {
    --marquee-item-index: 8;
  }
  .marquee .marquee__item:nth-of-type(9) {
    --marquee-item-index: 9;
  }
  .marquee .marquee__item:nth-of-type(10) {
    --marquee-item-index: 10;
  }
}
/*mobile*/
@media screen and (max-width: 992px) {
  .content-section.stats-section .stats-container .dead-sea .divider {
    height: 268px;
  }
  .dead-sea .stat-extra.stat-100 {
    min-width: max-content;
  }
  .greek .dead-sea .stat-extra.stat-100 {
    min-width: auto;
  }
  .greek .dead-sea .stat-extra.stat-100 .stat-extra-content {
    gap: 10px !important;
  }
  .dead-sea .stat-extra-content {
    font-size: 18px;
  }
  .dead-sea .stat-extra-content .title-h1 {
    font-size: 18px;
  }
  .dead-sea .stat-extra-content .title-h2 {
    font-size: 16px;
  }
  .dead-sea .stat-extra-content .bold {
    font-size: 18px;
  }
  .dead-sea .stat-extra-content .title {
    display: flex;
    gap: 6px;
    align-items: flex-start;
  }
  .dead-sea .stat-extra-content .title > span {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    margin-top: 4px;
  }
  .approch-section .splide .splide__track {
    margin-inline: 15px !important;
  }
  .our-team .splide .splide__track {
    margin-inline: 15px !important;
  }
  .our-team .people-banners-wrap .people-banners {
    width: 100%;
  }
}
@keyframes go {
  to {
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}
