﻿:root {
    --main-color: #ed1b35;
    --main-color-2: #f6841f;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

a {
    color: var(--main-color);
}

    a:hover {
        text-decoration: none;
        color: var(--main-color-2);
    }

header {
    background: #fff;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
}

body {
    font-family: 'Roboto',sans-serif
}

.header {
    margin: 0 auto;
    align-items: center;
    height: 76px;
    display: flex;
    justify-content: space-between;
}

.show-head {
    position: fixed !important;
    z-index: 1000;
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .1);
    display: table;
    height: 1%;
    animation-name: header;
    animation-duration: .6s;
    animation-iteration-count: 1;
    z-index: 9999;
    margin: 0;
}

@keyframes header {
    0% {
        top: -100%;
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0);
    }

    100% {
        top: 0;
        opacity: 1;
        visibility: visible;
        transform: scaleY(1)
    }
}

.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.logo {
    width: 200px;
    aspect-ratio: 200/50;
    display: flex;
}

    .logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.menu {
    display: flex;
    height: 76px;
    line-height: 76px;
    justify-content: space-between;
    margin-right: 0 !important;
}

    .menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 185px;
        background: #ffffff;
        padding: 5px 15px;
        transition: .3s linear;
        opacity: 0;
        visibility: hidden;
    }

        .menu .sub-menu:before {
            content: '';
            position: absolute;
            left: 50%;
            right: 50%;
            height: 5px;
            top: -5px;
            background: #57c9ff;
            transition: .3s linear;
        }

.menu {
    padding: 0;
    margin: 0;
}

    .menu li {
        list-style-type: none;
        display: inline-block;
        position: relative;
    }

        .menu li:hover .sub-menu {
            opacity: 1;
            visibility: visible
        }

            .menu li:hover .sub-menu:before {
                left: 0;
                right: 0
            }

    .menu .sub-menu a {
        display: block;
        line-height: initial;
        padding: 5px 0;
        color: #333333;
        border-bottom: 1px solid #e0e0e0;
        font-size: 14px;
        transition: .2s linear;
        text-decoration: none;
    }

        .menu .sub-menu a:hover {
            color: var(--main-color);
        }

        .menu .sub-menu a:last-child {
            border-bottom: initial
        }

        .menu .sub-menu a:before {
            display: none
        }

.call {
    height: 76px;
    line-height: 76px;
    width: 180px;
    text-align: right;
    background: url(../images/ic-call.png) no-repeat;
    background-color: var(--main-color);
    top: 0;
    background-position-x: 25px;
    background-position-y: 47%;
    padding-right: 15px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 25px;
    text-decoration: none;
    margin-right: -15px;
}

    .call:hover {
        color: var(--main-color-2);
    }

.menu li > a {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    transition: .2s linear;
    position: relative;
    padding: 0 20px;
}

    .menu li > a i {
        font-size: 25px
    }

    .menu li > a:hover, .menu ul li.active > a {
        color: var(--main-color);
    }

.menu a:before {
    height: 5px;
    background: var(--main-color);
    content: '';
    position: absolute;
    left: 5px;
    bottom: 0;
    right: calc(100% - 5px);
    transition: .3s linear;
    opacity: 0;
    visibility: hidden;
}

.menu a:hover:before, .menu li.active a:before {
    left: 5px;
    right: 5px;
    opacity: 1;
    visibility: visible;
}

.lang img {
    max-width: 30px;
    margin-right: 5px;
}

.lang div {
    cursor: pointer;
}

.banner {
    position: relative;
}

.banner-sl a img, .banner-sl img {
    width: 100%
}

.banner .lSSlideOuter .lSPager.lSpg {
    bottom: 20px;
    position: absolute;
    width: 100%;
    z-index: 10;
    left: 0;
}

    .banner .lSSlideOuter .lSPager.lSpg > li a {
        width: 10px;
        height: 10px;
        background: #ffffff;
        position: relative;
        overflow: initial;
    }

        .banner .lSSlideOuter .lSPager.lSpg > li a:before {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid #ffffff;
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            opacity: 0;
            visibility: hidden;
            transition: .2s linear;
        }

    .banner .lSSlideOuter .lSPager.lSpg > li {
        padding: 0 9px;
    }

        .banner .lSSlideOuter .lSPager.lSpg > li:hover a:before, .banner .lSSlideOuter .lSPager.lSpg > li.active a:before {
            opacity: 1;
            visibility: visible
        }

.search {
    background: #e2e2e2;
    padding: 14px 0;
}

    .search form {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .search input {
        width: 38%;
        height: 36px;
        border: initial;
        padding-left: 12px;
    }

    .search select {
        width: 38%;
        height: 36px;
        border: initial;
        padding-left: 12px;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: url(../images/ic-down.png) no-repeat;
        background-color: #ffffff;
        background-position-x: 97%;
        background-position-y: 47%;
        text-transform: capitalize;
    }

        .search select option {
            text-transform: capitalize
        }

    .search button {
        width: 125px;
        height: 36px;
        border: initial;
        background: url(../images/ic-search.png) no-repeat;
        background-color: #ea242a;
        background-position-x: 14px;
        background-position-y: 47%;
        font-size: 14px;
        font-weight: 700;
        padding-left: 15px;
        color: #ffffff;
        transition: .2s linear;
    }

        .search button:hover {
            background-color: var(--main-color);
        }

    .search a.SearchAdvanced {
        font-size: 14px;
        color: var(--main-color-2);
        transition: .2s linear;
        text-decoration: underline;
        background: initial;
        width: auto;
        display: block;
        font-weight: 600
    }

    .search input:focus, .search select:focus, .search button:focus {
        outline: none
    }

    .search input::placeholder, .search select {
        font-size: 14px;
        color: #707070
    }

.item-prj h3 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-left: 30px;
    background: url(../images/ic-tit.png) no-repeat;
    background-position-x: 5px;
    background-position-y: 17%;
    color: #333333;
    text-decoration: none;
    transition: .2s linear;
    text-transform: uppercase;
    font-weight: 700;
    min-height: 48px;
}

.item-prj .img-slprj {
    display: block;
    height: 260px;
    overflow: hidden
}

.item-prj .img {
    aspect-ratio: 390/260;
    overflow: hidden;
}

.img-slprj img {
    width: 100%;
    transition: .3s linear;
    height: 100%;
}

.img-slprj:hover img {
    transform: scale(1.1,1.1)
}

.projects {
    margin-bottom: 60px
}

    .projects .lSPrev:before {
        content: "\f104";
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 62px;
        color: #ffffff;
    }

    .projects .lSNext:before {
        content: "\f105";
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 62px;
        color: #000000;
    }

    .projects .lSNext {
        right: 5px;
        height: 63px;
        width: 22px;
        top: calc((100% + 16px + 34px)/2);
    }

    .projects .lSPrev {
        left: 5px;
        height: 63px;
        width: 22px;
        top: calc((100% + 16px + 34px)/2);
    }

