.hero {
    background: url(../images/hero-img.webp) center / cover no-repeat;
    width: 100%;
    min-height: 100vh;
    position: relative;
}


.hero .content {
    padding: 0 3vw;
    /* padding-top: 103px; */
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    line-height: 1.2;

}

.hero .content span {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    line-height: 1.5;
}

.hero .content h1 {
    font-size: 5vw;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: 50px;
}

.hero .content p {
    font-size: 33px;
    color: white;
    margin-top: 50px;
    width: 70%;
    line-height: 1.5;
}

.hero .content a {
    font-size: 22px;
    color: white;
    text-transform: uppercase;
    padding: 20px 26px;
    border: 2px solid white;
    display: inline-block;
    margin-top: 50px;
    transition: all .3s;
}
.hero .content a:hover{
    background-color: #022169;
    border-color: #022169;
}
.hero .down-arrow {
    position: absolute;
    right: 4vw;
    bottom: 3vw;
    border: none;
}

.hero .down-arrow img {
    height: 90px;
    margin-top: 70px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}



.pathways {
    padding: 0 3vw;
    margin-top: 180px;
}

h2 {
    font-size: 80px !important;
    color: white;
    text-transform: uppercase;
    font-weight: 900 !important;
    text-align: center;
    line-height: 1.2 !important;
    margin-bottom: 60px !important;
}

h2 span {
    color: #8D9090;
}

.pathways-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pathways-card {
    width: 32%;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.pathways-card b {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
}

.pathways-card p {
    margin-top: 22px;
    font-size: 20px;
    line-height: 1.4;
}

.batn {
    font-size: 23px;
    color: white;
    text-transform: uppercase;
    font-weight: 500;
    background-color: #022169;
    padding: 18px 25px;
    margin: auto;
    display: block;
    width: fit-content;
    margin-top: 60px;
    transition: all .3s;
}
.batn:hover{
    background-color: white;
    color: black;
}


.support {
    margin-top: 300px;
    padding: 0 3vw;
}

.support-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.support-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px;
    width: 40%;
    color: white;
    min-height: 352px;
}

.support-card h4 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 36px;
}

.support-card ul li {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 28px;
    line-height: 1.4;
    list-style: disc;
}



.room {
    margin-top: 300px;
    padding: 0 3vw;
}

