/* Reset Minified normalize.css - https://github.com/necolas/normalize.css */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* ------------------------------------ Foundation ------------------------------------ */
/* albert-sans-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/albert-sans/albert-sans-v1-latin-regular.eot');
    /* IE9 Compat Modes */
    src: url('/assets/fonts/albert-sans/albert-sans-v1-latin-regular/.eot') format('embedded-opentype'),
        /* IE6-IE8 */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-regular.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-regular.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-regular.svg') format('svg');
    /* Legacy iOS */
}

/* albert-sans-900 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Albert Sans';
    font-style: normal;
    font-weight: 900;
    src: url('/assets/fonts/albert-sans/albert-sans-v1-latin-900.eot');
    /* IE9 Compat Modes */
    src: url('/assets/fonts/albert-sans/albert-sans-v1-latin-900/.eot') format('embedded-opentype'),
        /* IE6-IE8 */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-900.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-900.woff') format('woff'),
        /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-900.ttf') format('truetype'),
        /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
        url('/assets/fonts/albert-sans/albert-sans-v1-latin-900.svg') format('svg');
    /* Legacy iOS */
}

* {
    box-sizing: border-box;
}

:root {
    --red: #DD1814;
    --yellow: #FFFF00;
    --black: #000000;
    --white: #FFFFFF;
    --gray: #BBBBBB;
    --gold: #FBC207;
    --primary-gold: #FBC207;
    --primary-dark: #1C1113;
    --primary-red: #541010;
}

.row {
    --bs-gutter-x: 40px;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.33;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: var(--primary-dark);
    max-width: calc(2880px); /* absolute max width of page */
    margin: 0 auto;
}

a {
    color: var(--white);
}

a:hover,
a:focus {
    cursor: pointer;
    color: var(--gold);
}

button {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    border: none;
}

button:hover,
button:focus,
.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus {
    cursor: pointer;
    color: var(--white);
}

/* Hover transitions*/
button,
input,
a,
textarea,
button:hover,
button:focus,
input:hover,
input:focus,
a:hover,
a:focus,
a::before,
a::after,
a:hover::before,
a:hover::after,
a:focus::before,
a:focus::after,
textarea:hover,
textarea:focus {
    transition: color .25s, background .25s, padding .25s;
    outline: 0;
}

p {
    margin-top: 0;
    padding-top: 0;
    font-size: 16px;
}

@media(min-width: 768px) {
    p {
        font-size: 18px;
        line-height: 1.33;
    }
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    flex-shrink: 0;
}

/* ------------------------------------ Common ------------------------------------ */
main {
    flex: 1 0 auto;
    position: relative;
}

body:not(.page--home) main {
    /* background: url('/assets/img/hero-bg-gradient.png') no-repeat; */
    background-size: cover;
}

/* Slanted bottom border */
body:not(.page--home) main::before {
    display:block;
    content: '';
    position: absolute;
    top: 0px;
    width: 100%;
    height: 80vh;
    /* background: url('/assets/img/hero-bg-gradient.png') no-repeat center center;
    background-size: cover; */
    background-color: var(--primary-red);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg); /* Adjust angle as needed */
    z-index: -3;
    border-bottom: none;
}
/* Slanted bottom border */
body:not(.page--home) main::after {
    display:block;
    content: '';
    position: absolute;
    top: 0px;
    width: 100%;
    height: 80vh;
    background-color: var(--red);
    opacity: 0.5;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: skewY(6deg);
    -ms-transform: skewY(6deg);
    transform: skewY(6deg); /* Adjust angle as needed */
    z-index: -4;
    border-bottom: none;
}

section {
    position: relative;
    padding: 50px 0;
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
}

.container {
    max-width: 940px; /* 900px + gutter[20px */
    padding-right: 20px;
    padding-left: 20px;
}

.page {
    min-height: 600px;
    margin-bottom: 50px;
}

.hr {
    width: 100%;
    height: 0;
    border: none;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #C9C9C9;
}

.reg {
    font-size: 100%;
    top: 0px;
}

@media(min-width: 768px) {
    .sidebar {
        float: left;
        margin-right: 50px;
        margin-bottom: 50px;
    }
}

/* ------------------------------------ Lists ------------------------------------ */

.list__bulleted,
.list__bulleted ul {
    list-style: none;
    list-style: disc;
    padding: 0;
    margin-left: 16px;
}

@media (min-width: 768px) {
    .list__bulleted,
    .list__bulleted ul {
        margin-left: 40px;
    }
}

