.la-option {
    padding-bottom: 110px;
    background: #F2F9FD;
}

.la-option .title {
    color: var(--text-color-black);
    text-align: center;
    /* font-family: var(--font-family); */
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height);
    text-transform: capitalize;
    padding-top: 110px;
}

.la-option .desc {
    color: #666;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: var(--font-title-desc-weight);
    line-height: var(--line-height);
    text-transform: capitalize;
    margin-top: 12px;
}

.la-option .option-list {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.option-list .item {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s all ease;
}

.option-list .item:hover img {
    transform: scale(1.1);
}

.option-list .item:hover a {
    background: var(--second-color);
}

.option-list .item img {
    width: 300px;
    height: 216px;
    object-fit: cover;
    border-radius: 10px;
}

.option-list .desc {
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    margin: 24px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.option-list a {
    display: flex;
    height: 50px;
    padding: 10px 42px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: #ECEDF2;
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
}

@media screen and (max-width: 1919px) {
    .la-option .option-list {
        gap: 30px;
    }

    .option-list .item img {
        height: auto;
        aspect-ratio: 10 / 8;
    }
}

@media screen and (max-width: 1280px) {
    .option-list a {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 992px) {
    .la-option .option-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .option-list .item {
        width: auto;
    }
}

@media screen and (max-width: 768px) {
    .la-option .option-list {
        grid-template-columns: repeat(2, 1fr);
    }
}