body {
    background-color: #fff;
    color: #D9D9D9;
    margin: 0px;
    padding: 0px;
    min-width: 340px;
}

body * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Funnel Display', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Funnel Display', sans-serif;
    color: #14038F;
    font-weight: 600;
}

h1 {
    font-size: 48px;
    color: #fff;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
    color: #0157D7;
}

p,
li,
a {
    font-family: 'Funnel Display', sans-serif;
    color: #14038F;
    font-size: 16px;
    text-decoration: none;
}

a {
    cursor: pointer;
    opacity: 0.8;
}

a:hover {
    opacity: 1;
}

p.sub-heading {
    font-size: 16px;
    font-weight: 300;
    color: #0157D7;
}

.button-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

button,
.btn {
    background: linear-gradient(93.2deg, #0C42A6 42.31%, rgba(25, 166, 232, 0.35) 100%);
    color: #ffffff;
    border: none;
    padding: 10px 16px;
    font-family: 'Funnel Display', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.170);
    cursor: pointer;
    font-size: 16px;
    opacity: 1;
}

button.outline,
.btn.outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.240);
}

header {
    padding: 25px;
    position: fixed;
    top: 0px;
    width: 100%;
    background-color: transparent;
    left: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: transparent;
    transition: all 0.4s ease-in-out;
}

header.active {
    background: linear-gradient(178deg, #021e73, #031d71c4);
    transition: all 0.4s ease-in-out;
}

header .logo-container {
    width: 200px;
    max-height: 47px;
    padding: 10px;
    /*background-color: #fff;*/
}

header .logo-container img {
    width: 100%;
    height: auto;
}

header .navigation-menu ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header .navigation-menu li {
    position: relative;
}

header .navigation-menu li a:after {
    width: 0%;
    height: 2px;
    background-color: #fff;
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0px;
}

header .navigation-menu li.active a:after,
header .navigation-menu li:hover a:after {
    transition: all 0.4s ease-in-out;
    width: 100%;
}

header .navigation-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

header .hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    gap: 5px;
}

header .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
}

header .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

header .hamburger.active span:nth-child(2) {
    opacity: 0;
}

header .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -4px);
}

section {
    overflow: hidden;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.image-container {
    display: flex;
}

.hero-section {
    padding: 50px;
    padding-top: 100px;
    padding-bottom: 0px;
    text-align: center;
    background-color: #032781;
    background-image: url('../images/hero-background.svg');
    background-position: center;
    background-size: cover;
    text-align: left;
    position: relative;
    z-index: 0;
}

.hero-section:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background: linear-gradient(126.99deg, #080E57 0%, #012077 25.96%, #083A9B 54.33%, rgba(12, 66, 166, 0.84) 71.36%, #12BEFA 100%);
}

.hero-section .hero-bg-image {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    z-index: 2;
    position: relative;
}

.hero-section .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 50%;
    margin-top: 30px;
}

.hero-section .text-container p.sub-heading {
    color: rgb(255, 255, 255);
}

.hero-section .image-container {
    display: flex;
    width: 50%;
    align-items: flex-end;
    justify-content: flex-end;
}

.hero-section .image-container img {
    object-fit: contain;
    height: 100%;
    max-width: 100%;
}

.hero-section p.description {
    color: rgba(255, 255, 255, 0.70);
}

.stat-count {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 50px;
    padding-top: 27px;
    margin-bottom: 35px;
    border-top: 1px solid rgb(39, 184, 245, 0.2);
}

.stat-count .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-item span {
    font-size: 36px;
    color: rgb(255, 255, 255);
}

.stat-item span:last-child {
    font-size: 16px;
    color: rgb(255, 255, 255, 0.7);
}

.about-section .container>div {
    width: 50%;
}

.about-section .text-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0px;
}

.about-content {
    margin-top: 20px;
    padding-left: 50px;
    position: relative;
    display: flex;
    align-self: flex-start;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.about-content:before,
.about-content:after {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgb(1, 87, 215, 0.20);
}

.about-content:after {
    height: 60px;
    position: absolute;
    top: var(--about-marker-top, 0px);
    background-color: rgb(1, 87, 215);
    will-change: top;
}

.about-content .about-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    padding-right: 20px;
}

.about-section .image-container {
    margin-right: -10%;
    width: calc(60% - 40px);
    margin-left: 40px;
}

