@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,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
}
.link_button{
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 15px;
  width: 360px;
  background: #33c4f0;
  color: #000;
  font-style: normal !important;
  text-decoration: none !important;
  border-radius: 3px;
}
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  box-sizing: border-box;
}

.glow-on-hover {
  /* width: 150px;
  height: 40px; */
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 0;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes animatedBackground {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.wrapper {
  width: 100%;
  max-width: 2100px;
  margin: 0 auto;
  position: relative;
}
.wrapper .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-bottom-left-radius: 10px;
  background: #ffab0e;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #000;
  text-decoration: none;
}
.wrapper .scrollToTop {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-top-left-radius: 10px;
  background: #1e546c;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  text-decoration: none;
}
.wrapper .header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #ddd;
}
.wrapper .header img {
  width: 200px;
  height: 80px;
  object-fit: contain;
}

.wrapper .covid-main {
  border-top: 1px solid #333;
}
.wrapper .covid-main .container {
  margin: 50px auto;
}
.wrapper .covid-main .container h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  position: relative;
}
.wrapper .covid-main .container h1::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #333;
  left: 0;
  position: absolute;
  bottom: -10px;
}
.wrapper .covid-main .container .link {
  margin: 20px 0 10px 0;
  display: block;
}
.wrapper .covid-main .container h4 {
  font-weight: 700;
  margin: 15px 0;
  line-height: 25px;
}
.wrapper .covid-main .container ul {
  padding: 0 20px;
}
.wrapper .covid-main .container ul li {
  margin: 10px 0;
}
.wrapper .covid-main .container p {
  text-align: justify;
}

.wrapper .menu-content {
  padding: 20px;
  position: fixed;
  height: auto;
  /* width: 300px; */
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  right: 100px;
  z-index: 10000;
  background: #333;
  transform: translateY(-600px);
  transition: 1s ease;
}

.wrapper .menu-content .menu_footer{
  width: 300px;
}
.wrapper .menu-content.show {
  transform: translateY(0);
}
.wrapper .menu-content a.close {
  position: absolute;
  top: 30px;
  right: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  z-index: 10000;
}


