a {
    text-decoration: none;
}

/* ! Section Two Start  */

.sectionTwo {
    display: grid;
    gap: 30px;
    margin-top: 15px;
    margin-bottom: 40px;

    position: relative;
}

.sectionTwo__content {
    margin: auto;
    align-self: center;
}

.sectionTwo__cards {
    gap: 30px;
}

[class ^="sectionTwo__cards--"] {
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-1);
    border-style: solid;
    border-color: var(--color-purple-stroke);
    gap: 15px;
    background-image: linear-gradient(to bottom right, #130428, #251043, #38126D, #261045, #190634);
}

.sectionTwo__cardstitle{
    margin-left: -50%;
    margin-top: 8%;
}

.sectionTwo__cardsText{
    width: 200%;
}

.sectionTwo__btn {
    justify-self: center;
}

/* Laptop screen */

@media (max-width: 1023px) {
    .sectionTwo__cardstitle{
        margin-left: -20%;
    }
}

/* Tablet screen */

@media (max-width: 767px) {
    [class ^="sectionTwo__cards--"] {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectionTwo__cardstitle{
        margin-left: -50%;
        margin-top: 15%;
    }
}

/* Mobile screen */

@media (max-width: 567px) {
    .sectionTwo__cardstitle{
        width: 200%;
        margin-left: 0px;
        /* margin-top: 8%; */
    }

    [class ^="sectionTwo__cards--"] {
        grid-template-columns: repeat(1, 0.5fr);
    }
}


/* ! Section Two End  */