.about-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* service section */
.service-section {
    background: linear-gradient(100.73deg, rgba(190, 234, 255, 0.13) -0.95%, #B6E8FF 100.34%);
    padding-top: 60px;
    padding-bottom: 60px;
}

.service-section .text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    margin-right: auto;
    justify-content: flex-start;
    gap: 30px;
}

.service-section .container>.text-container {
    max-width: 55%;
}

.card-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    --card-count: 3;
    margin-top: 50px;
    width: 100%;
}

.service-page .card-group {
    --card-count: 3;
}

.service-page .card-group .card-item {
    align-items: center;
    min-height: 240px;
}

.service-page .service-section .card-group .text-container {
    align-items: center;
    text-align: center;
    margin-top: 15px;
}

.card-group .card-item {
    width: calc((100% / var(--card-count)) - (30px * (var(--card-count) - 1)));
    perspective: 1000px;
}

.card-item .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-item:hover .card-inner {
    transform: rotateY(180deg);
}

.card-item.plain-card .card-front {
    background: transparent;
    border: 0px;
}

.card-item.no-flip:hover .card-inner {
    transform: none;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    border: 1px solid #B6E8FF;
    background: linear-gradient(122.09deg, rgba(118, 204, 244, 0.13) 0%, rgba(113, 190, 225, 0.13) 101.33%);
    padding: 16px;
}

.no-flip .card-front {
    position: relative;
}

.card-back {
    transform: rotateY(180deg);
    justify-content: center;
    display: flex;
    justify-content: flex-start;
}

.card-back h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-back ul {
    list-style: disc;
    margin-left: 25px !important;
    padding: 0;
    margin: 0;
    width: calc(100% - 25px);
}

.card-back ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(182, 232, 255, 0.3);
    color: #14038F;
    font-size: 16px;
}

.card-back ul li:last-child {
    border-bottom: none;
}

.card-item .icon {
    background: linear-gradient(133.53deg, rgba(234, 231, 255, 0.7) 0%, rgba(136, 217, 255, 0.7) 97.56%);
    width: 30px;
    height: 30px;
    padding: 6px;
}

.card-item .icon img {
    width: 100%;
    height: 100%;
}

.card-item h3 {
    font-size: 24px;
    text-align: left;
}


/* team section */
.team-section .container {
    max-width: 100%;
    align-items: unset;
    flex-wrap: wrap;
}

.team-section .left-card {
    background: linear-gradient(126.99deg, #080E57 0%, #012077 25.96%, #083A9B 54.33%, rgba(12, 66, 166, 0.84) 71.36%, #12BEFA 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    /* align-self: flex-start; */
    position: relative;
    width: 600px;
    max-width: 50%;
}

.team-section h3 {
    font-size: 20px;
}

.team-section .left-card h3,
.team-section .left-card p {
    color: #fff;
}

.team-section h3~p {
    margin-bottom: 30px;
}


.team-section .right-card h3~p {
    margin-bottom: 18px;
}

.card-bottom-footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    /* display: none; */
    margin-left: auto;
}

.card-bottom-footer img {
    width: calc(60% + 60px);
    margin-right: -60px;
    margin-bottom: -60px;
    object-fit: contain;
    margin-left: auto;
}

.left-card_bg {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0.15;
    width: 90%;
    object-fit: cover;
    z-index: 0;
}

.left-card>*:not(img) {
    z-index: 2;
}

.right-card {
    display: flex;
    max-width: calc(100% - 300px);
    flex-direction: row;
    flex-wrap: wrap;
    padding-right: 30px;
    flex: 1;
}

.right-card .text-container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
    gap: 15px;
}

.right-card .team-member {
    width: 50%;
    border: 1px solid #27B8F5;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.right-card .card-bottom-footer img {
    width: calc(50% + 30px);
    margin-right: -30px;
    margin-bottom: -30px;
    object-fit: contain;
}

.right-card .team-member~.team-member {
    border-right: 0px;
    margin-right: -30px;
    width: calc(50% + 30px);
    padding-right: 30px;
}

.right-card .team-member~.team-member .card-bottom-footer img {
    width: calc(50%);
    margin-right: 0px;
    margin-bottom: -30px;
    object-fit: contain;
}

/* contact banner */

.contact-card {
    background-image: url('../images/contact_bg.png');
    background-size: cover;
    padding: 60px 15px;
}