.wrapper .menu-content  ul {
  width: 300px;
  list-style: none;
  margin-top: 40px;
}
.wrapper .menu-content  ul a {
  padding: 10px 20px;
  border-bottom: 1px dotted #fff;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
.wrapper .menu-content  ul a:last-child {
  border-bottom: none;
}
.wrapper .menu-content  p {
  padding: 10px;
  font-size: 12px;
  color: #fff;
  background: #888;
  margin: 20px 0;
  border-radius: 2px;
  text-align: center;
}
.wrapper .social_media_content {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #1e546c;
  height: 60px;
  /* width: 400px; */
  border-top-right-radius: 10px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .social_media_content a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
  height: 130px;
  width: 50px;
  margin-bottom: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wrapper .social_media_content a span {
  width: 40px;
  height: 40px;
  transition: 1s ease;
  background: #1e546c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.wrapper .social_media_content a span img {
  width: 20px;
  height: 20px;
}
.wrapper .social_media_content a:hover {
  color: #fff;
}
.wrapper .social_media_content a:hover span {
  transform: translateY(-30px);
}
.wrapper .social_media_content a:hover span.facebook {
  background: #4267B2;
  box-shadow: 0 2px 14px #6c9dff;
}
.wrapper .social_media_content a:hover span.twitter {
  background: #1DA1F2;
  box-shadow: 0 2px 14px #5bc0ff;
}
.wrapper .social_media_content a:hover span.instagram {
  background: #cd486b;
  box-shadow: 0 2px 14px #f75f88;
}
.wrapper .social_media_content a:hover span.linkedin {
  background: #0e76a8;
  box-shadow: 0 2px 14px #7bd5ff;
}
.wrapper .social_media_content a:hover span.youtube {
  background: #FF0000;
  box-shadow: 0 2px 14px #ff2a2a;
}
.wrapper .social_media_content a:hover span.pine {
  background: #E60023;
  box-shadow: 0 2px 14px rgb(255, 83, 83);
}
.wrapper .social_media_content a:hover span.koo {
  background: #ffbb00;
  box-shadow: 0 2px 14px #f0a400;
}
.wrapper .banner {
  height: 550px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  background: #1f5b77;
  background-image: linear-gradient(rgba(62, 134, 175, 0.753), rgba(3, 61, 78, 0.6)), url("../../image/closeup-view-cylindrical-grinder-industrial-concept.jpg");
  animation: animatedBackground 40s infinite;
  background-position: 0px 0px;
  background-repeat: repeat-x;
  background-attachment: fixed;
  background-size: contain;
}
.wrapper .banner .content {
  height: auto;
  position: relative;
  z-index: 100;
  width: 90%;
  margin: 0 auto;
}
.wrapper .banner .content h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 50px;
  color: #fff;
  width: 70%;
  display: none;
  transition: 1s ease;
}
@keyframes slideRightToLeft {
  from {
    transform: translateX(50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.wrapper .banner .content h1.animate {
  display: block;
  animation: slideRightToLeft 1s ease;
}
.wrapper .banner .content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 55px;
  color: #fff;
  width: 90%;
  display: none;
  transition: 1s ease;
  transform: translateX(50%);
}
.wrapper .banner .content h2.animate {
  display: block;
  transform: translateX(0);
  animation: slideRightToLeft 1s ease;
}
.wrapper .banner .content p {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-size: 20px;
  color: #fff;
  margin-top: 20px;
  display: none;
  transition: 1s ease;
}
.wrapper .banner .content p.animate {
  display: block;
  animation: slideRightToLeft 1s ease;
}
.wrapper .banner .dottedBlock1 {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
}
.wrapper .banner .dottedBlock1 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}
.wrapper .banner .dottedBlock2 {
  position: absolute;
  top: -50px;
  right: 200px;
  width: 200px;
  height: 200px;
}
.wrapper .banner .dottedBlock2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}
.wrapper .banner .dottedBlock3 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
}
.wrapper .banner .dottedBlock3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
}
.wrapper .banner .circle1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #71FFF6;
  opacity: 0.4;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100px;
  z-index: 10;
}
.wrapper .banner .circle2 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #258fd6;
  opacity: 0.6;
  position: absolute;
  bottom: 100px;
  left: 200px;
  z-index: 10;
}
.wrapper .banner .circle3 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #258fd6;
  opacity: 0.6;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.wrapper .main-container {
  margin-bottom: 60px;
}
.wrapper .main-container .about-the-exhibition {
  background: #ecf8fc;
  padding: 20px 0;
}
.wrapper .main-container .about-the-exhibition .container h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 300;
}
.wrapper .main-container .about-the-exhibition .container h2 span {
  font-weight: 800;
  font-size: 40px;
  display: block;
}
.wrapper .main-container .about-the-exhibition .container .btn-container {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 20px;
}
.wrapper .main-container .about-the-exhibition .container .btn-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #333;
  color: #fff;
  text-decoration: none;
}
.wrapper .main-container .about-the-exhibition .container .btn-container a:last-child {
  margin-left: 10px;
}
.wrapper .main-container .about-the-exhibition .container p {
  font-family: "Roboto", sans-serif;
  line-height: 30px;
  font-size: 18px;
  font-weight: 100;
}
.wrapper .main-container .whyGrind .left {
  background: #1f5b77;
  background-image: linear-gradient(#33c4f0, #02042b8a), url("../../image/man-working-with-angular-grinder-with-sparkles-from-it.jpg");
  background-size: cover;
  background-attachment: fixed;
  padding: 20px;
}
/* .wrapper .main-container .whyGrind .left .content {
  width: 70%;
  margin: 0 auto;
} */
.wrapper .main-container .whyGrind .left h2 {
  font-size: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.wrapper .main-container .whyGrind .left ul li {
  color: #fff;
  margin: 30px 0;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}
/* .wrapper .main-container .whyGrind .right .content {
  width: 80%;
  margin: 0 auto;
} */
.wrapper .main-container .whyGrind .right h2 {
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  color: #000;
}
.wrapper .main-container .whyGrind .right .block_container {
  width: 80%;
  margin: 30px 0 0 0;
}
.wrapper .main-container .whyGrind .right .block_container .block {
  height: 100px;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.wrapper .main-container .whyGrind .right .block_container .block .left-sec {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 30px;
  background: #FFBE16;
  height: 100%;
}
.wrapper .main-container .whyGrind .right .block_container .block .left-sec h1 {
  margin: 0;
  padding: 0;
  font-weight: 900;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: #000;
  margin: 5px 0;
}
.wrapper .main-container .whyGrind .right .block_container .block .left-sec p {
  margin: 0;
  font-size: 16px;
  color: #000;
  padding: 2px 0;
}
.wrapper .main-container .whyGrind .right .block_container .block .right-sec {
  flex: 1;
  background: #1e546c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.wrapper .main-container .whyGrind .right .block_container .block .right-sec img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.wrapper .main-container .whyGrind .right p{
  font-size: 16px;
}
.wrapper .main-container .economicScenario .container .title h1 {
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  color: #000;
}
.wrapper .main-container .economicScenario .container .main-para {
  line-height: 25px;
}
.wrapper .main-container .economicScenario .container .sub-title {
  margin: 20px 0;
}
.wrapper .main-container .economicScenario .container .sub-title h3 {
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}
.wrapper .main-container .economicScenario .container .sub-para {
  text-align: justify;
  line-height: 25px;
}
.wrapper .main-container .focusProducts {
  background: #1e546c;
  padding: 30px 0;
}
.wrapper .main-container .focusProducts .container .title {
  margin: 20px 0;
}
.wrapper .main-container .focusProducts .container .title h2 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
}
.wrapper .main-container .focusProducts .container ul {
  padding: 15px;
}
.wrapper .main-container .focusProducts .container ul li {
  color: #fff;
  margin: 10px 0;
  font-size: 22px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}
.wrapper .main-container .venue {
  background: #f0f0f0;
  /* padding: 30px 0; */
}
.wrapper .main-container .venue .row{
  margin-top: 10px;
}
.noteExtra {
  background: #e4e4e4;
}
.noteExtra .note{
  padding: 15px;
  margin:0;
}
.wrapper .main-container .venue .container .content .circle {
  width: 80px;
  margin: 0 auto;
  height: 80px;
  background: #1e546c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.wrapper .main-container .venue .container .content .circle i {
  color: #fff;
  font-size: 30px;
}
.wrapper .main-container .venue .container .content .info {
  display: flex;
  align-items: center;
  height: 80px;
  width: 80%;
  margin: 0 auto;
}
.wrapper .main-container .venue .container .content .info p {
  font-size: 20px;
  margin: 0 !important;
}
.wrapper .main-container .venue .container .content .info p small {
  display: block;
  margin: 10px 0 0 0;
}

.wrapper .main-container .venue .container .content:last-child {
  margin-top: 20px;
}
.wrapper .main-container .payment {
  padding: 30px 0;
}
.wrapper .main-container .payment .container .left h1 {
  font-size: 35px;
  color: #000;
  margin: 10px 0 20px 0;
  font-family: "Poppins", sans-serif;
}
.wrapper .main-container .payment .container .left p {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  text-align: justify;
  font-weight: 400;
}
/* .wrapper .main-container .payment .container .left a {
  font-style: italic;
  margin: 10px 0;
  display: block;
} */
.wrapper .main-container .payment .container .left .noteSec {
  padding: 10px;
  background: #ececec;
  border-radius: 5px;
}
.wrapper .main-container .payment .container .left .noteSec small {
  font-size: 12px;
  line-height: 25px;
}
.wrapper .main-container .payment .container .right {
  padding: 0 20px;
}
.wrapper .main-container .payment .container .right h2 {
  font-size: 35px;
  color: #000;
  margin: 10px 0 20px 0;
  font-family: "Poppins", sans-serif;
}
.wrapper .main-container .payment .container .right h3 {
  font-size: 30px;
  font-weight: 800;
  margin: 0;
}
.wrapper .main-container .payment .container .right p {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  text-align: justify;
  font-weight: 400;
  margin: 10px 0;
}
.wrapper .main-container .payment .container .right a {
  font-style: italic;
  margin: 10px 0;
  display: block;
}
.wrapper .main-container .payment .container .right .noteSec {
  padding: 10px;
  background: #ececec;
  border-radius: 5px;
}
.wrapper .main-container .payment .container .right .noteSec small {
  font-size: 12px;
  line-height: 25px;
}
.wrapper .main-container .boothDisplay {
  padding: 30px 0;
}
.wrapper .main-container .boothDisplay .container h1 {
  font-size: 45px;
  color: #000;
  font-weight: 700;
}
.wrapper .main-container .boothDisplay .container p {
  width: 80%;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  margin: 20px 0;
}
.wrapper .main-container .boothDisplay .container .block {
  display: flex;
  align-items: center;
  padding: 10px;
}
.wrapper .main-container .boothDisplay .container .block .cirle {
  width: 60px;
  height: 60px;
  background: #1e546c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.wrapper .main-container .boothDisplay .container .block .cirle img {
  width: 70%;
  object-fit: contain;
}
.wrapper .main-container .boothDisplay .container .block p {
  width: 80%;
  font-family: "Poppins", sans-serif;
  margin: 0 0 0 10px;
}
.payment a{
  padding: 15px 30px;
  text-decoration: none;
  color: #fff;
  margin: 20px 0;
  display: block;
  width: 350px;
}
.wrapper .main-container .subApplication {
  padding: 30px 0;
}
.wrapper .main-container .subApplication .container h1 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
}
.wrapper .main-container .subApplication .container p {
  width: 80%;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  margin: 20px 0;
  width: 100%;
}
.wrapper .main-container .subApplication .container a {
 padding: 15px 30px;
 text-decoration: none;
 color: #fff;
}
.wrapper .main-container .subApplication .container .left {
  background: #1e546c;
  padding: 15px;
  height: 100%;
}
.wrapper .main-container .subApplication .container .left h1 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
}
.wrapper .main-container .subApplication .container .left p {
  color: #fff;
  width: 100%;
  font-family: "Poppins", sans-serif;
  line-height: 30px;
  margin-top: 18px;
  display: block;
  text-align: justify;
}
.wrapper .main-container .subApplication .container .right h1 {
  font-size: 30px;
}
.wrapper .main-container .subApplication .container .right p {
  text-align: justify;
  font-size: 14px;
  width: 100%;
}
.wrapper .main-container .force {
  padding: 30px 0;
}
.wrapper .main-container .force .container h1 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
}
.wrapper .main-container .force .container p {
  text-align: justify;
  line-height: 30px;
  font-weight: 300;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  margin: 20px 0;
  width: 100%;
}
.wrapper .main-container .force .container .note {
  padding: 10px;
  background: #f4f4f4;
  font-size: 13px;
  font-style: italic;
}
.wrapper .main-container .contact {
  padding: 30px 0;
}
.wrapper .main-container .contact .container h1 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.wrapper .main-container .contact .container h3 {
  font-weight: 600;
  color: #000;
  font-family: "Poppins", sans-serif;
}
.wrapper .main-container .contact .container h4 {
  color: #000;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
}
.wrapper .main-container .contact .container h4.designation {
  font-size: 20px;
  font-weight: 200;
}
.wrapper .main-container .contact .container p {
  font-weight: 300;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  margin: 0;
  width: 100%;
}
.wrapper .main-container .contact .container .note {
  padding: 10px;
  background: #f4f4f4;
  font-size: 13px;
  font-style: italic;
}



