@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@400;500;700&display=swap');

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

body {
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
    position: relative;
    background-color: black;
}

.loader-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.959);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.5s, visibility 2s;
}

.loader-box-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    --c: linear-gradient(#ffffff 0 0);
    --r1: radial-gradient(farthest-side at bottom, #ffffff 93%, #ffffff00);
    --r2: radial-gradient(farthest-side at top, #ffffff 93%, #ffffff00);
    background:
        var(--c), var(--r1), var(--r2),
        var(--c), var(--r1), var(--r2),
        var(--c), var(--r1), var(--r2);
    background-repeat: no-repeat;
    animation: l2 1s infinite alternate;
}

@keyframes l2 {

    0%,
    25% {
        background-size: 8px 0, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(50% - 2px), 0 calc(50% + 2px), 50% 50%, 50% calc(50% - 2px), 50% calc(50% + 2px), 100% 50%, 100% calc(50% - 2px), 100% calc(50% + 2px);
    }

    50% {
        background-size: 8px 100%, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(0% - 2px), 0 calc(100% + 2px), 50% 50%, 50% calc(50% - 2px), 50% calc(50% + 2px), 100% 50%, 100% calc(50% - 2px), 100% calc(50% + 2px);
    }

    75% {
        background-size: 8px 100%, 8px 4px, 8px 4px, 8px 100%, 8px 4px, 8px 4px, 8px 0, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(0% - 2px), 0 calc(100% + 2px), 50% 50%, 50% calc(0% - 2px), 50% calc(100% + 2px), 100% 50%, 100% calc(50% - 2px), 100% calc(50% + 2px);
    }

    95%,
    100% {
        background-size: 8px 100%, 8px 4px, 8px 4px, 8px 100%, 8px 4px, 8px 4px, 8px 100%, 8px 4px, 8px 4px;
        background-position: 0 50%, 0 calc(0% - 2px), 0 calc(100% + 2px), 50% 50%, 50% calc(0% - 2px), 50% calc(100% + 2px), 100% 50%, 100% calc(0% - 2px), 100% calc(100% + 2px);
    }
}

#header-main-page {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(130deg, black, black, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.6), black);
}

#header {
    width: 100vw;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 1000;
}

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

#navbar-list-item {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

#navbar-list-item li {
    margin-right: 15px;
    position: relative;
}

#navbar-list-item li a {
    text-decoration: none;
    color: rgb(174, 174, 174);
    font-size: 1.2rem;
    letter-spacing: 1px;
    display: block;
}

#navbar-list-item li a:hover {
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    z-index: 1;
    top: 8vh;
    left: 100%;
    transform: translateX(-80%);
    width: 800px;
    padding: 30px;
    border-radius: 20px;
    filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.641));
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.dropdown-grid div {
    text-align: center;/
}

.dropdown-grid a {
    padding: 5px 0;
    display: block;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease-in;
}

.dropdown-grid a:hover {
    border-bottom: 2px solid white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger i {
    font-size: 2rem;
    color: white;
}

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


/* this will show error */
.navbar.active #navbar-list-item {
    display: block;
}

@media (max-width:1150px) {
    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dropdown-content {
        width: 551px;
    }

    .hamburger {
        display: block;
    }

    #navbar-list-item {
        display: none;
        background-color: black;
        flex-direction: column;
        width: 100vw;
        height: auto;
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 999;
        padding: 20px;
    }

    #navbar-list-item li {
        margin: 10px 0px 17px;
        transition: all 0.3s ease-in;
    }

    .dropdown-content {
        position: relative;
        top: 10px;
        left: 40%;
        width: 320px;
        box-shadow: none;
        margin: 10px 0px 0px 20px;
        padding: 10px;
        border-radius: 10px;
    }

}

@media (max-width: 900px) {
    #navbar-list-item {
        display: none;
        flex-direction: column;
        width: 100vw;
        height: auto;
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 999;
        padding: 20px;
    }

    .hamburger {
        display: block;
    }

}


