/* ==================== TopGraphic ==================== */

.top-graphic {
    position: relative;
}

.top-graphic .cover {
    height: 820px;
}

.top-graphic .owl-carousel .owl-stage {
    padding: 0;
    margin: 0;
}

.top-graphic .owl-theme .owl-nav {
    margin-top: 0;
}

.top-graphic .owl-theme .owl-nav [class*='owl-'] {
    padding: 0;
    font-size: 20px;
    line-height: 55px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
}

.top-graphic .owl-carousel .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    border: 1px solid #d0d0d2;
    color: #d0d0d2;
    left: 0;
}

.top-graphic .owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    border: 1px solid #d0d0d2;
    color: #d0d0d2;
    right: 0;
}

.top-graphic .owl-carousel .owl-nav .owl-prev:hover,
.top-graphic .owl-carousel .owl-nav .owl-next:hover {
    border: 1px solid #333;
    color: #333;
}

.top-graphic .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 70px;
    width: 1410px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: start;
}

.top-graphic .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-graphic .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.top-graphic .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-secondary);
}

.top-graphic .owl-theme .owl-dots .owl-dot.active span,
.top-graphic .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-secondary);
    box-shadow: none;
}


/* ==================== TopSlider ==================== */

.top-slide {
    margin-top: 100px;
    position: relative;
}

.top-slide .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.top-slide .owl-theme .owl-nav {
    margin-top: 0;
}

.top-slide .owl-theme .owl-nav [class*='owl-'] {
    padding: 0;
    font-size: 70px;
    line-height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
}

.top-slide .owl-carousel .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    color: #ebebeb;
    left: -50px;
}

.top-slide .owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    color: #ebebeb;
    right: -50px;
}

.top-slide .owl-carousel .owl-nav .owl-prev:hover,
.top-slide .owl-carousel .owl-nav .owl-next:hover {
    color: #999;
}

.top-slide .owl-carousel .owl-dot {
    position: relative;
}

.top-slide .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.top-slide .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-slide .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.top-slide .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-primary);
}

.top-slide .owl-theme .owl-dots .owl-dot.active span,
.top-slide .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-primary);
    box-shadow: none;
}

.top-slide .wrapper {
    position: relative;
    display: block;
    /* text-align: center; */
}

.top-slide .wrapper:hover {
    text-decoration: none;
}

.top-slide .wordbox {
    margin-top: 20px;
    text-align: left;
}

.top-slide .thumb {
    display: inline-block;
    vertical-align: top;
    padding: 13px;
    border-radius: 50%;
    background: rgb(247, 197, 42);
    background: -moz-linear-gradient(-45deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    background: -webkit-linear-gradient(-45deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    background: linear-gradient(135deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f7c52a', endColorstr='#05afae', GradientType=1);
}

.top-slide .thumb>span {
    display: block;
    width: 124px;
    height: 124px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.top-slide .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-slide .title {
    font-weight: var(--fw-bold);
    color: var(--color-default);
    font-size: var(--typo-md);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
    /* text-align: center; */
}

.top-slide .desc {
    padding-right: 20px;
    color: var(--color-gray);
    font-size: var(--typo-sm);
    line-height: 1em;
    height: calc(1em * 2);
    -webkit-line-clamp: 2;
}


/* ==================== W-Head ==================== */

.W-head-box {
    position: relative;
    margin-bottom: 50px;
}

.W-head-box .title {
    font-size: 140px;
    font-weight: var(--fw-medium);
    line-height: 0.6em;
}

.W-head-box .desc {
    margin-top: 20px;
    font-size: 54px;
    line-height: 1em;
}


/* ==================== Widget News ==================== */

.W-news {
    margin-top: 100px;
    position: relative;
}

.W-news .obj {
    position: absolute;
    top: -80px;
    left: 50%;
    width: 100%;
    transform: translate(-50%, 0);
}

.W-news .W-head-box .select-search {
    margin-right: 20px;
}

.W-news .slider {
    position: relative
}

.W-news .slider .owl-theme .owl-nav {
    margin-top: 0;
}

.W-news .slider .owl-theme .owl-nav [class*='owl-'] {
    padding: 0;
    font-size: 40px;
    line-height: 55px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: none;
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
}

.W-news .slider .owl-carousel .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    color: #ebebeb;
    left: -50px;
}

.W-news .slider .owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    color: #ebebeb;
    right: -50px;
}

.W-news .slider .owl-carousel .owl-nav .owl-prev:hover,
.W-news .slider .owl-carousel .owl-nav .owl-next:hover {
    color: #999;
}

.W-news .slider .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    position: relative;
    width: 100%;
}

.W-news .cover {
    padding-top: 60.7%;
}

.W-news .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.W-news .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.W-news .slider .wrapper {
    border-radius: var(--rounded);
    overflow: hidden;
    display: block;
    position: relative;
}

.W-news .slider .wrapper:hover {
    text-decoration: none;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.1);
}

