/********** Template CSS **********/
:root {
    --primary: #0F344B;
    --secondary: #454545;
    --light: #EEF9FF;
    --dark: #1C1C1C;
    --white: #ffffff;
}

@font-face {
    font-family: "SVN-Product Sans Bold";
    src: url("../fonts/SVN-Product-Sans-Bold.ttf");
}

@font-face {
    font-family: "SVN-Product Sans Bold Italic";
    src: url("../fonts/SVN-Product-Sans-Bold-Italic.ttf");
}

@font-face {
    font-family: "SVN-Product Sans Italic";
    src: url("../fonts/SVN-Product-Sans-Italic.ttf");
}

@font-face {
    font-family: "SVN-Product Sans Regular";
    src: url("../fonts/SVN-Product-Sans-Regular.ttf");
}

@font-face {
    font-family: "BeVietnam Regular";
    src: url("../fonts/BeVietnam-Regular.ttf");
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

@media (max-width: 991px) {
    .container {
        width: calc(100% - 10%) !important;
        padding: 0 15px;
        max-width: 100% !important;
        /* padding: 0 10% !important; */
    }

}

@media (min-width: 1200px) {
    .container {
        width: calc(100% - 10%) !important;
        max-width: 100% !important;
        /* padding: 0 10% !important; */
    }
}


@media(max-width: 990px) {
    .container {
        width: calc(100% - 5%) !important;
        padding: 0 15px;
        max-width: 100% !important;
        /*padding: 0 10% !important;*/
    }

}

@media(max-width: 580px) {
    .container {
        width: 100% !important;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .row>div {
        padding-left: 5px;
        padding-right: 5px;
    }
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'SVN-Product Sans Bold', sans-serif;
}

body, p, a, span, label, input {
    font-family: 'SVN-Product Sans Regular', sans-serif;
}

img {
    max-height: 100%;
    height: auto;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    background: var(--primary);
    color: var(--white);
    z-index: 99;
    border-radius: 50%;
}

.back-to-top:hover {
    color: var(--white);
}

.back-to-top:focus {
    box-shadow: none;
}


/*** Navbar ***/

.ftco-navbar-light {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

.ftco-navbar-light .navbar-brand img {
    width: 85%;
}

.ftco_navbar .btn-login {
    color: var(--white);
    border: 1px solid var(--white);
    padding: 10px 33px;
    position: relative;
}

.ftco_navbar .btn-login::before, .ftco_navbar .btn-login::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    transition: .5s;
}

.ftco_navbar .btn-login::before {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
}

.ftco_navbar .btn-login::after {
    top: -2px;
    left: -2px;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
}

.ftco_navbar .btn-login:hover {
    color: var(--primary);
}

.ftco_navbar .btn-login:hover::before {
    width: calc(50% + 2px);
    height: calc(50% + 2px);
    border-color: var(--primary);
}

.ftco_navbar .btn-login:hover::after {
    width: calc(50% + 2px);
    height: calc(50% + 2px);
    border-color: var(--primary);
}

.sticky-top .btn-login {
    border-color: var(--dark);
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link {
    font-family: 'SVN-Product Sans Regular', sans-serif;
    position: relative;
    margin-left: 23px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.navbar-dark .navbar-toggler:focus {
    box-shadow: none;
}

.text-search, .text-search:hover {
    color: var(--white);
}

.sticky-top .text-search {
    color: var(--dark);
}

.search-project-frm {
    display: none;
}

@media (max-width: 991.98px) {

    .ftco-navbar-light {
        position: unset;
    }

    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--white);
        text-align: center;
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }

    .offcanvas-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 50%;
        padding-right: 0;
        padding-bottom: 0.5rem;
        overflow-y: auto;
        visibility: hidden;
        background: var(--secondary);
        transition-timing-function: ease-in-out;
        transition-duration: .3s;
        transition-property: right, visibility;
        transition: right .3s ease-in-out, visibility .3s ease-in-out;
        align-items: start;
        -moz-background-clip: padding;
        -webkit-background-clip: padding;
        background-clip: padding-box;
        z-index: 1041;
        display: flex;
        flex-direction: column;
    }

    .offcanvas-nav.collapse.show {
        right: 0;
        visibility: visible;
    }

    .box-search-login {
        display: none;
    }

    .search-project-frm {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        text-align: initial;
    }
}

@media (min-width: 992px) {
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/

.header-carousel .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.header-carousel .owl-dots .owl-dot {
    width: 15px;
    height: 15px;
    margin: 5px 7px;
}

.header-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.6);
    display: block;
    border-radius: 30px;

}

