:root {
    --white: #fff;
    --black: #000;
    --cl-text: #0e3746;
    --cl-primary: #0021f5;
    --cl-second: #00228e;
    --cl-third: #9fd8ff;
    --fs-color-primary: : #0021f5;
    --fs-color-secondary: #f67c38;
    --fs-color-success: #7a9c59;
    --fs-color-alert: #b20000;
    --fs-experimental-link-color: #0a0a0a;
    --fs-experimental-link-color-hover: #0021f5;
    --font-family: "Vuta IVLF", sans-serif;
    --flatsome-scroll-padding-top: calc(80px + 0)
}

[class^="vuta-col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

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

.vuta-container {
    width: min(1250px, 100%)
}

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

body {
    font-family: var(--font-family);
    font-size: 20px;
    line-height: 1.6;
    color: var(--cl-text);
    -webkit-font-smoothing: antialiased
}

a {
    color: var(--cl-text);
    text-decoration: none;
    transition: color .3s
}

p {
    padding: 0;
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    font-weight: 700 !important;
    line-height: 1.3
}

h1 {
    font-size: 1.7em;
    margin-bottom: 26px
}

@media screen and (max-width:575px) {
    h1 {
        font-size: 1.4em
    }
}

h2 {
    font-size: 1.6em
}

@media screen and (max-width:996px) {
    h2 {
        font-size: 1.2em !important
    }
}

input {
    outline: 0;
    border: none
}

@font-face {
    font-family: "Vuta IVLF";
    src: url(../webfonts/HELVETICA-NEUE-REGULAR.TTF) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Vuta IVLF";
    src: url(../webfonts/HELVETICANEUE-MEDIUM.OTF) format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: "Vuta IVLF";
    src: url(../webfonts/HELVETICA-NEUE-BOLD.TTF) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

.fadeindown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

#main,
#main.dark,
#wrapper {
    background-color: #fff
}

.absolute {
    position: absolute !important
}

.relative {
    position: relative !important
}

.col-padding {
    padding: 0 15px 30px
}

.col-inner {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex: 1 0 auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%
}

.section {
    display: flex;
    align-items: center;
    flex-flow: row;
    width: 100%;
    min-height: auto;
    padding: 30px 0;
    position: relative
}

.section.dark {
    background-color: #666
}

.section-bg,
.section-content {
    width: 100%
}

.section-content {
    z-index: 1
}

.section-bg {
    width: 100%;
    overflow: hidden
}

.section-bg img {
    height: 100%
}

.section-bg-overlay {
    background-color: rgba(0, 0, 0, 0)
}

.dark {
    color: #fff !important;
}

.gradient-bg .section-bg-overlay {
    background-image: linear-gradient(0deg, #333 0, rgba(0, 0, 0, 0) 100%);
}

.dark {
    color: rgba(255, 255, 255, .75)
}

.dark h1 {
    color: var(--white)
}

.dark p {
    color: rgba(255, 255, 255, .75)
}

.dark .button {
    color: var(--white)
}

.fill {
    height: 100%;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute;
    right: 0;
    top: 0
}

.button {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    box-sizing: border-box;
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .03em;
    line-height: 2.4em;
    max-width: 100%;
    min-height: 2.5em;
    padding: 0 1.2em;
    position: relative;
    text-align: center;
    text-rendering: optimizeLegibility;
    transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s;
    cursor: pointer
}

.button.primary {
    background-color: unset;
    border: 0;
    box-shadow: unset;
    padding: 0;
    display: inline-block;
    line-height: unset;
    min-height: unset
}

.button.primary:hover span {
    border-radius: 20px 0 0 0
}

.button.primary:hover .fa-arrow-right {
    margin-left: -15px;
    border-radius: 0 0 20px 0
}

.button.primary span {
    background-color: var(--fs-color-primary);
    padding: 9px 15px;
    border-radius: 20px 0 20px 0;
    transition: .3s ease all
}

.button.primary .fa-arrow-right {
    background-color: var(--fs-color-primary);
    padding: 9px 11px;
    border-radius: 0 20px 0 20px;
    transition: .3s ease all;
    vertical-align: top
}

.button:not(.icon)>span+i {
    margin-left: .4em;
    margin-right: -.15em
}

.button span {
    display: inline-block;
    line-height: 1.6
}

.button i {
    line-height: 1.6
}

.folder-bg a.button {
    margin-bottom: 0
}

.text-right .button:last-of-type {
    margin-right: 0 !important
}

.justify-align p {
    text-align: justify
}

.align-center {
    justify-content: center !important
}

.align-right {
    justify-content: flex-end !important
}

.align-middle {
    align-items: center !important;
    align-self: center !important;
    vertical-align: middle !important
}

.gap-element {
    display: block;
    height: auto;
    padding-top: 20px
}

.thint-font {
    font-weight: 300 !important
}

.thint-font strong {
    font-weight: 700 !important
}

.block_title .sub-title {
    margin-bottom: 20px
}

.block_title .sub-title>* {
    color: #373d5e;
    opacity: .7;
    letter-spacing: unset;
    text-transform: uppercase
}

.block_title .hero-title {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--fs-color-primary)
}

@media screen and (max-width:996px) {
    .block_title .hero-title {
        font-size: 1.4rem
    }
}

.bander-radius-15 {
    border-radius: 15px;
    overflow: hidden
}

.slick-dots {
    position: absolute;
    text-align: center;
    padding: 6px 11px;
    border-radius: 19px
}

.slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    transition: all .3s
}

.slick-dots li.slick-active button::before {
    background: var(--fs-color-primary);
    border-radius: 5px
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0
}

.slick-dots li button:hover::before {
    background: var(--fs-color-primary);
    opacity: .75
}

.slick-dots li button::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background: #8e8e8e;
    border-radius: 50%;
    box-sizing: border-box;
    opacity: .8;
    transition: all .3s
}

.sticky-col {
    position: sticky;
    height: 100%;
    overflow-y: auto;
    top: calc(var(--flatsome-scroll-padding-top) + 30px);
    transition: top .6s
}

@media screen and (max-width:575px) {
    .br-desktop {
        display: none
    }
}

@media screen and (max-width:996px) {
    .br-desktop-tablet {
        display: none
    }
}

