
/* ----------------------------------
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;
	color: #10069f;
}

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*/

.banner-wrap h2 {
	line-height: 1.3;
	font-size: 28px;
}

.exhibitor-info {
	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;
}
.exh-wrap {
	max-width: 28%;
}
.exh-details {
	max-width: calc(100% - 29%);
}
.exh-logo img {
    width: 270px;
    margin-bottom: 25px;
}
.up-note a {
    text-decoration: underline;
}
.exh-code {
    margin-bottom: 15px;
}
.exh-code h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.exh-code h3 span {
    color: #000000;
}
.exh-note h4 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    font-style: italic;
}
.exh-details p {
	font-size: 18px;
	margin-bottom: 15px;
}
.exh-details p:last-child {
	margin-bottom: 0px;
}
.rewards {
    padding: 20px;
    border: 3px solid #000000;
}
.rewards ul {
    margin: 0;
    padding: 0;
    padding-left: 20px
}

/* Share */

/*Share CSS*/


.share-details {
	max-width: 28%;
	padding-right: 20px;
}
.share-details p {
    font-size: 18px;
}
.share-details b {
    margin-bottom: 15px;
    display: block;
}
.share-offer-wrapper {
    overflow: hidden;
    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;
    margin-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}
.share-offer-wrapper.no-margin {
    margin-bottom: 0;
}
.share-box-wrapper {
    text-align: right;
}
.share-box {
    width: 190px;
    height: 190px;
    text-align: center;
    position: relative;
    display: inline-block;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.share-box i {
    font-size: 80px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    left: 50%;
    color: #000000;
    z-index: 1;
}
.share-box img {
    width: 90px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
    left: 50%;
    color: #000000;
    z-index: 1;
}
.share-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    background: #10069f;
    color: #fff;
    bottom: 0;
    left: 0;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    z-index: 2
}
.share-box:hover .share-overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    height: 100%;
    -webkit-transition: 0.4s all;
    -o-transition: 0.4s all;
    transition: 0.4s all;
    cursor: pointer;
}
.share-overlay p {
	color: #fff;
	font-size: 16px;
	margin-bottom: 10px;
}
.share-overlay a {
    color: #000;
    background: #fff;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 5px;
    padding: 5px 0;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.share-overlay a:hover {
    cursor: pointer;
    outline: 1px solid #000000;
    outline-offset: 1px;
}

/*FAQ*/
.faq-area .heading h3 {
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 700;
  }
    .nav-tabs.nav-justified {
        background: #EFEFEF;
    }
    .nav-tabs.nav-justified li a {
        font-size: 16px;
        font-weight: bold;
        color: #333;
        padding: 15px;
        text-transform: uppercase;
    }
    .nav-tabs.nav-justified li a:hover {
        color: #000000;
    }
    .nav-tabs.nav-justified li a i {
        margin-right: 10px;
    }
    .nav-tabs.nav-justified .active a i {
        color: #000000;
    }
    .nav-tabs.nav-justified .active a,
    .nav-tabs.nav-justified .active a:focus,
    .nav-tabs.nav-justified .active a:hover {
        border-bottom-color: #fff;
        color: #000000;
    }
    
    /*Accordian*/
    .panel-group {
        margin-bottom: 0px;
        padding: 20px;
        border: 1px solid #ddd;
        border-top: 0 none;
    }
    .panel.panel-default {
        border-color: #ddd;
        border: 0 none;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-bottom: 1px solid #ddd;
        border-radius: 0;
    }
    .panel.panel-default:last-child {
        border-bottom: 0;
    }
    .panel-default > .panel-heading {
        color: #333;
        background-color: transparent;
        border-color: transparent;
        border: 0 none;
        padding: 0;
    }
    .panel-group .panel + .panel {
        margin-top: 0;
    }
  .panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: none;
    font-size: 18px;
  }
  .faq-wrap .panel-title a {
	position: relative;
	font-size: 18px;
	padding: 10px 0px;
	-webkit-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
	display: block;
	font-weight: normal;
}
    .faq-wrap .panel-title a:hover {
      color: #000000;
    }
    .faq-wrap .panel-title a[aria-expanded="true"] {
      color: #000000;
      font-weight: 900;
    }
    .faq-wrap .panel-title a:before {
        content: '\f068';
    }
    .faq-wrap .panel-title a[aria-expanded="false"]:before {
        content: '\f067';
    }
    .faq-wrap .panel-title a:before, .faq-wrap .panel-title a.collapsed:before {
        font-family: 'FontAwesome';
        width: 20px;
        display: inline-block;
        -webkit-transition: 0.4s all;
        -o-transition: 0.4s all;
        transition: 0.4s all;
        font-size: 16px;
    }
    .panel-body {
        padding-top: 0;
        padding-left: 25px;
        padding-right: 20px;
        padding-bottom: 17px;
    }
    .inner-img img {
      max-width: 750px;
      border: 1px solid #ddd;
      padding: 10px;
    }
    .ins-img .inner-img img {
      max-width: 320px;
    }


/*Notice*/
.notice img {
	max-width: 270px;
	margin-bottom: 30px;
}
.notice h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.notice p {
    font-size: 18px;
    margin-bottom: 15px;
}
.notice p.last {
    margin-bottom: 0px;
}
.notice p a {
    color: #000000;
    text-decoration: underline;
}
/*Footer*/