@import url("https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap");
*::after, *::before, * {
  margin: 0;
  padding: 0;
}

@keyframes blinker {
  0% {
    opacity: 0.5;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
body {
  box-sizing: border-box;
  background: #888;
}

@font-face {
  font-family: mergeOne;
  src: url("../fonts/MergeOne-Regular.ttf");
}
.wrapper {
  max-width: 1920px;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  margin: 0 auto;
}

.wrapper .header {
  background-color: #2a07f9;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wrapper .header .sub-titles {
  display: flex;
}

.wrapper .header .sub-titles p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  border-right: 1px solid #fff;
  padding: 0 10px;
  font-family: mergeOne;
}

.wrapper .header .sub-titles p:last-child {
  border-right: none;
}

.wrapper .header .follow-us {
  display: flex;
  align-items: center;
}

.wrapper .header .follow-us .social-media-icon-blocks {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #fff;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper .header .follow-us .social-media-icon-blocks a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

.wrapper .header .follow-us .social-media-icon-blocks a img {
  width: 16px;
  -o-object-fit: contain;
  object-fit: contain;
}

.wrapper .navigation {
  background: #fff;
}

.wrapper .navigation nav {
  background-color: #194E84 !important;
}

.wrapper .banner {
  height: auto;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/banner.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper .banner .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
  padding: 40px 0;
}

.wrapper .banner .content a {
  text-decoration: none;
}

.wrapper .banner .content .logos {
  display: flex;
  align-items: center;
}

.wrapper .banner .content .logos img {
  width: 300px;
  display: inline-block;
  margin: 0 20px;
  border-right: 1px solid #000;
  padding-right: 20px;
}

.wrapper .banner .content .logos img.eepc_logo {
  border-right: none;
}

.wrapper .banner .content .logos img.doc {
  filter: invert(1);
}

.wrapper .banner .content h1 {
  font-size:20px;
  color: #fff;
  font-family: "Merriweather", serif;
  text-align: center;
  margin: 20px 0;
}

.wrapper .banner .content h1 span {
  color: #fd8900;
}

.wrapper .banner .content h1 b {
  color: #15b364;
}

.wrapper .banner .content p {
  color: #fff;
  font-family: "Merriweather", serif;
  text-align: center;
  font-weight: 300;
  line-height: 25px;
}

.about_content p {
  font-size: 20px;
  text-align: justify;
}

.about_content ul {
  padding-left: 30px;
}

.about_content ul li {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}

.wrapper .banner .content h4 {
  color: #fff;
  font-family: "Merriweather", serif;
  text-align: center;
  font-size: 30px;
  margin-top: 20px;
}

.two_cards {
  display: flex;
  grid-gap: 20px;
  margin-top: 30px;
}

.two_cards .event_card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.two_cards .event_card:first-child a {
  background-color: #86bc25;
  color: #000 !important;
}

.two_cards .event_card img {
  width: 300px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.two_cards .event_card a {
  padding: 8px 12px;
  text-decoration: none !important;
  background: #e8491d;
  color: #fff;
}

.banner .cta_buttons {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  margin-top: 10px;
}

.banner .cta_buttons a {
  padding: 10px 14px;
  background-image: linear-gradient(to right, #f24617 0%, #fd8900 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  text-transform: uppercase;
  animation: blinker 1s linear infinite;
}

.wrapper .registration_strip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  background: #2a07f9;
}

.wrapper .registration_strip .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}

.wrapper .registration_strip .content .action {
  border-right: 2px solid #fff;
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wrapper .registration_strip .content .action a {
  text-decoration: none;
  color: #fff;
  padding: 15px 8px;
  background-image: linear-gradient(to right, #f24617 0%, #fd8900 100%);
  text-transform: uppercase;
  font-size: 16px;
  animation: blinker 1s linear infinite;
  text-align: center;
}

.wrapper .registration_strip .content p {
  flex: 3;
  margin-left: 20px;
  font-size: 30px;
  color: #fff;
  font-family: "Merriweather", serif;
}

.wrapper section {
  margin: 60px auto;
  width: 70%;
}

.wrapper .shows .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #ddd;
  padding-bottom: 40px;
}

.wrapper .shows .title .heading {
  position: relative;
}

.wrapper .shows .title .heading::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 15px;
  height: 100px;
  background: #F8971C;
  display: block;
}

.wrapper .shows .title .heading h1 {
  font-size: 50px;
  font-weight: bold;
  font-family: "Merriweather", serif;
  color: #103363;
  text-transform: uppercase;
}

.wrapper .shows .title .heading h3 {
  font-size: 30px;
  font-weight: 400;
  font-family: "Merriweather", serif;
  text-transform: uppercase;
}

.wrapper .shows .title .showDate {
  display: flex;
  align-items: center;
}

.wrapper .shows .title .showDate h4 {
  font-size: 40px;
  font-weight: 900;
  font-family: "Merriweather", serif;
  color: #103363;
}

.wrapper .shows .title .showDate .date {
  display: flex;
  align-items: center;
}

.wrapper .shows .title .showDate .date .dt-block {
  background-image: linear-gradient(to right, #f24617 0%, #fd8900 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  font-size: 60px;
  font-family: "Merriweather", serif;
  color: #fff;
  font-weight: bold;
  margin: 0 10px;
}

.wrapper .shows .content {
  display: flex;
  align-items: start;
  justify-content: center;
  width: 100%;
  grid-gap: 20px;
}

.wrapper .shows .content .event_cards {
  margin: 10px 0;
  background-color: #EBF1F8;
  border-radius: 10px;
  padding: 45px 30px;
  flex-basis: 50%;
}

.wrapper .shows .content .event_cards .card_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.wrapper .shows .content .event_cards .card_head img {
  width: 45px;
  height: 45px;
}

.wrapper .shows .content .event_cards .card_head img.microscope {
  width: 65px;
  height: 65px;
}

.wrapper .shows .content .event_cards .card_head .info img {
  width: 200px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

.wrapper .shows .content .event_cards .card_head h2 {
  width: 80%;
  font-size: 20px;
  font-weight: 800;
  font-family: "Merriweather", serif;
  color: #194E84;
  letter-spacing: 2px;
}

.wrapper .shows .content .event_cards .card_body p {
  font-size: 16px;
  color: #194E84;
  margin: 10px 0;
}

.wrapper .shows .content .event_cards .card_link a {
  padding: 10px 20px;
  border: 1px solid #f24617;
  border-radius: 20px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Merriweather", serif;
  color: #f24617;
  transition: 0.45s ease;
}

.wrapper .shows .content .event_cards .card_link a:hover {
  background-image: linear-gradient(to right, #f24617 0%, #fd8900 100%);
  color: #fff;
}

.wrapper .charges {
  background-image: linear-gradient(65deg, #0D6CA9, #052B43);
  padding: 20px;
}

.wrapper .charges .content {
  display: flex;
  width: 70%;
  margin: 30px auto;
}

.wrapper .charges .content .pane {
  flex: 1;
}

.wrapper .charges .content .pane h3 {
  font-size: 40px;
  color: #fff;
  font-family: "Merriweather", serif;
}

.wrapper .charges .content .pane table {
  width: 100%;
}

.wrapper .charges .content .pane table thead th {
  background-color: #fff;
  padding: 10px 20px;
}

.wrapper .charges .content .pane table tbody tr td {
  border: 1px solid #fff;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.wrapper .charges .content .pane table tbody tr td:first-child {
  text-align: left;
}

.wrapper .charges .content .pane ul {
  margin-left: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.wrapper .charges .content .pane ul li {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Merriweather", serif;
  margin: 10px 0;
}

.wrapper .charges .content .pane p {
  color: #fff;
  font-size: 16px;
  margin: 10px 0;
}

.wrapper .charges .content .pane img {
  width: 20px;
  display: inline-block;
  margin-right: 2px;
}

.wrapper .charges .content .pane h4 {
  color: #fff;
  font-weight: bold;
  font-family: "Merriweather", serif;
  font-size: 20px;
  margin-top: 20px;
}

.wrapper .charges .content .pane:last-child {
  text-align: right;
}

.wrapper .charges .content .pane:last-child img {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 40px;
}

.wrapper .showcase {
  width: 70%;
  margin: 60px auto;
}

.wrapper .showcase .title h1 {
  font-size: 40px;
  font-family: "Merriweather", serif;
  font-weight: 400;
}

.wrapper .showcase .content {
  display: flex;
}

.wrapper .showcase .content .pane {
  padding: 20px;
  flex: 1;
}

.wrapper .showcase .content .pane ul {
  margin-left: 20px;
}

.wrapper .showcase .content .pane ul li {
  font-size: 20px;
  margin-top: 10px;
}

.wrapper .others {
  background-image: linear-gradient(to right, #f24617 0%, #fd8900 100%);
  padding: 20px;
}

.wrapper .others .title {
  width: 70%;
  margin: 20px auto 10px auto;
  color: #fff;
  font-family: "Merriweather", serif;
}

.wrapper .others .content {
  width: 70%;
  margin: 20px auto;
  display: flex;
  justify-content: space-between;
}

.wrapper .others .content .pane {
  padding: 20px;
  flex: 1;
}

.wrapper .others .content .pane ul {
  margin-left: 20px;
}

.wrapper .others .content .pane ul li {
  font-size: 20px;
  margin-top: 10px;
  color: #fff;
}

.wrapper .contact {
  width: 70%;
  margin: 40px auto;
}

.wrapper .contact .content {
  display: flex;
}

.wrapper .contact .content .pane {
  flex: 1;
}

.wrapper .contact .content .pane h1 {
  font-size: 40px;
  font-weight: 400;
  font-family: "Merriweather", serif;
}

.wrapper .contact .content .pane h1 span {
  font-weight: bold;
  font-size: 50px;
}

.wrapper .contact .content .pane:last-child {
  flex: 2;
  display: flex;
  grid-gap: 10px;
  justify-content: center;
  border-left: 5px solid #103363;
}

.wrapper .contact .content .pane .con_block {
  background-color: #EBF1F8;
  padding: 20px;
  border-radius: 10px;
  flex-basis: 38%;
}

.wrapper .contact .content .pane .con_block h4 {
  font-weight: bold;
  font-family: "Merriweather", sanserif;
}

.wrapper .contact .content .pane .con_block p {
  font-family: "Merriweather", sanserif;
  margin: 5px 0;
}

.wrapper .footer {
  background: #103363;
  padding: 20px;
}

.wrapper .footer .content {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.wrapper .footer .content .pane {
  flex: 1;
}

.wrapper .footer .content .pane:first-child {
  flex: 1.5;
}

.wrapper .footer .content .pane h3 {
  font-weight: 800;
  font-family: "Merriweather", sanserif;
  text-transform: uppercase;
  font-size: 30px;
  color: #fff;
}

.wrapper .footer .content .pane p {
  font-size: 12px;
  color: #fff;
  font-family: "Merriweather", sanserif;
  margin: 10px 0;
  line-height: 17px;
}

.wrapper .footer .content .pane h5 {
  font-weight: bold;
  color: #fff;
  font-size: 16px;
}

.wrapper .footer .content .pane ul {
  margin-left: 20px;
  list-style: none;
}

.wrapper .footer .content .pane ul li {
  margin: 10px 0;
}

.wrapper .footer .content .pane ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Merriweather", sanserif;
  font-size: 13px;
}

.wrapper .footer .content .pane .social-links {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.wrapper .footer .content .pane .social-links a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
}

.wrapper .footer .content .pane .social-links a img {
  width: 20px;
}

.wrapper .details_wrapper {
  margin: 40px auto;
  padding-bottom: 43px;
  width: 70%;
}

.wrapper .details_wrapper .title {
  display: flex;
  align-items: center;
}

.wrapper .details_wrapper .title img {
  padding-right: 20px;
  border-right: 2px solid;
}

.wrapper .details_wrapper .title h2 {
  font-size: 50px;
  font-family: mergeOne;
  padding-left: 20px;
  font-weight: 900;
}

.wrapper .details_wrapper .content_product {
  display: flex;
  margin: 30px 0;
}

.wrapper .details_wrapper .content_product .pane {
  flex: 1;
}

.wrapper .details_wrapper .content_product .pane ul {
  margin-left: 20px;
  list-style: circle;
}

.wrapper .details_wrapper .content_product .pane ul li {
  margin: 10px 0;
  font-size: 20px;
  font-family: mergeOne;
}

.wrapper .details_wrapper a {
  display: inline-block;
  padding: 15px 20px;
  text-transform: uppercase;
  text-decoration: none;
  background: #103363;
  color: #fff;
  font-size: 20px;
  font-family: mergeOne;
}

.wrapper .details_wrapper a.btn-gradient {
  background-image: linear-gradient(to right, #f24617 0%, #fd8900 100%);
}

.wrapper .details_wrapper hr {
  margin: 18px 0;
}

.wrapper .details_wrapper .content_para {
  display: flex;
  margin: 30px 0;
}

.wrapper .details_wrapper .content_para .pane {
  flex: 1;
}

.wrapper .details_wrapper .content_para .pane ul {
  list-style: none;
  margin-left: 20px;
}

.wrapper .details_wrapper .content_para .pane ul li {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 20px;
  font-family: mergeOne;
}

.wrapper .details_wrapper .content_para .pane ul li .icon {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #EBF1F8;
  border-radius: 10px;
}

.wrapper .details_wrapper .content_para .pane ul li .icon img {
  width: 60px;
}

.wrapper .details_wrapper .content_para .cards {
  padding: 15px;
  background-color: #EBF1F8;
  margin: 10px;
  height: 100px;
}

.wrapper .details_wrapper .content_para .cards p {
  color: #103363;
  font-size: 18px;
}

.navigation img {
  width: 80%;
  height: 80px;
  margin: 10px auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.partner {
  margin: 50px 0 !important;
}
.partner h1{
  font-size: 20px;
}
.partner h2{
  font-size: 30px;
}
.partner img {
  width: 150px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 800px) {
  .header {
    flex-direction: column !important;
  }
  .header .sub-titles {
    flex-direction: column !important;
    margin-bottom: 10px !important;
  }
  .header p {
    font-size: 12px !important;
    border: none !important;
    margin: 0 !important;
    text-align: center;
  }
  .banner .content {
    margin-top: 10px;
    width: 90% !important;
  }
  .banner .content .two_cards {
    flex-direction: column !important;
  }
  .banner .content .cta_buttons {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .banner img {
    width: 200px !important;
  }
  .banner h1 {
    font-size: 30px !important;
  }
  .banner p {
    font-size: 12px !important;
    line-height: 15px !important;
  }
  .wrapper .registration_strip .content {
    flex-direction: column !important;
  }
  .wrapper .registration_strip .content p {
    margin: 0 !important;
    text-align: center !important;
    font-size: 20px !important;
  }
  .wrapper .shows .title {
    flex-direction: column !important;
  }
  .wrapper .shows .title .showDate {
    flex-direction: column !important;
  }
  .wrapper section {
    margin: 60px auto;
    width: 90% !important;
  }
  .wrapper .shows .content {
    flex-direction: column !important;
  }
  .wrapper .charges .content {
    width: 90% !important;
  }
  .wrapper .charges .content .pane:nth-child(2) {
    display: none !important;
  }
  .wrapper .showcase {
    width: 90% !important;
  }
  .wrapper .showcase .content {
    flex-direction: column !important;
  }
  .wrapper .others .title {
    width: 90% !important;
  }
  .wrapper .others .content {
    width: 90% !important;
    flex-direction: column !important;
  }
  .wrapper .contact {
    width: 90% !important;
  }
  .wrapper .contact .content {
    flex-direction: column !important;
  }
  .wrapper .contact .content .pane:nth-child(2) {
    flex-direction: column !important;
  }
  .wrapper .footer .content {
    width: 90%;
    flex-direction: column !important;
  }
  .wrapper .footer .content ul {
    margin-left: 0 !important;
  }
  .wrapper .details_wrapper {
    width: 90% !important;
  }
  .wrapper .details_wrapper .title {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .wrapper .details_wrapper .title img {
    width: 200px !important;
  }
  .wrapper .details_wrapper .title h2 {
    padding-left: 0 !important;
    font-size: 30px !important;
  }
  .wrapper .details_wrapper .content_product {
    flex-direction: column !important;
  }
  .wrapper .details_wrapper .content_para {
    flex-direction: column !important;
  }
  .wrapper .details_wrapper .content_para .cards {
    height: auto !important;
  }
}
.scroll_exhibitor .mySwiper {
  height: 175px;
}

.scroll_exhibitor .mySwiper .swiper-slide {
  height: 120px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  border-radius: 10px;
}

.scroll_exhibitor .mySwiper .swiper-slide img {
  width: 80%;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll_exhibitor .mySwiper .swiper-slide small {
  display: none;
  text-align: center;
  font-size: 12px;
  margin-top: 5px;
  color: #888;
}

.scroll_exhibitor .mySwiper .swiper-pagination {
  bottom: 0;
} 
#seminar-contents {
  display: flex;
  grid-gap: 10px;
}
#seminar-contents .seminar-cards {
  padding: 20px;
  border-radius: 10px;
  background: #eaf7ff;
  flex: 1;
  min-height: 300px;
}
#seminar-contents .seminar-cards h2 {
  color: #0D6CA9;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
}
#seminar-contents .seminar-cards h5 {
  font-weight: 600;
  text-align: left;
  margin-top: 20px;
  font-style: italic;
}
#seminar-contents .seminar-cards ul {
  padding-left: 30px;
}
#seminar-contents .seminar-cards ul li {
  text-align: left;
  margin-bottom: 10px;
}
#seminar-contents .seminar-cards p {
  text-align: left;
}/*# sourceMappingURL=styles.css.map */

.speakerSwiper .swiper-slide {
  
  height: auto;
  padding: 10px;
  border-radius: 10px;
}
.speakerSwiper .swiper-wrapper {
  display: flex;
  grid-gap:20px;
}


.speakerSwiper .slick-slide {
  width: 300px !important;
  margin-left: 10px;
}

