@font-face {
    font-family: "Font Awesome 5 Free";
    src: url(../vendor/font-awesome/webfonts/fa-regular-400.woff);
}

@font-face {
    font-family: 'Montserrat Summernote';
    font-style: normal;
    font-weight: 400;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../vendor/slick/slick/fonts/slick.eot');
    src: url('../vendor/slick/slick/fonts/slick.eot?#iefix') format('embedded-opentype'), url('../vendor/slick/slick/fonts/slick.woff') format('woff'), url('../vendor/slick/slick/fonts/slick.ttf') format('truetype'), url('../vendor/slick/slick/fonts/slick.svg#slick') format('svg');
}

/* Slick Slider */
.carousel {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}
.carousel.slick-initialized {
    visibility: visible;
    opacity: 1;
}

/* Arrows */
/* .slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;

    z-index: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}

.slick-prev:before,
.slick-next:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: 25px;
}
[dir='rtl'] .slick-prev {
    right: 25px;
    left: auto;
}
.slick-prev:before {
    content: '←';
}
[dir='rtl'] .slick-prev:before {
    content: '→';
}

.slick-next {
    right: 25px;
}
[dir='rtl'] .slick-next {
    right: auto;
    left: 25px;
}
.slick-next:before {
    content: '→';
}
[dir='rtl'] .slick-next:before {
    content: '←';
} */

/* Dots */
.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 1rem 0;
    list-style-type: none;

    position: absolute;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    bottom: 0;
}
.slick-dots li {
    margin: 0 0.25rem;
}
.slick-dots button {
    display: block;
    width: .5rem;
    height: .5rem;
    padding: 0;
    border: none;
    border-radius: 100%;
    text-indent: -9999px;
}
.slick-dots li.slick-active button {
    background-color: #000;
}
.banner-video-container {
    position: relative;
    width: 100%;
    height: 100%;

    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;
}
.banner-video-icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    content: "\f144";
    font-family: "Font Awesome 5 Free";
    font-size: 100px;
    color: #FFF;
    cursor: pointer;
    z-index: 2;
}
.banner-video-icon:hover:before {
    color: #DDD;
}
.banner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
}
/* End Of Slick */

.font-montserrat {
    font-family: Montserrat, sans-serif;
}

.nav-logo {
    width: 6rem;
}

.navbar-custom {
    background-color: #fff;
    -webkit-box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.75);
    box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.75);
}

.navbar-custom-toggler {
    border: none;
    padding: 0;
}

.search-toggle {
    cursor: pointer;
}

.search-icon {
    font-size: 1.2rem;
}

.navbar-toggler-icon {
    outline: none;
}

#searchbar {
    position: fixed;
    background-color: #FFF;
    z-index: 1020;
    width: 100%;
    height: 4rem;
    top: -6rem;
    -webkit-box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.75);
            box-shadow: 0px 2px 3px -3px rgba(0,0,0,0.75);
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    transition: all .5s ease 0s;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#searchbar.active {
    top: 4rem;
}

#searchbar.active < .navbar {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
}

#searchbar input {
    border-radius: 1rem;
    color: #000;
    border: 1px solid #000000;
}

#searchbar input:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.nav-link-custom {
    font-family: Montserrat;
    font-weight: 700;
    font-size: .9rem;
    color: #000 !important;
    border-bottom: 4px solid transparent;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.carousel-indicators li {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
}

#top-icon {
    margin: 5rem 0;
}

.icon-container {
    height: 4.5rem;
}

.icon-main {
    height: 70px;
}

#facility {
    margin-bottom: 3rem;
}

.facility-title {
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    margin-top: 4rem;
    margin-bottom: 3.5rem;
}

.facility-image {
    position: relative;
    height: 240px;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
}

.facility-toggle-container {
    position: absolute;
    left: 0;
    width: 40px;
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.facility-toggle-icon[aria-expanded="false"] {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
}

.facility-toggle-icon[aria-expanded="true"] {
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.facility-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .2);
    transition: background-color 1s;
}

.facility-image:hover .facility-overlay {
    background-color: transparent;
}

.facility-text {
    position: absolute;
    left: 16%;
    top: 10%;
    color: #fff;
    z-index: 1;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,1);
}

.facility-toggle-icon {
    position: absolute;
    font-size: 2rem;
    color: #fff;
    bottom: 0;
    cursor: pointer;
}

.sub-facility-section {
    padding: 1rem 0;
}

.sub-facility-card {
    background-color: #F8F8F7;
    border: none;
}

.sub-facility-content {
    padding: 3rem;
    font-family: Montserrat, sans-serif;
    font-weight: 300;
}

.sub-facility-content p {
    font-family: Montserrat, sans-serif;
}

.sub-facility-content:not(:last-child) {
    border-bottom: 1px solid #CFCFCE;
}

.sub-facility-socmed-container {
    margin-right: 3rem;
}

.sub-facility-socmed-icon {
    font-size: 1.3rem;
    margin-right: 1rem;
}

.sub-facility-socmed-link,
.sub-facility-socmed-link:hover,
.sub-facility-socmed-link:visited
{
    text-decoration: none;
    color: #000;
}

#join-us {
    margin-bottom: 5rem;
}

.join-us-title {
    margin-left: 10px;
}

.join-us-container {
    padding: 20px;
}