.button-service {
    border-bottom: 1px solid rgba(190, 38, 35, .35);
    padding-bottom: 12px;
    margin-bottom: 12px;
    transition: .3s ease all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.button-service:hover {
    transform: scale(1.15)
}

.button-service:hover .button .fa-arrow-right {
    border-radius: 20px 0 20px 0 !important;
    background-color: var(--fs-color-primary) !important;
    color: var(--white)
}

.button-service .text p {
    font-size: 1.2em;
    font-weight: 500;
    color: var(--fs-color-primary);
    transition: .3s ease all
}

.button-service .button {
    margin-top: 2px !important;
    transition: .3s ease all;
    margin: 0;
    padding: 0
}

.button-service .button span {
    display: none
}

.button-service .button .fa-arrow-right {
    color: var(--fs-color-primary);
    background-color: transparent !important;
    border: 2px solid var(--fs-color-primary);
    padding: 7px 9px !important
}

@media screen and (max-width:575px) {
    .button-service:hover {
        transform: scale(.95)
    }
}

.vmission-item {
    background-color: var(--fs-color-primary);
    padding: 80px 40px;
    border-radius: 150px 0
}

.section_contact .folder-form input,
.section_contact .folder-form textarea {
    border-radius: 0;
}

.contact-form .box-btn {
    margin-top: 15px;
}

.vmission-item p:nth-child(1) {
    font-size: 3em;
    text-transform: uppercase;
    font-weight: 600;
    /* background: -webkit-linear-gradient(#f4f2ec, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
    opacity: 1 !important
}

@media screen and (max-width:996px) {
    .vmission-item {
        border-radius: 60px 0;
        padding: 40px 20px
    }
    .vmission-item p:nth-child(1) {
        font-size: 20px
    }
}

.feedback-item {
    background-color: var(--white);
    border-radius: 0 20px 20px;
    padding: 35px;
    margin-top: 35px;
    transition: .3s ease all;
    position: relative
}

.feedback-item::before {
    content: url(/images/folder-notch-white.svg);
    transform-origin: bottom left;
    position: absolute;
    left: 0;
    top: -29px
}

.feedback-item .box-comment {
    border-bottom: 1px solid rgba(190, 38, 35, .35);
    padding-bottom: 50px;
    margin-bottom: 25px
}

.feedback-item .box-comment::before {
    background-image: url(/images/quote-icon.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: block;
    width: 71px;
    height: 50px;
    content: "";
    margin-bottom: 20px
}

.feedback-item .box-author {
    display: flex;
    align-items: center;
    gap: 30px
}

.feedback-item .box-author .author-avatar {
    width: 100px;
    border-radius: 50%;
    overflow: hidden
}

.feedback-item .box-author .author-info p:nth-child(1) {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--fs-color-primary);
    margin-bottom: 5px
}

@media screen and (max-width:575px) {
    .feedback-item {
        padding: 20px
    }
    .feedback-item::before {
        transform: scale(.9)
    }
    .feedback-item .box-comment::before {
        width: 45px;
        height: 35px;
        margin-bottom: 10px
    }
    .feedback-item .box-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }
    .feedback-item .box-author .author-avatar {
        width: 60px
    }
}

.section_banner .section-bg img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    position: absolute;
    top: 0;
    width: 100%
}

.section_banner .section-content .vuta-row {
    justify-content: flex-end
}

.section_banner .section-content .banner-top {
    padding: 10vw 0 0 15px
}

.section_banner .section-content .banner-top__heading {
    font-size: 2rem
}

.section_banner .section-content .banner-bottom {
    margin: -55px 0 0 -15px;
    padding: 30px 35px 25px 35px;
    background-color: #f4f2ec;
    padding: 30px 35px 25px;
    border-radius: 0 20px 20px;
    position: relative
}

.section_banner .section-content .banner-bottom::before {
    content: url(/images/folder-notch-top.svg);
    transform-origin: bottom left;
    position: absolute;
    left: 0;
    top: -29px
}

.section_banner .section-content .banner-bottom__text p {
    color: var(--fs-color-primary);
    text-align: justify;
    margin-bottom: 16px
}

@media screen and (max-width:996px) {
    .section_banner .section-content .banner-top__heading {
        font-size: 1.65rem
    }
    .section_banner .section-content .banner-bottom {
        margin: 15px 0 0 0
    }
}

@media screen and (max-width:575px) {
    .section_banner .section-content .banner-top {
        padding-left: 0
    }
    .section_banner .section-content .banner-top__heading {
        font-size: 1.45rem
    }
    .section_banner .section-content .banner-bottom {
        padding: 20px 15px 15px
    }
}

.section_about {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--fs-color-primary)
}

.section_about .about-heading {
    background-color: #fff;
    padding: 90px 15px 90px 15px;
    border-radius: 0 0 0 50px
}

.section_about .about-left {
    padding: 60px 60px 0 15px;
    max-width: 660px;
    margin-left: auto;
    margin-right: 0
}

.section_about .about-left__quantity {
    display: flex;
    justify-content: space-between;
    align-items: stretch
}

.section_about .about-left__quantity .text-quantity p:nth-child(1) {
    font-size: 7.5em;
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 500;
    /* background: -webkit-linear-gradient(#f4f2ec, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent */
    color: #fff;
}

.section_about .about-left__quantity .text-quantity p:nth-child(2) {
    color: #f4f2ec;
    font-weight: 500;
    text-align: center;
    font-size: 20px;
}

.section_about .about-left .radius-corner {
    position: absolute;
    right: 0;
    top: 0
}

.section_about .about-right {
    padding: 50px 15px 30px 60px;
    max-width: 610px;
    margin-left: 0;
    margin-right: auto
}

.section_about .about-right p {
    margin-bottom: 16px;
    font-size: 20px;
}

@media screen and (max-width:996px) {
    .section_about .about-left {
        padding: 30px 15px 30px 15px
    }
    .section_about .about-left__quantity {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }
    .section_about .about-left__quantity .text-quantity p:nth-child(1) {
        font-size: 6em
    }
    .section_about .about-right {
        padding: 70px 60px 30px 60px
    }
}

@media screen and (max-width:575px) {
    .section_about .about-left {
        padding: 30px 15px 30px 15px
    }
    .section_about .about-left__quantity {
        flex-direction: row
    }
    .section_about .about-left__quantity .text-quantity p:nth-child(1) {
        font-size: 4em
    }
    .section_about .about-left__quantity .text-quantity p:nth-child(2) {
        font-size: .9em
    }
    .section_about .about-right {
        padding: 40px 15px 10px 15px
    }
}

.section_about .hero-title {
    max-width: 920px;
    margin: 0 auto;
}

.banner-none-content {
    background-color: #e4e0d6;
    min-height: 30px;
    position: relative;
    width: 100%;
    padding-top: 35%;
}

.section_service figure {
    position: relative;
    min-height: 30px;
    padding: 30px 0;
    padding-top: 610px;
    max-height: 100%
}

.section_service figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out
}

.section_service figure img:not(:first-child) {
    z-index: 1;
    opacity: 0
}

.section_service figure img:first-child,
.section_service figure img:last-child,
.section_service figure img:nth-child(3),
.section_service figure img:nth-child(4),
.section_service figure img:nth-child(8) {
    object-position: 11% 9%
}

.section_service .service-btn-list {
    padding-left: 70px
}

.section_service .service-btn-list .button-service:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0
}

@media screen and (max-width:1200px) {
    .section_service .service-btn-list {
        padding-left: 0
    }
}

@media screen and (max-width:996px) {
    .section_service {
        padding-top: 30px;
        padding-bottom: 30px
    }
}

@media screen and (max-width:575px) {
    .section_service figure {
        padding-top: 200px
    }
}

.section_vmission .vmission-left {
    margin-bottom: 20px
}

.section_vmission .vmission-left .gap-element {
    padding-top: 50px
}

.section_vmission .vmission-right {
    margin: -335px 0 -50px 0
}

