@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --blue: #0371ad;
    --red: #ea3b3f;
    --yellow: #FFA300;
    --gray: #0C2A49;
    --font: "Noto Sans", sans-serif;
    --background-rgba: linear-gradient(90.07deg, #F68121 -0.48%, #F86E54 100.22%);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
/* small, */
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after {
    content: '';
    content: none;
}

q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body,
html {
    font-size: 16px;
    font-family: var(--font);
    /* background-image: url(../images/banner.svg); */
    background-size: cover;
    background-repeat: no-repeat;
}

a {
    text-decoration: none !important;
}

img,
a {
    -webkit-transition: all .3s;
    transition: all .3s;
}

p {
    font-size: 100%;
    line-height: 1.5;
    color: var(--gray);
}

button,
img,
input,
select {
    outline: none !important;
}

.clearfix:after {
    content: "";
    clear: both;
    display: block;
}

.clear {
    clear: both;
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.5)), to(transparent));
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
}

@media screen and (device-aspect-ratio: 2 / 3) {

    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {

    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="url"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {

    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="url"] {
        font-size: 16px;
    }
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {

    select,
    textarea,
    input[type="text"],
    input[type="password"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="date"],
    input[type="month"],
    input[type="time"],
    input[type="week"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="url"] {
        font-size: 16px;
    }
}

.relative {
    position: relative;
    z-index: 5;
}

.custom-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 165px;
    height: 45px;
    padding: 0px 32px;
    border-radius: 10px;
    font-size: 95%;
    font-weight: 500;
}

.btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.btn-blue {
    background: var(--blue);
    color: #fff;
}

.btn-blue:hover {
    background: var(--yellow);
}

.btn-blue2 {
    background: #4CAF50;
    color: #fff;
}

.btn-blue2:hover {
    background: var(--yellow);
}

.btn-white {
    border: 1px solid #4260D5;
    background: #fff;
    color: var(--gray);
}

.btn-white:hover {
    background: var(--yellow);
    color: #fff;
    border-color: var(--yellow);
}

.btn-gray {
    background: #EDF4FB;
    color: var(--blue);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 140px;
    margin: 0 auto;
}

.ratio {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 100%;
}

.ratio img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    display: block;
}

.pd-main {
    padding-top: 40px;
    padding-bottom: 40px;
}

.heading {
    font-size: 150%;
    font-weight: 600;
    margin-bottom: 20px;
}

.cut-text,
.items-news .content h3 a,
.items-news .content p,
.site-project .slick-project .items-project .content h3 a,
.site-dnlq .slick-project .items-dn .content h3 a,
.site-dnlq .slick-project .items-dn .content p,
.site-ttlq .slick-newslq .items-newslq .content h3 a,
.site-ttlq .slick-newslq .items-newslq .content p,
.page-services-archive .items-services .content h3 a,
.page-services-archive .items-services .content p,
.page-team .items-dn .content h3 a,
.page-team .items-dn .content p,
.page-qa .items--content .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.slick-arrow {
    position: absolute;
    top: -60px;
    width: 40px;
    height: 40px;
    right: 0;
    border: 1px solid #cce0f4;
    background: transparent;
    border-radius: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    color: var(--color-blue);
    z-index: 5;
    font-size: 0;
    cursor: pointer;
}

.slick-arrow:before {
    content: '';
    font-size: 20px;
    color: var(--blue);
}

.slick-arrow:hover {
    background: var(--blue);
}

.slick-arrow:hover:before {
    color: #fff;
}

.slick-next {
    right: 12px;
}

.slick-next:before {
    content: '\f105';
}

.slick-prev {
    right: 62px;
}

.slick-prev:before {
    content: '\f104';
}

.mb-24 {
    margin-bottom: 24px;
}

.slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 20px;
}

.slick-dots li {
    margin: 0px 5px;
    width: 12px;
    height: 12px;
    border: 1px solid var(--blue);
    border-radius: 50%;
}

.slick-dots li button {
    display: none;
}

.slick-dots .slick-active {
    background: var(--blue);
}

.page-banner {
    background-image: url(../images/banner-page.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 45px 0px;
}

.page-banner .heading {
    font-size: 280%;
    font-weight: 600;
    color: #0C2A49;
    margin-bottom: 20px;
}

.page-banner .heading span {
    color: var(--blue);
}

.page-banner p {
    font-size: 90%;
    color: #0C2A49;
    opacity: 0.7;
    margin-bottom: 0;
}

.the_content {
    text-align: justify;
    line-height: 1.5;
    font-family: var(--font-content);
    font-size: 100%;
    color: var(--gray);
}

.the_content h1 {
    margin-bottom: 1rem;
    font-size: 150%;
}

.the_content h2,
.the_content h3,
.the_content h4,
.the_content h5,
.the_content h6 {
    margin-bottom: 1rem;
    font-size: 125%;
}

.the_content p {
    font-size: 100%;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-weight: 400;
}

.the_content p:last-child {
    margin-bottom: 0;
}

.the_content p a {
    color: var(--color-blue);
}

.the_content p span {
    font-style: italic;
    font-size: 90%;
    opacity: 0.7;
}

.the_content ul {
    list-style: disc;
    padding-left: 18px;
    padding-bottom: 5px;
}

.the_content ul li {
    line-height: 1.5;
    margin-bottom: 10px;
}

.the_content ol {
    list-style: decimal;
    padding-left: 18px;
    padding-bottom: 5px;
}

.the_content ol li {
    line-height: 1.5;
    margin-bottom: 10px;
}

.the_content blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eb2b2d;
}

.the_content blockquote p {
    margin: 0 !important;
}

