/* Gallions Reach header rebuild */
.gr-header {
    padding-top: 0;
    border-bottom: 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
}

.gr-header__top {
    background: #FFCE66;
    padding: 6px 0;
    max-height: 48px;
    overflow: hidden;
    transition: max-height 250ms ease, padding 250ms ease, opacity 250ms ease;
}

.gr-header__top-content {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

.gr-header__social {
    color: #0d0d0d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 1;
}

.gr-header__social:hover {
    color: #0d0d0d;
    opacity: 0.75;
}

.gr-header__social i {
    display: block;
    line-height: 1;
}

.gr-header__social--facebook i {
    color: #000;
    font-size: 25px;
}

.gr-header__social--instagram i {
    color: #000;
    font-size: 25px;
}

.gr-header__satnav {
    color: #0d0d0d;
    font-family: 'Arboria', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-left: 5px;
}

.gr-header__main {
    min-height: 116px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 0 16px;
}

.gr-header__brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.92;
    width: 170px;
    max-width: 170px;
    flex: 0 0 170px;
}

.gr-header__brand-logo {
    max-width: 170px;
    width: 100%;
    height: auto;
    display: block;
    transition: max-width 250ms ease;
}

.gr-header__brand-main,
.gr-header__brand-sub {
    color: #686b72;
    font-family: 'Arboria', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.gr-header__brand-sub {
    margin-top: 1px;
}

.gr-header__brand-tag {
    color: #d48d2b;
    font-family: 'Arboria', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-top: 7px;
}

.gr-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.gr-header__nav .inner {
    display: flex;
    align-items: center;
}

.gr-header__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.gr-header__nav ul li {
    margin: 0;
    padding: 0;
}

.gr-header__nav ul li:first-child {
    margin-left: 0;
}

.gr-header__nav ul li a {
    color: #121212;
    font-family: 'Arboria', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
    display: inline-block;
    text-align: center;
}

.gr-header__nav ul li a::after {
    content: ".";
}

.gr-header__nav ul li.current-menu-item a,
.gr-header__nav ul li.current_page_item a,
.gr-header__nav ul li a:hover {
    color: #666a73;
}

.gr-header.skinnyHeader,
.gr-header.largeHeader {
    padding-top: 0;
}

.gr-header.skinnyHeader .gr-header__main {
    min-height: 86px;
    padding: 12px 0 10px;
}

.gr-header.skinnyHeader .gr-header__top {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.gr-header.skinnyHeader .gr-header__brand-logo {
    max-width: 120px;
}

.gr-header.skinnyHeader .gr-header__nav ul li a {
    font-size: 17px;
}

.gr-header.skinnyHeader .gr-header__nav {
    margin-top: 0;
}

.gr-header .burgerMenu {
    display: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

body main {
    padding-top: 168px;
}

@media (max-width: 1080px) {
    .gr-header__main {
        min-height: 102px;
        padding: 16px 0 12px;
    }

    .gr-header__brand {
        width: 150px;
        max-width: 150px;
        flex: 0 0 150px;
    }

    .gr-header__brand-logo {
        max-width: 150px;
    }

    .gr-header__brand-main,
    .gr-header__brand-sub {
        font-size: 48px;
    }

    .gr-header__brand-tag {
        font-size: 19px;
    }

    .gr-header__nav ul {
        gap: 16px;
    }

    .gr-header__nav ul li a {
        font-size: 16px;
    }

    body main {
        padding-top: 154px;
    }
}

@media (max-width: 840px) {
    .gr-header__top-content {
        min-height: 30px;
    }

    .gr-header__main {
        min-height: 94px;
        padding: 15px 0 14px;
        align-items: center;
    }

    .gr-header__brand-main,
    .gr-header__brand-sub {
        font-size: 32px;
    }

    .gr-header__brand-tag {
        font-size: 14px;
        margin-top: 4px;
    }

    .gr-header .burgerMenu {
        display: block;
        width: 36px;
        height: 36px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 999;
    }

    .gr-header .burgerMenu .inner {
        height: 100%;
        position: relative;
        display: block;
    }

    .gr-header .burgerMenu .inner span {
        position: absolute;
        left: 4px;
        right: 4px;
        height: 2px;
        background-color: #131313;
        transition: all 300ms ease-in-out;
        opacity: 1;
    }

    .gr-header .burgerMenu .inner span:nth-child(1) {
        top: 10px;
    }

    .gr-header .burgerMenu .inner span:nth-child(2) {
        top: 17px;
    }

    .gr-header .burgerMenu .inner span:nth-child(3) {
        top: 24px;
    }

    .gr-header .burgerMenu.activeMenu .inner span {
        background-color: #fff;
    }

    .gr-header .burgerMenu.activeMenu .inner span:nth-child(1) {
        top: 17px;
        transform: rotate(45deg);
    }

    .gr-header .burgerMenu.activeMenu .inner span:nth-child(2) {
        opacity: 0;
    }

    .gr-header .burgerMenu.activeMenu .inner span:nth-child(3) {
        top: 17px;
        transform: rotate(-45deg);
    }

    .gr-header__nav {
        position: fixed;
        top: 30px;
        right: -100%;
        width: min(86vw, 360px);
        height: calc(100vh - 30px);
        background-color: rgba(28, 34, 40, 0.96);
        transition: right 300ms ease-in-out;
        margin-left: 0;
        z-index: 900;
    }

    .gr-header__nav.activeMenu {
        right: 0;
    }

    .gr-header__nav .inner {
        display: flex;
        align-items: flex-start;
        height: 100%;
        padding-top: 36px;
    }

    .gr-header__nav ul {
        display: block;
        width: 100%;
        padding: 0 24px;
    }

    .gr-header__nav ul li + li {
        margin-top: 6px;
    }

    .gr-header__nav ul li a {
        color: #fff;
        font-size: 40px;
        padding: 6px 0;
    }

    .gr-header__nav ul li a::after {
        display: none;
    }

    body main {
        padding-top: 124px;
    }
}

@media (max-width: 540px) {
    .gr-header__satnav {
        font-size: 13px;
    }

    .gr-header__nav {
        width: 100%;
    }

    .gr-header__brand-main,
    .gr-header__brand-sub {
        font-size: 28px;
    }
}

/* Gallions Reach footer rebuild */
.gr-footer-strip {
    background: #f4f4f4;
    padding: 18px 0 15px;
}

.gr-footer-strip__inner {
    display: block;
}

.gr-footer-strip__item {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-footer-strip__item img {
    display: block;
    max-height: 126px;
    width: auto;
    margin: 0 auto;
    max-width: 100%;
}

.gr-footer-strip .owl-carousel .owl-item img {
    display: block;
    max-height: 90px;
    width: auto;
    padding: 0 10px;
}

.gr-footer-strip .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.gr-footer-strip .owl-dots .owl-dot span {
    background: rgba(104, 112, 135, 0.35);
    width: 9px;
    height: 9px;
    margin: 4px;
}

.gr-footer-strip .owl-dots .owl-dot.active span {
    background: #687087;
}

.gr-footer {
    background: #596476;
    padding: 40px 0;
}

.gr-footer__inner {
    display: grid;
    grid-template-columns: 0.65fr 0.6fr 2.2fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.gr-footer__col h3 {
    color: #fff;
    font-family: 'Arboria', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.1;
}

.gr-footer__col p,
.gr-footer__col li,
.gr-footer__col a {
    color: #fff;
    font-family: 'Arboria', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

.gr-footer__nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gr-footer__nav li {
    margin: 0 0 3px;
    padding: 0;
}

.gr-footer__nav a {
    font-size: 15px;
    text-decoration: none;
}

.gr-footer__logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.gr-footer__col--social {
    display: none;
}

.gr-footer__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gr-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    line-height: 1;
}

.gr-footer__social i {
    font-size: 34px;
    line-height: 1;
}

.gr-footer__col--logo {
    justify-self: end;
    align-self: start;
}

@media (max-width: 980px) {
    .gr-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .gr-footer__col--logo {
        justify-self: start;
    }
}

@media (min-width: 841px) and (max-width: 1023px) {
    .gr-footer__inner {
        grid-template-columns: 0.65fr 0.6fr 2.2fr 0.9fr;
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .gr-footer-strip {
        padding: 24px 0;
    }

    .gr-footer-strip__item {
        min-height: 88px;
    }

    .gr-footer-strip__item img {
        max-height: 42px;
    }

    .gr-footer__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gr-footer__col--about,
    .gr-footer__col--logo {
        grid-column: span 1;
    }

    .gr-footer__logo {
        max-width: 180px;
    }
}

@media (max-width: 840px) {
    .gr-footer__inner {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        gap: 20px;
        align-items: start;
    }

    .gr-footer__col--nav,
    .gr-footer__col--visit {
        grid-column: span 3;
    }

    .gr-footer__col--about {
        grid-column: span 6;
    }

    .gr-footer__col--social {
        display: block;
        grid-column: span 3;
    }

    .gr-footer__col--logo {
        grid-column: span 9;
        justify-self: end;
        align-self: center;
    }

    .gr-footer__logo {
        max-width: 180px;
    }

    .gr-footer__col h3 {
        font-size: 21px;
    }
}

@media (max-width: 1200px) {
    .gr-footer-strip .container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .gr-footer__inner {
        grid-template-columns: 3fr 7fr;
        gap: 20px;
        width: 100%;
    }

    .gr-footer__col {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        text-align: center;
        justify-self: center;
    }

    .gr-footer__col--social,
    .gr-footer__col--logo {
        grid-column: span 1;
        align-self: center;
    }

    .gr-footer__col--social {
        justify-self: start;
        text-align: left;
    }

    .gr-footer__col--logo {
        justify-self: end;
        text-align: right;
    }

    .gr-footer__logo {
        margin: 0 0 0 auto;
    }

    .gr-footer__socials {
        justify-content: flex-start;
    }

    .gr-footer__col p,
    .gr-footer__col a {
        overflow-wrap: anywhere;
    }
}
