body {
    overflow-x: clip;
}

body>section {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s, transform 1s;
    /* transition: all 0.6s; */
    transform: translate(16px, 0) scale(1.03);
    /* filter: blur(5px); */
}

body>section.show {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 0) scale(1);
    /* filter: blur(0); */
}



.items-k {
    display: flex;
    justify-content: center;
    margin: 36px 0;
    flex-wrap: wrap;
    row-gap: 54px;
    column-gap: 26px;
}

.items-k article {
    border-radius: 10px;
    color: #000748;
    position: relative;
    box-shadow: 0px 13px 36px #00000029;
}

.items-k li .box-img {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.items-k li img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
}

.items-k li .content {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    height: 205px;
    flex-direction: column;
}

.items-k li main {
    position: relative;
    margin-top: 16px;
}

.items-k li h1 {
    font-size: 22px;
    line-height: 26px;
}

.items-k li header p {
    font-size: 14px;
    margin-top: 3px;
}

.ico {
    display: inline-block;
}

.ico.clock {
    width: 12px;
    height: 12px;
    background: url('../img/ico/clock.png') 0 0;
}

.items-k .time-hour {
    font-weight: bold;
}

.items-k .time-hour .clock {
    margin: 4px 4px 0 0;
}

.items-k li.trending .price {
    text-decoration: line-through;
}

.items-k li.trending .price-only {
    margin-top: 5px;
}

.items-k li.trending .promo-price {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 3px;
}

.items-k li.trending button {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 14px;
    padding: 12px 0;
    background: #00DBB9;
}

.items-k li.trending .guarantee {
    text-align: center;
    margin-top: 6px;
    font-size: 14px;
}


#bt-news {
    width: 100%;
}

#bt-news a {
    padding: 18px 54px;
    margin: 54px auto 0 auto;
    font-size: 20px;
    display: table;
}



.items-k li.courses .price {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.items-k .descount {
    position: absolute;
    top: -11px;
    left: 23px;
    z-index: 10;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: #FE5B1D;
}

.items-k .stamp {
    position: absolute;
    top: 149px;
    right: -10px;
    width: 70px;
    height: 70px;
    background-image: url('../img/ico/stamp-epc-70.webp');
}


.bt-know {
    font-weight: bold;
    font-size: 20px;
    color: #00DBB9;
    background: unset;
}

.items-k li .bt-know {
    position: absolute;
    right: 0;
    bottom: 0;
}


.box-newslatter h1 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.box-newslatter input {
    width: 100%;
    padding: 20px 16px;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
}

.box-newslatter button {
    width: 100%;
    border-radius: 10px;
    padding: 20px 12px;
    font-size: 18px;
    font-weight: bold;
    color: #000748;
    background: #00DBB9;
}


.pagination {
    display: flex;
    justify-self: center;
    gap: 20px;
    margin: 60px 0;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #eff1f4;
    border-radius: 4px;
    font-weight: bold;
    color: #97A8BA;
    transition: all 0.1s;
}

.pagination a.active,
.pagination a:hover {
    border: 2px solid #00dbb9;
    color: #000748;
    transform: scale(1.2);
}

.pagination .arrow2 {
    width: 30%;
    height: 30%;
    background: url('../img/arrow.svg') no-repeat;
    background-size: contain;
}

.pagination .arrow-right2 {
    transform: rotate(180deg);
}



footer .social-links {
    gap: 16px;
}

#footer3 #unitri {
    margin-left: 12px;
    filter: brightness(1);
    transition: filter 0.3s;
}

#footer3 #unitri:hover {
    filter: brightness(1.4);
}


#alert-main {
    position: fixed;
    top: 150px;
    right: 0;
    z-index: 100;
    transition: all 0.3s;
}

#alert-main div {
    opacity: 0;
    margin-bottom: 8px;
    transition: all 0.3s;
}

#alert-main .ok {
    opacity: 1;
    border-radius: 10px 0 0 10px;
    background-color: #00DBB9;
    font-weight: bold;
    padding: 10px 16px 10px 30px;
}



.bt-close {
    width: 50px;
    height: 50px;
    overflow: hidden;
    padding: 0px;
}

.bt-close div {
    width: 50%;
    margin: -12% 0 0 23%;
    height: 50%;
    border-right: 2px solid #000748;
    border-bottom: 2px solid #000748;
}

.bt-close div:first-child {
    rotate: 45deg;
}

.bt-close div:last-child {
    margin-top: 16%;
    rotate: 225deg;
}


.bt-play {
    position: absolute;
    z-index: 50;
    inset: 0;
    cursor: pointer;
    transition: transform 0.3s, opacity 0.3s ease;
}

.bt-play:hover {
    transform: scale(1.3);
    opacity: 0.9;
}

.playing .bt-play {
    opacity: 0;
    pointer-events: none;
}