/* ============================================
   UTILITY CLASSES - BORDERS
   ============================================ */

.btransparent {
    border: solid 1px transparent;
}

.bgreen {
    border: solid 1px green;
}

.bred {
    border: solid 1px red;
}

.bblue {
    border: solid 1px blue;
}

.bblack {
    border: solid 1px black;
}

.byellow {
    border: solid 1px yellow;
}

.box-shadow-border {
    box-shadow: 0 0 0 1px rgba(90, 77, 74, .15);
}


/* ============================================
   UTILITY CLASSES - BORDER RADIUS
   ============================================ */

.border-rounded-top {
    -webkit-border-top-left-radius: 12px;
    -webkit-border-top-right-radius: 12px;
    -moz-border-radius-topleft: 12px;
    -moz-border-radius-topright: 12px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.border-rounded-bottom {
    -webkit-border-bottom-left-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    -moz-border-radius-bottomleft: 12px;
    -moz-border-radius-bottomright: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.border-rounded-left {
    -webkit-border-top-left-radius: 12px;
    -webkit-border-bottom-left-radius: 12px;
    -moz-border-radius-topleft: 12px;
    -moz-border-radius-bottomleft: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.border-rounded-right {
    -webkit-border-top-right-radius: 12px;
    -webkit-border-bottom-right-radius: 12px;
    -moz-border-radius-topright: 12px;
    -moz-border-radius-bottomright: 12px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.border-rounded-top-remove {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}


/* ============================================
   UTILITY CLASSES - OVERLAYS
   ============================================ */

/* Black Overlays */
.overlay-b5 {
    background: rgba(0, 0, 0, 0.05);
}

.overlay-b10 {
    background: rgba(0, 0, 0, 0.1);
}

.overlay-b15 {
    background: rgba(0, 0, 0, 0.15);
}

.overlay-b20 {
    background: rgba(0, 0, 0, 0.2);
}

.overlay-b25 {
    background: rgba(0, 0, 0, 0.25);
}

.overlay-b30 {
    background: rgba(0, 0, 0, 0.3);
}

.overlay-b40 {
    background: rgba(0, 0, 0, 0.4);
}

.overlay-b50 {
    background: rgba(0, 0, 0, 0.5);
}

.overlay-b60 {
    background: rgba(0, 0, 0, 0.6);
}

.overlay-b70 {
    background: rgba(0, 0, 0, 0.7);
}

/* White Overlays */
.overlay-w5 {
    background: rgba(255, 255, 255, 0.05);
}

.overlay-w10 {
    background: rgba(255, 255, 255, 0.1);
}

.overlay-w15 {
    background: rgba(255, 255, 255, 0.15);
}

.overlay-w20 {
    background: rgba(255, 255, 255, 0.2);
}

.overlay-w25 {
    background: rgba(255, 255, 255, 0.25);
}

.overlay-w30 {
    background: rgba(255, 255, 255, 0.3);
}

.overlay-w40 {
    background: rgba(255, 255, 255, 0.4);
}

.overlay-w50 {
    background: rgba(255, 255, 255, 0.5);
}

.overlay-w60 {
    background: rgba(255, 255, 255, 0.6);
}

.overlay-w70 {
    background: rgba(255, 255, 255, 0.7);
}

.overlay-w80 {
    background: rgba(255, 255, 255, 0.8);
}

.overlay-w90 {
    background: rgba(255, 255, 255, 0.9);
}


/* ============================================
   UTILITY CLASSES - SPACING
   ============================================ */

.section-xxsmall {
    padding-top: 10px;
    padding-bottom: 10px;
}

.negative-margin {
    margin-top: -100px !important;
}

.accordion-content {
    margin-top: -12px !important;
}


/* ============================================
   BASE STYLES
   ============================================ */

html,
body {
    margin: 0;
    min-height: 100%;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background:
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 70%,
            rgba(244, 243, 239, 1) 100%
        ),
        linear-gradient(90deg, #5CB351, #F08343);
    z-index: -1;
}


/* ============================================
   UIKIT CUSTOMIZATIONS
   ============================================ */

.uk-text-xsmall {
    font-size: 0.75em;
}

.uk-description-list > dt {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: none;
}

.uk-navbar-dropdown-nav > li > a {
    text-transform: uppercase;
}

.uk-navbar-nav > li > a,
.uk-navbar-item,
.uk-navbar-toggle {
    margin-left: -5px;
    margin-right: -5px;
}

.uk-logo {
    text-transform: uppercase;
    font-weight: 600;
    column-gap: 1px;
}

.uk-logo > span {
    font-weight: 600;
    color: #e74760;
    padding: 0 !important;
    margin: 0 !important;
}


/* ============================================
   COMPONENTS
   ============================================ */

/* Navigation */
.nav-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

/* Buttons */
.button-custom {
    padding-left: 18px;
    padding-right: 18px;
    color: white;
}

.button-custom:hover {
    color: white;
}

.button-custom.button-small {
    padding-left: 9px;
    padding-right: 9px;
}

/* Maps */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    filter: saturate(50%);
}

.map-responsive-small {
    overflow: hidden;
    padding-bottom: 33.33%;
    position: relative;
    height: 0;
}

.map-responsive-small iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    filter: saturate(50%);
}

/* Logo */
.logo-white {
    filter: grayscale(100%) brightness(10000%);
}

/* reCAPTCHA */
.grecaptcha-badge {
    z-index: 9999 !important;
}

/* Form Validation */
label.error {
    color: #fa824c;
    margin: 0 0 0 4px;
    font-size: 0.75rem;
    display: inline-block;
    line-height: 0.75rem;
}


/* ============================================
   MEDIA QUERIES
   ============================================ */

@media (min-width: 960px) {
    .negative-margin {
        margin-top: -200px !important;
    }
}

@media (max-width: 960px) {
    #slideshow-container.uk-container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    #slideshow.uk-border-rounded {
        border-radius: 0 !important;
    }
}

@media (max-width: 639px) {
    #wrapper {
        padding: 0 !important;
    }

    #nav-container .border-rounded-top {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

    #footer-policy .border-rounded-bottom {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
}