@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

@import url("https://www.thefatbadgeryork.com/wp-content/themes/fatbadger/css/fonts.css");

:root {
  --brand-color-2: #BFA14C;
  --text-color: #939393;
  --footer-color: #2E2E2E;
  --brand-white: #FFFFFF;
  
  --font-family-serif: "playfair_displayregular", "Playfair Display", "Arial", arial, "Times New Roman", times, system-ui, serif;
  
  --border-radius-1x: 0px!important;
  
  --custom-transition: all 0.3s linear;
  
  --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 {
  
  .header a i,
  .backtotop a i,
  .footer a i {
    margin-right: 0px;
  }
  
  .main-be-area {
    background-color: #F4F4F4;
  }
  
  .sticky {
    margin-left: 300px;
  }
  
  /* --- Hide "explore this rate" button --- */
  div[id*="rateInfo"] .avvio-modal__bottom .button--secondary.cta {
    display: none !important;
  }
  
  /* ========== HEADER ========== */
  .layout-header-left > .header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    
    background-color: var(--footer-color);
    color: var(--text-color);
    
    width: auto;
    min-width: 300px;
    height: 100vh;
    left: 0px;
    top: 0px;
    padding-top: 30px;
    padding-inline: 30px;
    padding-bottom: 20px;
    /* border-right: 1px solid var(--border-default); */
  }
  
  .header .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    height: 100%;
    width: 100%;
  }
  
  
  
  /* --- Top --- */
  .header .container-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    row-gap: 30px;
  }
  
  /* - Invisible flex item - */
  .header .invisible-flex-item {
    display: none; /* Display none default, changes to display block on tablet size media query */
    align-self: stretch;
    
    width: 150px;
    height: 100%;
  }
  
  
  
  /* - Logo - */
  .header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .header .logo img {
    display: block;
    
    height: 241px;
    width: auto;
    
    transition: var(--custom-transition);
  }

  .header .logo img.img-large {
    display: block;
  }

  .header .logo img.img-small {
    display: none;
  }
  
  .header .logo:hover img {
    opacity: 80%;
  }
  
  
  
  /* - Back To Site - */
  .header .backtosite {
    position: relative;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header .backtosite a {
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-color: var(--brand-white);
    color: var(--brand-color);
    
    font-family: var(--font-family-serif);
    font-size: 18px;
    line-height: 26px; /* 40px minus 7px padding-block */
    text-align: center;
    text-transform: uppercase;
    
    min-width: 180px;
    column-gap: 10px;
    padding-block: 7px;
    padding-inline: 28px;
    border: 2px solid var(--brand-color);
    outline: 2px solid var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .header .backtosite a:hover {
    background-color: var(--brand-color);
    color: var(--brand-white);
  }
  
  .header .backtosite i {
    font-size: 10px;
  }
  
  .header .backtosite:active a {
    position: relative;
    top: 1px;
  }
  
  
  
  /* --- Bottom --- */
  .header .container-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    font-size: var(--text-size-h5);
    line-height: 22px;
    text-align: center;
    
    row-gap: 20px;
  }
  
  /* - Socials - */
  .header .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    
    column-gap: 10px;
  }
  
  .header .socials a i {
    color: var(--text-white);
    
    transition: var(--custom-transition);
  }
  
  .header .socials a:hover i {
    color: var(--text-color);
  }
  
  .header .socials a svg {
    fill: var(--brand-white);
    
    width: 20px;
    
    transition: var(--custom-transition);
  }
  
  .header .socials a:hover svg {
    fill: var(--text-color);
  }
  
  
  
  /* - Contact - */
  .header .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .header .contact p {
    margin-block: 0px;
  }
  
  .header .contact a {
    color: var(--text-color);
    
    transition: var(--custom-transition);
  }
  
  .header .contact a:hover {
    color: var(--brand-white);
  }
  
  
  
  /* - Address - */
  .header .address {
    color: var(--text-color);
    
    max-width: 180px;
  }
  
  
  
  
  /* ========== OVERWRITES ========== */
  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-serif);
  }
  
  
  
  /* ========== FOOTER ========== */
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    color: var(--text-color);
    background: var(--footer-color);
    
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    
    width: 100%;
    height: auto;
    row-gap: 20px;
    padding-block: 100px;
    padding-inline: 15px;
    border-top: 1px solid var(--border-default);
  }
  
  .footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    row-gap: 20px;
  }
  
  
  
  /* --- Top --- */
  .footer .container-top {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    row-gap: 20px;
  }
  
  /* - Socials - */
  .footer .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    
    column-gap: 10px;
  }
  
  .footer .socials a i {
    color: var(--text-color);
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover i {
    color: var(--brand-white);
  }
  
  .footer .socials a svg {
    fill: var(--text-color);
    
    width: 20px;
    
    transition: var(--custom-transition);
  }
  
  .footer .socials a:hover svg {
    fill: var(--brand-color);
  }
  
  
  
  /* - Contact - */
  .footer .contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    row-gap: 20px;
  }
  
  .footer .contact p {
    margin-block: 0px;
  }
  
  .footer .contact a {
    color: var(--text-color);
    
    transition: var(--custom-transition);
  }
  
  .footer .contact a:hover {
    color: var(--brand-white);
  }
  
  
  
  /* - Address - */
  .footer .address {
    color: var(--text-color);
  }
  
  
  
  /* --- Bottom --- */
  .footer .container-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    
    row-gap: 20px;
  }
  
  
  /* - Links - */
  .footer .links {
    display: flex;
    justify-content: center;
    align-items: center;
    
    column-gap: 26px;
    row-gap: 13px;
    padding-inline: 13px;
    padding-top: 5px;
    padding-bottom: 7px;
  }
  
  .footer .links a {
    color: var(--brand-white);
    
    transition: var(--custom-transition);
  }
  
  .footer .links a:hover {
    color: var(--text-color);
  }
  
  
  
  /* - Copyright info - */
  .footer .copyright {
    color: var(--text-color);
  }
  
  
  
  /* - HRH logo - */
  .footer .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer .footer-logo img {
    display: block;
    
    height: 58px;
    width: auto;
    
    transition: var(--custom-transition);
  }
  
  .footer .footer-logo:hover img {
    filter: brightness(200%);
  }
  
  
  
  /* - Sister sites - */
  .footer .sister-sites {
    display: flex;
    flex-direction: column;
    /*display: grid;
    grid-template-columns: repeat(6, auto);*/
    
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    
    width: 100%;
    /*column-gap: 26px;
    row-gap: 8px;*/
    padding-block: 30px 5px;
  /*    padding-inline: 13px;*/
  }

  .footer .sister-sites span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  
  /*.footer .sister-sites a:nth-child(1) {
    grid-column: span 6;
  }
  
  .footer .sister-sites a:nth-child(2),
  .footer .sister-sites a:nth-child(3),
  .footer .sister-sites a:nth-child(4),
  .footer .sister-sites a:nth-child(5),
  .footer .sister-sites a:nth-child(6),
  .footer .sister-sites a:nth-child(7) {
    grid-column: span 1;
  }*/
  
  .footer .sister-sites a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer .sister-sites a img {
    display: block;
    
    height: 39px;
    width: auto;
    opacity: 0.7;
    
    transition: var(--custom-transition);
  }
  
  .footer .sister-sites a:hover img {
    /*    filter: brightness(200%);*/
    opacity: 1;
  }
  
  /*.footer .sister-sites a:nth-child(8) img {
    height: 58px;
  }*/
  
}