.header-carousel .owl-dots .owl-dot.active span {
    background: #0F344B;
    border-color: #0F344B;
}

.item-banner {
    position: relative;
}

.item-banner .content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}

.item-banner .content h1 {
    font-size: 40px;
    line-height: 56px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 30px;
}

.item-banner .content a {
    color: var(--white);
    text-transform: uppercase;
    line-height: 24px;
    border: 1px solid var(--white);
    padding: 12px 27px;
    display: inline-block;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    position: relative;
}

.item-banner .content a:hover {
    color: var(--primary);
}

.item-banner .content a::after, .item-banner .content a::before {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    visibility: hidden;
}

.item-banner .content a::before {
    top: -1px;
    left: 0;
    border-top: 2px solid var(--secondary);
    border-right: 2px solid var(--secondary);
    transition: width .1s ease .3s, height .1s ease .2s, visibility 0s .4s;
}

.item-banner .content a::after {
    bottom: -1px;
    right: 0;
    border-left: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transition: width .1s ease .1s, height .1s ease, visibility 0s .2s;
}

.item-banner .content a:hover::after, .item-banner .content a:hover::before {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    visibility: visible;
    transition: width .1s ease .2s, height .1s ease .3s, visibility 0s .2s;
}

.item-banner .content a:hover::after {
    transition: width .1s ease .2s, height .1s ease .3s, visibility 0s .2s;
}

.item-banner .content a:hover::before {
    transition: width .1s ease, height .1s ease .1s;
}

@media (max-width: 767.98px) {
    .item-banner .content h1 {
        font-size: 24px;
        line-height: 33px;
        margin-bottom: 16px;
    }

    .item-banner .content a {
        padding: 10px;
    }
}


