@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Forum&family=Martel:wght@200;300;400;600;700;800;900&display=swap');


:root {

  --color-brand-1: #22403F;
  --color-brand-2: #BB945D;
  --color-brand-3: #101717;
  --color-brand-4: #507271;
  --color-brand-5: #62A3B5;
  --color-brand-6: #F5F5F5;
  --color-brand-7: #FCFCFC;

  --color-black: #000000;
  --color-white: #ffffff;
  --color-white-opacity: rgba(255,255,255,0.1);

  --branding-default: var(--color-brand-2);
  --branding-hovered: var(--color-brand-4);
  --branding-pressed: var(--color-brand-4);

  --border-hovered: var(--color-brand-2);
  --background-hovered: var(--color-brand-2);
  --base-featured: var(--color-brand-4);
  
  /*--border-radius-default: 10px;
  --border-radius-1x: 5px;
  --border-radius-2x: 15px;
  --border-radius-05x: 10px;
  --border-radius-button: 10px;*/

  --border-brand-1: 1px solid var(--color-brand-1);
  --border-brand-2: 1px solid var(--color-brand-2);
  --border-brand-3: 1px solid var(--color-brand-3);
  --border-brand-4: 1px solid var(--color-brand-4);
  --border-white: 1px solid var(--color-white);
  --border-white-opacity: 1px solid var(--color-white-opacity);
  --border-black: 1px solid var(--color-black);
  --border-black-opacity: 1px solid var(--color-black-opacity);

  --font-family-1: "Cormorant Garamond", serif;
  --font-family-2: "Martel", serif;
  --font-family-3: "Forum", serif;

  --font-size-body: 16px;
  --font-size-20: 20px;
  --font-size-22: 22px;

  --container-max-width: 1200px;

  --box-shadow-btn: 0 6px 12px rgba(0, 0, 0, .1);
  --box-shadow-btn-2: 0 0 10px rgba(0, 0, 0, 0.15);
  --box-shadow-header: 0 7px 24px rgba(0, 0, 0, .06);

  --box-shadow-default: 0px 1px 20px -12px var(--color-brand-1);

  --box-shadow-pre-hover-brand-2: inset 0px 0px 0 0 var(--color-brand-2);
  --box-shadow-hover-brand-2-top: inset 0px 200px 0 0 var(--color-brand-2);

  --transition-default: all 0.5s ease; 
  
  --img-ratio-rate-primary: 4 / 3;
  --img-ratio-rate-primary-mobile: 4 / 3;
  --img-ratio-rate-secondary: 4 / 3;
  --img-ratio-rate-secondary-mobile: 4 / 3;
  --img-ratio-mda-secondary-rate: 4 / 3;
  --img-ratio-mda-secondary-rate-mobile: 4 / 3;
}

@media screen and (max-width: 499px) {

  :root {
    --font-size-body: 14px;
    --font-size-20: 18px;
    --font-size-22: 20px;
    --container-max-width: 100vw;
  }

}

