
/* ----------------------------------
Basic CSS
-------------------------------------*/
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

body {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
a,
div {
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: 'Avenir Book';
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Avenir';
    font-weight: 900;
}

a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: 0 none;
}
.section-padding {
    padding: 70px 0;
}

.pt0 {
    padding-top: 0;
}
.pb0 {
    padding-bottom: 0;
}

/*Header*/
.header-area,
.footer-area {
	background: #000000;
    padding: 40px;
}
.header-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    border: 5px solid #fff;
    padding: 40px;
}
.header-logo {
    width: 450px;
}
.header-title {
	font-family: 'Adapt';    
    font-weight: normal;
	color: #ffffff;
	display: inline-block;
	font-size: 60px;
	text-align: right;
	line-height: 1.2;
}

/*Exhibitor*/
.priority-code {
    color: #10069F;
}
.banner-wrap h2 {
    font-size: 28px;

}
.exh-logo {
    max-width: 300px;
    margin-bottom: 10px;
}
.booth {
    margin-bottom: 20px;
    font-size: 24px;
}
.booth span {
    color: #10069F;
}
.exh-wrapper h2 {
	margin-bottom: 20px;
	font-size: 28px;
	line-height: 1.25;
}
.exh-wrapper h2 span {
    color: #10069F;
}
.reg-btn {
	height: 55px;
    font-weight: 900;
	line-height: 53px;
	display: inline-block;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: #10069f;
	padding: 0 30px;
	margin-top: 10px; 
    color: #FFFFFF;
	border: 2px solid #10069F;
	border-radius: 6px;
}
.reg-btn:hover,
.reg-btn:active,
.reg-btn:focus {
	border: 2px solid #10069F;
    background: #10069F;
    color: #ffffff;

}
/* Video */
.video-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
}
.video-wrapper div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.video-text {
	font-size: 18px;
	margin-bottom: 15px;
}
.text-box h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.video-text:last-child {
	margin-bottom: 0px;
}
/*Countdown CSS*/
.sec-title {
	font-size: 28px;
	margin-bottom: 30px;
}
.countdown-area .sec-title {
    color: #fff;
}
.countdown-area {
    background: #000000;
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    -webkit-animation: animatedBackground 60s linear infinite;
    animation: animatedBackground 60s linear infinite;
}

.countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cdown {
	text-align: center;
	border: 2px solid #FFFFFF;
	border-radius: 6px;
}

.cdown span {
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    width: 150px;
}

.cdown span strong {
    color: #fff;
    display: inline-block;
    font-size: 60px;
    padding: 15px 0;
}

.cdown span p {
	border-top: 2px solid #fff;
	border-radius: 0 0 6px 6px;
	color: #fff;
	padding-bottom: 10px;
	padding-top: 10px;
	font-weight: 600;
}

@-webkit-keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -2000px 0;
    }
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -2000px 0;
    }
}

/* About */
.about {
	margin-bottom: 40px;
}
.about-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	gap: 30px;
}
.about-wrap > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.about:last-child {
	margin-bottom: 0px;
}
.about-wrap h3 {
	font-size: 24px;
	margin-bottom: 10px;
}
.hour {
    margin-bottom: 30px;
}
.hour:last-child {
    margin-bottom: 0px;
}
.hour ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.hour li {
	border-bottom: 1px solid #ddd;
	margin-bottom: 7px;
	padding-bottom: 7px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-right: 50px;
}
.about-details ul {
	margin-top: 0px;
	margin-bottom: 15px;
}
.about-details li {
	margin: 5px 0;
}


/*Share*/
.share-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}
.share-wrapper a {
    display: block;
    width: 100%;
    margin: 0 15px;
}

.share-wrapper a:hover {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

.social-box {
    background: #eeeff0;
    padding: 40px 30px;
    border-radius: 6px;
}
.social-box .icon {
    margin-bottom: 20px;
}
.social-box .icon i {
    font-size: 80px;
    height: 140px;
    width: 140px;
    line-height: 140px;
    display: inline-block;
    background: #59a1d8;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.social-box .icon .fa-x-twitter {
    background: #1da1f2;
}
.social-box .icon .fa-linkedin-in {
    background: #0077b5;
}
.social-box .icon .fa-facebook-f {
    background: #3b5998;
}
.share-wrapper a:hover .social-box .icon i {
    background: transparent;
}
.share-wrapper a:hover .social-box .icon .fa-x-twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}
.share-wrapper a:hover .social-box .icon .fa-linkedin-in {
    color: #0077b5;
    border-color: #0077b5;
}
.share-wrapper a:hover .social-box .icon .fa-facebook-f {
    color: #3b5998;
    border-color: #3b5998;
}
.social-box .text h3 {
    font-size: 20px;
}

/*Footer*/