:root {
    --container-width: 1200px;
    --text-color: #252b33;
    --muted-text: #68717d;
    --background: #ffffff;
    --light-background: #f5f7f9;
    --border-color: #dce1e6;
    --link-color: #245b78;
}

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

html {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--link-color);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

button,
input,
textarea,
select {
    font: inherit;
}

.site-main {
    width: 100%;
    min-height: 70vh;
    margin: 0;
    padding: 0;
    max-width: none;
    border: 0;
    border-radius: 0;
    overflow: visible;
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin-inline: auto;
}

.page-section {
    padding: 64px 0;
}

.page-section--light {
    background: var(--light-background);
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    line-height: 1.2;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

    .btn:hover {
        text-decoration: none;
    }

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}




/* =========================================================
   BACK TO TOP
   ========================================================= */

/*.back-to-top {
    position: fixed;
    right: 0;
    bottom: 64px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: #ef720f;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }
*/

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 1px;
    bottom: 50px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: #ed7117;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    z-index: 9999;
    visibility: hidden;
    transition: opacity 0.2s ease;
}


/* Arrow drawn entirely with CSS */
.back-to-top__arrow {
    width: 12px;
    height: 12px;
    border-left: 3px solid #ffffff;
    border-top: 3px solid #ffffff;
    transform: rotate(45deg);
    /* compensates for rotated arrow */
    margin-top: 6px;
}


.back-to-top:hover,
.back-to-top:focus {
    background: #ed7117;
    outline: none;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media (max-width: 720px) {

    .back-to-top {
        width: 44px;
        height: 44px;
        right: 16px;
        bottom: 16px;
    }

    .back-to-top__arrow {
        width: 10px;
        height: 10px;
        border-left-width: 2px;
        border-top-width: 2px;
    }
}




/* Home is intentionally full bleed and square-edged. */
.site-header,
.site-footer,
.home-hero,
.home-focus,
.home-showcase,
.home-showcase__heading,
.home-showcase__image {
    border-radius: 0 !important;
}
