body {
    font-family: Poppins;
    margin: 0;
    padding: 0;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navigation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 8%;
    height: 70px;
    transition: height 0.5s ease-out;
}

.navigation-bar.shrunk {
    height: 35px;
}

#ppcImg {
    height: 20px;
    width: auto;
}

.navigation-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
    justify-content: flex-end;
    align-items: center;
}

.navigation-bar ul li a {
    color: #020D0E;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.5px;
    text-decoration: none;
}

.navigation-bar ul li a:hover {
    color: #ddd;
    /* Hover effect */
}

.button-get-started-text {
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.5px;
}

.button-get-started {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border: 1px solid #31BACE;
    background: #31BACE;
    text-decoration: none;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000000;
}

@media screen and (max-width: 1220px) {
    .navigation-bar {
        flex-wrap: wrap;
        position: relative;
        padding: 10px 8%;
    }

    .navigation-bar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        padding: 15px 0;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .navigation-bar ul.active {
        display: flex;
    }

    .navigation-bar ul li {
        text-align: center;
        padding: 10px 0;
    }

    .button-get-started,
    .earth-icon {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

@media screen and (max-width: 390px) {
    .navigation-bar ul {
        gap: 25px;
    }
}

.container-for-background-section {
    height: 50vw;
    width: auto;
    padding-top: 70px;
    position: relative;
}

.background-section {
    height: 49vw;
    background-image: url("images\\PHealth-section-background-img3.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.nav-direction {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    left: 8%;
    top: 140px;
}

.home-nav {
    color: #FFF;
    /* color: aliceblue; */
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 75%;
    text-decoration: none;
}

.home-nav:hover {
    color: #02090A;
}

.current-page-nav {
    color: #02090A;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 75%;
}

.icon-nav {
    width: 16px;
    height: 16px;
}

.PHealth-nav-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    position: absolute;
    left: 8%;
    top: 45%;
}

.PHealth-nav-description-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.PHealth-nav-description-container-header {
    color: #FFF;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.PHealth-nav-description-container-paragragh {
    color: #FFF;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.PHealth-check-now-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.check-now {
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    border:1px solid #FF5B04;
    background: #FF5B04;
    color: #FFF;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    cursor: pointer;
}

.check-now:hover {
    background-color: #f18952;
    transition: 0.5s ease;
}

@media screen and (max-width: 680px) {
    .container-for-background-section {
        height: 115vw;
    }

    .background-section {
        height: 75vw;
        background-image: url("images\\PHealth-section-background-img.png");
        background-position: right;
    }

    .PHealth-nav-container {
        top: 75%;
        gap: 5px;
    }

    .PHealth-nav-description-container-header {
        color: #000;
        font-weight: 700;
        line-height: normal;
    }

    .PHealth-nav-description-container-paragragh {
        color: #000;
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .check-now {
        font-size: 12px;
        font-style: normal;
        font-weight: 800;
        padding: 12px 100px;
    }

    .nav-direction{
        top: 120px;
    }
    .home-nav,
    .current-page-nav {
        font-size: 14px;
    }
}

.essential-eye-checks-container {
    display: flex;
    padding: 4% 8%;
    align-items: flex-start;
    position: relative;
}

.essential-eye-checks-texts-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.essential-eye-checks-header {
    color: #020D0E;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    align-self: stretch;
}

.essential-eye-checks-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    align-self: stretch;
}

.essential-eye-checks-line-1 {
    color: #020D0E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.145px;
    width: 100%;
}

.essential-eye-checks-line-2 {
    color: #7E8282;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    width: 100%;
}

.essential-eye-checks-shapes {
    position: absolute;
    right: 8%;
    top: 20%;
    z-index: -11;
}

@media screen and (max-width: 1080px) {
    .essential-eye-checks-shapes {
        top: 40%;
        width: 20%;
    }
}

@media screen and (max-width: 800px) {
    .essential-eye-checks-texts-container {
        gap: 10px;
    }

    .essential-eye-checks-line-1 {
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .essential-eye-checks-line-2 {
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 18.057px;
        text-transform: capitalize;
    }

    .essential-eye-checks-texts {
        gap: 1px;
    }
}

@media screen and (max-width: 620px) {

    .essential-eye-checks-header {
        font-weight: 700;
    }
}



.news-events {
    display: flex;
    padding: 7% 8% 0;
    justify-content: center;
    align-items: center;
    align-self: stretch;
}

.news-events-inside-frame-1 {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-self: stretch;
    gap: 30px;
}

.news-events-inside-frame-1-1 {
    display: flex;
    align-items: flex-start;
    gap: 10%;
}

.news-events-inside-frame-1-2 {
    align-self: stretch;
    color: #486284;
    text-align: right;

    /* Hyperlink */
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    /* 14.4px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.news-events-inside-frame-1-1-1 {
    display: flex;
    flex-direction: column;
}

.news-events-heading {
    color: #020D0E;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.act-now-container {
    color: #31BACE;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.new-features {
    display: flex;
    /* width: 903px; */
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}

.new-features-1,
.new-features-2,
.new-features-3 {
    display: flex;
    height: 90px;
    /* padding: 0px 30px; */
    align-items: center;
    gap: 20px;
    align-self: stretch;
    border-bottom: 1px solid #B7B7B7;
    opacity: 0;
    transform: translateY(100px);
    transition: transform 1s ease, opacity 1s ease;
}

.new-features-1.visible,
.new-features-2.visible,
.new-features-3.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-icon {
    display: flex;
    height: 27.907px;
    padding: 0.698px 23.023px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 34.884px;
    border: 0.698px solid #020D0E;
}

.news-icon-text {
    color: #020D0E;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    min-width: 74px;
}

.news-texts {
    display: flex;
    width: 500px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.new-feature-heading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.heading-texts {
    color: #486284;

    /* H5 */
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    /* 25.2px */
}

@media screen and (max-width: 1050px) {
    .news-events-inside-frame-1-1 {
        flex-direction: column;
    }

    .news-events-heading,
    .act-now-container {
        width: 100%;
    }


    .heading-texts {
        font-size: 20px;
        font-weight: 600;
    }
}

@media screen and (max-width: 780px) {
    .date-inside-text {
        font-size: 10px;
    }

    .heading-texts {
        font-size: 18px;
        font-weight: 700;
    }

}

@media screen and (max-width: 460px) {
    .date-inside-text {
        font-size: 10px;
    }

    .heading-texts {
        font-size: 16px;
        font-weight: 700;
    }

    .news-icon {
        height: 20px;
        padding: 0.698px 10px;
    }

    .time {
        display: none;
    }

    .news-icon-text {
        font-size: 10px;
        min-width: 65px;
    }

    .new-features-1,
    .new-features-2,
    .new-features-3 {
        height: 75px;
    }
}

@media screen and (max-width: 400px) {

    .heading-texts {
        font-size: 13px;
        font-weight: 800;
    }

}

.empty-space {
    height: 500px;
    align-self: stretch;
    position: relative;
    overflow: hidden;
}

.empty-space-img-1 {
    position: absolute;
    left: 20%;
    top: -10%;
}

.empty-space-img-2 {
    position: absolute;
    right: 10%;
    top: 6%;
}

.empty-space-text {
    position: absolute;
    color: #020D0E;
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    width: 55%;
    left: 8%;
    top: 40%;
    text-indent: 50%;
}

@media screen and (max-width: 1200px) {
    .empty-space-text {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.341px;
        width: 60%;
        text-indent: 20%;
        top: 35%;
    }

    .empty-space-img-1 {
        left: 55%;
        top: -15%;
        filter: blur(20px);
        opacity: 0.8;
    }

    .empty-space-img-2 {
        left: 0%;
        top: 8%;
        filter: blur(20px);
        opacity: 0.8;
    }

}

@media screen and (max-width: 500px) {
    .empty-space {
        height: 326px;
    }

    .empty-space-text {
        font-size: 14px;
        font-weight: 400;
        top: 25%;
        width: 80%;
    }

    .empty-space-img-1 {
        left: 30%;
        top: -23%;
        width: 80%;
        filter: blur(10px);
        opacity: 0.7;
    }

    .empty-space-img-2 {
        left: -20%;
        top: 22%;
        width: 80%;
        filter: blur(10px);
        opacity: 0.7;
    }
}



.backers-container {
    display: flex;
    padding: 0% 8% 8%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 99px;
    align-self: stretch;
}

.backers-heading {
    color: #020D0E;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.backers-icons-container-1 {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

.backers-icons-container-1-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.backers-icons-container-1-2 {
    display: flex;
    width: 138.889px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}



@media screen and (max-width: 1350px) {
    .backers-container {
        gap: 50px;
    }

    .backers-icons-container-1 {
        gap: 100px;
    }
}

@media screen and (max-width: 1050px) {

    .backers-icons-container-1 {
        gap: 60px;
    }
}

@media screen and (max-width: 900px) {
    .backers-icons-container-1 {
        gap: 40px;
    }

    .backers-icons-container-1-2 {
        gap: 50px;
    }
}

@media screen and (max-width: 800px) {
    .backers-icons-container-1 {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 500px) {
    .backers-heading {
        font-weight: 700;
        line-height: normal;
    }

    .backers-icons-container-1-2 {
        transform: scale(0.8);
    }

    .backers-icons-container-1 {
        flex-direction: column;
        justify-content: center;
        gap: 28px;
    }

    .backers-icons-container-1 img {
        width: 40%;
        height: 60%;
    }

    .backers-container {
        gap: 30px;
    }
}


.add-value-container {
    display: flex;
    padding: 4% 8%;
    justify-content: center;
    align-items: flex-end;
    gap: 10%;
    background-color: #31BACE;
}

.add-value-texts-container {
    display: flex;
    width: 50%;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    gap: 30px;
}

.add-value-texts-header {
    color: #FFF;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.add-value-texts {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.145px;
    width: 70%;
}

.add-value-icon-container {
    display: flex;
    align-items: center;
    gap: 97px;
    width: 40%;
}

@media screen and (max-width: 1350px) {

    .add-value-icon-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media screen and (max-width: 780px) {
    .add-value-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .add-value-texts-container {
        width: 100%;
        gap: 10px;
    }

    .add-value-texts-header {
        font-weight: 700;
        line-height: normal;
    }

    .add-value-icon-container {
        display: flex;
        justify-content: center;
        width: 70%;
        gap: 15%;
        padding: 0 10%;
        flex-wrap: unset;
    }

    .add-value-texts {
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        width: 100%;
    }
}

.key-features-container {
    display: flex;
    padding: 4% 8%;
    flex-direction: column;
    align-items: flex-end;
    overflow: hidden;
}

.key-features-inside-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 100px;
}

.key-features-header {
    color: #020D0E;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.container-for-slideshow {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-show {
    width: auto;
    left: 8%;
    bottom: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.slide-1,
.slide-2,
.slide-3 {
    display: flex;
    flex-direction: column;
    background-color: #F3FDFF;
    border-radius: 9.512px;
    width: 300px;
    height: 229px;
    padding: 34px 33px 58px 34px;
    gap: 15px;
    transform: translateX(200px);
    transition: transform 1.5s ease-in-out;
}

.slide-1.visible,
.slide-2.visible,
.slide-3.visible {
    opacity: 1;
    transform: translateX(0);
}


.slide-1 h2,
.slide-2 h2,
.slide-3 h2 {
    color: #486284;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    margin: 0;
}

.slide-1 h1,
.slide-2 h1,
.slide-3 h1 {
    color: #486284;
    font-family: Poppins;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin: 0;
}

.slide-1 p,
.slide-2 p,
.slide-3 p {
    color: #8CA2C0;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.145px;
    margin: 0;
}


@media screen and (max-width: 1470px) {

    .slide-show {
        flex-direction: row;
        flex-wrap: wrap;
    }
}


@media screen and (max-width: 500px) {
    .key-features-inside-container {
        gap: 30px;
    }

    .slide-1,
    .slide-2,
    .slide-3 {
        width: 200px;
        height: 200px;
        padding: 15px 25px 31px 25px;
        gap: 10px;
        transform: translateY(150px);
        transition: transform 1s ease-in-out;
    }

    .slide-1.visible,
    .slide-2.visible,
    .slide-3.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-1 h2,
    .slide-2 h2,
    .slide-3 h2 {
        font-size: 23px;
    }

    .slide-1 h1,
    .slide-2 h1,
    .slide-3 h1 {
        font-size: 25px;
    }

    .slide-1 p,
    .slide-2 p,
    .slide-3 p {
        font-size: 13px;
    }

    .slide-1 a,
    .slide-2 a,
    .slide-3 a {
        font-size: 12px;
    }

}

.panasonic-container {
    display: inline-flex;
    height: 582px;
    width: 100%;
    align-items: center;
    flex-shrink: 0;
    background: linear-gradient(0deg, rgba(49, 186, 206, 0.11) 0%, rgba(255, 255, 255, 0.07) 100%);
    backdrop-filter: blur(8px);
}

.panasonic-inside-container {
    padding: 8%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}

.panasonic-header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.panasonic-head-1 {
    width: 60%;
    color: #020D0E;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.panasonic-head-2 {
    width: 60%;
    color: #020D0E;
    font-family: Poppins;
    font-size: clamp(16px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.panasonic-description-container {
    width: 100%;
    display: inline-flex;
    align-items: flex-start;
    gap: 10%;
}

.panasonic-inside-description-container-1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.panasonic-logo-container {
    padding-bottom: 10px;
}

.panasonic-description-1 {
    color: #020D0E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.145px;
}

.panasonic-description-2,
.panasonic-features-link,
.ethical-standards-link {
    color: #7E8282;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
}

.panasonic-description-2 a,
.panasonic-features-link a,
.ethical-standards-link a {
    color: #7E8282;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 120%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.panasonic-description-2 a:hover,
.panasonic-features-link a:hover,
.ethical-standards-link a:hover {
    color: #000000;
}

.panasonic-inside-description-container-2 {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.panasonic-features {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    transform: translateY(100px);
    transition: transform 1s ease, opacity 1s ease;
}

.panasonic-features.visible {
    opacity: 1;
    transform: translateY(0);
}

.panasonic-features-number {
    color: var(--www-apple-com-shark, #1D1D1F);
    font-family: Poppins;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.panasonic-features-header {
    color: var(--www-apple-com-wedgewood, #4E949F);
    font-family: Poppins;
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

@media screen and (max-width: 650px) {
    .panasonic-container {
        height: 480px;

    }

    .panasonic-description-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .panasonic-inside-container {
        gap: 30px;
    }

    .panasonic-inside-description-container-1 {
        width: 100%;
        gap: 5px;
    }

    .panasonic-inside-description-container-2 {
        width: 100%;
    }

    .panasonic-head-1 {
        font-weight: 700;
        line-height: normal;
        width: 100%;
    }

    .panasonic-head-2 {
        font-weight: 500;
        line-height: 120%;
        width: 100%;
    }

    .panasonic-logo-container img {
        width: 70%;
        height: 70%;
    }

    .panasonic-description-1 {
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .panasonic-features-number {
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.341px;
    }

    .panasonic-features-header {
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
    }
}

.ethical-standards-container {
    height: auto;
    display: flex;
    align-items: flex-start;
    padding: 4% 8%;
}

.ethical-standards-inside-container {
    width: 60%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.ethical-standards-header {
    color: #020D0E;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding-bottom: 20px;
}

.ethical-standards-description {
    color: #020D0E;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.145px;
}

@media screen and (max-width: 650px) {
    .ethical-standards-inside-container {
        width: 100%;
    }

    .ethical-standards-header {
        font-weight: 700;
        line-height: normal;
        padding-bottom: 0;
    }

    .ethical-standards-description {
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

    .ethical-standards-link,
    .ethical-standards-link a {
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 18.057px;
        text-transform: capitalize;
    }
}

.download-app-container {
    height: 403px;
    width: 100%;
    position: relative;
    background: #F3FDFF;
    overflow: hidden;
}

.download-app-inside-container {
    position: absolute;
    left: 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    gap: 10px;
    top: 25%;

}

.download-app-header {
    color: #000;
    font-family: Poppins;
    font-size: clamp(25px, 4vw, 61px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    padding-bottom: 20px;
}

.download-app-description {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    width: 80%;
}

.download-app-link {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.app-img-container {
    position: absolute;
    right: 8%;
    bottom: -10px;
}

@media screen and (max-width: 1220px) {
    .app-img-container {
        display: none;
    }

    .download-app-inside-container {
        width: 84%;
        top: 0;
        left: 0;
        padding: 8%;
    }

    .download-app-description {
        width: 100%;
    }

}

@media screen and (max-width: 650px) {
    .download-app-container {
        height: 250px;
    }

    .download-app-header {
        font-weight: 700;
        line-height: normal;
        padding-bottom: 0;
    }

    .download-app-description {
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
    }

}





.footer {
    height: 256px;
    width: 100%;
    background-color: #F6F6F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-inside-frame {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-nav-bar {
    display: flex;
    width: 86%;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 0 7%;
}

.footer-nav-bar a {
    color: #020D0E;
    text-align: center;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.5px;
    text-decoration: none;
}

.footer-nav-bar a:hover {
    color: #31BACE;
}

.social-media-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-media-nav a:hover svg path {
    fill: #31BACE;
}

.footer-note {
    align-self: stretch;
    color: #C0C0C0;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 1050px) {
    .footer-nav-bar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer {
        height: 300px;
    }
}

@media screen and (max-width: 500px) {
    .footer-nav-bar {
        gap: 20px;
    }

    .footer-nav-bar a {
        font-size: 13px;
    }
}