@font-face {
    font-family: 'Antonio';
    src: url('/files/fonts/antonio/Antonio-Light.eot');
    src: url('/files/fonts/antonio/Antonio-Light.eot?#iefix') format('embedded-opentype'),
        url('/files/fonts/antonio/Antonio-Light.woff2') format('woff2'),
        url('/files/fonts/antonio/Antonio-Light.woff') format('woff'),
        url('/files/fonts/antonio/Antonio-Light.ttf') format('truetype'),
        url('/files/fonts/antonio/Antonio-Light.svg#Antonio-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Antonio';
    src: url('/files/fonts/antonio/Antonio-Bold.eot');
    src: url('/files/fonts/antonio/Antonio-Bold.eot?#iefix') format('embedded-opentype'),
        url('/files/fonts/antonio/Antonio-Bold.woff2') format('woff2'),
        url('/files/fonts/antonio/Antonio-Bold.woff') format('woff'),
        url('/files/fonts/antonio/Antonio-Bold.ttf') format('truetype'),
        url('/files/fonts/antonio/Antonio-Bold.svg#Antonio-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Antonio';
    src: url('/files/fonts/antonio/Antonio-Regular.eot');
    src: url('/files/fonts/antonio/Antonio-Regular.eot?#iefix') format('embedded-opentype'),
        url('/files/fonts/antonio/Antonio-Regular.woff2') format('woff2'),
        url('/files/fonts/antonio/Antonio-Regular.woff') format('woff'),
        url('/files/fonts/antonio/Antonio-Regular.ttf') format('truetype'),
        url('/files/fonts/antonio/Antonio-Regular.svg#Antonio-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@grey: #d7d7d7;
@blue: #6588a8;
@blue_t: rgba(101, 136, 168, .7);

@font-title: 48px;
@font-content: 26px;

.bodyfont {
    font-family: 'Antonio';
    font-weight: 300;
}
html {
    scroll-behavior: smooth;
}
html,body {
/*	height:100%;*/
	width:100%;
	margin:0;
	padding:0;
	border:none;
}

body{
    font-size: 100%;
    .bodyfont;
}
.title, h2 {
    font-weight: bold;
    font-size: @font-title;
    text-transform: uppercase;
}
.content, p {
    font-size: @font-content;
}
.btn {
    text-transform: uppercase;
    font-weight: bold;
    font-size: @font-content;
    padding: 3px 17px 1px;
    border-radius: 0;
}
:focus, button:focus {
    outline: none;
}
#navtop, #copyright {
    background-color: black;
    color: white;
    min-height: 36px;
    font-family: 'Open Sans', san-serif;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    a {
        color: white;
        line-height: 1;
        i {
            font-size: @font-content;
        }
    }
}
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index:10;
    background-color: white;
}
.navbar {
    padding: 16px;
    .mobile {
        display: none;
    }
    .navbar-nav {
        flex-basis: 40%;
        justify-content: space-around;
        &.left {
            margin-right: 3rem;
        }
        &.right {
            margin-left: 3rem;
        }
    }
    h1 {
        text-align: center;
        margin-bottom: 0;
    }
    .nav-link {
        font-size: 30px;
        font-weight: bold;
        text-transform: uppercase;
        color: black;
    }
}

#brand-logo {
    width: 210px;
    transition: all 0.4s;
    &.active {
        width: 100px;
    }
}
footer .menus {
    display: flex;
    flex-grow: 1;
    align-items: center;
}
section {
    scroll-margin-top: 110px;
}
section:not(#banner):not(#gallery) {
    padding-top: 80px;
    padding-bottom: 80px;
}

.slick-prev, .slick-next {
    &:before {
        font-family: FontAwesome;
        font-size: @font-title;
        color: @blue;
    }
}
.slick-prev {
    &:before {
/*        content: '\f053';*/
        content: url('/images/layout/arrow-left.png');
    }
}
.slick-next {
    &:before {
/*        content: '\f054';*/
        content: url('/images/layout/arrow-right.png');
    }
}

#banner {
    position: relative;
}
#message {
    position: relative;
    margin: 0;
    .error, .success {
        position: absolute;
        top: -80px;
    }
}
#slider-banner {
    margin-bottom: 0;
    .bg-image {
        background-size: cover;
        height: ~'calc(100vh - 284px)';
    }
    .slick-dots {
        bottom: 16px;
        button:before {
            color: white;
            font-size: 14px;
        }
    }
}
#news-wrapper {
    position: absolute;
    top: 39px;
    left: 0;
    right: 0;
    bottom: 39px;
    display: flex;
    align-items: center;
}
#slider-news {
    max-width: 900px;
    color: white;
    #news-wrapper {

    }
    .title {
        background-color: @blue;
        border-bottom: 5px solid white;
        padding: 8px 38px 8px 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;

        span.date {
            font-size: 24px;
            font-weight: normal;
        }
    }
    .content {
        background-color: @blue_t;
        padding: 8px 38px 8px 70px;
        &.active {
            background-color: @blue;
        }
    }
    .news-title {
        font-size: 36px;
    }
    .news-content {
        p {
            font-size: 24px;
            font-weight: 300;
        }
        a {
            color: white;
            font-weight: normal;
        }
        .full {
            display: none;
            &.active {
                display: block;
            }
        }
        .ab_text {
            display: none;
            &.active {
                display: block;
            }
        }
        .read_more {
            border: 2px solid white;
            color: white;
            background-color: @blue;
            text-transform: uppercase;
            span.more {
                display: inline-block;
            }
            span.less {
                display: none;
            }
            &.active {
                span.more {
                    display: none;
                }
                span.less {
                    display: inline-block;
                }
            }
        }
    }
    .slick-prev, .slick-next {
        top: -20px;
        width: 30px;
        height: 30px;
        &:before {
            font-size: 30px;
        }
    }
    .slick-prev {
        left: 45%;
    }
    .slick-next {
        right: 45%;
    }
}
#mission {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#asbury-angels {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0,0,0,0.1) 2%, rgba(0, 0, 0, 0) 5%), @grey;
    .asbury-title {
        position: relative;
        #select_year {
            position: absolute;
            top: 0;
            right: 0;
            font-size: @font-content;
            padding: 3px 14px 0;
            option {
                font-size: 20px;
            }
        }
    }
    div.year {
        display: none;
        &.active {
            display: flex;
        }
        img {
            width: 100%;
        }
        .inductee {
            display: block;
/*            cursor: pointer;*/
            &.active {
                display: none;
            }
            .name {
                font-size: @font-content;
                margin-top: 8px;
                text-align: center;
            }
        }
        .inductee-detail {
            cursor: pointer;
            display: none;
            padding-top: 1rem;
            padding-bottom: 1rem;
            &.active {
                display: flex;
                flex-wrap: wrap;
                margin-right: -15px;
                margin-left: -15px;
                order: -1;
            }
            .content {
                font-size: @font-content;
            }
            .name {
                font-size: 39px;
            }
            .name, .description {
                font-weight: bold;
            }
            .profile p {
                text-align: justify;
            }
        }
    }
}
.text-gradient(@deg) {
     background: -webkit-linear-gradient(@deg, #eee, #222);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
#gallery {
    position: relative;
    #slider-gallery {
        margin-bottom: 0;
        .slick-prev:before {
/*            color: white;*/
           .text-gradient(0deg);
        }
        .slick-next:before {
/*            color: white;*/
            .text-gradient(180deg);
        }
        .slick-prev {
            z-index: 1;
            left: 50px;
        }
        .slick-next {
            right: 84px;
        }
        .bg-image {
            background-size: cover;
/*            height: ~'calc(100vh - 284px)';*/
            height: 50vw;
            .content {
                margin-bottom: 1rem;
            }
            .page-number {
                margin-bottom: 1rem;
                font-size: 20px;
                letter-spacing: 4px;
            }
        }
        .overlay {
            background: rgba(0,0,0,0.5);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            opacity: 1;
            transition: all .4s ease-in-out;
            button {
                background-color: white;
                width: fit-content;
            }
            &.active {
                opacity: 0;
                height: 0;
            }
        }
    }
    .btn_close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 30px;
        height: 0;
        opacity: 0;
        transition: all .4s ease-in-out;
        background-color: transparent;
        &:before, &:after {
            position: absolute;
            top: -2px;
            left: 12px;
            content: ' ';
            height: 30px;
            width: 2px;
/*            background-color: white;*/
            background: linear-gradient(90deg, #eee, #333);
            transform: rotate(90deg);
            transition: all .4s ease-in-out;
        }
        &.active {
            opacity: 1;
            height: 30px;
            &:before {
                transform: rotate(45deg);
            }
            &:after {
                transform: rotate(-45deg);
            }
        }
    }
}
#slider-sponsor {
    .slick-track {
        height: 200px;
        .image {
            padding: 0 32px;
            display: flex;
            align-items: center;
            img {
                width: 100%;
            }
        }
    }
    .slick-prev {
        top: 40%;
        left: -90px;
    }
    .slick-next {
        top: 40%;
        right: -90px;
    }
}
#contact {
    background-color: @blue;
    color: white;
    p {
        a {
            color: white;
            text-decoration: none;
            &:hover {
                text-decoration: none;
            }
        }
    }
    input:not([type=submit]) {
        width: 100%;
        font-size: 30px;
        padding: 10px 16px;
        margin-bottom: 1rem;
        background-color: @blue;
        border: 3px solid white;
        color: white;
        &::placeholder {
            color: white;
        }
    }
    input[type=submit] {
        font-size: 30px;
        font-weight: bold;
        text-tranform: uppercase;
        padding: 10px 3rem;
        background-color: white;
        color: @blue;
        &:hover {
            border: 3px solid white;
            background-color: @blue;
            color: white;
        }
    }
    form .col-12:last-of-type {
        text-align: right;
    }
}
footer {
    #copyright {
        background-color: black;
        color: white;
        .d-flex {
            height: 36px;
            a {
                color: white;
                text-decoration: none;
                &:hover {
                    text-decoration: none;
                }
            }
        }
    }
}
@media screen and (max-width: 1440px) {
    #gallery #slider-gallery {
        .slick-prev {
            left: 7px;
        }
        .slick-next {
            right: 23px;
        }
        .container {
            max-width: 90%;
        }
    }
    #slider-sponsor {
        max-width: 97%;
        margin: 0 auto;
        .slick-prev {
            left: -30px
        }
        .slick-next {
            right: -14px;
        }
    }
}
@media screen and (max-width: 991.98px) {
    .navbar {
        padding: 16px;
        .mobile {
            display: inline-block;
        }
        h1 {
            display: none;
        }
        .navbar-nav {
            margin: 0 !important;
        }
    }
    .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
    }

    .navbar-toggler.navbar-toggler {
        border-color: rgb(0,0,0);
    }
    #slider-banner .bg-image {
        height: 420px;
    }
    #news-wrapper {
        bottom: inherit;
    }
    #slider-news {
        max-width: 100%;
    }
    section:not(#banner):not(#gallery) {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    footer .menus {
        margin-left: 2rem;
        justify-content: space-between;
        .navbar-nav {
            flex-basis: 45%;
            &.right {
                text-align: right;
            }
        }
        .navbar-brand {
            display: none;
        }
    }
    #copyright {
        .container {
            max-width: 100%;
        }
        .row div {
            text-align: center !important;
            padding: 6px 15px;
            &:first-child {
                border-bottom: 1px solid white;
            }
        }
    }
}