.list__bulleted li {
    position: relative;
    margin-bottom: .7rem;
    padding-left: 25px;
    min-height: 20px;
    line-height: 1.33;
    text-align: left;
    width: 100%;
}
.list__bulleted li:before {
    content: '';
    position: absolute;
    left: -13px;
    top: -5px;
    width: 40px;
    height: 35px;
    background-image: url('/assets/img/icons/bullet-plus.png');
    background-image: -o-linear-gradient( transparent, transparent), url('/assets/img/icons/bullet-plus.svg');
    background-image: -webkit-gradient( linear, left top, left bottom, from(transparent), to(transparent)), url('/assets/img/icons/bullet-plus.svg');
    background-image: linear-gradient( transparent, transparent), url('/assets/img/icons/bullet-plus.svg');
    background-repeat: no-repeat;
    background-position: left center;
}

.list__bulleted a {
    font-size: 1.2em;
}

.list__nonbulleted li {
    margin-bottom: 1rem;
}

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

.btn {
    display: inline-block;
    position: relative;
    font-size: 16px;
    padding: 10px 10px;
    text-align: center;
    font-family: 'Albert Sans', sans-serif;
    font-weight: 900;
    color: var(--white);
    border: none;
    margin: 0;
    max-width: none;
    width: 100%;
    height: 40px;
    text-decoration: none;
}

@media (min-width: 501px) {
    .btn {
        padding: 9.5px 25px;
        width: auto;
        max-width: 400px;
    }
}

.btn--primary {
    font-family: "Albert Sans", sans-serif;
    font-size: 21px;
    border-radius: 0;
    background-color: var(--gold);
    color: var(--white);
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    text-shadow: 1px 1px 1px #00000054;
}

.btn--primary:hover,
.btn--primary:focus {
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    background-color: var(--red);
}

/* ------------------------------------ Links ------------------------------------ */

.link__external {
    position: relative;
}

.link__external:after {
    content: '';
    display: inline-block;
    position: relative;
    top: 2.5px;
    height: 16px;
    width: 16px;
    margin-left: 4px;
}

.cssmask .link__external:after {
    background-color: var(--primary-red);
    -webkit-mask-image: url('/assets/img/icons/baseline-open_in_new-24px.svg');
    mask-image: url('/assets/img/icons/baseline-open_in_new-24px.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right center;
    mask-position: right center;
    -webkit-mask-size: 16px 16px;
    mask-size: 16px 16px;
}

.cssmask .site-footer .link__external:after {
    background-color: var(--white);
}

.cssmask .site-footer .link__external:hover:after,
.cssmask .site-footer .link__external:focus:after {
    background-color: var(--gold);
}

.no-cssmask .link__external:after,
.no-cssmask .link__external:hover:after,
.no-cssmask .link__external:focus:after {
    background-color: transparent;
    background-image: url('/assets/img/icons/baseline-open_in_new-24px.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px 16px;
}

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

.heading__1 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.25;
}

.heading__2 {
    font-size: 32px;
    font-weight: 900;
    margin: 36px 0 20px 0;
}

.heading__3 {
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 0.5em;
}

.heading__4 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    font-size: 21px;
}

.heading__5 {
    font-size: 18px;
}

@media (min-width: 768px) {
    .heading__1 {
        font-size: 36px;
        line-height: 1.25;
    }

    .heading__2 {
        font-size: 32px;
        margin: 36px 0 20px 0;
    }
}

/* ------------------------------------ Utility ------------------------------------ */

.s__center {
    text-align: center;
}

.s__margin-top {
    margin-top: 1em;
}

.s__margin-top--sm {
    margin-top: 0.5em;
}

.s__indented {
    margin-left: 50px;
}

.s__padding-x {
    padding-right: 27px;
    padding-left: 5px;
}

.t__nowrap {
    white-space: nowrap;
}

.t__font--main {
    font-family: 'Albert Sans', sans-serif;
}

.t__regular {
    font-weight: 400;
}

.t__bold {
    font-weight: 900;
}

.t__underline {
    text-decoration: underline;
}

.t__xsmall {
    font-size: 12px;
}

.t__small {
    font-size: 13px;
    line-height: 1.5;
}

.t__normal {
    font-size: 16px;
    line-height: 1.25;
}

.t__medium-large {
    font-size: 21px;
    line-height: 1.25;
}

.t__large {
    font-size: 24px;
    line-height: 1.25;
}

@media (max-width: 1200px) {
    .t__normal {
        font-size: 15px;
    }
    .t__medium-large {
        font-size: 16px;
    }
    .t__large {
        font-size: 18px;
    }
}

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

label,
input,
button {
    display: block;
}

label {
    margin-bottom: 10px;
}

