@charset "utf-8";

.heading {
    width: 70%;
    margin: 0px auto 20px auto;
}

h1 {
    font-size: clamp(20px, 4vw, 38px);
    color: whitesmoke;
    margin: 100px auto 50px auto;
    text-align: center;
    animation: pageLoad 1.5s;
    position: relative;
}

    h1 span {
        color: whitesmoke;
        background-color: rgb(100, 35, 169);
        padding: 0px 10px 0px 10px;
        position: relative;
    }

.heading h1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    transform: translateY(-50%);
    top: 50%;
    background: rgb(100, 35, 169);
    z-index: -0;
    left: 0;
}

section {
    min-height: 45vh;
    align-items: center;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    flex-direction: row;
}

    section .container {
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
        animation: slideUp 1s;
    }

    section .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
    }

        section .cards .text-card {
            margin: 20px 20px 40px 20px;
            padding: 0px;
            width: 350px;
            height: auto;
            transform: scale(1);
            transition: all 0.25s ease-out;
        }

            section .cards .text-card:hover {
                transform: scale(1.05);
            }

            section .cards .text-card .icons {
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 20px;
                fill: rgb(100, 35, 169);
            }

.card-content {
    background: white;
    padding: 15px 15px 50px 15px;
    border: 1px solid rgb(100, 35, 169);
    height: 200px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
}

section .cards .text-card h3 {
    color: #333;
    text-transform: uppercase;
    margin: 0px 10px 10px 10px;
    text-align: center;
}

section .cards .text-card p {
    color: #6c7279;
    text-transform: none;
    text-align: justify;
    font-size: clamp(7px, 8vw, 15px);
    line-height: 1.5;
}

.btn-container {
    justify-content: center;
    margin: 0;
    display: flex;
    position: relative;
}

.btn {
    display: block;
    padding: 8px 16px;
    margin-top: -16px;
    border: 1px solid rgb(100, 35, 169);
    position: relative;
    background: white;
    text-decoration: none;
    color: rgb(100, 35, 169);
    font-weight: bold;
    font-size: clamp(10px,5vw,12px);
    transition: all 0.5s ease;
}

    .btn:hover {
        background-color: rgb(100, 35, 169);
        color: white;
    }

.reveal {
    position: relative;
    transform: translateY(-100px);
    opacity: 0;
}

    .reveal.visible {
        transform: translateY(0);
        opacity: 1;
    }

.container .cards .card1 {
    animation: cardUp 1s;
}

.container .cards .card2 {
    animation: cardUp 1.3s;
}

.container .cards .card3 {
    animation: cardUp 1.6s;
}

.container .cards .card4 {
    animation: cardUp 1.9s;
}

.container .cards .card5 {
    animation: cardUp 2.2s;
}

.container .cards .card6 {
    animation: cardUp 2.5s;
}

.container .cards .card7 {
    animation: cardUp 2.8s;
}

.container .cards .card8 {
    animation: cardUp 3.1s;
}

.container .cards .card9 {
    animation: cardUp 3.5s;
}

.images {
    margin : 0px 0px 100px 0px;
}

.images div {
    display: flex;
    margin: 0 10px 10px 10px;
}

.content {
    color: black;
    background-color: white;
    display: block;
    margin: 100px 120px 100px 120px;
    padding: 15px;
    text-transform: none;
    border : 1px solid rgb(100, 35, 169);
    text-align: justify;
    line-height: 1.7;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(150px);
    transition: all 1.5s ease;
}

    .content.appear.visible {
        transform: translateX(0);
        opacity: 1;
    }

/*Responsiveness*/
@media(max-width : 1024px) {
    section .cards .text-card {
        margin: 10px;
        padding: 0px;
        width: 350px;
        height: auto;
    }

    section .container {
        margin: 10px;
        padding: 0;
    }

    section .cards .text-card {
        margin: 20px;
        padding: 0;
        width: 300px;
        height: auto;
    }

        section .cards .text-card p {
            font-size: 13px;
            line-height: 1.5;
        }

    .card-content {
        background: white;
        padding: 20px 20px 50px 20px;
        height: 200px;
    }

    .content {
        margin: 60px 20px 100px 20px;
        padding: 15px;
        text-transform: none;
        line-height: 1.7;
    }
}

@keyframes cardUp {
    from {
        transform: translateY(200px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(200px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(-20px);
        filter: blur(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes pageLoad2 {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}