@media screen {
  
  .header a i,
  .backtotop a i,
  .footer a i {
    margin-right: 0px;
  }
  
  body {
    background-color: var(--color-brand-6);
    font-family: var(--font-family-2);
    font-size: var(--font-size-body);
  }

  .main-be-area {
    background-color: var(--color-brand-6);
  }

  .card-grid.grid-layout {
    box-shadow: var(--box-shadow-default);
  }

  .avvio-calendar-container,
  .avvio-calendar__month {
    border-radius: var(--border-radius-1x)!important;
  }

  .avvio-calendar__date,
  .button, 
  .button--secondary,
  .button--branded {
    border-radius: var(--border-radius-1x);
    transition: var(--transition-default);
  }

  .button--branded {
    color: var(--color-black);
    /*border: var(--border-black);*/
    border-radius: var(--border-radius-1x);
  }

  .avvio-calendar .check-in {
    border-end-start-radius: var(--border-radius-1x);
  }

  .avvio-calendar .avvio-calendar__state {
    border-radius: var(--border-radius-1x);
  }

  .button--branded:hover {
    background-color: var(--color-brand-4);
    color: var(--color-white);
    border: var(--border-brand-4);
  }

  .button--primary:hover,
  .button--secondary:hover {
    background-color: var(--color-brand-4);
    color: var(--color-white);
    border: var(--border-brand-4);
  }

  .button__text {
    font-family: var(--font-family-1);
    text-transform: uppercase;
  }

  .button-icon {
    border: none!important;
    border-radius: var(--border-radius-1x);
  }

  .button-icon:hover .button-icon__icon,
  .button-icon--secondary .button-icon__icon {
    width: 100%;
    height: 100%;
    color: var(--color-black)!important;
    background-color: var(--color-brand-2);
    border-radius: var(--border-radius-1x)!important;
    border: var(--border-brand-2);
    transition: var(--transition-default);
  }

  .button-icon:hover:not(.disabled) .button-icon__icon {
    color: var(--color-brand-4);
    background-color: var(--color-white);
    border: var(--border-brand-4);

  }

  .checkbox-field__input + .checkbox-field__icon {
    background-color: transparent;
  }
  
  /*-------------- Header ----------------*/

  .header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 30px 0;
    background-color: var(--color-brand-1);
    box-shadow: var(--box-shadow-default);
    padding-block: 0px;
    z-index: 999;
  }

  .main-be-area {
    background: var(--color-brand-6);
  }

  .full-ribbon-one {
    box-shadow: var(--box-shadow-default);
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header .logo a {
    width: auto;
    height: 80px;
  }

  .header .logo a img {
    display: inline-block;
    width: 100%;
    height: 100%;
    transition: var(--transition-default);
  }
  
  .header .logo a:hover img {
    opacity: 80%;
  }

  .header .backtosite {
    position: absolute;
    top: 17px;
    right: calc((100% - var(--container-max-width)) / 2);
    min-width: 220px;
    height: 66px;
    display: flex;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

    padding: 10px;
    color: var(--color-black);
    background-color: var(--color-brand-2);
    border-radius: var(--border-radius-1x);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: var(--font-size-22);
    line-height: 1;
    font-family: var(--font-family-1);
    font-weight: 600;
    transition: var(--transition-default);
  }
  
  .header .backtosite:hover a {
    color: var(--color-white);
    background-color: var(--color-brand-4);
    border-color: var(--color-brand-4);
  }
  
  h1, h2, h3, h4, h5, h6,
  .header1, .header2, .header3, .header4, .header5, .header6,
  .heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
    font-family: var(--font-family-1);
  }

  .navigation-box .button--primary,
  .navigation-box .button--primary.button--underlined {
    background-color: transparent;
    color: var(--color-brand-1);
    border: var(--border-transparent);
    transition: var(--transition-default);
  }

  .navigation-box .button--primary.button--underlined .button__text {
    text-decoration: none;
  }

  .navigation-box .button--primary.disabled {
    color: var(--color-black);
  }

  #control-area-links .button--primary {
    padding: 5px;
    margin: 10px 0;
    background-color: transparent;
    color: var(--color-brand-1);
    border: var(--border-transparent);
    transition: var(--transition-default);
  }

  .navigation-box .button--primary.button--underlined:hover {
    color: var(--color-brand-4);
    border: var(--border-brand-1);
  }

  .navigation-box .button--primary:hover {
    color: var(--color-brand-4);
    border: var(--border-transparent);
  }

  .navigation-box .button--primary.disabled:hover {
    color: var(--color-black);
    border: var(--border-transparent);
  }

  #control-area-links .button--primary:hover {
    color: var(--color-brand-4);
    border: var(--border-brand-1);
  }

  .poweredby a,
  .privacy-policy-container a {
    font-size: calc(var(--font-size-body) - 0px);
    font-family: var(--font-family-2);
    color: var(--color-black);
    transition: var(--transition-default);
  }

  .poweredby a:hover,
  .privacy-policy-container a:hover {
    color: var(--color-brand-2);
  }

  /*-------------- Footer ----------------*/

  .footer {
    width: 100%;
    display: block;
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-default);
  }

  .footer .footer-container-1 {
    padding: 56px;
    margin: 24px;
    padding-bottom: 0;
    background-color: var(--color-brand-1);
    display: block;
    border-radius: 30px;
  }

  .footer .footer-detail {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .footer .footer-1 {
    display: block;
    margin-bottom: 0;
    padding-right: 15px;
    padding-left: 0;
    text-align: left;
    color: var(--color-brand-7);
  }

  .footer .footer-2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: start;
    width: 60%;
    max-width: 700px;
  }

  .footer .footer-2 h3 {
    color: var(--color-white);
    margin: 0;
    padding-bottom: 40px;
    font-family: var(--font-family-2);
    font-size: calc(var(--font-size-22) + 4px);
    font-weight: 400;
  }

  .footer .footer-2 .navigation-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }

  .footer .footer-2 .navigation-menu ul li {
    width: 33.33%;
    display: block;
  }

  .footer .footer-2 .navigation-menu ul li a {
    font-size: var(--font-size-body);
    line-height: 1.5;
    font-family: var(--font-family-2);
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-brand-7);
    text-transform: none;
    transition: var(--transition-default);
    width: fit-content;
    text-decoration: none;
  }

  .footer .footer-2 .navigation-menu ul li a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background-color: var(--color-brand-7);
    transition: var(--transition-default);
  }

  .footer .footer-2 .navigation-menu ul li a:hover::before {
    width: 100%;
  }

  .footer .footer-2 .navigation-menu ul li a:hover {
    color: var(--color-white);
  }

  .footer .footer-3 {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 60px 0;
    margin-top: 87px;
    border-top: 1px solid var(--color-white-opacity);
  }

  .footer .footer-3 .footer-logo {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .footer .footer-logo-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: var(--color-white);
    margin-top: 60px;
  }

  .footer .logo-1 {
    display: flex;
    gap: 30px;
  }

  .footer .footer-logo-1 a {
    height: 58px;
    width: 30%;
  }

  .footer .footer-1 .footer-logo-1 p a {
    height: 58px;
    margin-right: 30px;
  }

  .footer .footer-logo a {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: var(--color-brand-7);
    border-radius: var(--border-radius-1x);
    transition: var(--transition-default);
  }

  .footer .footer-logo img {
    width: 100%;
    height: 100%;
    /*-o-object-fit: contain;
    object-fit: contain;
    vertical-align: middle;*/
    transition: var(--transition-default);
  }

  .footer .footer-logo a:hover {
    background-color: var(--color-brand-5);
  }

  /*.footer .footer-logo img:hover {
    opacity: .6;
  }*/

  .footer .address {
    justify-content: flex-start;
    display: block;
  }

  .footer .address .address-detail {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
    font-family: var(--font-family-1);
    font-size: var(--font-size-20);
    text-transform: capitalize;
  }

  .footer .address .address-detail h3 {
    font-family: var(--font-family-1);
    font-weight: 400;
    text-transform: none;
    font-size: calc(var(--font-size-22) *1.8);
    margin: 0;
  }

  .footer .address ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: normal;
    margin-bottom: 25px;
  }

  .footer .address ul li {
    padding: 5px 0;
  }

  .footer .address a {
    position: relative;
    font-family: var(--font-family-2);
    font-weight: 400;
    font-size: var(--font-size-body);
    color: var(--color-brand-7);
    transition: var(--transition-default);
    padding: 5px 0;
    line-height: normal;
    text-decoration: none;
  }

  .footer .address a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background-color: var(--color-brand-7);
    transition: var(--transition-default);
  }

  .footer .address a:hover::before {
    width: 100%;
  }

  .footer .address a:hover {
    color: var(--color-brand-7);
  }

  .footer .contact {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 20px 40px;
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer .contact strong {
    font-family: var(--font-family-1);
    font-size: var(--font-size-body);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: none;
  }
  
  .footer .contact a {
    font-family: var(--font-family-3);
    font-size: var(--font-size-body);
    font-weight: 400;
    color: var(--color-brand-7);
    transition: var(--transition-default);
  }

  .footer .contact a:hover {
    text-decoration: underline;
  }
  
  .footer .socials {
    display: flex;
    gap: 10px;
  }

  .footer .socials a {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-brand-7);
    color: var(--color-brand-1);
    font-size: calc(var(--font-size-22) + 3px);
    border-radius: calc(var(--border-radius-1x) * 10);
    padding: 10px;
    transition: var(--transition-default);
  }

  .footer .socials a .cls-1 {
    fill: var(--color-brand-1);
    transition: var(--transition-default);
  }

  .footer .socials a:hover {
    background-color: var(--color-brand-4);
    color: var(--color-white);
    transition: var(--transition-default);
  }

  .footer .socials a:hover .cls-1 {
    fill: var(--color-white);
  }

  .footer .socials a img {
    height: 100%;
    width: 100%;
    transition: var(--transition-default);
  }

  .footer .socials a:hover img {
    filter: invert(1);
  }

  .footer .footer-logo-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-default);
  }

  .footer .footer-logo-1 img:hover {
    opacity: .6;
  }

  .footer .footer-container-2 {
    background: var(--color-white);
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    justify-content: center;
  }
  
  .footer .footer-container-2 .footer-credit a {
    font-family: var(--font-family-2);
    font-weight: 400;
    color: var(--color-brand-1);
    display: flex;
    position: relative;
    justify-content: center;
    width: fit-content;
    line-height: 35px;
    text-decoration: none;
    transition: var(--transition-default);
  }

  .footer .footer-container-2 .footer-credit a::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background-color: var(--color-brand-1);
    transition: var(--transition-default);
  }

  .footer .footer-container-2 .footer-credit a:hover::before {
    width: 100%;
  }

}