input {
    background-color: #F7F7F7;
}

input[type="text"],
input[type="email"],
input[type="phone"],
textarea {
    width: 100%;
    height: 40px;
    border-color: transparent;
    padding: 7px;
    font-family: 'Albert Sans', sans-serif;
}

textarea {
    height: 100px;
}

/* Honeypot field */

.form__name-field {
    display: none;
}

.form__input-group .form__basic-input {
    width: 100%;
}

.form__input-group .btn {
    width: auto;
}

.form__input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .form__input-group {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}
@media (min-width: 1200px) {
    .form__input-group .form__basic-input {
        margin-bottom: 0;
        width: 100%;
    }
    .form__input-group .btn {
        width: auto;
    }
}

.form__input-group>input {
    background-color: #F7F7F7;
    width: 100%;
    padding: 10px;
    height: 40px;
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

.form__domain-search .form__input-group .form__basic-input {
    padding: 10px 20px;
}

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

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-top: 10px solid var(--primary-gold);
}

@media (min-width: 768px) {
    .site-header {
        border-top: 15px solid var(--primary-gold);
    }
}

.site-header .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-logo-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: auto;
}

@media (min-width: 1200px) {
    .header-logo-container {
        padding-left: 0;
        padding-right: 0;
    }
}

.header-logo {
    max-width: 100%;
    height: 30px;
    max-height: 30px;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .site-header {
        z-index: 10;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

/* ------------------------------------ Navigation - Header ------------------------------------ */
.header-container {
    max-width: 900px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-gold);
}

.top-level-nav {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.nav-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
}

@media (min-width: 1200px) {
    .nav-container {
        padding-left: 0;
        padding-right: 0;
    }
}

.button__mobile-nav {
    display: block;
    height: 40px;
    font-size: 16px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
}

.header-nav {
    display: none;
    background-color: var(--primary-dark);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: absolute;
    top: calc(100% + 2px);
    width: 100%;
    right: 0;
    left: 0;
    z-index: 999;
}

.main-nav-item {
    position: relative;
    margin: 6px 20px;
}

.main-nav-link {
    color: var(--white);
    font-size: 16px;
}

.main-nav-link:hover,
.main-nav-link:focus {
    text-decoration: underline;
    color: var(--gold);
}

@media (max-width: 767px) {
    .header-nav {
        border-bottom: 2px solid var(--primary-gold);
    }

    ul.top-level-nav {
        list-style: none;
        padding: 0;
    }
    
    .mobileToggled .header-nav:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 50;
    }
    
    .main-nav-item {
        margin-bottom: .7rem;
        padding-left: 25px;
        min-height: 20px;
        line-height: 1.33;
        text-align: left;
    }
    
    .main-nav-item:before {
        content: '';
        position: absolute;
        left: -13px;
        top: -3px;
        width: 36px;
        height: 28px;
        /* background-image: url('/assets/img/icons/bullet-plus.png');
        background-image: -o-linear-gradient( transparent, transparent), url('/assets/img/icons/bullet-plus.svg');
        background-image: -webkit-gradient( linear, left top, left bottom, from(transparent), to(transparent)), url('/assets/img/icons/bullet-plus.svg');
        background-image: linear-gradient( transparent, transparent), url('/assets/img/icons/bullet-plus.svg');
        background-repeat: no-repeat;
        background-position: left center; */
    }
}