.tith2 {
    font-size: 20px;
    margin-bottom: 20px
}

    .tith2 a {
        color: #333333;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        transition: .2s linear;
    }

.lst-newsev {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(3, calc(100%/3));
    margin: 0 -10px;
}

    .lst-newsev .it-newsev:nth-of-type(1) {
        grid-column: 1/3;
        grid-row: 1/4;
        display: grid;
        display: -ms-grid;
        grid-template-columns: repeat(2, 50%);
        border-bottom: initial;
        padding: initial;
    }

        .lst-newsev .it-newsev:nth-of-type(1) .img-itne {
            margin-right: 20px;
            width: initial;
            height: initial;
            float: initial;
        }

.img-itne {
    overflow: hidden;
    width: 105px;
    height: 80px;
    float: left;
}

    .img-itne img {
        transition: .3s linear;
        width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .img-itne a {
        display: block
    }

    .img-itne:hover img {
        transform: scale(1.1,1.1)
    }

.it-newsev:nth-of-type(1) .text-itne h3 {
    margin-bottom: 12px;
    line-height: 1.5;
}

.text-itne h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

    .text-itne h3 a {
        color: #333333;
        transition: .2s linear;
        text-decoration: none;
        font-weight: 700;
    }

.time-news {
    font-size: 14px;
    color: #7a7a7a;
}

    .time-news i {
        color: #fa3737;
        margin-right: 5px
    }

.it-newsev:nth-of-type(1) .time-news {
    margin-bottom: 10px;
    display: block
}

.it-newsev p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 20px;
}

.it-newsev:nth-child(n + 2) .txt {
    display: none
}

.it-newsev:nth-child(n + 2) .seemore {
    display: none
}

.seemore {
    display: block;
    width: 106px;
    height: 32px;
    border: 1px solid var(--main-color);
    text-align: center;
    font-size: 14px;
    color: var(--main-color);
    line-height: 30px;
    padding-right: 18px;
    border-radius: 2px;
    background: url(../images/ic-arrx.png) no-repeat;
    background-position-x: 80%;
    background-position-y: 45%;
    text-decoration: none !important;
    transition: .2s linear;
}

.it-newsev {
    display: table;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    margin: 0 10px;
}

.newsev {
    margin-bottom: 60px
}

.it-newsev:nth-of-type(1) .text-itne {
    width: initial;
    float: initial;
    padding-left: initial
}

.text-itne {
    width: calc(100% - 105px);
    float: left;
    padding-left: 18px;
}

.it-newsev:last-child {
    border-bottom: initial;
    padding-bottom: initial;
}

.it-newsev:nth-of-type(2) {
    padding-top: initial
}

.lst-vdid {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(3, calc(100%/3));
    margin: 0 -10px;
}

    .lst-vdid .it-videoid:nth-of-type(1) {
        grid-column: 1/3;
        grid-row: 1/3
    }

    .lst-vdid .it-videoid {
        margin: 0 10px;
        cursor: pointer;
    }

        .lst-vdid .it-videoid .img-vdid {
            overflow: hidden;
            margin: 0 0 15px 0;
            display: block;
        }

        .lst-vdid .it-videoid:first-child .img-vdid {
            height: 422px;
            margin-bottom: 15px;
        }

        .lst-vdid .it-videoid .img-vdid img {
            width: 100%;
            min-height: 100%;
            object-fit: cover
        }

.img-vdid img {
    width: 100%;
}

.it-videoid h3 {
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    transition: .2s linear;
    margin-bottom: 0;
    line-height: 1;
}

.dsvideo .it-videoid h3 {
    text-transform: initial;
    font-weight: 400;
    margin-bottom: 0
}

.dsvideo .it-videoid .img-vdid {
    height: 152px
}

.it-videoid h3:hover {
    color: var(--main-color);
}

.text-itne h3:hover {
    color: var(--main-color);
}

.item-prj h3:hover {
    color: var(--main-color);
}

.img-vdid {
    margin-bottom: 10px;
    position: relative;
    height: 190px;
    overflow: hidden;
}

.lst-vdid.detail .img-vdid {
    height: auto;
    max-height: 500px;
    position: relative;
}

    .lst-vdid.detail .img-vdid .img {
        height: 100%;
        overflow: hidden;
    }

.lst-vdid.detail .iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none
}

    .lst-vdid.detail .iframe iframe {
        width: 100%;
        height: 100%
    }

.lst-vdid.detail .it-videoid:nth-child(n + 2) .img-vdid {
    height: 295px
}

.it-videoid:nth-of-type(2) {
    margin-bottom: 13px;
}

.video-id {
    margin-bottom: 40px
}

.icon-play {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    box-shadow: 0 0 10px;
    background: url(../images/ic-playvd.png) no-repeat;
    background-color: rgba(255,255,255,0.85);
    background-size: calc(100% - 12px);
    background-position: 6px;
}

.border-icon a {
    display: block;
    width: 100%;
    height: 100%;
}

.footer {
    background: url(../images/bg-footer.jpg) no-repeat;
    background-size: 100% 100%;
    padding: 30px 0 18px;
    position: relative;
}

    .footer .contact-add {
        display: grid;
        grid-template-columns: repeat(4, calc(100%/4));
        margin: 0 -15px 10px;
    }

.contact-add .item {
    margin: 0 15px;
    text-align: center;
}

    .contact-add .item:nth-of-type(1) {
        margin-left: 0px
    }

    .contact-add .item:nth-of-type(3) {
        margin-right: 0px
    }

.contact-add .img-item {
    margin-bottom: 12px
}

    .contact-add .img-item h3 {
        color: #c8e1f2;
        font-weight: 700;
        font-size: 20px;
    }

    .contact-add .img-item a {
        display: block
    }

    .contact-add .img-item img {
        max-width: 100%
    }

.contact-add .text-item p {
    margin-bottom: 5px;
    color: #c8e1f2;
    font-size: 14px;
    line-height: 1.3;
    padding: 0 30px;
}

    .contact-add .text-item p a {
        color: #c8e1f2;
        text-decoration: none;
        transition: .2s linear;
    }

.social {
    text-align: center;
    position: relative;
    z-index: 10;
}

.ft-bottom:before {
    width: 100%;
    height: 1px;
    background: var(--main-color);
    content: '';
    position: absolute;
    left: 0;
    top: -29px;
    z-index: 9;
}

.social a {
    width: 38px;
    height: 38px;
    display: inline-block;
    border: 1px solid;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: #ffffff;
    margin-right: 15px;
    background: var(--main-color);
}

    .social a:last-child {
        margin-right: 0
    }

.ft-top {
    margin-bottom: 10px
}