@media only screen and (max-width: 767px) {
  .wrapper .header img {
      width: 150px;
      height: 80px;
  }
  .wrapper .banner  {
    height: 300px;
  }
  .wrapper .banner h1 {
      font-family: "Poppins", sans-serif;
      font-weight: 200;
      font-size: 20px !important;
      color: #fff;
      width: 70%;
      display: none;
      transition: 1s ease;
  }
  .wrapper .banner h2 {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 25px !important;
      color: #fff;
      width: 90%;
      display: none;
      transition: 1s ease;
      transform: translateX(50%);
  }
  /* .wrapper .main-container .whyGrind .left .content {
    width: 90%;
    margin: 0 auto;
  } */
  .wrapper .main-container .about-the-exhibition .container p {
    margin-top: 20px;
  } 
  /* .wrapper .main-container .whyGrind .right .content {
    width: 90%;
    margin: 0 auto;
  } */
  .wrapper .main-container .whyGrind .right h2 {
    font-size: 40px;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    width: 100%;
  }
  .wrapper .main-container .whyGrind .right .block_container {
    width: 100%;
    margin: 30px 0 0 0;
  }
  .wrapper .main-container .economicScenario .container .main-para {
    line-height: 25px;
    text-align: justify;
  
  }
  .wrapper .main-container .economicScenario .container .title h1 {
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    font-size: 35px;
    color: #000;
    text-align: center;
  }
  .wrapper .main-container .focusProducts .container ul {
    padding: 15px;
    padding: 0 20px;
  }
  .wrapper .main-container .venue .container .content .info {
    display: flex;
    align-items: center;
    height: 80px;
    width: 80%;
    margin: 10px auto;
  }
  
  .wrapper .main-container .payment .container .left h1 {
    font-size: 35px;
    color: #000;
    margin: 10px 0 20px 0;
    font-family: "Poppins", sans-serif;
    text-align: center;
  }
  .wrapper .scrollToTop {
    position: fixed;
    bottom: 60px;
    right: 0;
    width: 80px;
    height: 80px;
    border-top-left-radius: 10px;
    background: #1e546c;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
  }
  .wrapper .menu-content{
    top: 0;
    left: 0;
    width: 100%;
  }
  .wrapper .menu-content .menu_footer{
    width: 100%;
  }
  .wrapper .menu-content .close{
    top: 0;
    right: 0;
  }
  .wrapper .menu-content ul{
    width: 100%;
  }
}



@media only screen and (max-width: 900px) {
  .wrapper .main-container .venue .container .content .info p {
      text-align: center;
      width: 100%;
  }
  .wrapper .main-container .boothDisplay .container h1 {
      font-size: 45px;
      color: #000;
      font-weight: 700;
      text-align: center;
  }
  .wrapper .main-container .boothDisplay .container p {
      width: 100%;
      text-align: center;
      font-size: 17px;
      font-family: "Poppins", sans-serif;
      margin: 20px 0;
  }
  .wrapper .main-container .boothDisplay .container .block {
      display: flex;
      align-items: center;
      flex-direction: column;
      padding: 10px;
  }
  .wrapper .main-container .boothDisplay .container .block .cirle {
      width: 60px;
      height: 60px;
      background: #1e546c;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
  }
  .wrapper .main-container .boothDisplay .container .block .cirle img {
      width: 70%;
      object-fit: contain;
  }
  .wrapper .main-container .boothDisplay .container .block p {
      width: 80%;
      font-family: "Poppins", sans-serif;
      margin: 0 0 0 10px;
      text-align: center;
  }
}