@charset "UTF-8";


@import url('https://use.typekit.net/hke6gfq.css');

:root {

  --color-brand-1: #141F42;
  --color-brand-2: #101935;
  --color-brand-3: #F0EEED;
  --color-brand-4: #878B93;
  --color-brand-5: #0F1626;

  --color-black: #000000;
  --color-white: #ffffff;
  --color-white-opacity: rgba(255,255,255,0.5);

  --branding-default: var(--color-brand-1);
  --branding-hovered: var(--color-brand-2);
  --branding-pressed: var(--color-brand-4);

  --border-hovered: var(--color-brand-2);
  --background-hovered: var(--color-brand-2);
  --base-featured: var(--color-brand-4);

  --mda-box-background: var(--color-brand-5);

  
  /*--border-radius-default: 0px;
  --border-radius-1x: 0px;
  --border-radius-button: 0px;*/
  --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-transparent: 1px solid transparent;
  --border-black: 1px solid var(--color-black);
  --border-white: 2px solid var(--color-white);
  --border-white-opacity: 1px solid var(--color-white-opacity);

  --font-family-1: "quiche-stencil", sans-serif;
  --font-family-2: "area-normal", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-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-black);

  --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);

  /*--background-arrow-brand-1: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 33.28"><path class="cls-1" d="M39.36,15.08L24.92.64c-.41-.41-.96-.64-1.55-.64s-1.14.23-1.55.64l-1.31,1.31c-.41.41-.64.96-.64,1.55s.23,1.15.64,1.57l8.43,8.45H2.16c-1.21,0-2.16.95-2.16,2.15v1.85c0,1.21.95,2.25,2.16,2.25h26.87l-8.52,8.49c-.41.41-.64.95-.64,1.53s.23,1.13.64,1.54l1.31,1.31c.41.41.96.64,1.55.64s1.14-.23,1.55-.64l14.45-14.45c.41-.41.64-.97.64-1.55,0-.59-.23-1.14-.64-1.55Z" fill="teal"/></svg>');
  --background-arrow-brand-2: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 33.28"><path class="cls-1" d="M39.36,15.08L24.92.64c-.41-.41-.96-.64-1.55-.64s-1.14.23-1.55.64l-1.31,1.31c-.41.41-.64.96-.64,1.55s.23,1.15.64,1.57l8.43,8.45H2.16c-1.21,0-2.16.95-2.16,2.15v1.85c0,1.21.95,2.25,2.16,2.25h26.87l-8.52,8.49c-.41.41-.64.95-.64,1.53s.23,1.13.64,1.54l1.31,1.31c.41.41.96.64,1.55.64s1.14-.23,1.55-.64l14.45-14.45c.41-.41.64-.97.64-1.55,0-.59-.23-1.14-.64-1.55Z" fill="burlywood"/></svg>');
  --background-arrow-white: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 33.28"><path class="cls-1" d="M39.36,15.08L24.92.64c-.41-.41-.96-.64-1.55-.64s-1.14.23-1.55.64l-1.31,1.31c-.41.41-.64.96-.64,1.55s.23,1.15.64,1.57l8.43,8.45H2.16c-1.21,0-2.16.95-2.16,2.15v1.85c0,1.21.95,2.25,2.16,2.25h26.87l-8.52,8.49c-.41.41-.64.95-.64,1.53s.23,1.13.64,1.54l1.31,1.31c.41.41.96.64,1.55.64s1.14-.23,1.55-.64l14.45-14.45c.41-.41.64-.97.64-1.55,0-.59-.23-1.14-.64-1.55Z" fill="white"/></svg>');
*/

  --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-3);
    font-family: var(--font-family-2);
    font-size: var(--font-size-body);
  }
  
  .main-be-area {
    background-color: var(--color-brand-3);
  }

