
/* homegage */

.gd-home-top {
    padding-top: 4rem;
    padding-bottom: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gd-home-top__header {
    font-size: 2.65rem;
    color: var(--text-header-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gd-home-top__subheader {
    font-size: 1rem;
    color: #838383;
    max-width: 40rem;
    line-height: 1.4rem;
}


.gd-home-apps-box {
    background: linear-gradient(180deg, #FCFCFC 0%, #F9F9F9 20%, #F9F9F9 80%, #FCFCFC 100%);
    padding: 3rem 0;
    margin-bottom: 6rem;
}

.gd-home-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.gd-home-app {
    flex: 1 1 calc(33.333% - 2rem);
    box-sizing: border-box;
    padding: 2rem;
    min-width: 20rem;
    background-color: #fff;
    border-radius: 0.5rem;
    color: #2B2B2B;
    box-shadow: 1px 0px 19px #f3f3f3;
    
}

.gd-home-app__link {
   
}

.gd-home-app__link:hover .gd-home-app__title-box, .gd-home-app__link:hover .gd-home-app__text {
    opacity:1;
}
.gd-home-app__link:hover .gd-home-app__icon {
   
}
   

    .gd-home-app__header {
        display: flex;
        justify-content: space-between;
    }

.gd-home-app__title-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity:0.8;
}

.gd-home-app__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.gd-home-app__subtitle {
    font-size: 0.85rem;
    color: #9e9e9e;
    line-height: 1.4rem;
}

.gd-home-app__text {
    font-size: 0.85rem;
    color: #111;
    line-height: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    min-height: 7.25rem;
    opacity:0.8;
}

.gd-home-app__icon {
    width: 3.75rem;
    height: 3.75rem;
   
}

.gd-home-app__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.gd-home-app__link {
    color: #9297A0;
}

    .gd-home-app__link:hover {
        color: #2B2B2B;
    }

.gd-home-other-apps-box {
    text-align: center;
    padding-top: 3rem;
}

.gd-home-other-apps {
    border-radius: 2rem;
    background-color: #fff;
    display: inline-block;
    padding: 0.75rem 1rem;
}

.gd-home-other-apps-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gd-home-other-apps-list li {
    display: block;
    font-size: 0.85rem;
    color: #7C7C7C;
}


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

    .gd-home-top__header {
        font-size:2rem;
    }
}