.top-level-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (min-width: 768px) {
    #header-main-nav {
        display: block !important;
    }
    .top-level-nav {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .main-nav-link {
        margin: 0 15px;
        text-decoration: none;
    }
    .button__mobile-nav {
        display: none;
    }
    .header-nav {
        display: block;
        position: static;
        padding: 0;
        background-color: transparent;
    }
    .main-nav-item {
        margin: 0;
    }
    .top-level-nav .main-nav-item:first-child .main-nav-link {
        margin-left: 0;
    }
    .top-level-nav .main-nav-item:last-child .main-nav-link {
        margin-right: 0;
    }
    .mobileToggled .header-nav {
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.brand-whys__heading {
    padding-top: 60px;
    padding-bottom: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: -webkit-gradient(linear,
        left top, left bottom,
        from(rgba(20, 15, 15, 1)),
        color-stop(15%, rgba(20, 15, 15, .6)),
        color-stop(50%, rgba(20, 15, 15, .4)),
        color-stop(85%, rgba(20, 15, 15, .6)),
        to(rgba(20, 15, 15, 1))
    );
    background: -o-linear-gradient(top,
        rgba(20, 15, 15, 1) 0%,
        rgba(20, 15, 15, .6) 15%,
        rgba(20, 15, 15, .4) 50%,
        rgba(20, 15, 15, .6) 85%,
        rgba(20, 15, 15, 1) 100%
    );
    background: linear-gradient(to bottom,
        rgba(20, 15, 15, 1) 0%,
        rgba(20, 15, 15, .6) 15%,
        rgba(20, 15, 15, .4) 50%,
        rgba(20, 15, 15, .6) 85%,
        rgba(20, 15, 15, 1) 100%
    );
}

@media (min-width: 768px) {
    .brand-whys__heading {
        padding-top: 100px;
        padding-bottom: 100px;
        margin-top: 0;
        margin-bottom: 90px;
        background: -webkit-gradient(linear,
            left top, left bottom,
            from(rgba(20, 15, 15, 1)),
            color-stop(10%, rgba(20, 15, 15, .3)),
            color-stop(50%, rgba(20, 15, 15, 0)),
            color-stop(90%, rgba(20, 15, 15, .3)),
            to(rgba(20, 15, 15, 1))
        );
        background: -o-linear-gradient(top,
            rgba(20, 15, 15, 1) 0%,
            rgba(20, 15, 15, .3) 10%,
            rgba(20, 15, 15, 0) 50%,
            rgba(20, 15, 15, .3) 90%,
            rgba(20, 15, 15, 1) 100%
        );
        background: linear-gradient(to bottom,
            rgba(20, 15, 15, 1) 0%,
            rgba(20, 15, 15, .3) 10%,
            rgba(20, 15, 15, 0) 50%,
            rgba(20, 15, 15, .3) 90%,
            rgba(20, 15, 15, 1) 100%
        );
    }
}

@media (min-width: 1200px) {
    .brand-whys__heading {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-top-spacer {
    margin: 40px 0;
}

@media (min-width: 768px) {
    .section-top-spacer {
        margin: 60px 0 0 0;
    }
}

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

.site-footer {
    padding-top: 40px;
    padding-bottom: 30px;
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 16px;
    border-top: 2px solid var(--red);
}

.site-footer-nav__item a {
    color: var(--white);
}

.site-footer-nav__item a:hover {
    color: var(--gold);
}

@media (max-width: 767px) {
    .site-footer__logo {
        text-align: center;
    }
}

.logo-container--footer {
    text-align: center;
    margin: 0 auto;
}

.logo--footer {
    height: 38px;
    margin-bottom: 0;
}

.site-footer__hr {
    display: none;
}

@media (min-width: 768px) {
    .logo--footer {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .site-footer__copyright {
        margin-top: 10px;
        text-align: center;
    }
}

@media (min-width: 768px) {
    .site-footer {
        padding-top: 60px;
        padding-bottom: 45px;
    }
    .site-footer__container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-around; /* fallback */
        justify-content: space-evenly;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    
    .site-footer__section {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
    }
    
    .logo-container--footer {
        text-align: left;
        margin: 0 0 30px 0;
    }
    .site-footer__sub {
        margin: 0;
    }
    .site-footer__hr {
        margin-top: 30px;
        margin-bottom: 25px;
        border-color: var(--red);
        display: block;
    }
}

.site-footer__label {
    display: block;
    font-size: 13px;
    margin-bottom: 0;
}

.site-footer__disclaimer {
    font-size: 12px;
    line-height: 1.25;
    color: #d7dadb;
    margin-top: 12px;
}

.site-footer__disclaimer a {
    color: var(--white);
}
.site-footer__disclaimer a:hover {
    color: var(--white);
}

.site-footer__nav {
    margin-top: 40px;
    margin-bottom: 30px;
}
.site-footer .form__input-group {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.site-footer .form__input-group .form__basic-input {
    width: 100%;
    height: 40px;
}

.site-footer .form__input-group .btn {
    padding: 8px 16px;
    margin-top: 16px;
    width: 100%;
    min-width: 0;
    font-size: 18px;
}

@media (max-width: 509px) {
    .site-footer .form__input-group .btn {
        max-width: 100%;
    }
}

@media (min-width: 501px) and (max-width: 767px) {
    .site-footer .form__input-group .form__basic-input {
        max-width: 225px;
    }
    .site-footer .form__input-group .btn {
        margin-top: 0;
        margin-left: 8px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .site-footer__nav {
        display: -webkit-box;
        display: flex;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        /* For browsers that support it */
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0;
        margin-bottom: 0;
    }
    .site-footer .form__input-group .form__basic-input {
        max-width: 225px;
    }
    .site-footer .form__input-group .btn {
        margin-top: 0;
        width: auto;
    }
}

.site-footer-nav__group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-nav__item {
    line-height: 1.75;
}

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

/* ------------------------------------ Homepage - Hero ------------------------------------ */

.page--home main {
    background-color: var(--primary-dark);
    padding-bottom: 0;
}

.page--home .main-nav-link {
    color: var(--primary-red);
}
.page--home .header-nav {
    background-color: var(--white);
}
/* .page--home main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/de-map.svg') no-repeat, url('/assets/img/de-map.svg') no-repeat;
    background-position: -15% 18%, 130% 40.5%;
    background-size: 50vw, 50vw;
    z-index: 1;
    pointer-events: none;
}

.page--home main::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/de-map.svg') no-repeat;
    background-position: 142% 1.5%;
    background-size: 50vw;
    z-index: 1;
    pointer-events: none;
} */

@media (max-width: 501px) {
    .page--home main::before {
        background-position: -50vw 360vw, 70vw 630vw;
        background-size: 100vw, 100vw;
    }
    .page--home main::after {
        background-position: 50vw 100vw;
        background-size: 100vw;
    }
}

.section__home-hero {
    padding-top: calc(80px + 2 * 1px);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Slanted bottom border */
.section__home-hero::before {
    display:block;
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 105%;
    /* background: url('/assets/img/hero-bg-gradient.png') no-repeat center center;
    background-size: cover; */
    background-color: var(--white);
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: skewY(-6deg);
    -ms-transform: skewY(-6deg);
    transform: skewY(-6deg); /* Adjust angle as needed */
    z-index: -3;
    border-bottom: 2px solid var(--red);
}
/* Slanted bottom border */
.section__home-hero::after {
    display:block;
    content: '';
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--primary-red);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: skewY(6deg);
    -ms-transform: skewY(6deg);
    transform: skewY(6deg); /* Adjust angle as needed */
    z-index: -4;
    border-bottom: 2px solid transparent;
}

.home-hero__arrow-down {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.arrow-down__arrow {
    width: 20px;
    height: 60px;
    position: absolute;
    bottom: 0px;
    cursor: pointer;
}

.arrow-down__arrow:hover::before,
.arrow-down__arrow:hover::after {
    -webkit-animation: none;
    animation: none;
}

.arrow-down__arrow::before,
.arrow-down__arrow::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: blink 2s infinite;
    animation: blink 2s infinite;
    bottom: -15px;
}

/* First arrow (back) - Gold */
.arrow-down__arrow::before {
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

/* Second arrow (front) - Red */
.arrow-down__arrow::after {
    border-right: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    bottom: -30px;
}

@media (min-width: 768px) {
    .home-hero__arrow-down {
        height: 200px;  
    }
    .arrow-down__arrow {
        width: 30px;
    }
    .arrow-down__arrow::before,
    .arrow-down__arrow::after {
        width: 30px;
        height: 30px;
        bottom: 0;
    }
    .arrow-down__arrow::after {
        bottom: -20px;
    }
}

@media (min-width: 1200px) {
    .arrow-down__arrow {
        bottom: 20px;
    }
}

/* Blinking animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* For better browser support */
@-webkit-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Optional: Pause animation on hover */
.home-hero__arrow-down:hover::before,
.home-hero__arrow-down:hover::after {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

/* Add prefers-reduced-motion support */
@media (prefers-reduced-motion: reduce) {
    .home-hero__arrow-down::before,
    .home-hero__arrow-down::after {
        -webkit-animation: none;
        animation: none;
    }
}

.home-hero--content {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0 0 0;
}

.home-hero--content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

@media (min-width: 768px) {
    .home-hero--content {
        padding-top: 50px;
    }
}

@media (min-width: 1200px) {
    .home-hero--content {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
    }
}

.home-hero--heading {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--primary-red);
    margin-top: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .home-hero--heading {
        font-size: 36px;
        margin: 20px 0px 40px 0px;
    }
}

@media (min-width: 1200px) {
    .home-hero--heading {
        font-size: 42px;
        line-height: 51px;
        margin: 20px 0px 40px 0px;
    }
}

.home-hero--content .form__domain-search {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
}
.home-hero--content .form__domain-search .avail-prefix-input {
    width: 130px;
}

.home-hero--content .prefix-active #ds__form-input {
    padding-left: 70px;
}

.home-hero--content .form__domain-search .form__input-group>input {
    width: 100%;
    height: 50px;
    font-size: 18px;
    box-shadow: 0px 5px 10px #2A2D3340;
}

.home-hero--content .form__domain-search .form__input-group>input::-webkit-input-placeholder {
    font-style: italic;
    text-align: center;
}

.home-hero--content .form__domain-search .form__input-group>input::-moz-placeholder {
    font-style: italic;
    text-align: center;
}

.home-hero--content .form__domain-search .form__input-group>input:-ms-input-placeholder {
    font-style: italic;
    text-align: center;
}

.home-hero--content .form__domain-search .form__input-group>input::-ms-input-placeholder {
    font-style: italic;
    text-align: center;
}

.home-hero--content .form__domain-search .form__input-group>input::placeholder {
    font-style: italic;
    text-align: center;
}
.home-hero--content .btn.btn--primary.ds__form-submit {
    display: block;
    height: 50px;
    font-size: 18px;
    letter-spacing: 0.9px;
    text-shadow: 1px 1px 1px #00000054;
}

@media (min-width: 768px) {
    .home-hero--content .form__domain-search .form__input-group>input {
        height: 60px;
    }
    .home-hero--content .form__domain-search .form__input-group>input::-webkit-input-placeholder {
        text-align: left;
    }
    .home-hero--content .form__domain-search .form__input-group>input::-moz-placeholder {
        text-align: left;
    }
    .home-hero--content .form__domain-search .form__input-group>input:-ms-input-placeholder {
        text-align: left;
    }
    .home-hero--content .form__domain-search .form__input-group>input::-ms-input-placeholder {
        text-align: left;
    }
    .home-hero--content .form__domain-search .form__input-group>input::placeholder {
        text-align: left;
    }
    .home-hero--content .btn.btn--primary.ds__form-submit {
        height: 60px;
        -webkit-box-shadow: 0px 5px 10px #2A2D3340;
        box-shadow: 0px 5px 10px #2A2D3340;
    }
}

@media (min-width: 501px) {
    .home-hero--content {
        text-align: center;
    }
}

.home-logo {
    display: block;
    max-width: 360px;
    width: 100%;
}

@media (min-width: 768px) {
    .home-logo {
        max-width: 660px;
    }
}

.home-hero__search {
    max-width: 100%;
}

.ds__form-input {
    margin-bottom: 10px;
}

.form__domain-search .avail-prefix-input {
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0 !important;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    background: none;
    -webkit-transition: width .25s;
    -o-transition: width .25s;
    transition: width .25s;
}

.prefix-active .avail-prefix-input {
    border: 2px solid rgba(0,0,0,0);
    opacity: 1;
    z-index: 555;
}

.prefix-active #ds__form-input {
    z-index: 10;
    padding-left: 104px;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .prefix-active #ds__form-input {
        padding-left: 104px;
    }
}

/* ------------------------------------ Homepage - Why ------------------------------------ */

.section__home-why {
    padding-top: 50px;
    position: relative;
}

.brand-logo {
    height: 65px;
    display: block;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .brand-logo {
        display: block;
        height: 80px;
        margin: 0 auto;
    }
}

.home-heading {
    color: var(--white);
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    margin-top: 0;
}

@media (min-width: 768px) {
    .home-heading {
        font-size: 36px;
    }
}

.brand-whys>ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-whys>ul:not(:last-child) {
    margin-bottom: 55px;
}

.brand-why {
    position: relative;
    text-align: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .brand-why {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-top: 45px;
        text-align: left;
    }
}

.brand-why h3 {
    font-size: 21px;
    letter-spacing: 0.1em;
    font-weight: 400;
    color: var(--gold);
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.brand-why p {
    margin-top: 0;
    padding-top: 0;
}

.brand-why__image-wrapper {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.brand-why__image {
    max-width: 130px;
}

@media (min-width: 768px) {
    .brand-why__image-wrapper {
        margin-bottom: 0;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .brand-why__image {
        max-width: 150px;
    }    
}

.brand-why__content--list {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.brand-why__content {
    font-size: 16px;
    max-width: 100%;
    width: 600px;
    margin: 0 auto;
    text-align: left;
}

.brand-why__content p {
    color: #D0D0D0;
}

@media (min-width: 768px) {
    .brand-why h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .brand-why__content p {
        font-size: 21px;
        margin-bottom: 0;
    }
    .brand-why__content {
        margin-bottom: 0;
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .brand-why {
        gap: 70px;
    }
}

/* ------------------------------------ Homepage - Accent ------------------------------------ */
.section__home-accent {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.container--accent { 
    position: relative;
    z-index: 3;
}

.home-accent__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home-accent__img {
    max-width: 500px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: -25%;
    position: relative;
}

@media (min-width: 501px) and (max-width: 1199px) {
    .home-accent__img {
        max-width: 400px;
        margin-top: -15%;
    }
}

.accent-img {
    border-radius: 50%;
    width: 930px;
}
.section__home-accent::before {
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: skewY(5deg) translateY(-50%);
    -ms-transform: skewY(5deg) translateY(-50%);
    transform: skewY(5deg) translateY(-50%);
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    background-color: var(--primary-red);
    z-index: 1;
}

@media (min-width: 1200px) {
    .container--accent { 
        max-width: 1200px;
        position: relative;
        z-index: 3;
    }
    .home-accent__wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 50px;
    }
    .home-accent__img {
        max-width: none;
        margin-top: 0;
    }
    .accent-img {
        max-width: none;
        position: absolute;
        right: 0;
        top: 50%;
        border-radius: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .home-accent__content {
        max-width: 730px;
    }


    .home-accent__content .home-heading{
        white-space: nowrap;
        font-size: 30px;
    }


    .home-accent__content p {
        font-size: 22px;
    }
}

@media (min-width: 1600px) {
    .home-accent__content .home-heading{
        font-size: 36px;
    }
}

/* ------------------------------------ Homepage - Chart ------------------------------------ */
.section__home-chart {
    padding-bottom: 10px;
    z-index: 5;
}

@media (min-width: 768px) {
    .section__home-chart {
        padding-bottom: 40px;
    }
}

@media (min-width: 991px) {
    .section__home-chart .home-heading {
        white-space: nowrap;
        font-size: 42px;
    }
}

.section__home-chart p {
    font-size: 18px;
}

@media (min-width: 1200px) {
    .section__home-chart p {
        font-size: 20px;
    }
}

.home-chart__content--lower {
    margin-top: 1em;
    padding-right: 27px;
    padding-left: 27px;
}

.chart__wrapper {
    padding-left: 20px;
    overflow: auto;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

@media (min-width: 576px) {
    .chart__wrapper {
        padding-right: 20px;
    }
}
.chart__wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.chart__img--mobile {
    max-width: none;
    height: 385px;
    padding-right: 20px;
}
.chart__img--desktop {
    margin: 0 auto;
    max-width: 900px;
    display: none;
}
@media (min-width: 576px) {
    .chart__img--mobile {
        display: none;
    }
    .chart__img--desktop {
        display: block;
    }
}

/* ------------------------------------ Homepage - Unlock ------------------------------------ */
.section__home-unlock {
    padding-bottom: 0;
}

.section__home-unlock::before {
    height: 200%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: skewY(-10deg);
    -ms-transform: skewY(-10deg);
    transform: skewY(-10deg);
    -webkit-transform-origin: 15%;
    -ms-transform-origin: 15%;
    transform-origin: 15%;
    background-color: rgba(251, 194, 7, 0.1);
    z-index: 2;
}

.home-unlock__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    height: 100%;
    background-color: var(--primary-gold);
    border-radius: 5px;
}

.home-unlock__img img { 
    max-width: 185px;
}

.home-unlock__content p {
    font-size: 18px;
}

@media (min-width: 991px) {
    .section__home-unlock .home-heading {
        white-space: nowrap;
        font-size: 42px;
    }
}

@media (min-width: 1200px) {
    .home-unlock__content p {
        font-size: 20px;
    }
}

/* ------------------------------------ Homepage - Live ------------------------------------ */

.section__home-live {
    padding-bottom: 0;
    z-index: 3;
}
.section__home-live .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
.section__home-live .row {
    --bs-gutter-x: 0;
}

.home-live__content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
}

.home-live__content p {
    font-size: 21px;
}

@media (min-width: 1200px) {
    .home-live__content p {
        font-size: 24px;
    }
}

.home-live__sites {
    position: relative;
}

.home-carousel-container {
    padding-top: 10px;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.home-carousel-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; /* Ensures the track is as wide as all slides combined */
}
@media (min-width: 768px) {
    .home-carousel-track {
        gap: 50px;
    }
    .home-live__content {
        margin-bottom: 50px;
    }
}

.home-carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.home-carousel-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.site-preview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

.site-preview__link {
    cursor: pointer;
}

.site-preview__link img {
    width: 220px;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid var(--yellow);
    border-radius: 12px;
    -webkit-transition: border 0.3s ease;
    -o-transition: border 0.3s ease;
    transition: border 0.3s ease;
}

@media (min-width: 768px) {
    .site-preview__link img {
        width: 350px;
        height: 250px;
    }
}

.site-preview__link:hover img {
    border: 4px solid var(--red);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.site-preview__domain {
    font-size: 18px;
    font-weight: 900;
    text-align: left;
}

.home-live__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
}

.btn--cta {
    font-size: 18px;
    border-radius: 40px;
    padding: 20px 30px;
    max-width: none;
    height: auto;
    width: auto;
}

.btn--contact {
    font-size: 16px;
    border-radius: 40px;
    padding: 18px 24px;
    max-width: none;
    height: auto;
    width: auto;
}

@media (min-width: 1200px) {
    .btn--cta {
        font-size: 24px;
    }
    .btn--contact {
        font-size: 18px;
    }
}

/* ------------------------------------ Contact ------------------------------------ */
.section__home-contact {
    background-color: var(--primary-red);
    z-index: 2;
}
.section__home-contact::before {
    border-top: 2px solid var(--primary-gold);
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: skewY(5deg);
    -ms-transform: skewY(5deg);
    transform: skewY(5deg);
    -webkit-transform-origin: 230%;
    -ms-transform-origin: 230%;
    transform-origin: 230%;
    background-color: var(--primary-red);
    z-index: -1;
}

.section__home-contact .home-heading {
    padding-top: 0;
    text-align: left;
}

.contact-form__disclaimer {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.33;
}

.contact-info-wrapper {
    background-color: #F2F2F2;
    padding: 30px;
    color: var(--black);
}

.contact-info-logo {
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .contact-info-wrapper {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) {
    .contact-page-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-top: 0;
    }
    .contact-form {
        width: 490px;
        margin-right: 72px;
    }
    .contact-info-wrapper {
        width: 430px;
    }
}

.contact-info__address p {
    margin: 0;
    padding: 0;
}

.contact-info__report-abuse {
    margin-top: 30px;
    padding-top: 30px;
    margin-bottom: 0;
    border-top: 2px solid var(--primary-gold);
    font-size: 14px;
    line-height: 1.33;
}

.contact-info__report-abuse a{
    color: var(--black);
}

/* ------------------------------------ Register ------------------------------------ */

.container__registerResults {
    color: var(--primary-dark);
}

/* ------------------------------------ Privacy ------------------------------------ */

.section__privacy {
    margin: 30px auto 50px auto;
}

.section__privacy p {
    margin-top: 0;
}

.section__privacy .heading__5 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 900;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

/* ------------------------------------ Terms ------------------------------------ */

.section__terms {
    margin: 30px auto 50px auto;
}

.section__terms p {
    margin-top: 0;
}

.section__terms .heading__5 {
    font-family: 'Albert Sans', sans-serif;
    font-weight: 900;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

/* ------------------------------------ Sitemap ------------------------------------ */

.section__sitemap {
    margin-top: 30px;
    margin-bottom: 80px;
}

.sitemap-pages-container {
    margin: 0 auto;
}

.sitemap-pages-container ul {
    margin-left: 16px;
}

@media (min-width: 768px) {
    .sitemap-pages-container ul {
        margin-left: 40px;
    }
}

/* ------------------------------------ Registry Policies ------------------------------------ */
.registry-policies-main-content .toc-link {
    display: none;
    margin-top: 36px;
    text-align: center;
}
@media (max-width: 767px) {
    .registry-policies-pages-container {
        display: flex;
        flex-direction: column;
    }
    .registry-policies-pages-container h1 {
        order: 1;
    }
    .registry-policies-pages-container table {
        order: 2;
    }
    .registry-policies-pages-container .registry-policies-main-content {
        order: 3;
    }
    .registry-policies-pages-container .toc-registry-policies {
        order: 4;
    }
    .registry-policies-main-content .toc-link {
        display: block;
    }
}
.section__registry-policies .list__bulleted {
    margin-left: 0;
}
.section__registry-policies .list__bulleted li {
    left: 34px;
    width: calc(100% - 34px);
    padding-left: 12px;
    font-size: 16px;
}
.sidebar.toc-registry-policies {
    position: relative;
    z-index: 10;
}
.sidebar.toc-registry-policies ul ul {
    margin-left: 24px;
}
.sidebar.toc-registry-policies li,
.sidebar.toc-registry-policies li > a {
    display: block;
    margin-bottom: .5em;
}

@media (min-width: 768px) {
    .sidebar.toc-registry-policies {
        margin-top: 10px;
        max-width: 380px;
    }
    .section__registry-policies .list__bulleted li {
        font-size: 18px;
    }
}

.registry-policies-table {
    margin: 36px auto 0 auto;
}
.registry-policies-table thead {
    background-color: var(--gray);
    color: var(--black);
}
.registry-policies-table tbody {
    background-color: var(--white);
    color: var(--black);
}
.registry-policies-table th,
.registry-policies-table td {
    padding: 5px 10px;
}