/*  .page-layout,*/
  .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 {
    transition: var(--transition-default);
    
  }

  .button--branded {
    color: var(--color-black);
    background-color: transparent;
    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-2);
    color: var(--color-white);
    border: var(--border-brand-2);
  }

  .button--primary:hover,
  .button--secondary:hover {
    color: var(--color-white);
    border: var(--border-brand-1);
    background-color: var(--color-brand-1);
  }

  .button__text {
    font-family: var(--font-family-2);
    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);
    background-color: transparent;
    border-radius: var(--border-radius-1x)!important;
    border: var(--border-black);
    transition: var(--transition-default);
  }

  .button-icon:hover:not(.disabled) .button-icon__icon {
    color: var(--color-white);
    background-color: var(--color-brand-2);
  }

  .checkbox-field__input + .checkbox-field__icon {
    background-color: transparent;
  }
  
  .header {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 112px;
    background-color: var(--color-brand-1);
    color: var(--color-white);
    box-shadow: var(--box-shadow-default);
    padding-block: 0px;
    z-index: 4;
  }

  .full-ribbon-one {
    box-shadow: var(--box-shadow-default);
  }
  
  .header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: var(--container-max-width);
    padding-inline: 15px;
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo a img {
    display: block;
    
    height: 80px;
    width: auto;
    
    transition: var(--transition-default);
  }
  
  .header .logo a:hover img {
    opacity: 80%;
  }

  .header .backtosite {
    position: absolute;
    top: 33px;
    right: calc((100% - var(--container-max-width)) / 2);
    min-width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    
    background-color: transparent;
    color: var(--color-white);
    border: var(--border-white);

    border-radius: var(--border-radius-1x);
    
    font-size: var(--font-size-body);
    font-family: var(--font-family-2);
    font-weight: 400;
    /*    letter-spacing: 1px;*/
    line-height: 23px;
    text-align: center;
    text-transform: uppercase;
    
    padding-block: 10px;
    padding-inline: 30px;
    
    transition: var(--transition-default);
  }
  
  .header .backtosite:hover a {
    background-color: var(--color-white);
    color: var(--color-brand-1);
    border: var(--border-white);
  }

  .header .sitename {
    position: absolute;
    display: none;
  }
  
  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-2);
    border: var(--border-brand-1);
  }

  .navigation-box .button--primary:hover {
    color: var(--color-brand-2);
    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-2);
    border: var(--border-brand-1);
  }

  .poweredby a,
  .privacy-policy-container a {
    font-size: calc(var(--font-size-body) - 0px);
    font-family: var(--font-family-1);
    color: var(--color-black);
    transition: var(--transition-default);
  }

  .poweredby a:hover,
  .privacy-policy-container a:hover {
    color: var(--color-brand-2);
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-brand-1);
    color: var(--color-white);
    font-size: calc(var(--font-size-body) - 2px);
    font-weight: 400;
    letter-spacing: 0.9px;
    line-height: 26px;
    text-align: center;
    padding-top: 0px;
    margin-top: -1px;
    box-shadow: var(--box-shadow-default);
  }

  .footer a {
    color: var(--color-white);
    font-size: calc(var(--font-size-body) - 2px);
    transition: var(--transition-default);
    word-break: break-all;
  }

  .footer a:hover {
    color: var(--color-white);
  }
  
  .footer .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }

  .footer .footer-row-1 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: var(--container-max-width);
    gap: 20px;
    padding-top: 40px;
  }

  .footer .footer-row-1 a img {
    height: 80px;
    width: auto;
  }

  .footer .top-banner-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
  }

  .footer .top-banner-title {
    color: var(--color-brand-1);
    font-size: var(--font-size-22);
    font-family: var(--font-family-1);
    font-weight: 700;
    letter-spacing: 1px;
  }

  .footer .top-banner-link a {
    padding: 0;
    width: 20%;
    transition: var(--transition-default);
  }

  .footer .top-banner-link a img {
    width: 100%;
    height: auto;
  }

  .footer .top-banner-link a:hover {
    background-color: transparent;
  }

  .footer .footer-row-2 {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 40px;
  }

  .footer .footer-row-2-container {
    width: 100%;
    max-width: var(--container-max-width);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }

  .footer .footer-row-2-container a {
    height: 100%;
    width: auto;
  }

  .footer .footer-row-2-container a img {
    height: 60px;
    width: 100%;
    /*    filter: invert(100%);*/
    transform: scale(1.0);
    opacity: 0.8;
    transition: var(--transition-default);
  }

  .footer .footer-row-2-container a:hover img {
    transform: scale(1.02);
    opacity: 1;
  }

  .footer .footer-row-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: 40px;
    gap: 10px;
  }

  .footer .col-4 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 27%;
  }

  .footer .col-4.logo-container {
    width: 19%;
  }

  .footer .col-4 .address {
    font-size: calc(var(--font-size-body) + 0px);
    text-align: left;
    position: relative;
  }

  .footer .contact-icon {
    display: flex;
  }

  .footer .contact-address {
    display: flex;
    text-align: left;
  }

  .footer .contact-icon svg {
    height: 20px;
    width: auto;
  }

  .footer .contact-icon svg path {
    fill: var(--color-white);
  }

  .footer .col-4 .contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }

  .footer .col-4 .contact p {
    margin: 0;
    display: flex;
    gap: 10px;
  }

  .footer .footer-row-1-partners {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer .col-4.newsletter-block {
    width: 25%;
  }

  .footer .newsletter {
    display: flex;
    width: 200px;
    justify-content: center;
    margin-top: 20px;
  }

 .footer .newsletter-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
/*    gap: 20px;*/
    text-align: left;
  }

  .footer .newsletter a.btn {
    font-family: var(--font-family-2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background-color: transparent;
    color: var(--color-white);
    border: var(--border-white);
    border-radius: var(--border-radius-1x);
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    transition: var(--transition-default);
  }

  .footer .newsletter a.btn:hover {
    background-color: var(--color-white);
    color: var(--color-black);
  }

  .footer .col-4-title {
    color: var(--color-white);
    font-family: var(--font-family-1);
    font-size: var(--font-size-20);
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer .hotels-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .logo-contacts {
    display: flex;
    margin-top: 0px;
    width: 100%;
    justify-content: center;

  }

  .footer .footer-menu {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
  }

  .footer .links-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding-inline-start: 0px;
    margin: 0;
  }

  .footer .links-container.logo-links {
    margin-top: 0px;
  }

  .footer .links-container li {
    padding: 0px 0;
    text-align: center;
    font-size: var(--font-size-body);
    font-weight: 200;
    list-style: none;
  }

  .footer .links-container a {
    position: relative;
    padding: 5px 10px 5px 0;
    font-weight: 400;
    text-align: left;
    transition: var(--transition-default);
  }

  .footer .links-container a:hover {
    color: var(--color-white);
  }

  .footer .footer-row-3 a,
  .footer a.hotel-link {
    padding: 0px 0px 5px;
    text-align: left;
    position: relative;
    transition: var(--transition-default);
  }

  .footer .footer-row-3 a {
    padding: 0;
  }

  .footer .footer-row-3 a:hover,
  .footer a.hotel-link:hover {
    color: var(--color-white);
  /*    padding: 0px 0px 5px;*/
  }

  .footer .footer-row-3 a::before,
  .footer .links-container a::before,
  .footer a.hotel-link::before {
    position: absolute;
    content: '';
    background-color: var(--color-white);
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0px;
    transition: var(--transition-default);
  }

  .footer .footer-row-3 a:hover::before,
  .footer .links-container a:hover::before,
  .footer a.hotel-link:hover::before{
    width: 100%;
  }
  
  .footer .links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    
    row-gap: 15px;
  }
  
  .footer .footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .footer .footer-logo a img {
    height: 140px;
  }
  
  .footer .col-4 img {
    display: block;
    
    width: auto;
    height: 150px;
    
    transition: var(--transition-default);
  }
  
  .footer .footer-logo:hover img {
    opacity: 80%;
  }

  .footer .socials {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 6px;
    margin-top: 20px;
  }

  .footer .socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: calc(var(--font-size-body) * 1);
    color: var(--color-black);
    border-radius: 0%;
    padding: 10px;
    position: relative;
