html,
body {
    background-color: #e5e5e5;
    font-size: 24px;
}
.row>* {
    padding-left: 10px;
    padding-right: 10px;
}
a:hover {
    color: var(--primary-color);
}

.primary-color {
    color: var(--primary-color) !important;
}

.bg-gray {
    background: var(--gray-color);
}

figure {
    margin-bottom: 0;
}

.object-fit {
    display: block;
    overflow: hidden;
    position: relative;
}

.object-fit:before {
    content: "";
    display: block;
    width: 100%;
}

.object-fit>img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.gradient-box {
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-image: linear-gradient(white, white), linear-gradient(to right, #EC4596, #8F3C9C);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.text-primary-gradient {
    background: #EC4596;
    background: -webkit-linear-gradient(to right, #EC4596 0%, #EC4596 60%, #8F3C9C 100%);
    background: -moz-linear-gradient(to right, #EC4596 0%, #EC4596 60%, #8F3C9C 100%);
    background: linear-gradient(to right, #EC4596 0%, #EC4596 60%, #8F3C9C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading {
    font-family: 'true_boldregular';
    display: inline-block;
	font-size: 64px;
	line-height: 50px;
    padding: 22px 0px 22px 26px;
	position: relative;
	margin-bottom: 0;
}
.heading:before {
	content: '';
    width: 10px;
    height: 100%;
    max-height: 94px;
    background-color: #F2408E;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}
.ads {
    background-color: #e5e5e5;
    padding: 35px 0;
    margin: 0 auto;
}

.ads img {
    margin: 0 auto;
    display: block;
    max-width: 95%;
    height: auto;
}

.gradient-text {
    background: linear-gradient(to right, #EC4596 0%, #8F3C9C 100%);
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(0, 0, 0, 1);
    display: block;
    transition: color 0.3s ease-in-out;
    position: relative;
}

.gradient-text:hover {
    color: rgba(0, 0, 0, 0);
}

.border-gradient {
    border: double 3px transparent;
    border-radius: 8px;
    background-image: linear-gradient(white, white), linear-gradient(to right, #8F3C9C, #F2408E);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.btn-tag,
.btn-head-tag {
    border: 1px solid var(--tag-color);
    color: var(--tag-color);
    transition: all 0.5s;
    border-radius: 4px;
    font-size: 24px;
    line-height: 26px;
    padding: 7px 14px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 14px;
    text-indent: 0;
}

.btn-head-tag {
    font-family: 'true_boldregular';
}

.btn-tag:hover,
.btn-head-tag,
.btn-head-tag:hover {
    color: #FFF;
    background: var(--tag-color);
}

.tags {
    margin-top: 20px;
    text-indent: 10px;
}

.tags-outline .btn-tag {
    background-color: transparent;
    border: 1px solid #FFF;
    color: #FFF;
}

.tags-outline .btn-tag:hover,
.tags-outline .btn-head-tag,
.tags-outline .btn-head-tag:hover {
    color: var(--tag-color);
    background-color: #FFF;
}

.btn-head-tag {
    pointer-events: none;
    position: relative;
}

.btn-head-tag:before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    left: -10px;
    top: 0;
    display: block;
    background: var(--tag-color);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.tags-outline .btn-head-tag:before {
    background-color: #FFF;
}


.article {
    margin-bottom: 45px;
}

.article>.container {
    box-shadow: 0 0 0 3px rgb(0 0 0 / 2%);
    background-color: #FFF;
    padding: 29px 45px;
}

.breadcrumb {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 28px;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #979797;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-family: 'true_boldregular';
}

.breadcrumb-item:hover a {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\e91a";
    font-size: 9px;
    font-family: 'icomoon';
    padding-top: 2px;
    color: #979797;
}

.article-title {
    font-family: 'true_boldregular';
    font-size: 64px;
    line-height: 50px;
    padding-left: 26px;
    position: relative;
    margin-bottom: 22px;
}

.article-title:before {
    content: '';
    width: 10px;
    height: 100%;
    max-height: 94px;
    background-color: #F2408E;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
    position: absolute;
    left: 0;
    top: 0;
}

.article-meta {
    border-top: 1px solid #CECECE;
    border-bottom: 1px solid #CECECE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 45px 10px 20px
}

.register-btn {
    border-radius: 8px;
    font-size: 36px;
    line-height: 32px;
    padding: 10px 48px;
    font-family: 'true_boldregular';
}

.register-btn:hover {
    color: #FFF;
}

.article-meta p {
    margin-bottom: 0;
    color: #494949;
}

.article-meta p span {
    color: var(--primary-color);
    font-family: 'true_boldregular';
}

.article-meta .author>* {
    margin-right: 10px;
	display: flex;
	align-content: center;
}
.article-meta .author * {
	line-height: 33px;
	
}
.article-meta .author {
    font-size: 24px;
    line-height: 32px;
    color: #979797;
}

.article-meta .author i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
    color: var(--primary-color);
}

.social-share {
    position: sticky;
    top: 60px;
}

.social-share ul {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.social-share ul i {
    width: 46px;
    height: 46px;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 5px;
    margin-left: auto;
}

.social-share ul i.icon-facebook {
    background: #3D5A96;
}

.social-share ul i.icon-twitter {
    background: #2AA3EF;
}

.social-share ul i.icon-mail {
    background: #2F75EC;
    font-size: 18px;
}

.social-share ul i.icon-line {
    background: #2AB858;
}

.social-share ul li {
    margin-right: 5px;
}

.social-share ul li:not(:last-child) {
    margin-bottom: 16px;
}

.social-share li a i:before {
    transition: all 0.5s;
}

.social-share li a:hover i:before {
    transform: translateY(-1px);
}

.article-content {
    padding: 30px 0;
}

.article-detail .main-banner img {
    width: 100%;
	height: auto;
	margin-bottom: 26px;
}


.article-detail>*{
    margin-bottom: 1rem;
}


.contact,
.register {
    margin-bottom: 1rem;
}

.contact p,
.register p {
    font-family: 'true_boldregular';
    margin-bottom: 10px;
    color: #4f4f4f;
}
.item-price {
	text-align: right;
}

.register .register-btn {
    width: 100%;
}
.section-title {
	margin-bottom: 26px;
}
.item-price h3 {
	font-size: 32px;
	line-height: 40px;
	font-family: 'true_boldregular';
}
.item-price .price {
	font-family: 'true_boldregular';
	color: #0B0914;
	font-size: 48px;
}
.item-price .price small {
	font-family: 'true_mediumregular';
	font-size: 24px;
}
.package-detail {
	color: #494949;
	margin-bottom: 60px;
}
.package-detail ul.checkmark {
	position: relative;
	list-style: none;
	margin-left: 0;
	padding-left: 1.2em;
	margin-bottom: 30px;
}
.package-detail ul.checkmark li {
	margin-bottom: 10px;
}
.package-detail ul.checkmark li:before{
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../images/checkmark.svg);
    background-size: cover;
	margin-top: 2px;
	position: absolute;
	left: 0;
}
.package-detail ul {
	padding-left: 15px;
}
    
.package-detail ul li::marker {
	color: var(--primary-color);
}
.package-detail h4 {
	color: #494949;
	font-size: 24px;
	font-family: 'true_boldregular';
	margin-bottom: 10px;
}
.package-detail>* {
	margin-bottom: 20px;
}
.package-detail strong {
	font-family: 'true_boldregular';
    font-weight: normal;
}
.package-detail ul.package-featured {
	display: inline-block;
    list-style: none;
	padding-left: 0;
}
ul.package-featured li {
    display: inline-block;
    margin-right: 10px;
}
.package-promotion p.ps {
	line-height: 32px;
    padding-top: 20px;
}
.package-promotion {
	padding-top: 20px;
}
.package-promotion .register-btn {
	width: 60%;
	margin: 0 auto;
}
ul.package-featured li i {
	border-radius: 50%;
    color: #FFF;
    margin-right: 0;
    width: 45px;
    height: 45px;
    margin: 0 auto;
    background: linear-gradient(to right, #EC4596 0%, #8F3C9C 100%);
}
ul.package-featured li i:before {
	font-size: 45px;
}
ul.package-featured li i.icon-knowledge:before {
    font-size: 30px;
}
ul.package-featured li:not(:last-child) {
	margin-right: 27px;
}
ul.package-featured li>* {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
ul.package-featured li span {
	font-size: 20px;
}

.all-channel .button-next,
.all-channel .button-prev {
    color: #CAD2D8;
}

.button-next {
    right: 0;
}

.button-prev {
    left: 0;
}

.button-next:after {
    content: "\e91a";
    font-family: 'icomoon';
}

.button-prev:after {
    content: "\e91b";
    font-family: 'icomoon';
    z-index: 1;
}

.all-channel .logowrap .object-fit:before {
    padding-bottom: 100%;
}

.all-channel {
	overflow: hidden;
	padding: 40px 0;
}

.all-channel .logowrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 107px;
    margin: 8px;
}

.all-channel .logowrap img {
    width: 100%;
    height: 100%;
	overflow: hidden;
}

.all-channel .button-next,
.all-channel .button-prev {
    width: 10%;
    text-align: center;
    font-size: 20px;
}

.all-channel .swiper-container {
    width: 80%;
    margin: 0 auto;
	overflow: hidden;
}

.all-channel .services-slide {
    margin-top: 22px;
    position: relative;
}
.all-channel .swiper-slide {
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
    overflow: hidden;
}

.entertainment .swiper-navi-pagi {
    display: none;
}

.entertainment .row>* {
    padding: 10px;
}
.package-item {
	transition: all 1s;
}
.package-item:hover {
	box-shadow: 5px 0 10px rgb(0 0 0 / 10%);
}
.package-item h2 {
	color:  var(--primary-color);
	font-size: 40px;
	line-height: 1;
	font-family: 'true_boldregular';
	padding: 33px 35px 11px;
	text-shadow: 2px 0 10px rgb(0 0 0 / 10%);
	margin-bottom: 0;
}
.package-item:hover h2,.package-item h2:hover {
    background: linear-gradient(to right, #EC4596 0%, #8F3C9C 100%);
    background-size: 200% 200%;
    animation: rainbow 2s ease-in-out infinite;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(0, 0, 0, 0);
    transition: color 1s ease-in-out;
    position: relative;
}
@keyframes rainbow {
    0% {
        background-position: left
    }
    25% {
        background-position: right
    }
    50% {
        background-position: left
    }
    70% {
        background-position: right
    }
    100% {
        background-position: left
    }
}

.package-item .object-fit:before{
	padding-bottom: 38.888%
}
.package-item .item-detail ul {
	position: relative;
	list-style: none;
	margin-left: 0;
	padding-left: 1.2em;
	margin-bottom: 0;
}
.package-item .item-detail li {
	margin-bottom: 10px;
}
.package-item .item-detail li:before{
	content: '';
	width: 20px;
	height: 20px;
	background-image: url(../images/checkmark.svg);
    background-size: cover;
	margin-top: 2px;
	position: absolute;
	left: 0;
}
.package-item .item-detail {
	margin: 30px 30px 35px;
	min-height: 275px;
	max-height: 275px;
    position: relative;
	overflow: hidden;
}
.package-item .item-price:before{
	content: '';
	width: calc(100% - 70px);
	height: 1px;
	border-top: 1px dashed #9a9a9a;
	display: block;
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.package-item .item-price {
	position: relative;
    padding: 24px 22px;
	width: 100%;
}
.package-item .item-price .price {
	font-family: 'true_boldregular';
	color: #0B0914;
	font-size: 48px;
	text-align: center;
	margin-bottom: 34px;
}
.package-item .item-price .price small {
	font-family: 'true_mediumregular';
	font-size: 24px;
}
.package-item h2,
.explore-package .item-detail ul {
	display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.package-item h2 {
	-webkit-line-clamp: 1;
}
.explore-package {
	overflow: hidden;
	margin-bottom: 100px;
}
.explore-package .heading {
	font-size: 48px;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0px;
	margin-bottom: 25px;
}
.explore-package .package-item h2 {
	font-size: 33px;
	height: 74px;
}
.explore-package .item-detail ul{
    -webkit-line-clamp: 4;
	height: 100px;
}
.explore-package .package-item {
	box-shadow: 5px 0 10px rgb(0 0 0 / 10%);
}
.explore-package .package-item .item-detail {
	min-height: 106px;
	max-height: 106px;
}
.explore-package .package-item .item-price .price {
	margin-bottom: 0;
}
.explore-package  .row > [class*='col-'] {
    margin-bottom: 27px;
}
.explore-package .swiper-container {
	overflow: hidden;
}
.package-item {
	border-radius: 16px;
}
.explore-package .swiper-container .swiper-slide {
	padding-bottom: 5px;
}
.modal-dialog {
    max-width: 100%;
    margin: 0;
}
#register_modal .modal-dialog .modal-content {
    padding: 25px 60px 70px;
}
.true-channels {
	margin-bottom: 50px;
}
.true-channels h4 {
    color: #494949;
    font-size: 24px;
    font-family: 'true_boldregular';
    margin-bottom: 10px;
	}
.true-channel {
	padding: 34px 56px;
	display: grid;
    grid-column-gap: 12px;
    grid-row-gap: 24px;
    grid-template-columns: repeat(10,1fr);
    align-items: center;
}
.true-channel figure {
    grid-column-end: span 1;
}
.true-channel img {
	display: block;
	width: 100%;
}
@media (max-width: 1399.98px) {
	
	.package-item h2 {
		font-size: 38px;
	}
	.package-item .item-price .price {
		font-size: 44px;
	}
	.explore-package .package-item h2 {
	    font-size: 30px;
	    padding-left: 15px;
	    padding-right: 15px;
		height: 70px;
	}
}
@media (max-width: 1199.98px) {
	html, body {
	    font-size: 22px;
	}
	.package-item h2 {
	    font-size: 33px;
	}
	.package-item .item-detail {
		margin-left: 20px;
		margin-right: 20px;
	}
	.package-item .item-detail li:before {
		margin-top: 5px;
		width: 15px;
		height: 15px;
	}
	.package-item .item-price .price {
		font-size: 40px;
		margin-bottom: 25px;
	}
	.explore-package .heading {
		margin-bottom: 50px;
	}
	.explore-package {
		padding: 60px 0 70px;
	}
	.explore-package .package-item h2 {
		font-size: 25px;
		height: 63px;
        line-height: 33px;
	}
	#register_modal .modal-dialog .modal-content {
	    padding: 25px 10px 70px;
	}
	.heading {
		font-size: 50px;
	    padding: 10px 0 10px 26px;
	}
	.item-price h3 {
	    font-size: 28px;
	    line-height: 32px;
	}
	.item-price .price {
		font-size: 40px;
	}
	.explore-package {
	    padding: 0px 0 0;
	}
	.true-channel {
		grid-template-columns: repeat(8,1fr);
	}
}
@media (max-width: 991.98px) {
    html,
    body {
        font-size: 22px;
    }
    .breadcrumb-item,
    .breadcrumb-item a {
        font-size: 16px;
        line-height: 24px;
    }
	.container-md-fluid {
        max-width: 100%;
        padding: 0;
    }
    .article-title {
        font-size: 34px;
        line-height: 32px;
    }
    .article-meta {
        padding: 10px 0;
    }
    .article-meta .author {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
    }
    .article-meta .author i {
        font-size: 15px;
    }
    .article-content {
        padding: 12px 0;
    }
    .social-share {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 0;
        padding-bottom: 12px;
    }
    .social-share ul:before {
        content: 'แชร์ :';
        font-size: 16px;
        line-height: 24px;
        color: #494949;
    }
    .social-share ul li {
        margin-right: 0;
        display: inline-block;
        margin-bottom: 0 !important;
		vertical-align: middle;
    }
    .social-share ul i {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
    .social-share ul i.icon-mail {
        font-size: 12px;
    }
    .register-btn {
        font-size: 22px;
        line-height: 32px;
        border-radius: 4px;
        padding: 4px 12px;
    }
    .article-detail {
        padding-top: 10px;
    }
    
    .contact {
        margin-top: 10px;
    }
    .contact p:first-child,
    .register p:first-child {
        font-size: 24px;
        font-family: 'true_boldregular';
    }
    .contact p,
    .register p {
        font-family: 'true_mediumregular';
    }
    .register .register-btn {
        padding: 6px 18px;
    }
    
    .breadcrumb {
        margin-bottom: 15px;
    }
    .article-meta .author {
        flex-wrap: wrap;
        font-size: 18px;
    }
    .article-meta .author>* {
        flex-basis: 25%;
        margin-right: 0;
        text-align: right;
    }
    .article-meta .author>time {
        flex-basis: 50%;
        text-align: left;
    }
    .article-meta .author>.by {
        flex-basis: 100%;
        font-size: 22px;
        margin-bottom: 5px;
        text-align: left;
    }
    .article-title:before {
        width: 6px;
        max-height: 60px;
    }
	.entertainment .swiper-navi-pagi {
        display: block;
    }
    .entertainment .swiper-container,
    .entertainment .row.entertainment2 {
        margin-bottom: 0;
    }
    .entertainment .row>* {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .entertainment .row.entertainment2>*:nth-child(n+3) {
        display: none;
    }
	.explore-package .swiper-container {
		padding-right: var(--bs-gutter-x, .75rem);
		padding-left: var(--bs-gutter-x, .75rem);
	}
	.true-channel {
		grid-template-columns: repeat(5,1fr);
		grid-row-gap: 20px;
	}
}
@media (max-width: 767.98px) {
	html, body {
	    font-size: 20px;
	}
	.package-item .item-detail {
		min-height: unset;
		max-height: unset;
	    margin: 18px 20px 35px;
	}
	.package-item .item-price {
	    padding: 25px 22px;
	}
	.package-item .item-price .price{
		margin-bottom: 20px;
	}
	.package-item h2 {
		font-size: 30px;
		margin-bottom: 0;
	}
	.package-item .item-detail li:before {
		width: 15px;
		height: 15px;
		margin-top: 5px;
	}
	.package-item .item-price:before {
	    width: calc(100% - 40px);
	}
	.package-item .item-price .price {
		font-size: 32px;
	}
	.explore-package {
		margin-bottom: 38px;
	}
	.explore-package .package-item h2 {
	    font-size: 30px;
		height: 70px;
	}
	.explore-package .heading {
		font-size: 32px;
	}
	.explore-package .heading {
	    margin-bottom: 25px;
	}
	.explore-package {
	    padding: 25px 0 0px;
	}
	.section-title {
		display: block !important;
	}
	.item-price {
	    text-align: left;
	}
	.heading:before {
		max-height: 51px;
	}
	.heading {
		font-size: 42px;
	    line-height: 32px;
	    padding: 9px 0 9px 26px;
	    margin-bottom: 15px;
	}
	.item-price h3 {
	    font-size: 24px;
	    line-height: 32px;
	}
	.item-price .price {
	    font-size: 42px;
	}
	.package-promotion p.ps {
		padding-top: 0;
	}
	.package-promotion {
	    padding-top: 0;
	}
	.package-detail {
		margin-bottom: 30px;
	}
	.article {
	    margin-bottom: 5px;
	}
	.package-detail>* {
	    margin-bottom: 10px;
	}
	.all-channel {
		padding: 30px 0 ;
	}
	.article>.container {
		padding: 29px 20px;
	}
	
	.true-channel {
		margin: 0 -10px;
		padding: 24px 32px;
		grid-template-columns: repeat(4,1fr);
		grid-column-gap: 12px;
		grid-row-gap: 16px;
	}
}
@media (max-width: 551px) {
	ul.package-featured li {
	    margin-right: 5px;
	    width: 17%;
	    margin-bottom: 5px;
	}
}