.section_vmission .vmission-item-wrapper:nth-child(1) {
    margin: 0 0 -500px 0
}

.section_vmission .vmission-item-wrapper:last-child .vmission-item {
    border-radius: 0 150px
}

@media screen and (max-width:996px) {
    .section_vmission {
        padding-top: 20px;
        padding-bottom: 20px
    }
}

@media screen and (max-width:575px) {
    .section_vmission .vmission-right {
        margin: 0
    }
    .section_vmission .vmission-item-wrapper {
        padding-left: 0;
        padding-right: 0
    }
    .section_vmission .vmission-item-wrapper:nth-child(1) {
        margin: 0
    }
    .section_vmission .vmission-item-wrapper:last-child {
        padding-bottom: 0
    }
    .section_vmission .vmission-item-wrapper:last-child .vmission-item {
        border-radius: 60px 0
    }
}

.section_partner {
    padding-top: 60px;
    padding-bottom: 90px
}

.section_partner [class^=vuta-container-] {
    padding-left: 0;
    padding-right: 0
}

.section_partner .feedback-slider {
    padding: 30px 0;
    margin-bottom: 0
}

.section_partner .item {
    transition: all .5s ease
}

.section_partner .item:not(.slick-current) {
    opacity: .6;
    transform: scale(.9)
}

@media screen and (max-width:575px) {
    .section_partner {
        padding-bottom: 60px
    }
}

#header {
    background-color: #fff
}

.header-wrapper {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
    z-index: 1001
}

.header-main {
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-main .vuta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    width: 70px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo a h2 {
    color: var(--cl-primary);
    text-transform: uppercase;
}

.header-logo a span {
    font-size: 12px;
    color: var(--cl-primary);
}

.header-inner .menu-list {
    display: flex;
    min-width: 430px;
    gap: 30px;
}

.header-inner .nav-2 .menu-list {
    justify-content: right;
}

.header-inner .menu-list li:first-child {
    margin-left: 0
}

.header-inner .menu-list li.active a {
    font-weight: 600;
    color: var(--cl-primary)
}

.header-inner .menu-list li:hover a {
    color: var(--cl-primary)
}

.header-inner .menu-list li a {
    line-height: 45px;
    font-weight: 700;
    text-transform: uppercase;
    color: hsla(0, 0%, 40%, .85);
    padding: 10px 0;
    transition: color .3s
}

.header-inner .header-bars i {
    font-size: 28px;
    color: hsla(0, 0%, 40%, .85)
}

@media screen and (max-width:575px) {
    .header-inner {
        padding: 0 15px
    }
}

.section_contact {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: var(--cl-second);
}

.section_contact .section-bg img {
    object-position: 0 100%
}

.section_contact .block_title {
    margin-bottom: 20px
}

.section_contact .block_title .sub-title>* {
    color: rgba(255, 255, 255, .75)
}

.section_contact .block_title .hero-title {
    color: var(--white)
}

.section_contact .folder-form {
    margin: 45px 0 -30px 0;
    background-color: #fff;
    padding: 30px 35px 25px;
    border-radius: 0 20px 20px
}

.section_contact .folder-form::before {
    content: url(/images/folder-notch-top.svg);
    transform-origin: bottom left;
    position: absolute;
    left: 0;
    top: -29px
}

.section_contact .folder-form .col-padding {
    padding-bottom: 0
}

.section_contact .folder-form h4 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--fs-color-primary)
}

.section_contact .folder-form label {
    display: inline-block;
    color: #222;
    font-size: .9em;
    font-weight: 700;
    margin-bottom: .4em
}

.section_contact .folder-form input,
.section_contact .folder-form textarea {
    border: none;
    outline: 0;
    box-shadow: unset !important;
    border: 0;
    padding-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    font-size: 16px;
    font-weight: 400;
    padding-top: 0;
    margin-bottom: 15px;
    background-color: transparent;
    width: 100%;
    transition: all .3s ease
}

.section_contact .folder-form input:focus,
.section_contact .folder-form textarea:focus {
    border-bottom-color: var(--fs-color-primary)
}

.section_contact .folder-form .form-policy {
    margin-bottom: 20px;
    font-style: italic
}

.section_contact .folder-form .form-policy a {
    text-decoration: underline;
    display: inline
}

.section_contact .folder-form .form-policy a:hover {
    color: var(--fs-color-primary)
}

.section_contact .folder-form .submit-wrapper .button {
    text-align: right
}

@media screen and (max-width:575px) {
    .section_contact {
        padding-top: 60px;
        padding-bottom: 60px
    }
    .section_contact .folder-form .col-padding {
        padding-left: 0;
        padding-right: 0
    }
    .section_contact .folder-form .submit-wrapper .button {
        margin-top: 12px;
        margin-right: 0
    }
}

#footer {
    padding-top: 80px;
}

#footer h3 {
    font-size: 1.5em !important;
    margin-bottom: 16px;
    color: var(--cl-primary);
    font-weight: 500 !important
}

#footer a:hover {
    color: var(--fs-experimental-link-color-hover)
}

#footer .footer-main__logo {
    margin-bottom: 16px
}

#footer .footer-info {
    padding: 0 0 0 5vw
}

#footer .footer-info img {
    max-width: unset;
}

#footer .footer-info__official-item {
    margin-bottom: 20px
}

#footer .footer-info .official-name {
    color: var(--fs-color-primary)
}

#footer .footer-info .official-infos .official-info {
    display: flex;
    margin-top: 8px
}

#footer .footer-info .official-infos .official-info .text {
    padding-left: 16px
}

#footer .footer-service {
    padding: 0 0 0 2vw
}

#footer .footer-service ul li a {
    padding-top: 4px;
    padding-bottom: 4px
}

@media screen and (max-width:996px) {
    #footer {
        padding-top: 60px
    }
    #footer .footer-info {
        padding: 0
    }
    #footer .footer-service {
        padding: 0
    }
}

.section_copyright {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cl-primary);
    justify-content: center
}

.section_copyright .text {
    padding: 15px 0
}

.section_copyright .text .br-mobile {
    display: none
}

.section_copyright .text p strong {
    color: var(--white)
}

section {
    overflow: hidden;
}

.banner-page .section-content .banner-bottom__text p {
    color: rgba(255, 255, 255, 0.7);
}

.about-1 .block_title {
    text-align: center;
}

.about-1 .vuta-row [class^="vuta-col-"]:nth-child(2) .vmission-item {
    background: #fff;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
}

.radius-corner {
    filter: brightness(0) invert(1);
}

