/*-----------------------------------------------------------------------
   Fonts
-----------------------------------------------------------------------*/

/* @import url("https://use.typekit.net/vql0cno.css"); */

@font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Soft";
    src: url("../fonts/ProximaSoft-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Semibold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Proxima Nova";
    src: url("../fonts/ProximaNova-Regular.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

/*-----------------------------------------------------------------------
   Variables
-----------------------------------------------------------------------*/

:root {
    --admin-height: 32px;
    --header-height: 142px;

    --font-primary: "Proxima Soft", sans-serif;
    --font-secondary: "Proxima Nova", sans-serif;

    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    --cream: #f6f4ee;
    --cream-rgb: 246, 244, 238;

    --beige: #ece8dc;
    --beige-rgb: 236, 232, 220;

    --grey: #aaaaaa;
    --grey-rgb: 170, 170, 170;

    --slate: #373d48;
    --slate-rgb: 55, 61, 72;

    --dark-purple: #271032;
    --dark-purple-rgb: 39, 16, 50;

    --purple: #653165;
    --purple-rgb: 101, 49, 101;

    --orange: #ff9900;
    --orange-rgb: 255, 153, 0;

    --red: #ff1414;
    --red-rgb: 255, 20, 20;

    --border-radius-sm: 5px;
    --border-radius-md: 15px;
    --border-radius-lg: 30px;

    --container-xs: 720px;
    --container-sm: 970px;
    --container-md: 1080px;
    --container-lg: 1320px;

    --box-shadow: 0 0 5px rgba(var(--slate-rgb), 10%);

    --transition: 0.5s ease;
}

/* Responsive */

@media (max-width: 782px) {
    :root {
        --admin-height: 46px;
    }
}

@media (max-width: 990px) {
    :root {
        /* --header-height: 70px; */
    }
}

/*-----------------------------------------------------------------------
   Base
-----------------------------------------------------------------------*/

.rothwell-theme *,
.rothwell-theme *:before,
.rothwell-theme *:after {
    box-sizing: border-box;
}

.rothwell-theme * {
    scroll-margin-top: calc(var(--header-height));
}

body.rothwell-theme,
.editor-styles-wrapper {
    font-optical-sizing: auto;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    color: var(--slate);
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    line-height: 1.5;
    font-weight: 400;
}

body.rothwell-theme,
.editor-styles-wrapper,
.site-responsive-menu,
.site-main {
    background: var(--white);
}

.site-main {
    position: relative;
    transition: var(--transition) all;
    z-index: 1;
}

/*-----------------------------------------------------------------------
   Admin Bar
-----------------------------------------------------------------------*/

body.rothwell-theme {
    padding-top: var(--header-height) !important;
}

body.rothwell-theme.admin-bar {
    /* padding-top: calc(var(--header-height) + var(--admin-height)) !important; */
}

#wpadminbar {
    top: 0;
    position: fixed;
    z-index: 20000000000000001;
}

#wpadminbar ul li.admin-bar-search {
    display: none !important;
}

/*-----------------------------------------------------------------------
   Layouts
-----------------------------------------------------------------------*/

.rothwell-theme *[class*="container-"],
.rothwell-theme *[class*="section-"],
.rothwell-theme *[class*="block-"],
.rothwell-theme *[class*="entry-"],
.rothwell-theme .relative {
    position: relative;
}

.rothwell-theme .absolute {
    position: absolute;
}

/* Flex Layout */

.rothwell-theme .flex-layout,
.rothwell-theme .flex-align-start,
.rothwell-theme .flex-align-center,
.rothwell-theme .flex-align-end,
.rothwell-theme .flex-justify-start,
.rothwell-theme .flex-justify-center,
.rothwell-theme .flex-justify-end,
.rothwell-theme .flex-justify-between {
    display: flex;
    flex-wrap: wrap;
}

.rothwell-theme .flex-align-start {
    align-items: flex-start;
}

.rothwell-theme .flex-align-center {
    align-items: center;
}

.rothwell-theme .flex-align-end {
    align-items: flex-end;
}

.rothwell-theme .flex-justify-start {
    justify-content: flex-start;
}

.rothwell-theme .flex-justify-center {
    justify-content: center;
}

.rothwell-theme .flex-justify-end {
    justify-content: flex-end;
}

.rothwell-theme .flex-justify-between {
    justify-content: space-between;
}

.rothwell-theme .flex-row-reverse {
    flex-direction: row-reverse;
}

.rothwell-theme .flex-column-reverse {
    flex-direction: column-reverse;
}

.rothwell-theme .flex-nowrap {
    flex-wrap: nowrap;
}

.rothwell-theme .flex-gap {
    gap: 15px;
}

/* Containers */

.rothwell-theme .container,
.rothwell-theme .container-xl,
.rothwell-theme .container-lg,
.rothwell-theme .container-md,
.rothwell-theme .container-sm,
.rothwell-theme .container-xs {
    z-index: 99;
    margin: auto;
    width: calc(100% - 60px);
}

.rothwell-theme .container,
.rothwell-theme .container-xl {
    width: 100%;
}

.rothwell-theme .container-lg {
    max-width: var(--container-lg);
}

