.home-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: .5rem;
    padding-right: .5rem;
}

.landing-header button {
    width: fit-content;
    padding-right: 1.75rem;
    padding-left: 1.75rem;
    padding-top: .7rem;
    border-radius: 0.5rem !important;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-flex .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-header {
    overflow-x: hidden;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #DDE1E6;
    background: #FFF;
}

.header-top-logo img {
    height: 3rem;
    width: auto;
}

.header-top-logo a:hover {
    cursor: pointer;
    text-decoration: none;
}

.header-top-logo .logo-title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.31rem;
    margin-left: 5px;
}

.header-top-logo .logo-title-text p {
    color: #21272a;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize;
    font-family: "arial-rounded-bold", helvetica, sans-serif;
}

.header-top-logo .logo-title-text span {
    color: #27662d;
    font-size: 0.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0.03938rem;
}

.hero-section {
    position: relative;
    height: 85vh;
    /*max-height: 43.3125rem;*/
    background-image: url("../img/landing-hero-img.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.46); */
}

.hero-section .hero-text-contents {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-text-contents h1 {
    color: #F9B325;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 6rem;
}

.hero-section .hero-text-contents h3 {
    color: #FFF;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 6rem;
}

.hero-section .hero-text-contents p {
    color: #FFF;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.pathshala-footer {
    background-color: #000;
    padding-block: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.footer-grid .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.footer-grid .contact-info img {
    width: 3.5rem;
    height: 3.375rem;
    margin-bottom: 2rem;
}

.footer-grid .contact-info .contact-texts {
    display: flex;
    flex-direction: column;
    gap: .72rem;
}

.footer-grid .contact-info .contact-texts h5 {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.footer-grid .contact-info .contact-texts a {
    color: #FFF;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.footer-grid .footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.31rem;
}

.footer-grid .footer-links a {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.footer-grid .join-follow h3 {
    color: #FFF;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.footer-grid .join-follow .join-us {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: flex-start;
}


.footer-grid .join-follow .join-us .social-media-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-grid .join-follow .app-download-btns {
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-grid .join-follow .app-download-btns .playstore-links {
    display: flex;
    gap: .82rem;
}

.footer-grid .join-follow .join-us .logo {
    display: none;
}

@media (max-width:1280px) {
    .home-container {
        max-width: 1200px;
    }
}

@media (max-width:1200px) {
    .home-container {
        max-width: 1130px;
    }
}

@media (max-width:1130px) {
    .home-container {
        max-width: 1060px;
    }
}

@media (max-width:1060px) {
    .home-container {
        max-width: 991px;
    }
}

@media (max-width:842px) {

    .home-container {
        max-width: 768px;
    }

    .header-flex .header-right {
        gap: .5rem;
    }

    .hero-section .hero-text-contents h1 {
        font-size: 3.125rem;
        line-height: 4.0625rem;
    }

    .hero-section .hero-text-contents h3 {
        font-size: 3.125rem;
        line-height: 4.0625rem;
    }

    .hero-section .hero-text-contents p {
        font-size: 1.5625rem;
        line-height: normal;
    }
}

@media (max-width:768px) {

    .home-container {
        max-width: 640px;
    }

    .header-flex .header-right {
        gap: .3rem;
    }

    .landing-header button {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .hero-section {
        position: relative;
        height: 60vh;
    }

    .hero-section .hero-text-contents h1 {
        font-size: 1.875rem;
        line-height: 2.4375rem;
    }

    .hero-section .hero-text-contents h3 {
        font-size: 1.875rem;
        line-height: 2.4375rem;
    }

    .hero-section .hero-text-contents p {
        font-size: 0.9375rem;
    }

    .footer-grid .footer-links {
        order: 3;
        margin-top: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:475px) {
    .home-container {
        max-width: 100%;
    }

    .header-top-logo .logo-title-text p {
        font-size: 0.9rem !important;
    }

    .landing-header a {
        padding-right: 0.65rem;
        padding-left: 0.65rem;
        padding-top: .50rem;
        padding-bottom: .25rem;
        font-size: .8rem;
    }

    .hero-section {
        /* position: relative; */
        height: 40vh;
        background-image: url("../img/landing-hero-mobile-img.png");   
     }

    .hero-section .hero-text-contents h1 {
        font-size: 1.875rem;
        line-height: 2.4375rem;
    }

    .hero-section .hero-text-contents h3 {
        font-size: 1.875rem;
        line-height: 2.4375rem;
    }

    .hero-section .hero-text-contents p {
        font-size: 0.9375rem;
    }

    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 2.5rem;
    }

    .footer-grid .join-follow .join-us .logo {
        order: 2;
        margin-bottom: 2.5rem;
    }

    .footer-grid .footer-links {
        margin-top: 0rem;
    }

    .footer-grid .contact-info {
        order: 2;
    }

    .footer-grid .join-follow {
        order: 3;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width:360px) {
    .landing-header button {
        padding-right: 0.4rem;
        padding-left: 0.4rem;
    }

    .home-container {
        padding: 0;
    }
}