.about-1 .vuta-row [class^="vuta-col-"]:nth-child(2) .vmission-item p:first-child {
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 600;
    /* background: -webkit-linear-gradient(#0277bd, transparent);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--cl-primary);
    margin-bottom: 15px;
    line-height: 1.2;
    opacity: 1 !important;
    transition: 0.3s ease all;
}

.about-1 {
    background: #fff;
}

.about-1 .vmission-item {
    height: 100%;
}

.about-1 .vuta-row [class^="vuta-col-"]:nth-child(1) .vmission-item {
    border-radius: 0 150px;
}

.about-1 .vuta-row [class^="vuta-col-"]:nth-child(1) .vmission-item p:nth-child(2) {
    color: rgba(255, 255, 255, 0.7);
}

.about-2 .box-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.box-title {
    margin-bottom: 30px;
}

.box-title h6 {
    letter-spacing: unset;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 20px;
}

.box-title h2 {
    font-weight: 300 !important;
    font-size: 40px;
    color: var(--fs-color-primary);
}

.box-title h2 strong {
    font-weight: 700 !important;
}

.about-2 {
    background: #fff;
}

.about-2 .wraper {
    max-width: 1500px;
    margin: 0 auto;
    gap: 20px;
    display: flex;
    align-items: stretch;
}

.about-2 .wraper .item {
    width: calc(25% - 10px);
    background-color: #F4F2EC;
    padding: 30px 35px 25px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex: 1 0 auto;
    position: relative;
    transition: all ease 0.3s;
    border-radius: 0 20px 20px;
}

.about-2 .wraper .item svg {
    position: absolute;
    left: 0;
    top: -85px;
    transform-origin: bottom left;
    transform: scale(0.45);
    transition: all ease 0.3s;
}

.about-2 .wraper .item svg path {
    transition: all ease 0.3s;
}

.about-2 .wraper .item span {
    font-size: 4em;
    text-transform: uppercase;
    font-weight: 600;
    background: -webkit-linear-gradient(rgba(190, 38, 35, 1), transparent);
    background-clip: border-box;
    -webkit-background-clip: text;
    transition: all ease 0.3s;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    line-height: 1.2;
    opacity: 1 !important;
}

.about-2 .wraper .item h4 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E0B533;
}

.about-2 .wraper .item p {
    color: #E0B533;
    transition: all ease 0.3s;
}

.about-2 .wraper .item:hover span {
    background: -webkit-linear-gradient(rgb(255 255 255), transparent);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-2 .wraper .item:hover p {
    color: rgba(255, 255, 255, .75);
}

.about-2 .wraper .item:hover h4 {
    color: #fff;
}

.about-2 .wraper .item:hover {
    background: var(--cl-primary);
}

.about-2 .wraper .item:hover svg path {
    fill: #E0B533;
}

.about-2 .wraper {
    padding-top: 60px;
    margin-bottom: 50px;
}

.about-2 {
    padding-top: 60px;
}

.service {
    padding: 90px 0;
    background: #fff;
}

.service .box-title {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    margin-bottom: 70px;
}

.service .min-wraper {
    max-width: 1190px;
    margin: 0 auto;
    position: relative;
}

.service .min-wraper .service-item {
    position: sticky;
    top: 80px;
    background: var(--cl-primary);
    padding: 35px 35px 35px 50px;
    display: flex;
}

.service .min-wraper .service-item .box-content {
    width: 50%;
    flex-shrink: 0;
}

.service .min-wraper .service-item .box-img {
    width: 50%;
    flex-shrink: 0;
    padding-left: 100px;
    height: 500px;
}

.service .min-wraper .service-item .box-img img {
    border-radius: 0 150px
}

.service .min-wraper .service-item .box-img img {
    height: 100%;
    object-fit: cover;
}

.service .min-wraper .service-item {
    margin-bottom: 50px;
    border-radius: 0 20px 20px;
}

.service .min-wraper .service-item::before {
    transform-origin: bottom left;
    position: absolute;
    left: 0;
    top: -29px;
    content: url(../images/folder-notch-brand_1.svg);
}

.service .min-wraper .service-item span {
    font-size: 6em;
    text-transform: uppercase;
    font-weight: 600;
    background: -webkit-linear-gradient(#F4F2EC, transparent);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    line-height: 1;
    display: inline-block;
    opacity: 1 !important;
}

.service .min-wraper .service-item p,
.service .min-wraper .service-item ul li {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 10px;
}

.service .min-wraper .service-item ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.service .min-wraper .service-item ul {
    padding-left: 15px;
}

.service .min-wraper .service-item h4 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 1em;
    color: #fff !important;
}

.service {
    overflow: unset;
}

.service .min-wraper .service-item:nth-child(even) {
    background-color: #0e3746
}

.service .min-wraper .service-item:nth-child(even)::before {
    content: url(../images/folder-notch-brand-2.svg);
}

.service .min-wraper .service-item a {
    width: fit-content;
    margin-top: 20px;
    color: #fff;
    position: relative;
}

.service .min-wraper .service-item a span {
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: unset;
    transition: all ease 0.4s;
    margin-right: 10px;
    line-height: 1.75;
    -webkit-text-fill-color: unset
}

.service .min-wraper .service-item a::before {
    background-color: currentColor;
    bottom: 0;
    content: "";
    height: 2px;
    opacity: .3;
    position: absolute;
    transition: all .3s;
    width: 60%;
}

.service .min-wraper .service-item a:hover::before {
    width: 100%;
    background: #fff;
    opacity: 1;
}

.service .min-wraper .service-item a:hover span {
    margin-right: 30px;
}

.break .box-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.break {
    background: #fff;
    padding-bottom: 80px;
}

.about-us {
    padding: 90px 0;
}

.about-us .box-title {
    text-align: center;
    margin-bottom: 90px;
}

.about-us .box-img img {
    border-radius: 0 150px;
}

.about-us .vuta-row {
    align-items: end;
}

.about-us .vuta-row .content {
    background-color: #fff;
    border-radius: 150px 0;
    padding: 90px 90px;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
}

.about-1 h6,
.about-1 h2 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--cl-primary) !important;
    opacity: 1 !important;
}

.vmission-item p:nth-child(1) {
    font-size: 2.5em;
}

.about-1 .hero-title .thint-font {
    line-height: 1.5;
    font-weight: 600 !important;
}

.about-us .vuta-row .content p::before {
    background-image: url(../images/quote-icon.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: block;
    width: 71px;
    height: 50px;
    content: "";
    margin-bottom: 20px;
}

.about-us .vuta-row .title {
    padding: 0px 0px 40px 90px;
}

.about-us .vuta-row .title h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--fs-color-primary)
}

.about-us .vuta-row .title h4 {
    color: rgba(55, 61, 94, 0.744);
    text-transform: uppercase;
    font-size: 16px;
}

.about-3 .box-title {
    text-align: center;
}

.about-3 .box-title h2 {
    font-weight: 700 !important;
}

.about-3 .list-tab {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.about-3 .list-tab li a {
    display: flex;
    align-items: center;
    font-weight: 700;
    padding-left: 30px;
    padding-bottom: 15px;
    color: hsla(0, 0%, 70%, .85);
    padding-right: 30px;
    position: relative;
}

.about-3 .list-tab li a:hover {
    color: hsla(0, 0%, 40%, .85);
}

.about-3 .list-tab li a:hover::before {
    visibility: visible;
    opacity: 1;
}

.about-3 #tab {
    display: flex;
    justify-content: center;
}

.about-3 .list-tab {
    position: relative;
    margin-bottom: 30px;
}

.about-3 .list-tab::before {
    width: 100%;
    background: hsla(0, 0%, 40%, .1);
    position: absolute;
    transition: all ease 0.3s;
    bottom: 0;
    content: "";
    height: 1px;
}

.about-3 .list-tab li.active a {
    color: var(--cl-primary);
}

.about-3 .list-tab li a::before {
    background: var(--cl-primary);
    height: 3px;
    position: absolute;
    width: 100%;
    visibility: hidden;
    left: 0;
    opacity: 0;
    bottom: -1px;
    content: "";
}

.about-3 .list-tab li.active a::before {
    visibility: visible;
    opacity: 1;
}

.about-3 .tab-item .box-img {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-3 .tab-item .box-img img {
    /* filter: grayscale(1); */
    object-fit: cover;
    object-position: 39% 14%;
    height: 100%;
    border-radius: 20px;
}

