
:root {
    --primary: #088BF0;
    --secondary: #202942;
    --third: #62BBFF;
    --light: #D9D9D9;
    --dark: #2D2D2D;
    --white: #ffffff;
    --gray: #8B8B8B;
    --gray-dark: #032C51;
    --black: #4C4C4C;
    --red: #F00808;
}

body {
    overflow-x: hidden;
}

body, p, a {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

p:last-of-type {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

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

.svg-inline--fa {
    height: 16px;
    display: inline-block;
    vertical-align: -.125em;
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1200px;
    }
}

.block {
    display: block;
}

.gap-16 {
    gap: 16px;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

@media (max-width: 991px) {
    .block {
        display: inline;
    }
}

/*** Section Start ***/

.section-title h2 {
    text-transform: uppercase;
    color: var(--third);
    font-size: 62px;
    line-height: 50px;
    font-weight: 800;
    margin-bottom: 24px;
}

.section-title p {
    font-size: 24px;
    line-height: 36px;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 40px;
}

.section-title a,
.right-content a {
    text-transform: capitalize;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding-left: 30px;
}

.section-title a::after {
    background: #82EAFF !important;
}

@media (max-width: 991px) {
    .section-title h2 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 42px;
    }
}

/*** Section End ***/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

.btn-md-square {
    width: 44px;
    height: 44px;
}

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

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}



/*** Navbar ***/

.nav-center {
    display: flex;
    align-items: center;
}

.navbar-light {
    min-height: 98px;
}

