/* section 1 */
.page_tthv {
    background-color: var(--Background, #FFF9DC);
}

.tthv_section_1 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.tthv_section_1::after {
    content: "";
    background-image: url(./images/icon/tthv_bg_icon_2.png);
    width: 115px;
    height: 115px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: 0;
}

.tthv_section_1 .box-left .title {
    font-size: 44px;
    margin-bottom: 40px;
    position: relative;
}

.tthv_section_1 .box-left .title::after {
    content: "";
    width: 74px;
    height: 71px;
    background-image: url(./images/icon/tthv_bg_icon_1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 6.5%;
    bottom: 90%;
    display: block;
}

.tthv_section_1 .box-left .box-text {
    font-size: 22px;
}

.tthv_section_1 .box-left p {
    line-height: 48px;

}

.tthv_section_1 .box-left .box-text span {
    background-color: #fff;
    border-radius: 50px;
    font-weight: 700;
    color: var(--color-9);
    padding: 6px 15px;
}

.tthv_section_1 .box-right img {
    position: absolute;
    right: 0;
    bottom: 0;

}

/* section 2 */
.tthv_section_2 {
    padding: 60px 0;
}

.tthv_section_2 .box-head .desc {
    color: var(--color-2)
}

.list-tthv {
    margin-top: 30px;
}

.list-tthv .tthv-box-inner {
    padding: 0;
    margin-bottom: 30px;
}

/* section 3 */
.tthv_video {
    padding: 60px 0;
}

.tthv_video .box-image {
    position: relative;
}

.tthv_video .inner img {
    border-radius: 20px;
}

.play-btn {
    background-color: #fff !important;
    border-radius: 50%;
}

.play-btn .btn {
    /* line-height: 70px !important; */
    width: 80px;
    height: 80px;
    overflow: visible;
    position: relative;
    border-radius: 50%;

}

.btn-floating {
    color: var(--color-2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    background-color: #fff;
    border-radius: 50%;
    transition: background-color .3s;
    cursor: pointer;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-hover-scale {
    transform: scale(1);
    transition: all .1s;
}

.pulse::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
    border-radius: 50%;
    transition: opacity .3s, transform .3s;
    animation: pulse-animation 1s cubic-bezier(.24, 0, .38, 1) infinite;
    z-index: -1;
}

.btn-floating .fa-play {
    font-size: 26px;
}

.btn.btn-hover-red:hover {
    border-color: var(--color-2) !important;
    background: var(--color-2) !important;
    color: #fff !important;
}

@keyframes pulse-animation {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

@media screen and (max-width:768px) {
    .tthv_section_1 {
        padding-bottom: 0;
    }

    .tthv_section_1::after {
        display: none;
    }
    .tthv_section_1 .box-left .title{
        font-size: 32px;
    }

    .tthv_section_1 .box-right {
        text-align: right;
    }

    .tthv_section_1 .box-right img {
        position: relative;
        right: -20px;
        bottom: 0;

    }

    .tthv_section_1 .box-left .box-text {
        font-size: 18px;
    }

    .tthv_section_1 .box-left .box-text br {
        display: none;

    }

}