@media screen and (max-width: 1199px) {
  .header .backtosite {
    right: 17px;
  }

}


/* ----- Tablet specific ----- */
@media screen and (max-width: 991px) {

  .header .logo a {
    width: 100%;
    max-height: 80px;
  }

  .header .backtosite {
    min-width: unset;
  }

  .footer-navigation {
    display: none;
  }

  .footer .footer-logo {
    width: 200px;
  }

  .footer .footer-logo-1 {
    margin-top: 50px;
  }
  
  .footer .footer .address {
    padding: 30px 0;
  }

 /* .footer .socials {
    justify-content: center;
  }*/

  .footer .footer-container-1 .footer-detail {
    display: block;
    justify-content: center;
  }

  /*.footer .footer-1 {
    text-align: center;
  }*/

  .footer .footer-2 {
    width: 100%;
    max-width: 100%;
    padding-top: 50px;
  }

  .footer .footer-2 .navigation-menu {
    display: none;
  }

  .footer .footer-2 .navigation-menu ul {
    width: 100%;
  }

  /*.footer .footer-2 h3 {
    text-align: center;
  }*/
  
  .footer .footer-2 .footer-logo-1 .logo-1 {
    justify-content: center;
  }

  .footer .footer-3 .footer-logo {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {

  .header .backtosite {
    display: none;
  }

  .footer .footer-2 h3 {
    text-align: center;
  }

  .footer .footer-2 .footer-logo-1 .logo-1 {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer .footer-logo-1 {
    margin-top: 10px;
  }

  .footer .footer-logo-1 a {
    width: 80%;
    he60px
  }

  .footer {
    padding: 60px 0;
  }

  .footer .footer-navigation {
    display: none;
  }

  .footer .footer-logo {
    gap: 20px;
    flex-wrap: wrap;
  }

  .footer .address {
    padding: 30px 0;
  }

  .footer .contact p {
    margin: 0;
  }

  .footer .footer-3 {
    padding: 20px 0;
    margin-top: 40px;
  }

}

/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {

  .footer .footer-row-1 a img {
    width: 90%;
    height: auto;
  }
  
  .header .container {
    display: flex;
    padding-inline: 0px;
  }
  
  .header .logo {
    padding-inline: 0px;
    width: 85%;
  }

  .header .logo a img {
    width: 100%;
    height: 100%;
  }

  .footer {
    padding: 0 20px;
  }

  .footer .address {
    padding: 10px 0;
  }

  .footer .footer-3 .footer-logo {
    flex-wrap: wrap;
  }

  .footer .footer-logo-1 a {
    padding: 0;
  }

  .footer .footer-container-1{
    padding: 24px;
    margin-left: 10px;
    margin-right: 10px;
  }

}