.ft-bottom {
    position: relative;
    text-align: center;
}

    .ft-bottom .copyright {
        margin-bottom: 0;
        font-size: 14px;
        color: #c8e1f2
    }

        .ft-bottom .copyright a {
            color: #c8e1f2
        }

.menu-footer a {
    font-size: 14px;
    color: #c8e1f2;
    margin-right: 15px;
    position: relative;
}

    .menu-footer a:last-child {
        margin-right: 0
    }

        .menu-footer a:last-child:before {
            display: none
        }

    .menu-footer a:before {
        width: 1px;
        height: 100%;
        background: #c8e1f2;
        content: '';
        position: absolute;
        right: -10px;
        top: 0px;
    }

.item-left {
    display: none;
    opacity: 0;
    visibility: hidden;
    padding-bottom: 25px;
}

    .item-left.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

.search.no-margin {
    margin-bottom: 0;
}

.site-top {
    padding: 15px 0;
}

    .site-top a {
        font-size: 14px;
        color: #707070;
        text-decoration: none;
        transition: .2s linear;
        margin-right: 8px
    }

        .site-top a:hover, .site-top a.active {
            color: #333333;
        }

    .site-top i {
        color: #707070;
        margin-right: 8px
    }

    .site-top a:last-child {
        margin-right: 0
    }

.gth-ct {
    display: table;
    width: 100%;
    margin-bottom: 40px;
}

.ct-lft {
    width: calc(100% - 300px);
    float: left;
    padding-right: 40px;
}

.ct-rght {
    width: 300px;
    float: left;
}

.item-left p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333333
}

.item-left img {
    max-width: 100%
}

.menu-tab {
    margin-bottom: 15px
}

.item-left h2, .tit-dth2 {
    font-size: 20px;
    color: #333333;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 22px;
    font-weight: 700;
    text-transform: uppercase
}

.menu-tab a {
    height: 40px;
    width: 100%;
    background-color: var(--main-color);
    margin-bottom: 2px;
    display: block;
    color: #ffffff;
    line-height: 40px;
    text-transform: uppercase;
    padding-left: 35px;
    text-decoration: none;
    transition: .2s linear;
    font-weight: 700;
    position: relative;
    font-size: 14px;
}

    .menu-tab a:hover, .menu-tab a.active {
        background: #dddddd;
        color: #333333
    }

    .menu-tab a:before {
        content: "\f105";
        font: normal normal normal 14px/1 FontAwesome;
        font-size: 18px;
        position: absolute;
        top: 10px;
        left: 18px;
        color: #ffffff;
    }

    .menu-tab a:hover:before, .menu-tab a.active:before {
        color: #333333
    }

    .menu-tab a:last-child {
        margin-bottom: 0
    }

.ds-right {
    padding: 22px 15px 32px;
    background: #f3f3f3;
    margin-bottom: 10px;
}

    .ds-right h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
    }

    .ds-right .it-videoid {
        margin-bottom: 12px;
    }

.ct-lft h2 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 22px;
    font-weight: 700;
    text-transform: uppercase
}

.lst-cpn {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, calc(100%/2));
    margin: 0 -15px 40px;
}

.item-cpn {
    margin: 0 15px;
    color: #333333;
}

.lst-cpn > .item-cpn {
    margin-bottom: 15px;
}

.item-cpn h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase
}

.item-cpn p {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 700;
}

.item-cpn a {
    color: #333333;
    font-weight: 400;
    text-decoration: none;
    transition: .2s linear
}

    .item-cpn a:hover {
        color: var(--main-color);
    }

.form-contact form {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    margin: 0 -20px;
}

.form-contact .form-group {
    margin: 10px 20px;
    display: flex;
    align-items: center;
}

    .form-contact .form-group:nth-of-type(5) {
        grid-column: 2/3;
        grid-row: 2/4;
        align-items: initial;
    }

.form-contact label {
    margin-bottom: 0;
    width: 80px;
    font-size: 14px;
    float: left;
}

    .form-contact label.error {
        display: none !important
    }

.form-contact input.error {
    border: 1px solid #ff4444
}

.form-contact label span {
    color: #ff4444;
    margin-right: 2px;
}

.form-contact input {
    width: calc(100% - 80px);
    height: 32px;
    border: 1px solid #c4c4c4;
    border-radius: 3px;
    float: left;
    padding-left: 8px;
}

.form-contact textarea {
    width: calc(100% - 80px);
    height: 100%;
    border: 1px solid #c4c4c4;
    border-radius: 3px;
    float: left;
    padding-left: 8px;
}

.form-contact button {
    width: 80px;
    height: 32px;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    border: initial;
    background: #c6191f;
    margin-left: calc(100% - 100px);
    grid-column: 2/3;
    margin-top: 10px;
    transition: .2s linear;
}

    .form-contact button:hover {
        background: var(--main-color);
    }

.form-contact .form-group:nth-of-type(5) label {
    margin-top: 10px
}

.form-contact textarea:focus, .form-contact input:focus, .form-contact button:focus {
    outline: none
}

.itemnews {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #d7d7d7;
}

    .itemnews:first-child {
        padding-top: 0
    }

    .itemnews:last-child {
        padding-bottom: 0;
        border-bottom: initial
    }

.imgnews {
    width: 300px;
    height: 210px;
    float: left;
    overflow: hidden;
}

    .imgnews:hover img {
        transform: scale(1.1,1.1)
    }

    .imgnews a {
        display: block;
        height: 100%;
    }

    .imgnews img {
        width: 100%;
        min-width: 100%;
        transition: .3s linear;
        object-fit: cover;
    }

.textnews {
    width: calc(100% - 300px);
    float: left;
    padding-left: 20px;
}

    .textnews .name-news {
        margin-bottom: 8px;
    }

.name-news a {
    font-size: 16px;
    color: #333333;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: .2s linear;
}

    .name-news a:hover {
        color: var(--main-color);
    }

.textnews .time-news {
    margin-bottom: 8px;
    display: inline-block
}

.textnews p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
    max-height: 63px;
    overflow: hidden;
}

.tit-dth2 {
    padding-top: 10px;
}

.list-news {
    margin-bottom: 40px;
}

.lstptr a {
    text-align: center;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #d7d7d7;
    line-height: 30px;
    color: #333333;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: none;
    transition: .2s linear;
}

    .lstptr a:hover, .lstptr a.active {
        border: 1px solid #da2032
    }

.ds-right.brd {
    margin-top: -5px;
}

