/* ----------- ALL ----------- */
body {
    position: relative;
}

.mock-bg-image {
    min-height: 767px;
    background-color: black;
    color: #FBFBFB;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%)
}

.font-size-70 {
    font-size: 70px !important;
}

.font-size-60 {
    font-size: 60px !important;
}

.font-size-50 {
    font-size: 50px !important;
}

.font-size-40 {
    font-size: 40px !important;
}

.font-size-35 {
    font-size: 35px !important;
}

.font-size-30 {
    font-size: 30px !important;
}

@media (max-width: 425px) {}

@media (min-width: 1200px) {
    .navbar {
        /* min-height: 129px; */
        min-height: 100px;
    }

    .navbar .nav-link:hover,
    .fa-brands:hover {
        transform: scale(1.1);
    }
}

/* ------------------ section-header ------------------ */
/* .section-header {
    width: 100%;
} */

/* body:has(.homepage) .nav-bg-color {
    background-color: rgba(0, 0, 0, 0.7);
} */

.navbar {
    width: 1920px;
    padding-block: 0;
    position: fixed;
}

.navbar .navbar-text {
    color: #FBFBFB;
    justify-content: flex-end;
}

.navbar .navbar-text .fa-headset {
    margin-inline: 10px;
}

/* .navbar .nav-link {
    color: #FBFBFB;
} */

/* .nav-bg-color {
    background-color: #6A6A6A;
} */

.navbar-brand img {
    max-width: 214px;
}

.navbar .box-lang {
    width: auto;
}

.goog-te-gadget-icon {
    display: none;
}

.goog-te-gadget {
    font-family: 'db_heaventmed';
}

.goog-te-gadget a {
    font-family: 'db_heaventmed' !important;
    color: #009F4C !important;
    font-size: 24px !important;
}

.goog-te-gadget a img {
    display: none;
}

.goog-te-gadget a span:nth-child(3),
.goog-te-gadget a span:nth-child(5) {
    display: none;
}

.goog-te-gadget-simple {
    border: 1px solid #707070 !important;
    border-radius: 15px !important;
    padding: 4px 5px 2px 5px !important;
    background-color: #e8e8e8 !important;
    cursor: pointer;
}

.navbar .box-lang .dropdown-toggle {
    color: #009F4C;
}

.navbar .sb1:before {
    left: 20% !important;
}

.navbar .navbar-nav .dropdown-menu {
    position: fixed;
    top: 125px;
    font-size: var(--fs-5);
    transform: translate(-50%, 0);
    width: 300px;
    margin-left: 120px;
    height: max-content;
    border-radius: 0;
    background-image: url("../images/header/hover-menu-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    border-radius: 40px;
    padding: 20px 10px;
    left: auto;
}

.navbar .navbar-nav .dropdown-menu.show {
    display: flex;
}

.navbar .dropdown .dropdown-menu .dropdown-menu-title {
    font-size: var(--fs-3);
    color: white;
    padding: 5px 10px;
    background-color: var(--green-light);
    line-height: 1;
    width: 100%;
    border-radius: 40px;
    margin: 0 0px 8px 10px;
}

.navbar .dropdown .dropdown-menu .dropdown-menu-link {
    list-style-type: none;
}

.navbar .navbar-nav .dropdown-menu a {
    color: white;
    padding: 8px 0;
    font-size: var(--fs-5);
    line-height: 1;
    margin: 0 20px;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
}

.navbar .navbar-nav .dropdown:hover .dropdown-menu {
    /* top: 50px; */
    display: flex;
}

.translated-ltr .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    top: 138px;
    display: flex;
}

.navbar .search-box-warpper {
    display: none;
    overflow: hidden;
    border-radius: 15px;
}

.navbar .search-box {
    display: none;
    background-color: #fff;
    padding: 2px 10px 2px 10px;
    border-radius: 15px;
    transform: translateX(100%);
}