/*    border: var(--border-black);*/
/*    background-color: transparent;*/
    background:
    /* Top horizontal line */
    linear-gradient(to right, black 0%, black 40%, transparent 40%, transparent calc(100% - 40%), black calc(100% - 40%), black 100%) top / 100% 1px no-repeat,
    /* Bottom horizontal line */
    linear-gradient(to right, black 0%, black 40%, transparent 40%, transparent calc(100% - 40%), black calc(100% - 40%), black 100%) bottom / 100% 1px no-repeat,
    /* Left vertical line */
    linear-gradient(to bottom, black 0%, black 40%, transparent 40%, transparent calc(100% - 40%), black calc(100% - 40%), black 100%) left / 1px 100% no-repeat,
    /* Right vertical line */
    linear-gradient(to bottom, black 0%, black 40%, transparent 40%, transparent calc(100% - 40%), black calc(100% - 40%), black 100%) right / 1px 100% no-repeat;
    transition: var(--transition-default);
  }

  .footer .socials a.twitter-link {
    padding: 8px;
  }

  .footer .socials a svg {
    width: 100%;
    height: 100%;
  }

  .footer .socials a svg path {
    fill: var(--color-black);
    transition: var(--transition-default);
  }

  .footer .socials a:hover {
    color: var(--color-black);
    background:
    /* Top horizontal line */
    linear-gradient(to right, black 0%, black 50%, transparent 50%, transparent calc(100% - 50%), black calc(100% - 50%), black 100%) top / 100% 1px no-repeat,
    /* Bottom horizontal line */
    linear-gradient(to right, black 0%, black 50%, transparent 50%, transparent calc(100% - 50%), black calc(100% - 50%), black 100%) bottom / 100% 1px no-repeat,
    /* Left vertical line */
    linear-gradient(to bottom, black 0%, black 50%, transparent 50%, transparent calc(100% - 50%), black calc(100% - 50%), black 100%) left / 1px 100% no-repeat,
    /* Right vertical line */
    linear-gradient(to bottom, black 0%, black 50%, transparent 50%, transparent calc(100% - 50%), black calc(100% - 50%), black 100%) right / 1px 100% no-repeat;
/*    background: transparent;*/
    background-color: var(--color-brand-2);
    transition: var(--transition-default);
/*    border: var(--border-black);*/
  }

  .footer .socials a:hover svg path {
    fill: var(--color-black);
}