.item-prjn {
    display: flex;
    padding: 10px 0;
    border-top: 1px solid #d7d7d7;
}

    .item-prjn .img {
        width: 80px;
        height: 80px;
        float: left;
        overflow: hidden
    }

    .item-prjn .text {
        width: calc(100% - 80px);
        float: left;
        padding-left: 8px;
    }

        .item-prjn .text .name {
            margin-bottom: 5px;
            font-size: 14px;
            line-height: 1.2;
        }

            .item-prjn .text .name a {
                color: #333333;
                text-decoration: none;
                font-weight: 700;
                transition: .2s linear
            }

                .item-prjn .text .name a:hover {
                    color: var(--main-color);
                }

    .item-prjn:last-child {
        padding-bottom: 0
    }

    .item-prjn .img a {
        display: block;
        height: 100%
    }

    .item-prjn .img img {
        transition: .2s linear;
        max-width: 100%;
    }

    .item-prjn .img:hover img {
        transform: scale(1.1,1.1)
    }

.form-right input {
    width: 100%;
    height: 30px;
    border: 1px solid #d7d7d7;
    border-radius: 5px;
    padding-left: 8px
}

.form-right label.error {
    display: none
}

.form-right input.error {
    border: 1px solid #ea242a
}

.form-right .form-group {
    margin-bottom: 10px
}

.form-right textarea {
    height: 110px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    width: 100%;
    padding-left: 8px;
    padding-top: 5px
}

    .form-right input::placeholder, .form-right textarea::placeholder {
        font-size: 14px
    }

.form-right button {
    width: 100%;
    height: 32px;
    background: #ea242a;
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    border: initial;
    transition: .2s linear;
}

    .form-right button:hover {
        background: var(--main-color);
    }

    .form-right input:focus, .form-right textarea:focus, .form-right button:focus {
        outline: none
    }

.lst-vdid.detail {
    grid-template-columns: repeat(2, 50%);
}

    .lst-vdid.detail .it-videoid {
        margin-bottom: 15px
    }

.list-news.regis .textnews p {
    margin-bottom: 25px;
}

.list-news.regis .textnews .name-news {
    margin-bottom: 12px
}

.list-news.regis .imgnews {
    width: 250px;
    height: 170px;
}

.list-news.regis .textnews {
    width: calc(100% - 250px);
    padding-left: 25px;
}

.regis-tts .gth-tts {
    font-size: 14px;
    margin-bottom: 18px;
}

.regis-tts table {
    width: 100%;
    font-size: 14px;
    margin-bottom: 30px;
}

    .regis-tts table thead th {
        font-weight: 700;
        background: #e9e9e9;
        text-transform: uppercase;
        height: 38px;
        text-align: center;
        border-right: 1px solid #d7d7d7;
    }

        .regis-tts table thead th:nth-of-type(1), .regis-tts table thead th:nth-of-type(2), .regis-tts table thead th:nth-of-type(4) {
            width: 17%;
        }

        .regis-tts table thead th:nth-of-type(3) {
            width: 26%;
        }

        .regis-tts table thead th:nth-of-type(5) {
            width: 22%
        }

        .regis-tts table thead th:last-child {
            border-right: initial
        }

    .regis-tts table tbody tr td {
        border: 1px solid #d7d7d7;
        padding: 12px;
        vertical-align: initial;
    }

        .regis-tts table tbody tr td ul {
            margin-bottom: 0
        }

    .regis-tts table tbody tr:nth-child(odd) td {
        background: #f9f9f9
    }

    .regis-tts table tbody tr th {
        border: 1px solid #d7d7d7;
        border-top: initial;
        vertical-align: initial;
        padding: 20px 18px;
    }

    .regis-tts table .head {
        text-transform: uppercase
    }

.regis-tts p {
    font-size: 14px;
    margin-bottom: 20px
}

.building {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 50%);
    background: #f7f7f7
}

    .building .img {
        grid-column: 2/3;
        grid-row: 1/1;
        text-align: right;
    }

        .building .img img {
            max-width: 100%
        }

    .building .text {
        padding: 110px 50px 50px 105px;
    }

        .building .text h1 {
            font-size: 31px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--main-color);
            margin-bottom: 20px;
            padding-left: 80px;
            background: url(../images/ictit-1.png) no-repeat;
            position: relative;
            background-position-y: 50%;
        }

        .building .text p {
            font-size: 14px;
            color: #333333;
            margin-bottom: 35px;
            color: #333333;
        }

        .building .text h1:before {
            background: url(../images/bftit.png) no-repeat;
            width: 143px;
            height: 143px;
            background-size: 100% 100%;
            content: '';
            position: absolute;
            top: -40px;
            left: -52px;
        }

.detail-tw {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 50%);
    margin: 40px -20px 0;
}

    .detail-tw .it-tw {
        display: flex;
        margin: 20px;
    }

.it-tw .img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #dee8ee;
    text-align: center;
    line-height: 70px;
}

.it-tw .text {
    width: calc(100% - 70px);
    padding: 12px 0 0px 20px;
}

    .it-tw .text .name {
        font-weight: 700;
        margin-bottom: 8px;
    }

    .it-tw .text p {
        font-size: 14px;
        margin-bottom: 0px;
        line-height: 1;
    }

.sdmb {
    padding: 40px 0;
    text-align: center;
}

    .sdmb h2 {
        font-size: 27px;
        font-weight: 700;
        color: var(--main-color);
        margin-bottom: 15px;
        text-transform: uppercase;
        background: url(../images/ictit-2.png) no-repeat;
        padding-top: 75px;
        background-position-x: 50%;
    }

    .sdmb .gthmb {
        font-size: 17px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .sdmb .img-mbct img {
        max-width: 100%;
    }

.img-mapvt img {
    width: 100%
}

.mapvt {
    position: relative;
}

.text-map h2 {
    margin-bottom: 30px;
    padding-left: 65px;
    background: url(../images/ictit-3.png) no-repeat;
    position: relative;
    background-position-y: 50%;
    font-size: 27px;
    color: #333333;
}

    .text-map h2 span {
        display: block;
        font-size: 31px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--main-color);
    }

.text-map p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.text-map {
    width: 365px;
    position: absolute;
    top: 150px;
    right: 110px;
}

.mapmb-ct {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(6, calc(100%/6));
    text-align: center
}

.item-mp .img {
    border: 5px solid #ffffff45;
    border-radius: 50%;
    width: 95px;
    height: 95px;
    position: relative;
    z-index: 1;
    margin: 0 auto 6px;
    box-shadow: 0 0 5px;
    transition: all .3s linear;
    overflow: hidden
}

    .item-mp .img:hover {
        box-shadow: 0 0 10px rgba(0,0,0,.6);
        transform: scale(1.1,1.1)
    }

    .item-mp .img img {
        width: 100%;
        object-fit: cover;
        min-height: 100%;
    }

    .item-mp .img p {
        position: absolute;
        z-index: 2;
        margin-bottom: 0;
        color: #ffffff;
        font-size: 16px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: flex-end;
    }

        .item-mp .img p span {
            font-size: 32px;
            margin-right: 2px;
            line-height: 32px;
        }

.item-mp .text h3 {
    margin: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
}

.map-mb {
    position: relative;
}

    .map-mb .detail-map {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 35px;
    }