.W-news .slider .wrapper figure {
    position: relative;
}

.W-news .slider .wrapper .wordbox {
    height: 200px;
    width: 100%;
    padding: 20px;
}

.W-news .slider .wrapper .wordbox .title {
    font-size: var(--typo-sm);
    font-weight: var(--fw-bold);
    color: var(--color-default);
    line-height: 1em;
    height: calc(1em * 2);
    -webkit-line-clamp: 2;
    -webkit-transition: All 200ms ease;
    -moz-transition: All 200ms ease;
    -o-transition: All 200ms ease;
}

.W-news .slider .wrapper .wordbox .desc {
    font-size: var(--typo-xs);
    color: var(--color-gray);
    margin-top: 10px;
    line-height: 1em;
    height: calc(1em * 2);
    -webkit-line-clamp: 2;
}

.W-news .slider .wrapper .wordbox .date {
    margin-top: 20px;
    color: var(--color-default);
    font-size: var(--typo-sm);
}

.W-news .owl-carousel .owl-item .wrapper {
    transition: all 200ms ease;
    opacity: 0;
    visibility: hidden;
}

.W-news .owl-carousel .owl-item.active .wrapper {
    opacity: 1;
    visibility: visible;
}

.W-news .owl-carousel .owl-dot {
    position: relative;
}

.W-news .owl-theme .owl-nav.disabled+.owl-dots {
    /* margin-top: 40px; */
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.W-news .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.W-news .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.W-news .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-primary);
}

.W-news .owl-theme .owl-dots .owl-dot.active span,
.W-news .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-primary);
    box-shadow: none;
}


/* ==================== Widget Stat ==================== */

.wg-stat {
    margin-top: 100px;
}

.wg-stat .side {
    width: 570px;
    margin-right: 50px;
}

.wg-stat .side .text {
    position: relative;
    z-index: 10;
    margin-top: -140px;
    padding-left: 120px;
    font-size: 140px;
    font-weight: var(--fw-medium);
    line-height: 0.6em;
}

.wg-stat .item-list li+li .link:before {
    content: '';
    position: absolute;
    top: -2px;
    left: 10px;
    width: 540px;
    height: 1px;
    background-color: var(--color-border);
    transition: all 200ms ease;
}

.wg-stat .link {
    display: flex;
    align-items: center;
    padding: 30px;
    background-color: transparent;
    color: var(--color-default);
    border-radius: var(--rounded);
    border: 1px solid transparent;
    position: relative;
    z-index: 100;
}

.wg-stat .link:hover {
    background-color: var(--color-white);
    border-color: var(--color-border);
}

.wg-stat .link:hover:before {
    opacity: 0;
}

.wg-stat .link:hover .arrow {
    right: 30px;
    opacity: 1;
}

.wg-stat .link .icon {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 20px;
    background: rgb(247, 197, 42);
    background: -moz-linear-gradient(-45deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    background: -webkit-linear-gradient(-45deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    background: linear-gradient(135deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f7c52a', endColorstr='#05afae', GradientType=1);
}

.wg-stat .link strong {
    line-height: 1em;
}

.wg-stat .link .arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 60px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: var(--typo-sm);
    transition: all 400ms ease;
    opacity: 0;
}

.wg-stat .people {
    width: 465px;
    position: absolute;
    top: -190px;
    left: 100%;
    margin-left: -210px;
}


/* ==================== Widget Blog ==================== */

.wg-blog {
    padding-top: 200px;
    padding-bottom: 80px;
    position: relative;
    background: url('../../image/background/wg-blog.png') top center no-repeat;
}

.wg-blog-header {
    text-align: center;
    padding-top: 120px;
    padding-bottom: 160px;
}

.wg-blog-header img {
    max-width: 1110px;
    width: auto;
    margin: 0 auto;
}

.wg-blog-list .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.wg-blog-list .wrapper {
    display: block;
    padding: 30px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--rounded);
}

.wg-blog-list .cover {
    width: 70px;
    padding-top: 100%;
    border-radius: var(--rounded-xs);
}

.wg-blog-list .name {
    padding-left: 20px;
    color: var(--color-gray);
    font-weight: var(--fw-normal);
    font-size: 34px;
}

.wg-blog-list .title {
    margin: 15px 0;
    color: var(--color-default);
    font-weight: var(--fw-bold);
    font-size: var(--typo-md);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
}

.wg-blog-list {
    font-size: var(--typo-sm);
    font-weight: var(--fw-bold);
}

.wg-blog-list .btn {
    min-width: inherit;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--typo-xxs);
}