.rothwell-theme .container-md {
    max-width: var(--container-md);
}

.rothwell-theme .container-sm {
    max-width: var(--container-sm);
}

.rothwell-theme .container-xs {
    max-width: var(--container-xs);
}

/* Padding */

.rothwell-theme .padding-lg,
.rothwell-theme .padding-lg-top {
    padding-top: 80px;
}

.rothwell-theme .padding-lg,
.rothwell-theme .padding-lg-bot {
    padding-bottom: 80px;
}

.rothwell-theme .padding-md,
.rothwell-theme .padding-md-top {
    padding-top: 40px;
}

.rothwell-theme .padding-md,
.rothwell-theme .padding-md-bot {
    padding-bottom: 40px;
}

.rothwell-theme .padding-sm,
.rothwell-theme .padding-sm-top {
    padding-top: 20px;
}

.rothwell-theme .padding-sm,
.rothwell-theme .padding-sm-bot {
    padding-bottom: 20px;
}

/* Grid Layout */

.rothwell-theme .grid-col-1,
.rothwell-theme .grid-col-2,
.rothwell-theme .grid-col-3,
.rothwell-theme .grid-col-4,
.rothwell-theme .grid-col-5,
.rothwell-theme .grid-col-6 {
    display: grid;
    gap: 20px;
}

.rothwell-theme .grid-col-2 {
    gap: 80px;
}

.rothwell-theme .grid-col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.rothwell-theme .grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.rothwell-theme .grid-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.rothwell-theme .grid-col-5 {
    grid-template-columns: repeat(5, 1fr);
}

.rothwell-theme .grid-col-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Visibility */

.rothwell-theme .desktop-only {
    display: block;
}

.rothwell-theme .mobile-only {
    display: none;
}

/* Block Settings */

.rothwell-theme .block-setting-padding {
    padding-top: var(--block-padding-top);
    padding-bottom: var(--block-padding-bottom);
}

.rothwell-theme .block-setting-background-colour {
    background-color: var(--block-background-colour);
}

/* Responsive */

@media (max-width: 1200px) {
    .rothwell-theme .grid-col-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .rothwell-theme .grid-col-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 860px) {
    .rothwell-theme .padding-lg,
    .rothwell-theme .padding-lg-top {
        padding-top: 40px;
    }

    .rothwell-theme .padding-lg,
    .rothwell-theme .padding-lg-bot {
        padding-bottom: 40px;
    }

    .rothwell-theme .grid-col-2 {
        gap: 40px;
    }

    .rothwell-theme .grid-col-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .rothwell-theme .grid-col-3,
    .rothwell-theme .grid-col-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .rothwell-theme .grid-col-5,
    .rothwell-theme .grid-col-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .rothwell-theme .block-setting-padding {
        padding-top: calc(var(--block-padding-top) / 1.5);
        padding-bottom: calc(var(--block-padding-bottom) / 1.5);
    }
}

@media (max-width: 770px) {
    .rothwell-theme .container-lg,
    .rothwell-theme .container-md,
    .rothwell-theme .container-sm,
    .rothwell-theme .container-xs {
        width: calc(100% - 30px);
    }

    .rothwell-theme .grid-col-4,
    .rothwell-theme .grid-col-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .rothwell-theme .desktop-only {
        display: none;
    }

    .rothwell-theme .mobile-only {
        display: block;
    }
}