.util {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 50%)
}

.lst-util {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 50%)
}

.item-util {
    position: relative;
    width: 100%;
    height: 332px;
    overflow: hidden;
}

    .item-util .img {
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden
    }

        .item-util .img:after {
            content: '';
            position: absolute;
            pointer-events: none;
            top: 0;
            left: -100%;
            width: 120%;
            height: 100%;
            opacity: 0;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,.15)35%,rgba(255,255,255,.2), 70%,rgba(255,255,255,.3) 100%);
            transform: skewX(-25deg);
        }

        .item-util .img:hover:after {
            opacity: 1;
            left: 120%;
            transition-property: left, top, opacity;
            transition-duration: 1s, 2s, .1s;
            transition-timing-function: ease;
        }

    .item-util img {
        width: 100%;
        object-fit: cover;
        min-height: 100%;
    }

    .item-util h3 {
        position: absolute;
        display: block;
        font-size: 20px;
        color: #ffffff;
        z-index: 1;
        bottom: 20px;
        text-decoration: none;
        left: 0;
        text-transform: uppercase;
        font-weight: 700;
        width: 100%;
        text-align: center;
    }

.text-util {
    background: #e5e5e5;
    padding: 85px 110px 90px 105px;
}

    .text-util h2 {
        margin-bottom: 30px;
        padding-left: 65px;
        background: url(../images/ictit-4.png) no-repeat;
        position: relative;
        background-position-y: 50%;
        font-size: 27px;
        color: #333333;
    }

        .text-util h2 span {
            display: block;
            font-size: 31px;
            text-transform: uppercase;
            font-weight: 700;
            color: var(--main-color);
        }

    .text-util p {
        font-size: 14px;
        color: #333333;
        margin-bottom: 25px;
        text-align: justify;
    }

.lbimg-ct h2 {
    background: url(../images/ictit-5.png) no-repeat;
    position: relative;
    background-position-y: 50%;
    font-size: 27px;
    color: #333333;
    margin-bottom: 0;
    padding: 25px 0 30px;
    padding-left: 80px;
}

    .lbimg-ct h2 span {
        display: block;
        font-size: 31px;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--main-color);
    }

.lbimg-ct {
    position: relative;
    background-size: auto 100%;
    background-position-x: 95%;
}

.listimg-lb {
    display: grid;
    display: -ms-grid;
    grid-template-columns: 17% 23% 25% 35%;
    margin: 0 -1px;
}

    .listimg-lb .item-lbimg {
        margin: 1px;
        position: relative;
        cursor: pointer;
        overflow: hidden
    }

        .listimg-lb .item-lbimg:after {
            content: '';
            position: absolute;
            pointer-events: none;
            top: 0;
            left: -100%;
            width: 120%;
            height: 100%;
            opacity: 0;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,.15)35%,rgba(255,255,255,.2), 70%,rgba(255,255,255,.3) 100%);
            transform: skewX(-25deg);
        }

        .listimg-lb .item-lbimg:hover:after {
            opacity: 1;
            left: 120%;
            transition-property: left, top, opacity;
            transition-duration: 1s, 2s, .1s;
            transition-timing-function: ease;
        }

        .listimg-lb .item-lbimg .ic {
            height: 100%;
            width: 100%;
            height: 300px;
            overflow: hidden
        }

        .listimg-lb .item-lbimg:nth-of-type(3) {
            grid-column: 4/5;
            grid-row: 1/3
        }

        .listimg-lb .item-lbimg:nth-of-type(1) {
            grid-column: 1/3
        }

        .listimg-lb .item-lbimg:nth-of-type(3) .ic {
            height: 602px
        }

.library {
    overflow: hidden;
}

.item-lbimg img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 1s ease-in-out
}

.listimg-lb .item-lbimg:hover .ic img {
    transform: scale(1.1,1.1)
}

.item-lbimg a {
    height: 268px;
    width: 100%
}

.item-lbimg .name {
    text-align: center;
    display: block;
    height: initial;
    position: absolute;
    z-index: 1;
    bottom: 15px;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    left: 0;
    right: 0;
    margin: 0;
}

.review {
    background: url(../images/bg-review.jpg) no-repeat;
    background-size: cover;
    padding: 40px 0 45px;
    margin-top: -1px;
    text-align: center;
}

    .review h2 {
        font-size: 27px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
        text-transform: uppercase;
        background: url(../images/ictit-6.png) no-repeat;
        padding-top: 75px;
        background-position-x: 50%;
    }

.detail-rv {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

.slider-comment {
    max-width: 750px;
    margin: 0 auto;
}

.slide-rv {
    width: 279px;
    margin: -147px auto 0;
    position: relative;
    text-align: center;
    height: 86px;
    z-index: 999;
}

.slider-rv {
    display: flex;
    justify-content: space-evenly;
}

    .slider-rv a .border-img {
        width: 65px;
        height: 65px;
        border: 3px solid #ffffff;
        border-radius: 50%;
        margin: 0 auto;
        margin-top: 11px;
        overflow: hidden
    }

.border-img {
    max-width: 100%;
}

.detail-name p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;
}

.detail-name .name {
    font-weight: 700;
    margin-top: 8px
}

.slider-rv a .border-img img {
    width: 100%;
    height: 100%;
}

.detail-name {
    bottom: 0;
}

.tab-sliderrv {
    padding-bottom: 60px;
    position: relative;
    padding-top: 20px;
}

.slide-rv .prevrv {
    width: 21px;
    height: 20px;
    background: url(../images/ic-left.png) no-repeat;
    background-size: 100% 100%;
    content: '';
    position: absolute;
    top: calc((100% - 20px)/2);
    left: -50px;
}

.slide-rv .nextrv {
    width: 21px;
    height: 20px;
    background: url(../images/ic-right.png) no-repeat;
    background-size: 100% 100%;
    content: '';
    position: absolute;
    top: calc((100% - 20px)/2);
    right: -50px;
}

.slider-rv .lslide.active + a .border-img {
    width: 86px;
    height: 86px;
    line-height: initial;
    margin-top: 0;
    overflow: hidden
}

.slider-rv .lslide.active + a {
    width: 86px !important;
}

.slide-rv .lSSlideOuter .lightSlider {
    height: 86px !important
}

.news-da h2 {
    font-size: 27px;
    font-weight: 700;
    color: var(--main-color);
    text-transform: uppercase;
    background: url(../images/ictit-7.png) no-repeat;
    padding-top: 55px;
    background-position-x: 50%;
    text-align: center;
}

.news-da .title-top {
    padding: 20px 0;
    background: #d3e1ed;
}

.listnews-dt {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 50%);
}

