/* Utility Classes */

.container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: auto;
    padding: 0 40px;
}

.flex-column {
    flex-direction: column;
}

.flext-start {
    justify-content: space-between;
    align-items: flex-start;
}

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

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100%;
}


.card {
    overflow: hidden;
    background-color: white;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    margin: 10px;
}

.card-label {
    padding: 5px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.5);
    position: relative;
    bottom: -200px;
    transition: bottom 0.5s;
}

.card-label:hover {
    bottom: 0px;
}
.btn {
    display: inline-block;
    padding: 10px 30px;
    cursor: pointer;
    background: --var(--primary-color);
    color: var(--cots-light-gray);
    border: none;
    border-radius: 30px;
}

.btn:hover {
    transform: scale(0.98);
}

.btn-outline {
    background-color: transparent;
    border: 1px white solid;
}

.text-centre {
    text-align: center;
}

.m-1 {
    margin: 1rem;
}

.my-1 {
    margin: 1rem;
}