@import url('https://fonts.googleapis.com/css2?family=Sarabun:wght@100;200;300;400;500;600;700;800&display=swap');
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {	
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
    font-family: 'Sarabun', sans-serif;
}
html,body {
    overflow-x: hidden;
}
/* ----- Tag Css ----- */

h1,h2,h3,h4,h5,h6{
	margin: 0 0 8px;
}
p {
	margin: 0;
}
a {
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: none;
}
button:focus,.header .navbar-toggler:focus{
	outline: none !important;
	box-shadow: none;
	border: none;
}
input:focus,textarea:focus {
	outline: none !important;
	box-shadow: none;
}
button,.header .navbar-toggler{
	border: none;
	outline: none;
	user-select: none;
    border-color: unset;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
section {
	display: block;
	position: relative;
	padding: 40px 0;
	width: 100%;
}

/*<--------- Header Css ---------->*/

.header {
    width: 100%;
    display: grid;
    align-items: center;
    -webkit-box-align: center;
    padding: 5px 0;
    box-shadow: 0.521px 2.954px 8px 0px rgb(220 220 220 / 20%);
    transition: all 300ms ease;
    -webkit-transition: all .3s;
    background-color: #fff;
    z-index: 9;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInUp;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInUp;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
@keyframes fadeInDown {
    from {
        opacity:0;
        -webkit-transform: translatey(-10px);
        -moz-transform: translatey(-10px);
        -o-transform: translatey(-10px);
        transform: translatey(-10px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
@keyframes fadeInUp {
    from {
        opacity:0;
        -webkit-transform: translatey(-4px);
        -moz-transform: translatey(-4px);
        -o-transform: translatey(-4px);
        transform: translatey(-4px);
    }
    to {
        opacity:1;
        -webkit-transform: translatey(0);
        -moz-transform: translatey(0);
        -o-transform: translatey(0);
        transform: translatey(0);
    }
}
#mainNavigation {
    padding: 0;
}
.header .navbar-brand {
    padding: 0;
}
.navbar-brand img {
    width: 100%;
    max-width: 90px;
    image-rendering: -webkit-optimize-contrast;
}
.header ul {
    align-items: center;
    margin: 0 0 0 auto;
}
.sideBar{
	display: flex;
	flex-grow: 1;
	flex-basis: 100%;
    align-items: center;
    z-index: 9;
}
.header ul li a {
    display: block;
    font-size: 16px;
    padding: 6px 8px;
    margin: 0 10px;
    color: #333;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s;
}
.navbar-li.active a {
    color: #db5f2c;
}
#nav-icon1 {
    border: 1px solid #eee;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
}
#nav-icon1 span {
    display: block;
    height: 2px;
    width: 100%;
    max-width: 20px;
    margin: auto;
    background: #db5f2c;
    border-radius: 2px;
    opacity: 1;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
	top: -5px;
}
#nav-icon1 span:nth-child(2) {
	top: 1px;
}
#nav-icon1 span:nth-child(3) {
	top: 7px;
}
.language-selector {
    display: flex;
    align-items: center;
}
.language-selector img {
    margin: 0 15px;
}
.custom-btn {
    width: 100%;
    max-width: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 4px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 400;
}
.custom-btn i {
    margin: 0 0 0 8px;
}
.custom-btn.video-btn i {
    margin: 0 8px 0 0;
}
.video-btn,.main-btn {
    background-color: #db5f2c;
    color: #fff;
    margin: 0 10px 0 0;
}
.secondary-btn {
    background-color: #fff;
    color: #db5f2c;
    font-weight: 500;
}
.video-btn:hover,.main-btn:hover {
    color: #fff;
}
.secondary-btn:hover {
    color: #db5f2c;
}
.row-align {
    align-items: center;
}
.video-btn-rounded {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 50px;
    color: #db5f2c;
    border: 1px solid #db5f2c;
    outline-offset: -1px;
    margin: 8px 0 0;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    -khtml-border-radius: 60px;
    overflow: hidden;
}
.video-btn-rounded:hover {
    color: #db5f2c;
}
.light-bg {
    background-color: #fafafa;
}
.modal,.modal-open {
    padding: 0 !important;
}
.modal-dialog {
    width: 100%;
    max-width: 600px !important;
    margin: 0 auto;
}
.modal-dialog .ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 14 * 100%);
}
.modal-backdrop.show {
    opacity: 0.8;
}
.portfolio-imagebox {
    width: 100%;
    border-radius: 10px;
    height: 250px;
    overflow: hidden;
}
.portfolio-imagebox img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.profolio-gallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-flow: row dense;
}
.skills-section .custom-image-box {
    height: 400px;
}
.skills-section .custom-image-box img{
    height: 100%;
    object-fit: cover;
}
.event-card {
    position: relative;
}
.event-card-imagebox {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.event-card-imagebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
}
.event-card-content {
    box-shadow: 0px 3px 8px 0px rgb(238 238 238 / 56%);
    padding: 15px 15px;
}
.event-card-details {
    display: flex;
    align-items: center;
    color: #686a6f;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding: 0 0 12px;
}
.event-card-tag {
    display: flex;
    overflow: hidden;
}
.event-card-tag .text-width {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.event-card-time {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: none;
    max-width: 100%;
}
.title-space-sep {
    margin: 0 8px;
}
.event-card-title {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 10px;
    color: #333;
    flex-grow: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 24px;
}
.event-card-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 24px;
    max-height: 48px;
    color: #676767;
    font-size: 15px;
}
.event-card-breif {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.read-more-link {
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 10px 0 0;
}
.read-more-link:hover{
    color: #db5f2c;
}
.read-more-link i {
    font-size: 24px;
    color: #db5f2c;
}
.contact-info-box {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact-wrapper {
    display: flex;
    align-items: center;
}
.contact-icon-box {
    background-color: #fee9e4;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #db5f2c;
    font-size: 22px;
    margin: 0 10px 0 0;
}
.contact-detail-title {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    margin: 0 0 5px;
}
.contact-box-details a {
    color: #6f6b80;
    font-size: 16px;
}
.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: end;
}
.input-box {
    margin: 12px 0;
}
.input-box input, .input-box textarea {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    resize: none;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 8px;
    line-height: 20px;
    color: #696969;
    font-family: 'Rubik', sans-serif;
}
.contact-form .main-btn {
    margin: 0 0 0 auto;
}
#successMessageBox {
    display: none;
    text-align: center;
    padding: 20px 0 0;
}
#successMessageBox .successTitle {
    font-size: 30px;
    color: #db5f2c;
    font-weight: 500;
    margin: 0 0 8px;
}
#successMessageBox .successMessage {
    font-size: 18px;
    margin: 5px 0 0;
    font-weight: 400;
    color: #737b9a;
}
.footer {
    background-color: #f2f5fb;
    padding: 40px 0 0;
}
.footer-link,.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-link li {
    margin: 0 8px;
}
.footer-link li a {
    color: #686a6f;
    font-size: 18px;
    padding: 0 8px;
    font-weight: 500;
}
.social-links li {
    width: 40px;
    height: 40px;
    border: 1px solid #db5f2c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 20px 10px;
}
.social-links a {
    color: #db5f2c;
}
.copyright-notice {
    border-top: 1px solid #dddddd;
    padding: 15px 0;
    color: #686a6f;
    text-align: center;
    font-size: 16px;
}
.sponser-wrapper {
    width: 100%;
    float: left;
    clear: both;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 0;
}
.partners-list {
    margin: -2px -10px -2px -2px;
    list-style-type: none;
    padding-top: 2px;
    float: left;
    padding-left: 2px;
    min-width: calc(100% + 12px);
}
.partners-list li {
    margin: 0;
    float: left;
    width: 25%;
    border: 2px solid #eee;
    text-align: center;
    height: 180px;
    line-height: 180px;
    position: relative;
    margin-top: -2px;
    margin-left: -2px;
    overflow: hidden;
}
.list-inner {
    width: 100%;
    height: 100%;
    clear: both;
    float: left;
    display: flex;
}
.partners-list li img {
    max-width: 75%;
    max-height: 100px;
    margin: auto;
}
.bread-crumb {
    font-size: 16px;
    color: #fff;
    margin: 10px 0 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 19px;
    width: 100%;
}
.bread-crumb a {
    color: #fff;
}
.bread-crumb i {
    margin: 0 8px;
    font-size: 12px;
}
.bread-crumb .current-page {
    border-bottom: 1px solid #fff;
}
.page-banner {
    background-image: url(../img/page-banner.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    text-align: center;
    padding: 140px 0;
}
.event-tag {
    position: absolute;
    bottom: 0;
    background-color: #db5f2c;
    padding: 2px 10px;
    color: #fff;
    font-size: 14px;
    border-radius: 0 2px 2px 0;
    user-select: none;
}
.single-event-wrapper {
    border: 1px solid #eee;
    padding: 15px 20px;
}
.single-event-timebox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-event-tag {
    background-color: #db5f2c;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    padding: 4px 20px;
}
.single-event-time {
    color: #686a6f;
    font-weight: 400;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: none;
    max-width: 100%;
}
.single-event-time i {
    color: #db5f2c;
    margin: 0 5px 0 0;
}
.border-bottom-sep {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
.single-event-title {
    font-size: 22px;
    color: #333;
    line-height: 30px;
    margin: 0 0 15px;
}
.event-address {
    font-size: 16px;
    color: #686a6f;
    display: flex;
    align-items: center;
}
.event-address i {
    color: #db5f2c;
    font-size: 18px;
    margin: 0 5px 0 0;
}
.video-container i {
    background: #db5f2c;
    border-radius: 50px;
    color: #fff;
}
.single-event-brief {
    font-size: 15px;
    color: #676767;
    line-height: 26px;
}
.gallery-video-container {
    padding: 20px 0;
}
.box-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}
.box-title span {
    color: #db5f2c;
}
.video-container {
    width: 100%;
    max-width: 370px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin: 20px 0 0;
}
.overlay {
    width: 100%;
    height: 100%;
    background-color: #00000038;
    z-index: 1;
    display: block;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.single-event-gallery {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-flow: row dense;
    margin: 20px 0 0;
}
.single-event-imagebox {
    width: 100%;
    border-radius: 10px;
    height: 200px;
    overflow: hidden;
}
.single-event-imagebox img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.related-event-box {
    padding: 15px 0 0;
}
.related-event-list {
    padding: 10px 0;
}
.export-feeds {
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 24px rgb(0 0 0 / 4%);
}
.export-feeds .heading-seprator {
    margin: 0 0 15px;
}
.heading-seprator h3 {
    font-size: 18px;
    margin: 0 8px;
    line-height: 20px;
    font-weight: 600;
}
.feeds-list {
    margin: 10px 0;
}
.feeds-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 15px;
    margin: 0px 0 15px;
    border-bottom: 1px dashed #eee;
}
.export-feed-imagebox {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 8px 0 0;
}
.export-feed-imagebox img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.export-feed-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    display: block;
}
.export-feed-time {
    color: #686a6f;
    font-size: 14px;
    line-height: 22px;
}
.export-feed-time i {
    margin: 0 5px 0 0;
}
.filters-content .show {
    opacity: 1;
    visibility: visible;
    transition: all 350ms;
}
.filters-content .hide {
    opacity: 0;
    visibility: hidden;
    transition: all 350ms;
}
.filters {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 0 0 8px;
}
.filters li {
    background-color: #eeeeee;
    border-radius: 20px;
    padding: 2px 15px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 5px;
    user-select: none;
    cursor: pointer;
}
.filters li.active {
    background-color: #db5f2c;
    color: #fff;
    font-weight: 300;
}
.filters::-webkit-scrollbar{
    width: 3px!important;
    height: 3px!important;
}
.filters::-webkit-scrollbar-thumb {
    background-color: #db5f2c;
    border-radius: 10px;
}
.event-card {
    margin: 20px 0;
}
.video-wrap-box {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0px 2px 9.9px 0.1px rgb(95 95 95 / 50%);
    position: relative;
    margin: 10px 0;
}   
#myVideo::before {
    content: '';
    position: absolute;
    background: #00000085;
    width: 100%;
    height: 100%;
}
.video-wrap-box video {
    height: 100%;
    width: 100%;
}
.play-video-btn {
    position: absolute;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    font-size: 30px;
    color: #fff;
}
.play-video-btn i{
    cursor: pointer;
}
.play-video-btn i:hover,.play-video-btn:hover{
    cursor: pointer;
    color: #fff;
}
.button-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-box .main-btn {
    max-width: 350px;
    margin: 10px 0 0;
}
.sponsor-content-box .main-heading {
    font-size: 26px;
    margin: 0 0 15px;
    line-height: 32px;
}
.sponsor-list li {
    display: flex;
    align-items: baseline;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: #696969;
}
.sponsor-list li i {
    font-size: 18px;
    position: relative;
    top: 2px;
    margin: 0 5px 0 0;
    color: #db5f2c;
}