.about-3 .tab-item .box-img .box-btn {
    position: absolute;
    right: 20px;
    visibility: hidden;
    opacity: 0;
    bottom: -50px;
    transition: all ease 0.4s;
}

.about-3 .tab-item .box-img:hover .box-btn {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.about-3 .tab-item .item .box-content span {
    text-transform: uppercase;
    font-size: 14px;
    color: #0e3746;
    display: inline-flex;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-3 .tab-item .item .box-content h4 {
    font-size: 24px;
    color: var(--cl-primary);
    margin-bottom: 15px;
}

.about-3 .tab-item .item .box-content ul {
    padding-left: 20px;
}

.about-3 .tab-item .item .box-content ul li {
    list-style: disc;
}

.about-3 .tab-item .item {
    margin-bottom: 20px;
}

.blog {
    padding: 80px 0;
    background: #fff;
}

.blog .box-title {
    text-align: center;
    margin-bottom: 80px;
}

.blog-item {
    background-color: #fff;
    padding: 5px 25px 20px;
    border-radius: 0 20px 20px;
    position: relative;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
    margin-bottom: 60px;
    transition: 0.4s ease all;
}

.blog-item svg {
    position: absolute;
    top: -29px;
    left: 0;
    width: 168px;
}

.blog-item .cat {
    font-weight: 600;
    color: #0E3746;
    text-transform: unset;
    font-size: 16px;
    margin-bottom: 10px;
}

.blog-item .meta {
    margin-top: -25px;
    margin-bottom: 20px;
    font-size: 15px;
    position: relative;
    z-index: 2;
    opacity: 1;
}

.blog-item .meta::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--cl-primary);
    border-radius: 99px;
    margin-right: 5px;
    transition: 0.3s ease all;
}

.blog-item .box-img {
    aspect-ratio: 16/9;
    margin-bottom: 15px;
    overflow: hidden;
}

.blog-item .box-img img {
    object-fit: cover;
    height: 100%;
}

.blog-item h4 a {
    color: var(--cl-primary);
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.blog-item ul {
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 10px;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}

.blog-item ul li {
    width: 30%;
}

.blog-item ul li:nth-child(1),
.blog-item ul li:nth-child(2),
.blog-item ul li:nth-child(3) {
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-item h4 {
    border-bottom: 1px solid #dcdcdc;
}

.blog-item .blog-content {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-break: break-word;
    margin-bottom: 10px;
}

.blog-item .seemore {
    color: var(--cl-primary);
    display: inline-flex;
    position: relative;
    padding-bottom: 6px;
}

.blog-item .seemore::before {
    background-color: currentColor;
    bottom: 0;
    content: "";
    height: 2px;
    left: 2px;
    opacity: .3;
    position: absolute;
    transition: all .3s;
    width: 60%;
}

.blog-item .seemore::after {
    content: "\f061";
    vertical-align: bottom;
    margin-left: 8px;
    transition: all ease 0.3s;
    font-family: fontawesome;
}

.blog-item:hover .seemore::after {
    margin-left: 15px;
}

.blog-item:hover .seemore::before {
    width: 100%;
}

.blog-item:hover {
    background: var(--cl-primary);
    color: #fff;
}

.blog-item svg g path {
    transition: all ease 0.4s;
}

.blog-item:hover svg g path {
    fill: var(--cl-primary);
}

.blog-item:hover span {
    color: #fff;
}

.blog-item:hover .meta::before {
    background: #fff;
}

.blog-item:hover h4 a {
    color: #fff;
}

.blog-item:hover .seemore {
    color: #fff;
}

.blog.member .box-title {
    text-align: left;
}

#tab {
    position: relative;
}

#tab .list-cat {
    display: block;
    width: 100%;
    margin: 0 auto;
    top: 60px;
    position: absolute;
    padding-left: 0;
    z-index: 9;
}

#tab .list-cat.active {
    box-shadow: 0px 10px 50px 0px rgba(43, 111, 246, 0.1);
}

#tab .list-cat li {
    padding: 5px 10px;
    z-index: 2;
    position: relative;
}

#tab .list-cat li.init {
    border-bottom: 2px solid var(--cl-primary);
    margin-bottom: 15px;
}

#tab .list-cat li a {
    font-size: 16px !important;
    display: flex !important;
    align-items: center;
    position: relative;
    padding: 7px 20px;
    font-weight: 600;
    color: #b5b5b5;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

#tab .list-cat li::before {
    content: "\f0d7";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    top: 15px;
    color: var(--cl-primary);
}

#tab .list-cat li:not(.init) {
    float: left;
    width: 100%;
    display: none;
    padding: 0;
    background: #fff;
}

#tab .list-cat li:not(.init):hover a {
    color: var(--cl-primary);
}

#tab .list-cat li:not(.init)::before {
    display: none;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.pagination ul li a {
    display: flex;
    align-items: center;
    border-radius: 0 15px;
    justify-content: center;
    height: 40px;
    width: 40px;
    transition: all ease 0.4s;
    border: 2px solid transparent;
}

.pagination ul li:hover a,
.pagination ul li.active a {
    background: var(--cl-primary);
    color: #fff;
    border: 2px solid var(--cl-primary);
}

