/*------------------------------------*\
  SETTINGS
\*------------------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", "Noto Sans TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
    color: #222;
    font-size: 16px;
    font-weight: 400;
}

body.fixed {
    overflow: hidden;
}


a {
    color: #222;
    transition: 0.3s;
}

a:hover {
    color: #333;
    text-decoration: none;
}

b, strong {
    font-weight: 700;
}

p {
    color: #757575;
}

hr {
    border-color: rgba(220, 217, 216);
}

.pre {
    white-space: pre-line;
}


@media (min-width: 576px) {
    html {
        font-size: 16px;
    }
}





/*------------------------------------*\
  UTILITIES
\*------------------------------------*/

.overlay {
    position: relative;
}

.overlay::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.overlay-4::before {
    opacity: 0.4;
}

.p-relative {
    position: relative;
}

.list-style-none {
    list-style: none;
}

.text-decoration-0,
.text-decoration-0 a {
    text-decoration: none;
}

.divider-vertical {
    width: 1px;
    height: 100%;
    background-color: rgba(220, 217, 216, 0.5);
    margin-left: auto;
    margin-right: auto;
}

.mt-custom {
    margin-top: 36px;
}

.mb-custom {
    margin-bottom: 36px;
}



/**
 *  Width
 */


@media (min-width: 576px) {
    .w-lg-auto {
        width: auto !important;
    }

}





/*------------------------------------*\
  FONT
\*------------------------------------*/
.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}


.fs-28 {
    font-size: 28px;
}

.fs-36 {
    font-size: 36px;
}

.line-height-2 {
    line-height: 2em;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.letter-spacing-3 {
    letter-spacing: 3px;
}

.letter-spacing-4 {
    letter-spacing: 4px;
}

.letter-spacing-5 {
    letter-spacing: 5px;
}

.font-small {
    font-size: 12px;
}

.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-muted {
    color: #757575 !important;
}

.text-muted svg {
    width: 22px;
    height: 20px;
    margin-top: 1px;
    display: inline-block;
}

.text-muted svg path {
    fill: #757575;
}


@media(max-width: 576px) {
    .fs-28 {
        font-size: 18px;
    }

    .fs-36 {
        font-size: 24px;
    }
}


/*------------------------------------*\
  COLORS, BG & BORDER
\*------------------------------------*/

.color-primary {
    color: #CE9C11;
}

.color-gray-light {
    color: #b5b5b6;
}


.bg-color-primary {
    background-color: #CE9C11;
}

.bg-color-gray {
    background-color: #F6F6F6;
}


.bg-color-light {
    background-color: #fff;
}


.text-highlight {
    color: #f8b62d;
}





/*------------------------------------*\
  COMPONENTS
\*------------------------------------*/

/**
 *  Button
 */

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 224px;
    line-height: 41px;
    padding: 0 20px;
    border-radius: 25px;
    font-size: 18px;
    border: 1px solid transparent;
    background-color: transparent;
    text-decoration: none;
    transition: 0.3s;
}

.button-primary {
    background-color: #216AAF;
    color: #222;
}

.button-primary:hover {
    background-color: #0768c2;
    color: #fff;
}

.button-outline-primary {
    border-color: #0768c2;
    color: #0768c2;
}

.button-outline-primary:hover {
    background-color: #0768c2;
    color: #fff;
}

.button-outline-light {
    border-color: #fff;
    color: #fff;
}

.button-outline-light:hover {
    background-color: #fff;
    color: #0768c2;
}

@media(min-width: 577px) {
    .button {
        width: 348px;
        line-height: 47px;
    }
}

@media(min-width: 992px) {
    .button {
        width: 306px;
        line-height: 48px;
    }
}



/**
 *  tab
 */

.tab-content [data-tab-content] {
    display: none;
}

.tab-content [data-tab-content].active {
    display: block;
}



/**
 *  Carousel
 */

