/*------------------------------------*\
  SETTINGS
\*------------------------------------*/

body {
    font-family: "Roboto", "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    background-color: #F6F9F9;
    color: #292929;
    font-size: 16px;
    font-weight: 400;
}

body.fixed {
    height: 100vh;
    overflow: hidden;
}

a {
    color: #11c1af;
    transition: 0.3s;
}

a:hover {
    color: #3AA9A3;
    text-decoration: none;
}


ul {
    margin-bottom: 0;
}


b, strong {
    font-weight: 700;
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
}

button:focus {
    outline: none;
}


/* Layout */
.main {
    overflow: hidden;
}

.container {
    position: relative;  
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
}

.img-autofit,
.img-autofit img {
    max-width: 100%;
    height: auto !important;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media (min-width: 1200px) and (max-width: 1420px) {
    .header .container {
        padding-right: 15px;
        padding-left: 15px;
    }
}




/**
 *  Heading
 */

.section-heading .subheading {
    font-size: 36px;
    line-height: 1.5em;
    letter-spacing: 1px;
    color: #82D7D0;
}

.section-heading .heading {
    font-size: 28px;
    line-height: 0.5em;
    letter-spacing: 2px;
}



/**
 *  Form
 */

.form-square {
    width: 440px;
    max-width: 90%;
    background-color: #fff;
    padding: 40px 30px;
    margin: 20px auto 80px;
    border-radius: 25px;
}

    .form-square .button {
        width: 100%;
        margin-top: 30px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

.member-form .form-label {
    min-width: 140px;
}

.form-help a {
    color: #5dc7be;
    display: inline-block;
    font-size: 14px;
    border-bottom: 1px solid #5dc7be;
}




/*------------------------------------*\
  FONT / COLORS, BG & BORDER
\*------------------------------------*/

.color-primary {
    color: #3AA9A3;
}

.color-normal {
    color: #212529;
}


.color-light {
    color: #fff;
}

.color-danger {
    color: #FF0000;
}

.bg-color-primary {
    background-color: #6d9734;
}


.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ellipsis-line-1 {
    -webkit-line-clamp: 1;
}

.ellipsis-line-2 {
    -webkit-line-clamp: 2;
}

.ellipsis-line-3 {
    -webkit-line-clamp: 3;
}

.text-small {
    font-size: 14px;
}




/*------------------------------------*\
  UTILITIES
\*------------------------------------*/

.add-shadow {
    box-shadow: 10px 10px 30px rgb(0 0 0 / 10%);
}

.list-style-none {
    list-style: none;
}

.list-style-decimal,
.list-style-decimal li {
    list-style: decimal;
}

.list-style-disc {
    padding-left: 3em;
}

.list-style-disc,
.list-style-disc li {
    list-style: disc;
}

.list-style-cjk,
.list-style-cjk li {
    list-style: cjk-ideographic;
}


.flex-center {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/*------------------------------------*\
  COMPONENTS
\*------------------------------------*/

/**
 *  Button
 */

.button {
    display: inline-block;
    border: 1px solid transparent;
    background-color: transparent;
    font-size: 16px;
    padding: 8px 28px;
    transition: 0.3s;
}

button.button {
    outline: none;
    border: none;
    cursor: pointer;
}

.button-primary {
    background-color: #5dc7be;
    color: #fff !important;
}

.button-primary:hover {
    background-color: #D7EFED;
    color: #5dc7be !important;
}

.button-gray {
    background-color: #eee;
    color: #333 !important;
}

.button-gray:hover {
    background-color: #ddd;
    color: #292929 !important;
}

.button-light {
    background-color: #FFFFFF;
    color: #62B5AA;
}

.button-outline-primary {
    border-color: #3AA9A3;
    color: #3AA9A3;
}

.button-outline-primary:hover {
    background-color: #3AA9A3;
    color: #fff;
}

.button-rounded {
    border-radius: 25px;
}

.button-link {
    color: #3AA9A3;
    padding: 0;
}

    .button-link svg {
        height: 26px;
    }



.button-icon i::after {
    content: "";
    position: relative;
    top: 4px;
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #efefef;
    margin-left: 10px;
    margin-right: 5px;
}

.button-icon:hover i::after {
    background-color: #9ac9c6;
}


/**
 *  Dropdown
 */

.drop__content {
    display: none;
}

a.drop__button {
    display: block;
}

.drop__content ul {
    padding-left: 0;
    margin-bottom: 0;
}

.drop__content li {
    list-style: none;
}

.drop:hover .drop__content {
    display: block;
}



/**
 *  Collapse
 */

.collapse__content {
    display: none;
}

.collapse__item.open .collapse__content {
    display: block;
}




/**
 *  Breadcrumb
 */

.page__breadcrumb {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
}

    .page__breadcrumb ul {
        font-size: 14px;
        padding-left: 0;
    }

        .page__breadcrumb li {
            list-style: none;
            display: inline;
        }

        .page__breadcrumb a {
            position: relative;
            color: #525252;
        }

        .page__breadcrumb a::after {
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            content: "\f054";
            margin-left: 5px;
            margin-right: 5px;
            color: #525252;
        }

        .page__breadcrumb li:last-child a::after {
            display: none;
        }




/**
 *  Checkbox / Radio Button
 */

.option-wrap {
    display: block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.option-wrap input {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    cursor: pointer;
    z-index: 1;
}

.option-label {
    font-size: 14px;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 1px;
}
  
.option-wrap:hover input ~ .checkmark {
    background-color: transparent;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.option-wrap input:checked ~ .checkmark {
    border-color: #3aa9a3;
    background-color: #3aa9a3;
}

.option-wrap input:checked ~ .checkmark:after {
   display: block;
   background-color: #3aa9a3;
}

.option-wrap .checkmark:after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.option-wrap.rounded input ~ .checkmark {
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.option-wrap.rounded input:checked ~ .checkmark {
    border-color: #bababa;
    background-color: #ffffff;
}

.option-wrap.rounded input ~ .checkmark:after {
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #3aa9a3;
    border: none;
}


/**
 *  Image Container
 */

 .image-box {
    display: flex !important;
}

    .image-box-outer {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        margin: 0;
        line-height: 0;
    }

    .image-box-outer.ratio-3-2 {
        padding-bottom: 66.66%;
    }

    .image-box-outer.ratio-16-9 {
        padding-bottom: 56.25%;
    }

        .image-box-inner {
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background: #f1f1f1;
        }

            .image-box-inner img {
                width: 100%;
                height: 100%;
                object-position: 50% 50%;
                object-fit: cover;
            }


.image-hover--zoom img {
    transition: 0.3s;
}

.image-hover--zoom:hover img {
    transform: scale(1.1);
}



/**
 *  Icon box
 */

.icon-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
}

.icon-box__i {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 16px;
    color: #fff;
    background-color: #3AA9A3;
    border-radius: 50%;
    transition: 0.3s;
}

.icon-box:hover .icon-box__i {
    background-color: #6bd8d2;
}



.icon-box__info .title {
    font-size: 18px;
}



/**
 *  Page Ppagination
 */

.page__pagination {
    margin-top: 50px;
}

.page__pagination .pagination {
    justify-content: center;
    padding-left: 0;
}

    .pagination .page-item {
        margin-right: 8px;
        list-style: none !important;
    }

    .pagination .page-item:last-child {
        margin-right: 0;
    }


    .pagination .page-link {
        display: inline-block;
        padding: 5px 12px;
        color: #3AA9A3;
        font-size: 15px;
        line-height: 21px;
        border-radius: 50%;
        border-color: #3aa9a3;
    }

    .pagination .page-link.active {
        background: #3AA9A3;
        color: #fff;
    }

    .pagination .page-link.active svg {
        stroke: #fff;
    }

    .pagination .page-quick-link {
        padding: 6px 6px 0;
    }

    .pagination .page-item .page-quick-link {
        background: transparent;
        color: #3AA9A3;
        border-radius: 50%;
        border-color: #3aa9a3;
    }

    .pagination .page-item .page-quick-link svg {
        stroke: #3AA9A3;
    }

    
    .pagination .page-item.disabled .page-link {
        color: #888;
        border-color: #888;
    }

    .pagination .page-item.disabled .page-link svg {
        stroke: #888;
    }


.page-btns {
    margin-left: -5px;
    margin-right: -5px;
    list-style: none;
    padding-left: 0;
}
  
    .page-btns .page-item {
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

        .page-btns .page-item .page-link {
            width: 30px;
            height: 30px;
            line-height: 30px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #3aa9a3;
        }

        .page-btns .page-item .page-link.active {
            background-color: #3aa9a3;
            color: #fff;
        }



/**
 *  Slider
 */

.hero-slider {
    position: relative;
}

.hero-slider::after {
    content: "";
    position: absolute;
    width: 66%;
    height: 80%;
    right: 0;
    bottom: -90px;
    background-color: #d7efed;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.hero-slider .slider {
    position: relative;
    z-index: 9;
}

.hero-slider .container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15px;
    background-color: transparent;
    width: calc(100% - 30px);
    height: 100%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    z-index: 3;
}

.hero-slider .image-box-outer {
    padding-bottom: 40%;
}


.slider .swiper-button-prev, .slider .swiper-container-rtl .swiper-button-next {
    left: 20%;
}

.slider .swiper-button-next, .slider .swiper-container-rtl .swiper-button-prev {
    right: 20%;
}

.slider .swiper-button-next:after, .slider .swiper-button-prev:after {
    font-size: 16px;
    color: #fff;
}

.swiper-pagination-bullet {
    background: transparent;
    border: 1px solid #fff;
    width: 10px;
    height: 10px;
    opacity: 0.8;
}

.swiper-pagination-bullet:focus {
    outline: none;
}

.swiper-pagination-bullet-active {
    background: #fff;
}


.banner-wrapper {
    max-width: 100%;
}

    .banner {
        width: 100%;
        padding-bottom: 60%;
        height: 0;
        position: relative;
    }

        .banner img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
        }



.slider-container {
    position: relative;
}


.swiper-carousel {
    width: 100%;
}


.carousel-arrow {
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #82D7D0;
    border-radius: 50%;
    transition: 0.3s;
}


.carousel-arrow:hover {
    color: #86C3BB;
    background-color: #D7EFED;
}

.carousel-arrow:after, .carousel-arrow:after {
    font-size: 18px;
}


.carousel-controls .carousel-prev:after,
.carousel-controls .carousel-next:after {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.carousel-pagination {
    width: 100%;
}

    .carousel-pagination .swiper-pagination-bullet {
        background: #E5E5E5;
        width: 15px;
        height: 15px;
        margin-left: 3px;
        margin-right: 3px;
    }

    .carousel-pagination .swiper-pagination-bullet-active {
        background: #3AA9A3;
    }


.related-photos .carousel-arrow {
    margin-top: -27px;
    opacity: 0.8;
}

.related-photos .swiper-button-prev {
    left: -25px;
}

.related-photos .swiper-button-next {
    right: -25px;
}

@media(max-width: 576px) {
    .hero-slider::after {
        bottom: -30px;
    }

    .related-photos .swiper-button-prev {
        left: -12px;
    }
    
    .related-photos .swiper-button-next {
        right: -12px;
    }
}



/**
 *  Header
 */

.header {
    position: relative;
    z-index: 999;
}

.header__content {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    height: 100px;
}

    .header__logo img {
        height: 70px;
    }

header li {
    list-style: none;
}



.header__nav {
    margin-left: auto;
}


    .header__nav-menu {
        position: relative;
        top: 2px;
        margin-bottom: 0;
        padding-left: 0;
        z-index: 99;
    }

    
    .header__nav-menu li {
        position: relative;
    }

    .header__nav-menu a {
        color: #292929;
    }

    .header__nav-menu a.button {
        border-radius: 25px;
        padding: 6px 10px;
    }

    .header__nav .drop:hover > a,
    .header__nav-menu > li > a:hover,
    .header__nav-menu > li > a.active {
        color: #3ca79e !important;
        background-color: #D7EFED;
    }


    .header__nav li:hover .button-icon i::after {
        background-color: #9ac9c6;
    }
    


.header__nav-logo {
    position: relative;
    z-index: 1;
}

    .header__nav-logo a {
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }

        .header__nav-logo .image {
            height: 90px;
        }

        .header__nav-logo .image img {
            padding: 3px;
            height: 100%;
        }

    .logo-text {
        color: #414141;
        margin-left: 10px;
    }

        .logo-text .tw {
            letter-spacing: 3px;
            font-size: 22px;
        }

        .header__nav-menu a.button-rounded {
            margin-left: 20px;
            padding-left: 12px !important;
            padding-right: 12px !important;
        }


@media (min-width: 1200px) and (max-width: 1420px) {
    .logo-text .tw {
        letter-spacing: 1px;
        font-size: 20px;
    }

    .logo-text .en {
        font-size: 12px;
    }
    
    .header__nav-menu a.button {
        padding: 6px 7px;
    }

    .header__nav-menu a.button-rounded {
        margin-left: 8px;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
        

@media(max-width: 576px) {
    .logo-text .tw {
        font-size: 20px;
    }

    .logo-text .en {
        font-size: 14px;
    }

    .header__logo {
        height: 80px;
    }

        .header__logo img {
            height: 60px;
        }
}



/**
 *  Nav Drop
 */


.header__nav .drop__content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    padding-top: 15px;
}

.header__nav .drop__content::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #ffffff transparent;
}

.header__nav .drop__content ul {
    background-color: rgb(255 255 255 / 96%);
    box-shadow: 10px 10px 20px 2px rgb(125 125 125 / 10%);
    border-radius: 10px;
}

.header__nav .drop__content li {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    list-style: none;
    margin-bottom: 2px;
}


.header__nav .drop__content li:last-child {
    border-bottom: none;
}

    .header__nav .drop__content img {
        height: 9px;
        margin-right: 5px;
    }

    .header__nav .drop__content a {
        display: inline-block;
        width: 100%;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .header__nav .drop__content li:last-child a {
        border-bottom: none;
    }

    .header__nav .drop__content a:hover {
        color: #3AA9A3;
    }


/* Mobile Nav */
.mobile__nav {
    position: relative;
    display: none;
    z-index: 99;
}

    .mobile-toggle {
        position: absolute;
        top: 30px;
        right: 14px;
        width: 22px;
        height: 14px;
        padding: 15px 0;
        cursor: pointer;
        z-index: 1;
        display: none;
    }

        .toggle-icon {
            width: 22px;
            height: 14px;
            position: relative;
            top: -12px;
            margin: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;
        }
          
        .toggle-icon span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: #313131;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }
    
        .toggle-icon span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
          
        .toggle-icon span:nth-child(2) {
            top: 6px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }
          
        .toggle-icon span:nth-child(3) {
            top: 12px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .toggle-icon.open span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: -1px;
            left: 0;
        }
          
        .toggle-icon.open span:nth-child(2) {
            width: 0%;
            opacity: 0;
        }
          
        .toggle-icon.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 14px;
            left: 0;
        }
    
    .mobile-sidebar {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 120px);
        overflow: scroll;
        transition: .3s;
    }

        .mobile-sidebar > ul {
            padding-left: 0;
            margin-left: auto;
            margin-right: auto;
        }

            .mobile-sidebar li {
                display: block;
            }
            
            .mobile-sidebar li a {
                display: flex;
                align-items: center;
                padding: 14px 20px;
                width: 100%;
                color: #292929;
                letter-spacing: 2px;
                font-size: 16px;
                border-bottom: 1px solid #f1f1f1;
                background-color: #ffffff;
            }

            .mobile-sidebar li a svg {
                margin-right: 5px;
            }

            .mobile-sidebar .text-en {
                font-size: 12px;
            }
    
    .slide-sidebar.active {
        top: 120px;
    }

    .mobile-sidebar .collapse__button {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-sidebar .collapse__button::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f078";
        font-size: 14px;
        transition: 0.3s;
    }

    .mobile__drop.open .collapse__button::after {
        transform: rotate(90deg);
    }

    .mobile-sidebar .collapse__item .collapse__content {
        display: none;
    }

    .mobile-sidebar .drop.open .drop__button {
        background-color: #3AA9A3;
    }

    .mobile-sidebar .collapse__content > ul {
        padding-left: 0;
    }

    .mobile-sidebar .collapse__content a {
        font-size: 15px;
        background-color: #f6f9f9;
    }

    .mobile-sidebar .collapse__content a:hover {
        color: #3AA9A3;
    }

@media (max-width: 1211px) {
    .header__nav-logo {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header__nav-logo .image {
        height: 55px;
    }

    .header__nav {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .mobile__nav.active {
        display: block;
        top: 80px;
    }
}

@media (max-width: 576px) {
    .header__nav-logo .logo-text .en {
        font-size: 12px;
    }
}


/**
 *  Back to Top
 */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #525252;
    border-radius: 50%;
    z-index: 999;
    transition: 0.3s;
}

.back-to-top__inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

    .back-to-top svg {
        width: 30px;
        height: 30px;
        stroke: #fff;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }


.back-to-top:hover {
    opacity: 0.8;
}

@media(max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 15px;
    }

        .back-to-top svg {
            width: 20px;
            height: 20px;
        }
}



/**
 *  Float Menu
 */

.float-menu {
    position: fixed;
    top: 25%;
    width: 1110px;
    text-align: right;
    display: none;
    z-index: -1;
}

    .float-menu > div {
        width: 40px;
        margin-left: auto;
    }

    .float-menu a {
        display: inline-block;
        margin-bottom: 8px;
        margin-right: -40px;
    }

    .float-menu img {
        width: 40px;
        height: 40px;
    }

@media (max-width: 576px) {
    .float-menu {
        display: none;
    }
}






/*------------------------------------*\
  Page
\*------------------------------------*/

/**
 *  Home
 */


.overlay {
    position: relative;
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.overlay-content {
    z-index: 2;
}

/* news */
.home__news {
    position: relative;
    margin-top: 30px;
}

    .home__news .carousel-controls {
        display: flex;
        position: absolute;
        right: 0px;
        top: -35px;
    }

    .home__news .carousel-arrow {
        position: relative;
        left: 0;
        right: 0;
        margin-right: 12px;
    }

    
@media(max-width: 991px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .home__news {
        margin-top: 0;
    }

    .home__news .carousel-controls {
        right: 24px;
        top: -25px;
    }

    .home__news .carousel-arrow {
        margin-right: 0;
        margin-left: 10px;
    }

    .carousel-arrow:after, .carousel-arrow:after {
        font-size: 12px;
    }
}
    


/* about */
.home__about .horizonal-card {
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
}


@media(max-width: 991px) {
    .home__about .horizonal-card {
        padding-left: 15px;
        padding-right: 15px;
    }

        .home__about .horizonal-card .home__about-image {
            height: 200px;
        }
}




/**
 *  Page
 */

.page-banner {
    height: 400px;
}

.page__wrapper {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 120px;
}


/**
 *  Sidebar
 */

.page__sidebar {
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
}

    .page__sidebar a {
        display: block;
        color: #292929;
        padding: 10px 24px 10px 24px;
        border-bottom: 1px solid #CBCBCB;
    }

    .page__sidebar a.active,
    .page__sidebar a:hover {
        color: #fff;
        background-color: #3AA9A3;
        border-color: #90c5c3;
    }

    .page__sidebar svg {
        fill: #525252;
        stroke: #525252;
    }

    .page__sidebar a.active svg,
    .page__sidebar a:hover svg {
        fill: #fff;
        stroke: #fff;
    }

    .page__sidebar ul {
        padding-left: 0;
        margin-bottom: 0;
    }

    .page__sidebar li {
        list-style: none;
    }

    .page__sidebar .title {
        background-color: #5dc7be;
        color: #fff;
        font-size: 20px;
        padding: 10px 24px;
        margin-bottom: 0;
    }

    .page__sidebar .collapse__content {
        background-color: #e9ecef;
    }

    .page__sidebar .collapse__content a {
        padding-left: 40px;
    }

    .page__sidebar .collapse__item.open > a.active {
        background-color: #2d837e;
    }

    .page__sidebar .collapse__item.open .collapse__content a.active {
        background-color: #d8efee;
        color: #525252;
    }

    
 
/**
 *  Page mobile menu
 */ 

.page__mobile__menu {
    width: 100%;
    background-color: #3AA9A3;
    margin-bottom: 20px;
}

    .page__mobile__menu .menu {
        list-style: none;
        padding-left: 0;
    }

    .page__mobile__menu .collapse__button {
        display: flex;
        justify-content: space-between;
        line-height: 42px;
        padding-left: 20px;
        padding-right: 20px;
        color: #fff;
    }

    .page__mobile__menu .collapse__button::after {
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        content: "\f078";
        font-size: 12px;
    }

    .page__mobile__menu .collapse__content {
        background-color: #fff;
    }

    .page__mobile__menu .collapse__content a {
        display: block;
        padding: 8px 20px;
        color: #292929;
        border-bottom: 1px solid #eee;
    }

    .page__mobile__menu .collapse__content a svg {
        fill: #292929;
    }



/**
 *  Content
 */ 

.page__content {
    flex: 1;
    padding-left: 80px;
}

    .page__content .content {
        margin-top: 40px;
    }


.page__full {
    display: block;
}
.page__full .page__content {
    padding-left: 0;
    flex: unset;
}


@media (max-width: 991px) {
    .page__content {
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .page__wrapper {
        padding-top: 20px;
    }
    
}


/**
 *  About
 */ 

.terms .item {
    display: flex;
    margin-bottom: 5px;
}

.terms .label {
    flex-shrink: 0;
    width: 80px;
}

.page__about .company-history .item {
    display: flex;
    margin-bottom: 10px;
}

    .page__about .company-history .date {
        flex-shrink: 0;
        width: 80px;
    }


.page__about .card {
    border-radius: 15px !important;
    overflow: hidden;
}

.page__about .card-header {
    background-color: #fff;
    border-bottom: 1px solid #d5dfdf;
}

.page__about .regulations .item {
    display: flex;
    margin-bottom: 20px;
}

    .page__about .regulations .label {
        width: 100px;
        flex-shrink: 0;
    }

    .page__about .regulations .accordion .btn {
        text-align: left;
        padding-left: 35px;
        color: #292929;
        font-size: 20px;
    }

    .page__about .regulations .accordion .btn:hover,
    .page__about .regulations .accordion .btn:focus {
        text-decoration: none;
    }


    .page__about .collapse-icons {
        position: absolute;
        top: 19px;
        left: 20px;
        color: #3AA9A3;
        font-size: 20px;
    }
    
    .page__about .collapse-icons .opened {
        display: none;
    }
    
    .collapsing ~ .collapse-icons .opened,
    .collapse.show ~ .collapse-icons .opened {
        display: block;
    }

    .collapsing ~ .collapse-icons .closed,
    .collapse.show ~ .collapse-icons .closed {
        display: none;
    }


.organization .thead {
    background-color: #5dc7be;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
}

    .organization .thead th {
        font-weight: 300;
    }




/**
 *  Post
 */ 

.post {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.3s;
}

.post .image-box {
    border-bottom: 1px solid #eee;
}

    .post-title {
        font-weight: 700;
        line-height: 1.3em;
    }

    .post-title a {
        color: #292929;
    }

    .post-title a:hover {
        color: #3AA9A3;
    }

    .post-date {
        font-size: 14px;
    }

    .post-summary {
        line-height: 1.5em;
        font-size: 15px;
        height: 68px;
    }



.post__header {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

    .post__title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .post__date {
        font-size: 14px;
    }


    .post__text img {
        max-width: 100%;
        height: auto !important;
    }


.file-download a {
    color: #525252;
    font-size: 15px;
}  

    .file-download i {
        font-size: 20px;
    }


.post__share img {
    width: 30px;
    height: 30px;
}



.blog-post {
    transition: 0.3s;
}

.blog-post:hover {
    background-color: #3AA9A3;
}


.blog-post__text {
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .blog-post__date {
        font-size: 14px;
    }

    .blog-post__summary {
        height: 72px;
    }

    .blog-post:hover .blog-post__date,
    .blog-post:hover .blog-post__title a,
    .blog-post:hover .blog-post__summary {
        color: #fff;
    }

    .blog-post:hover .button-primary {
        background-color: #5dc7be;
        color: #414141;
    }




/**
 *  Page Member
 */ 

.page__member input,
.page__member select {
    width: 100%;
    padding: 8px 15px;
    margin: 15px 0;
    background-color: #ffffff;
    letter-spacing: 1px;
    border-color: #f1f1f1;
}

.page__member input:focus,
.page__member select:focus {
    box-shadow: 0 0 0 0.2rem rgb(58 169 163 / 25%);
}

.page__member select {
    width: 140px;
    margin-left: 0;
    margin-right: 0;
    color: #5dc7be;
}

.page__member input:focus {
    outline: none;
}

.page__member ::placeholder {
    color: #A3A3A3;
    font-size: 15px;
    font-weight: 100;
    letter-spacing: 1px;
    opacity: 1; /* Firefox */
}

.page__member :-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #A3A3A3;
   font-size: 15px;
   font-weight: 300;
   letter-spacing: 1px;
}

.page__member ::-ms-input-placeholder { /* Microsoft Edge */
   color: #A3A3A3;
   font-size: 15px;
   font-weight: 300;
   letter-spacing: 1px;
}


.page__member.password .form-label {
    width: 180px;
}

.page__member select.gender {
    width: 100%;
}

[data-role="zipcode"],
[data-role="county"],
[data-role="district"] {
    width: 100%;
    flex: 1;
}

.twzipcode.address input[data-role="zipcode"],
.twzipcode.address select {
    width: 100%;
}

@media (min-width: 991px) {
    .page__member select.gender,
    .twzipcode.address [data-role="zipcode"],
    .twzipcode.address select {
        width: 140px;
        flex: auto;
    }
}




/**
 *  Page Member -- table
 */ 

.t-thead {
    color: #fff;
    background-color: #333;
    text-align: center;
}

.t-row {
    padding: 5px 0;
    margin-bottom: 30px;
}

.t-cell {
    padding: 8px 0;
    font-size: 15px;
    letter-spacing: 2px;
}

.t-cell-date {
    border-bottom: 1px solid #707070;
}

    .t-cell-date .label-for-mobile {
        margin-right: 40px;
    }

.t-cell-title {
    border-bottom: 1px solid #707070;
}
    

.t-cell-duration {
    width: 25%;
    text-align: center;
}

.t-cell-status {
    width: 25%;
    text-align: center;
}

.t-cell-exam {
    width: 30%;
    text-align: center;
}

.t-cell-score {
    width: 20%;
    text-align: center;
}

.content .exam-action {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
    padding: 2px 8px;
    margin-right: 5px;
    transition: 0.3s;
}

.exam-action.open {
    background-color: #3AA9A3;
}

.exam-action.re-open {
    background-color: #5dc7be;
}

.exam-action.closed {
    pointer-events: none;
    color: #414141;
    background-color: #BFBFBF;
}

.exam-action.done {
    pointer-events: none;
    color: #414141;
}

.exam-action.open:hover,
.exam-action.re-open:hover {
    opacity: 0.8;
}


@media (min-width: 991px) {
    .t-row {
        padding: 0;
        border-top: 1px solid #ccc;
        border-bottom: none;
        margin-bottom: 0;
    }

    .t-cell {
        padding: 8px 6px;
        font-size: 16px;
    }

    .t-cell-date {
        width: 20%;
        border-bottom: none;
    }

    .t-cell-title {
        width: 25%;
        border-bottom: none;
    }

    .t-cell-title .text {
        min-height: unset;
    }

    .t-cell:not(.t-cell-title) {
        text-align: center;
    }
}

.label-for-mobile {
    color: #707070;
    font-size: 14px;
    margin-bottom: 3px;
}

@media (max-width: 991px) {
    .t-row {
        background-color: #fff;
        margin-left: -15px;
        margin-right: -15px;
        padding: 15px;
    }
    
    .t-cell {
        border-bottom: 1px solid #ccc !important;
    }

    .table td, .table th {
        font-size: 14px;
    }

    .t-cell-title {
        display: flex;
    }

        .t-cell-title .text {
            margin-left: 8px;
        }
}


/**
 * Page Member -- Videos
 */ 

.videos-row {
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.video-cat-title {
    margin-bottom: 15px;
    background: #e4f3f2;
    color: #268d87;
    padding: 5px 18px;
    border-radius: 5px;
}

.videos-grid {
    margin-left: -12px;
    margin-right: -12px;
}

.video {
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 10px 10px 30px rgb(0 0 0 / 10%);
    border-radius: 10px;
    overflow: hidden;
}

.video img {
    width: 100%;
}

.video__text {
    margin-top: 16px;
    padding: 0 15px 15px;
}

    .video__text-title {
        font-size: 18px;
        margin-bottom: 0;
    }

    .video__text-points {
        display: table;
        font-size: 15px;
        background-color: #eee;
        margin-left: auto;
        padding: 3px 8px;
        border-radius: 5px;
        opacity: 0.8;
    }

.video-container {
    overflow: hidden;
    position: relative;
    width:100%;
}

/* .video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
} */

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video__thumbnails {
    position: relative;
}

.video__thumbnails .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 36px;
    color: #fff;
    pointer-events: none;
}


/* youtube */

.video__play {
    position: relative;
    /* padding-bottom: 56.25%; */
    overflow: hidden;
}

.video__play iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.toast-message {
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.toast-message i {
    margin-right: 6px;
}

.toast-message a {
    display: inline-block;
    margin-left: 5px;
    color: #6d9734;
}

.toast-message a > i {
    position: relative;
    top: -1px;
    margin-left: 2px;
    font-size: 13px;
}

.video__player {
    position: relative;
    display: table;
}

.loader {
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    z-index: 99;
}

.spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 75px;
    height: 75px;
    margin: auto;
    z-index: 9;
}

.spin:before, .spin:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 9.375px;
    border-style: solid;
    border-color: #498329;
    border-radius: 100%;
}

.spin:before {
    opacity: 0.5;
}

.spin:after {
    border-color: #6d9734 transparent transparent;
    animation: spin 500ms linear infinite;
}
  
@keyframes spin {
    to {
      transform: rotate(360deg);
    }
}



/**
 *  Page Member -- Video Exam
 */  

.page__exam .title .label {
    font-size: 16px;
    line-height: 1.5em;
    color: #7f7f7f;
}

.page__exam .content {
    padding-left: 36px;
    padding-right: 36px;
}

.question {
    display: flex;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.question:last-child {
    border-bottom: none;
}

    .question .index {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        background-color: #3AA9A3;
        color: #fff;
        border-radius: 3px;
        margin-right: 10px;
    }

    .question-content {
        color: #333;
        width: 100%;
    }

    .row-q {
        margin-bottom: 15px;
        color: #525252;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .row-a .answer-pool {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        cursor: initial;
    }

    .row-a .answer-text {
        width: 400px;
    }

        .row-a .option-wrap {
            margin-right: 25px;
            margin-bottom: 10px;
            color: #525252;
        }

        .row-a .option-wrap input {
            cursor: initial;
        }

.exam-score {
    font-size: 24px;
}

.exam-score.failed {
    color: #ef2727;
}


.question .option-wrap.answer.wrong::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 10px);
    background-color: rgb(255, 210, 210);
    z-index: -1;
    border-radius: 2px;
}

.question .option-wrap.answer.wrong::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ef2727' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    position: absolute;
    top: 2px;
    right: 8px;
}

.question .option-wrap.answer.wrong .checkmark::after {
    background: #ef2727;
}



.final-answer.failed {
    color: #ef2727;
}

@media (max-width: 576px) {
    .page__exam .content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row-a .answer-text {
        width: 230px;
    }
}        

 

/**
 * Page Member -- Downloads
 */ 

.page__member .collapse__content .file-item {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #eee;
    border-radius: 10px;
    color: #333;
    margin-top: 10px;
}


    .page__member .collapse__content .file-item a {
        color: #333;
    }

    .page__member .collapse__content .file-item .button-download {
        width: auto;
        flex-shrink: 0;
        margin-left: 30px;
        margin-right: 0;
        padding: 5px 15px;
        border-radius: 20px;
        color: #fff;
        font-size: 14px;
    }

        .page__member .collapse__content .button-download i {
            font-size: 16px;
            margin-right: 3px;
            transition: 0.3s;
        }

    .page__member .collapse__content .button-download:hover {
        background-color: #f7f7f7;
        color: #3AA9A3;
    }

    .page__member .collapse__content .button-download:hover i {
        color: #3AA9A3;
    }


.page__member .collapse__item.open .file-download {
    background-color: #3aa9a3;
    color: #fff;
}

.page__member .file-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F3F3F3;
    border-radius: 10px;
}

    .page__member .file-download .date i {
        font-size: 16px;
    }

    .page__member .button-download {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background-color: #333;
        border-radius: 50%;
        flex-shrink: 0;
        margin-right: 10px;
    }

    .page__member .button-download:hover {
        background-color: #525252;
    }

        .page__member .button-download i {
            font-size: 18px;
            color: #fff;
        }

@media(max-width: 576px) {
    .page__member .collapse__content .file-item {
        text-align: center;
        border-radius: 15px;
    }

    .page__member .collapse__content .date {
        opacity: 0.6;
        margin-top: 5px;
    }

    .page__member .collapse__content .file-item .button-download {
        margin-left: 0;
        margin-top: 10px;
    }
}

/**
 *  Location
 */  

.store-filter .button-store-filter {
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: #3AA9A3;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
}

.store-filter select {
    background-color: #fff;
    border-color: transparent;
    color: #5dc7be;
}


.location {
    margin-bottom: 30px;
}

.location__map {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

    .location__map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.location__text,
.location__text a {
    color: #292929;
}

.location__text i {
    margin-right: 6px;
}

.location__text-title {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 16px;
}

.location__text-title a {
    color: #292929;
}

.location__text-title a:hover {
    opacity: .9;
}

.location__text-address {
    font-size: 14px;
}


@media(max-width: 576px) {
    .store-filter .button-store-filter {
        width: 100%;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    
    .store-filter select {
        margin-bottom: 10px;
    }
}



/**
 *  Contact
 */   


.contact__form input,
.contact__form select,
.contact__form textarea {
    width: 100%;
    border: 1px solid transparent;
    background-color: #fff;
    color: rgb(65 65 65 / 55%);
    padding: 7px;
    margin-bottom: 20px;
    font-size: 16px;
}

.contact__form select:focus-visible {
    outline: none;
}

.contact__form textarea {
    height: 230px;
}

.contact__form ::placeholder {
    color: rgb(65 65 65 / 55%);
    opacity: 1; /* Firefox */
    font-size: 16px;
}

.contact__form :-ms-input-placeholder,   /* Internet Explorer 10-11 */
.contact__form ::-ms-input-placeholder { /* Microsoft Edge */
    color: rgb(65 65 65 / 55%);
    font-size: 16px;
}



.contact__info-title {
    font-size: 20px;
    margin-bottom: 20px;
}



.contact__info a {
    color: #292929;
}

.contact__info a:hover {
    color: #5dc7be;
}

.contact__info .social-media {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

    .contact__info .social-media a {
        display: -webkit-flex;
        display: flex;
        align-items: center;
        color: #606060;
        margin-right: 20px;
        margin-bottom: 3px;
        font-size: 14px;
    }

    .contact__info .social-media a:hover {
        color: #3AA9A3;
    }

    .contact__info .social-media i {
        margin-right: 8px;
        font-size: 20px;
    }

.contact__info ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

    .contact__info li {
        display: flex;
        align-items: center;
        margin-bottom: 3px;
    }

        .contact__info .icon {
            position: relative;
            display: inline-block;
            vertical-align: middle;
            width: 12px;
            height: 22px;
            margin-right: 10px;
        }

            .contact__info .social-media i {
                margin-right: 6px;
                font-size: 22px;
            }

    
.contact__info .map iframe {
    max-width: 100%;
    width: 100%;
    height: 260px;
}

.page__contact .social-media__instagram i {
    font-size: 32px;
    margin-right: 7px;
}



/**
 *  Page Success
 */

.success__container {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.success__check__icon {
    font-size: 72px;
    color: #67c632;
    margin-top: 10px;
    margin-bottom: 20px;
}

.success__content .text {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 40px;
}



/**
 *  Schedule
 */

.schedule .controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .schedule .controls a {
        color: #292929;
    }

    .schedule .controls .title {
        font-size: 36px;
        font-weight: 400;
        font-weight: 700;
        margin-left: 40px;
        margin-right: 40px;
    }

    .schedule .controls svg {
        width: 60px;
        height: 60px;
        stroke: #6c6c6c;
    }

.schedule .event {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border-top: 1px solid #3AA9A3;
    font-size: 16px;
    margin-bottom: 0;
}

.schedule .event:last-child {
    border-bottom: 1px solid #3AA9A3;
}

    .schedule .title {
        display: flex;
    }

    .schedule .date {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 120px;
        color: #3AA9A3;
        background-color: #eee;
        font-weight: 500;
        padding-top: 16px;
        padding-bottom: 16px;
    }

        .schedule .date .number {
            letter-spacing: 1px;
        }


    .schedule .info {
        padding: 10px 15px;
    }
    
        .schedule .category {
            display: inline-block;
            padding: 3px 5px;
            color: #292929;
            font-size: 14px;
            border-radius: 5px;
            margin-bottom: 5px;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .schedule .title {
            display: flex;
            align-items: center;
            color: #3c3c3c;
        }

        .schedule .title:hover {
            color: #3aa9a3;
        }
    
    .schedule-button {
        display: flex;
        align-items: center;
    }

    @media (min-width: 576px) {
        .schedule .info {
            display: flex;
            align-items: center;
        }

            .schedule .info .category {
                margin-bottom: 0;
                margin-right: 10px;
            }
    }

    @media (max-width: 576px) {
        .schedule .controls {
            justify-content: space-between;
        }
            
            .schedule .controls .title {
                font-size: 32px;
                margin-left: 30px;
                margin-right: 30px;
            }

            .schedule .controls svg {
                width: 30px;
                height: 30px;
            }
    }



.event-listing .event-item {
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
}

    .event-listing .event-info {
        padding: 22px 30px 10px;
        min-height: 100px;
    }

    .event-listing .event-points {
        flex-shrink: 0;
        background-color: #3AA9A3;
        width: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        white-space: pre-line;
        padding: 5px 20px;
    }


@media (max-width: 576px) {
    .event-listing .event-item {
        flex-direction: column;
    }

        .event-listing .event-points {
            width: 100%;
            padding: 10px;
        }
}



/**
 *  Footer
 */

.footer {
    position: relative;
    background-color: #fff;
    padding-top: 60px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    z-index: 99;
}

.footer__content {
    position: relative;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    letter-spacing: 2px;
}

    .footer ul {
        padding-left: 0;
    }

    .footer li {
        list-style: none;
        margin-bottom: 4px;
    }

    .footer a {
        color: #505050;
        font-size: 15px;
    }

    .footer__logo {
        display: -webkit-flex;
        display: flex;
        align-items: center;
        margin-right: 60px;
    }

    .footer__logo img {
        width: 135px;
    }


        .footer .block-title {
            margin-bottom: 20px;
            color: #82D7D0;
            font-size: 24px;
        }

        .contact-block li {
            margin-bottom: 10px;
            display: flex;
        }

            .contact-block i {
                margin-right: 3px;
            }

        .footer__content .inner-nav {
            display: -webkit-flex;
            display: flex;
            flex-wrap: wrap;
        }

        .footer__content .inner-nav ul {
            margin-right: 40px;
        }

        .footer__content .inner-nav li {
            margin-bottom: 2px;
        }

        .footer__content .contact-block {
            letter-spacing: 0;
        }

        .footer__content .social-media {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            max-width: 400px;
        }

        .footer__content .social-media a {
            display: flex;
            align-items: center;
            margin-right: 8px;
        }

            .footer__content .social-media a i {
                font-size: 22px;
                color: #414141;
            }


.copyright {
    font-size: 12px;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    letter-spacing: 1px;
    color: #666;
}

.copyright span::before {
    content: "|";
    margin-left: 2px;
    margin-right: 6px;
}

@media (max-width: 1211px) {
    .footer__logo img {
        width: 135px;
    }

    .footer__logo .logo-text {
        font-size: 18px;
    }

    .footer__content .inner-nav ul {
        min-width: 153px;
    }
}

@media (max-width: 768px) {
    .footer {
        margin-right: 0;
        border-top-left-radius: 50px;
        border-top-right-radius: 50px;
    }

    .footer__logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    .footer__content {
        flex-wrap: wrap;
    }

    .footer__content .inner-nav {
        flex-wrap: wrap;
    }

        .footer__content .inner-nav ul {
            width: 50%;
            margin-right: 0;
        }

        .footer__content .inner-nav ul:nth-child(even) {
            padding-left: 30px;
        }

    .footer__content .social-media {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright {
        text-align: center;
    }

    .copyright span {
        display: block;
    }

    .copyright span::before {
        display: none;
    }
}


/**
 *  Privacy
 */

.privacy-content {
    line-height: 1.8em;
}