.icon-link,
.icon-link:hover,
.icon-link:visited {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.news-date {
    font-size: .8rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.news-link,
.news-link:hover,
.news-link:visited {
    color: #000;
    text-decoration: none;
}

.news-link-mobile {
    font-size: .8rem;
}

#footer {
    background-color: #F8F8F7;
}

.footer-link-list {
    list-style-type: none;
}

.footer-link-list li:not(:last-child) {
    margin-bottom: .5rem;
}

.footer-link,
.footer-link:hover,
.footer-link:visited {
    color: #000;
    text-decoration: none;
}

.input-newsletter {
    color: #000;
    border: 1px solid #000000;
}

.form-newsletter {
    position: relative;
}

.form-newsletter .form-control-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 1.5rem;
    height: 1rem;
    pointer-events: none;
    top: .6rem;
    right: 0;
    color: #000;
}

.social-icon {
    background-color: #000;
    height: 2rem;
    border-radius: 2rem;
    width: 2rem;
    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;
}

.social-icon:not(:last-child) {
    margin-right: .5rem;
}

.social-icon svg {
    color: #fff;
}

/* News Page */
.news-page #news {
    margin-top: 7rem;
}

.news-page .news-breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.news-page .news-breadcrumb .breadcrumb-item a,
.news-page .news-breadcrumb .breadcrumb-item a:hover,
.news-page .news-breadcrumb .breadcrumb-item a:visited {
    text-decoration: none;
}

.news-page .select-filter-articles {
    border-radius: 1rem;
    color: #000;
    border: 1px solid #000000;
}

.news-page .select-filter-articles:focus {
    -webkit-box-shadow: none;
            box-shadow: none
}

.news-page .btn-filter {
    font-weight: 500;
    width: 100px;
}

.news-page .pagination .page-item:not(:last-child) {
    margin-right: 1rem;
}

.news-page .pagination .page-item.active .page-link {
    background-color: #EC3337;
    color: #FFF;
}

.news-page .pagination .page-item .page-link {
    color: #000;
    border-radius: 10px;
    padding: .75rem 1.15rem;
    border: none;
    background-color: #F8F8F8;
    font-family: Montserrat, sans-serif;
}

/* About Page */
.about-page .masthead {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-page .masthead .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
}

.about-page #about-text {
    background-color: #F8F8F7;
}

/* Membership Page */
.membership-page #membership {
    /*min-height: 70vh;*/
    /*margin-top: 6rem;*/

    /*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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;*/
}

.btn-success-custom {
    padding: .8rem 3rem;
    border-radius: 30px;
}

/* Store Page */
.store-page #store {
    margin-top: 6rem;
    min-height: 65vh;
}

.store-page .form-locator {
    position: relative;
}

.store-page .locator-label {
    font-size: .8rem;
}

.store-page .form-locator .form-control-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 1.5rem;
    height: 1rem;
    pointer-events: none;
    top: .8rem;
    left: 1rem;
    color: #000;
}

.store-page .form-locator .input-locator {
    border-radius: 1rem;
    color: #000;
    border: 1px solid #000000;
    padding-left: 3rem;
}

.store-page .form-locator .input-locator:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
}

.store-page .store-result .store-list {
    border-top: 1px solid #DFDFDF;
}

.store-page .store-result .store-list:nth-child(odd) {
    background-color: #F8F8F8;
}

.store-page .store-result .store-list:last-child {
    border-bottom: 1px solid #DFDFDF;
}

.store-page .store-result .store-list p {
    font-size: .8rem;
}

.store-page #map {
    height: 100%;
    width: 100%;
}

.store-page .select2-container {
    border: 1px solid #ddd;
    /* border-radius: 1rem; */
    padding-left: 0.5rem;
}

.store-page .select2-container .select2-selection--single {
    height: 40px;
}

.store-page .select2-container .select2-selection--single:focus {
    outline: none;
}

.store-page .select2-search--dropdown .select2-search__field {
    border: none;
    border-bottom: 1px solid #000;
}

.store-page .select2-search--dropdown .select2-search__field:focus {
    outline: none;
}

.store-page .select2-container .select2-selection--single .select2-selection__rendered {
    position: absolute;
    top: 7px;
}

.store-page .select2-selection__placeholder {
    color: #6c757d;
}

/* 404 Page */
.error-page #error {
    margin-top: 4rem;
}

.error-page .container-error {
    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;

    height: 100%;
}

.error-page .container-error img {
    width: 40rem;
}

@media (max-width: 576px) {
    .membership-page #membership {
        padding: 0 2rem;
    }

    .news-page .pagination .page-item:not(:last-child) {
        margin-right: .8rem;
    }

    .news-page .pagination .page-item .page-link {
        font-size: .8rem;
        padding: .5rem .75rem;
    }

    .slick-dots {
        bottom: -20px;
    }

    .banner-video-icon:before {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .membership-page #membership {
        /*margin-top: 6rem;*/
        margin-bottom: 3rem;
    }

    .store-page #map {
        height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .membership-page #membership {
        margin-top: 3rem;
    }
}

@media (min-width: 992px) {
    .nav-item {
        padding: .5rem 2rem !important;
    }

    #carousel-section {
        margin-top: 7.5rem;
    }

    .nav-link-custom:hover, .nav-link-custom.active {
        /* border-bottom: 4px solid #00A759; */
        border-bottom: 4px solid #FFF;
        -webkit-transition: border-bottom .3s ease;
        -o-transition: border-bottom .3s ease;
        transition: border-bottom .3s ease;
    }
}

@media (max-width: 992px) {
    #carousel-section {
        margin-top: 4rem;
    }

    .container-fullwidth {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-item {
        padding: .5rem 1rem !important;
    }
}