.carousel {
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #222;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(221, 217, 216, 0.5);
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #fff;
    background-color: #222;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: 700;
}

.swiper-button-prev:after {
    margin-right: 2px;
}

.swiper-button-next:after {
    margin-left: 2px;
}


.swiper-pagination-bullet {
    background: #DCD9D8;
    opacity: .5;
}

.swiper-pagination-bullet-active {
    background: #222222;
    opacity: 1;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
    cursor: pointer;
}


.carousel-pagination-custom {
    padding-bottom: 60px;
}

.carousel-pagination-custom .swiper-pagination {
    width: 100%;
    margin-top: 32px;
}

.carousel-pagination-custom .swiper-pagination-bullet {
    margin: 0 6px;
    cursor: pointer;
}

.carousel-pagination-custom .swiper-button-next,
.carousel-pagination-custom .swiper-button-prev {
    top: 30%;
}


@media(min-width: 577px) {
    .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }
}

@media(max-width: 576px) {
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }

    .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 4px;
    }
}


/**
 *  Image Box
 */

.image-box {
    display: flex !important;
    border-radius: 12px;
    overflow: hidden;
}

.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;
}

.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);
}



/**
 *  Image Card
 */

.image-card {
    line-height: 30px;
}

.image-card__caption a:hover {
    color: #216AAF;
}

.image-card__caption a {
    font-size: 13px;
    line-height: 1.5em;
    text-decoration: none;
}

.image-card__caption {
    margin-top: 8px;
    margin-bottom: 8px;

}

.image-card__footer {
    display: flex;
    justify-content: space-between;
}


.image-card--h {
    display: flex;
    justify-content: space-between;
}

.image-card--h .image-box {
    width: 107px;
    height: 55px;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 12px;
    overflow: hidden;
    margin-left: 24px;
}

.image-card--h .image-card__summary {
    display: none;
    line-height: 22.4px;
    font-size: 16px;
    color: #757575;
}

.image-card--h .image-card__footer .text-muted {
    font-size: 12px;
}

.image-card--h .inner-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.image-card--h {
    margin-top: auto;
}

.swiper-slide .image-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

@media(min-width: 577px) {
    .image-card__caption a {
        font-size: 18px;
    }

    .image-card--h .image-box {
        width: 196px;
        height: 102px;
    }

    .image-card--h .image-card__footer .text-muted {
        font-size: 16px;
    }

    .image-card--h .image-card__summary {
        display: block;
    }


}



/**
 *  Back to Top
 */

.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    cursor: pointer;
    display: none;
    background-color: #757575;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-align: center;
    line-height: 52px;
    transition: 0.3s;
}

.back-to-top img {
    width: 20px;
}

.back-to-top:hover {
    background-color: #222;
}




/**
 *  Breadcrumb
 */

.breadcrumb-item {
    display: flex;
    font-weight: 400;
    font-size: 18px;
}

.breadcrumb-item::before {
    display: none;
}

.breadcrumb-item::after {
    content: url('../images/icons/arrow-right.svg');
    display: block;
    margin-left: 10px;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #757575;
}

.breadcrumb-item:last-child::after {
    display: none;
}



/**
 *  Pagination
 */

.pagination .page-item {
    margin-left: 3px;
    margin-right: 3px;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-radius: 3px;
    color: #757575;
}

.pagination .page-link:hover {
    border-color: #F9BA0D;
    background-color: #F9BA0D;
    color: #222;
    font-weight: 500;
}

.pagination .page-item.disabled .page-link {
    background-color: transparent;
    opacity: 0.5;
}



/**
 *  Listing
 */


.listing {
    margin-left: -25px;
    margin-right: -25px;
}

.listing .list-item {
    margin-bottom: 36px;
    padding-left: 25px;
    padding-right: 25px;
}


.section-header .listing-order {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #757575;
}

.listing-order .btn {
    display: flex;
    align-items: center;
    border: none !important;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    color: #757575;
}