/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 1499px) {
  
  .sticky {
    margin-left: 240px;
  }
  
  .layout-header-left > .header {
    min-width: 240px;
    padding-top: 30px;
    padding-inline: 10px;
    padding-bottom: 30px;
  }
  
  .header .logo img {
    height: 220px;
  }
  
}

@media screen and (max-width: 1310px) {
  
  .sticky {
    margin-left: 200px;
  }
  
  .layout-header-left > .header {
    position: fixed;
    
    min-width: 200px;
    padding-inline: 5px;
    z-index: 9999;
  }
  
  .header .logo img {
    height: 200px;
  }
  
  .header .backtosite a {
    min-width: auto;
  }
  
  .header .contact {
    max-width: 180px;
  }
  
  /*.footer .sister-sites {
    display: grid;
    grid-template-columns: repeat(3, auto);
    
    flex-wrap: wrap;
    justify-content: center;
    
    width: 100%;
    column-gap: 26px;
    row-gap: 8px;
    padding-block: 4px;
    padding-inline: 13px;
  }
  
  .footer .sister-sites a:nth-child(1) {
    grid-column: span 3;
  }*/
  
}

@media screen and (max-width: 1199px) {
  
  /* .sticky {
    margin-left: 175px;
  }
  
  .layout-header-left > .header {
    min-width: 175px;
    padding-inline: 0px;
  } */
  
  /*.header .logo img {
    height: 210px;
  }*/

  .sticky {
    margin-left: 0px;
  }
  
  .layout-header-left > .header {
    position: static;
    flex-direction: row;
    
    height: auto;
    width: 100%;
    min-width: auto;
    padding-block: 20px;
    padding-inline: 20px;
  }
  
  .header .container-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    
    width: 100%;
    justify-content: space-between;
  }
  
  .header .invisible-flex-item {
    display: none;
  }
  
  .header .logo img {
    height: 60px;
  }

  .header .logo img.img-large {
    display: none;
  }

  .header .logo img.img-small {
    display: block;
  }
  
  .header .backtosite {
    display: flex;
  }
  
  .header .container-bottom {
    display: none;
  }
  
  .footer .container-top {
    display: flex;
  }
  
}

@media screen and (max-width: 991px) {
  
  /*.sticky {
    margin-left: 0px;
  }
  
  .layout-header-left > .header {
    position: static;
    flex-direction: row;
    
    height: auto;
    width: 100%;
    min-width: auto;
    padding-block: 20px;
    padding-inline: 20px;
  }
  
  .header .container-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    
    width: 100%;
    justify-content: space-between;
  }
  
  .header .invisible-flex-item {
    display: flex;
  }
  
  .header .logo img {
    height: 200px;
  }
  
  .header .backtosite {
    display: flex;
  }
  
  .header .container-bottom {
    display: none;
  }
  
  .footer .container-top {
    display: flex;
  }*/
  
  .footer .sister-sites {
    display: flex;
  }
  
}



@media screen and (max-width: 739px) {
  
  .header .container-top {
    grid-template-columns: repeat(2, auto);
  }
  
  .header .invisible-flex-item {
    display: none;
  }

  .footer .links {
    width: 90%;
    flex-wrap: wrap;
  }

  .footer .sister-sites {
    gap: 15px;
  }

  .footer .sister-sites span {
    flex-direction: column;
    gap: 15px;
  }
  
}



@media screen and ( max-width: 499px ) {
  
  .header .container-top {
    display: flex;
    justify-content: center;
  }
  
  .header .backtosite {
    display: none;
  }
  
  /*.footer .links {
    flex-direction: column;
  }*/
  
}