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

body {
    font-size: 18px;
    color: #222222;
    font-family: 'GT Walsheim';
    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: 'GT Walsheim';
    font-weight: normal;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    color: #222222;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}
.section-padding {
    padding: 70px 0;
}
.pt0 {
    padding-top: 0;
}
.pb0 {
    padding-bottom: 0;
}
/*Header */
.header-area {
    text-align: center;
}
/* Exhibitor */
.exhibitor-logo-wrap {
    margin-bottom: 20px;
}
.exhibitor-title {
	text-align: center;
	margin-bottom: 50px;
}
.exhibitor-title h2 {
	font-size: 28px;
}
.exhibitor-title h2:last-child {
    margin-top: 10px;
}
.exhibitor-wrap {
	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;
}
.exhibitor-logo img {
    width: 300px;
}
.profile-btn {
	text-align: center;
}
.profile-btn a {
	font-size: 16px;
	color: #666;
	text-align: center;
	text-decoration: underline;
	margin-top: 15px;
}
.profile-btn a:hover {
    color: #212121;
}
.exhibitor-info p {
	margin-bottom: 15px;
}
.exhibitor-info p:last-child {
	margin-bottom: 0px;
}
.exhibitor-info p {
	margin-bottom: 15px;
}
.exhibitor-info h3 {
	margin-top: 50px;
	text-align: center;
	font-size: 24px;
}
/*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-details ul {
    padding: 0;
    margin: 0;
    padding-left: 15px;
  }
  
  .share-details li {
    margin-bottom: 5px;
  }
  
  .share-details li:last-child {
    margin-bottom: 0px;
  }
  
  .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: #FFAE02;
    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: #000;
    z-index: 1;
  }
  
  .share-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.9);
    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: 14px;
    margin-bottom: 10px;
  }
  
  .share-overlay a {
    color: #000000;
    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 #FFAE02;
    outline-offset: 1px;
  }
  

/*FAQ*/
.sec-head {
    padding-bottom: 40px;
    padding-top: 10px;
}
.sec-head h2 {
    position: relative;
    padding-bottom: 15px;
}
.sec-head h2:after {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: #FBAD1B;
    content: '';
}
.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 i {
    margin-right: 10px;
}
.nav-tabs.nav-justified .active a i {
    color: #FBAD1B;
}
.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: #FBAD1B;
}

/*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;
}
.faq-wrap .panel-title a {
    position: relative;
    font-size: 18px;
    color: #000;
    padding: 10px 0px;
    -webkit-transition: 0.3s all;
    -o-transition: 0.3s all;
    transition: 0.3s all;
    font-weight: 600;
}
.faq-wrap .panel-title a:hover {
  color: #FBAD1B;
}
.faq-wrap .panel-title a[aria-expanded="true"] {
  color: #FBAD1B;
}
.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 {
    font-size: 16px;
    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-details p {
    margin-bottom: 15px;
    font-size: 20px;
}
.notice-details p:last-child {
	margin-bottom: 0px;
}
.notice-details a {
	color: #FFAE02;
	text-decoration: underline;
}
.notice-details a:hover {
	color: #d89506;
}
/*Footer*/
.footer-area {
    background: #FFAE02;
    padding: 30px 0;
}
.footer-wrap {
    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;
}
.social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.social li a {
    height: 40px;
    width: 40px;
    background: #000000;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    color: #ffffff;
}
.social li a:hover {
    background: #FFFFFF;
    color: #000000;
}
.footer-logo img {
    width: 100px;
}