.contact .box-title h2 {
    font-weight: 700 !important;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact .box-title {
    border-bottom: 1px solid rgba(14, 55, 70, 0.15);
}

.contact ul {
    margin-bottom: 20px;
}

.contact ul li {
    display: flex;
    align-self: start;
    color: var(--cl-primary);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
}

.contact span {
    color: #0e3746;
    margin-bottom: 10px;
    font-size: 18px;
    display: block;
}

.contact ul li a {
    color: var(--cl-primary);
}

.contact ul li img {
    margin-right: 15px;
}

.contact .map {
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    border-radius: 10px;
    overflow: hidden;
}

.blog-detail {
    padding: 80px 0;
    background: #fff;
}

.blog-detail .top-detail .vuta-row {
    align-items: flex-end;
}

.blog-detail .top-detail .vuta-row .short-desc {
    border-radius: 0 150px;
    padding: 60px 90px;
    background: var(--cl-primary);
}

.blog-detail .top-detail .vuta-row .short-desc p {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 25px;
}

.blog-detail .top-detail .vuta-row .short-desc p b {
    color: #fff;
}

.blog-detail .top-detail .info {
    background-color: rgb(234, 230, 217);
    border-radius: 150px 0;
    padding: 60px 90px;
}

.blog-detail .top-detail .info .top-info {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.blog-detail .top-detail .info .top-info .avatar {
    height: 50px;
    width: 50px;
    aspect-ratio: 1/1;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 50%;
}

.blog-detail .top-detail .info .top-info .avatar img {
    height: 100%;
}

.blog-detail .top-detail .info .top-info .right-info p {
    color: #000;
    margin-bottom: 15px;
}

.blog-detail .top-detail .info .top-info .right-info .box-info {
    padding-left: 20px;
    position: relative;
}

.blog-detail .top-detail .info .top-info .right-info .box-info::before {
    height: 100%;
    width: 3px;
    background: var(--cl-primary);
    content: "";
    position: absolute;
    left: 0;
}

.blog-detail .top-detail .info .top-info .right-info .box-info span {
    display: block;
}

.blog-detail .top-detail .info .top-info .right-info .box-info span:first-child {
    color: var(--cl-second);
    font-weight: 700;
    font-size: 20px;
}

.blog-detail .top-detail .info .bottom-info {
    display: flex;
    justify-content: space-between;
}

.blog-detail .top-detail .info .bottom-info b {
    color: var(--cl-primary);
}

.blog-detail .detail-content {
    padding-top: 80px;
    margin: 0 auto;
    max-width: 700px;
}

.blog-detail .detail-content article {
    text-align: justify;
}

.blog-detail .detail-content article h2 {
    color: var(--cl-primary);
    margin-bottom: 20px;
}

.blog-detail .detail-content article p {
    margin-bottom: 0.5rem;
}

.blog-detail .detail-content article ul {
    padding-left: 20px;
}

.blog-detail .detail-content article ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.blog-detail .detail-content .social {
    display: flex;
    justify-content: right;
    width: 100%;
    gap: 10px;
    border-top: 1px solid rgba(14, 55, 70, 0.15);
    padding-top: 15px;
}

.blog-detail .detail-content .social ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail .detail-content .social ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--cl-primary);
    color: #fff;
    border-radius: 8px;
    height: 30px;
    width: 30px;
}

.blog-detail .box-detail .toc-wrap {
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
    background-color: #f9fafb;
    border-width: 1px;
    border-color: #d2d6dc;
    margin-bottom: 15px
}

.blog-detail .box-detail .toc-wrap h2 {
    margin-bottom: 0;
    font-size: 20px
}

.blog-detail .box-detail .toc-wrap .toc-title {
    border-radius: 12px 12px 0 0;
    font-size: 18px;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    padding: 12px 15px;
    padding-left: 20px;
    background: #fff6e5;
    position: relative;
    cursor: pointer
}

.blog-detail .box-detail .toc-wrap .toc-title::before {
    position: absolute;
    top: 8px;
    right: 15px;
    content: "\f0d7";
    font-family: fontawesome;
    transition: all ease .5s;
    -webkit-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    -o-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important
}

.blog-detail .box-detail .toc-wrap .toc-title.active::before {
    -webkit-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    -o-transform: rotate(0) !important;
    transform: rotate(0) !important
}

.blog-detail .box-detail .toc-wrap #toc {
    max-height: 0;
    overflow: hidden;
    transition: all ease .4s
}

.blog-detail .box-detail .toc-wrap #toc.active {
    max-height: 5000px
}

.blog-detail .box-detail .toc-wrap #toc ul {
    padding: 15px
}

.blog-detail .box-detail .toc-wrap #toc ul li {
    list-style: none
}

.blog-detail .box-detail .toc-wrap #toc ul li a {
    color: #111
}

.blog-detail .box-detail .toc-wrap #toc ul li.toc-h3 a,
.blog-detail .box-detail .toc-wrap #toc ul li.toc-h4 a,
.blog-detail .box-detail .toc-wrap #toc ul li.toc-h5 a {
    color: #666
}

.blog-detail .box-detail .toc-wrap #toc a:hover {
    color: var(--primary) !important
}

.blog-detail .box-detail .toc-wrap #toc .toc-active {
    font-weight: 700;
    color: #2563eb
}

.blog-detail .box-detail .toc-wrap #toc .toc-item {
    padding: .1em 0
}

.blog-detail .box-detail .toc-wrap #toc .toc-item a {
    padding: .25em .5em
}

.blog-detail .box-detail .toc-wrap #toc .toc-h2 {
    margin-left: .5em
}

.blog-detail .box-detail .toc-wrap #toc .toc-h3 {
    margin-left: 1.75em
}

.blog-detail .box-detail .toc-wrap #toc .toc-h4 {
    margin-left: 3em
}

.blog-detail .box-detail .toc-wrap #toc .toc-h5 {
    margin-left: 4.25em
}

.blog-detail .box-detail .toc-wrap #toc .toc-h6 {
    margin-left: 5.5em
}

@media screen and (max-width:996px) {
    .blog-detail .box-detail article h2 {
        font-size: 20px;
        margin-bottom: 20px
    }
}

@media screen and (max-width:996px) {
    .blog-detail .box-detail article h3,
    .blog-detail .box-detail article h4 {
        font-size: 16px
    }
}

.blog-detail figcaption {
    text-align: center;
    color: #616161;
    padding-top: 5px;
    font-style: italic;
    padding-bottom: 4px
}

#button-contact-vr {
    position: fixed;
    bottom: 150px;
    right: 15px;
    z-index: 99;
}

#button-contact-vr .button-contact {
    margin-bottom: 15px;
}

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 100px;
    width: 51px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--cl-primary);
    color: #fff;
    border-radius: 50%;
    z-index: 99;
    transition: all ease 0.4s;
    bottom: -100px;
}

.back-to-top a {
    color: #fff;
}

.back-to-top.active {
    bottom: 100px;
}

.mobile-btn #mobile-btn span {
    background: var(--cl-primary);
    margin-bottom: 5px;
}

.mobile-btn #mobile-btn span:last-child {
    margin-bottom: 0;
}

.mobile-btn {
    display: none;
}

#menu-mobile {
    z-index: 9999;
}

.section_about .vuta-row {
    margin: 0;
}

.section_about [class^="vuta-col-"] {
    padding: 0;
}

.about-3 .tab-item .list-item {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
}

.about-3 .tab-item .list-item .item {
    width: calc(33% - 10px);
}

.about-3 {
    padding-bottom: 20px;
}

.section_copyright .text {
    width: 100%;
    padding: 5px 0;
}

.section_copyright .text p {
    display: flex;
    font-size: 14px;
    justify-content: center;
    padding-right: 15px;
    padding-left: 15px;
}

.section_copyright .text p a {
    font-weight: 700;
    color: #fff;
    margin-left: 4px;
}

@media (max-width:1200px) {
    .mobile-btn {
        display: block;
    }
    .header-inner .menu-list {
        display: none;
    }
    .mobile-logo img {
        height: 45px;
        margin: 0 auto;
    }
    .mobile-logo {
        text-align: center;
        margin-bottom: 25px;
    }
    .header-inner .header-logo figure img {
        max-height: 45px;
        padding: 0;
    }
    .header-inner .header-logo figure {
        width: auto;
    }
}