.listing-order .dropdown-menu {
    width: 93%;
}


.listing-order .dropdown-item {
    position: relative;
    font-size: 15px;
    padding-top: 6px;
    padding-left: 45px;
}

.listing-order .dropdown-item.active,
.listing-order .dropdown-item:active {
    color: #222;
    background-color: transparent;
}

.listing-order .dropdown-item:hover,
.listing-order .dropdown-item.active:hover {
    background-color: #FFF0C8;
}


.listing-order .dropdown-toggle::after {
    content: url(../images/icons/arrow-down.svg);
    border: none;
    margin-left: 0;
    vertical-align: unset;
    height: 28px;
}

.listing-order .dropdown-toggle.show::after {
    content: url(../images/icons/arrow-up-b.svg);
}

.listing-order .dropdown-item.active::before {
    content: url(../images/icons/check.svg);
    position: absolute;
    left: 26px;
    top: 8px;
}


@media(max-width: 576px) {
    .listing-order .dropdown-menu {
        width: 180px;
    }

    .listing-order .dropdown-item {
        padding-left: 36px;
    }

    .listing-order .dropdown-item.active::before {
        left: 16px;
    }

}





/*------------------------------------*\
  HEADER
\*------------------------------------*/

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #DCD9D8;
    z-index: 9999;
}

.header a {
    color: #757575;
    text-decoration: none;
}

.header-container {
    display: flex;
    justify-content: unset;
    align-items: center;
    height: 60px;
}

.header-container .site-logo {
    position: relative;
    z-index: 10;
    object-fit: contain;
}

.header-container .site-logo img {
    width: auto;
    height: 40px;
}

.header-container .site-logo h1 {
    font-size: 20px;
    margin-top: 8px;
    color: #216AAF;
}

.menu {
    display: flex;
    list-style: none;
    margin-bottom: 0;
}


.header-container .site-nav {
    margin-left: auto;
}


.header-container .site-nav .menu {
    display: none;
}

.header-container .site-nav .menu li {
    margin-right: 15px;
}

.header-container .site-nav .menu li:last-child {
    margin-right: 0;
}

.header-container .site-nav .menu > li > a {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 6px;
    font-size: 14px;
}

.header-container .site-nav .menu > li > a:hover {
    color: #216AAF;
    font-weight: 500;
}

.header-container .site-nav .menu > li > a svg > path {
    transition: 0.3s;
}

.header-container .site-nav .menu > li > a:hover svg > path {
    fill: #216AAF;
}

.header-container .site-nav a.highlight {
    position: relative;
    z-index: 10;
    color: #216AAF;
    border: 1px solid #216AAF;
    padding: 7px 20px;
    border-radius: 20px;
    width: 110px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 15px;
}

.header-container .site-nav a.highlight:hover {
    color: #fff;
    background-color: #216AAF;
    font-weight: 500;
}


@media(min-width: 992px) {
    .header {
        position: relative;
    }

    .header-container {
        height: 120px;
    }

    .header-container .site-logo img {
        width: auto;
        height: 70px;
    }

    .header-container .site-logo h1 {
        font-size: 30px;
        margin-top: 8px;
        color: #216AAF;
    }

    .header-container .site-nav {
        position: relative;
        display: flex;
        align-items: center;
    }

    .header-container .site-nav .menu {
        display: flex;
    }

    .header-container .site-nav a.highlight {
        color: #fff;
        background-color: #216AAF;
        border: 1px solid transparent;
        /* box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); */
        margin-left: 15px;
        margin-right: 0;
        padding: 20px;
        border-radius: 0;
        width: auto;
        height: 120px;
    }

    .header-container .site-nav a.highlight:hover {
        background-color: #5ea9ef;
        color: #222;
    }
}

@media(min-width: 1221px) {
    .header-container {
        justify-content: space-between;
    }

    .header-container .site-nav .menu > li > a {
        padding: 8px;
        font-size: 16px;
    }

}


