@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/*Basic CSS*/
body {
    font-size: 18px;
    color: #3B3C40;
    font-family: "Open Sans", serif;
    font-weight: 400;
}

a {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: 0 none;
}

img {
    max-width: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
p {
    font-family: "Open Sans", serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    color: #212121;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

/*Header */
.header-area {
    background-image: url(../img/header-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    padding: 40px 0;
    position: relative;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.logo {
    max-width: 550px;
    margin-left: 70px
}
.date {
    max-width: 400px;
}

/* Exhibitor */

.exh-logo {
	text-align: center;
}

.exh-wrap img {
	width: 300px;
	margin-bottom: 20px;
}

.exh-title h3 {
	font-size: 28px;
}

.exh-title h4 {
	font-size: 28px;
	margin-top: 15px;
	margin-bottom: 30px;
}

.note-line br {
	display: none;
}

.int-btn a {
	height: 54px;
	line-height: 54px;
	display: inline-block;
	background: #ED2127;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 0 60px;
	border-radius: 6px;
	font-size: 22px;
}

.int-btn p {
	font-size: 14px;
	font-style: italic;
	margin-top: 20px;
}

.int-btn a:hover {
	background: #CB1C23;
}

.int-btn.int-btn-group a {
	font-size: 20px;
	width: 100%;
	text-align: center;
	padding: 0 20px;
}

.exh-title p {
	font-size: 18px;
	max-width: 850px;
	margin: 0 auto;
	margin-bottom: 35px;
}

/* Video */
.video-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 30px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.video-wrap>div {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

.exh-video {
	position: relative;
}

.video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	/* background: #FFF; */
	border-radius: 50%;
	padding: 18px 20px 18px 28px;
}

.video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #CB1C23;
	border-radius: 50%;
	-webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 80px;
	height: 80px;
	background: #CB1C23;
	border-radius: 50%;
	-webkit-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}

.video-play-button:hover:after {
	background-color: darken(#CB1C23, 10%);
}

.video-play-button img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	width: auto;
	height: auto;
}

.video-play-button span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 32px solid #FFF;
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}



@-webkit-keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

@keyframes pulse-border {
	0% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

.video-info p {
	font-size: 20px;
}

/* Cycle */
.cycle-area {
	background: url(../img/section-bg.jpg) no-repeat scroll center center / cover;
}
.sec-title h2 {
	font-size: 28px;
	color: #FFFFFF;
	text-align: center;
}
.sec-title p {
	color: #FFFFFF;
}
.cycle-wrap {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 80px;
}
.cycle h4 {
	color: #fff;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 10px;
}
.cycle p {
	font-size: 16px;
	color: #ffffff;
	margin-bottom: 20px;
}
.cycle a {
	height: 45px;
	line-height: 45px;
	display: inline-block;
	background: #CB1C23;
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	padding: 0 20px;
	border-radius: 6px;
	font-size: 15px;
}

.cycle a:hover {
	background: #ED2127;
}
/* Countdown */

.sec-title {
	margin-bottom: 28px;
}

.countdown-area .sec-title h2 {
	color: #000000;
}
.sec-title p {
	margin-top: 20px;
	text-align: center;
}
.countdown {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.cdown {
	width: 150px;
	text-align: center;
	padding: 25px 0;
	margin: 15px;
	border-radius: 4px;
	-webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.cdown strong {
	font-size: 56px;
	line-height: 1;
	color: #0C4166;
}

.cdown p {
	font-size: 24px;
	margin-top: 10px;
	color: #131041;
}

/* Footer */
.footer-area {
	background: url(../img/footer-bg.png) no-repeat scroll center center / cover;
	padding: 30px 0;
}
.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo img {
    max-width: 300px;
}
.social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
}
.social li a {
    font-size: 24px;
    color: #ffffff;
}