@media (max-width:996px) {
    .section_about .about-heading {
        padding: 40px 20px;
    }
    .about-1 .vuta-row [class^="vuta-col-"]:nth-child(1) .vmission-item {
        border-radius: 60px 0;
    }
    .about-1 .vuta-row [class^="vuta-col-"]:nth-child(2) .vmission-item p:first-child {
        font-size: 2.4em;
    }
    .about-2 {
        padding-top: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    .box-title {
        font-size: 1.4rem;
    }
    .about-2 .wraper {
        flex-direction: column;
    }
    .about-2 .wraper .item {
        width: 100%;
        margin-bottom: 30px;
    }
    .about-2 .box-title {
        margin-bottom: 0;
    }
    .about-2 .wraper .item h4 {
        font-size: 22px;
    }
    .service {
        padding: 40px 15px 5px;
    }
    .service .min-wraper .service-item {
        padding: 25px;
        flex-direction: column;
        gap: 20px;
    }
    .service .min-wraper .service-item .box-content {
        width: 100%;
    }
    .service .min-wraper .service-item .box-img {
        width: 100%;
        padding: 0;
    }
    .service .min-wraper .service-item .box-img img {
        border-radius: 0 60px;
    }
    .service .min-wraper .service-item h4 {
        margin-bottom: 15px;
        font-size: 22px;
    }
    .break {
        padding: 0 15px 20px;
    }
    .about-us {
        padding: 40px 0;
    }
    .about-us .box-title {
        margin-bottom: 20px;
    }
    .about-us .vuta-row .title {
        padding: 10px 0;
        padding-right: 0;
        text-align: right;
        padding-bottom: 15px;
    }
    .about-us .box-img img {
        border-radius: 0 60px;
        height: 100%;
        object-position: 39% 14%;
    }
    .about-us .box-img {
        aspect-ratio: 3/2;
    }
    .about-us .vuta-row .content {
        border-radius: 90px 0;
        text-align: justify;
        padding: 40px;
    }
    .col-padding {
        padding: 0 8px 30px;
    }
    .about-3 .list-tab li a {
        padding-left: 15px;
        padding-right: 15px;
    }
    .about-3 .tab-item .item {
        background: #fff;
        border-radius: 20px;
    }
    .about-3 .tab-item .box-img {
        aspect-ratio: 3/2;
    }
    .about-3 .tab-item .box-content {
        padding: 15px;
        padding-top: 5px;
    }
    .about-3 .tab-item .list-item {
        flex-wrap: nowrap;
        overflow: scroll;
    }
    .about-3 .tab-item .list-item .item {
        min-width: 300px;
    }
    .section-content .col-padding {
        padding: 0 15px 30px;
    }
    .blog-top .vuta-container-fluid {
        padding: 0;
    }
    .blog {
        padding: 40px 0 10px;
    }
    #tab .list-cat {
        top: 10px;
    }
    .member .box-title {
        margin-bottom: 120px;
    }
    .top-contact {
        padding: 20px 0 !important;
    }
    .blog-detail {
        padding: 40px 0;
    }
    .blog-detail .top-detail .vuta-row .short-desc {
        padding: 40px;
        border-radius: 0 60px;
        margin-bottom: 20px;
    }
    .blog-detail .top-detail .info {
        border-radius: 60px 0;
        padding: 40px;
    }
    .blog-detail .detail-content {
        padding-top: 40px;
    }
    .blog-detail .box-detail article h2 {
        margin-bottom: 10px;
    }
    #footer {
        padding-top: 40px;
    }
    #footer .footer-main__logo {
        text-align: center;
    }
    #footer .footer-main__logo img {
        width: auto;
        max-width: 100%;
    }
}

.home-projects {
    padding: 60px 0;
    background: #fff;
}

.home-projects .wraper .projects-item {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.home-projects .wraper .projects-item .box-img {
    aspect-ratio: 1920/900;
}

.home-projects .wraper [class^="vuta-col-"]:last-child .projects-item .box-img {
    order: 2;
}

.home-projects .wraper [class^="vuta-col-"]:last-child .projects-item .box-content {
    margin-bottom: 20px;
}

.home-projects .wraper .projects-item .box-content h4 {
    margin: 10px 0;
    font-size: 32px;
    font-weight: 700;
    color: var(--cl-primary);
    display: block;
    position: relative;
    padding-bottom: 10px;
}

.home-projects .wraper .projects-item .box-content h4 a {
    color: var(--cl-primary);
}

.home-projects .wraper .projects-item .box-content h4::before {
    position: absolute;
    height: 1px;
    content: "";
    bottom: 0;
    width: 100%;
    background: #dcdcdc;
}

.home-projects .wraper .projects-item .box-content .projects-time {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.home-projects .wraper .projects-item .box-content .projects-time::before {
    position: absolute;
    height: 1px;
    content: "";
    bottom: 0;
    width: 100%;
    background: #dcdcdc;
}

.home-projects .wraper .projects-item .box-content .projects-time ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5px 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dcdcdc;
}

.home-projects .wraper .projects-item .box-content .projects-time ul li {
    width: calc(30%);
    font-size: 18px;
    margin: 5px 0;
}

.home-projects .wraper .projects-item .box-content .projects-time ul li:first-child,
.home-projects .wraper .projects-item .box-content .projects-time ul li:nth-child(2),
.home-projects .wraper .projects-item .box-content .projects-time ul li:nth-child(3) {
    font-weight: 700;
    margin-bottom: 20px;
}

.home-projects .wraper .projects-item .box-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.home-blockquote .box-content {
    position: absolute;
    top: 50%;
    margin: 0;
    transform: translateY(-50%) translateX(-50%);
    left: 50%;
    display: flex;
    width: 100%;
    z-index: 9;
    max-width: 850px;
    padding: 30px;
}

.home-blockquote .box-content blockquote {
    font-size: 30px;
    position: relative;
    color: rgba(255, 255, 255, .7);
    margin: 0;
    line-height: 1.25;
    padding-left: 0;
    border-left: 0;
}

.home-blockquote .box-content::before {
    display: inline-block;
    vertical-align: top;
    line-height: 50px;
    content: '\201C';
    margin: 0 4px 0 -8px;
    color: #0277bd;
    font-size: calc(100vw/30);
}

.home-blockquote .box-content::after {
    content: '\201D';
    display: inline-block;
    right: 0;
    vertical-align: top;
    line-height: 50px;
    font-size: calc(100vw/30);
    margin: 0 -8px 0 4px;
    color: #0277bd;
    position: absolute;
    bottom: 0;
}

@media (max-width:996px) {
    .home-projects {
        padding: 20px 0;
    }
    .home-projects .box-title {
        padding: 0;
    }
    .home-projects .wraper .projects-item {
        padding-right: 0;
    }
    .home-projects .wraper [class^="vuta-col-"]:last-child .projects-item .box-img {
        order: 1;
    }
    .home-projects .wraper [class^="vuta-col-"]:last-child .projects-item .box-content {
        order: 2;
    }
    .home-projects .wraper [class^="vuta-col-"]:first-child .projects-item {
        margin-bottom: 15px;
        border-bottom: 1px dashed #616161;
        padding-bottom: 15px;
    }
    .home-projects h2 {
        display: flex;
        gap: 10px;
    }
    .box-title h6 {
        margin-bottom: 10px;
    }
    .home-projects .wraper .projects-item .box-content h4 {
        font-size: 20px;
    }
    [class^="vuta-col-"] {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

#footer ul li {
    margin-bottom: 10px;
}

#footer .footer-info p strong {
    margin-bottom: 10px;
    display: block;
}

#footer .list-social li {
    margin-bottom: 0;
}