/**
 *  Mobile Nav
 */


.mobile-toggle {
    position: relative;
    z-index: 10;
    cursor: pointer;
    width: 24px;
    height: 18px;
    margin-right: 26px;
    margin-left: 25px;
    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;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #757575;
    border-radius: 1px;
    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;
}

.mobile-toggle 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;
}

.mobile-toggle span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.mobile-toggle span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.mobile-toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -1px;
    left: 0;
}

.mobile-toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 16px;
    left: 0;
}


.site-nav .menu.mobile-show {
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: #fff;
    border-top: 1px solid #f6f6f6;
    width: 100%;
    left: 0;
    top: 60px;
    padding-left: 0;
    animation: mobileNavShow 0.5s;
    padding-bottom: 20px;
}

@keyframes mobileNavShow {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


.header-container .site-nav .menu.mobile-show li {
    padding: 0 20px;
}

.header-container .site-nav .menu.mobile-show a {
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid #F6F6F6;
    padding: 20px 0;
    font-size: 16px;
}



@media(min-width: 992px) {
    .mobile-toggle {
        display: none;
    }

}



/*------------------------------------*\
  FOOTER
\*------------------------------------*/

.footer {
    background-color: #F6F6F6;
    padding-top: 60px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    width: 86%;
    margin-left: auto;
    margin-top: 40px;
    padding-left: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    width: 42%;
    margin-bottom: 25px;
}

.contact-info a {
    font-size: 12px;
    text-decoration: none;
}

.contact-info a:hover {
    color: #216AAF;
}

.contact-info img {
    margin-right: 4px;
    width: 16px;
}


.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-nav li {
    margin-left: 12px;
    margin-right: 12px;
}

.footer-nav a {
    display: block;
    padding: 8px;
}

.footer-nav a:hover {
    color: #216AAF;
}

.footer-menu {
    margin-top: 8px;
    margin-bottom: 16px;
    padding-left: 0;
    flex-wrap: wrap;
}

.copyright {
    flex-shrink: 0;
}


@media(min-width: 577px) {
    .footer-nav {
        margin-top: 60px;
    }

    .contact-info {
        width: 80%;
        justify-content: center;
    }

    .contact-info li {
        width: 50%;
    }

    .contact-info img {
        margin-right: 10px;
    }

    .contact-info a {
        font-size: 16px;
    }

}

@media(min-width: 577px) and (max-width: 1280px) {
    .footer-nav a {
        padding: 3px;
        font-size: 15px;
    }
}

@media(min-width: 992px) {
    .footer-nav {
        flex-direction: row;
        /* justify-content: space-between; */
    }

    .footer-menu {
        margin-top: 0;
        margin-bottom: 0;
        /* padding-left: 80px; */
    }


    .contact-info {
        width: 80%;
        margin-right: auto;
    }

    .contact-info li {
        width: auto;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0;
    }

}


/*------------------------------------*\
  PAGES CONTENT
\*------------------------------------*/
.main.add-overlay {
    position: relative;
}

.main.add-overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.54);
    z-index: 10;
}

@media(max-width: 991px) {
    .main {
        margin-top: 60px;
    }
}




/**
 *  Section
 */

.section {
    padding-top: 36px;
    overflow: hidden;
}

.section-header {
    position: relative;
}

.section-header .more {
    position: absolute;
    top: 0;
    right: 0;
    text-decoration: none;
    font-size: 18px;
    color: #216AAF;
}

.section-header .more:hover {
    color: #216AAF;
}

.section-heading {
    color: #222222;
    font-size: 28px;
    margin-bottom: 16px;
}

.section .container.border-bottom {
    padding-bottom: 36px;
}

.block-title {
    font-size: 28px;
    margin-bottom: 16px;
}


.heading-underline {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: #222;
}