.itemnews-dt {
    display: grid;
    display: -ms-grid;
    grid-template-columns: repeat(2, 50%);
}

    .itemnews-dt .img {
        height: 100%;
        overflow: hidden
    }

    .itemnews-dt:nth-of-type(n + 2) .img {
        max-height: 360px;
        overflow: hidden
    }

    .itemnews-dt:nth-of-type(n + 2) .txt {
        display: none
    }

    .itemnews-dt:nth-of-type(2n + 3) .text, .itemnews-dt:nth-of-type(2n + 4) .text {
        grid-column: 1/2;
        grid-row: 1;
        background: #bad1e4
    }

    .itemnews-dt img {
        width: 100%;
        min-height: 100%;
        object-fit: cover;
    }

    .itemnews-dt .name {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #333333;
        text-decoration: none;
        transition: .2s linear;
        line-height: 1.3;
    }

        .itemnews-dt .name a {
            color: #333333
        }

        .itemnews-dt .name:hover a {
            color: var(--main-color);
        }

    .itemnews-dt p {
        color: #333333;
        margin-bottom: 0;
        font-size: 14px;
        line-height: 22px;
        max-height: 88px;
        overflow: hidden;
    }

        .itemnews-dt p::-webkit-scrollbar {
            width: 1px;
        }

    .itemnews-dt:first-child p {
        max-height: 222px
    }

    .itemnews-dt .see-more {
        font-size: 14px;
        color: var(--main-color);
        text-decoration: none;
        transition: .2s linear;
        padding-right: 19px;
        position: absolute;
        left: 35px;
        bottom: 40px;
        background: url(../images/ic-arrx.png) no-repeat;
        background-position-x: 100%;
        background-position-y: 36%;
    }

    .itemnews-dt .text {
        position: relative;
        background: #edf3f8;
        padding: 50px 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.title-bottom {
    padding: 28px 0 35px;
    background: #d3e1ed;
    text-align: center;
}

    .title-bottom a {
        display: inline-block;
        margin: 0 auto;
        width: 140px;
        height: 32px;
        border: 1px solid var(--main-color);
        color: var(--main-color);
        text-align: center;
        line-height: 32px;
        text-decoration: none;
    }

.slidemb {
    position: relative;
}

    .slidemb .prevmb {
        width: 52px;
        height: 52px;
        background: url(../images/click-l.png) no-repeat;
        top: calc((100% - 27px)/2);
        left: 0;
        display: block;
        position: absolute;
        border: 1px solid #b9b9b9;
        border-radius: 50%;
        background-position-x: 50%;
        background-position-y: 47%;
        transition: .3s linear
    }

        .slidemb .prevmb:hover {
            border: 1px solid var(--main-color);
            background: url(../images/click-lx.png) no-repeat;
            background-position-x: 50%;
            background-position-y: 47%;
        }

    .slidemb .nextmb {
        width: 52px;
        height: 52px;
        background: url(../images/click-r.png) no-repeat;
        top: calc((100% - 27px)/2);
        right: 0;
        display: block;
        position: absolute;
        border: 1px solid #b9b9b9;
        border-radius: 50%;
        background-position-x: 50%;
        background-position-y: 47%;
        transition: .3s linear
    }

        .slidemb .nextmb:hover {
            border: 1px solid var(--main-color);
            background: url(../images/click-rx.png) no-repeat;
            background-position-x: 50%;
            background-position-y: 47%;
        }

.img-list-mb {
    display: none;
    opacity: 0;
    visibility: hidden;
}

    .img-list-mb.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

.list-mb a {
    padding: 5px 22px;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
    margin-right: 5px;
    color: #333333;
    text-decoration: none;
    transition: .2s linear;
    font-size: 14px
}

    .list-mb a:hover, .list-mb a.active {
        border: 1px solid var(--main-color);
        color: var(--main-color);
    }

    .list-mb a:last-child {
        margin-right: 0
    }

.list-mb {
    margin-bottom: 30px
}

.touch-on, .bg-black {
    display: none;
}

.call.call-cn {
    display: none;
}

.menu.menu-cn a:before {
    display: none;
}

.menu.menu-cn a {
    line-height: initial;
    height: 76px;
    vertical-align: middle;
    padding-top: 15px;
    transition: .3s linear;
}

    .menu.menu-cn a span {
        display: block;
    }

.menu.menu-cn {
    line-height: initial;
}

    .menu.menu-cn ul li > a:hover, .menu.menu-cn ul lia.active {
        background: #00528f;
        color: #ffffff;
    }

.img-menu {
    height: 30px
}

.plus-show {
    display: none;
}

.menu.menu-cn .sub-menu a {
    line-height: initial;
    height: initial;
    padding: 5px 0;
}

.tool-right ul {
    display: table;
    padding: 10px 0;
    margin: 0;
}

    .tool-right ul li {
        display: inline-block;
        font-size: 14px;
        font-weight: 300;
        padding-right: 10px;
    }

        .tool-right ul li i {
            padding-left: 10px;
            color: #a5a5a5;
        }

        .tool-right ul li a {
            color: #333
        }

.pagi {
    clear: both;
}

.pagination {
    padding: 25px 0;
    margin: 0;
    display: table;
}

.pagi nav ul li.hidden {
    display: none;
}

.pagi nav ul li {
    display: inline-block;
    border: none;
}

    .pagi nav ul li a {
        margin-right: 8px;
        color: #8b8b8b;
        transition: all .2s linear;
        display: block;
        padding: 5px 10px;
        text-align: center;
        font-size: 14px;
        border: 1px solid #d4d4d400;
        line-height: 18px;
    }

.pagination > li > a.active-page, .pagination > li > a.active, .pagination > li > a:hover {
    border: 1.2px solid #0d83bf;
    background: initial;
    color: #0d83bf;
}

.fixed-size.lg-outer .lg-inner {
    background-color: #fff;
    box-shadow: 0 0 10px #02813a;
}

.fixed-size.lg-outer .lg-sub-html {
    position: absolute;
    text-align: left;
}

.fixed-size.lg-outer .lg-toolbar {
    background-color: transparent;
    height: 0;
}

    .fixed-size.lg-outer .lg-toolbar .lg-icon {
        color: #ffffff;
        font-size: 25px
    }

.fixed-size.lg-outer .lg-img-wrap {
    padding: 12px;
}

.lg-toolbar .lg-close:after { /*content: "\f00d"; font: normal normal normal 14px/1 FontAwesome;*/
    font-size: 20px;
}

.lg-actions .lg-prev, .lg-actions .lg-next {
    color: #fff !important;
    border: 1px solid #02813a !important
}

.lg-backdrop {
    background: #000000c4
}

.projects-ct {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 25px;
    margin-top: 30px
}

    .projects-ct .item-prj img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.alrt-contact, .alrt-email {
    background: #ff6d6d;
    padding: 5px 20px;
    display: inline-block;
    margin-top: 15px;
    border-radius: 20px;
    color: #ffffff;
    clear: both
}

.alrt-success {
    background: #2fc35d;
    color: #ffffff;
}

.tit-h1 h1, .tit-h1 h2 {
    font-size: 28px;
    line-height: 28px;
    font-family: "RobotoCondensed",sans-serif;
    font-weight: 700;
    position: relative;
    border-bottom: 1px solid #dadada;
    padding-bottom: 10px;
    display: block;
}

    .tit-h1 h1:after, .tit-h1 h2:after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 54px;
        height: 2px;
        background: var(--main-color);
    }

