/********************************
************  TIPS  *************
*********************************/
.tips-section {
    margin: 46px 0 62px;
}

.tips-section .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
}

.tips-section h2 {
    font-family: var(--f-montserrat);
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    margin-top: 0;
}

.tips-section .tips-box-container {
    display: flex;
    gap: 52px;
}

.tips-section .view-more {
    color: var(--c-bkg);
    font-family: var(--f-montserrat);
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    margin-top: 24px;
    text-decoration: underline;
}
@media (max-width: 991px) {
    .tips-section .tips-box-container .tips-box:last-child {
        display: none;
    }
}
@media (max-width: 768px) {
    .tips-section .view-more {
        margin-top: 8px;
    }
}

/********************************
**********  TIPS BOX  ***********
*********************************/
.tips-box {
    background: var(--c-whitish);
    box-shadow: 0px 1.15px 2.31px 0px #00000026;
    padding: 24px 16px;
    border-radius: var(--radius-sm);
    /* width: 393px; */
    font-family: var(--f-noto);
}
.tips-box .img {
    position: relative;
}
.tips-box .img img {
    width: 100%;
}
.tips-box .img .button-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
}
.tips-box .title {
    font-weight: 700;
    line-height: 24px;
    margin-top: 24px;
}
.tips-box p {
    font-weight: 400;
    line-height: 24px;
}
.tips-box .btn {
    margin: 24px auto 0;
    height: 48px;
    /* width: 176px; */
    width: fit-content;
}

@media (max-width: 768px) {
    .tips-section {
        margin: 28px 0 32px;
    }
    .tips-section .container-fluid {
        padding-right: 12px;
        padding-left: 12px;
    }
    .tips-section .tips-box-container > div:last-child {
        display: none;
    }
}
@media (max-width: 576px) {
    .tips-section .tips-box-container > div:nth-child(2) {
        display: none;
    }
    .tips-box {
        padding: 0;
        background-color: #fff;
        box-shadow: none;
    }
}
