.homeBanner{
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/img/homeBanner.png');
    height: calc(100vh - 136.5px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    align-items: start;
    padding: 0 60px 0 60px;
    gap: 20px;
}
.homeBanner h1{
    text-align: left;
}
.homeBanner p{
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    font-size: 22px;
}

.hostCntry-anchor{
    display: contents;
    text-decoration: none;
    color: black;
}

.solutionGrid{
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
}
.solutionCard{
    width: calc((100vw - 120px - 90px)/4);
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.solutionCard-icon{
    height: 150px;
    width: 150px;
    border: 10px solid white;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin: 0 0 -70px 0;
}
.solutionCard-textBox{
    background-color: var(--gchLiteGray);
    height: fit-content;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 52px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    padding: 90px 20px 50px 20px;
    gap: 20px;
}
.solutionCard-textBox h3{
    text-align: center;
}
.solutionCard-textBox p{
    font-size: 17px;
    color: var(--gchTextGray);
    line-height: 27px;
    text-align: center;
}
.solutionCard-textBox-ftBx{
    display: none;
    flex-direction: column;
    gap: 20px;
}
.solutionCard-toggle{
    height: 55px;
    width: 55px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin: -25px 0 0 0;
}
.colabGrid{
    gap: 25px;
    display: grid;
    align-items: center;
    justify-content: center;
}
.colabCard{
    border-radius: 22px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;   
}


.testimonialBox{
    display: flex;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    padding: 10px 0;
}
.testimonyCard{
    height: fit-content;
    min-width: 100%;
    background-color: var(--gchLiteGray);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}
.testimonialSliderWrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ministryFtBx{
    display: flex;
}






@media screen and (max-width: 1349px) {
    .solutionGrid{
        grid-template-columns: auto auto auto auto;
    }
}

@media screen and (max-width: 1077px) {
    .solutionGrid{
        grid-template-columns: auto auto auto;
    }
}
@media screen and (max-width: 803px) {
    .solutionGrid{
        grid-template-columns: auto auto;
    }
}

@media screen and (max-width: 593px) {
    .homeBanner{
        align-items: center;
    }
    .homeBanner h1{
        text-align: center;
    }
    .homeBanner p{
        text-align: center;
    }

    .homeBanner a{
        margin: 0 auto 0 auto;
    }
}

@media screen and (max-width: 559px) {
    .solutionGrid{
        grid-template-columns: auto;
        justify-content: center;
    }
}

@media screen and (max-width: 487px) {
    .homeBanner{
        align-items: center;
        padding: 60px 20px;
        height: fit-content;
    }
    .homeBanner h1{
        font-size: 31px;
        line-height: 33px;
    }
    .homeBanner p{
        font-size: 17px;
    }

    .homeBanner a{
        margin: 0 auto 0 auto;
    }
    .pageContentBox{
        padding: 60px 20px;
    }
    .pageContentBox h2{text-align: center;}
}