/*** Section Title ***/
.section-title h1 {
    color: var(--dark);
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title p {
    color: var(--secondary);
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

/*** Product ***/

.content, .content-image {
    position: relative;
}

.content-image {
    overflow: hidden;
    display: block;
}

.content-image::before {
    content: "";
    display: block;
    padding-top: 55%;
}

.content-image div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.content-image img {
    width: 100%;
}

.content-details {
    text-align: right;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.5s;
    opacity: 0;
    width: 100%;
}

.content-details h2 {
    font-size: 64px;
    line-height: 70px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}

.content:hover .content-details {
    bottom: 5px;
    transition: 0.5s;
    opacity: 1;
}

.product-block a {
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 12px 36px;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.product-block a:hover, .box-text-why a:hover {
    color: var(--primary)
}

.product-block a::before, .box-text-why a::before {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: 0.3s ease-out;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.product-block a:hover::before, .box-text-why a:hover::before {
    width: 0%;
}

/*** Service ***/

.services-block, .why-block {
    position: relative;
}

.bg-service {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    background: url('../image/bg-service.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 1;
    -webkit-transition: opacity 1s;
    z-index: -1;
}

.services-block .section-title h1 {
    color: var(--white);
    font-size: 40px;
    line-height: 57px;
}

.services-block .section-title span {
    display: block;
    font-size: 24px;
    line-height: 57px;
}

.services-block .section-title p {
    color: var(--white);
}

.box-service {
    text-align: center;
    padding: 16px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    background-image: -webkit-linear-gradient(top, #ffffff 100%, #ffffff 0%, #ffffff 100%), -webkit-linear-gradient(top, #ffffff 100%, #ffffff 0%, #ffffff 100%);
    background-image: -moz-linear-gradient(top, #ffffff 100%, #ffffff 0%, #ffffff 100%), -moz-linear-gradient(top, #ffffff 100%, #ffffff 0%, #00e9a4 100%);
    background-image: -o-linear-gradient(top, #ffffff 100%, #ffffff 0%, #ffffff 100%), -o-linear-gradient(top, #ffffff 100%, #ffffff 0%, #ffffff 100%);
    background-image: linear-gradient(to bottom, #ffffff 100%, #ffffff 0%, #ffffff 100%), linear-gradient(to bottom, #ffffff 100%, #ffffff 0%, #ffffff 100%);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-position: 0 0, 100% 0;
    background-repeat: no-repeat;
    -webkit-background-size: 1px 100%;
    -moz-background-size: 1px 100%;
    background-size: 1px 100%;
    background-color: transparent;
}

.box-img {
    margin-top: -50px;
}

.box-img img, .img-why img {
    width: 100%;
}

.box-text p {
    margin-bottom: 0;
    line-height: 24px;
    color: var(--white);
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .box-img {
        margin-top: -30px;
    }
}

@media (max-width: 767.98px) {

    .services-block .section-title p {
        margin-bottom: 24px;
    }

    .box-img {
        margin-top: 0;
    }
}


/*** Why ***/

.bg-why {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    background: url('../image/bg-whychoose.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 1;
    -webkit-transition: opacity 1s;
    z-index: -1;
}

.why-block .img-why {
    overflow: hidden;
    position: relative;
    display: block;
}

.why-block .img-why::before {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
    -o-transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
    transition: all 0.4s cubic-bezier(0.94, 0.85, 0.1, 0.62) 0s;
    z-index: 1;
    border: 200px double transparent;
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

.why-block .img-why:hover::before {
    opacity: 0;
    filter: alpha(opacity=0);
    border: 0 double rgba(255, 255, 255, 0.7);
    visibility: hidden;
}

.why-block .section-title h1 span {
    display: block;
    font-size: 40px;
    padding-left: 40px;
}

.why-block .section-title p {
    margin-bottom: 16px;
}

.box-text-why {
    display: flex;
}

.why-block .section-title {
    flex: 0 0 600px;
}

.icon-box {
    display: flex;
    align-items: center;
}

.why-block .section-title .icon-box .icon-text p {
    margin-bottom: 0;
    color: var(--dark);
    font-family: 'SVN-Product Sans Bold', sans-serif;
    font-size: 16px;
}

.icon-text {
    margin-left: 16px;
}

.box-text-why a {
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 24px;
    padding: 12px 36px;
    display: inline-block;
    position: relative;
}

@media (max-width: 991.98px) {
    .why-block .section-title {
        flex: auto;
    }

    .box-text-why {
        display: block;
    }

    .icon-text {
        margin-left: 8px;
    }
}

@media (max-width: 767.98px) {
    .icon-box {
        justify-content: center;
    }
}

/*** Partner ***/

.partner-block {
    background: #F6F6F6;
}

.item-gallery {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

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

.img-logo img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.img-logo img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

@media (max-width: 767.91px) {
    .item-gallery {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*** News ***/

.thumb-right img {
    width: 100%;
}

.main-news {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.content-left {
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
    padding-right: 15px;
}

.thumb-right {
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    max-width: 70%;
}

.thumb-right a {
    overflow: hidden;
    display: block;
}

.news-carousel .box-image {
    position: relative;
}

.news-carousel .box-image::before {
    content: "";
    display: block;
    padding-top: 55%;
}

.news-carousel .box-image a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-carousel .box-image a img, .thumb-right a img {
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.news-carousel .box-image a:hover img,  .thumb-right a:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.news-carousel .content-wrapper a:hover h5, .content-left a:hover h5 {
    color: var(--primary);
}

span.date {
    color: #B3B3B3;
    font-weight: 700;
    font-size: 12px;
    line-height: 24px;
    text-transform: capitalize;
    display: block;
}

.content-left h5, .content-wrapper h5 {
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--dark);
}

.content-left p {
    color: var(--secondary);
    line-height: 24px;
}

.view-more {
    display: inline-block;
}

.view-more a {
    border: 1px solid var(--primary);
    padding: 8px 25px;
    color: var(--primary);
    letter-spacing: 1px;
    display: block;
    transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    -moz-transition: ease-out 0.5s;
    position: relative;
}

.view-more a:hover {
    color: var(--secondary);
}

.view-more a::before, .view-more a::after {
    position: absolute;
    content: "";
    width: 0%;
    height: 0%;
    visibility: hidden;
}

.view-more a::before {
    top: -1px;
    left: 0;
    border-top: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    transition: width .1s ease .3s, height .1s ease .2s, visibility 0s .4s;
}

.view-more a::after {
    bottom: -1px;
    right: 0;
    border-left: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transition: width .1s ease .1s, height .1s ease, visibility 0s .2s;
}

.view-more a:hover::before, .view-more a:hover::after {
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    visibility: visible;
    transition: width .1s ease .2s, height .1s ease .3s, visibility 0s .2s;
}

.view-more a:hover::before {
    transition: width .1s ease, height .1s ease .1s;
}

.view-more a:hover::after {
    transition: width .1s ease .2s, height .1s ease .3s, visibility 0s .2s;
}

.news-carousel .owl-nav .owl-prev, .news-carousel .owl-nav .owl-next {
    color: #000000;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
}

.news-carousel .owl-nav .owl-prev {
    left: -4%;
    right: auto;
    font-size: 24px;
}

.news-carousel .owl-nav .owl-next {
    right: -4%;
    left: auto;
    font-size: 24px;
}

.content-wrapper {
    padding-top: 8px;
}

@media (max-width: 991.98px) {
    .content-left {
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
        max-width: 40%;
    }

    .thumb-right {
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
        max-width: 60%;
    }

    .news-carousel .owl-nav .owl-prev, .news-carousel .owl-nav .owl-next {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {

    .main-news {
        flex-direction: column-reverse;
    }

    .thumb-right {
        order: 2;
    }

    .content-left {
        order: 1;
        padding-right: 0;
        padding-top: 16px;
    }

    .content-left, .thumb-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .news-carousel .owl-nav {
        display: none;
    }
}

/*** Letter ***/

.letter-block {
    position: relative;
}

.bg-letter {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    background: url('../image/bg-letter.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    opacity: 1;
    -webkit-transition: opacity 1s;
    z-index: -1;
}

.box-text-letter h5 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 24px;
    line-height: 40px;
}

.frm-letters input, .frm-letters input:focus {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--white);
    box-shadow: none;
}

.frm-letters button {
    position: absolute;
    right: 0;
    font-size: 16px;
    font-family: 'SVN-Product Sans Bold', sans-serif;
    color: var(--white);
    text-transform: uppercase;
}

/*** Footer ***/

.footer, .footer-absolute {
    background: #001526;
}

.contai-ft-info {
    padding-bottom: 30px;
}

.footer-about p {
    margin-bottom: 0;
    color: var(--white);
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0 3px;
}

.footer-about a {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 2.5px;
    color: var(--white);
}

.menu-footer ul, .social-icon ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.menu-footer ul li a {
    color: var(--white);
    font-size: 14px;
    line-height: 39px;
}

.footer-absolute {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px 0;
}

.social-icon ul {
    display: flex;
}

.social-icon ul li {
    padding-right: 20px;
}

.social-icon ul li:last-child {
    padding-right: 0;
}

.social-icon ul li a {
    color: var(--white);
    font-size: 14px;
}

.footer-absolute p {
    margin-bottom: 0;
    text-align: center;
    font-size: 14px;
    line-height: 26px;
    font-family: 'BeVietnam Regular', sans-serif;
}

.footer-absolute p a {
    color: var(--white);
}

.pay img {
    width: 100%;
}

@media (max-width: 991.98px) {
    .menu-footer ul li a {
        font-size: 12px;
    }
}

@media (max-width: 767.98px) {
    .menu-footer ul li a {
        font-size: 14px;
    }
    .social-icon ul {
        justify-content: center;
    }

    .footer-absolute p {
        padding: 8px 0;
    }
}

/*** Modal Search ***/

.frm-search-modal input[type="text"] {
    border-color: var(--primary);
}

.frm-search-modal input[type="text"]:focus {
    box-shadow: none;
}

.frm-search-modal input[type="text"]::placeholder {
    color: var(--white);
    font-size: 14px;
}

.frm-search-modal button {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white); 
}

.frm-search-modal button:hover {
    color: var(--white);
}