.header-line2-box{
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 5px 5px 5px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: right;
    column-gap: 25px;
    box-sizing: border-box;
    align-items: center;
    overflow: hidden;
    animation: header_line2_box 500ms linear forwards;
    position: absolute;
    bottom: -40px;
    backdrop-filter: blur(4px);
    background-color: #9c9c9e1f;
}
@keyframes header_line2_box {
    100%{
        transform: translateX(0%);
    }0%{
        transform: translateX(200%);
    }
}
.header-line2-box.hide{
    animation: header_line2_box_hide 500ms linear forwards;
}
.header-line2-box.displayNone{
    display: none;
}
@keyframes header_line2_box_hide {
    0%{
        transform: translateX(0%);
    }100%{
        transform: translateX(200%);
    }
}
.header-line2-breaker{
    position: relative;
    text-wrap: nowrap;
}
.header-line2-breaker::before{
    content: "";
    position: absolute;
    left: -13px;
    height: 20px;
    top: -4px;
    width: 2px;
    border-radius: 10px;
    background-color: #000;
}
.header-line-2-items-box{
    direction: ltr;
    width: calc(100% - 220px);
}


.scroll{
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}
.scroll div{
    white-space: nowrap;
    animation: animate var(--t) linear infinite;
    animation-delay: calc(var(--t) / -2);
}
.scroll div:nth-child(2){
    animation: animate2 var(--t) linear infinite;
    animation-delay: calc(var(--t) * -1);
}
@keyframes animate {
    100%{
        transform: translateX(100%);
    }
    0%{
        transform: translateX(-100%);
    }
}
@keyframes animate2 {
    100%{
        transform: translateX(0);
    }
    0%{
        transform: translateX(-200%);
    }
}
.scroll div span{
    display: inline-flex;
    margin: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background-color: #000d29;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
    cursor: default
}

















.offer-time-box-box{
    width: 100%;
    min-height: 200px;
        display: flex;
    align-content: center;
    align-items: center;
    margin-top: 40px;
    background-color: #fff;
}

.offer-time-box{
    width: 98%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.offer-time-box div{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    line-height: 40px;
    text-align: center;
}
.offer-text{
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    font-size: 1.7em!important;
}
.offer-time-box{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
}
@media (max-width:810px) {
    .offer-time-box-r{flex-wrap: wrap!important;row-gap: 15px;}
}
.timer-box{
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
}
.timer-box div{
    width: 100%;
}
.timer-number{
    font-size: 1.2em;
    color: #c80000;
    font-weight: 600;
}
.timer-text span{
    font-size: 17px;
    font-weight: 500;
}
.offer-time-box div{
    align-items: flex-start;
}
.timer-breaker{
    text-align: center;
    color: #c80000;
}
.warning{
    color: #c80000;
}
.bold-plus{
    font-size: 1.2em;
    font-weight: 800;
}

















.body-div-1-box{
    margin-top: 10px;
}
.body-div-1-items-box{
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    row-gap: 25px;
    column-gap: 25px;
}

.body-div-1-item-box{
    width: 100%;
    min-width: 300px;
    max-width: 370px;
    height: 730px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 #000;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    overflow: hidden;
}
.body-div-1-item-box-div-1{
    width: 100%;

}
.body-div-1-item-img{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 5px;
}
.body-div-1-item-img img:hover{
    scale: 1.05;
}
.body-div-1-item-button-box{
    width: 100%;
    height: 95px;
}
.course-button,.course-button2{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-size: 0.9em;
    font-weight: 500;
    border-radius: 7px;
}
.course-button{
    color: #fff;
    background-color: #000d29;
}
.course-button2{
    margin-top: 5px;
    border: 2px solid #000;
    box-sizing: border-box;
    color: #000;
    height: 40px;
}

.body-div-1-item-img img{
    width: 100%;
    border-radius: 5px;
    transition: all 200ms linear;
}
.body-div-1-item-text-title{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 500;
}
.body-div-1-item-text-text{
    line-height: 19px;
}
.body-div-1-item-text-text ul{
    list-style: inside;
    margin-right: 10px;
    margin-top: 10px;
    line-height: 22px;
}