  
/* overall colors */
:root {
    --primary-color: #F9032F;
    --secondary-color: #000000;
    --third-color: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--third-color);
}


/* Hero Section for Home Page */
.hero {
    background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0.1)),
    url('/images/ldi-bch.jpg'); /* smaller image size, quicker load time */
    height: 100vh;
    background-position: center;
    background-size: cover;
    padding: 8px calc((100vw - 1200px) / 2);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero__content {
    color: var(--third-color);
    margin-top: 150px;
    padding: 48px 16px;
    line-height: 1;
}

.hero__content h1 {
    font-size: clamp(48px, 8vw, 112px); /* make font size resize depending on viewports/screenscreen (lowest,viewport width,highest) */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero__content p {
    font-size: clamp(8px, 8vw, 40px); /* make font size resize depending on viewports/screenscreen (lowest,viewport width,highest) */
    margin-bottom: 48px;
}

.button {
    padding: 16px 48px;
    border: none;
    background-color: var(--primary-color);
    color: var(--third-color);
    font-size: 16px;
    cursor: pointer;
    outline: none;
    transition: 0.3s ease;
    text-decoration: none;
    border-radius: 4px;
}

.button:hover {
    background-color: var(--third-color);
    color: var(--secondary-color);
}

/* font awesome icons sizing */
.fa-users {
    font-size: 50px;
    margin-bottom: 25px;
}

.fa-check-square {
    font-size: 50px;
    margin-bottom: 25px;
}

.fa-question {
    font-size: 50px;
    margin-bottom: 25px;
}


/* action__buttons Section */
.action__buttons {
    background: var(--secondary-color);
    color: var(--third-color);
    padding: 6rem calc((100vw - 1100px) / 2 );
    text-align: center;
}

.action__buttons h1 {
    margin-bottom: 16px;
    font-size: clamp(32px, 5vw, 48px);
    padding: 0 16px;
}

.action__buttons__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
}

.action__buttons__card {
    padding: 32px;
    /* min-height: 450px; */
    width: 325px;
    background: var(--third-color);
    color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.action__buttons__summary {
    min-height: 50px;
}

.action__buttons__card p {
    margin-bottom: 16px;
    font-size: 30px;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.action__buttons__card h3 {
    font-size: clamp(16px, 5vw, 32px);
    margin-bottom: 32px;
}

.cta-button:hover {
    color: var(--third-color);
    background-color: var(--secondary-color);
}

/* Mobile View Responsive */
@media screen and (max-width: 1100px) {
    .action__buttons__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .action__buttons__card {
        width: 90%;
        margin-bottom: 32px;
    }
}