.wg-blog-list .btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.wg-blog-list .owl-carousel .owl-dot {
    position: relative;
}

.wg-blog-list .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.wg-blog-list .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wg-blog-list .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.wg-blog-list .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-primary);
}

.wg-blog-list .owl-theme .owl-dots .owl-dot.active span,
.wg-blog-list .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-primary);
    box-shadow: none;
}


/* ==================== Widget Blog ==================== */

.wg-blog-post {
    margin-top: 70px;
}

.wg-blog-post .wrapper {
    display: block;
    padding: 30px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--rounded);
}

.wg-blog-post .cover {
    width: 70px;
    padding-top: 100%;
    border-radius: var(--rounded-xs);
}

.wg-blog-post .inner {
    padding-left: 15px;
}

.wg-blog-post .title {
    color: var(--color-default);
    font-weight: var(--fw-bold);
    font-size: var(--typo-default);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
}

.wg-blog-post .time {
    margin-top: 0;
    color: var(--color-gray);
    font-weight: var(--fw-normal);
    font-size: var(--typo-sm);
    line-height: 1em;
}

.wg-blog-post .follow {
    padding-left: 20px;
}

.wg-blog-post .follow .link {
    height: 40px;
    line-height: 38px;
    padding: 0 12px;
    display: block;
    border: 1px solid var(--color-primary);
    border-radius: var(--rounded);
    color: var(--color-primary);
    font-size: var(--typo-xxs);
    font-weight: var(--fw-medium);
}

.wg-blog-post .follow .link:hover {
    border-color: transparent;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.wg-blog-post .follow .link span {
    font-size: 0.8em;
}

.wg-blog-post .thumb {
    margin-top: 20px;
    border-radius: var(--rounded);
    position: relative;
    padding-top: 61%;
    overflow: hidden;
}

.wg-blog-post .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wg-blog-post .badge {
    margin-top: 20px;
    border-radius: 20px;
    padding: 5px 15px;
    color: var(--color-default);
    font-weight: var(--fw-medium);
    font-size: var(--typo-xs);
}

.wg-blog-post .desc {
    margin-top: 15px;
    font-size: var(--typo-default);
    line-height: 1em;
    height: 2em;
    -webkit-line-clamp: 2;
}

.wg-blog-post .action {
    margin-top: 30px;
    display: flex;
}

.wg-blog-post .action .link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    margin-right: 10px;
}

.wg-blog-post .action .link:hover {
    border-color: var(--color-default);
}

.wg-blog-post .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.wg-blog-post .wrapper {
    opacity: 0.3;
}

.wg-blog-post .owl-item.active .wrapper {
    opacity: 1;
}

.wg-blog-post .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.wg-blog-post .owl-carousel .owl-dot {
    position: relative;
}

.wg-blog-post .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.wg-blog-post .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wg-blog-post .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.wg-blog-post .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-primary);
}

.wg-blog-post .owl-theme .owl-dots .owl-dot.active span,
.wg-blog-post .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-primary);
    box-shadow: none;
}

.wg-blog-post .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    width: 100%;
}

.wg-blog-post .owl-theme .owl-nav [class*="owl-"] {
    transform: translate(0, -50%);
    position: absolute;
    margin: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--typo-xxs);
    transition: all 200ms ease;
}

.wg-blog-post .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: var(--color-primary);
}

.wg-blog-post .owl-theme .owl-nav .owl-prev {
    left: -90px;
}

.wg-blog-post .owl-theme .owl-nav .owl-next {
    right: -90px;
}


/* ==================== Widget Communication ==================== */

.wg-com {
    padding: 60px 0;
}

.wg-com-side {
    margin-right: 30px;
    width: 600px;
    height: 610px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--rounded);
}

.wg-com-side .header {
    padding: 30px 30px 20px 30px;
}

.wg-com-side .header .title {
    font-weight: var(--fw-bold);
    font-size: var(--typo-xl);
    line-height: 1em;
}

.wg-com-side .header .link {
    display: block;
    margin-top: 7px;
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    font-size: var(--typo-md);
    line-height: 1em;
}