@media screen and (max-width: 1300px) {
    .footer .links-container {
      gap: 4px;
    }

    .footer .links-container a {
      padding: 5px 4px;
    }

    .footer .links-container a::after {
      right: -4px;
      top: 8px;
    }
}

@media screen and (max-width: 1199px) {

  .header .backtosite {
    right: 33px;
  }

  .footer .footer-row-1 {
/*    flex-wrap: wrap;*/
    padding: 40px 20px 0;
  }

  .footer .col-4 {
    flex-wrap: wrap;
    gap: 10px;
    width: 25%;
  }

  .footer .footer-row-2 {
    padding-inline: 20px;
  }

  .footer .newsletter-container-top {
    flex-direction: column;
    justify-content: center;
  }

  .footer .footer-row-2-container {
    flex-wrap: wrap;
  }

  .footer .footer-row-2-container a {
    width: 10%;
  }

  /*.footer .footer-row-2-container a img {
    height: 80px;
  }*/

}


/* ----- Tablet specific ----- */
@media screen and (max-width: 991px) {

  .header .backtosite {
    min-width: unset;
  }

  .footer .footer-menu {
    display: none;
  }

  .footer .footer-row-1 {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .footer .col-4.logo-container,
  .footer .col-4.newsletter-block,
  .footer .col-4 {
    width: 100%;
    max-width: unset;
    justify-content: center;
    align-items: center;
  }

  .footer .newsletter-container {
    align-items: center;
    text-align: center;
  }

  .footer .socials {
    justify-content: center;
  }

  .footer .contact-address {
    text-align: center;
  }

  .footer .col-4 .contact {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .footer .col-4.contact-container {
    align-items: center;
  }
  
}

@media screen and (max-width: 767px) {

  .header .backtosite {
    display: none;
  }

  .header::before {
    z-index: 0;
  }

  .header .container {
    justify-content: center;
    z-index: 2;
  }

  /*.footer .footer-row-1 {
    background-color: var(--color-white);
  }*/

  .footer .top-banner-link {
    flex-direction: column;
  }

  .footer .top-banner-link a {
    width: 60%;
  }

  .footer .col-4 .address {
    text-align: center;
  }

  .footer .footer-row-2 {
/*    flex-direction: column;*/
    flex-wrap: wrap;
    justify-content: center;
  }

  /*.footer .col-4 {
    width: 40%;
    padding-inline: 0px;
    align-items: center;
  }*/

  /*.footer .footer-logo {
    margin-bottom: 30px;
    order: 1;
  }*/

  .footer .col-4 .address::after, 
  .footer .col-6-code::after, 
  .footer a.hotel-link::after, 
  .footer .links-container a::after {
    display: none;
  }

  .footer .newsletter-input {
    width: 90%;
    text-align: center;
  }

  .footer .col-4.contact-container {
    flex-direction: column;
  }

  .footer .col-4 .contact,
  .footer .col-6-container {
    flex-direction: column;
    gap: 10px;
  }

  /*.footer .footer-menu {
    order: 2;
  }*/

  /*.footer .col-4.footer-hotels {
    order: 3;
    width: 96%;
  }*/

  .footer .logo-contacts,
  .footer .hotels-container,
  .footer .links-container {
    width: 100%;
    flex-wrap: wrap;
  }

  .footer .links-container {
    display: none;
  }

  .footer .links-container a, 
  .footer .hotels-container a {
    padding: 10px;
  }

}



/* ----- Mobile specific ----- */
@media screen and (max-width: 499px) {

  .footer .footer-row-1 a img {
    width: 100%;
    height: auto;
    max-height: 50px;
  }

  .mda-table__col-price .display-price {
    font-size: calc(var(--font-size-body) - 0px);
    font-weight: lighter;
  }
  
  .header {
    height: 80px;
    padding-block: 0 15px;
  }
  
  .header .container {
    display: flex;
    padding-inline: 0px;
  }
  
  .header .logo {
    padding-inline: 0px;
    width: 85%;
  }

  .header .backtosite a {
    padding: 10px;
    width: 100%;
  }

  .header .logo a img {
    width: 100%;
    height: 50px;
  }

  .footer .footer-row-2-container a {
    width: 30%;
  }

  .footer .top-banner-link {
    flex-direction: column;
  }
  
}

@media screen and (max-width: 320px) {

  .header {
    margin-top: 60px;
  }

}