.fa,
.fas {
    font-weight: 900;
    color: #017bff;
}

.fa,
.fas:hover {
    font-weight: 900;
    color: #ffc001;
}

.container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    height: auto;
    background-image: linear-gradient(to bottom right, #ffffff00rgba(255, 255, 255, 0)ff);
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(5px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.0);
    font-family: 'Montserrat', sans-serif;
}

.container h1 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.container p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Media Query for screens smaller than 768px */
@media (max-width: 767px) {
    .container {
        grid-template-columns: 1fr;
        height: auto;
    }
}

/* Media Query for screens larger than 768px */
@media (min-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.left h1 {
    font-size: 5rem !important;
    font-weight: bold;
    margin-bottom: 1rem;
}

.left p {
    font-size: 1.2rem;
    line-height: 1.5;
}

.right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #ffffff4a;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    color: black;
    text-decoration: none;
}

.card:hover {
    background-color: #f5f5f5;
    transform: translateY(-0.2rem);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
}

.card .icon:before {
    font-family: 'Font Awesome 5 Free';
    content: attr(data-icon);
}

.card:hover .icon {
    transform: scale(1.3);
    color: #ff4800;
}

.card h2 {
    font-size: 1.5rem;
    text-align: center;
}

.card:hover .icon:before {
    color: #ff0000;
}

.card:nth-child(1) .icon:before {
    color: #3498db;
}

.card:nth-child(2) .icon:before {
    color: #e67e22;
}

.card:nth-child(3) .icon:before {
    color: #9b59b6;
}

.card:nth-child(4) .icon:before {
    color: #2ecc71;
}

.card:nth-child(5) .icon:before {
    color: #f1c40f;
}

.card:nth-child(6) .icon:before {
    color: #34495e;
}

.card p {
    background-color: rgba(255, 255, 255, 0);
    padding: 3rem;
}

.card p {

    line-height: 1.5;
    color: #444;
    margin-top: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(0.5rem);
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.card:hover p {
    opacity: 1;
    transform: translateY(-0.5rem);
}




.card p a {
    text-decoration: none;
}

@media only screen and (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .left {
        order: 1;
        text-align: left;
        padding: 1rem;
    }

    .right {
        order: 2;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        padding: 1rem;
    }

    .card {
        height: auto;
    }
}




@media (min-width: 1200px) {
    .multi-column {
        column-count: 2;
        column-gap: 2rem;
        margin-top: 0.75rem;

    }
}



@media (max-width: 1200px) {
    .multi-column {
        column-count: 2;
        column-gap: 2rem;
        margin-top: 0.75rem;

    }
}

@media (max-width: 720px) {
    .multi-column {
        column-count: 1;
        column-gap: 2rem;
        margin-top: 0.75rem;

    }
}