.navbar-light .navbar-nav .nav-link {
    text-transform: capitalize;
    position: relative;
    margin-right: 20px;
    padding: 0;
    color: var(--gray-dark);
    font-size: 18px;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

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

.navbar-light .navbar-brand img {
    max-height: 35px;
    transition: .5s;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

.dropdown-toggle::after {
    display: none;
}

.search-lang {
    display: flex;
    align-items: center;
    gap: 30px;
}

.box-search .dropdown-menu {
    padding: 8px;
    z-index: 9999;
    width: 300px;
}

.box-search .dropdown-menu input:focus {
    box-shadow: none;
}

.language-menu {
    position: relative;
}

.language-menu a {
    display: block;
    color: var(--secondary);
}

.language-menu a i {
    color: var(--gray);
}

.language-menu ul.dropdown {
    list-style: none;
    position: absolute;
    left: -7px;
    top: 50px;
    width: 160px;
    background: var(--white);
    color: var(--dark);
    z-index: 99;
    text-align: left;
    /* padding: 13px 0 20px; */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 0;
    margin: 0;
}

.language-menu:hover ul.dropdown {
    opacity: 1;
    visibility: visible;
}

.item-lang a {
    padding: 5px 12px;
}

.contact-button {
    display: flex;
    align-items: center;
}

.contact-button a {
    background: var(--third);
    color: var(--white);
    padding: 8px 30px;
    border-radius: 42px;
    box-shadow: 3px 4px 4px 0px #AAD0F2;
}

.contact-button a:hover {
    color: var(--white);
    background: var(--gray-dark);
}

.contact-button i {
    margin-left: 8px;
}

@media (min-width: 1440px) {

    .navbar-light .navbar-nav .nav-link {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .navbar-light > .container {
        align-items: initial;
    }
}

@media (max-width: 991.98px) {

    .nav-center {
        flex-direction: column;
        align-items: initial;
    }

    .navbar-light {
        min-height: auto;
    }

    .search-lang {
        display: none;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
    }

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

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        margin-right: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .navbar-light.navbar-page {
        position: unset;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--white);
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/

.banner {
    position: relative;
    padding: 100px 0;
}

.bg-banner {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    background: url('../img/banner.jpg') no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.title h2 {
    color: var(--white);
    font-size: 72px;
    line-height: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 42px;
}

.title h2:nth-child(2) {
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content {
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
}

.content p {
    color: var(--white);
    width: 60%;
    font-size: 15px;
    display: inline-block;
}

.content a {
    color: var(--white);
    position: relative;
    width: 35%;
    padding-left: 30px;
    display: inline-block;
}

.content a span,
.section-title a span,
.item-service .info a.view-more span,
.right-content a span {
    position: relative;
    z-index: 2;
}

.content a::after,
.section-title a::after,
.item-service .info a.view-more::after,
.right-content a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: var(--third);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    z-index: 1;
}

.error-message,
form div.error ,
form label.error {
  bottom: -16px;
  font-size: 11px;
  color: #f00;
}
form div.error ,
form label.error {
/*  position: absolute;*/
}

#contact-form .form-control ,
#contact-form .form-select {
    border-radius: 20px;
}

.form-contact #contact-form .btn-send {
    color: var(--white);
    background: var(--red);
    text-transform: capitalize;
    font-weight: 700;
    line-height: 24px;
    padding: 10px 20px;
    
    font-size: 16px;
    border-radius: 30px;
}

.form-contact #contact-form .btn-send:hover {
    background: var(--primary);
    color: var(--white);
}

.form-contact h3 {
    color: var(--primary);
    font-size: 24px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .title h2 {
        font-size: 65px;
    }
}

@media (max-width: 767px) {
    .title h2 {
        font-size: 50px;
        margin-bottom: 32px;
    }

    .content {
        flex-direction: column;
        gap: 30px;
    }

    .content p,
    .content a {
        display: block;
        width: 100%;
    }

    .content a::after,
    .section-title a::after,
    .item-service .info a.view-more::after {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 360px) {
    .title h2 {
        font-size: 45px;
        
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb {
        padding: 140px 0 60px 0;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** About Start ***/

.about h2 {
    font-size: 94px;
    font-weight: 800;
    letter-spacing: 1.92px;
    margin-bottom: 61px;
    color: var(--third);
    background-image: url('../img/bg-title.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about p {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    color: var(--black);
    font-weight: 500;
    line-height: 27px;
}

.about h4 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 40px;
    line-height: 56px;
    padding: 70px 0;
    margin: 0;
}

.about h3 {
    font-size: 76px;
    color: var(--third);
    background-image: url('../img/counter.png');
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--secondary);
}

@media (max-width: 767px) {

    .about h2,
    .about-block h2 {
        font-size: 50px;
    }

    .about h3 {
        font-size: 55px;
    }
}

/*** About End ***/

/*** Service Start ***/

.service {
    background: url('../img/bg-service.jpg') center no-repeat;
    background-size: cover;
}

.service-item {
    height: 100%;
}

.service-item a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: var(--white);
    padding: 8px 10px;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.service-item a:hover {
    background: linear-gradient(123.75deg, #088BF0 29.97%, #40DFFF 97.61%);
}

.service-content {
    max-width: calc(60% - 16px);
    flex: 0 0 calc(60% - 16px);
}

.service-content img {
    width: 44px;
    margin-bottom: 20px;
}

.service-content h5 {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.service-content h3 {
    font-size: 17px;
    line-height: 24px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: var(--dark);

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.service-img {
    max-width: 40%;
    flex: 0 0 40%;
}

.service-item a:hover h3,
.service-item a:hover p {
    color: var(--white);
}

@media (max-width: 991px) {

    .rw-service {
        flex-direction: column-reverse;
    }

}

/*** Service End ***/


/*** Partner Start ***/

.partner-slider .slick-slide>div:not(:last-child) {
    margin-bottom: 44px;
}

.partner-slider .slick-slide {
    width: 200px !important;
}

.partner-slider::before,
.partner-slider::after {
    content: '';
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .55) 57.3%, rgba(255, 255, 255, 0) 100%);
    width: 376px;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    pointer-events: none;
}

.partner-slider::after {
    width: 280px;
    background: linear-gradient(268deg, #fff 0%, rgba(255, 255, 255, .55) 57.3%, rgba(255, 255, 255, 0) 100%);
    left: unset;
    right: 0;
    z-index: 2;
}

.partner-item img {
    box-shadow: 4px 3px 37.9px 0px #0078D31C;
    /*width: 75%;
    margin: 0  auto;*/
}

@media (max-width: 991px) {
    .partner-slider::before,
    .partner-slider::after {
        width: 10rem;
    }

    /*.partner-item img {
        width: 100%;
    }*/
}

@media (max-width: 767px) {
    .partner-slider::before,
    .partner-slider::after {
        width: 10%;
    }

    .partner-item {
        padding: 5px;
    }
}

/*** Partner End ***/

/*** Blog Start ***/

.title-item {
    padding-right: 16px;
}

.icon-box {
    flex-flow: row wrap;
    display: flex;
    width: 100%;
    align-items: center;
}

.icon-box-img {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-bottom: 0;
}

.icon-box-text {
    flex: 1 1 0px;
    padding-left: 16px;
}

.icon-box-text h2 {
    margin-bottom: 0;
    font-size: 46px;
    line-height: 52px;
    text-transform: uppercase;
    letter-spacing: .16px;
}

.title-item:nth-child(odd) .icon-box-text h2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.title-item:nth-child(even) .icon-box-text h2 {
    background-image: url('../img/counter.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-item a {
    display: block;
}

.blog-thumb {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.blog-thumb::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.blog-thumb div,
.item-activity .thumb div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-thumb img,
.item-activity img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.blog-thumb:hover img {
    transform: scale(1.1) rotate(4deg);
}

.blog-meta {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 4px;
}

.blog-title-view {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-title-view h3 {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-title-view img {
    width: 28px;
}

.blog-item a:hover h3 {
    color: var(--primary)
}

/*** Blog End ***/

/*** Footer Start ***/

.sign {
    background: url('../img/letter.png') center no-repeat;
    background-size: cover;
    padding: 48px 0 63px;
    border-top-left-radius: 43px;
    border-top-right-radius: 43px;
}

.sign h3 {
    color: var(--white);
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 28px;
    line-height: 40px;
}

.form-sign form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.form-sign input[type="email"] {
    width: 352px;
    height: 48px;
    padding: 12px 22px;
    border-radius: 24px;
}

.form-sign input[type="email"]:focus {
    box-shadow: none;
}

.btn-send button {
    color: var(--white);
    background: var(--red);
    text-transform: capitalize;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 29px;
    border-radius: 30px;
}

.btn-send button:hover {
    background: var(--primary);
    color: var(--white);
}

.main-footer {
    background: linear-gradient(122.72deg, #2E59F4 27.49%, #5FC0E4 81.27%);
    border-top-left-radius: 43px;
    border-top-right-radius: 43px;
    margin-top: -40px;
}

.footer-left .logo {
    margin-bottom: 32px;
}

.footer-left .logo img {
    width: 50%;
}

.menu-footer ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-footer ul a {
    color: var(--white);
    text-transform: uppercase;
}

.footer-left .info,
.footer-right a,
.copyright-footer a {
    color: var(--white);
}

.footer-left .info>p {
    margin-bottom: 13px;
    font-size: 15px;
}

.follow-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.follow-icons,
.follow-icons ul {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.follow-icons {
    border: 1px solid var(--white);
    padding: 13px 29px;
}

.footer-right h3 {
    color: var(--white);
    font-size: 20px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-right ul li:not(:last-child) {
    margin-bottom: 12px;
}

.footer-right a {
    /*display: block;*/
    font-size: 15px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info li i {
    color: var(--white);
    font-size: 24px;
}

.contact-info li p {
    color: var(--white);
    font-size: 15px;
}

.title-qr {
    padding-top: 12px;
    font-size: 14px;
}

.item-qr p {
    font-size: 14px;
}

.copyright-footer {
    border-top: 1px solid #FFFFFF69;
    padding: 15px 0 20px;
    margin-top: 48px;
    color: var(--white);
}

.list-nav {
    text-align: right;
}

.list-nav a {
    color: #FFFFFFB8;
}

.list-nav a:not(:last-child) {
    margin-right: 24px;
}

@media (max-width: 991px) {

    .form-sign input[type="email"] {
        width: 100%;
    }

    .btn-send button {
        padding-left: 16px;
        padding-right: 16px;
    }

    .menu-footer ul {
        flex-wrap: wrap;
        text-align: left;
        justify-content: normal;
    }

    .menu-footer ul li {
        max-width: calc(25% - 20px);
        flex: 0 0 calc(25% - 20px);
    }

    .menu-footer ul a {
        font-size: 13px;
    }
}

@media (max-width: 767px) {

    .form-group {
        width: 100%;
    }

    .form-sign form {
        flex-direction: column;
        gap: 16px;
    }

    .btn-send button {
        padding-left: 24px;
        padding-right: 24px;
    }

    .copyright-footer,
    .list-nav {
        text-align: center;
    }

    .menu-footer ul {
        gap: 0;
        row-gap: 12px;
    }

    .menu-footer ul li {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .menu-footer ul a {
        font-size: 14px;
    }
}

/*** Footer End ***/

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  About Page
-----------------------*/

/*.about-block {
    background: url('../img/bg-about.png') center no-repeat;
    background-size: cover;
}*/

.title-map h3 {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 40px;
    line-height: 56px;
    margin-bottom: 13px;
}

.about-content p {
    line-height: 27px;
    font-weight: 500;
    position: relative;
    padding-left: 30px;
}

.about-content p::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    width: 6px;
    height: 67px;
}

.timeline {
    background: url('../img/bg-vision.png') center no-repeat;
    background-size: 100% 100%;
    padding: 100px 0 250px;
}

.timeline-wrapper {
    position: relative;
    margin-top: 48px;
}

.list-timeline {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}

.list-timeline.top {
    top: -5%;
}

.list-timeline.middle {
    top: 27%;
}

.list-timeline.bottom {
    bottom: 15%;
}

.list-timeline.last-child {
    justify-content: flex-end;
    bottom: -18%;
}

.item-timeline {
    text-align: center;
    padding: 0 20px;
}

.list-timeline.top .item-timeline,
.list-timeline.bottom .item-timeline,
.list-timeline.last-child .item-timeline {
    flex: 0 0 25%;
    max-width: 25%;
}

.list-timeline.middle .item-timeline {
    flex: 0 0 33%;
    max-width: 33%;
}

.year-timeline {
    font-size: 28px;
    line-height: 56px;
    font-weight: 700;
    color: var(--white);
    display: inline-block;
    box-shadow: 0px 1px 13.9px 4px #088BF059;
    padding: 18px 12px;
    border-radius: 50px;
}

.item-timeline:nth-child(odd) .year-timeline {
    background: var(--primary);
}

.item-timeline:nth-child(even) .year-timeline {
    background: var(--third);
}

.content-timeline {
    margin-top: 12px;
}

.content-timeline p {
    font-size: 13px;
    font-weight: 500;
}

.value {
    background: url('../img/bg-core.png') center no-repeat;
    background-size: cover;
    padding: 60px 0;
}

.value-core h4 {
    color: var(--primary);
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-core li {
    line-height: 27px;
}

.title-activity {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 55.5px;
}

.title-activity .icon-box-text {
    flex: none;
    padding-right: 16px;
}

.title-activity .icon-box-text h2 {
    background-image: url('../img/counter.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.item-activity .thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.item-activity .thumb::before {
    content: '';
    padding-top: 70%;
    display: block;
}

.map-about {
    position: relative;
}

.wrap-selector .box {
    text-align: center;
}

.wrap-selector .locate {
    position: absolute;
    cursor: pointer;
}

.wrap-selector .locate:first-child {
    right: 15%;
    bottom: 55%;
}

.wrap-selector .locate:nth-child(2) {
    left: calc(20.1075% - 5px);
    bottom: 55%;
}

.wrap-selector .locate:nth-child(3) {
    right: calc(26% - 20px);
    bottom: 37%;
}

.wrap-selector .locate:nth-child(4) {
    right: calc(30% - 63px);
    bottom: 50%;
}

.wrap-selector .locate:nth-child(5) {
    left: calc(73% - 3px);
    bottom: 44%;
}

.wrap-selector .locate:last-child {
    left: calc(75% - 2px);
    bottom: 43%;
}

@media (max-width: 992px) {

    .timeline {
        padding: 140px 0;
    }

    .year-timeline {
        font-size: 20px;
        line-height: 40px;
        padding: 12px 8px;
    }

    .content-timeline {
        margin-top: 6px;
    }

    .content-timeline p {
        font-size: 12px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .list-timeline.bottom {
        bottom: 10%;
    }

    .list-timeline.last-child {
        bottom: -21%;
    }

    .item-timeline {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 767px) {

    .timeline {
        padding: 48px 0;
    }

    .timeline-wrapper {
        margin-top: 24px;
    }

    .timeline-wrapper img {
        display: none;
    }

    .list-timeline {
        position: relative;
        display: block;
        /*border-left: 1px solid var(--primary);*/
    }

    .timeline-wrapper .list-timeline .item-timeline {
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 0;
        text-align: left;
        margin-bottom: 12px;
    }

    .content-timeline p {
        font-size: 14px;
        -webkit-line-clamp: initial;
    }

    .value {
        padding: 30px 0;
    }

    .title-activity {
        margin-bottom: 24px;
    }

    .title-activity .icon-box-text h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .wrap-selector .locate:first-child {
        right: 12%;
    }

    .wrap-selector .locate:nth-child(2) {
        left: calc(17.1075% - 5px);
    }

    .wrap-selector .locate:nth-child(3) {
        right: calc(27% - 18px);
    }

    .wrap-selector .locate:nth-child(4) {
        right: calc(30% - 42px);
        bottom: 55%;
    }

    .wrap-selector .locate:nth-child(5) {
        left: calc(73% - 8px);
    }

    .wrap-selector .locate:last-child {
        left: calc(73% - 1px);
    }
}

/*---------------------
  Service Page
-----------------------*/

.banner-page {
    position: relative;
}

.banner-page .bg-banner {
    background: url('../img/bg-banner.jpg') center no-repeat;
    background-size: cover;
}

.banner-title h5 {
    display: inline-block;
    color: var(--white);
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    padding: 7px 57px;
    border: 1px solid var(--white);
    border-radius: 20.5px;
}

.banner-title h3 {
    font-size: 36px;
    line-height: 52px;
    font-weight: 700;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.banner-title p {
    color: var(--white);
    font-size: 15px;
    line-height: 27px;
}

.item-service {
    padding: 40px 0 33px;
    transition: background .2s ease;
}

.left-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.number {
    display: inline-block;
    font-weight: 700;
    font-size: 128px;
    line-height: 40px;
    letter-spacing: -.32px;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
}

.left-title .title {
    padding-left: 12px;
}

.left-title h3 {
    color: var(--primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 48px;
    margin-bottom: 0;
}

.left-title .image {
    display: none;
}

.right-content ul {
    margin-bottom: 20px;
}

.right-content li {
    font-size: 15px;
    line-height: 27px;
    font-weight: 500;
}

.right-content a {
    display: inline-block;
    color: #1363AA;
}

.item-service:hover {
    background: radial-gradient(210.49% 210.49% at 50% 50%, #088BF0 20%, #3EDFFF 79%);
    color: var(--white);
}

.item-service:hover .number {
    -webkit-text-stroke: 1px var(--white);
}

.item-service:hover h3 {
    color: var(--white);
}

.item-service:hover .image {
    display: block;
}

.item-service:hover .right-content a::after {
    display: none;
}

.item-service:hover .right-content a {
    background: var(--white);
    color: var(--primary);
    padding: 16px 28px;
    border-radius: 30px;
}

.work-process {
    position: relative;
}

.work-process .bg-banner {
    background: url('../img/bg-process.jpg') center no-repeat;
    background-size: cover;
}

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

.circle-work {
    background: linear-gradient(127deg, #088BF0 11.98%, #3EDFFF 100.12%);
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 55px;
    line-height: 40px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--white);
    width: 132px;
    height: 132px;
    padding: 20px;
    border-radius: 50%;
}

.content-work {
    background: rgba(255, 255, 255, .41);
    backdrop-filter: blur(10.8px);
    border-radius: 16px;
    padding: 10px;
    margin-top: -65px;
}

.content-work p {
    color: var(--primary);
    /*font-size: 20px;*/
    line-height: 40px;
    font-weight: 700;
    text-transform: capitalize;
    white-space: nowrap;
}

.item-brand a {
    display: block;
}

.item-brand img {
    /*width: 100%;*/
}

@media (min-width: 1200px) {
    .col-20 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 767px) {

    .banner-title h3 {
        font-size: 30px;
        line-height: 38px;
    }

    .left-title .box {
        margin-bottom: 16px;
    }

    .number {
        font-size: 90px;
    }

    .left-title h3 {
        line-height: 32px;
    }

    .left-title {
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-work p {
        font-size: 14px;
        line-height: 28px;
    }
}

/*---------------------
  Service Detail Page
-----------------------*/

.item-detail {
    background: var(--white);
    padding: 52px 24px;
    border-radius: 19px;
    box-shadow: 0px 0px 21.5px 0px #E2F1FE;
    height: 100%;
}

.item-detail .description h5 {
    font-size: 16px;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.item-detail .description p {
    font-size: 15px;
    line-height: 27px;
    font-weight: 500;
}

.content-slider {
    width: 94%;
    margin-left: auto;
}

@media (min-width: 992px) {
    .detail-info {
        margin-top: -165px;
    }
}

@media (max-width: 767px) {

    .content-slider {
        margin-right: auto;
    }
}

/*---------------------
  News Page
-----------------------*/

.page_navi li a, 
.page_navi li > span {
    color: var(--black);
    border: 1px solid var(--primary);
    border-radius: 3px;
    padding: 5px 17px;
    margin: 0 3px;
}

.page_navi li a:hover {
    background: var(--primary);
    color: var(--white);
}

.page-item.disabled .page-link {
    background: var(--white);
    border-color: #dee2e6;
    color: #6c757d;
}

.page_navi .page-item.active .page-link {
    background: var(--primary);
    border: 1px solid var(--primary);    
}

/*---------------------
  Project Page
-----------------------*/

.title-project-slider .icon-box-text h2 {
    text-transform: capitalize;
    font-size: 40px;
    line-height: 42px;
}

.archive-content-wrapper {
    border-radius: 5px;
    background: var(--white);
}

.hover-img-wrapper {
    width: 100%;
}

.hover-img-wrapper img {
    width: 100%;
}

.archive-content {
    padding: 20px 15px 15px;
}

.category {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: .16px;
}

.archive-content h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-transform: capitalize;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.archive-content h2 a {
    display: block;
    color: var(--black);
}

.archive-content h2 a:hover {
    color: var(--red);
}

/*---------------------
  Career Page
-----------------------*/

.banner-career::after {
    content: '';
    background: linear-gradient(270deg, #088BF0 0%, #8FECFF 21%, #088BF0 50.5%, #3EDFFF 76%, #088BF0 100%);
    height: 4px;
    width: 100%;
    display: block;
    margin-top: 48px;
}

.title-career h5 {
    color: var(--primary);
    border-color: var(--primary);
}

.title-career h3 {
    background: conic-gradient(from 42.79deg at 54.48% 0%, #088BF0 0deg, #27DBFF 360deg), linear-gradient(360deg, #3EDFFF -65.38%, #088BF0 177.4%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-career p {
    color: var(--black);
}

.filterCareer .menu-nav:not(:last-child) {
    margin-bottom: 27px;
}

.name-archive {
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 12px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border-color: #D7D7D7;
    margin-right: 10px;
    margin-top: 0;
}

.form-check-item:not(:last-child) {
    margin-bottom: 12px;
}

/*.filterCareer input[type="checkbox"] {
    border-radius: 0;
}*/

.filterCareer .form-check-input:focus {
    box-shadow: unset;
    outline: unset;
}

.filterCareer .form-check-input:checked + label {
    color: var(--primary);
}

.item-career {
    padding: 52px 50px;
    border: 1px solid var(--light);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-career:not(:last-child) {
    margin-bottom: 24px;
}

.detail-header {
    margin-bottom: 12px;
}

.detail-header a {
    font-size: 20px;
    line-height: 27px;
    font-weight: 500;
    color: var(--black);
}

.detail-view a {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 25px;
    padding: 10px 61px;
}

.item-career:hover {
    background: linear-gradient(93.21deg, #088BF0 2.66%, #3EDFFF 116.16%);
    color: var(--white);
    border-color: transparent;
}

.item-career:hover .detail-header a,
.item-career:hover .detail-excerpt a {
    color: var(--white);
}

.item-career:hover .detail-view a {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.culture {
    background: #F6FBFE;
}

.item-culture {
    display: flex;
    align-items: center;
}

.item-culture .box-content {
    padding-left: 24px;
}

.item-culture h3 {
    font-size: 24px;
    line-height: 40px;
    text-transform: capitalize;
}

.item-culture p {
    line-height: 27px;
}

@media (max-width: 991px) {
    .icon-box-text h2 {
        font-size: 40px;
    }

    .item-career {
        padding-left: 35px;
        padding-right: 35px;
    }

    .detail-header a {
        font-size: 18px;
        line-height: 24px;
    }

    .detail-excerpt a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .icon-box-text h2 {
        font-size: 36px;
    }

    .title-project-slider .icon-box-text h2 {
        font-size: 20px;
    }

    .item-career {
        display: block;
        text-align: center;
    }

    .left-info {
        margin-bottom: 16px;
    }

    .detail-header a {
        font-size: 20px;
        line-height: 27px;
    }

    .detail-excerpt a {
        font-size: 16px;
    }

    .detail-view a {
        width: 100%;
    }
}


.product-related {
    display: flex;
    flex-wrap: wrap;
}
.product-related .item-product {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 17px 14px;
}
.product-related .item-product .thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}
.content-product-news h3 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 4px;
    font-family: 'SVN-Product Sans', sans-serif;
}
.content-product-news h3 a {
    color: var(--black);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.gt-lang-code {
    display: none;
}
.gt_float_switcher .gt-selected .gt-current-lang{
    padding: 0 !important;
}
.gt_float_switcher .gt_options a{
    padding: 5px 0px !important; 
}
.gt_float_switcher .gt_options a.gt-current {
    display: inline !important;
}
.nturl{
    font-size: 14px;
}
.gt_float_switcher{
    background: transparent !important;
    box-shadow: none !important;
}
.gt-selected{
    background: transparent !important;
}

@media (max-width: 767px) {
    .product-related .item-product {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px;
    }
}

.form-contact .btn-send button {
    width: 100%;
    margin-top: 10px;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 26px;
    padding-top: 13px;
    padding-bottom: 13px;
    border-radius: 0;
}
.breadcrumb-text .bt-option a:after {
    content: ">";
    color: #000000;
    margin-left: 4px;
}
.breadcrumb-detail-section .breadcrumb-text a, .breadcrumb-detail-section .breadcrumb-text a::after {
    color: #4D4D4D;
}
.modal-body .btn-send button{
    margin-top: 10px;
    color: var(--white);
    background: var(--red);
    text-transform: capitalize;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    padding: 12px 29px;
    border-radius: 30px;
}

a.glink {
    padding: 5px 12px;
   
}