.navbar .search-box.active {
    display: flex;
    animation: slideIn 0.3s ease forwards;
}

.navbar .search-box.inactive {
    display: flex;
    animation: slideOut 0.3s ease forwards;
}

.navbar .search-box-warpper:has(.search-box.active) {
    display: block;
}

.navbar .search-box-warpper:has(.search-box.inactive) {
    animation: destoryWidth 0.3s ease forwards;
}


@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
        display: none;
    }
}

.navbar .search-box i {
    color: #009F4C;
    padding: 2px 10px 2px 0;
    font-size: 16px;
    line-height: 24px;
}

.navbar .search-box input {
    padding: 0;
    border: none;
    outline: none;
}

.navbar .search-box input.form-control:focus {
    box-shadow: none;
}

@media (max-width: 1920px) {
    .navbar {
        width: 100%;
    }

    /* .navbar .navbar-nav .dropdown-menu {
        width: 100%;
    } */
}

@media (min-width: 1200px) and (max-width: 1250px) {
    .navbar .content-container {
        padding: 0px 20px !important;
    }
}

@media (max-width: 1199px) {
    /* 
    body:has(.homepage) .nav-bg-color {
        background-color: #6A6A6A;
    } */

    .navbar .navbar-text {
        justify-content: flex-start;
    }

    .navbar .navbar-text:last-child {
        gap: 5px !important;
    }

    .navbar .search-box-warpper:has(.search-box.inactive) {
        animation: unset;
    }

    .navbar .sb1:before {
        display: none;
    }

    .navbar .navbar-header {
        margin-top: 5px;
        flex-direction: column-reverse !important;
    }

    .navbar .top-header-inner {
        margin-block: 5px;
    }

    .navbar .navbar-nav .dropdown-menu {
        padding-block: 5px !important;
        position: unset;
        background: #F0F0F0;
        opacity: 1;
        flex-direction: column;
        padding-inline-start: unset;
        border-radius: 10px;
        transform: unset;
    }

}

@media (max-width: 690px) {
    .navbar .top-header-inner {
        display: block !important;
        margin-left: 0px !important;
    }

    .navbar .navbar-text {
        margin-block-start: 2px;
    }

    /* .navbar .navbar-text span.mid{
        display: none;
    } */
}

@media (max-width: 330px) {
    .navbar .navbar-brand img {
        max-width: 195px;
    }
}


/* ------------------ section-directors ------------------ */
.section-directors {
    overflow-x: hidden;
    padding-bottom: 50px;
    padding-top: 100px;
}

.section-directors .banner-frame {
    z-index: -1;
    height: 80vh;
    object-fit: cover;
}

.section-directors .banner {
    z-index: -2;
    height: 80vh;
    object-fit: cover;
}

.section-directors .text-header-directors p {
    color: #FBFBFB;
    font-size: var(--fs-1);
    line-height: 93.11px;
}

.section-directors .card-director {
    max-width: 373px;
    max-height: 514px;
    border-color: #0EA455;
    border-radius: 0;
}

.section-directors .card-director img {
    max-width: 373px;
    max-height: 401px;
    border-radius: 0;
}

.section-directors .card-director .card-director-name {
    color: #0EA455;
    font-size: 35px;
    line-height: 46.55px;
}

.section-directors .card-director .card-director-position {
    color: #737373;
    font-size: 30px;
    line-height: 39.9px;
}

@media (max-width: 1200px) {
    .section-directors {
        padding-top: 60px;
    }
}

@media (max-width: 425px) {
    .section-directors .text-header-directors p {
        font-size: var(--fs-2);
        line-height: 45px;
    }
}

@media (min-width: 1630px) {
}



