.hook-section {
    width: 100%;
    height: auto;
    padding-top: 10rem;
    padding-bottom: 10rem;
    position: relative;
    background-color:#000000;  
	border-top: 4px solid #C8F542;

}

.hook-text-container {
    height: auto;
    width: 100%;
    padding: 14rem 0;
    position: sticky;
    top: 0;
}

.hook-text-container .hook-text-title {
    text-transform: uppercase;
    margin-bottom: 1.8rem;
    font-size: 2rem;
    font-weight: 110%;
}

.hook-text-container .hook-text-content {
    max-width: 55.2rem;
    font-size: 9.6rem;
    font-weight: 400;
    color: #919191;
}

.hook-text-container .hook-text-content span {
    color: white;
}

.hook-cards-container {
    min-height: 100vh;
    height: auto;
    width: 100%;
    position: relative;
}

.hooks-card-container-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    filter: blur(10rem);
    z-index: 2;
}

.hooks-card-container-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hooks-card-container-content-center {
    align-items: center;
}

.hooks-card-container-content .cards {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    row-gap: 60em !important;
}

.white-card {
    padding: 8rem;
    width: 60rem;
    height: 25rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: white;
    color: black;
    position: relative;
}

.white-card-lg {
    height: 30rem;
    width: 76rem;
}

.white-card-lg .white-card-bottom-right-icon {
    right: -5%;
    bottom: -15%;
}

.white-card-lg .white-card-left-icon {
    left: -6.5%;
    top: 10%;
}

.white-card-title {
    font-size: 3.2rem;
    font-weight: 400;
    width: 90%;
    margin-bottom: 1rem;
}

.white-card-description {
    font-weight: 400;
    width: 85%;
    font-size: 2rem;
    color: #5A5A5A;
}

.white-card-icon {
    width: 10rem;
    height: 10rem;
}

.white-card-left-icon {
    position: absolute;
    left: -10%;
    top: 9%;
}

.white-card-bottom-right-icon {
    position: absolute;
    bottom: -17.5%;
    right: -8%;
}

.hooks-card-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 12rem;
    padding-right: 5rem;
    z-index: 3;
}

.hooks-card-cta-title {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.hooks-card-cta-description {
    font-size: 20px;
    color: #5A5A5A;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {

    .hooks-card-cta {
        margin-top: 8rem;
        padding-top: 10rem;
    }

    .hook-text-container {
        /* position: relative; */
        top: 10vh;
    }

    .hooks-card-cta-title {
        font-size: 2.5rem;
    }

    .hooks-card-cta-description {
        font-size: 1.8rem;

    }

    .white-card-lg .white-card-title {
        font-size: 2rem;
    }

    .white-card-lg .white-card-description {
        font-size: 1.8rem;
    }

    .white-card {
        width: 40rem;
        height: auto;
        padding: 4rem;
    }

    .white-card-lg {
        height: auto;
        width: 40rem;
    }

    .white-card-title {
        font-size: 2.5rem;
    }

    .white-card-description {
        width: 100%;
        font-size: 2rem;
    }

    .white-card-icon {
        width: 7rem;
        height: 7rem;
    }

    .white-card-left-icon {
        position: absolute;
        left: -10%;
        top: 9%;
    }


    .hooks-card-container-content .cards {
        row-gap: 75rem;
    }

    .white-card-bottom-right-icon {
        position: absolute;
        bottom: -7%;
        right: -8%;
    }


}