/* Layout CSS */
html {
    scroll-padding-top: 140px;
}

body {
    overflow-x: hidden;
    overflow-y: hidden;
}

.inner {
    width: 100%;
    max-width: 1448px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.flexbox-wrapper {
    display: flex;
    flex-wrap: wrap;
}


.bg-img {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
}

.home-link {
    position: relative;
    display: block;
    width: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}



/* Clear floats */
section:after,
article:after,
.clear:after,
#inner-header:after,
.row:after,
.social:after,
.site-info:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

/* Assistive text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    position: absolute !important;
    height: 1px;
    width: 1px;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    line-height: normal;
    padding: 15px 23px 14px;
    position: absolute;
    left: 5px;
    top: 5px;
    text-decoration: none;
    width: auto;
    z-index: 100000;
}

/* Mobile/Desktop visibility */
.desktop {
    display: none!important;
}

.mobile {
    display: block!important;
}

@media (min-width: 1024px) {
    .mobile {
        display: none!important;
    }
    
    .desktop {
        display: block!important;
    }
}