@font-face {
    font-family: "FuturaLT";
    src: url("../fonts/FuturaLT-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

:root {
    --background-color: #f6f6f6;
    --blue-color: #2f296b;
    --yellow-color: #fee444;
    --text-color: #171b24;
    --dark-grey: #000000;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    font-family: "FuturaLT", Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
}

a {
    color: inherit;
    text-decoration: none !important;
}

.main-div {
    margin-top: 95px;
}

@media (max-width: 768px) {
    .main-div {
        margin-top: 60px;
    }
}

/*Home */

.home-hero-section {
    width: 100%;
    position: relative;
    height: 80vh;
}

.hero-section-carousel-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

@media (max-width: 768px) {
    .home-hero-section {
        height: 60vh;
    }

    .hero-section-carousel-image {
        height: 60vh;
    }

    .home-hero-section h1 {
        font-size: 1.6rem !important;
    }

    .home-hero-section p {
        font-size: 1rem !important;
    }
}

/* Custom prev arrow style */
.slick-prev.custom-arrow {
    display: block !important;
    top: 50% !important;
    left: 10px !important;
    z-index: 999 !important;
    width: 30px; /* example */
    height: 30px; /* example */
    background: url('/images/prev-arrow.svg') no-repeat center center; /* use your arrow icon */
    background-size: contain;
}

/* Custom next arrow style */
.slick-next.custom-arrow {
    display: block !important;
    top: 50% !important;
    right: 10px !important;
    z-index: 999 !important;
    width: 30px; /* example */
    height: 30px; /* example */
    background: url('/images/next-arrow.svg') no-repeat center center;
    background-size: contain;
}
.home-products-section {
    padding: 60px 100px;
    background-color: var(--background-color);
}

.home-products-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label-text {
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 4px;
    color: var(--blue-color);
    position: relative;
    z-index: 0;
    text-transform: uppercase;
    user-select: none;
    cursor: default;
}

.label-divider {
    width: 99%;
    height: 6px;
    border: none;
    position: absolute;
    top: 62%;
    z-index: -1;
    background-color: var(--yellow-color);
}

@media (max-width: 768px) {
    .label-text {
        font-size: 14px;
        font-weight: 700;
        line-height: 10.449px;
        letter-spacing: 2.85px;
    }
}
.home-products-header {
    width: 727px;
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
}
.poppins-600 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.home-products-description {
    width: 730px;
    font-size: 18px;
    line-height: 28px;
    margin-top: 20px;
    text-align: center;
    color: var(--text-color);
}

.home-products-grid {
    width: 100%;
    display: grid;
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2px;
    column-gap: 2px;
}

@media (max-width: 768px) {
    .home-products-section {
        padding: 40px 16px;
    }

    .home-products-header {
        width: 100%;
        font-size: 22px;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: -0.475px;
        margin-top: 14px;
    }

    .home-products-description {
        width: 100%;
        line-height: 20px;
        margin-top: 14px;
        font-size: 16px;
    }

    .home-products-grid {
        width: 100%;
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}
.product-card {
    height: 368px;
    background-color: white;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease-in-out;
    margin:7px;
}

.product-card-section {
    display: flex;
    flex-direction: column;
}

.product-card-label {
    width: 350px;
    margin-top: 8px;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: -0.5px;
    transition: 0.2s ease-in-out;
    text-transform: uppercase;
}

.product-card-description {
    width: 275px;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    transition: 0.2s ease-in-out;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.product-card-more {
    width: fit-content;
    cursor: pointer;
    margin-top: 16px;
    color: var(--blue-color);
}

.product-card-more-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 22px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 34px;
}

    .product-card-more-text:hover .product-card-more-icon path {
        stroke: #ffffff;
    }

.product-card-more:hover > .product-card-more-text {
    color: white;
    text-decoration-line: underline;
    text-underline-offset: 2px;
}

.product-card-more:hover > .product-card-more-icon {
    stroke: white;
}

.product-card-more-icon {
    stroke: var(--blue-color);
    transition: 0.2s ease-in-out;
}

.product-card-more:hover > .product-card-more-icon {
    stroke: white;
}

.product-card:hover {
    background-color: var(--blue-color);
}

    .product-card:hover .product-card-label {
        color: white;
    }

    .product-card:hover .product-card-description {
        color: white;
    }

    .product-card:hover .product-card-more {
        color: var(--yellow-color);
    }

    .product-card:hover .product-card-more-icon {
        stroke: var(--yellow-color);
    }

@media (max-width: 768px) {
    .product-card {
        width: calc(100vw - 32px);
        height: 292px;
        padding: 24px 20px;
    }

    .product-card-label {
        width: 265px;
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
        margin-top: 20px;
    }

    .product-card-description {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        /* margin-top: 8px; */
    }
}

.home-mission-section {
    padding: 0 100px;
    background-color: var(--background-color);
}

.home-mission-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-mission-header {
    width: 730px;
    margin: 20px 0;
    color: var(--text-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
}

.home-mission-description {
    width: 728px;
    font-size: 18px;
    line-height: 28px;
    color: var(--text-color);
    text-align: center;
}

.home-mission-main {
    width: 100%;
    height: 496px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.home-mission-main-image {
    position: relative;
    width: 33%;
    height: 100%;
    overflow: hidden;
}

.home-mission-main-list {
    width: 670px;
    padding: 0 136px;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .home-mission-section {
        padding: 0 16px;
    }

    .home-mission-header {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
        margin: 14px 0 14px 0;
    }

    .home-mission-description {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }

    .home-mission-main {
        height: auto;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .home-mission-main-image {
        width: 100%;
        height: 446px;
    }

    .home-mission-main-list {
        width: 100%;
    }
}
.mission-card {
    width: 475px;
    height: 148px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.4);
    display: flex;
    gap: 20px;
}

    .mission-card.disable-border {
        border: none;
    }

.mission-card-icon {
    margin-top: 8px;
}

.mission-card-data {
    width: 348px;
    display: flex;
    flex-direction: column;
}

.mission-card-data-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    color: var(--grey-color);
    margin-bottom: 8px;
}

.mission-card-data-content {
    width: 120%;
    color: var(--grey-color);
    font-size: 16px;
    line-height: 24px;
}

@media (max-width: 768px) {
    .mission-card {
        width: calc(100vw - 32px);
        height: max-content;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .mission-card-data-title {
        font-size: 20px;
        line-height: 23px;
    }

    .mission-card-data-content {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }
}
.home-history-section {
    padding: 60px 100px 0 100px;
    background-color: var(--background-color);
}

.home-history-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-history-body-arrow-icon {
    stroke: var(--blue-color);
}

.home-history-body-top {
    width: 100%;
    height: 345px;
    display: flex;
}

.home-history-body-top-one {
    width: 33%;
    display: flex;
    flex-direction: column;
}

.home-history-body-top-one-title {
    width: 426px;
    color: var(--text-color);
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}

.home-history-body-top-two {
    background-color: white;
    width: 33%;
    display: flex;
    flex-direction: column;
    padding-left: 44px;
    padding-top: 69px;
}

.home-history-body-top-two-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 38px;
}

.home-history-body-top-two-content {
    width: 275px;
    margin-top: 14px;
    font-size: 16px;
    line-height: 24px;
    color: var(--grey-color);
}

.home-history-body-top-two-readmore {
    margin-top: 57px;
    width: fit-content;
    cursor: pointer;
    color: var(--blue-color);
    display: flex;
    align-items: center;
    gap: 34px;
}

.home-history-body-top-two-readmore-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 22px;
    letter-spacing: 3px;
}

.home-history-body-top-three {
    background-color: var(--text-color);
    width: 34%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-history-body-top-three-image {
    background-color: var(--dark-grey);
    height: 236px;
    position: relative;
    overflow: hidden;
}

.home-history-body-top-three-label {
    height: calc(100% - 236px);
    color: white;
    background-color: var(--blue-color);
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 44px;
}

.home-history-body-top-three-label-span {
    width: 243px;
}

.home-history-body-top-three-label-div {
    display: flex;
    height: 50%;
    cursor: pointer;
    align-items: flex-end;
}

.home-history-body-top-three-label-div-icon {
    stroke: var(--yellow-color);
}

.home-history-body-bottom {
    width: 100%;
    height: 277px;
    display: flex;
}

.home-history-body-bottom-one {
    background-color: white;
    width: 33%;
    padding-left: 44px;
    padding-top: 31px;
    border-bottom: 1px solid #e7e7e7;
}

.home-history-body-bottom-one-title {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
}

.home-history-body-bottom-one-content {
    width: 86%;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 9px;
}

.home-history-body-bottom-one-readmore {
    margin-top: 26px;
    width: fit-content;
    cursor: pointer;
    color: var(--blue-color);
    display: flex;
    align-items: center;
    gap: 34px;
}

.home-history-body-bottom-one-readmore-text {
    font-size: 13px;
    font-weight: bold;
    line-height: 22px;
    letter-spacing: 3px;
}

.home-history-body-bottom-two {
    width: 67%;
    background: linear-gradient(90deg, #fffbe2 0%, #fffbe2 34.1%, #fff3aa 100%);
    padding: 0 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-history-body-bottom-two-record {
    display: flex;
    flex-direction: column;
}

.home-history-body-bottom-two-record-count {
    color: var(--text-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
}

.home-history-body-bottom-two-record-title {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
}

@media (max-width: 768px) {
    .home-history-section {
        padding: 0px 16px;
    }

    .home-history-body-top {
        height: auto;
        align-items: center;
        flex-direction: column;
    }

    .home-history-body-top-one {
        width: 100%;
        align-items: center;
    }

    .home-history-body-top-one-title {
        width: 100%;
        text-align: center;
        font-size: 22px;
        line-height: 30px;
        margin-top: 14px;
    }

    .home-history-body-top-two {
        margin-top: 28px;
        width: 100%;
        padding: 24px 20px;
    }

    .home-history-body-top-two-title {
        font-size: 20px;
        line-height: 23px;
    }

    .home-history-body-top-two-content {
        margin-top: 14px;
        width: 275px;
        font-size: 16px;
        line-height: 20px;
    }

    .home-history-body-top-two-readmore {
        margin-top: 24px;
        gap: 10px;
    }

    .home-history-body-top-two-readmore-text {
        font-size: 13px;
        font-weight: bold;
        line-height: 22px;
        letter-spacing: 3px;
    }

    .home-history-body-top-three {
        width: 100%;
    }

    .home-history-body-top-three-label {
        height: 94px;
        padding: 24px 20px;
        font-size: 20px;
        font-weight: 600;
        line-height: 23px;
    }

    .home-history-body-top-three-label-div {
        place-self: flex-start;
    }

    .home-history-body-bottom {
        height: auto;
        flex-direction: column;
    }

    .home-history-body-bottom-one {
        width: 100%;
        padding: 24px 20px;
    }

    .home-history-body-bottom-one-title {
        font-size: 20px;
        line-height: 23px;
    }

    .home-history-body-bottom-one-content {
        margin-top: 12px;
        /* width: 266px; */
        font-size: 16px;
        line-height: 20px;
    }

    .home-history-body-bottom-one-readmore {
        margin-top: 24px;
        gap: 10px;
    }

    .home-history-body-bottom-one-readmore-text {
        font-size: 13px;
        font-weight: bold;
        line-height: 22px;
        letter-spacing: 3px;
    }

    .home-history-body-bottom-two {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 24px 20px;
        row-gap: 12px;
        column-gap: 72px;
        justify-items: center;
    }

    .home-history-body-bottom-two-record {
        width: 100px;
        gap: 0;
    }

    .home-history-body-bottom-two-record-count {
        font-size: 32px;
        line-height: 58px;
    }

    .home-history-body-bottom-two-record-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 18px;
    }
}
/*About us*/

.about-main-section {
    padding: 60px 100px;
    background-color: var(--background-color);
}

.about-main-one {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.about-main-one-title {
    width: 777px;
    color: var(--text-color);
    font-size: 38px;
    line-height: 50px;
    text-align: left;
}

.about-main-one-subtitle {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 20px 0;
    /* max-width: 775px; */
    text-align: justify;
}

.about-main-one-stats {
    width: 778px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-content: center;
}

.about-main-one-stats-record {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-main-one-stats-record-count {
    color: var(--blue-color);
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: -1px;
}

.about-main-one-stats-record-title {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
}

.about-main-two {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-main-two-left-image img,
.about-main-three-right img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.196);
}

.about-main-two-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 20px; */
}

.about-main-two-left-title {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 16px;
}

.about-main-two-left-content {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}

.about-main-three-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* padding: 20px; */
}

.about-main-three-title {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 16px;
}

.about-main-three-paraone {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}

.about-mobile-two {
    display: none;
}

.about-main-two-left-image-2.mobile {
    display: none;
}

@media (max-width: 768px) {
    .about-main-section {
        padding: 0 16px;
        padding-top: 40px;
    }

    .about-main-one {
        margin-top: 14px;
    }

    .about-main-one-title {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.527px;
    }

    .about-main-one-subtitle {
        margin: 14px 0 24px 0;
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        text-align: justify;
    }

    .about-main-one-stats {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 16px;
        column-gap: 60px;
        margin-top: 0;
    }

    .about-main-two {
        display: none;
    }

    .about-mobile-two {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 20px;
    }

    .about-main-two-left-title,
    .about-main-three-title {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
        text-align: center;
    }

    .about-main-two-left-image img,
    .about-main-three-right img {
        width: 100%;
        height: 200px;
        max-width: 300px;
    }

    .about-main-two-left-content,
    .about-main-three-paraone {
        font-size: 16px;
        line-height: 20px;
        text-align: justify;
        width: 100%;
    }
}
.about-team-section {
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
}

.about-team-title {
    margin-top: 20px;
    color: var(--text-color);
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    text-align: center;
}

.about-team-paragraph {
    padding: 0 100px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-team-members {
    width: auto;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0 100px;
}

.about-team-img-section {
    width: 100%;
    padding: 0 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-team-left-part img {
    width: 80%;
    height: 500px;
}

.about-team-right-part {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 1024px) {
    .about-team-paragraph,
    .about-team-img-section,
    .about-team-members {
        padding: 0 50px;
    }

    .about-team-left-part img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-team-section {
        padding: 30px 16px;
    }

    .about-team-title {
        width: calc(100% - 32px);
        font-size: 22px;
        line-height: 30px;
        margin-top: 14px;
    }

    .about-team-members {
        flex-direction: column;
        margin-top: 20px;
        padding: 0 16px;
    }

    .about-team-paragraph,
    .about-team-img-section {
        padding: 0 16px;
    }

    .about-team-img-section {
        grid-template-columns: 1fr;
    }

    .about-team-left-part img {
        width: 100%;
    }

    .about-team-right-part {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .about-team-title {
        font-size: 18px;
        line-height: 24px;
    }

    .about-team-paragraph,
    .about-team-right-part {
        font-size: 16px;
        line-height: 24px;
    }

    .about-team-left-part img {
        width: 100%;
    }
}
/*ABOUT US TESTIMONIAL*/
.about-testimonial-section {
    width: 100%;
    background: linear-gradient(90deg, #fffbe2 0%, #fffbe2 34.1%, #fff3aa 100%);
    padding: 60px 100px;
}

/* TESTIMONIAL BLOCK */
.about-testimonial-one {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-testimonial-title {
    color: var(--blue-color);
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    letter-spacing: 4px;
    text-align: center;
}

.about-testimonial-one-subtitle {
    color: var(--text-color);
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}

/* MESSAGE SECTION */
.about-testimonial-one-messages {
    margin-top: 40px;
    display: flex;
    gap: 100px;
}

.about-testimonial-one-messages-left {
    place-self: center;
    display: flex;
    flex-direction: column;
}

.about-testimonial-one-messages-left-message {
    width: 550px;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    text-align: justify;
}

.about-testimonial-one-messages-left-author {
    color: var(--text-color);
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 32px;
    margin-bottom: 3px;
}

.about-testimonial-one-messages-left-role {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

/* IMAGE + ARROWS */
.about-testimonial-one-messages-right {
    display: flex;
    flex-direction: column;
}

.about-testimonial-one-messages-right-arrows {
    margin-top: 40px;
    place-self: flex-end;
    display: flex;
    align-items: center;
}

.about-testimonial-one-messages-right-arrows-previous,
.about-testimonial-one-messages-right-arrows-next {
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.about-testimonial-one-messages-right-arrows-previous {
    transform: rotate(-180deg);
}

.about-testimonial-one-messages-right-arrows-next {
    margin-left: 38px;
}

.about-testimonial-two {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.about-testimonial-two-content {
    color: var(--text-color);
    text-align: center;
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: -1px;
}

.about-testimonial-two-clients {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 0 16px;
    box-sizing: border-box;
}

.about-testimonial-two-clients-client {
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

    .about-testimonial-two-clients-client img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

@media (max-width: 1024px) {
    .about-testimonial-two-clients {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-testimonial-section {
        padding: 40px 16px;
        text-align: center;
    }

    .about-testimonial-one-subtitle {
        font-size: 22px;
        line-height: 30px;
        margin-top: 14px;
    }

    .about-testimonial-one-messages {
        flex-direction: column;
        gap: 24px;
        margin-top: 14px;
    }

    .about-testimonial-one-messages-left-message {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
    }

    .about-testimonial-one-messages-left-author,
    .about-testimonial-one-messages-left-role,
    .about-testimonial-one-messages-right {
        display: none;
    }

    .about-testimonial-two-content {
        font-size: 22px;
        line-height: 30px;
        margin-top: 14px;
    }

    .about-testimonial-two-clients {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-testimonial-two-clients-client {
        height: 90px;
    }
}
.about-touch-section {
    width: 100%;
    padding: 60px 100px;
    background: var(--blue-color);
}

.about-touch-label {
    color: var(--yellow-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 4px;
}

.about-touch-main {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-touch-main-question {
    width: 925px;
    color: white;
    font-size: 36px;
    line-height: 50px;
}

.about-touch-main-button {
    width: 329px;
    height: 54px;
    background-color: var(--yellow-color);
    border: none;
    outline: none;
    border-radius: 4px;
    box-shadow: 0px 4px 10px 0px #0000003d;
    color: var(--text-color);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 3px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

    .about-touch-main-button:hover {
        box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.4);
    }

    .about-touch-main-button:focus {
        border: 2px solid #fff;
        box-shadow: 0px 4px 10px 0px rgba(255, 255, 255, 0.4);
    }

    .about-touch-main-button:active {
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
    }

@media (max-width: 768px) {
    .about-touch-section {
        padding: 24px 16px;
        padding-bottom: 40px;
    }

    .about-touch-label {
        font-size: 15px;
        line-height: 22px;
        letter-spacing: 4px;
    }

    .about-touch-main {
        margin-top: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-touch-main-question {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
    }

    .about-touch-main-button {
        margin-top: 40px;
        width: 100%;
        height: 48px;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 2px;
        gap: 72px;
    }
}

/*PRODUCTS SECTION*/
.products-content-section {
    padding: 60px 100px;
    display: flex;
    background-color: var(--background-color);
    flex-direction: column;
}
.products-details-content-section {
    padding: 60px 100px;
    display: flex;
    background-color: var(--background-color);
    flex-direction: column;
    padding-top: 1px
}

.products-content-header {
    width: 66%;
    color: var(--text-color);
    margin: 20px 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}

.products-content-body {
    /* width: 80%; */
    color: var(--text-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.products-content-grid {
    width: 100%;
    display: grid;
    margin-top: 40px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2px;
    column-gap: 2px;
}

@media (max-width: 768px) {
    .products-content-section {
        padding: 40px 16px;
    }
    .products-details-content-section {
        padding: 40px 16px;
    }
    .products-content-header {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
        letter-spacing: -0.527px;
        margin: 14px 0;
    }

    .products-content-body {
        width: 100%;
        font-size: 16px;
        font-weight: 20px;
        font-weight: 400;
        line-height: normal;
    }

    .products-content-grid {
        margin-top: 40px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.product-details-hero-section {
    padding: 60px 100px;
    padding-bottom: 60px;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
}
.product-details-new-section {
    padding: 60px 100px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    width: 1325px;
    margin: 21px auto;
    padding: 16px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-details-hero-header {
    width: 775px;
    color: var(--text-color);
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    text-align: left;
}

.product-details-hero-content {
    width: 730px;
    color: var(--text-color);
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .product-details-hero-section {
        padding: 40px 16px;
        padding-bottom: 40px;
    }

    .product-detail-hero-label {
        white-space: nowrap;
    }

    .product-details-hero-header {
        width: 355.002px;
        margin-top: 14px;
        font-size: 22px;
        line-height: 30px;
    }

    .product-details-hero-content {
        width: auto;
        margin-top: 14px;
        font-size: 16px;
        line-height: 20px;
    }
}
.product-works-section {
    max-width: 0 100%;
    margin: 0 auto;
    padding: 0 100px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
}

.product-works-header {
    width: 80%;
    color: var(--text-color);
    margin-top: 20px;
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
}

.products-works-body {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

    /* Images inside work cards */
    .products-works-body img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        display: block;
        border-radius: 8px;
        max-width: 100%;
        min-width: 150px;
    }

/* Tablet and smaller laptops */
@media (max-width: 1024px) {
    .products-works-body img {
        width: 100vw;
        height: auto;
    }
}

/* Tablets and mobiles */
@media (max-width: 768px) {
    .product-works-section {
        padding: 0 16px;
        padding-bottom: 40px;
    }

    .product-works-header {
        width: 100%;
        font-size: 22px;
        line-height: 30px;
        margin-top: 14px;
    }

    .products-works-body {
        margin-top: 20px;
        flex-direction: column;
        gap: 40px;
    }

        .products-works-body img {
            width: 100%;
            height: auto;
            min-width: auto;
        }
}
.work-card {
    display: flex;
    flex-direction: column;
}

.work-card-image {
    width: 100%;
}

.work-card-title {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 3px;
    margin-top: 25px;
    margin-bottom: 10px;
    opacity: 0.6;
}

.work-card-body {
    color: var(--text-color);
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
}

@media (max-width: 768px) {
    .work-card-image {
        width: 100%;
        height: 228px;
    }

    .work-card-title {
        margin-top: 20px;
        margin-bottom: 8px;
        font-size: 12px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 2px;
    }

    .work-card-body {
        font-size: 20px;
        font-weight: 600;
        line-height: 23px;
    }
}
.product-details-sub-products-section {
    padding: 0 100px 60px;
    display: flex;
    gap: 30px;
    background-color: var(--background-color);
}

.product-details-sub-products-left {
    margin-top: 2px;
    width: 50%;
    background-color: white;
}

.product-details-sub-products-left-label {
    color: var(--text-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 100px;
    letter-spacing: 4px;
    margin-left: 12px;
}

.product-details-sub-products-left-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left:12px;
}

.product-details-sub-products-left-product {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    margin: 5px 0;
    margin-left: -12px;
    padding: 8px 12px;
    font-family: 'Poppins', sans-serif;
}

    .product-details-sub-products-left-product:hover {
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.16);
        opacity: 1;
    }

    .product-details-sub-products-left-product:focus {
        outline: 1px solid #037881;
        opacity: 1;
    }

    .product-details-sub-products-left-product.selected {
        color: var(--blue-color);
        opacity: 1;
        outline: 1px solid #037881; /* Add the outline */
    }

.product-details-sub-products-right {
    width: 100%;
    padding: 26px;
    display: flex;
    flex-direction: column;
    background-color: white;
    margin-bottom:0px;
}

.product-details-sub-products-right-title {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 600;
    line-height: 52px;
}

.product-details-sub-products-right-content {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    white-space: pre-line;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .product-details-sub-products-section {
        flex-direction: column;
        padding: 0 16px;
        gap: 20px;
    }

    .product-details-sub-products-left-label {
        font-size: 20px;
        font-weight: 600;
        letter-spacing: 3px;
    }

    .product-details-sub-products-left {
        width: 100%;
        margin: 0;
    }

    .product-details-sub-products-left-list {
        margin-top: 14px;
    }

    .product-details-sub-products-left-product {
        width: auto;
        margin: 2px 0;
        font-size: 16px;
        line-height: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .product-details-sub-products-right {
        width: 100%;
        padding: 20px;
        padding-bottom: 45px;
        margin-bottom: 35px;
    }

    .product-details-sub-products-right-title {
        width: auto;
        font-size: 22px;
        line-height: 30px;
    }

    .product-details-sub-products-right-content {
        width: auto;
        font-size: 16px;
        line-height: 20px;
        margin-top: 14px;
    }
}
.product-details-question-section {
    background-image: url(../../../images/contact_us_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 102px;
    display: flex;
    flex-direction: column;
}
    .product-details-question-label {
    color: var(--yellow-color);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 4px;
}

.product-details-question-title {
    /* width: 547px; */
    font-size: 36px;
    font-weight: 600;
    line-height: 50px;
    margin-top: 20px;
    color: white;
}

.product-details-question-list {
    margin-top: 40px;
}

.product-details-question-box {
    display: flex;
    flex-direction: column;
}

.product-details-question-box-value {
    color: white;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    cursor: pointer;
}

    .product-details-question-box-value:focus {
        outline: none;
        background-color: transparent;
    }

.product-details-question-box-divider {
    width: 757px;
    height: 1px;
    opacity: 0.2;
    background: #E7E7E7;
    margin: 27px 0;
}

.product-details-question-box-answer {
    width: 750px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: none;
    animation: question-animation 0.4s;
    margin-bottom: 20px;
}

    .product-details-question-box-answer.open {
        display: block;
    }

@keyframes question-animation {
    0% {
        margin-top: -50px;
    }

    100% {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .product-details-question-section {
        padding: 24px 16px;
    }

    .product-details-question-title {
        width: auto;
        margin-top: 14px;
        font-size: 22px;
        line-height: 30px;
    }

    .product-details-question-list {
        margin-top: 20px;
    }

    .product-details-question-box-value {
        font-size: 16px;
        font-weight: 700;
        line-height: 22px;
    }

    .product-details-question-box-divider {
        width: 100%;
        margin: 16px 0;
    }

    .product-details-question-box-answer {
        width: auto;
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 14px;
    }
}

.product-header {
    text-align: center;
    margin-bottom: 2.5rem;
    font-family: 'Poppins', sans-serif;
}

    .product-header h1 {
        font-size: 24px;
        color: #003366;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .product-header p {
        font-size: 20px;
        color: #003366;
        letter-spacing: 1px;
        line-height: 50px;
    }

.product-image {
    text-align: center;
    margin-bottom: -15px;
}

    .product-image img {
        max-width: 60%;
        height: 80%;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.product-description, .product-applications, .product-specs {
    margin-bottom: 40px;
    margin-top: 1px;
    font-family: 'Poppins', sans-serif;
}

    .product-description h2,
    .product-applications h2,
    .product-specs h2 {
        color: #003366;
        font-size: 21px;
        margin-bottom: 1rem;
        border-bottom: 1px solid #037881;
        padding-bottom: 0.3rem;
        font-family: 'Poppins', sans-serif;
    }

    .product-description p {
        color: #4a5e7a;
        font-size: 1.1rem;
        font-family: 'Poppins', sans-serif;
        line-height: 26px;
    }

    .product-applications ul {
        list-style: disc;
        padding-left: 2rem;
        color: #4a5e7a;
        font-family: 'Poppins', sans-serif;
        line-height: 26px;
    }

    .product-specs table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 1.5rem;
        background-color: #ffffff;
    }

    .product-specs th, .product-specs td {
        border: 1px solid #e0e6ed;
        padding: 0.8rem;
        text-align: left;
        color: #4a5e7a;
        font-family: 'Poppins', sans-serif;
    }

    .product-specs th {
        background-color: #003366;
        color: white;
        font-family: 'Poppins', sans-serif;
    }

.product-actions {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

    .product-actions a {
        display: inline-block;
        background-color: #037881;
        color: white;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        margin: 0.5rem;
        transition: background-color 0.3s;
    }

        .product-actions a:hover {
            background-color: #009ba7;
        }
.product-nav {
    width: 1325px;
    margin: 21px auto;
    padding: 16px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

    .product-nav h3 {
        text-align: center;
        margin-bottom: 16px;
        color: #003366;
        font-size: 25px;
        position: relative;
        display: block;
        padding-bottom: 5px;
        border-bottom: 3px solid #00c4cc;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}

    .product-list li a {
        text-decoration: none;
        color: #4a5e7a;
        font-weight: bold;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        transition: background-color 0.3s, color 0.3s;
    }

        .product-list li a:hover {
            background-color: #00c4cc;
            color: white;
        }

        .product-list li a.active {
            background-color: #003366;
            color: white;
        }

.categories-section {
    width: 1325px;
    margin: 21px auto;
    padding: 16px;
    background-color: #ffffff;
    /* border-radius: 8px;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    margin-bottom: 20px;
}

    .categories-section h3 {
        text-align: center;
        margin-bottom: 16px;
        color: #003366;
        font-size: 20px;
        position: relative;
        display: block;
        padding-bottom: 5px;
        border-bottom: 3px solid #00c4cc;
        width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 15px;
}

    .category-list li a {
        text-decoration: none;
        color: #4a5e7a;
        font-weight: bold;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        transition: background-color 0.3s, color 0.3s;
    }

        .category-list li a:hover {
            background-color: #00c4cc;
            color: white;
        }

        .category-list li a.active {
            background-color: #003366;
            color: white;
        }

@media (max-width: 768px) {
    .product-header h1 {
        font-size: 2rem;
    }

    .product-specs table {
        font-size: 0.9rem;
    }
    .product-list,
    .category-list {
        flex-direction: column;
        align-items: center;
    }
}
/*CAREER*/
.career-content-grid {
    width: 100%;
    display: grid;
    margin-top: 18px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2px;
    column-gap: 2px;
}
    .career-card {
    height: 282px;
    background-color: white;
    border-radius: 4px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin: 7px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #333;
    text-decoration: none;
    position: relative;
}

.career-card-section {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Let it take full space */
}

.career-card-description {
    width: 275px;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-color);
    transition: 0.2s ease-in-out;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.career-card-more {
    margin-top: auto; /* Push to bottom */
    text-align: right;
}

    .career-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        background-color: var(--blue-color);
    }


.career-card-label {
    width: 380px;
    margin-top: 8px;
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: -0.5px;
    transition: 0.2s ease-in-out;
    text-transform: uppercase;
}
    .career-card-label.two-line {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: bold;
        font-size: 18px;
        line-height: 1.4em;
    }
.career-card-more {
    margin-top: 15px;
    text-align: right;
}

.career-card-more-text {
    font-size: 14px;
    color: var(--blue-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.career-card:hover .career-card-more-text {
    color: var(--yellow-color);
}

.career-card-more-icon {
    transition: transform 0.3s ease;
    stroke: var(--blue-color);
}

.career-card:hover .career-card-more-icon {
    transform: translateX(5px);
    stroke: var(--yellow-color);
}
.career-card:hover .career-card-label {
    color: white;
}

.career-card:hover .career-card-description {
    color: white;
}

.career-card:hover .career-card-more {
    color: var(--yellow-color);
}

.career-card-meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin: 10px 0;
    font-size: 14px;
    color: #444;
}

    .career-card-meta i {
        margin-right: 6px;
        color: #0078d7;
    }

.career-card-experience,
.career-card-location {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #171b24;
}
.career-card:hover .career-card-experience {
    color: white;
}
.career-card:hover .career-card-location {
    color: white;
}
.search-container {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    max-width: 800px;
    margin: 20px auto;
    width: 750px;
    padding-left:50px;
}

.search-item {
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}

.search-label {
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-bottom: 5px;
}

.search-item input,
.search-item select {
    padding: 8px;
    width: 275px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#searchBtn, #clearFilters {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 18px;
}

#clearFilters {
    background: #999;
}

#searchBtn i {
    font-size: 16px;
}

/*CAREER DETAILS*/
.card {
    border-radius: 10px;
}

.job-title {
    font-size: 1.5rem;
    color: #343a40;
}

.job-meta i {
    color: var(--blue-color);
    margin-right: 5px;
}

.job-meta div {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

h6 {
    color: #198754;
    margin-top: 15px;
}

.apply-card h5 {
    color: var(--blue-color);
}

.form-control {
    border-radius: 8px;
}

.submit-career {
    background-color: var(--blue-color);
    border: none;
    font-weight: bold;
    padding: 10px;
    color: white;
    margin-top:10px;
}

    .submit-career:hover {
        background-color: #157347;
    }
.apply-card {
    position: sticky;
    height:200px;
}

.hero-section-fancy {
    display: flex;
    flex-wrap: wrap; /* allows stacking on smaller screens */
    min-height: 70vh; /* responsive height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Left text with gradient overlay */
.hero-text {
    flex: 1 1 400px; /* min width 400px, grows with container */
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    background: linear-gradient(to right, #2f296b73, rgba(0,0,0,0));
}

    .hero-text .label-text {
        font-size: 18px;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .hero-text .product-details-hero-header {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-text .product-details-hero-content {
        font-size: 16px;
        line-height: 1.6;
    }

/* Right image using <img> for full visibility */
.hero-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* optional spacing around image */
}

    .hero-image img {
        width: 400px; /* scales to container width */
        height: 400px; /* maintains aspect ratio */
        max-height: 100%; /* doesn’t overflow container */
        object-fit:fill; /* ensures entire image is visible */
        border-radius: 12px; /* optional rounded corners */
    }

/* Responsive: stack image below text on smaller screens */
@media (max-width: 768px) {
    .hero-section-fancy {
        flex-direction: column;
    }

    .hero-text, .hero-image {
        flex: 1 1 100%;
    }

    .hero-text {
        padding: 30px;
    }

    .hero-image {
        padding: 15px;
    }
}
.career-det-hero-section {
    position: relative;
    width: 100%;
    height: 400px; /* adjust as needed */
    background-image: url('../images/careerpage1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; 
}

.career-det-hero-overlay {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.career-label-text {
    color: white;
    font-size: 40px; /* first line “Careers” */
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.career-details-hero-header {
    color: white;
    font-size: 30px; /* second line “Create the future with us” */
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.career-details-hero-content {
    color: white;
    font-size: 18px;
    line-height: 1.6;
}
