.la-pack {
    padding: 110px 0;
    position: relative;
    z-index: 0;
    background-size: cover;
}

.la-pack::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 134, 227, 0.90);
    z-index: -1;
}

.la-pack .title {
    color: var(--text-color-white);
    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;
    max-width: 1440px;
    margin: 0 auto;
}

.la-pack .desc {
    color: var(--text-color-white);
    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;
    padding-top: 12px;
    max-width: 1440px;
    margin: 0 auto;
}

.la-pack .pack-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 50px;
    column-gap: 25px;
    margin-top: 60px;
}

.pack-list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pack-list .item:hover img {
    transform: scale(1.2);
}

.pack-list .img {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(64, 64, 64, 0.06);
    padding: 16px;
    transition: all 1s ease;
}

.pack-list .img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.pack-list .item .item-title {
    color: var(--text-color-white);
    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-top: 20px;
}

.pack-list .item .item-desc {
    color: var(--second-color);
    text-align: center;
    font-family: var(--font-family);
    font-size: 26px;
    font-style: var(--font-style);
    font-weight: 700;
    line-height: var(--line-height);
    /* 153.846% */
    text-transform: capitalize;
}

.la-pack .line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.20);
    margin: 60px 0;
}

.note-list .note-title {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: var(--font-title-desc);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height);
    text-transform: capitalize;
}

.note-list .note-item {
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: var(--line-height);
    /* 150% */
    text-transform: capitalize;
    margin-top: 8px;
}

@media screen and (max-width: 1500px) {
    .pack-list .item .item-desc {
        font-size: var(--font-title-desc);
    }
}

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

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

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