.the_content code {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    font-size: .85rem;
    color: #e83e8c;
    line-height: 1.5;
}

.the_content table>tbody>tr>td,
.the_content table>tbody>tr>th,
.the_content table>tfoot>tr>td,
.the_content table>tfoot>tr>th,
.the_content table>thead>tr>td,
.the_content table>thead>tr>th {
    border: 1px solid #ddd;
    padding: 7px 10px;
    line-height: 1.5;
}

.the_content iframe {
    margin: auto;
}

.the_content .syntaxhighlighter {
    padding: 10px 0;
}

.the_content img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 90%;
    font-weight: 500;
    padding: 10px 0px;
}

.breadcrumbs a {
    color: var(--blue);
}

.breadcrumbs span {
    color: #748698;
}

.container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1224px;
    }

    .container-fluid {
        padding-right: 40px;
        padding-left: 40px;
    }

    .container-1000 {
        max-width: 1000px;
    }
}

.row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col-auto {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.col-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    -webkit-box-flex: 0;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    -webkit-box-flex: 0;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.col-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-md-auto {
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-md-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-md-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-lg-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-lg-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .col-xl-3 {
        -ms-flex: 0 0 25%;
        -webkit-box-flex: 0;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-xl-6 {
        -ms-flex: 0 0 50%;
        -webkit-box-flex: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-xl-9 {
        -ms-flex: 0 0 75%;
        -webkit-box-flex: 0;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        -webkit-box-flex: 0;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        -webkit-box-flex: 0;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .col-xl-12 {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.d-block {
    display: block !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.flex,
.btn,
.header .logo .js-menu-mobile,
.header .logo-content,
.header-menu--custom,
.header-menu .menu,
.site-banner-custom,
.site-banner .infor .items,
.site-banner .infor .items .icon,
.items-news .content .date,
.site-project .slick-project .items-project .content .date,
.site-project .slick-project .items-project .content .date .download,
.footer .logo-content,
.footer .infor li,
.footer .online,
.footer .mxh li a,
.footer .mxh li a i,
.menu-mobile .js-close,
.page-details-services .infor-bs .content .price,
.page-details-services .infor-bs .content .button,
.page-team .filter,
.page-team .category,
.page-navigation ul,
.page-navigation ul li a,
.page-details-bs .infor-bs ul,
.page-details-bs .infor-bs ul li,
.page-details-bs .services-bs .items .content .hm,
.page-details-bs .services-bs .items .content .price,
.single-archive .date,
.download,
.page-qa .items--content .icon,
.page-qa .items--user,
.page-qa .items--user h4,
.page-reply .reply .user-top,
.page-reply .reply .user-top h4,
.infor-contact .content .lh-infor li,
.infor-contact .content .mxh,
.infor-contact .content .mxh li a,
.infor-contact .content .mxh li a i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.font-icon,
.slick-arrow:before,
.header-menu .menu .menu-items-childer a:after,
.menu-mobile ul li .js-sub:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

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

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.header {
    /* background: url(../images/bg-header.png); */
    background-size: auto;
    background-repeat: no-repeat;
    background-position: 75%;
    -webkit-box-shadow: 0px 2px 4px 0px rgba(16, 46, 75, 0.08);
    box-shadow: 0px 2px 4px 0px rgba(16, 46, 75, 0.08);
}

.header .logo {
    padding: 15px 0px;
    position: relative;
}

.header .logo .js-menu-mobile {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: var(--blue);
    font-size: 130%;
    display: none;
    color: #fff;
}

@media screen and (max-width: 991px) {
    .header .logo .js-menu-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.header .logo img {
    max-width: 50px;
}

.header .logo .logo-text {
    padding-left: 12px;
}

.header .logo .logo-text h2 {
    font-size: 120%;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 7px;
    text-transform: capitalize;
}

.header .logo .logo-text span {
    display: block;
    color: var(--gray);
}

.header-menu {
    background: var(--blue);
}

.header-menu--custom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-menu .menu li {
    line-height: 60px;
    position: relative;
}

.header-menu .menu li:hover .sub-menu {
    display: block;
}

.header-menu .menu li .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 270px;
    max-width: 300px;
    background: #fff;
    z-index: 88;
    border-radius: 10px;
    display: none;
    /* overflow: hidden; */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    -webkit-box-shadow: 0 0 5px #ccc;
    box-shadow: 0 0 5px #ccc;
}

.header-menu .menu li .sub-menu li {
    line-height: 1;
}

.header-menu .menu li .sub-menu li:last-child a {
    border: 0;
}

.header-menu .menu li .sub-menu li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #fff;
    color: #4F4F4F;
    font-weight: 400;
    line-height: 1.5;
}

.header-menu .menu li .sub-menu li a:hover {
    background: #F2F7F9;
    color: var(--blue);
}

.header-menu .menu li .sub-menu li a:after {
    display: none;
}

.header-menu .menu li a {
    display: block;
    font-size: 95%;
    font-weight: 500;
    color: #fff;
    padding: 0px 15px;
}

.header-menu .menu li a:hover {
    color: var(--yellow);
}

.header-menu .menu li a:hover:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    padding-left: 0;
    padding-right: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.header-menu .menu li:last-child a {
    padding-right: 0;
}

.header-menu .menu li:first-child a {
    padding-left: 0;
}

.header-menu .menu .menu-items-childer a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-menu .menu .menu-items-childer a:after {
    padding-left: 5px;
    content: '\f107';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.header-menu .search form {
    position: relative;
}

.header-menu .search form input {
    width: 250px;
    height: 35px;
    background: #fff;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    border: 0;
    outline: none;
    padding-right: 37px;
}

.header-menu .search form input::-webkit-input-placeholder {
    color: var(--gray);
}

.header-menu .search form input:-ms-input-placeholder {
    color: var(--gray);
}

.header-menu .search form input::-ms-input-placeholder {
    color: var(--gray);
}

.header-menu .search form input::placeholder {
    color: var(--gray);
}

.header-menu .search form .submit {
    position: absolute;
    top: 0;
    right: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 35px;
    height: 35px;
    outline: none;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--blue);
    font-size: 120%;
}

.site-banner {
    position: relative;
    padding-top: 50px;
    background-image: -webkit-gradient(linear, left top, right top, from(#d9e8f7), to(#fff));
    background-image: linear-gradient(to right, #d9e8f7, #fff);
    position: relative;
}

.site-banner .images {
    text-align: right;
}

.site-banner .images img {
    width: 100%;
    height: 500px;
    margin-left: auto;
}

.site-banner-custom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site-banner--content {
    max-width: 486px;
    width: 100%;
    padding-bottom: 50px;
}

.site-banner--content h2 {
    font-size: 260%;
    color: #0C2A49;
    line-height: 1.3;
    margin-bottom: 10px;
}

.site-banner--content h2 span {
    color: var(--blue);
}

.site-banner--content p {
    font-size: 100%;
    margin-bottom: 32px;
}

.site-banner--content .btn {
    max-width: 140px;
    height: 52px;
    padding: 0px 10px;
    min-width: 140px;
}

.site-banner .infor {
    position: absolute;
    bottom: -90px;
    left: 0;
    width: 100%;
}

.site-banner .infor_content {
    background: #fff;
    border: 1px solid rgba(0, 99, 198, 0.2);
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(16, 46, 75, 0.12);
    box-shadow: 0px 4px 16px 0px rgba(16, 46, 75, 0.12);
}

.site-banner .infor .items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    padding: 25px 0px;
}

.site-banner .infor .items .icon {
    font-size: 16px;
    color: #0c2a49;
}

.site-banner .infor .items .icon img {
    margin-right: 10px;
}

.site-banner .infor .items p {
    margin: 13px 0px;
    font-weight: 600;
    font-size: 120%;
    color: var(--blue);
}

.site-banner .infor .items span {
    display: block;
    font-size: 90%;
    color: #000000;
    opacity: 0.8;
    font-weight: 400;
}

.site-banner .infor .col-custom {
    position: relative;
}

.site-banner .infor .col-custom:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 1px;
    height: 70px;
    background: #d5d5d5;
    opacity: 0.5;
}

.site-news {
    padding-top: 130px;
    background: #F7F9FB;
    padding-bottom: 16px;
}

.site-news .list-news .items-news {
    margin-bottom: 24px;
}

.site-news .list-news .items-news .images {
    padding-bottom: 61.5%;
}

.site-news .list-news .items-news .content {
    padding: 10px 12px;
}

.site-news .list-news .items-news .content h3 a {
    margin-bottom: 10px;
    font-size: 90%;
    font-weight: 500;
}

.items-news {
    background: #fff;
    border: 1px solid #CCE0F4;
    border-radius: 5px;
    overflow: hidden;
}

.items-news:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.items-news:hover .content h3 a {
    color: var(--yellow);
}

.items-news .images {
    padding-bottom: 58%;
}

.items-news .content {
    padding: 15px 20px;
}

.items-news .content h3 a {
    font-size: 125%;
    color: #0C2A49;
    font-weight: 600;
    line-height: 1.3;
    -webkit-line-clamp: 2;
}

.items-news .content p {
    margin: 12px 0px 16px 0px;
    font-size: 100%;
    font-weight: 400;
    -webkit-line-clamp: 3;
}

.items-news .content .date {
    color: #677185;
}

.items-news .content .date i {
    padding-right: 10px;
}

.site-services {
    padding-bottom: 16px;
}

.site-services .title {
    margin-bottom: 30px;
    text-align: center;
}

.site-services .title .heading {
    margin-bottom: 10px;
}

.site-services .title p {
    margin: 0 auto;
    color: #0C2A49;
    font-weight: 400;
    max-width: 490px;
    opacity: 0.6;
}

.site-services .items {
    border: 1px solid #CCE0F4;
    border-radius: 5px;
    padding: 20px 15px 40px 15px;
    text-align: center;
    height: 100%;
}

.site-services .items:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.site-services .items:hover h3 {
    color: var(--blue);
}

.site-services .items .icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 12px;
    background: #ECF3FA;
}

.site-services .items .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.site-services .items h3 {
    font-size: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #3C4550;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.site-date {
    position: relative;
    padding-bottom: 16px;
}

.site-date:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/date1.png);
    z-index: 2;
    background-repeat: no-repeat;
    background-position: left top;
}

.site-date:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 116px);
    background: linear-gradient(105.84deg, #1977D6 3.3%, #61B0D1 93.37%);
}

.site-date--content {
    padding-top: 45px;
}

.site-date .images {
    padding-top: 20px;
}

.site-date .images img {
    max-width: 362px;
}

.site-date .title {
    margin-bottom: 20px;
}

.site-date .title .heading {
    margin-bottom: 12px;
    font-size: 150%;
    color: #fff;
}

.site-date .title p {
    color: #fff;
    opacity: 0.7;
    max-width: 360px;
    font-weight: 400;
}

.site-date .form-date {
    background: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(16, 46, 75, 0.12);
    box-shadow: 0px 4px 16px 0px rgba(16, 46, 75, 0.12);
    border: 1px solid #cce0f4;
    border-radius: 10px;
    padding: 24px;
}

.site-date .form-date .form-group {
    margin-bottom: 20px;
}

.site-date .form-date .form-group label {
    display: block;
    font-size: 90%;
    color: #3C4550;
    margin-bottom: 10px;
}

.site-date .form-date .form-group .form-control,
.site-date .form-date .form-group .form-select {
    /* width: 100%; */
    border: 1px solid #CCE0F4;
    border-radius: 3px;
    height: 48px;
    /* background: #fff; */
    padding-left: 12px;
    color: #000;
    /* background: #fff; */
    font-size: 90%;
}

.site-date .form-date .form-group .form-control::-webkit-input-placeholder {
    color: #6D7F92;
}

.site-date .form-date .form-group .form-control:-ms-input-placeholder {
    color: #6D7F92;
}

.site-date .form-date .form-group .form-control::-ms-input-placeholder {
    color: #6D7F92;
}

.site-date .form-date .form-group .form-control::placeholder {
    color: #6D7F92;
}

.site-date .form-date .form-group textarea.form-control {
    height: 141px;
    padding-top: 10px;
}

/* .site-date .form-date .form-group .form-select {
  background: #f3f7fa;
} */
.site-date .form-date .btn {
    height: 52px;
    border: 0;
    outline: none;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    min-width: 156px;
    max-width: 156px;
    padding: 0px 10px;
}

.site-project .title {
    margin-bottom: 20px;
}

.site-project .title .heading {
    margin-bottom: 10px;
}

.site-project .title p {
    margin-bottom: 0;
    color: #0C2A49;
    font-weight: 400;
    max-width: 490px;
    opacity: 0.6;
}

.site-project .slick-project {
    margin: 0px -12px;
}

.site-project .slick-project .items {
    padding: 0px 12px;
}

.site-project .slick-project .items-project {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #cce0f4;
}

.site-project .slick-project .items-project:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.site-project .slick-project .items-project:hover .content h3 a {
    color: var(--yellow);
}

.site-project .slick-project .items-project .images {
    padding-bottom: 69%;
}

.site-project .slick-project .items-project .content {
    padding: 7px 12px;
}

.site-project .slick-project .items-project .content h3 a {
    display: block;
    font-size: 90%;
    font-weight: 500;
    color: #0c2a49;
    line-height: 1.3;
    margin-bottom: 10px;
    -webkit-line-clamp: 2;
}

.site-project .slick-project .items-project .content .date {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.site-project .slick-project .items-project .content .date--content span {
    display: block;
    font-size: 13px;
    color: #677185;
    margin-bottom: 6px;
}

.site-project .slick-project .items-project .content .date--content span:last-child {
    margin-bottom: 0;
}

.site-project .slick-project .items-project .content .date--content span strong {
    color: #0c2a49;
}

.site-project .slick-project .items-project .content .date .download {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #edf4fb;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.site-project .slick-project .items-project .content .date .download:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.footer {
    padding: 40px 0px 0;
    position: relative;
    background: linear-gradient(96.12deg, #125AA3 -2%, #147CC8 101.5%);
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/f1.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top left;
}

.footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/f2.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: bottom right;
}

.footer .footer_logo,
.footer .menu-footer {
    margin-bottom: 32px;
}

.footer .logo-content {
    margin-bottom: 25px;
}

.footer img {
    max-width: 50px;
}

.footer .logo-text {
    padding-left: 12px;
}

.footer .logo-text h2 {
    font-size: 120%;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
    text-transform: capitalize;
}

.footer .logo-text span {
    display: block;
    color: white;
    opacity: 0.7;
    font-weight: 400;
}

.footer .infor {
    margin-bottom: 25px;
}

.footer .infor li {
    font-size: 90%;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.footer .infor li:last-child {
    margin-bottom: 0;
}

.footer .infor li img {
    margin-right: 10px;
    width: 20px;
}

.footer .online {
    border-radius: 5px;
    background: #fff;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
}

.footer .online-tt {
    background: #27bcd2;
    padding: 6px 25px;
    text-align: center;
    padding-top: 10px;
    color: #fff;
}

.footer .online-tt span {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer .online-tt p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0;
}

.footer .online-tt:last-child {
    background: #fff;
    color: #000;
}

.footer .online-tt:last-child p {
    color: #000;
}

.footer .title {
    font-size: 125%;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.footer .menu-footer {
    padding-top: 25px;
}

.footer .menu li {
    margin-bottom: 15px;
}

.footer .menu li a {
    display: block;
    color: #fff;
    font-size: 90%;
    font-weight: 400;
}

.footer .mxh li {
    margin-bottom: 15px;
}

.footer .mxh li a {
    color: #fff;
    font-size: 90%;
    font-weight: 400;
}

.footer .mxh li a i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    margin-right: 10px;
}

.footer .coppy {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 15px 0px 35px 0px;
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
    color: #fff;
}

.menu-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    z-index: 999;
    background: var(--blue);
    display: none;
    overflow: auto;
    padding-bottom: 30px;
}

.menu-mobile .js-close {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 10px 10px;
    font-size: 20px;
    color: #fff;
}

.menu-mobile .js-close span {
    display: block;
    padding-top: 5px;
    font-size: 12px;
}

.menu-mobile ul li {
    position: relative;
}

.menu-mobile ul li .js-sub {
    position: absolute;
    top: 7px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.menu-mobile ul li .js-sub:before {
    content: '\f078';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu-mobile ul li .active:before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.menu-mobile ul li a {
    display: block;
    padding: 15px 10px;
    font-size: 110%;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid #979797;
}

.menu-mobile ul li .sub-menu {
    display: none;
}

.menu-mobile ul li .sub-menu li a {
    padding-left: 30px;
    font-size: 100%;
    text-transform: capitalize;
}

.menu-mobile .search {
    padding: 0px 10px;
    margin-bottom: 10px;
}

.menu-mobile .search form {
    position: relative;
}

.menu-mobile .search form input {
    width: 100%;
    height: 35px;
    background: #fff;
    border-radius: 5px;
    padding-left: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    border: 0;
    outline: none;
    padding-right: 37px;
}

.menu-mobile .search form input::-webkit-input-placeholder {
    color: var(--gray);
}

.menu-mobile .search form input:-ms-input-placeholder {
    color: var(--gray);
}

.menu-mobile .search form input::-ms-input-placeholder {
    color: var(--gray);
}

.menu-mobile .search form input::placeholder {
    color: var(--gray);
}

.menu-mobile .search form .submit {
    position: absolute;
    top: 0;
    right: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 35px;
    height: 35px;
    outline: none;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--blue);
    font-size: 120%;
}

.menu-mobile .btn {
    background: #fff;
    color: var(--blue);
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    font-weight: bold;
}

.site-about .content {
    padding-right: 20px;
}

.site-about .content h3 {
    font-size: 125%;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
}

.site-about .content p {
    font-size: 100%;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
}

.site-about .images {
    padding-bottom: 56%;
    padding-left: 20px;
}

.site-about .images img {
    border-radius: 5px;
}

.site-about .items {
    padding: 40px 0px;
    border-bottom: 1px solid #ccc;
}

.site-about .items:nth-child(2n+2) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.site-about .items:last-child {
    border-bottom: 0;
}

.site-tnsm {
    background: #F7F9FB;
}

.site-tnsm .content {
    padding-right: 20px;
}

.site-tnsm .content h3 {
    font-size: 125%;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
}

.site-tnsm .content p {
    font-size: 100%;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
}

.site-tnsm .content ul {
    list-style: disc;
    padding-left: 20px;
}

.site-tnsm .content ul li {
    font-size: 100%;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.5;
    color: var(--gray);
}

.site-tnsm .content-custom ul {
    -webkit-columns: 2;
    -moz-columns: 2;
    -webkit-column-gap: 50px;
    column-gap: 50px;
}

.site-tnsm .content-custom ul li {
    margin-bottom: 10px;
}

.site-dnlq .slick-project {
    margin: 0px -12px;
}

.site-dnlq .slick-project .items {
    padding: 0px 12px;
}

.site-dnlq .slick-project .items-dn {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #cce0f4;
}

.site-dnlq .slick-project .items-dn:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.site-dnlq .slick-project .items-dn:hover .content h3 a {
    color: var(--yellow);
}

.site-dnlq .slick-project .items-dn .content {
    padding: 20px 20px;
    padding-right: 10px;
}

.site-dnlq .slick-project .items-dn .content h3 a {
    display: block;
    font-size: 100%;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.3;
    text-transform: capitalize;
    -webkit-line-clamp: 1;
}

.site-dnlq .slick-project .items-dn .content span {
    margin: 5px 0px 10px 0px;
    display: block;
    opacity: 0.6;
    color: var(--gray);
    font-size: 90%;
}

.site-dnlq .slick-project .items-dn .content p {
    margin-bottom: 0;
    font-size: 90%;
    font-weight: 400;
    -webkit-line-clamp: 3;
}

.site-dnlq .slick-project .items .items-services .images {
    padding-bottom: 77%;
}

.site-dnlq .slick-project .items .items-services .content h3 a {
    margin-bottom: 15px;
}

.site-ttlq {
    background: #F7F9FB;
}

.site-ttlq .slick-newslq {
    margin: 0px -12px;
}

.site-ttlq .slick-newslq .items {
    padding: 0px 12px;
}

.site-ttlq .slick-newslq .items-newslq {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #cce0f4;
}

.site-ttlq .slick-newslq .items-newslq:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.site-ttlq .slick-newslq .items-newslq:hover .content h3 a {
    color: var(--yellow);
}

.site-ttlq .slick-newslq .items-newslq .images {
    padding-bottom: 60%;
}

.site-ttlq .slick-newslq .items-newslq .content {
    padding: 15px;
    padding-right: 10px;
}

.site-ttlq .slick-newslq .items-newslq .content h3 a {
    font-size: 100%;
    font-weight: 600;
    color: var(--gray);
    line-height: 1.3;
    text-transform: capitalize;
    -webkit-line-clamp: 2;
}

.site-ttlq .slick-newslq .items-newslq .content span {
    display: block;
    opacity: 0.6;
    color: var(--gray);
    font-size: 90%;
}

.site-ttlq .slick-newslq .items-newslq .content p {
    margin-top: 12px;
    margin-bottom: 15px;
    font-size: 90%;
    font-weight: 400;
    -webkit-line-clamp: 3;
}

.site-dvlq {
    background: #F7F9FB;
}

.page-services .step {
    padding: 40px 0px;
}

.page-services .step:nth-child(2n+2) {
    background: #F7F9FB;
}

.page-services .step:nth-child(2n+2) .step-items .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.page-services .step-items .images {
    padding-bottom: 56%;
    border-radius: 5px;
    overflow: hidden;
}

.page-services .step-items .images .step-number {
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 5px;
    overflow: hidden;
    border: 1px solid #CCE0F4;
}

.page-services .step-items .images .step-number span {
    background: var(--blue);
    padding: 5px 10px;
    color: #fff;
    font-size: 120%;
    font-weight: 500;
    display: block;
}

.page-services .step-items .images .step-number p {
    padding: 0px 20px;
    font-size: 400%;
    font-weight: 600;
    color: var(--blue);
    background: #fff;
}

.page-services .step-items .content h3 {
    font-size: 120%;
    font-weight: 600;
    margin-bottom: 20px;
}

.page-services .step-items .content p {
    margin-bottom: 0;
    font-size: 90%;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.8;
}

.page-services-archive .items-services {
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #cce0f4;
}

.page-services-archive .items-services:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.page-services-archive .items-services:hover .content h3 a {
    color: var(--yellow);
}

.page-services-archive .items-services .content {
    padding: 20px 20px;
    padding-right: 10px;
}

.page-services-archive .items-services .content h3 a {
    display: block;
    font-size: 100%;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.3;
    text-transform: capitalize;
    -webkit-line-clamp: 1;
}

.page-services-archive .items-services .content span {
    margin: 5px 0px 10px 0px;
    display: block;
    opacity: 0.6;
    color: var(--gray);
    font-size: 90%;
}

.page-services-archive .items-services .content p {
    margin-bottom: 0;
    font-size: 90%;
    font-weight: 400;
    -webkit-line-clamp: 3;
}

.page-services-archive .items-services .images {
    padding-bottom: 77%;
}

.page-services-archive .items-services .content h3 a {
    margin-bottom: 15px;
}

.page-details-services {
    background: #fff !important;
}

.page-details-services .infor-bs .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.page-details-services .infor-bs .content h3 {
    margin-bottom: 0;
}

.page-details-services .infor-bs .content .price {
    font-size: 100%;
    font-weight: 600;
    color: #E22C34;
    font-size: 150%;
    margin-bottom: 15px;
    margin-top: 20px;
}

.page-details-services .infor-bs .content .price span {
    font-size: 80%;
    color: var(--gray);
    opacity: 0.8;
    padding-right: 10px;
    margin-bottom: 0;
}

.page-details-services .infor-bs .content p {
    margin-bottom: 0px;
}

.page-details-services .infor-bs .content p a {
    color: var(--blue);
    font-weight: bold;
}

.page-details-services .infor-bs .content .button {
    margin-top: auto;
}

.page-details-services .infor-bs .content .button .btn {
    margin-right: 12px;
}

.page-details-services .the_content {
    margin: 25px 0px;
}

.page-details-services .content-details {
    border: 1px solid #CCE0F4;
    background: #fff;
    border-radius: 10px;
    padding: 20px 40px;
}

.page-team {
    background: #f7f9fb;
}

.page-team .filter {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 32px;
}

.page-team .category a {
    display: block;
    padding: 16px 20px;
    border-radius: 5px;
    border: 1px solid #CCE0F4;
    font-size: 100%;
    font-weight: 400;
    color: #3D556D;
    margin-right: 10px;
}

.page-team .category a:last-child {
    margin-right: 0;
}

.page-team .category a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.page-team .category .active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.page-team .search form {
    position: relative;
}

.page-team .search form input {
    width: 280px;
    height: 50px;
    border: 1px solid #CCE0F4;
    font-size: 90%;
    padding-left: 10px;
    background: #fff;
    border-radius: 5px;
}

.page-team .search form button {
    position: absolute;
    top: 50%;
    right: 3px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background: var(--blue);
    width: 45px;
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    height: calc(100% - 5px);
    color: #fff;
    font-size: 100%;
}

.page-team .items-dn {
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #CCE0F4;
}

.page-team .items-dn:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.page-team .items-dn:hover .content h3 a {
    color: var(--yellow);
}

.page-team .items-dn .content {
    padding: 20px 20px;
    padding-right: 10px;
}

.page-team .items-dn .content h3 a {
    display: block;
    font-size: 100%;
    font-weight: 600;
    color: var(--blue);
    line-height: 1.3;
    text-transform: capitalize;
    -webkit-line-clamp: 1;
}

.page-team .items-dn .content span {
    margin: 5px 0px 10px 0px;
    display: block;
    opacity: 0.6;
    color: var(--gray);
    font-size: 90%;
}

.page-team .items-dn .content p {
    margin-bottom: 0;
    font-size: 90%;
    font-weight: 400;
    -webkit-line-clamp: 3;
}

.page-navigation ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-navigation ul li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #CCE0F4;
    font-size: 100%;
    color: var(--gray);
    margin: 0px 3px;
}

.page-navigation ul li a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.page-navigation ul .active a {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.page-details-bs {
    background: #f7f9fb;
}

.page-details-bs .infor-bs .images {
    padding-bottom: 76%;
    border-radius: 10px;
}

.page-details-bs .infor-bs h3 {
    font-size: 125%;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-details-bs .infor-bs span {
    display: block;
    font-size: 100%;
    font-weight: 400;
    color: #6D7F92;
    margin-bottom: 10px;
}

.page-details-bs .infor-bs ul {
    margin-bottom: 15px;
}

.page-details-bs .infor-bs ul li {
    display: block;
    font-size: 100%;
    font-weight: 400;
    color: #6D7F92;
    padding-right: 12px;
}

.page-details-bs .infor-bs ul li strong {
    font-weight: bold;
    color: var(--blue);
}

.page-details-bs .infor-bs p {
    font-size: 100%;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 2;
}

.page-details-bs .infor-bs .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 52px;
}

.page-details-bs .infor {
    margin: 40px 0px 20px 0px;
    border: 1px solid #CCE0F4;
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;
}

.page-details-bs .infor .items {
    margin-bottom: 24px;
}

.page-details-bs .infor .items:last-child {
    margin-bottom: 0;
}

.page-details-bs .infor .items h3 {
    font-size: 150%;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 12px;
}

.page-details-bs .infor .items ul {
    list-style: disc;
    padding-left: 20px;
}

.page-details-bs .infor .items ul li {
    margin-bottom: 5px;
    line-height: 1.5;
    color: var(--gray);
    opacity: 0.9;
    font-size: 100%;
}

.page-details-bs .infor .items ul li:last-child {
    margin-bottom: 0;
}

.page-details-bs .services-bs {
    border: 1px solid #CCE0F4;
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    padding-bottom: 0;
}

.page-details-bs .services-bs .items {
    margin-bottom: 24px;
    border: 1px solid #CCE0F4;
    border-radius: 5px;
}

.page-details-bs .services-bs .items .images {
    padding-bottom: 65%;
}

.page-details-bs .services-bs .items .content {
    padding: 20px;
}

.page-details-bs .services-bs .items .content h3 {
    font-size: 100%;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 12px;
}

.page-details-bs .services-bs .items .content p {
    font-size: 80%;
    color: var(--gray);
    opacity: 0.8;
    margin-bottom: 12px;
}

.page-details-bs .services-bs .items .content .hm {
    font-size: 80%;
    color: var(--gray);
    opacity: 0.8;
    margin-bottom: 12px;
}

.page-details-bs .services-bs .items .content .hm img {
    margin-right: 5px;
}

.page-details-bs .services-bs .items .content .price {
    font-size: 100%;
    font-weight: 600;
    color: #E22C34;
}

.page-details-bs .services-bs .items .content .price span {
    font-size: 80%;
    color: var(--gray);
    opacity: 0.8;
    padding-right: 10px;
}

.page-archive {
    background: #f7f9fb;
}

.page-archive .archive-top {
    margin-bottom: 40px;
}

.page-archive .list-news .items-news {
    margin-bottom: 24px;
    height: auto;
}

.page-archive .list-news .items-news:last-child {
    margin-bottom: 0;
}

.page-archive .list-news .items-news .content {
    padding: 10px 16px;
}

.page-archive .list-news .items-news .content h3 a {
    font-size: 90%;
    margin-bottom: 15px;
}

.archive-content {
    padding-bottom: 10px;
}

.archive-content .items-news {
    height: 100%;
    margin-bottom: 0;
}

.archive-content .items-news .content h3 a {
    font-size: 90%;
}

.archive-content .items-news .content p {
    opacity: 0.6;
    font-size: 90%;
    -webkit-line-clamp: 2;
}

.single-archive .single-content {
    padding-right: 20px;
}

.single-archive h1 {
    font-size: 200%;
    font-weight: bold;
    color: #0C2A49;
    margin-bottom: 12px;
    line-height: 1.3;
}

.single-archive .date {
    color: #677185;
    margin-bottom: 20px;
}

.single-archive .date i {
    padding-right: 10px;
}

.sidebar {
    padding-top: 10px;
}

.sidebar-news .items-news {
    border: 0;
    padding: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}

.sidebar-news .items-news:last-child {
    border-bottom: 0;
}

.sidebar-news .items-news .images img {
    border-radius: 5px;
}

.sidebar-news .items-news .content {
    padding: 0px;
    padding-left: 12px;
}

.sidebar-news .items-news .content .date {
    margin-bottom: 0;
}

.sidebar-news .items-news .content h3 a {
    font-size: 90%;
    margin-bottom: 15px;
}

.page-res-bg .site-project {
    background: #fff;
}

.page-res {
    background: #f7f9fb;
}

.page-res .title {
    margin-bottom: 25px;
}

.page-res .title h2 {
    font-size: 125%;
    color: #0C2A49;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}

.page-res .title p {
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
}

.page-res .form-date {
    background: #fff;
    -webkit-box-shadow: 0px 4px 16px 0px rgba(16, 46, 75, 0.12);
    box-shadow: 0px 4px 16px 0px rgba(16, 46, 75, 0.12);
    border: 1px solid #cce0f4;
    border-radius: 10px;
    padding: 24px 40px;
}

.page-res .form-date .form-group {
    margin-bottom: 20px;
}

.page-res .form-date .form-group label {
    display: block;
    font-size: 90%;
    color: #3C4550;
    margin-bottom: 10px;
}

.page-res .form-date .form-group .form-control {
    /* width: 100%; */
    border: 1px solid #CCE0F4;
    border-radius: 3px;
    height: 52px;
    /* background: #fff; */
    padding-left: 12px;
    color: #000;
    /* background: #fff; */
    font-size: 90%;
}

.page-res .form-date .form-group .form-control::-webkit-input-placeholder {
    color: #6D7F92;
}

.page-res .form-date .form-group .form-control:-ms-input-placeholder {
    color: #6D7F92;
}

.page-res .form-date .form-group .form-control::-ms-input-placeholder {
    color: #6D7F92;
}

.page-res .form-date .form-group .form-control::placeholder {
    color: #6D7F92;
}

.page-res .form-date .form-group textarea.form-control {
    height: 141px;
    padding-top: 10px;
}

/* .page-res .form-date .form-group .form-select {
  background: #f3f7fa;
} */
.page-res .form-date .btn {
    height: 52px;
    border: 0;
    outline: none;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    min-width: 156px;
    max-width: 156px;
    padding: 0px 10px;
}

.page-datet {
    background: #f7f9fb;
}

.page-datet .select {
    text-align: center;
    margin-bottom: 20px;
}

.page-datet .select .form-control {
    border: 1px solid #CCE0F4;
    width: 360px;
    height: 52px;
    margin: 0 auto;
    background: #fff;
    padding-left: 10px;
    font-size: 100%;
    color: #000;
    font-weight: 500;
    border-radius: 5px;
}

.page-datet .the_content {
    margin: 30px 0px 20px 0px;
}

.download a {
    margin-right: 10px;
}

.download a i {
    padding-right: 10px;
}

.table {
    border-radius: 10px;
}

.table table {
    display: table;
    width: 100%;
    border-radius: 10px;
    overflow: auto;
    background: #fff;
}

.table th {
    border: 1px solid #CCE0F4;
    padding: 15px 10px;
    text-align: left;
    line-height: 1.5;
    vertical-align: middle;
}

.table th {
    background: #F3F7FA;
}

.table td {
    vertical-align: middle;
    border: 1px solid #CCE0F4;
}

.table td span {
    /* padding: 10px;
    display: block;
    border-bottom: 1px solid #CCE0F4;
    line-height: 1.5; */
}

.table td span small {
    /* font-weight: 600;
    display: block; */
}

.table td span:last-child {
    /* border-bottom: 0; */
}

.table td:nth-child(1) span,
.table td:nth-child(2) span {
    border: 0;
}

.table td:nth-child(1) span {
    font-weight: bold;
}

.table td .red {
    color: #D91E1E;
}

.table td .blue {
    color: #2F80ED;
}

.table td .blue2 {
    color: #219653;
}

.table td .tim {
    color: #5459D5;
}

.table td p {
    margin-bottom: 0;
}

.table td p span {
    border: 0;
}

.table td p span:first-child {
    padding-bottom: 0;
}

.page-datet2 .table td {
    padding: 10px;
    text-align: center;
}

.page-datet2 .table td:nth-child(2) {
    text-align: left;
}

.cobtent-vb {
    margin-bottom: 32px;
}

.cobtent-vb p {
    margin-bottom: 24px;
    font-weight: 400;
    opacity: 0.9;
}

.cobtent-vb .images {
    background: #fff;
    border: 1px solid #CCE0F4;
    padding: 20px 40px;
    border-radius: 10px;
}

.cobtent-vb .images h3 {
    font-size: 125%;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-qa {
    background: #f7f9fb;
}

.page-qa .btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-width: 150px;
    margin: 0 auto;
    height: 52px;
    margin-bottom: 25px;
}

.page-qa .items {
    border: 1px solid #CCE0F4;
    background: #fff;
    border-radius: 10px;
}

.page-qa .items--content {
    padding: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.page-qa .items--content .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24px;
    flex: 0 0 24px;
    max-width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 50%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 100%;
    color: #fff;
    font-weight: bold;
}

.page-qa .items--content .content {
    padding-left: 10px;
    padding-top: 5px;
}

.page-qa .items--content .content h3 {
    font-size: 90%;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-qa .items--content .content p {
    -webkit-line-clamp: 4;
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 90%;
}

.page-qa .items--content .content a {
    display: block;
    color: var(--blue);
    font-size: 100%;
    font-weight: bold;
}

.page-qa .items--content .content a:hover {
    color: var(--yellow);
}

.page-qa .items--user {
    border-top: 1px solid #ccc;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
}

.page-qa .items--user h4 {
    font-size: 90%;
    font-weight: 500;
    color: #0C2A49;
}

.page-qa .items--user h4 img {
    margin-right: 5px;
}

.page-qa .items--user span {
    font-size: 80%;
    color: #6D7F92;
}

.page-qa .page-navigation {
    margin-top: 10px;
}

.page-qa-slider {
    background: #fff;
}

.page-qa-slider .slick-newslq {
    margin: 0px -12px;
}

.page-qa-slider .slick-newslq .items-qa {
    padding: 0px 12px;
}

.page-reply {
    background: #f7f9fb;
}

.page-reply .reply {
    border: 1px solid #CCE0F4;
    background: #fff;
    padding: 20px 40px;
    border-radius: 10px;
}

.page-reply .reply .user {
    border-bottom: 1px solid #CCE0F4;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.page-reply .reply .user-top {
    margin-bottom: 15px;
}

.page-reply .reply .user-top img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 35px;
    flex: 0 0 35px;
    max-width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
}

.page-reply .reply .user-top h4 {
    font-size: 90%;
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
}

.page-reply .reply .user-top span {
    font-size: 80%;
    color: #6D7F92;
}

.page-reply .reply .user h3 {
    margin-bottom: 10px;
    font-size: 100%;
    line-height: 1.5;
}

.page-reply .reply .user p {
    font-size: 100%;
    font-weight: 400;
    margin-bottom: 0;
}

.page-reply .reply .content .user {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 15px;
}

.page-reply .reply .content .user-top .text h4 {
    color: var(--blue);
}

.page-contact {
    background: #f7f9fb;
}

.infor-contact {
    margin-bottom: 40px;
}

.infor-contact .content {
    background: #fff;
    padding: 24px 40px;
    border: 1px solid #CCE0F4;
    border-radius: 10px;
}

.infor-contact .content h3 {
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 15px;
}

.infor-contact .content .col-custom {
    border-right: 1px solid #ccc;
}

.infor-contact .content .text {
    padding-right: 12px;
}

.infor-contact .content .text p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.infor-contact .content .lh {
    padding-left: 12px;
}

.infor-contact .content .lh-infor {
    margin-bottom: 20px;
}

.infor-contact .content .lh-infor li {
    font-size: 100%;
    margin-bottom: 12px;
    line-height: 1.3;
}

.infor-contact .content .lh-infor li:last-child {
    margin-bottom: 0;
}

.infor-contact .content .lh-infor li img {
    margin-right: 10px;
    width: 20px;
}

.infor-contact .content .mxh li {
    margin-right: 5px;
}

.infor-contact .content .mxh li:last-child {
    margin-bottom: 0;
}

.infor-contact .content .mxh li a {
    color: #fff;
    font-size: 90%;
    font-weight: 400;
}

.infor-contact .content .mxh li a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.maps .map {
    height: 600px;
}

.page-contact-form .form-date {
    margin-top: -100px;
    position: relative;
}

/*# sourceMappingURL=style.css.map */