.popup-video {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #00000087;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

    .popup-video.open {
        opacity: 1;
        visibility: visible;
    }

.video {
    width: 55%;
    width: 800px;
    max-width: calc(100% - 20px);
    height: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

    .video iframe {
        width: 100%;
        height: 100%
    }

.close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    opacity: .5;
}

    .close:hover, .close:focus {
        opacity: 1
    }

.slider-comment .detail-rv .text {
    margin-bottom: 130px;
}

    .slider-comment .detail-rv .text p {
        line-height: 22px;
        height: 88px;
        overflow: hidden;
    }

.seemore:hover {
    background: var(--main-color);
    color: #fff;
    padding: 0
}

#notfound {
    position: relative;
    height: auto;
}

    #notfound .notfound {
        position: relative;
        margin: auto;
    }

.notfound {
    max-width: 710px;
    width: 100%;
    text-align: center;
    padding: 50px 15px;
    line-height: 1.4;
}

    .notfound .notfound-404 {
        height: 200px;
        line-height: 200px;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Fredoka One',cursive;
            font-size: 168px;
            margin: 0;
            color: var(--main-color);
            text-transform: uppercase;
        }

    .notfound h2 {
        font-family: 'Raleway',sans-serif;
        font-size: 22px;
        font-weight: 400;
        text-transform: uppercase;
        color: #222;
        margin: 0;
    }

    .notfound a {
        font-family: 'Raleway',sans-serif;
        display: inline-block;
        font-weight: 700;
        border-radius: 15px;
        text-decoration: none;
        color: #39b1cb;
    }

        .notfound a > .arrow {
            position: relative;
            top: -2px;
            border: solid #39b1cb;
            border-width: 0 3px 3px 0;
            display: inline-block;
            padding: 3px;
            -webkit-transform: rotate(135deg);
            -ms-transform: rotate(135deg);
            transform: rotate(135deg);
        }

.regis-tts img, .regis-tts iframe, .regis-tts table {
    max-width: 100%
}

.regis-tts {
    font-size: 14px
}

.list-hotline-fixed {
    position: fixed;
    left: 20px;
    bottom: 145px;
    z-index: 100;
}

    .list-hotline-fixed a.animated {
        position: relative;
        display: block;
        width: 76px;
        height: 76px;
        border: 8px solid rgba(240, 116, 40, 0.3);
        border-radius: 50%;
    }

        .list-hotline-fixed a.animated img {
            max-width: 100%;
        }

.animated.infinite.zoomIn.mypage-alo-ph-circle {
    width: 160px;
    height: 160px;
    top: 9px;
    left: 8px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    border: 2px solid #48A5D4;
    opacity: .1;
    -webkit-animation: kamar-alo-circle-anim 1.2s infinite ease-in-out;
    -moz-animation: kamar-alo-circle-anim 1.2s infinite ease-in-out;
    -o-animation: kamar-alo-circle-anim 1.2s infinite ease-in-out;
    animation: kamar-alo-circle-anim 1.2s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    border-color: var(--main-color);
    opacity: .5;
}

.animated.infinite.pulse.mypage-alo-ph-circle-fill {
    width: 90px;
    height: 90px;
    top: 42px;
    left: 43px;
    position: absolute;
    background-color: #000;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .1;
    -webkit-animation: kamar-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: kamar-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: kamar-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: kamar-alo-circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: var(--main-color);
    opacity: .75 !important;
}

.animated.infinite.tada.mypage-alo-ph-img-circle {
    width: 55px;
    height: 55px;
    top: 60px;
    left: 60px;
    position: absolute;
    background: rgba(30, 30, 30, 0.1) url(../images/phone.png) no-repeat center center;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
    -webkit-animation: kamar-alo-circle-img-anim 1s infinite ease-in-out;
    -moz-animation: kamar-alo-circle-img-anim 1s infinite ease-in-out;
    -o-animation: kamar-alo-circle-img-anim 1s infinite ease-in-out;
    animation: kamar-alo-circle-img-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background-color: var(--main-color);
}

@-moz-keyframes kamar-alo-circle-anim {
    0% {
        -moz-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
    }
}

@-webkit-keyframes kamar-alo-circle-anim {
    0% {
        -webkit-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }
}

@-o-keyframes kamar-alo-circle-anim {
    0% {
        -o-transform: rotate(0) scale(.5) skew(1deg);
        opacity: .1;
    }

    30% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .5;
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .1;
    }
}