.contact-card .contact-card-content {
    background: linear-gradient(126.99deg, #080E57 0%, #012077 25.96%, #083A9B 54.33%, rgba(12, 66, 166, 0.84) 71.36%, #12BEFA 100%);
    display: flex;
    flex-direction: row;
    width: 90%;
}

.contact-card-content .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    max-width: 60%;
    margin-right: auto;
}

.contact-card-content .text-container h3~h3 {
    display: none;
}

.contact-card-content .text-container .button-group {
    margin-top: 60px;
}

.contact-card-content .text-container h3 {
    font-size: 48px;
    color: #fff;
}

.contact-card-content .text-container p {
    color: #ffffff;
    font-weight: 300;
}

.contact-card-content .image-container {
    position: relative;
    margin-right: 30px;
    flex: 1;
}

.contact-card-content .image-container img {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    max-width: 100%;
    object-fit: contain;
}

/* Footer section */
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer .footer-top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px 10%;
    background: #E2F7FF;
}

.footer-top .footer-logo-container {
    height: 30px;
}

.footer-top .footer-logo-container img {
    height: 100%;
    width: auto;
}

.footer-top .footer-contact {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-top .footer-contact>* {
    color: #0157D7;
}

.footer-bottom {
    padding: 20px 10%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: linear-gradient(126.99deg, #080E57 0%, #012077 25.96%, #083A9B 54.33%, rgba(12, 66, 166, 0.84) 71.36%, #12BEFA 100%);
    position: relative;
    gap: 10%;
    padding-top: 50px;
}

.footer-bottom * {
    color: #ffffff;
    font-weight: 300;
}

.footer-bottom .footer-bg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer-about {
    width: 350px;
    max-width: 100%;
    z-index: 2;
}

.social-links {
    margin-top: 40px;
    z-index: 2;
}

.footer-links {
    z-index: 2;
}

.footer-links ul {
    list-style: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.copyright-container {
    width: 100%;
    margin-top: 60px;
    z-index: 2;
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #14038F;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #14038F;
}

.modal-subtitle {
    color: #0157D7;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #14038F;
    font-weight: 500;
    font-size: 14px;
}

.form-group label > span {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #B6E8FF;
    border-radius: 4px;
    font-family: 'Funnel Display', sans-serif;
    font-size: 16px;
    color: #14038F;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0157D7;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: linear-gradient(93.2deg, #0C42A6 42.31%, rgba(25, 166, 232, 0.35) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.170);
    padding: 14px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
}

.right-card-mobile {
    display: none;
}

.left-card>img {
    display: none;
}

.mob-text {
    display: none;
}

.service-page .hero-section,
.about-page .hero-section {
    height: 300px;
    overflow: hidden;
}

.text-media-section {
    padding: 60px 0px;
}

.text-media-section .image-container {
    width: 30%;
    padding-right: 80px;
    padding-bottom: 50px;
    position: relative;
}

.text-media-section .image-container img {
    width: 100%;
    object-fit: cover;
}

.text-media-section .image-container .square-shape {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 30px;
    bottom: 0px;
    background: linear-gradient(126.99deg, #080E57 0%, #012077 25.96%, #083A9B 54.33%, rgba(12, 66, 166, 0.84) 71.36%, #12BEFA 100%);
}

.text-media-section .text-container {
    max-width: 70%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.key-points {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 700px;
    max-width: 100%;
}

.key-points .point-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}

.key-points .point-item .point-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.point-content h3 {
    color: #14038F;
    font-size: 20px;
}

.result-section {
    background: conic-gradient(from 107.85deg at 30.42% 90.53%, #DCF4FF 0deg, #E9F8FF 93.46deg, #EFFAFF 195.58deg, rgba(255, 255, 255, 0.84) 256.91deg, rgba(18, 190, 250, 0.04) 360deg);
    background: url('../images/impact-bg.svg');
    background-size: cover;
    background-color: #B6E8FF;
    padding: 60px 0px;
    display: none;
}

.result-section .container {
    justify-content: flex-start;
}

.result-section .container .divider {
    width: 100%;
    height: 1px;
    background-color: #0C42A6;
    margin: 40px 0px;
}

.impact-text-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.impact-text-content h3 {
    color: #14038F;
    font-size: 32px;
}

.impact-text-content h3~p {
    margin-bottom: 30px;
}

.result-stat {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding-left: 50px;
    flex: 1;
}

.result-stat .result-stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 180px;
}

.result-stat-item p:first-child {
    font-size: 64px;
    font-weight: 300;
}

.result-stat-item p:last-child {
    color: #27B8F5;
    font-size: 24px;
    font-weight: 500;
}

.about-page .service-section.company-about {
    background: #ffffff;
}

@media only screen and (max-width: 1500px) {
    .team-section .left-card {
        width: 600px;
        max-width: 35%;
    }

    .right-card .card-bottom-footer img {
        width: calc(38% + 30px);
    }
}

@media only screen and (max-width: 1200px) {
    .text-media-section .image-container {
        width: 40%;
    }

    .text-media-section .text-container {
        max-width: 60%;
    }
}

@media only screen and (max-width: 1024px) {
    h1 {
        font-size: 40px !important;
    }

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

    h3 {
        font-size: 28px !important;
    }

    .hero-section {
        padding-left: 0px;
        padding-right: 0px;
    }

    .hero-section .container>div {
        width: 40%;
    }

    .hero-section .container>div:first-child {
        width: 60%;
    }

    .stat-count {
        gap: 30px;
    }

    .about-section .container>div {
        width: 70%;
    }

    .about-section .container>div:last-child {
        width: 30%;
    }

    .card-group {
        --card-count: 2;
    }

    .service-page .card-group {
        --card-count: 2;
    }

    .team-section .left-card {
        width: 100%;
        max-width: unset;
    }

    .right-card {
        max-width: 100%;
    }

    .right-card:not(.right-card-mobile)>.text-container {
        display: none;
    }

    .right-card-mobile {
        display: flex;
    }

    .left-card>p:last-of-type {
        max-width: 75%;
    }

    .left-card>img {
        position: absolute;
        display: block;
        right: 0px;
        bottom: 0px;
        width: 30%;
    }

    .left-card .card-bottom-footer img {
        display: none;
    }

    .contact-card-content .text-container {
        max-width: 100%;
    }

    .contact-card-content .text-container h3 {
        display: none;
    }

    .contact-card-content .text-container h3~h3 {
        display: block;
        font-size: 28px;
    }

    .contact-card-content .image-container {
        margin-right: -10px;
    }

    .impact-text-content {
        width: 100%;
    }

    .result-stat {
        padding-left: 0px;
        margin-top: 30px;
    }

    .text-media-section .image-container {
        width: 100%;
        max-height: 350px;
        padding-right: 50px;
    }

    .text-media-section .text-container {
        max-width: 100%;
    }

    .text-media-section .image-container .square-shape {
        right: 0px;
    }

    .contact-card-content .image-container {
        display: none;
    }

    .footer-top {
        gap: 20px;
    }

}

@media only screen and (max-width: 768px) {
    h1 {
        font-size: 32px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    .service-page .hero-section,
    .about-page .hero-section {
        height: 250px;
    }

    .hero-section .container>div:last-child {
        width: 40%;
        position: absolute;
        right: 0px;
        bottom: 0px;
        opacity: 0.1;
        pointer-events: none;
    }

    .hero-section .container>div:first-child {
        width: 100%;
    }

    .about-section .container>div {
        width: 80%;
    }

    .about-section .container>div:last-child {
        width: 20%;
    }

    .service-section .container>.text-container {
        max-width: 100%;
    }

    .left-card>p:last-of-type {
        max-width: 100%;
    }

    .left-card>img {
        display: none;
    }

    .left-card .card-bottom-footer img {
        display: block;
    }

    .right-card {
        padding-right: 0px;
    }

    .right-card .team-member {
        width: 100%;
        padding-right: 30px;
    }

    .right-card .team-member~.team-member {
        width: 100%;
        margin-right: 0px;
        padding-right: 30px;
    }

    .right-card .team-member img {
        margin-right: 0px !important;
    }

    .contact-card-content .image-container img {
        width: 100%;
        height: auto;
        top: unset;
        bottom: 0px;
    }

    .contact-card-content .text-container {
        max-width: 100%;
    }

    .contact-card-content {
        flex-wrap: wrap;
    }

    .footer-bottom {
        gap: 30px;
    }

    .copyright-container {
        margin-top: 20px;
        text-align: center;
    }

    .footer-top .footer-contact {
        gap: 10px;
    }
}

@media only screen and (max-width: 578px) {
    .contact-card-content .mob-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px;

    }

    .contact-card-content .mob-text>* {
        display: block;
        color: #fff;
    }

    .contact-card-content .text-container>h3,
    .contact-card-content .text-container>p {
        display: none !important;
    }

    .contact-card-content .image-container img {
        width: 80%;
    }

    .team-section .left-card {
        padding: 30px;
    }

    .card-bottom-footer img {
        width: calc(40% + 30px);
        margin-right: -30px;
        margin-bottom: -30px;
        object-fit: contain;
    }
}

@media only screen and (max-width: 600px) {
    header .hamburger {
        display: flex;
    }

    header .navigation-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(178deg, #021e73, #031d71);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 1000;
    }

    header .navigation-menu.active {
        right: 0;
    }

    header .navigation-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    header .navigation-menu ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header .navigation-menu ul li a {
        display: block;
        padding: 20px 30px;
        width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    .about-section .container>div:last-child {
        width: calc(100% + 40px);
        margin-right: -20px;
        margin-left: -20px;
        max-height: 200px;
        overflow: hidden;
    }

    .card-group {
        --card-count: 1;
    }

    .service-page .card-group {
        --card-count: 1;
    }

    .contact-card {
        padding: 30px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .contact-card-content .text-container {
        max-width: 100%;
    }

    .contact-card-content .text-container .button-group {
        margin-top: 10px;
    }

    .contact-card-content .image-container {
        display: none;
    }

    .about-section .container>div {
        width: 90%;
    }
}

@media only screen and (max-width:340px) {
    header .navigation-menu {
        height: 100%;
    }
}

/* partner section */
section.partner-section {
    background: linear-gradient(100.73deg, rgba(190, 234, 255, 0.13) -0.95%, #B6E8FF 100.34%);
}
section.partner-section .text-container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 50px 0px;
    max-width: 800px;
}

.partner-section .container {
    justify-content: flex-start;
}

.partner-section .imgage-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.partner-section .image-container img {
    width: 100%;
    height: auto;
    padding-left: 30px;
    object-fit: cover;
}

@media only screen and (min-width: 601px) {
    section.partner-section .image-container {
        min-height: 450px;
    }

    .partner-section .image-container img {
        position: absolute;
        bottom: 0%;
        left: 50%;
        transform: translate(-50%, 0%);
        height: 100%;
    }

    .partner-section .image-container {
        width: 56%;
        margin-right: -12%;
        position: relative;
    }

}

@media only screen and (max-width: 600px) {
    section.partner-section .container {
        flex-direction: column-reverse;
    }

    section.partner-section .text-container {
        width: 100%;
        padding-top: 20px;
    }

    section.partner-section .image-container {
        max-width: 120%;
        margin-top: 0px;
        margin-bottom: 30px;
        padding: 0px;
        overflow: hidden;
        margin-right: -6%;
        margin-left: -6%;
    }

    .partner-section .image-container img {
        padding: 0px;
    }

    section.partner-section .text-container {
        max-width: 100%;
    }
}

/* @media only screen and (max-width: 1024px) { */
    .right-card .team-member h3 {
        width: 100%;
    }

    .right-card .team-member h3 ~ p {
        width: 100%;
    }

    /* .right-card .team-member p + p {
        max-width: 80%;
        margin-bottom: auto;
        flex: 1;
        padding-right: 10px;
        min-width: 320px;
    } */

    /* .right-card .team-member .card-bottom-footer {
        width: 200px;
        max-width: 100%;
    }


    .right-card .team-member {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .right-card .card-bottom-footer img {
        margin-right: -30px;
    }

    .right-card .card-bottom-footer img {
        width: 100%;
    } */

/* } */

.about-page .card-item .icon {
    display: none;
}
/* 
.about-page .service-section:not(.company-about) .container>.text-container {
    max-width: 80%;
} */


/* partner video section */
video {
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
}

section.partner-section {
    position: relative;
    padding: 5% 0px;
}

section.partner-section:after {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: linear-gradient(126.99deg, #080E57 0%, #012077 25.96%, #083A9B 54.33%, rgba(12, 66, 166, 0.84) 71.36%, #12BEFA 100%);
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.partner-section .container {
    position: relative;
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translate(-50%, -50%); */
    /* width: 100%; */
    z-index: 1;
}

section.partner-section .text-container {
    align-items: center;
    justify-content: center;
    margin: auto;
}

section.partner-section .text-container > * {
    color: #fff !important;
    text-shadow: -1px 4px 12px #00000059;
    text-align: center;
}