.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0 10%;
    margin-top: 70px;
}

.ct-box {
    text-align: center;
    border: 2px solid;
    padding-block: 30px;
    background-color: rgb(1, 1, 42);
    width: 95%;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.ct-box a {
    text-decoration: none;
   color: #fff;
}



.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10%;
    margin-top: 70px;
}

.welcome-img {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

@media only screen and (max-width: 1296px) {
    .welcome-grid {
        display: flex;
        flex-direction: column-reverse;
        margin: 0 auto !important;
        width: 100%;
    }

    .welcome-text {
        margin-top: 50px;
    }

    .welcome-img {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        width: 100%;
        margin-block: 50px;
    }

    .ct-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .ct-box {
        margin-bottom: 50px;
    }
}

@media screen and (max-width:600px) {
    .ct-grid {
        display: grid;
        grid-template-columns: 1fr;
    }
}