.text-decoration-0 {
    text-decoration: none !important;
}

.text-hover:hover {
    opacity: 0.8;
    transition: 0.3s;
}

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

.qrcode-box .text {
    font-size: 14px;
    color: #333;
}

.qrcode-box a:hover {
    text-decoration: none;
}

.line-qrcode {
    width: 160px;
    height: 160px;
}


/* Image box */
 .image-box {
    position: relative;
    display: flex !important;
}

    .image-box-outer {
        width: 100%;
        padding-bottom: 100%;
        position: relative;
        overflow: hidden;
        margin: 0;
        line-height: 0;
    }

    .image-box-outer.vertical {
        padding-bottom: 120%;
    }

    .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-box-inner img.contain {
                object-fit: contain;
            }


.image-hover--zoom img {
    transition: 0.5s;
}

.image-hover--zoom:hover img {
    transform: scale(1.05);
}



/* header */
.topbar {
    padding-top: 20px;
    padding-bottom: 20px;
}

.site-logo {
    height: 32px;
}


.header-buttons {
    display: flex;
}

.header-buttons > a {
    display: flex;
    align-items: center;
    color: #3a3a3a;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 8px 15px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 15px;
    transition: 0.3s;
    border: 1px solid #d7e1e9;
}

.header-buttons > a:hover {
    color: #fff;
    background-color: #911719;
    border: 1px solid #911719;
}

.header-buttons svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.header-buttons svg path {
    fill: #525252;
    transition: 0.3s;
}

.header-buttons > a:hover path {
    fill: #fff;
}


.langs {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

    .langs > a {
        padding: 8px 10px;
        color: #333;
    }

    .langs > a.active {
        color: #911719;
    }

    .langs .slash:last-child {
        display: none;
    }

@media(min-width: 380px) {
    .site-logo {
        height: 36px;
    }
}
    
@media(min-width: 992px) {
    .site-logo {
        height: 60px;
    }
}

@media(max-width: 991px) {
    .topbar {
        padding-top: 15px;
        padding-bottom: 15px;
        display: flex;
    }

    #header .header-btn-collapse-nav {
        margin-left: 0;
        margin-right: 15px;
        padding: 6px 10px;
    }

    #header .header-container {
        position: absolute;
        width: 100%;
        z-index: -2;
        background-color: transparent;
    }

    .header-buttons {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .header-buttons > a {
        flex: 1;
        display: flex !important;
        justify-content: center;
    }
}


/* footer */
.footer-copyright {
    font-size: 13px;
    opacity: 0.9;
    text-align: center;
}

@media(min-width: 576px) {
    .footer-copyright {
        display: flex;
        justify-content: center;
    }
    
}


/* slider */
.tp-bgimg {
    position: relative;
}

.tp-bgimg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
}

/* section */
section.section.section-tertiary {
    margin: 30px 0 0;
}

.section-partner {
    padding-top: 90px;
    padding-bottom: 120px;
}

/* breadcrumb */
.breadcrumb {
    background: transparent;
    padding: .75rem 0;
}

.breadcrumb > li {
    display: inline-block;
    font-size: 0.8em;
    text-transform: uppercase;
    text-shadow: none;
}

.breadcrumb > li + li:before {
    color: inherit;
    opacity: 0.5;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f105";
    padding: 0 7px 0 5px;
}

.breadcrumb a:hover {
    text-decoration: none;
}


/* service */
.service .feature-box-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #f7f7f7;
    border: 1px solid #ebebeb;
    opacity: 0.7;
}
    
.service .feature-box-icon i {
    font-size: 3em !important;
}

.service .feature-box-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-desc {
    font-size: 15px;
}

@media(max-width: 768px) {
    .service .feature-box {
        flex-direction: column;
    }

    .service .feature-box-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .service .feature-box-info {
        width: 100%;
    }

        .service-name {
            text-align: center;
        }
}



/* image card */
.image-card .caption-title {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    transition: 0.5s;
}

.image-card .caption-title:hover {
    text-decoration: none;
    opacity: 0.8;
}

.image-box .item-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    border: 3px solid #911719;
}

.image-box.hover-effects {
    overflow: hidden;
}

.image-box.hover-effects:hover .item-overlay {
    opacity: 1;
}

.image-box.hover-effects:hover .item-overlay .btn {
    transform: translateY(0);
}


.item-overlay .btn {
    margin-left: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    transform: translateY(60px);
    background-color: #911719 !important;
    color: #fff !important;
    border: none;
}

.item-overlay .btn:hover {
    background-color: #fff !important;
    color: #333 !important;
}

.btn.radius {
    border-radius: 3px !important;
}


/* page content */
.page-content {
    position: relative;
    top: 170px;
    padding-bottom: 240px;
    transition: 0.3s;
}

@media(max-width: 991px) {
    .page-content {
        top: 68px;
        padding-bottom: 68px;
    }
}


.sidebar ul.nav-list.show-bg-active .active > a,
.sidebar ul.nav-list.show-bg-active a.active {
    color: #911719;
}

aside ul.nav-list > li > a {
    text-transform: uppercase;
}