/* ------------------ section-international-business ------------------ */
.section-international-business {
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-international-business {
    background-color: #fff;
}

.section-international-business .text-header p {
    font-size: var(--fs-1);
    font-family: var(--ff-bold);
    color: #393939;
    line-height: 79.8px;
}

.section-international-business p .text-details {
    color: #393939;
    font-family: var(--ff-light);
    font-size: var(--fs-3);
    line-height: 39.9px;
}

.section-international-business .map {
    max-width: 1474px;
    max-height: 802px;
}

.section-international-business .map img {
    width: 100%;
    height: 100%;
}

.section-international-business .map .marker {
    max-width: 148px;
    max-height: 134px;
}

.section-international-business .map-selectors button {
    font-size: 40px;
    line-height: 0px;
    height: 40px;
    width: 150px;
    color: #000;
    border-color: #fff;
    margin: 10px;
    background-color: #fff;
}

.section-international-business .map-selectors button.active {
    font-size: 40px;
    line-height: 0px;
    height: 40px;
    width: 150px;
    color: #009F4C;
    border-color: #009F4C;
    margin: 10px;
    background-color: #fff;
}

.section-international-business .map-details {
    display: flex;
    justify-content: center;
}

.section-international-business .map-detail {
    /* background: #F8F7F7; */
    width: 100%;
    max-width: 1380px;
    /* max-height: 250px; */
    padding: 10px;
    text-align: center;
    margin: 50px;
    overflow-y: auto;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
}

.section-international-business .map-detail .row {
    width: 100%;
    justify-content: space-evenly;
    flex-wrap: wrap;
    background: #F8F7F7;
}

.section-international-business .map-detail.show {
    display: flex;
}


.section-international-business .map-detail span {
    width: 240px;
    font-size: 30px;
    line-height: 39.9px;
    white-space: nowrap;
    columns: #393939;
}

.section-international-business .map-detail .item {
    font-size: 30px;
    padding: 0px 2px;
}

@media (max-width:600px) {
    .section-international-business .text-header p {
        font-size: var(--fs-2);
        line-height: 69.8px;
    }

    .section-international-business p .text-details {
        font-size: var(--fs-4);
        line-height: 39.9px;
    }

    .section-international-business .map-selectors button {
        font-size: var(--fs-3) !important;
    }
}

@media (max-width: 425px) {
    .section-international-business .map-detail {
        margin: 20px;
    }

    .section-international-business .text-header p {
        font-size: var(--fs-3);
        line-height: 69.8px;
    }

    .section-international-business p .text-details {
        font-size: var(--fs-5);
        line-height: 39.9px;
    }

    .section-international-business .map-selectors button {
        font-size: var(--fs-5) !important;
    }

    .section-international-business .map-detail span {
        font-size: var(--fs-5) !important;
    }
}


/* ------------------ section-contact-customer-service ------------------ */
.section-contact-customer-service {
    font-family: var(--ff-light);
    overflow-x: hidden;
}

.section-contact-customer-service .text-header p {
    font-family: var(--ff-bold);
    font-size: var(--fs-1);
    color: #00A850;
    line-height: 79.8px;
}

.section-contact-customer-service p .text-details {
    font-family: var(--ff-bold);
    color: #393939;
    line-height: 79.8px;
}

.section-contact-customer-service .address-information {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block-end: 30px;
}

.section-contact-customer-service .address-information .address-information-content {
    font-size: 41px;
    color: #393939;
    line-height: 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 711px;
}

.section-contact-customer-service .address-information .address-information-content span i {
    font-size: 20px;
}

.section-contact-customer-service .address-information .address-information-content span {
    background-color: var(--green);
    color: #fff;
    border-radius: 50%;
    height: 40px;
    min-width: 40px;
    margin-block-start: 5px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.section-contact-customer-service .address-information .address-information-content p {
    display: flex;
    gap: 15px;
}

.section-contact-customer-service .address-information .address-information-content p svg {
    min-width: 48px;
}

.section-contact-customer-service .address-information .address-information-content p.title {
    color: var(--green);
    font-family: var(--ff-bold);
}

.section-contact-customer-service .contact-customer-service-form form {
    max-width: 726px;
    width: 100%;
    padding-top: 35px;
}

.section-contact-customer-service .contact-customer-service-form form input[type=text] {
    background-color: #F0F0F0;
    height: 54px;
    max-width: 711px;
    font-size: 23px;
    line-height: 39.9px;
}

.section-contact-customer-service .contact-customer-service-form form input[type=text]::placeholder {
    font-size: 23px;
    line-height: 39.9px;
}

.section-contact-customer-service .contact-customer-service-form form textarea {
    background-color: #F0F0F0;
    font-size: 23px;
    line-height: 39.9px;
}

.section-contact-customer-service .contact-customer-service-form form textarea::placeholder {
    font-size: 23px;
    line-height: 39.9px;
}

.section-contact-customer-service .contact-customer-service-form form label {
    font-size: 30px;
    line-height: 39.9px;
}

.section-contact-customer-service .btn-submit {
    background-color: #009F4C;
    color: #fff;
    font-size: 30px;
    line-height: 33px;
    height: 45px;
    width: 160px;
    margin-block: 15px;
}


.section-contact-customer-service .form-check-input:checked {
    background-color: #009F4C;
    border-color: #009F4F;
}

.section-contact-customer-service .form-check-input:focus {
    border-color: #009F4F;
}

.section-contact-customer-service .location-map {
    position: relative;
}

.section-contact-customer-service .location-map--handle-click {
    background-color: #00000050;
    height: 100%;
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-contact-customer-service .location-map--handle-click button {
    line-height: unset;
    font-size: 34px;
    line-height: 39.22px;
    background-color: #0CA559;
    color: #fff;
    width: 179px;
    height: 54px;
}

@media (max-width: 768px) {
    .section-contact-customer-service .text-header p {
        font-size: var(--fs-2);
        line-height: 48px;
    }

    .section-contact-customer-service p .text-details {
        font-size: var(--fs-2-1);
        line-height: 42px;
    }

    .section-contact-customer-service .address-information p {
        font-size: var(--fs-3);
    }

    .section-contact-customer-service .address-information .address-information-content span {
        height: 30px;
        min-width: 30px;
    }

}


@media (max-width: 425px) {

    .section-contact-customer-service {
        padding-top: 50px;
    }

    .section-contact-customer-service p .text-details {
        color: #393939;
        /* line-height: 52.8px; */
    }

    .section-contact-customer-service p span::before {
        content: "";
        display: block;
    }

    .section-contact-customer-service .text-header p {
        font-size: var(--fs-2);
    }

    .section-contact-customer-service p .text-details {
        font-size: var(--fs-2-1);
    }

    .section-contact-customer-service .address-information p {
        font-size: var(--fs-4);
    }

    .section-contact-customer-service .address-information .address-information-content span i {
        font-size: 16px;
    }

    .section-contact-customer-service .contact-customer-service-form form label {
        font-size: var(--fs-5);
    }

    .section-contact-customer-service .contact-customer-service-form form input[type=text] {
        font-size: var(--fs-6);
    }

    .section-contact-customer-service .contact-customer-service-form form input[type=text]::placeholder {
        font-size: var(--fs-6);
    }

    .section-contact-customer-service .contact-customer-service-form form textarea {
        font-size: var(--fs-6);
        line-height: 20px;
    }

    .section-contact-customer-service .contact-customer-service-form form textarea::placeholder {
        font-size: var(--fs-6);
    }
}


/* ------------------ section-affiliates-company ------------------ */
.section-affiliates-company {
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-affiliates-company .company-selectors>div {
    border-bottom: #707070 solid 1px;
    padding-block: 20px;
    max-width: 800px;
}


.section-affiliates-company .text-header p {
    font-family: var(--ff-bold);
    font-size: var(--fs-1);
    color: #00A850;
    line-height: 79.8px;
}

.section-affiliates-company p .text-details {
    font-family: var(--ff-bold);
    font-size: var(--fs-1);
    color: #393939;
    line-height: 79.8px;
}

.section-affiliates-company .company-name {
    font-size: var(--fs-2-1);
    line-height: 45.22px;
    color: #0CA559;
}

.section-affiliates-company .company-info a {
    font-size: var(--fs-4);
    line-height: 37.24px;
    color: #393939;
}

.section-affiliates-company .company-info i {
    color: #0CA559;
    font-size: var(--fs-6);
}


.section-affiliates-company .company-icon * {
    width: 90px;
    height: 65px;
}

@media (max-width: 768px) {
    .section-affiliates-company .content-affiliates-company {
        padding-inline: 0%;
    }

    .section-affiliates-company .text-header p,
    .section-affiliates-company p .text-details {
        font-size: var(--fs-2);
        line-height: 44px;
        margin: 0;
    }

    .section-affiliates-company .company-name {
        font-size: var(--fs-3);
        line-height: 36px;
        margin: 0;
    }

    .section-affiliates-company .company-info a {
        font-size: var(--fs-4);
        margin: 0;
    }

}

@media (max-width: 425px) {

    .section-affiliates-company .text-header p {
        font-size: var(--fs-3);
        line-height: 30px;
    }

    .section-affiliates-company p .text-details {
        font-size: var(--fs-3);
        line-height: 30px;
    }

    .section-affiliates-company p .text-details {
        font-size: var(--fs-4);
        margin: 0;
    }

    .section-affiliates-company .company-name {
        font-size: var(--fs-5);
        line-height: 28px;
    }

    .section-affiliates-company .company-info a {
        font-size: var(--fs-6);
    }

    .section-affiliates-company .company-info i {
        font-size: 15px;
    }
}


/* ------------------ section-contact-customer-service ------------------ */
.section-company-information {
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-company-information .content-company-information {
    /* padding-inline: 10%; */
}

.section-company-information .text-header p {
    color: #00A850;
    font-size: 60px;
    line-height: 79.8px;
}

.section-company-information .text-sub-header p {
    color: #00A850;
    font-size: 60px;
    line-height: 79.8px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-company-information .text-sub-header img {
    z-index: -1;
    top: 0;
    max-height: 480px;
}

.section-company-information .title {
    color: #27974E;
    font-size: 50px;
    line-height: 66.5px;
}

.section-company-information .subtitle {
    color: #393939;
    font-size: 30px;
    line-height: 39.22px;
}

.section-company-information .text-pre-vision {
    color: #393939;
    font-size: 30px;
    line-height: 39.22px;
    border-bottom: #707070 solid 1px;
}
/* 
.section-company-information .text-vision {
    padding-block: 20px;
    border-bottom: #707070 solid 1px;
}

.section-company-information .text-philosophy {
    padding-block: 20px;
    border-bottom: #707070 solid 1px;
}

.section-company-information .text-mission {
    padding-block: 20px;
    border-bottom: #707070 solid 1px;
}

.section-company-information .text-capacity {
    padding-block: 20px;
    border-bottom: #707070 solid 1px;
}

.section-company-information .text-value {
    padding-block: 20px;
}

.section-company-information .text-mission .img-mission {
    max-height: 250px;
    padding: 15px;
} */

.section-company-information .text-mission .text-mission-title {
    font-size: 38px;
    line-height: 50.54px;
    color: #0EA455;
    border-bottom: #0EA455 solid 1px;
}

.section-company-information .text-mission .text-mission-subtitle {
    font-size: 23px;
    line-height: 30.59px;
    color: #737373;
}

.section-company-information .text-capacity .text-capacity-info p {
    font-size: 28px;
    line-height: 50.54px;
    color: #0EA455;
}

.section-company-information .text-value .img-value {
    max-height: 250px;
    padding: 15px;
}

/* .section-company-information .text-value .text-value-title {
    font-size: 38px;
    line-height: 30.54px;
    color: #0EA455;
} */
/* 
.section-company-information .text-value .text-value-subtitle {
    font-size: 23px;
    line-height: 30.59px;
    color: #737373;
} */



@media (min-width: 1400px) {
    .section-company-information .text-mission .text-mission-title:first-child {
        white-space: nowrap;
    }
}

@media (max-width: 1700px) {
    .section-company-information .content-company-information {
        padding-inline: 5%;
    }
}

@media (max-width: 1440px) {
    .section-company-information .content-company-information {
        padding-inline: 0%;
    }

}

@media (max-width: 768px) {
    .section-company-information p {
        font-size: var(--fs-5);
    }

    .section-company-information .text-header p {
        font-size: var(--fs-2);
        line-height: 52.8px;
    }

    .section-company-information .text-sub-header p {
        font-size: var(--fs-2);
        line-height: 52.8px;
    }

    .section-company-information .title {
        font-size: var(--fs-2);
    }

    .section-company-information .subtitle {
        font-size: var(--fs-5);
    }

    .section-company-information .text-value-title {
        font-size: var(--fs-3) !important;
    }
}


@media (max-width: 600px) {

    .section-company-information .text-sub-header p span::before {
        content: " ";
        display: block;
    }
}

@media (max-width: 425px) {
    .section-company-information {
        padding-top: 50px;
    }

    .section-company-information .text-sub-header img {
        height: 120px;
    }

    .section-company-information p {
        font-size: var(--fs-6);
        /* line-height: 52.8px; */
    }
}

/* ------------------ section-affiliates-group-company ------------------ */
.section-affiliates-group-company {
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-affiliates-group-company .content-affiliates-group-company {
    /* padding-inline: 10%; */
}

.section-affiliates-group-company .text-header p {
    color: #00A850;
    font-size: 50px;
    line-height: 66.5px;
}

.section-affiliates-group-company p .text-details {
    color: #393939;
    font-size: 40px;
    line-height: 53.2px;
}

.section-affiliates-group-company p.text-information {
    color: #363636;
    font-size: 30px;
    line-height: 39.9px;
}

.section-affiliates-group-company .affiliates-group-company-information {
    position: relative;
    width: 100%;
    padding-inline: 30px;
}

.section-affiliates-group-company .affiliates-group-company-information::before {
    position: absolute;
    content: " ";
    background-color: #0CA559;
    height: 14px;
    width: 14px;
    right: 10px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.section-affiliates-group-company .row:nth-child(even) .affiliates-group-company-information::before {
    left: 30px;
}

.section-affiliates-group-company .row:nth-child(even) {
    flex-direction: row-reverse;
}

.section-affiliates-group-company .affiliates-group-company-information .title {
    padding-top: 20px;
    border-top: #0CA559 1px solid;
}

.section-affiliates-group-company .affiliates-group-company-information .title p {
    color: #0CA559;
    font-size: 40px;
    line-height: 53.2px;
}

.section-affiliates-group-company .affiliates-group-company-information .description p {
    color: #737373;
    font-size: 25px;
    line-height: 33.25px;
}

.section-affiliates-group-company .affiliates-group-company-information .more {
    border: 1px solid;
    border-color: #0CA559;
}

.section-affiliates-group-company .affiliates-group-company-information .more a {
    color: #0CA559;
    font-size: 31px;
    line-height: 41.23px;
}

.section-affiliates-group-company .affiliates-group-company-information .more a i {
    font-size: 20px;
    line-height: 41.23px;
}

.section-affiliates-group-company .affiliates-group-company-image {
    position: relative;
    max-width: 655px;
    max-height: 403px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-affiliates-group-company .affiliates-group-company-image .frame {
    width: 100%;
    padding-inline: 30px;
}

@media (max-width: 768px) {
    .section-affiliates-group-company .content-affiliates-group-company {
        padding-inline: 0%;
    }
}

@media (max-width: 425px) {
    .section-affiliates-group-company {
        padding-top: 50px;
    }
}

/* ------------------ section-join-us-information ------------------ */
.section-join-us-information {
    font-family: var(--ff-light);
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-join-us-information .content-join-us-information {
    /* padding-inline: 10%; */
}

.section-join-us-information p,
.section-join-us-information li {
    color: #393939;
    font-size: 30px;
    line-height: normal;
}

.section-join-us-information .text-header p {
    font-family: var(--ff-bold);
    font-size: var(--fs-1);
    color: #00A850;
    line-height: 79.8px;
    margin: 0;
}

.section-join-us-information .text-title {
    font-family: var(--ff-bold);
    color: #0EA455;
    font-size: 50px;
    line-height: normal;
}

.section-join-us-information .time-table {
    color: #393939;
    font-size: 30px;
    line-height: normal;
}

@media (max-width: 824px) {
    .section-join-us-information .text-header p {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .section-join-us-information {
        padding-top: 50px;
    }

    .section-join-us-information .content-join-us-information {
        padding-inline: 5%;
    }

    .section-join-us-information .text-header span {
        padding-block: 10px !important;
    }

    .section-join-us-information p,
    .section-join-us-information li {
        font-size: var(--fs-5);
    }

    .section-join-us-information .text-header p {
        font-size: var(--fs-2);
        line-height: 47px;
    }

    .section-join-us-information .text-title {
        font-size: var(--fs-2);
    }

    .section-join-us-information .time-table {
        font-size: var(--fs-5);
    }
}

@media (max-width: 425px) {

    .section-join-us-information p,
    .section-join-us-information li {
        font-size: var(--fs-6);
    }

    .section-join-us-information .text-header p {
        font-size: var(--fs-3);
        line-height: 33px;
    }

    .section-join-us-information .text-title {
        font-size: var(--fs-3);
    }

    .section-join-us-information .time-table {
        font-size: var(--fs-6);
    }
}

@media (max-width: 400px) {
    .section-join-us-information .text-header p {
        font-size: 25px;
        line-height: 33px;
    }
}

/* ------------------ section-about-company ------------------ */
.section-about-company {
    font-family: var(--ff-light);
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-about-company .content-about-company {
    /* padding-inline: 10%; */
}

.section-about-company p {
    color: #393939;
    font-size: 30px;
    line-height: normal;
}

.section-about-company .text-header p {
    font-family: var(--ff-bold);
    color: #0EA455;
    font-size: var(--fs-1);
    line-height: normal;
}

.section-about-company .sub-header {
    font-family: var(--ff-bold);
    color: #393939;
    font-size: 50px;
    line-height: normal;
}

.section-about-company .li-header {
    font-family: var(--ff-bold);
    color: #0EA455;
    font-size: 50px;
    line-height: normal;
}

.section-about-company .li-sub-header {
    font-family: var(--ff-bold);
    color: #0EA455;
    font-size: var(--fs-2);
    line-height: normal;
}

@media (max-width: 768px) {
    .section-about-company {
        padding-top: 50px;
    }

    .section-about-company .content-about-company {
        padding-inline: 0%;
    }

    .section-about-company p {
        font-size: var(--fs-6);
    }

    .section-about-company .text-header p {
        font-size: var(--fs-2);
    }

    .section-about-company .sub-header {
        font-size: var(--fs-2-1);
    }

    .section-about-company .li-header {
        font-size: var(--fs-4);
    }

    .section-about-company .li-sub-header {
        font-size: var(--fs-4);
    }
}

/* ------------------ section-for-social ------------------ */
.section-for-social {
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-for-social .content-for-social {
    /* padding-inline: 10%; */
}

.section-for-social p {
    color: #393939;
    font-size: 30px;
    line-height: normal;
}

.section-for-social .text-header p {
    color: #0EA455;
    font-size: var(--fs-1);
    line-height: normal;
}

.section-for-social .for-social-content-section .for-social-content-vdo {
    padding-bottom: 10px;
}

.section-for-social .for-social-content-section .for-social-content-img {
    flex-wrap: wrap;
    --gap: 10px;
    gap: var(--gap);
}

.section-for-social .for-social-content-section .for-social-content-img img {
    width: calc(100% / 2 - calc(var(--gap)/2));
    object-fit: cover;
}

@media (max-width: 768px) {
    .section-for-social .content-for-social {
        padding-inline: 0%;
    }

    .section-for-social {
        padding-top: 50px;
    }

    .section-for-social p {
        font-size: var(--fs-4) !important;
    }

    .section-for-social .text-header p {
        font-size: var(--fs-3) !important;
    }

    .section-for-social .text-header span {
        padding: 0px !important;
    }
}

@media (max-width: 425px) {
    .section-for-social .for-social-content-section .for-social-content-img img {
        width: 100%;
    }

    .section-for-social p {
        font-size: var(--fs-5) !important;
    }

    .section-for-social .text-header p {
        font-size: var(--fs-2) !important;
    }
}


/* ------------------ section-news-and-events ------------------ */
.section-news-and-events {
    overflow-x: hidden;
    padding-bottom: 50px;
}

.section-news-and-events .text-header .title {
    color: #0CA559;
    font-size: 60px;
    line-height: normal;
}

.section-news-and-events .text-header .subtitle {
    color: #393939;
    font-size: 60px;
    line-height: normal;
}

.section-news-and-events .top-news-date {
    /* display: none; */
    color: #393939;
    font-size: 30px;
    line-height: normal;
}

.section-news-and-events .top-news-date-time {
    bottom: 0;
}

.section-news-and-events .news-date {
    color: #0CA559;
}

.section-news-and-events .card-news-event {
    width: 100%;
    height: 100%;
    /*max-height: 594px;*/
    border-color: #0CA559;
    border-radius: 0;
}

.section-news-and-events .card-news-event * {
    border-radius: 0;
}

/*.section-news-and-events .card-news-event img {
    width: 100%;
    object-fit: cover;
    max-height: 327px;
}*/

.section-news-and-events .card-news-event .box-img {
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    width: 100%;
    height: 330px;
    overflow: hidden;
}

.section-news-and-events .card-news-event .box-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: initial;
    font-family: 'object-fit: cover;';
}

.section-news-and-events .card-news-event .card-body {
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
}

.section-news-and-events .card-news-event .card-body .card-title {
    color: #3D3D3D;
    font-size: 25px;
    line-height: normal;
    margin: 0;
    margin-bottom: 1rem;
}

.section-news-and-events .card-news-event .card-body .card-text {
    flex-grow: 3;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    color: #1F1F1F;
    font-size: 28px;
    line-height: normal;
}

.section-news-and-events .card-news-event .card-body a {
    padding-top: 10px;
    color: #0CA559;
    font-size: 31px;
    line-height: normal;
}

.section-news-and-events .card-news-event .card-body a i {
    font-size: 20px;
    margin-left: 5px;
}

@media (max-width: 510px) {
    .section-news-and-events p {
        font-size: var(--fs-5) !important;
    }

    .section-news-and-events a {
        font-size: var(--fs-5) !important;
    }

    .section-news-and-events i {
        font-size: var(--fs-6) !important;
    }

    .section-news-and-events .text-header .title {
        font-size: var(--fs-3) !important;
    }

    .section-news-and-events .text-header .subtitle {
        font-size: var(--fs-3) !important;
    }

    .section-news-and-events .top-news-date-time {
        font-size: var(--fs-6) !important;
    }
}

@media (max-width: 768px) {
    .section-news-and-events {
        padding-top: 50px;
    }

    .section-news-and-events .text-header .title {
        margin-block-start: 25px;
    }

    .section-news-and-events .top-news-date-time {
        bottom: -40px;
        font-size: var(--fs-4) !important;
    }
}