#footer .list-social {
    display: flex;
    gap: 15px;
}

#footer .list-social li a {
    display: flex;
    height: 27px;
    justify-content: center;
    align-items: center;
    background: var(--cl-primary);
    color: #fff;
    width: 43px;
    border-radius: 99999px;
}

.about-us .list-info {
    margin-top: 30px;
}

.partner-logo {
    margin-bottom: 20px;
}

.home-products {
    padding: 20px 0;
}

.products-item {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15);
    margin-bottom: 30px;
    border-radius: 20px 0 20px 0;
    position: relative;
}

.products-item .box-img {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 20px 0 20px 0;
}

.products-item .box-img img {
    height: 100%;
    transition: all ease 0.7s;
    object-fit: cover;
}

.products-item .box-content {
    position: absolute;
    width: 90%;
    background: #dff3ff;
    transition: all ease 0.4s;
    content: "";
    text-align: center;
    padding: 10px;
    border-radius: 0 20px 0 20px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
}

.products-item .box-content h4 {
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.products-item .box-content h4 a {
    color: var(--fs-color-primary);
}

.home-products .box-btn {
    text-align: center;
    margin-top: 30px;
}

.products-item:hover .box-content {
    background: var(--fs-color-primary);
}

.products-item:hover .box-content h4 a {
    color: #fff;
}

.products-item:hover .box-img img {
    transform: scale(1.1);
}

.breadcrums {
    background: var(--cl-primary);
    padding: 0 30px;
}

.breadcrums ul {
    display: flex;
    gap: 20px;
}

.breadcrums ul li a {
    font-size: 12px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    height: 34px;
}

.breadcrums ul li {
    position: relative;
    color: #fff;
}

.breadcrums ul li::before {
    position: absolute;
    font-family: fontawesome;
    content: "\f105";
    right: -13px;
    top: 8px;
    font-size: 12px;
}

.breadcrums ul li:last-child::before {
    display: none;
}

.breadcrums ul li:last-child a {
    font-weight: 600;
}

.products-detail {
    padding: 40px 0;
}

.products-detail .products-detail-slider {
    border-radius: 20px;
    background: #fff;
    padding: 25px;
}

.products-detail .slider-nav .slick-track {
    margin-left: 0;
}

.products-detail-slider .box-img {
    aspect-ratio: 1/1;
}

.products-detail-slider .box-img img {
    height: 100% !important;
    object-fit: cover;
}

.products-detail-slider .slider-for {
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
}

.products-detail-slider .slider-nav .item {
    margin: 5px;
    border: 2px solid #616161;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
}

.products-detail-slider .slider-nav {
    margin: 0 -5px;
}

.products-detail-slider .slider-nav .item.slick-active.slick-current {
    border: 2px solid var(--fs-color-primary);
}

.box-products-detail {
    padding-left: 25px;
}

.box-products-detail h1 {
    font-size: 28px;
    font-weight: 400 !important;
    margin-bottom: 20px;
}

.box-products-detail .list-item {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #cbc8c2;
}

.box-products-detail .list-item h4 {
    font-size: 20px;
    font-weight: 400 !important;
    color: #000;
    margin-bottom: 10px;
}

.box-products-detail .list-item li {
    margin-bottom: 10px;
    list-style: disc;
    color: #333;
}

.box-products-detail .list-item ul {
    padding-left: 15px;
}

.box-products-detail .list-item li:last-child {
    margin-bottom: 0;
}

.box-products-detail .desc p {
    color: #333;
    margin-top: 10px;
}

.box-products-detail .desc {
    margin-bottom: 30px;
}

.box-products-detail .gift {
    border-radius: 20px;
    border: 1px solid #cbc8c2;
    margin-bottom: 30px;
    padding: 20px 10px;
}

.box-products-detail .gift li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    border-bottom: 1px solid #cbc8c2;
}

.box-products-detail .gift li .icon {
    flex-shrink: 0;
}

.box-products-detail .gift li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.box-products-detail .gift li a {
    color: var(--fs-color-primary);
}

.box-products-detail .box-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.box-products-detail .box-btn a {
    display: flex;
    align-items: center;
    border: 1px solid var(--fs-color-primary);
    justify-content: center;
    border-radius: 15px;
    transition: all ease 0.4s;
    height: 40px;
    width: calc(50% - 5px);
}

.box-products-detail .box-btn a:hover {
    background: var(--fs-color-primary);
    color: #fff;
}

.box-products-detail .box-btn a:last-child {
    background: var(--fs-color-primary);
    color: #fff;
}

.box-products-detail .box-btn a:last-child:hover {
    filter: brightness(1.1);
}

.related-products {
    padding-top: 40px;
}

.related-products h2 {
    position: relative;
    padding-bottom: 15px;
    font-size: 28px;
    font-weight: 600;
}

.related-products h2::before {
    background: var(--fs-color-primary);
    height: 3px;
    left: 0;
    position: absolute;
    bottom: 0;
    content: "";
    width: 80px;
}

.related-products .related-slider {
    margin: 0 -10px;
}

.related-products .related-slider .item {
    margin: 10px;
}

.contact .top-contact {
    background-image: url(/themes/bds/assets/images/contact-bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.top-contact .contact-form p {
    margin-bottom: 10px;
}

.top-contact .contact-form .gr-input .vuta-input {
    margin-bottom: 20px;
}

.top-contact .contact-form .gr-input textarea {
    min-height: 100px;
}

.top-contact .contact-form .box-btn span {
    display: inline-block;
    line-height: 1.6;
    margin-bottom: 0;
    color: #fff;
    font-size: 16px;
}

.map-contact {
    padding: 20px 0;
}

.home-blog {
    padding: 20px 0;
}

.home-blog .blog-item {
    margin-bottom: 15px;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .15)
}

@media (max-width:996px) {
    .related-products h2 {
        margin-bottom: 10px;
    }
    .box-products-detail {
        padding-top: 20px;
        padding-left: 0;
    }
    .box-products-detail h1 {
        font-size: 20px;
        color: var(--fs-color-primary);
    }
    .home-blog.member .box-title {
        margin-bottom: 60px;
    }
    .home-blog .blog-item {
        margin-bottom: 50px;
        box-shadow: 1px 1px 10px rgba(0, 0, 0, .15)
    }
}