@media screen and (max-width:570px) {
    #header {
        justify-content: space-around;
    }

    #navbar-list-item {
        display: none;
        background-color: black;
        flex-direction: column;
        width: 100vw;
        height: auto;
        position: absolute;
        top: 10vh;
        left: 0;
        z-index: 999;
        padding: 20px;
    }

    #navbar-list-item li a {
        font-size: 1rem;
    }

    #navbar-list-item li {
        margin: 2px 0px 17px;
        transition: all 0.3s ease-in;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .dropdown-content {
        position: relative;
        top: 10px;
        left: 75%;
        width: 320px;
        box-shadow: none;
        margin: 10px 0px 0px 20px;
        padding: 10px;
        border-radius: 10px;
    }


    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dropdown-grid a {
        font-size: 0.5rem;
    }
}


.about-us-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-image: url("../images/healtcare-image\ \(1\).png");
    background-size: 1650px 920px;
    background-position: center;
    background-repeat: no-repeat;
    animation: animateBack 10s forwards;
}

@keyframes animateBack {
    0% {

        background-size: 1650px 920px;
    }

    50% {
        background-size: 1720px 970px;
    }

    100% {
        background-size: 1650px 920px;
    }

}

.about-us-container-content {
    position: relative;
    z-index: 2;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: end;
    color: white;
    background-color: rgba(0, 0, 0, 0.525);
}

.about-us-container-content .left-heading {
    width: 50%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
}

.about-us-container-content .left-heading p {
    font-size: 1.5rem;
    font-weight: 100;
    color: #d1d1d1;
    border-left: 2px solid #d1d1d1;
    padding-left: 5px;
    font-weight: lighter;
}

.about-us-container-content .right-subheading {
    width: 40%;
    height: 80%;
    display: flex;
    align-items: center;
}

.about-us-container-content .left-heading h1 {
    font-size: 4.5rem;
    letter-spacing: 2.5px;
    line-height: 1.5em;
    font-family: 'Arial', sans-serif;
}

.about-us-container-content .right-subheading h3 {
    width: 90%;
    font-size: 1.5rem;
    line-height: 1.3em;
    letter-spacing: 2px;
    font-family: "Open Sans", sans-serif;
    font-weight: 200;
    color: #ffffff;
}



@media (max-width: 768px) {
    .about-us-container-content {
        flex-direction: column;
        padding: 20px;
    }

    .about-us-container-content .left-heading {
        width: 100%;
    }

    .about-us-container-content .left-heading p {
        font-size: 0.9rem;
    }


    .about-us-container-content .right-subheading {
        width: 100%;
    }

    .about-us-container-content h1 {
        font-size: 40px;
        width: 100%;
    }

    .about-us-container-content div h3 {
        font-size: 16px;
        width: 80vw;
    }

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

    #navbar-list-item {
        flex-direction: column;
    }

    #navbar-list-item li {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


@media (max-width: 570px) {
    .about-us-container-content {
        flex-direction: column;
        justify-content: flex-end;
    }

    .about-us-container-content .left-heading {
        width: 100%;
        height: 40%;
    }

    .about-us-container-content .left-heading h1 {
        width: 100%;
        font-size: 2.1rem;
    }

    .about-us-container-content .right-subheading {
        width: 100%;
        height: 35%;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .about-us-container-content .right-subheading h3 {
        width: 90%;
        font-size: 1.15rem;
    }


}


.healthcare-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #F6F6F6;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: black;
    text-transform: uppercase;
}

.section-header h3 {
    font-size: 70px;
    letter-spacing: 4px;
    color: black;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 17px;
    color: black;
    max-width: 90%;
    margin: 0 auto;
    letter-spacing: 2.4px;
    line-height: 1.5;
}

.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: stretch;
}