@media (max-width: 640px) {
    .rothwell-theme .grid-col-3,
    .rothwell-theme .grid-col-4 {
        grid-template-columns: repeat(1, 1fr);
    }

    .rothwell-theme .grid-col-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*-----------------------------------------------------------------------
   Typography
-----------------------------------------------------------------------*/

.rothwell-theme h1,
.rothwell-theme h1 *,
.rothwell-theme .h1,
.rothwell-theme .h1 *,
.rothwell-theme h2,
.rothwell-theme h2 *,
.rothwell-theme .h2,
.rothwell-theme .h2 *,
.rothwell-theme h3,
.rothwell-theme h3 *,
.rothwell-theme .h3,
.rothwell-theme .h3 *,
.rothwell-theme h4,
.rothwell-theme h4 *,
.rothwell-theme .h4,
.rothwell-theme .h4 *,
.rothwell-theme h5,
.rothwell-theme h5 *,
.rothwell-theme .h5,
.rothwell-theme .h5 *,
.rothwell-theme h6,
.rothwell-theme h6 *,
.rothwell-theme .h6,
.rothwell-theme .h6 *,
.rothwell-theme ul,
.rothwell-theme ol,
.rothwell-theme li,
.rothwell-theme p,
.rothwell-theme a {
    margin: 0;
    padding: 0;
    color: var(--slate);
    font-weight: 400;
    text-wrap: wrap;
    word-wrap: break-word;
}

.rothwell-theme h1,
.rothwell-theme h1 *,
.rothwell-theme .h1,
.rothwell-theme .h1 *,
.rothwell-theme h2,
.rothwell-theme h2 *,
.rothwell-theme .h2,
.rothwell-theme .h2 *,
.rothwell-theme h3,
.rothwell-theme h3 *,
.rothwell-theme .h3,
.rothwell-theme .h3 *,
.rothwell-theme h4,
.rothwell-theme h4 *,
.rothwell-theme .h4,
.rothwell-theme .h4 *,
.rothwell-theme h5,
.rothwell-theme h5 *,
.rothwell-theme .h5,
.rothwell-theme .h5 * {
    font-weight: 700;
    color: var(--purple);
}

.rothwell-theme h6,
.rothwell-theme h6 *,
.rothwell-theme .h6,
.rothwell-theme .h6 *,
.rothwell-theme ul,
.rothwell-theme ol,
.rothwell-theme li,
.rothwell-theme p {
    font-family: var(--font-secondary);
}

.rothwell-theme h1,
.rothwell-theme h1 *,
.rothwell-theme .h1,
.rothwell-theme .h1 * {
    font-size: 65px;
    line-height: 65px;
}

.rothwell-theme h2,
.rothwell-theme h2 *,
.rothwell-theme .h2,
.rothwell-theme .h2 * {
    font-size: 60px;
    line-height: 60px;
}

.rothwell-theme h3,
.rothwell-theme h3 *,
.rothwell-theme .h3,
.rothwell-theme .h3 * {
    font-size: 32px;
    line-height: 32px;
}

.rothwell-theme h4,
.rothwell-theme h4 *,
.rothwell-theme .h4,
.rothwell-theme .h4 * {
    font-size: 24px;
    line-height: 26px;
}

.rothwell-theme h5,
.rothwell-theme h5 *,
.rothwell-theme .h5,
.rothwell-theme .h5 * {
    font-size: 18px;
    line-height: 20px;
}

.rothwell-theme h6,
.rothwell-theme h6 *,
.rothwell-theme .h6,
.rothwell-theme .h6 * {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.rothwell-theme p,
.rothwell-theme li {
    font-weight: 400;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.rothwell-theme strong,
.rothwell-theme strong * {
    font-weight: 600 !important;
}

.rothwell-theme a {
    text-underline-offset: 3px !important;
    text-decoration-thickness: 1px !important;
}

.rothwell-theme a:hover,
.rothwell-theme a:focus {
    color: inherit;
}

.rothwell-theme ul,
.rothwell-theme ol,
.rothwell-theme li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rothwell-theme code {
    padding: 10px;
    font-size: 14px;
    color: var(--white);
    background: var(--slate);
}

.rothwell-theme mark {
    background: none;
}

.rothwell-theme hr {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--slate);
}

/* Responsive */

@media (max-width: 860px) {
    .rothwell-theme h1,
    .rothwell-theme h1 *,
    .rothwell-theme .h1,
    .rothwell-theme .h1 * {
        font-size: 50px;
        line-height: 52px;
    }
}

@media (max-width: 770px) {
    .anotherlevel-theme h1 br,
    .anotherlevel-theme .h1 br,
    .anotherlevel-theme h2 br,
    .anotherlevel-theme .h2 br,
    .anotherlevel-theme h3 br,
    .anotherlevel-theme .h3 br,
    .anotherlevel-theme h4 br,
    .anotherlevel-theme .h4 br,
    .anotherlevel-theme h5 br,
    .anotherlevel-theme .h5 br {
        display: none;
    }
}

/*-----------------------------------------------------------------------
   Content Styling
-----------------------------------------------------------------------*/

/* Sizes */

.rothwell-theme .text-small,
.rothwell-theme .text-small * {
    font-size: 14px !important;
}

.rothwell-theme .text-sub,
.rothwell-theme .text-sub * {
    font-size: 12px !important;
}

/* Alignment */

.rothwell-theme .text-left {
    text-align: left;
}

.rothwell-theme .text-center {
    text-align: center;
}

.rothwell-theme .text-right {
    text-align: right;
}

/* Colours */

.rothwell-theme .text-muted {
    opacity: 40%;
}

.rothwell-theme .text-white,
.rothwell-theme .text-white *:not(.button, button, .button *, button *, [class*="text-"], [style*="color"], .gform_validation_errors *) {
    color: var(--white) !important;
    border-color: var(--white);
}

/*-----------------------------------------------------------------------
   WYSIWYG Content
-----------------------------------------------------------------------*/

.wysiwyg-content {
    width: 100%;
    position: relative;
    z-index: 99;
}

.wysiwyg-content h1:not(:last-child),
.wysiwyg-content h2:not(:last-child),
.wysiwyg-content h3:not(:last-child),
.wysiwyg-content h4:not(:last-child),
.wysiwyg-content h5:not(:last-child),
.wysiwyg-content h6:not(:last-child),
.wysiwyg-content ul:not(:last-child),
.wysiwyg-content ol:not(:last-child),
.wysiwyg-content p:not(:last-child),
.wysiwyg-content img:not(:last-child),
.wysiwyg-content table:not(:last-child),
.wysiwyg-content code:not(:last-child),
.wysiwyg-content blockquote:not(:last-child) {
    margin: 0 0 15px !important;
}

.wysiwyg-content li:not(:last-child) {
    margin: 0 0 5px !important;
}

/* Links */

.wysiwyg-content h5 a,
.wysiwyg-content p a,
.wysiwyg-content li a,
.wysiwyg-content span a {
    text-decoration: underline;
}

/* Lists */

.wysiwyg-content ul,
.wysiwyg-content ol {
    display: inline-block;
}

.wysiwyg-content li {
    position: relative;
    text-align: left;
    padding: 0 0 0 20px;
}

.wysiwyg-content li:not(:last-child) {
    margin: 0 0 5px !important;
}

.wysiwyg-content ul li:before {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: 3px;
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background: var(--slate);
}

.wysiwyg-content ul.list-style-checkmark li {
    padding: 0 0 0 25px;
}

.wysiwyg-content ul.list-style-checkmark li:before {
    top: 5px;
    width: 14px;
    height: 14px;
    background: url(../img/icon-checkmark.svg) 50% no-repeat;
    background-size: 14px;
}

.wysiwyg-content ol {
    counter-reset: item;
    list-style-position: outside;
}

.wysiwyg-content ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Blockquote */

.wysiwyg-content blockquote {
    margin-left: 0;
    margin-right: 0;
    padding: 20px 0 20px 20px;
    border-left: 1px solid var(--slate);
}

/* Hr */

.wysiwyg-content hr {
    margin: 30px 0;
}

/* Images */

.wysiwyg-content img {
    display: block;
    max-width: 100% !important;
    height: auto !important;
}

.wysiwyg-content img:not(:first-child) {
    margin-top: 40px !important;
}

.wysiwyg-content img:not(:last-child) {
    margin-bottom: 40px !important;
}

.wysiwyg-content img.aligncenter {
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
}

.wysiwyg-content img.alignleft {
    float: left;
}

.wysiwyg-content img.alignright {
    float: right;
}

.wysiwyg-content img.size-full {
    width: 100% !important;
}

/*-----------------------------------------------------------------------
   Global Forms
-----------------------------------------------------------------------*/

.rothwell-theme form *[disabled] {
    opacity: 50%;
    pointer-events: none;
}

/* Labels */

.rothwell-theme label,
.rothwell-theme legend {
    display: block;
    margin: 5px 0;
    color: var(--slate);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.rothwell-theme label a,
.rothwell-theme legend a {
    color: var(--slate) !important;
    text-decoration: underline;
}

.rothwell-theme label .required,
.rothwell-theme .gravity-theme form label.gfield_required {
    font-size: inherit;
    color: var(--red);
}

/* Basic Fields */

.rothwell-theme input:not([type="button"], [type="submit"]),
.rothwell-theme select,
.rothwell-theme textarea {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 100%;
    height: auto;
    padding: 8px 14px;
    color: var(--slate);
    font-family: var(--font-secondary);
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: var(--border-radius-sm);
    transition: none;
    resize: none;
}

.rothwell-theme textarea {
    min-height: 100px;
    max-height: 200px;
}

.rothwell-theme ::placeholder,
.rothwell-theme ::-ms-input-placeholder,
.rothwell-theme ::-webkit-input-placeholder {
    color: var(--slate);
}

/* Select */

.rothwell-theme select:not([multiple="multiple"]) {
    padding-right: 45px;
}

.rothwell-theme select:not([multiple="multiple"]),
.rothwell-theme .select2-container .select2-selection {
    background: url(../img/icon-chevron-down.svg) no-repeat;
    background-size: 12px;
    background-position: center right 14px;
    cursor: pointer;
}

.rothwell-theme .select2,
.rothwell-theme .select2 * {
    margin: 0;
    padding: 0;
}

.rothwell-theme .select2-container .select2-selection,
.rothwell-theme .select2-container .select2-selection .selection__rendered {
    line-height: 20px;
}

.rothwell-theme .select2-container .select2-selection {
    margin: 0;
    outline: 0;
    display: block;
    height: auto;
    padding: 14px 16px;
    border: 1px solid var(--grey);
    background: transparent;
    color: var(--slate);
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.rothwell-theme .select2-selection__rendered,
.rothwell-theme .select2-selection__placeholder {
    color: var(--slate);
}

.rothwell-theme .select2-dropdown {
    top: 0;
    border: 1px solid var(--slate);
    background: var(--white);
}

.rothwell-theme .select2-dropdown .select2-search,
.rothwell-theme .select2-dropdown .select2-results__option {
    padding: 5px;
}

.rothwell-theme .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    background: var(--slate);
}

.rothwell-theme .select2-container .select2-selection__arrow {
    display: none;
}

/* Checkbox & Radio */

.rothwell-theme input[type="checkbox"],
.rothwell-theme input[type="radio"] {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 10px 0 0;
    min-height: 25px !important;
    min-width: 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
    border: 1px solid var(--grey);
    border-radius: 3px;
    background: var(--white);
    box-shadow: none;
    transition: none;
    cursor: pointer;
}

.rothwell-theme input[type="checkbox"],
.rothwell-theme input[type="radio"],
.rothwell-theme input[type="checkbox"] + label,
.rothwell-theme input[type="radio"] + label {
    display: inline-block;
    vertical-align: top;
}

.rothwell-theme input[type="checkbox"] + label,
.rothwell-theme input[type="radio"] + label {
    margin: 3px 0 !important;
    font-size: 16px !important;
    line-height: 20px;
    width: calc(100% - 40px);
}

.rothwell-theme input[type="radio"] {
    border-radius: 25px !important;
}

.rothwell-theme input[type="checkbox"]:checked {
    border-color: var(--slate);
    background: var(--slate) url(../img/icon-checkbox.svg) 50% no-repeat;
    background-size: 16px;
}

.rothwell-theme input[type="radio"]:checked {
    border: 6px solid var(--slate);
}

.rothwell-theme input[type="radio"]:before,
.rothwell-theme input[type="checkbox"]:before {
    display: none !important;
}

/*-----------------------------------------------------------------------
   Gravity Forms
-----------------------------------------------------------------------*/

.gravity-theme form .gform_body,
.gravity-theme form .gform_fields,
.gravity-theme form .gform_footer {
    margin: 0 !important;
}

.gravity-theme form .gform_fields {
    gap: 10px 20px !important;
}

.gravity-theme form .ginput_complex {
    gap: 0 !important;
}

.gravity-theme .gform_required_legend {
    display: none !important;
}

/* Validation */

.gravity-theme form .gform_ajax_spinner,
.gravity-theme form .gform-loader {
    width: 12px;
    height: 12px;
    margin: 0 0 0 20px;
}

.gravity-theme .gform_validation_errors {
    outline: 0 !important;
    box-shadow: none !important;
    margin-bottom: 20px;
}

.gravity-theme form .gfield .gfield_validation_message {
    padding: 0;
    border: 0;
    background: transparent;
}

.gravity-theme .gform_validation_errors * {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--red);
}

/* Labels */

.gravity-theme form .ginput_preview *,
.gravity-theme form .gform-field-label,
.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    margin: 5px 0;
    font-size: 12px !important;
    font-weight: 400 !important;
    color: var(--slate);
}

.gravity-theme form .gfield_description,
.gravity-theme form .gfield_list_group_item:before,
.gravity-theme form .gfield_list .gform-field-label,
.gravity-theme form .gform-field-label--type-sub {
    padding: 0 !important;
    font-weight: 300;
    color: rgba(var(--slate-rgb), 50%);
}

/* Checkbox & Radio */

.gravity-theme form .gfield--type-choice .gchoice {
    margin: 10px 0 !important;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"],
.gravity-theme form .gfield--type-choice input[type="radio"],
.gravity-theme form .gfield--type-consent input[type="checkbox"] {
    display: inline-block;
}

.gravity-theme form .gfield--type-choice input[type="checkbox"] + label,
.gravity-theme form .gfield--type-consent input[type="checkbox"] + label {
    display: inline-block;
    margin: 3px 0 !important;
    width: calc(100% - 40px) !important;
    vertical-align: top !important;
}

/* Date & Time */

.gravity-theme form .gfield--type-date .ginput_container,
.gravity-theme form .gfield--type-time .ginput_container {
    flex-basis: auto !important;
    max-width: 100% !important;
    flex: 1 !important;
}

.gravity-theme form .hour_minute_colon {
    line-height: 42px !important;
}

/* List */

.gravity-theme form .gfield_list .gfield_list_icons button {
    min-width: 16px !important;
    min-height: 16px !important;
    width: 16px !important;
    height: 16px !important;
}

/* File Upload */

.gravity-theme form .gfield--type-fileupload .gform_drop_area {
    border-color: var(--slate) !important;
}

.gravity-theme form .gfield--type-fileupload .gform_drop_area .gform_button_select_files {
    margin: auto !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview {
    display: flex !important;
    align-items: center;
    margin: 10px 0 0 !important;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview * {
    order: 9;
    line-height: 18px;
}

.gravity-theme form .gfield--type-fileupload .ginput_preview .gform_delete_file {
    order: 1;
    margin: 0;
    padding: 0;
    min-width: 0 !important;
    text-decoration: none;
}

/* Product */

.gravity-theme form .ginput_product_price_wrapper {
    width: 100%;
    margin: 0 0 10px;
}

/* Progress Bar */

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar {
    margin: 0 0 20px !important;
}

.gravity-theme form .gf_progressbar_wrapper .gf_progressbar_title {
    font-size: 12px !important;
    margin: 0 0 10px !important;
}

.gravity-theme form .gf_progressbar,
.gravity-theme form .gf_progressbar_wrapper,
.gravity-theme form .gf_progressbar_percentage {
    border-radius: 20px !important;
}

.gravity-theme form .gf_progressbar {
    background: rgba(var(--slate-rgb), 5%) !important;
}

.gravity-theme form .gf_progressbar_percentage {
    background: var(--slate) !important;
}

/* Page Footer */

.gravity-theme form .gform-page-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gravity-theme form .gform-page-footer .button {
    margin: 0 !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:not(:hover, :focus),
.gravity-theme form .gform-page-footer .gform_next_button:not(:hover, :focus) {
    color: var(--slate) !important;
}

.gravity-theme form .gform-page-footer .gform_previous_button:hover,
.gravity-theme form .gform-page-footer .gform_next_button :hover {
    color: var(--white) !important;
    background: var(--slate) !important;
}

/*-----------------------------------------------------------------------
   Buttons
-----------------------------------------------------------------------*/

.rothwell-theme .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.rothwell-theme .button svg {
    width: 16px;
    height: 16px;
    color: var(--white);
    margin: 0 0 2px;
}

/* Default Styles */

.rothwell-theme button,
.rothwell-theme button:hover,
.rothwell-theme button:focus,
.rothwell-theme .button,
.rothwell-theme .button:hover,
.rothwell-theme .button:focus {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    outline: 0;
    width: auto;
    height: auto;
    min-width: 120px;
    min-height: 0;
    padding: 14px 28px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    background: var(--orange);
    box-shadow: 0 0 0 rgba(var(--orange-rgb), 20%);
    border: 0 !important;
    border-radius: var(--border-radius-sm) !important;
    transition: var(--transition) all;
    cursor: pointer;
}

/* Hover/Focus */

.rothwell-theme button:hover,
.rothwell-theme button:focus,
.rothwell-theme .button:hover,
.rothwell-theme .button:focus {
    outline: 0;
    box-shadow: 10px 10px 0 rgba(var(--orange-rgb), 20%);
}

.rothwell-theme .button:hover svg,
.rothwell-theme .button:focus svg {
    transform: translateX(5px);
}

/* Responsive */

@media (max-width: 640px) {
    .rothwell-theme .button-group {
        width: 100%;
    }
}

/*-----------------------------------------------------------------------
   Site Logo
-----------------------------------------------------------------------*/

.site-logo,
.site-logo img,
.site-logo svg {
    display: block;
    max-width: 220px;
    max-height: 56px;
    width: auto;
    height: auto;
    z-index: 20000;
    transition: none;
}

/*-----------------------------------------------------------------------
   Site Header
-----------------------------------------------------------------------*/

.site-header {
    top: 0;
    width: 100%;
    display: block;
    position: fixed;
    background: var(--white);
    z-index: 2000000002;
}

body.rothwell-theme.admin-bar .site-header {
    top: var(--admin-height);
}

.site-header {
    height: var(--header-height);
}

/* Top Menu */

.site-header .top-menu {
    padding: 5px 0;
    background: var(--cream);
}

.site-header form.search-form {
    position: relative;
    max-width: 250px;
}

.site-header form.search-form *[type="submit"] {
    font-size: 0 !important;
    padding: 0 !important;
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    mask-image: url(../img/icon-search.svg);
    mask-size: 20px;
    mask-position: center;
    mask-repeat: no-repeat;
    background: var(--purple);
    position: absolute;
    right: 0;
    top: 0;
}

/* Main Menu */

.site-header .main-menu {
    padding: 20px 0;
}

.site-header .main-menu ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-header .main-menu ul li a {
    position: relative;
    display: block;
    padding: 10px;
    color: var(--purple);
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition) all;
}

.site-header .main-menu ul > li.current-menu-item > a,
.site-header .main-menu ul > li.current-menu-parent > a,
.site-header .main-menu ul li a:hover,
.site-header .main-menu ul li a:focus {
    color: var(--orange);
}

.site-header .main-menu ul.sub-menu {
    display: none !important;
}

/* Hamburger */

.site-header .icon-hamburger {
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.site-header .icon-hamburger span,
.site-header .icon-hamburger span:before,
.site-header .icon-hamburger span:after {
    display: block;
    position: absolute;
    left: 0;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: var(--slate);
    transition: background 0s 0.3s;
}

.site-header .icon-hamburger span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-header .icon-hamburger span:before {
    content: "";
    top: -10px;
    transition-property: top, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.site-header .icon-hamburger span:after {
    content: "";
    bottom: -10px;
    transition-property: bottom, transform;
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

body.rothwell-theme.has-active-menu .site-header .icon-hamburger span {
    background: none;
}

body.rothwell-theme.has-active-menu .site-header .icon-hamburger span:before {
    top: 0;
    transform: rotate(45deg);
    transition-delay: 0s, 0.3s;
}

body.rothwell-theme.has-active-menu .site-header .icon-hamburger span:after {
    bottom: 0;
    transform: rotate(-45deg);
    transition-delay: 0s, 0.3s;
}

/* Responsive Menu */

.site-responsive-menu {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    top: var(--notice-height);
    overflow-y: auto;
    z-index: 0;
}

body.admin-bar .site-responsive-menu {
    top: calc(var(--header-height) + var(--admin-height));
}

.site-responsive-menu div[class*="container"] {
    width: 100%;
    opacity: 0;
    transition: var(--transition) all;
}

/* Responsive Menu: Menu */

.site-responsive-menu .main-menu li a {
    position: relative;
    display: block;
    padding: 20px;
    color: var(--purple);
    font-family: var(--font-secondary);
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition) all;
}

.site-responsive-menu .main-menu ul > li.current-menu-item > a,
.site-responsive-menu .main-menu ul > li.current-menu-parent > a,
.site-responsive-menu .main-menu ul li a:hover,
.site-responsive-menu .main-menu ul li a:focus {
    color: var(--orange);
}

/* Responsive */

@media (min-width: 920px) {
    .site-header .trigger-menu,
    .site-responsive-menu {
        display: none !important;
    }
}

@media (max-width: 990px) {
    .site-header .main-menu ul,
    .site-header .main-menu .button-group {
        display: none !important;
    }

    .site-header .trigger-menu {
        display: flex !important;
    }

    body.has-active-menu .site-main {
        transform: translateX(-100%);
    }

    body.has-active-menu .site-responsive-menu div[class*="container"] {
        opacity: 1;
    }
}

/*-----------------------------------------------------------------------
   Site Footer
-----------------------------------------------------------------------*/

.site-footer {
    background: var(--white);
}

.site-footer .footer-columns {
    gap: 20px 70px;
    padding: 60px 0;
}

.site-footer .footer-logo {
    flex: 1;
}

.site-footer .footer-menu,
.site-footer .footer-contact {
    max-width: 250px;
}

/* Contact */

.site-footer .footer-contact ul li {
    display: flex;
    gap: 10px;
}

.site-footer .footer-contact ul li svg {
    width: 15px;
    min-width: 15px;
    height: 15px;
    color: var(--purple);
    margin: 3px 0;
}

/* Menu */

.site-footer ul li:not(:last-child) {
    margin: 0 0 15px;
}

.site-footer ul li,
.site-footer ul li a {
    display: block;
    color: var(--purple);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition) all;
}

.site-footer ul li a:hover,
.site-footer ul li a:focus {
    color: var(--orange);
}

.site-footer ul.sub-menu {
    display: none;
}

/* Social Media */

.site-footer .social-icons {
    margin-top: 40px;
}

.site-footer .social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    background: var(--orange);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.site-footer .social-icons a svg {
    width: 16px;
    height: 16px;
    color: var(--white) !important;
}

.site-footer .social-icons a:hover {
    background: var(--purple);
}

/* Copyright */

.site-footer .footer-copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(var(--grey-rgb), 40%);
    gap: 5px 10px;
}

.site-footer .footer-copyright a,
.site-footer .footer-copyright p,
.site-footer .footer-copyright li {
    font-size: 14px !important;
    line-height: 18px !important;
    color: var(--grey);
}

.site-footer .footer-copyright p.policy-links span {
    margin: auto 5px;
}

/* Responsive */

@media (max-width: 860px) {
    .site-footer .footer-columns,
    .site-footer .footer-copyright {
        flex-direction: column;
    }

    .site-footer .footer-columns {
        padding: 30px 0;
    }
}

/*-----------------------------------------------------------------------
   Media
-----------------------------------------------------------------------*/

.rothwell-theme img {
    max-width: 100%;
    height: auto;
    display: block;
}

.rothwell-theme svg {
    transition: var(--transition) all;
}

.rothwell-theme .image-square,
.rothwell-theme .image-portrait,
.rothwell-theme .image-landscape {
    position: relative;
    object-fit: cover;
    width: 100%;
}

.rothwell-theme .image-square {
    aspect-ratio: 1 / 1;
}

.rothwell-theme .image-portrait {
    aspect-ratio: 2 / 3;
}

.rothwell-theme .image-landscape {
    aspect-ratio: 3 / 2;
}

/* Background Elements */

.rothwell-theme .background-image,
.rothwell-theme .background-video,
.rothwell-theme .background-overlay:before,
.rothwell-theme .background-overlay:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.rothwell-theme .background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.rothwell-theme .background-video,
.rothwell-theme .background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rothwell-theme .background-overlay:before {
    content: "";
    opacity: 60%;
    background: url(../img/mask-banner.svg) no-repeat;
    background-size: contain;
    background-position: left;
    z-index: 9;
}

.rothwell-theme .background-overlay:after {
    content: "";
    background: linear-gradient(to right, var(--dark-purple), rgba(var(--purple-rgb), 25%));
}

/* Video Embed */

.rothwell-theme .responsive-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.rothwell-theme .responsive-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------------------------------
   Swiper
-----------------------------------------------------------------------*/

.rothwell-theme .swiper-carousel-wrap {
    min-width: 100%;
    overflow: hidden;
}

.rothwell-theme .swiper .swiper-slide {
    width: auto;
    height: auto;
}

/* Pagination */

.rothwell-theme .swiper-pagination {
    top: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.rothwell-theme .swiper-pagination span {
    opacity: 100%;
    margin: 0 3px;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    background: var(--grey);
    transition:
        var(--transition) width,
        var(--transition) background;
}

.rothwell-theme .swiper-pagination span.swiper-pagination-bullet-active {
    width: 40px;
    background: var(--slate);
}

/* Navigation */

.rothwell-theme .swiper-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rothwell-theme .swiper-navigation div[class*="swiper-nav-"] {
    position: absolute;
    top: calc(50% - 40px);
    margin: 10px;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(var(--grey-rgb), 30%);
    cursor: pointer;
    z-index: 9999;
}

.rothwell-theme .swiper-navigation div[class*="swiper-nav-"] svg {
    display: block;
    width: 20px;
    height: 20px;
}

.rothwell-theme .swiper-navigation .swiper-nav-prev {
    left: 30px;
}

.rothwell-theme .swiper-navigation .swiper-nav-next {
    right: 30px;
}

/* Responsive */

@media (max-width: 860px) {
    .rothwell-theme .swiper-pagination {
        margin-top: 15px;
    }
}

/*-----------------------------------------------------------------------
   Tables
-----------------------------------------------------------------------*/

.rothwell-theme table {
    border-collapse: collapse;
    width: 100%;
}

.rothwell-theme table,
.rothwell-theme table tr,
.rothwell-theme table th,
.rothwell-theme table td {
    border-color: var(--grey);
}

.rothwell-theme table th,
.rothwell-theme table td {
    padding: 10px;
    text-align: left;
    border: 1px solid var(--grey);
}

.rothwell-theme table th,
.rothwell-theme table th * {
    font-weight: 600;
}

.rothwell-theme table .button {
    width: fit-content !important;
    margin: 5px 5px 5px 0 !important;
}

/*-----------------------------------------------------------------------
   Social Icons
-----------------------------------------------------------------------*/

.rothwell-theme .social-icons {
    gap: 5px;
}

.rothwell-theme .social-icons a,
.rothwell-theme .social-icons div,
.rothwell-theme .social-icons svg {
    margin: 0;
    display: block;
}

.rothwell-theme .social-icons svg {
    width: 20px;
    height: 20px;
    color: var(--purple);
}

.rothwell-theme .social-icons a:hover svg,
.rothwell-theme .social-icons div:hover svg {
    color: var(--orange);
}

/*-----------------------------------------------------------------------
   Pagination
-----------------------------------------------------------------------*/

.rothwell-theme .archive-pagination {
    margin: auto;
    margin-top: 40px;
    width: fit-content;
}

.rothwell-theme .archive-pagination a {
    margin: 0 10px;
    font-size: 12px;
    text-align: center;
}

.rothwell-theme .archive-pagination a:hover,
.rothwell-theme .archive-pagination a.current {
    text-decoration: underline;
}

.rothwell-theme .post-pagination {
    border-top: 1px solid var(--grey);
}

.rothwell-theme .post-pagination .button,
.rothwell-theme .post-pagination .button:hover,
.rothwell-theme .post-pagination .button:focus {
    padding: 0 !important;
    min-width: 0 !important;
    border: 0 !important;
}

.rothwell-theme .post-pagination .pagination-next .button svg {
    transform: rotate(-180deg);
}

/*-----------------------------------------------------------------------
   Entry - Default
-----------------------------------------------------------------------*/

.rothwell-theme *[class^="entry-"] {
    display: block;
    position: relative;
    text-decoration: none;
    transition: var(--transition) all;
}

.rothwell-theme *[class^="entry-"] .inner-entry-content {
    padding: 10px 0;
}

.rothwell-theme *[class^="entry-"] .inner-entry-content > *:not(:last-child) {
    margin: 0 0 10px !important;
}

/*-----------------------------------------------------------------------
   Block - Hero Banner
-----------------------------------------------------------------------*/

.block-hero-banner > div[class*="block-setting-"] {
    min-height: 690px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*-----------------------------------------------------------------------
   Block - Page Banner
-----------------------------------------------------------------------*/

.block-page-banner .background-overlay:before {
    background-size: 75%;
}

/*-----------------------------------------------------------------------
   Block - Icon Links
-----------------------------------------------------------------------*/

.block-icon-links .listing-icon-links {
    gap: 0;
}

.block-icon-links .entry-icon-link {
    border-right: 1px solid rgba(var(--grey-rgb), 15%);
}

.block-icon-links .entry-icon-link:nth-child(3n) {
    border: 0;
}

.block-icon-links .entry-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.block-icon-links .entry-icon-link img.inner-entry-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.block-icon-links .entry-icon-link .button {
    border: 0 !important;
    padding: 0 !important;
    background: none !important;
    box-shadow: none !important;
    min-width: 0 !important;
    margin-top: 10px !important;
    font-weight: 500 !important;
}

.block-icon-links .entry-icon-link .button,
.block-icon-links .entry-icon-link .button svg {
    color: var(--purple);
}

.block-icon-links .entry-icon-link .button:hover,
.block-icon-links .entry-icon-link .button:hover svg {
    color: var(--orange);
}

/* Responsive */

@media (max-width: 860px) {
    .block-icon-links .listing-icon-links {
        grid-template-columns: 1fr;
    }

    .block-icon-links .entry-icon-link {
        justify-content: flex-start;
        border: 0 !important;
    }
}

/*-----------------------------------------------------------------------
   Block - Call to Action
-----------------------------------------------------------------------*/

.block-call-to-action .background-overlay:before {
    background-position: 0 200px;
}

/*-----------------------------------------------------------------------
   Block - Tenants
-----------------------------------------------------------------------*/

.rothwell-theme .entry-tenant {
    border: 1px solid var(--beige);
    border-radius: var(--border-radius-sm);
    padding: 20px;
}

.rothwell-theme .entry-tenant:hover {
    box-shadow: 0 0 10px var(--beige);
}

.rothwell-theme .entry-tenant img.inner-entry-image {
    object-fit: contain;
}

.block-tenants .carousel-tenants .entry-tenant {
    max-width: 200px;
}

/*-----------------------------------------------------------------------
   Block - Split Content
-----------------------------------------------------------------------*/

/* Responsive */

@media (max-width: 860px) {
    .block-split-content .col-content {
        order: 9;
    }

    .block-split-content .col-image {
        order: 1;
    }
}