.heading-underline::after {
    content: "";
    display: block;
    width: 86px;
    height: 3px;
    margin-top: 27px;
    margin-left: auto;
    margin-right: auto;
    background-color: #222;
}

@media(max-width: 576px) {
    .section-header .more {
        position: relative;
        top: unset;
        right: unset;
        display: table;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 15px;
        font-size: 15px;
    }
}


/**
 *  Article
 */

.article-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    overflow: hidden;
}

.article-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

.article-tags {
    margin-bottom: 5px;
}

.article-tags .tag {
    display: inline-block;
    color: #216AAF;
    background-color: #FFF0C8;
    border-radius: 5px;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 3px;
    margin-bottom: 8px;
}

.article-share {
    display: flex;
    flex-shrink: 0;
}

.article-share .item {
    display: flex;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    padding: 2px 8px;
    margin-left: 0;
    margin-right: 12px;
}

.article-share .item img {
    margin-right: 6px;
}

.article-share .item.facebook {
    background-color: #3975EA;
}

.article-share .item.line {
    background-color: #5AC463;
}

.article-content {
    color: #757575;
}

.article-content img {
    max-width: 100%;
    height: auto !important;
    margin-bottom: 1rem;
}


.article-divider {
    margin-top: -66px;
}

.related-articles {
    margin-top: -66px;
}

.sidebar-listing .image-card {
    margin-bottom: 24px;
}

.floats-btns {
    position: sticky;
    bottom: 20px;
    margin-bottom: 10px;
    left: 100%;
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);
    border-radius: 10px;
    padding: 15px 10px;
    width: 230px;
    opacity: 0;
    transition: opacity 0.3s;
}

.floats-btns .btn-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
}

.floats-btns .btn-item:hover {
    opacity: 0.8;
}

.floats-btns .btn-item::after {
    content: '';
    display: block;
    width: 1px;
    height: 22px;
    background-color: #757575;
    margin-left: 10px;
    margin-right: 10px;
}

.floats-btns .btn-item:last-child:after {
    display: none;
}

.floats-btns .btn-item.facebook {
    color: #3975EA;
}

.floats-btns .btn-item.line {
    color: #5AC463;
}

.floats-btns .btn-item img {
    margin-right: 3px;
    width: 22px;
}


.floats-btns.active {
    opacity: 1;
}


@media(min-width: 768px) {
    .article-bar {
        flex-direction: row;
        margin-bottom: 5px;
    }

    .article-tags .tag {
        margin-right: 8px;
        margin-bottom: 10px;
    }

    .article-share {
        margin-left: auto;
    }

    .article-share .item {
        margin-left: 12px;
        margin-right: 0;
    }


    .floats-btns {
        border-radius: 20px;
    }

    .floats-btns .btn-item {
        font-size: 16px;
    }

    .floats-btns .btn-item::after {
        content: '';
        display: block;
        width: 1px;
        height: 20px;
        background-color: #afafaf;
    }

    .floats-btns .btn-item img {
        margin-right: 5px;
        width: 18px;
    }
}



/**
 *  Form
 */

.form-control {
    border-color: #BEBEBE;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(220, 217, 216, 0.5) !important;
    font-weight: 400;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(220, 217, 216, 0.5) !important;
    font-weight: 400;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(220, 217, 216, 0.5) !important;
    font-weight: 400;
}



/**
 *  Contact
 */

.contact-form .form-group {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid #BEBEBE;
    padding: 12px 5px 12px 20px;
    border-radius: 14px;
}

.contact-form .form-group.form-select {
    padding-right: 30px;
}