.service-item {
    width: 100%;
    max-width: 489px;
    height: 50vh;
    margin: 0 auto;
    font-size: 7rem;
    background: #F6F6F6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-item .icon {
    margin-bottom: 20px;
}

.service-item img {
    max-width: 120px;
    height: auto;
}

.service-item h4 {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 18px;
    padding: 15px;
    color: #333333;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 0.8rem;
        color: black;
    }

    .section-header h3 {
        font-size: 50px;
    }

    .section-header p {
        font-size: 16px;
    }

    .service-item {
        width: 100%;
        height: auto;
    }
}

@media (max-width:576px) {
    .healthcare-section {
        padding: 20px 20px;
    }

    .section-header h3 {
        font-size: 1.9rem;
    }

    .section-header p {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .service-item img {
        width: 90px;
    }

    .service-item h4 {
        font-size: 1.4rem;
    }

    .service-item p {
        font-size: 0.7rem;
        padding: 15px 5px;
    }
}

/* Section 3 */

.banner-section {
    position: relative;
    width: 100%;
    height: 70vh;
    background-image: url("../images/healthcare-image3.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
}

.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    background: linear-gradient(90deg, black, rgba(0, 0, 0, 0.778), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.banner-content h1 {
    font-size: 48px;
    letter-spacing: 2px;
    margin: 30px;
    width: 40%;
    line-height: 1.3em;


}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
    margin: 10px 30px;
    width: 30%;
}

.banner-content .btn {
    padding: 10px 20px;
    font-size: 1.1em;
    margin: 20px 30px;
    color: black;
    background-color: white;
    border: none;
    border-radius: 25px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.banner-content .btn:active {
    background-color: #333;
    transform: scale(1.1);
}

.banner-content .btn:after {
    content: ' ➔';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.banner-content .btn:active:after {
    margin-left: 10px;
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .banner-content h1 {
        font-size: 40px;
        width: 50%;
    }

    .banner-content p {
        font-size: 20px;
        width: 40%;
    }
}

@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 36px;
        width: 60%;
    }

    .banner-content p {
        font-size: 18px;
        width: 50%;
    }

    .banner-content {
        padding-left: 40px;
    }
}



@media (max-width: 570px) {
    .banner-section {
        height: 22vh;
        justify-content: flex-start;
    }

    .banner-content {
        width: 100%;
        height: 100%;
        padding: 0px 0px 0px 30px;
        background: linear-gradient(100deg, black, rgba(0, 0, 0, 0.721), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }


    .banner-content h1 {
        width: 68%;
        font-size: 1.1rem;
        margin: 10px 0px 5px 0px;
        font-weight: 600;
        /* background-color: red; */
    }

    .banner-content p {
        max-width: 50%;
        font-size: 0.55rem;
        margin: 10px 0px;
        /* background-color: green; */
    }

    .banner-content .btn {
        padding: 5px 10px;
        font-size: 0.35rem;
        /* background-color: yellow; */
        margin: 0;
    }

    .banner-content .btn:after {
        margin-left: 5px;
    }

    .banner-content .btn:active :after {
        margin-left: 0px;
    }
}


/* FAQ  */
.faq-section {
    width: 100%;
    height: auto;
    background-color: black;
    color: white;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.faq-section h2 {
    font-size: 50px;
    text-align: left;
    margin: 40px;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.faq-item {
    border-bottom: 1px solid #333;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    margin: 20px 40px;
    letter-spacing: 2px;
    align-items: center;
    font-size: 1.5rem;
}


.faq-answer {
    display: none;
    margin: 20px;
    font-size: 1.1rem;
    color: #ccc;
    padding-left: 20px;
}


.icon {
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

/* Rotate icon when active */
.faq-item.active .icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Styles */
@media (max-width: 938px) {
    .faq-section h2 {
        font-size: 36px;
        margin: 20px;
    }

    .faq-question {
        font-size: 1.2rem;
        margin: 15px 20px;
    }

    .faq-answer {
        font-size: 0.9rem;
        margin: 20px;
        padding-left: 15px;
        /* Adjust space left for icon */
    }

    .icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 570px) {
    .faq-section h2 {
        font-size: 1.5rem;
        margin: 15px;
    }

    .faq-question {
        font-size: 1rem;
        margin: 10px 15px;
    }


    .faq-answer {
        font-size: 0.85rem;
        margin: 10px 0px;
    }


    .icon {
        font-size: 1.5rem;
    }
}


/* Footer */


.footer-container {
    max-width: 100vw;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: Arial, sans-serif;
}

.footer-social-container {
    margin-top: 40px;
    width: 85%;
}

.footer-social-heading {
    display: flex;
    align-items: baseline;
    flex-direction: column;
}

.footer-social-heading h1 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
    margin: 20px 0px;
}

.footer-social-heading h2 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
}

.footer-social-media-container {
    margin: 60px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
}

.footer-social-media-container a {
    text-decoration: none;
}

.social-media-content {
    display: flex;
    align-items: center;
}

.social-media-img {
    width: 42px;
    height: 42px;
    margin-right: 15px;
    cursor: pointer;
}

.social-media-text img {
    width: 120px;
    cursor: pointer;
}

.social-media-text p {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
    padding-left: 7px;
    cursor: pointer;
}

#footer-middle-line {
    min-width: 100%;
    height: 2px;
    background-color: gray;
    margin: 40px 0px;
}

.footer-more-info-container {
    margin: 40px 0;
    width: 80%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.more-info-list-item {
    min-width: 20%;
    color: white;
}

.more-info-list-item a {
    text-decoration: none;
}

.more-info-list-item h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.more-info-list-item ul {
    margin-top: 40px;
}

.more-info-list-item ul li {
    list-style: none;
    font-size: 1.04rem;
    font-weight: 400;
    margin-top: 25px;
    color: #CDCDCD;
    cursor: pointer;
}

.footer-last-container {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 45px 0px;
    flex-wrap: wrap;
}

.footer-last-content {
    min-width: 45%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-last-container img {
    width: 208px;
}

.footer-last-content p {
    color: #d1d1d1;
    font-size: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.social-icon-container span img {
    margin-right: 30px;
    width: 30px;
    cursor: pointer;
    transition: filter 0.1s ease-in;
}

.social-icon-container span img:hover {
    filter: drop-shadow(0px 0px 10px white);
}

/* Responsive Styles */

@media (max-width: 768px) {
    .footer-social-heading h1 {
        font-size: 1.8rem;
    }

    .footer-social-heading h2 {
        font-size: 1.2rem;
    }

    .social-media-text p {
        font-size: 1.2rem;
    }

    .footer-more-info-container {
        width: 95%;
    }

    .more-info-list-item {
        margin-bottom: 20px;
    }

    .footer-last-container {
        width: 95%;
    }

    .footer-last-container img {
        width: 160px;
    }
}

@media screen and (max-width:570px) {
    .footer-social-heading h1 {
        font-size: 2rem;
        margin: 10px 0px;
    }

    .footer-social-heading h2 {
        font-size: 1.3rem;
    }


    .footer-social-container {
        width: 90%;
    }

    .footer-social-media-container {
        margin: 18px 0px 0px;
    }

    .social-media-content .social-media-text {
        display: none;
    }

    .more-info-list-item:nth-child(1) {
        display: none;
    }

    .more-info-list-item:nth-child(2) {
        display: none;
    }

    .more-info-list-item:nth-child(3) h2 {
        display: none;
    }

    .more-info-list-item:nth-child(3) ul {
        margin-top: 17px;
    }

    .more-info-list-item ul li {
        font-size: 1rem;
    }

    #footer-middle-line {
        display: none;
    }

    .footer-more-info-container {
        width: 90%;
        margin: 5px 0px;
    }

    .footer-last-content {
        gap: 20px;
    }

    .footer-last-container {
        width: 90%;
        margin: 10px 0px 10px 0px;
    }

    .footer-last-content img {
        width: 120px;
    }

    .footer-last-content p {
        font-size: 0.6rem;
    }

    .social-icon-container {
        display: none;
    }
}

@media (max-width:350px) {
    .dropdown-content {
        width: 290px;
    }

    #navbar-list-item li a {
        font-size: 0.9rem;
    }

    .service-img-container {
        width: 115px;
    }

    .about-us-container-content .left-heading h1 {
        letter-spacing: 0.4px;
    }
}



@media screen and (max-height:670px) {
    #navbar-list-item li {
        margin: 2px 0px 15px;
    }

    #navbar-list-item li a {
        font-size: 0.85rem;
    }

    .about-us-container-content .left-heading {
        height: 35%;
    }

    .about-us-container-content .left-heading h1 {
        font-size: 2rem;
    }

    .about-us-container-content .right-subheading {
        margin-top: 10px;
    }

    .about-us-container-content .right-subheading h3 {
        font-size: 1rem;
    }

    .banner-section {
        height: 28vh;
    }

}


@media (min-width:580px) and (max-width:938px) and (max-height:1024px) {
    .dropdown-grid {
        gap: 5px;
    }

    #navbar-list-item li a {
        font-size: 0.8rem;
    }

    /* home page */
    .about-us-container-content {
        padding: 0px 20px;
        flex-direction: column;
        justify-content: flex-end;
    }

    .about-us-container-content .left-heading {
        width: 100%;
        height: 35%;
    }

    .about-us-container-content .left-heading p {
        font-size: 1.2rem;
    }

    .about-us-container-content .left-heading h1 {
        font-size: 3.1rem;
    }

    .about-us-container-content .right-subheading {
        width: 100%;
        height: 35%;
        align-items: flex-start;
    }

    .about-us-container-content .right-subheading h3 {
        font-size: 1.3rem;
    }

    /* 2nd section */
    .section-header h3 {
        font-size: 2.8rem;
    }

    .service-item {
        max-width: 600px;
    }

    .service-item img {
        width: 100px;
    }

    /* banner section */

    .banner-section {
        height: 40vh;
    }

    .banner-content {
        background: linear-gradient(90deg, black, rgba(0, 0, 0, 0.818), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    }

    .banner-content h1 {
        margin: 20px 0px 10px 30px;
    }

    .banner-content .btn {
        font-size: 0.7rem;
        padding: 8px 15px;
    }

    /* faq section */
    .faq-answer {
        margin: 10px 0px 10px 20px;
        font-size: 0.9rem;
        padding-left: 0;
    }

    /* footer section */

    .footer-social-heading h1 {
        font-size: 2rem;
    }

    .footer-social-heading h2 {
        font-size: 1.5rem;
    }

    .footer-social-media-container {
        margin: 30px 0px;
    }

    .social-media-img {
        width: 30px;
        height: auto;
        margin-right: 5px;
    }

    .social-media-text img {
        display: none;
    }

    .social-media-text p {
        font-size: 1.2rem;
    }

    #footer-middle-line {
        margin: 20px 0px;
        height: 1px;
    }

    .footer-more-info-container {
        width: 85%;
        margin: 5px 0;
    }

    .more-info-list-item:nth-child(1) h2 {
        display: none;
    }

    .more-info-list-item:nth-child(2) h2 {
        display: none;
    }

    .more-info-list-item:nth-child(3) h2 {
        display: none;
    }

    .more-info-list-item ul {
        margin-top: 0px;
    }

    .more-info-list-item ul li {
        font-size: 0.75rem;
        margin-top: 10px;
    }

    .footer-last-container {
        width: 85%;
        margin: 30px 0px 10px 0px;
    }

    .footer-last-container img {
        width: 110px;
    }

    .footer-last-content p {
        font-size: 0.7rem;
    }

    .social-icon-container span img {
        margin-right: 15px;
        width: 25px;
    }
}