.room h6 {
    color: white;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

.room-cards {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.room-card {
    width: 25%;
    aspect-ratio: 1/1;
    padding: 44px 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.room-card b {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.room-card p {
    font-size: 16px;
    margin-top: 15px;
    color: white;
    line-height: 1.5;
}



.global-reach {
    background: url(../images/map-img.webp) center / cover no-repeat;
    min-height: 100vh;
    padding: 0 3vw;
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.global-reach h1 {
    font-size: 90px;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.global-reach .countries {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

}

.global-reach .country {
    font-size: 30px;
    text-transform: uppercase;
    color: white;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 20px;
}

.global-reach .country img {
    height: 40px;
}


.global-reach .batn {
    background-color: white;
    color: black;
    margin: 0;
}
.global-reach .batn:hover{
    background-color: #022169;
    color: white;
}

.plans {
    padding: 0 3vw;
    margin-top: 300px;
}

.plan-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.05);
    width: 45%;
    height: 568px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 36px;
    color: white;
}

.plan-card .price {
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 900;
}

.plan-card .text b {
    font-size: 38px;
    font-weight: 500;
}

.plan-card .text p {
    margin-top: 36px;
    font-size: 26px;
    line-height: 1.5;
}

.plan-card .text a {
    display: inline-block;
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    color: white;
    padding: 26px 0;
    background-color: #022169;
    text-align: center;
    margin-top: 50px;
    transition: all .3s;
}
.plan-card .text a:hover{
    background-color: white;
    color: black;
}

.end-logo {
    width: fit-content;
    margin: 90px auto 60px;
}

.end-logo img {
    height: 80px;
}














@media (max-width: 1700px) {
    .hero .content span {
        font-size: 18px;
    }

    .hero .content h1 {
        margin-top: 40px;
    }

    .hero .content p {
        font-size: 26px;
        margin-top: 30px;
    }

    .hero .content .down-arrow img {
        height: 80px;
    }

    .hero .content a {
        font-size: 19px;
        padding: 15px 20px;
    }
}










@media (max-width: 1600px) {
    h2 {
        font-size: 65px !important;
    }

    .pathways-card b {
        font-size: 26px;
    }

    .batn {
        font-size: 18px;
        padding: 14px 18px;
    }

    .support-card h4 {
        font-size: 34px;
    }

    .support-card ul li {
        font-size: 18px;
        margin-bottom: 23px;
    }

    .pathways-card p {
        margin-top: 13px;
        font-size: 17px;
    }

    .room h6 {
        font-size: 18px;
    }

    .room-card {
        padding: 25px;
    }

    .room-card b {
        font-size: 22px;
    }

    .room-card p {
        margin-top: 8px;
    }

    .global-reach h1 {
        font-size: 65px;
    }

    .global-reach .country {
        font-size: 25px;
        gap: 10px;
    }

    .global-reach .countries {
        gap: 30px;
    }

    .global-reach {
        gap: 70px;
    }

    .plan-card .price {
        font-size: 50px;
    }

    .plan-card .text b {
        font-size: 34px;
    }

    .plan-card .text p {
        margin-top: 20px;
        font-size: 22px;
    }

    .plan-card .text a {
        font-size: 25px;
        padding: 20px 0;
    }

    .plan-card .text a {
        margin-top: 40px;
    }

    .plan-card {
        height: 470px;
        padding: 20px 26px;
    }

    .end-logo img {
        height: 70px;
    }

    .end-logo {
        margin: 60px auto 40px;
    }
}










@media (max-width: 1500px) {
    .hero .content span {
        font-size: 16px;
    }

    .hero .content h1 {
        margin-top: 30px;
    }

    .hero .content p {
        font-size: 22px;
        margin-top: 20px;
    }

    .hero .content .down-arrow img {
        height: 65px;
    }

    .hero .content a {
        font-size: 17px;
        padding: 13px 16px;
        margin-top: 30px;
    }
}


@media (max-width: 1400px) {
    h2 {
        font-size: 55px !important;
        margin-bottom: 40px !important;
    }

    .pathways {
        margin-top: 110px;
    }

    .pathways-card b {
        font-size: 22px;
    }

    .pathways-card p {
        margin-top: 10px;
        font-size: 15px;
    }

    .pathways-card {
        height: 220px;
    }

    .batn {
        font-size: 16px;
        margin-top: 40px;
    }

    .support-card {
        padding: 35px;
    }

    .support-card h4 {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .support-card ul li {
        font-size: 16px;
        margin-bottom: 19px;
    }

    .support-card {
        min-height: 0;
    }

    .support {
        margin-top: 200px;
    }

    .room {
        margin-top: 200px;
    }

    .room h6 {
        font-size: 16px;
    }

    .room-cards {
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .global-reach h1 {
        font-size: 55px;
    }

    .global-reach .country {
        font-size: 20px;
        gap: 0px;
    }

    .global-reach .country img {
        height: 30px;
    }

    .global-reach {
        min-height: 70vh;
    }

    .global-reach {
        margin-top: 200px;
    }

    .plan-card .price {
        font-size: 40px;
    }

    .plan-card .text b {
        font-size: 30px;
    }

    .plan-card .text p {
        margin-top: 10px;
        font-size: 18px;
    }

    .plan-card .text a {
        font-size: 21px;
        padding: 15px 0;
        margin-top: 30px;
    }

    .plan-card {
        height: 370px;
    }

    .plans {
        margin-top: 200px;
    }

    .end-logo img {
        height: 60px;
    }
}





@media (max-width: 1300px) {
    .hero .content span {
        font-size: 15px;
    }

    .hero .content h1 {
        font-size: 60px;
    }

    .hero .content p {
        font-size: 19px;
        margin-top: 17px;
    }

    .hero .content .down-arrow img {
        height: 60px;
        margin-top: 50px;
    }


    .hero .content a {
        font-size: 15px;
        padding: 12px 14px;
        margin-top: 22px;
    }
}









@media (max-width: 1200px) {
    h2 {
        font-size: 45px !important;
    }

    .pathways-card {
        width: 45%;
        height: 240px;
    }

    .support-card {
        width: 45%;
    }

    .room-card {
        width: 32%;
    }

    .global-reach h1 {
        font-size: 45px;
    }

    .global-reach .country {
        font-size: 16px;
    }

    .batn {
        font-size: 15px;
    }

    .global-reach {
        gap: 50px;
    }

    .plan-card .price {
        font-size: 30px;
    }

    .plan-card .text b {
        font-size: 26px;
    }

    .plan-card .text p {
        margin-top: 6px;
        font-size: 16px;
    }

    .plan-card .text a {
        font-size: 18px;
        padding: 12px 0;
        margin-top: 20px;
    }

    .plan-card {
        height: 320px;
    }

    .end-logo img {
        height: 50px;
    }
}















@media (max-width: 1100px) {
    .hero .content span {
        font-size: 14px;
    }

    .hero .content h1 {
        font-size: 52px;
        margin-top: 20px;
    }

    .hero .content p {
        font-size: 17px;
    }

    .hero .down-arrow img {
        height: 70px;
    }

    .hero .content a {
        font-size: 14px;
    }
}






@media (max-width: 1000px) {
    h2 {
        font-size: 39px !important;
    }

    .support-card ul li {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .support-card h4 {
        font-size: 25px;
        margin-bottom: 18px;
    }

    .support-card {
        padding: 24px;
    }

    .room-card {
        width: 38%;
    }

    .global-reach h1 {
        font-size: 40px;
    }

    .global-reach .countries {
        column-gap: 68px;
        row-gap: 28px;
        flex-wrap: wrap;
    }

    .batn {
        font-size: 14px;
    }

    .plan-card .price {
        font-size: 26px;
    }

    .plan-card .text b {
        font-size: 22px;
    }

    .plan-card .text p {
        margin-top: 8px;
        font-size: 14px;
    }

    .plan-card .text a {
        font-size: 16px;
        padding: 10px 0;
        margin-top: 16px;
    }

    .plan-card {
        height: 280px;
    }
}





@media (max-width: 900px) {
    .hero .content p {
        font-size: 16px;
    }

    .hero .content a {
        padding: 10px 12px;
    }
}





@media (max-width: 800px) {
    h2 {
        font-size: 34px !important;
    }

    .pathways {
        margin-top: 80px;
    }

    .pathways-card b {
        font-size: 20px;
    }

    .pathways-card p {
        margin-top: 10px;
        font-size: 14px;
    }

    .pathways-card {
        width: 48%;
        height: 220px;
    }

    .support-cards {
        gap: 20px;
    }

    .support-card {
        width: 50%;
    }

    .support-card ul li {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .room h6 {
        font-size: 14px;
    }

    .room-card {
        width: 48%;
    }

    .room-cards {
        margin-top: 30px;
    }

    .batn {
        padding: 12px 12px;
    }

    .global-reach h1 {
        font-size: 30px;
    }

    .global-reach .country {
        font-size: 14px;
    }

    .global-reach .countries {
        column-gap: 14px;
    }

    .plan-card .price {
        font-size: 24px;
    }

    .plan-card .text b {
        font-size: 20px;
    }

    .plan-cards {
        gap: 20px;
    }

    .plan-card {
        width: 47%;
    }

    .support {
        margin-top: 130px;
    }

    .room {
        margin-top: 130px;
    }

    .global-reach {
        margin-top: 130px;
    }

    .global-reach {
        gap: 30px;
    }

    .plans {
        margin-top: 130px;
    }
}





@media (max-width: 700px) {
    .hero .content h1 {
        font-size: 38px;
    }

    .support-cards {
        flex-wrap: wrap;
    }

    .support-card {
        width: 100%;
    }

    .plan-card {
        width: 67%;
    }
}

@media (max-width: 600px) {
    .pathways-card {
        width: 100%;
        height: 220px;
    }

    .room-card {
        width: 80%;
    }

    .plan-card {
        width: 100%;
    }

    h2 {
        font-size: 30px !important;
    }
}

@media (max-width: 570px) {
    .hero .content span {
        font-size: 14px;
    }

    .hero .content h1 {
        font-size: 36px;
        margin-top: 20px;
    }

    .hero .content p {
        font-size: 15px;
        width: 85%;
    }
}

@media (max-width: 530px) {
    .hero .content {
        padding: 0 16px;
    }

    .pathways {
        padding: 0 16px;
    }

    .support {
        padding: 0 16px;
    }
    .room {
        padding: 0 16px;
}
.room-card {
        width: 100%;
    }
        .global-reach {
            padding: 0 16px;
        }
        .plans {
    padding: 0 16px;
}

}

@media (max-width: 500px) {
    .hero .content {
        align-items: center;
        text-align: center;
        padding-top: 77px;
    }

    .hero .content h1 {
        margin-top: 20px;
    }

    .hero .content p {
        margin-top: 20px;
    }

    .hero .content .down-arrow.one {
        display: block !important;
        position: static;
    }

    .hero .down-arrow.two {
        display: none !important;
    }

}

@media (max-width: 450px) {
    .hero .content h1 br {
        display: none;
    }

    .hero .content a {
        margin-top: 30px;
    }

    .hero .content p {
        width: 100%;
    }
        h2 {
        font-size: 25px !important;
    }
        .global-reach .countries {
            row-gap: 18px;
        }
}