.wg-com-side .header .link:hover {
    color: var(--color-secondary);
}

.wg-com-side .body {}

.wg-com-list .wrapper {
    padding: 10px 30px;
    display: block;
    color: var(--color-default);
    transition: all 200ms ease;
}

.wg-com-list .wrapper:hover {
    text-decoration: none;
    background-color: var(--color-gray-200);
}

.wg-com-list .no {
    width: 40px;
    font-weight: var(--fw-bold);
    font-size: var(--typo-default);
}

.wg-com-list .cover {
    width: 70px;
    padding-top: 100%;
}

.wg-com-list .inner {
    padding: 0 15px;
}

.wg-com-list .title {
    font-weight: var(--fw-bold);
    font-size: var(--typo-default);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
}

.wg-com-list .desc {
    color: var(--color-gray);
    font-size: var(--typo-xs);
}

.wg-com-list .play {
    color: var(--color-gray);
    font-size: var(--typo-xs);
    padding-right: 38px;
}

.wg-com-list .play .icon {
    position: absolute;
    top: 4px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 16px;
    padding-left: 3px;
}

.wg-com-main {
    position: relative;
}

.wg-com-main .obj {
    width: 500px;
    position: absolute;
    bottom: 100%;
    margin-bottom: -80px;
    right: -100px;
    pointer-events: none;
}

.wg-com-main .header {
    padding: 30px 0 30px 0;
}

.wg-com-main .header .title {
    font-weight: var(--fw-bold);
    font-size: var(--typo-xl);
    line-height: 1em;
}

.wg-com-main .header .link {
    display: block;
    margin-top: 7px;
    color: var(--color-primary);
    font-weight: var(--fw-medium);
    font-size: var(--typo-md);
    line-height: 1em;
}

.wg-com-main .header .link:hover {
    color: var(--color-secondary);
}

.wg-com-live .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.wg-com-live .link:hover .icon {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.wg-com-live .cover {
    overflow: hidden;
    border-radius: var(--rounded);
    padding-top: 62%;
    position: relative;
}

.wg-com-live .cover:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 60%;
    opacity: 0.8;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(top, rgba(21, 30, 45, 0) 0%, rgba(21, 30, 45, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(21, 30, 45, 0) 0%, rgba(21, 30, 45, 1) 100%);
    background: linear-gradient(to bottom, rgba(21, 30, 45, 0) 0%, rgba(21, 30, 45, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00151e2d', endColorstr='#151e2d', GradientType=0);
}

.wg-com-live .inner {
    padding: 0 120px 40px 40px;
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
}

.wg-com-live .inner .title {
    color: var(--color-white);
    font-weight: var(--fw-bold);
    font-size: var(--typo-lg);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
}

.wg-com-live .inner .desc {
    color: var(--color-white);
    font-size: var(--typo-sm);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
}

.wg-com-live .inner .icon {
    position: absolute;
    top: 2px;
    right: 40px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    font-size: 28px;
    color: var(--color-secondary);
    transition: all 200ms ease;
}

.wg-com-live .owl-theme .owl-nav.disabled+.owl-dots {
    left: 40px;
    position: absolute;
    bottom: 30px;
    width: auto;
    display: flex;
    justify-content: start;
}

.wg-com-live .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wg-com-live .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-white);
}

.wg-com-live .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-white);
}

.wg-com-live .owl-theme .owl-dots .owl-dot.active span,
.wg-com-live .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-white);
    box-shadow: none;
}


/* ==================== Widget About ==================== */

.wg-about {
    padding-top: 100px;
    padding-bottom: 400px;
    position: relative;
}

.wg-about .side {
    margin-right: 100px;
    position: relative;
    left: 0px;
    width: 600px;
}

.wg-about .side>img {
    position: relative;
    z-index: 10;
}

.wg-about .side .obj {
    width: 960px;
    position: absolute;
    top: -50px;
    right: 14%;
}

.wg-about .action {
    margin-top: 30px;
}

.wg-about-list .link {
    display: block;
    padding: 30px;
    border-radius: var(--rounded);
    background-color: var(--color-gray-200);
}

.wg-about-list .link:hover {
    background-color: var(--color-white);
    box-shadow: 0 16px 30px rgba(146, 146, 146, 0.16);
}

.wg-about-list .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.wg-about-list .owl-carousel .owl-item .link {
    transition: all 200ms ease;
    opacity: 0;
    visibility: hidden;
}

.wg-about-list .owl-carousel .owl-item.active .link {
    opacity: 1;
    visibility: visible;
}