@-moz-keyframes kamar-alo-circle-fill-anim {
    0% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -moz-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@-webkit-keyframes kamar-alo-circle-fill-anim {
    0% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -webkit-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@-o-keyframes kamar-alo-circle-fill-anim {
    0% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2;
    }

    100% {
        -o-transform: rotate(0) scale(.7) skew(1deg);
        opacity: .2;
    }
}

@-moz-keyframes kamar-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes kamar-alo-circle-img-anim {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-o-keyframes kamar-alo-circle-img-anim {
    0% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
}

.news-h2 h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px
}

.listkh-other a {
    color: #333;
    font-size: 13px;
    position: relative;
    line-height: 24px;
}

    .listkh-other a:hover {
        color: var(--main-color);
    }

.tab-Child {
    text-align: center;
    height: 0;
    transform: translateY(30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tab-Child a {
        color: var(--main-color);
        font-size: 20px;
        text-transform: uppercase;
        border-right: 1.5px solid var(--main-color);
        line-height: 20px;
        font-weight: 600;
        padding: 0 10px;
        margin: 0 !important;
        display: block;
    }

        .tab-Child a:hover {
            color: #000000
        }

        .tab-Child a:last-child {
            border: initial
        }

.listkh-other {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin: 0;
    grid-gap: 24px;
}

    .listkh-other .itemnews {
        display: block;
        padding: 0 !important;
        border-bottom: initial;
    }

    .listkh-other .imgnews {
        width: 100%;
        height: 150px;
        overflow: hidden;
        margin-bottom: 15px;
    }

    .listkh-other .textnews {
        width: 100%;
        padding-left: 0
    }

    .listkh-other h3 {
        font-size: 14px;
        line-height: 24px
    }

    .listkh-other .textnews .desc {
        line-height: 24px;
        max-height: 48px;
        overflow: hidden;
        display: block
    }

        .listkh-other .textnews .desc p {
            margin: 0
        }

.content-other span {
    font-size: 20px;
    font-weight: 700;
    display: block;
    border-bottom: 1px solid #dadada;
    padding-bottom: 3px;
    margin-bottom: 12px;
}

.content-other a {
    display: block;
    color: #333;
    font-size: 14px;
    position: relative;
    line-height: 24px;
    margin-bottom: 2px;
}

    .content-other a i {
        margin-right: 5px
    }

.popup-vd {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s ease;
    display: flex;
}

    .popup-vd.active {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .popup-vd .ifr-tv {
        z-index: 103;
        position: relative;
        width: 900px;
        height: initial;
        margin: auto;
        top: 0;
        max-width: calc(100% - 30px);
        z-index: 103;
        position: relative;
    }

        .popup-vd .ifr-tv iframe {
            width: 100%;
            height: 506px;
            border: none;
        }

    .popup-vd .bgblack {
        z-index: 102;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
    }

    .popup-vd .close-pu {
        right: 20px;
        top: 20px;
        color: #fff;
        cursor: pointer;
        opacity: 1;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0);
        border-radius: 100%;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        position: absolute;
        z-index: 1000;
    }

        .popup-vd .close-pu:before,
        .popup-vd .close-pu:after {
            display: block;
            content: " ";
            position: absolute;
            top: 14px;
            left: 23px;
            width: 4px;
            height: 22px;
            border-radius: 4px;
            background: #fff;
            -webkit-transition: background 0.2s ease-in-out;
            transition: background 0.2s ease-in-out;
        }

        .popup-vd .close-pu:before {
            transform: rotate(45deg);
        }

        .popup-vd .close-pu:after {
            transform: rotate(-45deg);
        }

.text-dfl .desc {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 15px
}

.wrapper-survey {
    width: 1000px;
    margin: auto;
    padding-bottom: 50px;
}

    .wrapper-survey h1 {
        font-size: 26px;
        color: var(--main-color);
        text-transform: uppercase;
        font-weight: 600;
        text-align: center;
        padding: 15px 0;
    }

    .wrapper-survey .desc {
        margin-bottom: 15px;
    }

        .wrapper-survey .desc p {
            font-size: 14px;
        }

        .wrapper-survey .desc ul {
            text-align: center;
        }

            .wrapper-survey .desc ul li {
                list-style: none;
                display: inline-block;
                padding: 0 15px;
                font-size: 14px;
                font-weight: 600;
            }

.grid-question .item {
    display: grid;
    grid-template-columns: 53% 47%;
    background: #fafafa;
    padding: 15px;
    position: relative;
}

    .grid-question .item.area {
        display: block;
    }

    .grid-question .item:nth-of-type(2n+1) {
        background: #f0f0f0;
    }

    .grid-question .item .text p {
        margin-bottom: 0;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
    }

    .grid-question .item.area .text p {
        margin-bottom: 10px;
    }

    .grid-question .item .answer label {
        margin: 0;
        position: relative;
        width: 105px;
        text-align: left;
        padding-right: 10px;
        font-size: 13px;
        font-weight: 600;
        text-indent: 30px;
    }

        .grid-question .item .answer label.readonly {
            pointer-events: none;
            opacity: 0.5;
        }

    .grid-question .item.area .answer textarea {
        height: 100px;
        border: 1px solid #c8c8c8;
        border-radius: 3px;
        width: 100%;
        font-size: 14px;
        padding: 5px;
    }

        .grid-question .item.area .answer textarea:focus {
            outline: none;
        }

    .grid-question .item.area .answer.readonly textarea {
        pointer-events: none;
        background: #fafafa;
    }

    .grid-question .item .answer label.error, .grid-question .item label.error {
        color: red;
        font-size: 14px;
        font-weight: 400;
        width: 100%;
        text-align: left;
        clear: both;
        display: block;
        grid-column: 1/3;
        margin: 0;
    }

.radio-input {
    user-select: none;
}

    .radio-input input {
        margin-right: 5px;
        position: absolute;
        top: 8px;
        left: 8px;
        opacity: 0;
    }

    .radio-input .checkmark {
        position: absolute;
        border: 1.1px solid #cccccc;
        top: 1px;
        left: 5px;
        height: 20px;
        width: 20px;
        border-radius: 15px;
        background: #ffffff;
    }

        .radio-input .checkmark:before {
            font: normal normal normal 14px/1 FontAwesome;
            background: var(--main-color);
            font-size: 12px;
            width: 12px;
            height: 12px;
            content: "";
            position: absolute;
            border-radius: 8px;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            transform: scale(0);
            transition: all 0.5s ease;
        }

    .radio-input input:checked ~ .checkmark:before {
        transform: scale(1);
    }

.wrapper-survey .action {
    text-align: center;
}

    .wrapper-survey .action button {
        font-size: 14px;
        background: #ea242a;
        border: none;
        border-radius: 20px;
        color: #ffffff;
        text-transform: uppercase;
        line-height: 1;
        padding: 10px 55px;
        transition: all 0.5s ease;
    }

        .wrapper-survey .action button:focus {
            outline: none;
        }

        .wrapper-survey .action button:hover {
            background: var(--main-color);
        }

.value-answer {
    opacity: 0;
    height: 0;
    padding: 0;
    border: none;
}

.notification-success {
    min-height: 430px;
}

.img-mapvt iframe {
    width: 100% !important;
}

.mapvt_v2 .text-map {
    position: initial;
    width: 35%;
}

.mapvt_v2 .container {
    display: flex;
}

.mapvt_v2 .img-mapvt {
    margin-right: 25px;
    width: calc(65% - 25px);
}

.map-mb .detail-map_v2 {
    position: initial
}

.mapvt_v2 {
    margin-bottom: 30px
}

.map-mb_v2 {
    position: relative;
    background: rgb(237 27 53 / 20%);
    padding: 60px 0;
}

.lg-backdrop.in {
    z-index: 99999
}

.lg-outer {
    z-index: 99999 !important;
}

    .lg-outer .lg {
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
    }

.fixed-size.lg-outer .lg-inner {
    background: #00000087;
}

.map-mb_v2 .item-mp .text h3 {
    color: #000000
}

.current-lang {
    position: relative;
    padding-left: 15px;
}

    .current-lang span {
        color: #333;
        text-transform: uppercase;
        cursor: pointer;
        font-size: 14px;
    }

        .current-lang span i {
            margin-left: 5px;
        }

    .current-lang .lang {
        position: absolute;
        min-width: 140px;
        top: 100%;
        left: 0;
        z-index: 1;
    }

    .current-lang .lang {
        display: none;
        background: #ffffff;
    }

    .current-lang:hover .lang {
        display: block;
    }

    .current-lang .lang > * {
        border-bottom: 1px solid #e6e6e6;
        padding: 5px;
        font-size: 14px;
    }

.projects-ct.cls-projects-ct {
    display: block;
}
