@import url('https://fonts.googleapis.com/css2?family=Siemreap&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    /* background: #eee; */
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    /* font-size: 14px; */
    color: #000;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    /* top: 0px; */
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: var(--swiper-theme-color);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

/*  */
body {
    font-family: 'Siemreap', sans-serif;
}


.container {
    width: 1200px;
}

.bg-hero {
    height: 600px;
}

.skewed {
    position: absolute;
    /* top: 0; */
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #ff8d15;
    transform: skewY(20deg);
    transform-origin: top right;
}

.hero-banner {
    position: relative;
    z-index: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px
}

.bg-text {
    padding-top: 90px;
}

.bg-text h1 {
    color: #333;
    font-size: 35px;
    margin-bottom: 10px;
}

.bg-text p {
    font-size: 30px;
    font-weight: bold;
    width: 550px;
    color: #333;
    margin-bottom: 20px;
}

.bg-img img {
    width: 800px;
}

.hero-banner .btn {
    padding: 20px 0 20px 0;
}

.hero-banner .btn .bg-btn {
    font-size: 18px;
}

.hero-banner .btn .bg-btn-ex {
    background-color: #333;
    color: #ddd;
    font-size: 18px;
}

.hero-banner .btn .bg-btn-ex:hover {
    background-color: #ff8d15;
    color: white;
    transition: 0.2s;
}

.row {
    display: flex;
    flex-wrap: wrap;
}


.col-3 {
    width: 25%;
    padding: 0 15px;
}

.trending-card-head {
    padding: 50px;
    text-align: center;
    font-weight: bold;
    margin: auto;
}

.trending-card-head p {
    font-size: 16px;
    margin-bottom: 10px;
}

.trending-card-head .line {
    width: 50px;
    height: 5px;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: #ff8d15;
}

.trending-card {
    display: flex;
    /* gap: 150px; */
    text-align: center;
}

.card-img {
    display: flex;
    justify-content: center;
    position: relative;
    height: 250px;
    z-index: 11;
    border-radius: 30px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.card-trending {
    height: 100%;
    width: 100%;
    position: relative;
    /* border: 0.2px solid #333; */
    border-radius: 10px;
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .13), 0 1px 4px 0 rgba(0, 0, 0, .11);
}

.card-trending:hover {
    transition: property duration timing-function delay;
    transform: scale(1.1);
    transition: opacity 3s ease;
    cursor: pointer;
    box-shadow: 0px 16px 48px 0px rgba(0, 0, 0, 0.176);
}

.card-bg {
    bottom: 10px;
    border-radius: 10px;
    /* top: 60px; */
}


.card-content-text {
    margin: auto;
    position: relative;
    z-index: 12;
    margin-bottom: 20px;
    padding: 20px;
    display: inline-block;
    align-items: center;
}

.card-content-text .card-title {
    text-align: center;
    font-size: 20px;
    color: #ff8d15;
    font-weight: bold;
}

.card-content-text .card-description {
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

.card-btn {
    display: flex;
    justify-content: center;
    font-size: 15px;
    background-color: #ff8d15;
    font-family: 'Siemreap', sans-serif;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.5s ease-out;
}

.card-btn:hover {
    background-color: #333;
    color: #ff8d15;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff8d15;
    color: white;
    font-size: 18px;
}

.btn .icon .heart-center {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn .icon:hover {
    background-color: #333;
    cursor: pointer;
    transition: 0.2s;
}

.btn .icon i:hover {
    color: #ff8d15;
    cursor: pointer;
    transition: 0.2s;
}