@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
*::before, *::after, * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  background: #888 !important;
  font-family: "Poppins", sans-serif;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
  padding-bottom: 100px;
}
.wrapper .header {
  height: 150px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.wrapper .header .logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.wrapper .header .logos img {
  width: 300px;
  height: 80px;
  object-fit: contain;
}
.wrapper .banner {
  background-image: linear-gradient(#00212f87, #00243387), url("../../images/shutterstock_767507869.jpg");
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
}
.wrapper .banner .content {
  width: 100%;
  height: 100%;
  display: flex;
}
.wrapper .banner .content .left_pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 60%;
  background-color: #01258886;
  padding: 0 30px 0 80px;
}
.wrapper .banner .content .left_pane h1 {
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
.wrapper .banner .content .left_pane h2 {
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.wrapper .banner .content .left_pane h3 {
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  font-size: 22px;
  margin-top: 10px;
  font-family: "Poppins", sans-serif;
}
.wrapper .banner .content .right_pane {
  flex-basis: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .banner .content .right_pane .timer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.wrapper .banner .content .right_pane .timer_content .main-div {
  position: relative;
  margin: 0 5px;
  background-color: transparent;
  z-index: 100 !important;
  width: 100px;
  height: 100px;
}
.wrapper .banner .content .right_pane .timer_content .main-div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 50%;
  -webkit-box-shadow: 0 0 17px 3px #ffb547, 0 0 4px 2px #ffb547;
  box-shadow: 0 0 17px 3px #ffb547, 0 0 4px 2px #ffb547;
  z-index: 1;
  -webkit-animation-name: yellow-shadow;
  animation-name: yellow-shadow;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.wrapper .banner .content .right_pane .timer_content .main-div::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 50%;
  -webkit-box-shadow: 0 0 17px 3px #1ba4ff, 0 0 4px 2px #1ba4ff;
  box-shadow: 0 0 17px 3px #1ba4ff, 0 0 4px 2px #1ba4ff;
  z-index: 1;
  -webkit-animation-name: cyan-shadow;
  animation-name: cyan-shadow;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.wrapper .banner .content .right_pane .timer_content h1 {
  font-size: 40px;
  margin: 0;
  position: relative;
  z-index: 3;
  padding: 15px;
  background-color: #001242;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  outline: 1px solid;
}
.wrapper .banner .content .right_pane .timer_content h1 span {
  font-size: 20px;
  text-align: center;
  font-weight: 300;
}
@-webkit-keyframes yellow-shadow {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 50%;
    left: 0;
  }
  50% {
    top: 50%;
    left: 50%;
  }
  75% {
    top: 0;
    left: 50%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@keyframes yellow-shadow {
  0% {
    top: 0;
    left: 0;
  }
  25% {
    top: 50%;
    left: 0;
  }
  50% {
    top: 50%;
    left: 50%;
  }
  75% {
    top: 0;
    left: 50%;
  }
  100% {
    top: 0;
    left: 0;
  }
}
@-webkit-keyframes cyan-shadow {
  0% {
    right: 0;
    bottom: 0;
  }
  25% {
    right: 0;
    bottom: 50%;
  }
  50% {
    right: 50%;
    bottom: 50%;
  }
  75% {
    right: 50%;
    bottom: 0;
  }
  100% {
    right: 0;
    bottom: 0;
  }
}
@keyframes cyan-shadow {
  0% {
    right: 0;
    bottom: 0;
  }
  25% {
    right: 0;
    bottom: 50%;
  }
  50% {
    right: 50%;
    bottom: 50%;
  }
  75% {
    right: 50%;
    bottom: 0;
  }
  100% {
    right: 0;
    bottom: 0;
  }
}
@-webkit-keyframes gradient-shadow {
  0% {
    -webkit-box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
    box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
  }
  20% {
    -webkit-box-shadow: 0 0 17px 3px #0ff, 0 0 4px 2px #0ff;
    box-shadow: 0 0 17px 3px #0ff, 0 0 4px 2px #0ff;
  }
  40% {
    -webkit-box-shadow: 0 0 17px 3px #0f0, 0 0 4px 2px #0f0;
    box-shadow: 0 0 17px 3px #0f0, 0 0 4px 2px #0f0;
  }
  60% {
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  }
  80% {
    -webkit-box-shadow: 0 0 17px 3px #f00, 0 0 4px 2px #f00;
    box-shadow: 0 0 17px 3px #f00, 0 0 4px 2px #f00;
  }
  100% {
    -webkit-box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
    box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
  }
}
@keyframes gradient-shadow {
  0% {
    -webkit-box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
    box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
  }
  20% {
    -webkit-box-shadow: 0 0 17px 3px #0ff, 0 0 4px 2px #0ff;
    box-shadow: 0 0 17px 3px #0ff, 0 0 4px 2px #0ff;
  }
  40% {
    -webkit-box-shadow: 0 0 17px 3px #0f0, 0 0 4px 2px #0f0;
    box-shadow: 0 0 17px 3px #0f0, 0 0 4px 2px #0f0;
  }
  60% {
    -webkit-box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
    box-shadow: 0 0 17px 3px #ffff01, 0 0 4px 2px #ffff01;
  }
  80% {
    -webkit-box-shadow: 0 0 17px 3px #f00, 0 0 4px 2px #f00;
    box-shadow: 0 0 17px 3px #f00, 0 0 4px 2px #f00;
  }
  100% {
    -webkit-box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
    box-shadow: 0 0 17px 3px #C586C0, 0 0 4px 2px #C586C0;
  }
}
@-webkit-keyframes half-yellow-shadow {
  0% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
  16.66% {
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
  }
  32.32% {
    top: 0;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  49.98% {
    top: 50%;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  66.64% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 100%;
  }
  83.3% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 50%;
  }
  100% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@keyframes half-yellow-shadow {
  0% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
  16.66% {
    top: 0;
    left: 0;
    height: 50%;
    width: 100%;
  }
  32.32% {
    top: 0;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  49.98% {
    top: 50%;
    left: 50%;
    height: 50%;
    width: 50%;
  }
  66.64% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 100%;
  }
  83.3% {
    top: 50%;
    left: 0;
    height: 50%;
    width: 50%;
  }
  100% {
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
  }
}
@-webkit-keyframes half-cyan-shadow {
  0% {
    bottom: 0;
    right: 0;
    height: 50%;
    width: 50%;
  }
  16.66% {
    bottom: 0;
    right: 0;
    height: 50%;
    width: 100%;
  }
  32.32% {
    bottom: 0;
    right: 50%;
    height: 50%;
    width: 50%;
  }
  49.98% {
    bottom: 50%;
    right: 50%;
    height: 50%;
    width: 50%;
  }
  66.64% {
    bottom: 50%;
    right: 0;
    height: 50%;
    width: 100%;
  }
  83.3% {
    bottom: 50%;
    right: 0;
    height: 50%;
    width: 50%;
  }
  100% {
    bottom: 0;
    right: 0;
    height: 50%;
    width: 50%;
  }
}
@keyframes half-cyan-shadow {
  0% {
    bottom: 0;
    right: 0;
    height: 50%;
    width: 50%;
  }
  16.66% {
    bottom: 0;
    right: 0;
    height: 50%;
    width: 100%;
  }
  32.32% {
    bottom: 0;
    right: 50%;
    height: 50%;
    width: 50%;
  }
  49.98% {
    bottom: 50%;
    right: 50%;
    height: 50%;
    width: 50%;
  }
  66.64% {
    bottom: 50%;
    right: 0;
    height: 50%;
    width: 100%;
  }
  83.3% {
    bottom: 50%;
    right: 0;
    height: 50%;
    width: 50%;
  }
  100% {
    bottom: 0;
    right: 0;
    height: 50%;
    width: 50%;
  }
}
.wrapper .strip {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffb547;
}
.wrapper .strip p {
  color: #333;
  text-transform: uppercase;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.wrapper .strip2 {
  padding: 15px 0;
  display: flex;
  align-items: center;
  background: #41849E;
}
.wrapper .strip2 p {
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  width: 80%;
  padding: 0 30px;
  margin: 0 auto;
}
.wrapper section {
  width: 90%;
  margin: 50px auto;
}
.wrapper section.title-with-design .title {
  position: relative;
  background: url("../../images/Vector 1.png");
  background-size: contain;
  width: 60%;
  height: 100px;
  background-repeat: no-repeat;
}
.wrapper section.title-with-design .title h1 {
  font-size: 50px;
  padding: 10px 0 10px 60px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  width: 100%;
  text-transform: uppercase;
}
.wrapper section.about.title-with-design .title {
  position: relative;
  background: url("../../images/Vector 1.png");
  background-size: contain;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
}
.wrapper section.about.title-with-design .title h1 {
  font-size: 50px;
  padding: 10px 0 10px 60px;
  font-weight: 600;
  color: #fff;
  position: absolute;
  width: 95%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper section.title-with-design .title h1 span {
  color: #FFCD4E;
}
.wrapper section.about h1 a {
  margin-top: 30px;
  border-radius: 0 !important;
  padding: 10px 20px !important;
}
.wrapper section.about h1 a:last-child {
  background: #0D4E68 !important;
  color: #fff !important;
  border: none !important;
}
.wrapper section.about .content {
  width: 90%;
  margin: 70px auto 0 auto;
}
.wrapper section.about .content p {
  text-align: justify;
}
.wrapper section.aboutLocation .title h1 {
  font-size: 50px;
  padding: 10px 0 10px 0;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}
.wrapper section.aboutLocation .title h1 span {
  color: #35ACDC;
}
.wrapper section.products .content p {
  font-size: 18px;
  text-transform: capitalize;
}
.wrapper section.booth .content {
  margin: 50px 0;
}
.wrapper section.booth .content .block {
  display: flex;
  align-items: center;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
}
.wrapper section.booth .content .block img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.wrapper section.covid .content h1 {
  text-transform: uppercase;
  font-weight: 800;
  color: #0D4E68;
}
.wrapper section.covid .content .covid_btn {
  position: relative;
  text-decoration: none;
  width: 400px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0D4E68;
  color: #fff;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0 auto;
}
.wrapper section.covid .content .covid_btn .left {
  width: 20px;
  height: 100%;
  display: block;
  background-color: #ffb547;
}
.wrapper section.covid .content .covid_btn .right {
  width: 20px;
  height: 100%;
  display: block;
  background-color: #ffb547;
}
.wrapper section.info {
  display: block;
  margin-top: 30px;
}
.wrapper section.info .content a {
  text-decoration: none;
  padding: 10px 20px;
  color: #333;
  background: #ffb547;
  font-size: 20px;
  display: inline-block;
  margin-top: 10px;
}
.wrapper section.info .content p {
  text-align: justify;
}
.wrapper section.info .content .note {
  background: #f1f1f1;
  padding: 15px;
}
.wrapper section.info .content .note small {
  font-size: 20px;
  font-style: italic;
}
.wrapper section.contact h1 {
  color: #0D4E68;
  text-transform: uppercase;
}
.wrapper section.deadline {
  background: #0D4E68;
  width: 100%;
  margin-bottom: 0;
}
.wrapper section.deadline .content {
  width: 80%;
  margin: 20px auto 0 auto;
  padding: 30px;
}
.wrapper section.deadline .content a {
  text-decoration: none;
  padding: 10px 20px;
  color: #333;
  background: #ffb547;
  font-size: 20px;
  display: inline-block;
  margin-top: 10px;
  text-transform: uppercase;
}
.wrapper section.deadline .content p {
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  width: 70%;
}
.wrapper section.deadline .content p b {
  font-weight: 900;
}
.wrapper section.KeyHighlights {
  background: url("../../images/Vector 2.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.wrapper section.KeyHighlights .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
.wrapper section.KeyHighlights .content h1 {
  color: #FFCD4E;
  font-weight: 500;
  flex-basis: 40%;
  font-size: 40px;
  text-transform: uppercase;
}
.wrapper section.KeyHighlights .content .line {
  display: flex;
  width: 2px;
  height: 200px;
  background: #fff;
}
.wrapper section.KeyHighlights .content .inner_content {
  flex-basis: 40%;
  padding: 0 30px;
}
.wrapper section.KeyHighlights .content .inner_content p {
  margin: 5px 0;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
}
.wrapper section.Venue {
  background: url("../../images/Group 36.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wrapper section.Venue .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
.wrapper section.Venue .content h1 {
  color: #0D4E68;
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
}
.wrapper section.Venue .content p {
  font-size: 30px;
  color: #0D4E68;
  font-weight: 500;
  width: 100%;
}
.wrapper section.Venue .content .line {
  display: flex;
  width: 2px;
  height: 200px;
  background: #fff;
}
.wrapper section.Venue .content .inner_content {
  flex-basis: 40%;
  padding: 0 30px 0 100px;
}
.wrapper section.Venue .content .inner_content h1 {
  color: #fff;
  font-weight: 400;
  font-size: 40px;
  text-transform: uppercase;
}
.wrapper section.Venue .content .inner_content p {
  margin: 5px 0;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}
.wrapper section.participation {
  background: #0D4E68;
  width: 100%;
  margin: -95px auto 0 auto;
  position: relative;
}
.wrapper section.participation .content {
  margin: 0 auto;
  padding: 150px 0 50px 0;
  width: 80%;
}
.wrapper section.participation .content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 55px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.wrapper section.participation .content h1 span {
  color: #ffb547;
}
.wrapper section.participation .content p {
  color: #fff;
  font-weight: 300;
  font-size: 35px;
}
.wrapper section .content {
  margin: 30px 0;
}
.wrapper section .content p {
  font-size: 22px;
  font-weight: 300;
}
.wrapper section .content .row {
  margin: 50px auto;
}
.wrapper section .content .row .sub-heading {
  color: #0D4E68;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}
.wrapper section .content .row p {
  text-align: justify;
  margin-top: 20px;
}
.wrapper .anch-menu {
  width: 60px;
  height: 60px;
  background: #ffb547;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: fixed;
  top: 30px;
  right: 30px;
  text-decoration: none;
  color: #333;
  z-index: 1000;
}
.wrapper .anch-close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
}
.wrapper .menu {
  width: 0;
  position: fixed;
  height: 100%;
  background: #0D4E68;
  z-index: 1000;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  display: none;
}
.wrapper .menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.wrapper .menu ul a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  margin: 10px 0;
  font-weight: 500;
  display: block;
  padding: 10px;
  text-align: center;
  position: relative;
}
.wrapper .menu ul a:hover {
  color: #ffb547;
}
.wrapper .menu ul a:hover::after {
  content: "";
  width: 100px;
  height: 1px;
  background: #ffb547;
  bottom: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  animation: grow 0.45s ease;
}
@keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

.menu.slide {
  display: flex;
  width: 300px;
  animation: slideIn 0.45s ease;
}

#social-media-control {
  background: #079eeb;
  position: fixed;
  top: 30%;
  left: 0;
  border-radius: 0 5px 5px 0;
  font-size: 20px;
  color: #fff;
  z-index: 997;
  cursor: pointer;
  padding: 10px;
}

#social-media-control a {
  display: block;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 10px;
}

#go-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffb547;
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 5px;
  font-size: 20px;
  color: #333;
  z-index: 997;
  cursor: pointer;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 300px;
  }
}
.footer {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  background: #ffb547;
}
.footer p {
  color: #000;
  margin: 0;
  font-weight: 400;
  font-size: 20px;
}