@font-face{
    font-family: 'Lato';
    src:url('../fonts/lato/Lato-Regular.woff') format('woff'),
        url('../fonts/lato/Lato-Regular.woff2') format('woff2'),
        url('../fonts/lato/Lato-Regular.svg#Lato-Regular') format('svg'),
        url('../fonts/lato/Lato-Regular.eot'),
        url('../fonts/lato/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato/Lato-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'Lato';
    src:url('../fonts/lato/Lato-Medium.woff') format('woff'),
        url('../fonts/lato/Lato-Medium.woff2') format('woff2'),
        url('../fonts/lato/Lato-Medium.svg#Lato-Medium') format('svg'),
        url('../fonts/lato/Lato-Medium.eot'),
        url('../fonts/lato/Lato-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato/Lato-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'Lato';
    src:url('../fonts/lato/Lato-Bold.woff') format('woff'),
        url('../fonts/lato/Lato-Bold.woff2') format('woff2'),
        url('../fonts/lato/Lato-Bold.svg#Lato-Bold') format('svg'),
        url('../fonts/lato/Lato-Bold.eot'),
        url('../fonts/lato/Lato-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato/Lato-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'Lato';
    src:url('../fonts/lato/Lato-Heavy.woff') format('woff'),
        url('../fonts/lato/Lato-Heavy.woff2') format('woff2'),
        url('../fonts/lato/Lato-Heavy.svg#Lato-Heavy') format('svg'),
        url('../fonts/lato/Lato-Heavy.eot'),
        url('../fonts/lato/Lato-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato/Lato-Heavy.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face{
    font-family: 'Lato';
    src:url('../fonts/lato/Lato-Black.woff') format('woff'),
        url('../fonts/lato/Lato-Black.woff2') format('woff2'),
        url('../fonts/lato/Lato-Black.svg#Lato-Black') format('svg'),
        url('../fonts/lato/Lato-Black.eot'),
        url('../fonts/lato/Lato-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.background-overlay {
    background-color: #f5f6f6;
    opacity: 0.4;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}

section.box {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}
.box .box-title, .box-heading, .heading-title {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    position: relative;
    margin: 0;
    text-transform: uppercase;

}
.box .box-title span, .box-heading span, .heading-title span{
    font-family: 'Lato', sans-serif;
    padding-bottom: 15px;
    margin-bottom: 22px;
    display: block;
    position: relative;
    font-size: 24px;
}
.box .box-title span > strong, .box-heading span > strong{
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 19px !important;
}
.box .box-title span:after, .box-heading span:after, .heading-title span:after{
    position: absolute;
    content: '';
    width: 50px;
    border-bottom: 4px solid #c0051a;
    bottom: 0;
    left: 0;
}
.box .box-title span.gray:after, .box-heading span.gray:after, .heading-title span.gray:after{
    border-bottom: 2px solid #5e5e5e;
}
.box .box-title.text-center span:after, .box-heading.text-center span:after, .heading-title.text-center span:after{
    left: 50%;
    -webkit-transform: translateX(-50%);-moz-transform: translateX(-50%);-ms-transform: translateX(-50%);-o-transform: translateX(-50%);transform: translateX(-50%);
}
.box-title.red, .heading-title.red, .box-heading.red{
    color: #E22126;
}
.box-title.black, .heading-title.black, .box-heading.black{
    color: #000;
}
section.box .owl-carousel .item {
    margin: 10px 15px;
    background: #f3f3f3;
}
section.box .owl-carousel .item:hover {
    transform: translatey(-3px);
}

section.box .owl-carousel .item .info {
    padding: 15px;
}
section.box .owl-carousel .item .info .info-title {
    font-weight: 700;
    padding-bottom: 10px;
}
section.box .owl-carousel .item .info .info-title a {
    color: #c0051a;
}
.u-hover--sparkle {
    box-sizing: border-box;
    position: relative;
    transition: all .5s;
    cursor: pointer;
}
.u-hover--sparkle::before,
.u-hover--sparkle::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transform-origin: center;
    z-index: -1;
}
.u-hover--sparkle::before {
    border-top: 0.2em solid #c0051a;
    border-bottom: 0.2em solid #c0051a;
    transform: scale3d(0,1,1);
}
.u-hover--sparkle::after {
    border-left: 0.2em solid #c0051a;
    border-right: 0.2em solid #c0051a;
    transform: scale3d(1,0,1);
}
.u-hover--sparkle:hover::before,
.u-hover--sparkle:hover::after {
    transform: scale3d(1,1,1);
    transition: transform 900ms;

}


/* Contact Page */
.contact-infor{
    position:relative;
    min-height:750px;
    margin-top:76px;
}
.contact-infor .bg-logo-contact{
    position:absolute; 
    height:330px; 
    width:689px; 
    bottom:0; 
    margin-left:178px;
}
.contact-infor .cols-left h1{
    color:#515151; 
    font-size:24px;
    text-transform:uppercase;
    line-height: 1.6em;
}
.contact-infor .cols-left .infor{color:#515151; font-size:16px; margin-top:39px;}
.contact-infor .cols-left .infor a{color:#515151;}
.contact-infor .cols-left .infor a:hover{color:#fe0000;}
.contact-infor .cols-left .infor .icon{width:38px; height:29px; background:url('../images/icon_contact_list.png') no-repeat; background-position:-8px 0px; float:left;}
.contact-infor .cols-left .infor .row-contact{margin-bottom:12px;}
.contact-infor .cols-left .infor .tel .icon{background-position:-6px -40px;}
.contact-infor .cols-left .infor .nobg .icon{background:none;}
.contact-map{
    height:500px;
    margin-bottom:8px;
}
.line-yellow {
    width: 125px;
    height: 4px;
    background: #d77500;
    display: block;
}
.pagination-box {
    margin: 10px 0 30px;
}
.pagination {
    justify-content: center;
}
.pagination li{
    margin: 0 5px;
}
.pagination li a{
    padding: 10px;
    background: #f1f1f1;
    display: block;
}
.pagination li.active a {
    color: #fff;
    background: #c0051a;
}