@media screen and (max-width: 575.98px) {
    section {
        scroll-margin-top: 190px;
    }
    .title, h2 {
        font-size: 22px;
    }
    .content, p {
        font-size: 16px;
    }
    .btn {
        font-size: 18px;
    }
    .slick-prev, .slick-next {
        &:before {
            font-size: 28px;
        }
    }
    #slider-banner .bg-image {
        height: ~'calc(100vh - 228px)';
    }
    #slider-news {
        .slick-prev {
            left: 39%;
        }
        .slick-next {
            right: 39%;
        }
        .title {
            padding: 6px 15px;
            span.date {
                font-size: 16px;
            }
        }
        .content {
            padding: 6px 15px;
            button {
                font-size: 18px;
            }
        }
        .news-title {
            font-size: 22px;
        }
        .news-content p {
            font-size: 16px;
        }
    }
    #asbury-angels {
        .asbury-title {
            #selected_year {
                display: none;
            }
            #select_year {
                font-size: 22px;
                top: -6px;
                right: unset;
                margin-left: 8px;
                padding: 0;
            }
        }
        div.year {
            .inductee .name {
                font-size: 16px;
                margin-bottom: 10px;
            }
            .inductee-detail {
                margin-right: 0 !important;
                margin-left: 0 !important;
                .image, .content {
                    padding: 0;
                }
                .content {
                    font-size: 16px;
                }
                .name {
                    font-size: 22px;
                }
            }
        }
    }
    #gallery #slider-gallery {
        .slick-next {
            right: 47px;
        }
        .slick-next, .slick-prev {
            top: 80%;
        }
    }
    #slider-sponsor {
        .slick-prev {
            z-index: 1;
        }
        .slick-next {
/*            right: -30px;*/
            right: 8px;
        }
        .slick-track {
/*            height: 90px;*/
            .image {
                padding: 0 10px;
            }
        }
    }
    #contact {
        input:not([type=submit]) {
            font-size: 16px;
            padding: 7px 12px;
            margin-bottom: 8px;
        }
        input[type=submit] {
            font-size: 18px;
            width: 100%;
            margin-top: 8px;
        }
    }
    footer {
        .navbar {
            justify-content: center;
            .mobile {
                margin-right: 0;
            }
            .nav-link {
                font-size: 22px;
                padding: 0;
            }
        }
        .menus {
            margin-left: 0;
        }
    }
}
@media screen and (max-width: 767px) {
    #gallery #slider-gallery .bg-image {
        height: 300px;
    }
    #slider-sponsor .slick-track {
        height: 90px;
    }
}
@media (orientation: landscape) and (max-width: 767px) {
    #slider-banner .bg-image {
        height: 100vh;
    }
    #gallery #slider-gallery .bg-image {
        height: 100vh;
    }
    #slider-sponsor .slick-slide {
/*        height: 130%;*/
    }
}