/*
Theme Name: TailPress
Theme URI: https://github.com/jeffreyvr/tailpress
Author: Jeffrey van Rossum
Author URI: https://vanrossum.dev
Description: A WordPress theme made with TailPress.
Version: 0.1.0
License: MIT
License URI: https://github.com/jeffreyvr/tailpress/blob/master/LICENSE
Text Domain: tailpress
*/

/** Common */
a:hover {
    opacity: 0.8;
}
#page_mv {
    display: flex;
    align-items: center;
    height: 332px;
    background: url(img/bg-header-pc.jpg) center/cover no-repeat;
}
.breadcrumbs {
    background: #F4FAFF;
}
.breadcrumbs .pan {
    padding: 20px 0;
}
.breadcrumbs .pan li {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}
.breadcrumbs .pan li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/** Pagination */
.post-pager .page-numbers {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid #1570EF;
    border-radius: 4px;
    color: #1570EF;
}
.post-pager .page-numbers.current {
    background-color: #1570EF;
    color: white;
}

/** Header */
.custom-logo {
    width: 187px;
    height: 46px;
}
#primary-menu .menu-item {
    color: #104975;
    font-size: 16px;
    font-weight: 600;
    line-height: 142.857%;
    text-transform: uppercase;
}
#primary-menu .menu-item:hover {
    color: blue;
}
#primary-menu .menu-item.current-menu-item {
    color: #031538;
    font-weight: bold;
}
#primary-menu .menu-item.menu-button {
    border-radius: 8px;
    background: #104975;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: white;
    padding: 10px 16px;
    font-weight: normal;
    text-align: center;
}

/** Footer */
.footer-inner-info p {
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 24px;
}
.footer-inner-info .email {
    background-image: url(icon/vuesax_sms-edit.svg);
}
.footer-inner-info .phone {
    background-image: url(icon/vuesax_call.svg);
}
.footer-inner-info .time {
    background-image: url(icon/z.svg);
}
.footer-inner-info .address {
    background-image: url(icon/vuesax_location-tick.svg);
}
#footer-menu ul {
    list-style-type: disc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

/** Front Page **/
.home-banner .slick-arrow {
    width: 48px;
    height: 48px;
    z-index: 1;
}
.home-banner .slick-arrow::before {
    content: none;
}
.home-banner .slick-prev {
    left: 36px;
}
.home-banner .slick-next {
    right: 36px;
}
.home-banner .slick-dots {
    bottom: 12px;
}
.home-banner .slick-dots li button:before {
    opacity: 1;
    color: white;
    font-size: 12px;
}
.home-banner .slick-dots li.slick-active button:before {
    color: #47AFC6;
}

@media screen and (max-width: 1024px) {
    #primary-menu .menu-item {
        padding-bottom: 8px;
        border-bottom: 1px solid #104975;
        margin-bottom: 8px;
    }
    /* .footer-inner iframe {
        width: auto;
    } */
}

@media screen and (max-width: 768px) {
    .custom-logo {
        width: 136px;
        height: 34px;
    }
    .footer-inner iframe {
        width: auto;
        margin: auto;
    }
    #page_mv {
        height: 220px;
        background-image: url(img/bg-header-sp.jpg);
    }
}