.contact-form .form-label {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.contact-form .form-label__title {
    display: flex;
}
.contact-form .form-label__title::after {
    content: "";
    position: relative;
    top: 1px;
    display: block;
    width: 1px;
    height: 19px;
    background-color: rgba(220, 217, 216, 0.5);
    margin-left: 15px;
}

.contact-form .form-control {
    padding: 0 30px 0 15px;
    border: none;
}

.contact-form .form-control:focus-visible,
.contact-form .form-control:focus {
    border: none;
    box-shadow: none;
    background-color: #fff;
}

select.decorated option:hover {
    box-shadow: 0 0 10px 100px #1882A8 inset;
}


/**
 *  404
 */

.image-404 {
    margin-right: 51px;
    width: 280px;
}

@media(min-width: 577px) {
    .image-404 {
        width: 424px;
        margin-right: 90px;
    }
}

@media(min-width: 992px) {
    .image-404 {
        width: 636px;
        margin-right: 156px;
    }
}



/**
 *  Privacy
 */

.privacy-sidebar {
    position: sticky;
    top: 0;
    width: 312px;
    z-index: 2;
    flex-shrink: 0;
    display: none;
}

.privacy-sidebar ul {
    list-style: none;
    padding: 0;
}

.privacy-sidebar a {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 10px;
    color: #757575;
    font-weight: 300;
    letter-spacing: 1px;
    transition: 0.3s;
}

.privacy-sidebar .link.active {
    font-weight: 500;
}

.privacy-sidebar .link.active::before {
    content: "";
    width: 2px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 48%;
    transform: translateY(-50%);
    background-color: #757575;
}


.privacy-content {
    padding-bottom: 280px;
}

.privacy-content .scroll-block {
    padding-bottom: 60px;
}

.privacy-content ul {
    padding-left: 36px;
}

.privacy-content li {
    margin-bottom: 20px;
}


@media(min-width: 577px) {
    .privacy-container {
        display: flex;
        align-items: flex-start;
    }

    .privacy-sidebar {
        display: block;
    }
}




/**
 *  Search
 */


.form-control:focus {
    background-color: #F6F6F6;
    border-color: rgba(206, 156, 17, 0.2);
    box-shadow: 0 0 0 0.25rem rgb(206 156 17 / 20%);
}

.search-field {
    position: relative;
}

.search-field input {
    height: 48px;
    background-color: #F6F6F6;
}

.search-field button {
    position: absolute;
    outline: none;
    background-color: transparent;
    border: none;
}

.search-field .button-reset {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
}

.search-field .button-reset svg {
    width: 20px;
    height: 20px;
    fill: rgba(220, 217, 216, 0.5);
}

.search-field .button-reset svg path {
    transition: 0.3s;
}

.search-field .button-reset:hover svg path {
    fill: #757575;
}

.search-field .button-submit {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.search-field .button-submit svg {
    width: 24px;
    height: 24px;
    transition: 0.3s;
}

.search-field .button-submit:hover svg {
    stroke: #216AAF;
}


/* nav search box */
.nav-search-box {
    position: absolute;
    width: 305px;
    right: 0;
    top: 60px;
    background-color: #fff;
    padding: 16px 24px;
    border: 1px solid rgba(220, 217, 216, 0.5);
    display: none;
    z-index: 99;

}

.nav-search-box.active {
    display: block;
}

.button-nav-search.active svg path {
    fill: #216AAF;
}


.nav-search-box .search-field input {
    height: 37px;
    background-color: #fff;
    margin-bottom: 12px;
}

.nav-search-box .search-field input::placeholder {
    font-size: 12px;
}

.nav-search-box .search-field .button-reset {
    right: 36px;
}

.nav-search-box .search-field .button-reset svg {
    width: 16px;
    height: 16px;
}

.nav-search-box .search-field .button-submit {
    right: 5px;
}


.nav-search-box[data-search-collapse-content="mobile-search"] {
    position: fixed;
    z-index: 999;
    top: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    transition: 0.3s;
    display: block;
}


.nav-search-box[data-search-collapse-content="mobile-search"].active {
    transform: translateX(0);
}


.suggestion-pool .suggestion-item {
    display: inline-block;
    color: #216AAF;
    background-color: #FFF0C8;
    border-radius: 5px;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 3px;
    margin-bottom: 8px;
}

.search-keywords-pool .keyword-item {
    display: block;
    font-size: 14px;
    padding: 12px 24px;
    margin-left: -24px;
    margin-right: -24px;
}

.search-keywords-pool .keyword-item:hover {
    background-color: #f6f6f6;
}

.search-keywords .button-result {
    font-size: 14px;
}

.search-keywords .button-result:hover {
    color: #216AAF;
}



/* mobile search box */
.mobile-search-box form {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 52px);
}

.mobile-search-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mobile-search-group .search-field {
    flex-grow: 1;
    margin-right: 15px;
}

.mobile-search-group .search-field input {
    margin-bottom: 0;
}

.mobile-search-group .button-close svg {
    width: 24px;
    height: 24px;
}


.mobile-search-box .search-keywords {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mobile-search-box .search-keywords .keyword-item {
    text-align: center;
}

.mobile-search-box .search-keywords .button-result {
    margin-top: auto !important;
}


/* search listing  */
.search-listing .tabs-nav-container {
    padding-top: 36px;
}

.search-listing .tabs-nav {
    display: flex;
    justify-content: space-between;
}

.search-listing .tabs-nav a {
    display: block;
    padding: 17px 0;
    width: 100px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    text-align: center;
    color: #757575;
}

.search-listing .tabs-nav a.active {
    border-bottom: 2px solid #222222;
    color: #222;
}

@media(min-width: 992px) {
    .search-field.container,
    .tabs-nav-container.container {
        max-width: unset;
    }
}

@media(max-width: 991px) {
    .search-listing .tabs-nav {
        margin-bottom: 16px;
    }

    .search-listing .tabs-nav a {
        font-size: 13px;
        padding: 4px 16px;
        background-color: rgba(220, 217, 216, 0.5);
        border-radius: 20px;
        border: none !important;
        margin: 0 4px;
        line-height: 25px;
    }

    .search-listing .tabs-nav a.active {
        background-color: #222222;
        color: #fff;
    }
}

@media(max-width: 768px) {
    .search-listing .tabs-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .search-listing .tabs-nav a {
        width: 82px;
        margin-bottom: 10px;
        padding: 4px;
    }
}



/**
 *  gdpr
 */


.gdpr {
    position: fixed;
    bottom: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0 8px;
    color: #757575;
    background-color: #e7e7e7;
    font-size: .95em;
    opacity: .95;
    z-index: 99999;
}

.gdpr-block {
    display: flex;
    align-items: center;
    justify-content: center;
}


.gdpr-disclaimer {
    margin-right: 30px;
    color: #222;
}

.gdpr-disclaimer a {
    color: #757575;
    margin-left: 10px;
}

.gdpr-allow {
    outline: 0;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    box-shadow: none;
    padding: 3px 12px;
    font-size: 13px;
    flex-shrink: 0;
    transition: .3s;
}


.gdpr-disclaimer a {
    text-decoration: underline !important;
    color: #757575;
}

.gdpr-disclaimer a:hover {
    color: #222;
}

.gdpr-allow {
    background-color: #216AAF;
    border: 1px solid #216AAF;
    color: #fff;
}

.gdpr-allow:hover {
    background-color: #fff;
    border-color: #fff;
    color: #000000;
}


@media (max-width: 768px) {
    .gdpr {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .gdpr>div {
        width: 80%;
        margin: auto;
    }

    .gdpr-disclaimer {
        width: 100%;
        margin-right: 20px;
        text-align: left;
        font-size: 13px;
    }

}

figcaption.attachment__caption .attachment__size {
    display: none;
}

.menu-sun {
    margin-right: 50px !important;
}

.Community-btns {
    position: fixed;
    right: 1rem;
    top: 250px;
    z-index: 9999;
}

.Community-btns svg {
    width: 50px;
    height: 50px;
}

@media (max-width: 768px) {
    .Community-btns {
        right: .5rem;
    }
}