.wg-about-list .thumb img {
    position: relative;
    left: -20px;
    width: 145px;
}

.wg-about-list .title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: var(--fw-bold);
    color: var(--color-gray);
    font-size: var(--typo-md);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
}

.wg-about-list .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.wg-about-list .owl-theme .owl-nav {
    position: absolute;
    top: -85px;
    margin: 0;
    width: 100%;
}

.wg-about-list .owl-theme .owl-nav [class*="owl-"] {
    transform: translate(0, -50%);
    position: absolute;
    margin: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--typo-xs);
    transition: all 200ms ease;
}

.wg-about-list .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: var(--color-primary);
}

.wg-about-list .owl-theme .owl-nav .owl-prev {
    left: auto;
    right: 90px;
}

.wg-about-list .owl-theme .owl-nav .owl-next {
    right: 0;
}

.bottom-slide {
    margin-top: 100px;
    position: relative;
}

.bottom-slide .owl-carousel .owl-stage {
    margin: 0;
    padding: 0;
}

.bottom-slide .owl-theme .owl-nav {
    margin-top: 0;
}

.bottom-slide .owl-theme .owl-nav [class*='owl-'] {
    padding: 0;
    font-size: 70px;
    line-height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    /* background: none; */
    display: inline-block;
    cursor: pointer;
    border-radius: 0px;
}

.bottom-slide .owl-carousel .owl-nav .owl-prev {
    width: 50px;
    height: 50px;
    color: #ebebeb;
    left: -50px;
}

.bottom-slide .owl-carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    color: #ebebeb;
    right: -50px;
}

.bottom-slide .owl-carousel .owl-nav .owl-prev:hover,
.bottom-slide .owl-carousel .owl-nav .owl-next:hover {
    color: #999;
}

.bottom-slide .owl-carousel .owl-dot {
    position: relative;
}

.bottom-slide .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bottom-slide .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-slide .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.bottom-slide .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-primary);
}

.bottom-slide .owl-theme .owl-dots .owl-dot.active span,
.bottom-slide .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-primary);
    box-shadow: none;
}

.bottom-slide .wrapper {
    position: relative;
    display: block;
    text-align: center;
}

.bottom-slide .wrapper:hover {
    text-decoration: none;
}

.bottom-slide .wordbox {
    margin-top: 20px;
    text-align: left;
}

.bottom-slide .thumb {
    display: inline-block;
    vertical-align: top;
    padding: 13px;
    border-radius: 50%;
    background: rgb(247, 197, 42);
    background: -moz-linear-gradient(-45deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    background: -webkit-linear-gradient(-45deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    background: linear-gradient(135deg, rgba(247, 197, 42, 1) 0%, rgba(5, 175, 174, 1) 60%, rgba(5, 175, 174, 1) 80%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f7c52a', endColorstr='#05afae', GradientType=1);
}

.bottom-slide .thumb>span {
    display: block;
    width: 124px;
    height: 124px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.bottom-slide .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-slide .title {
    font-weight: var(--fw-bold);
    color: var(--color-default);
    font-size: var(--typo-md);
    line-height: 1em;
    height: 1em;
    -webkit-line-clamp: 1;
    text-align: center;
}

.bottom-slide .desc {
    padding-right: 20px;
    color: var(--color-gray);
    font-size: var(--typo-sm);
    line-height: 1em;
    height: calc(1em * 2);
    -webkit-line-clamp: 2;
}

.bottom-slide .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.bottom-slide .owl-theme .owl-dots .owl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-slide .owl-theme .owl-dots .owl-dot span {
    margin: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    color: var(--color-gray-100);
}

.bottom-slide .owl-theme .owl-dots .owl-dot.active {
    border-color: var(--color-primary);
}

.bottom-slide .owl-theme .owl-dots .owl-dot.active span,
.bottom-slide .owl-theme .owl-dots .owl-dot:hover span {
    background: none;
    background-color: var(--color-primary);
    box-shadow: none;
}

.bottom-slide .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    margin: 0;
    width: 100%;
}

.bottom-slide .owl-theme .owl-nav [class*="owl-"] {
    transform: translate(0, -50%);
    position: absolute;
    margin: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--typo-xxs);
    transition: all 200ms ease;
}

.bottom-slide .owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: var(--color-primary);
}

.bottom-slide .owl-theme .owl-nav .owl-prev {
    left: -90px;
}

.bottom-slide .owl-theme .owl-nav .owl-next {
    right: -90px;
}