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

:root {
  --white: #fff;
  --black: #000;
  --body: var(--white);
  --grey: #f4f1f1;
  --font: #1a1a1a;
  --font-size: 14px;
  --line-height: 24px;
  --sky-blue: #d1e5f6;
  --blue: #3e3e8d;
}

ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.btn,
button {
  position: relative;
  min-width: 10rem;
  min-height: 2.5rem;
  font-weight: 500;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn.btn-outline-secondary,
button.btn-outline-secondary {
  border-color: var(--black);
  color: var(--black);
  background: transparent;
}

.btn.btn-outline-secondary:hover,
button.btn-outline-secondary:hover {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
}

.btn.btn-outline-white,
button.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn.btn-outline-white:hover,
button.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
}

.btn.btn-outline-sky-blue,
button.btn-outline-sky-blue {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
  background: transparent;
}

.btn.btn-outline-sky-blue:hover,
button.btn-outline-sky-blue:hover {
  background: var(--sky-blue);
  color: var(--blue);
  text-decoration: none;
}

.btn + .btn,
button + .btn {
  margin-left: 1rem;
}

a {
  color: var(--black);
  text-decoration: none;
}

a:hover {
  color: var(--blue);
  text-decoration: underline;
}

body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--body);
  font-family: "Poppins", sans-serif;
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  scroll-behavior: smooth;
}

main {
  display: block;
  position: relative;
}

section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5rem;
}

section.white {
  background: var(--white);
}

section.sky-blue {
  background: var(--sky-blue);
}

section.grey {
  background: var(--grey);
}

section .overview {
  background: url("../images/overview.png") top right no-repeat;
  background-size: 50% 100%;
  padding: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  right: 0;
  top: 0;
}

section.homebanner {
  height: 100vh;
  padding: 0 0 3rem;
  background: url("../images/homebanner.png") no-repeat center;
  background-size: cover;
}

.container-md {
  position: relative;
}

.content h4 {
  margin-bottom: 2rem;
}

.content p {
  padding-right: 10rem;
  margin-bottom: 1rem;
}

.content .sponsor,
.content .vendor {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.content .vendor {
  border: 0px;
  padding: 0;
  background: var(--sky-blue);
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.content .vendor:after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(0, 0, 0, 0.5);
  width: 10px;
  margin: 0 auto;
  height: 10px;
}

.content .vendor .title {
  display: block;
  width: 100%;
  letter-spacing: 1px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 2rem;
  text-transform: uppercase;
  z-index: 9;
}

.content .vendor:hover {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.content .vendor:hover:after {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.content .vendor:hover .title {
  left: 0;
  bottom: 100px;
  text-align: center;
}

footer {
  background: var(--grey);
  text-align: center;
  padding: 2rem;
}

#MyNav .navbar-nav .nav-link {
  padding-right: 1rem;
  padding-left: 1rem;
  font-weight: 700;
  position: relative;
}

#MyNav .navbar-nav .nav-link:after {
  background: var(--blue);
  bottom: 0;
  content: "  ";
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  z-index: 9;
}

#MyNav .navbar-nav .nav-link.active,
#MyNav .navbar-nav .nav-link:hover {
  color: var(--blue);
  text-decoration: none;
}

#MyNav .navbar-nav .nav-link.active:after,
#MyNav .navbar-nav .nav-link:hover:after {
  width: calc(100% - 30px);
  left: 15px;
  margin: 0 auto;
}

#MyNav .navbar-brand img {
  width: 163px;
  height: 80px;
}

.hide_login_modal {
  color: #ffc107;
}

.hide_login_modal:hover {
  color: #0dcaf0;
}

.socialLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.flexCaption {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.heading {
  position: absolute;
  bottom: 40px;
}

.heading .welcome {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 0.75rem;
  display: none;
}

.heading .toptext {
  font-size: 14rem;
  line-height: 12rem;
  letter-spacing: 1rem;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 3px 3px 0px var(--sky-blue);
  margin-bottom: 1rem;
  display: none;
}

.heading .bottext {
  color: var(--blue);
  font-size: 4rem;
  margin-left: 0.75rem;
  font-weight: 700;
  text-shadow: 3px 3px 0px var(--sky-blue);
  display: none;
}

#clock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem 0 5rem;
}

#clock .timer {
  margin: 0.5rem;
}

#clock .count {
  border: 2px solid #fee200;
  background: var(--white);
  border-radius: 4px;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  padding: 3rem 0;
  width: 90px;
}

#clock .text {
  display: block;
  text-align: center;
  font-weight: 500;
  padding: 0.5rem 0;
}
.modal{
  z-index: 99999;

}
.bluemodal .form-control {
  border: 0;
}

.bluemodal .modal-content {
  border-radius: 0;
  border: 0;
  background: var(--blue);
  color: var(--white);
}

.bluemodal .modal-content .modal-header {
  padding: 1.5rem 2rem;
}

.bluemodal .modal-content .modal-header .modal-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 200;
  color: var(--white);
}

.bluemodal .modal-content .modal-header .btn-close {
  min-width: initial;
  padding: 0 0.75rem;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  background: var(--sky-blue)
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}

.bluemodal .modal-content .modal-body {
  padding: 2rem;
}

.bluemodal .modal-content .modal-body .detailTxt {
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 2rem;
}

.rightmodal .modal-dialog {
  position: fixed;
  right: 0;
  margin: 0;
  min-width: 50vw;
}

.rightmodal .modal-dialog .modal-content {
  min-height: 100vh;
  border-radius: 0;
  border: 0;
  background: var(--blue);
  color: var(--white);
}

.rightmodal .modal-dialog .modal-content .modal-header {
  padding: 1.5rem 2rem;
}

.rightmodal .modal-dialog .modal-content .modal-header .modal-title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 200;
}

.rightmodal .modal-dialog .modal-content .modal-header .btn-close {
  min-width: initial;
  padding: 0 0.75rem;
  -webkit-transform: scale(0.75);
  transform: scale(0.75);
  background: var(--sky-blue)
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e")
    center/1em auto no-repeat;
}

.rightmodal .modal-dialog .modal-content .modal-body {
  padding: 3rem;
  overflow: auto;
  height: calc(100vh - 180px);
}

.rightmodal .modal-dialog .modal-content .modal-body .mb-4 {
  margin-bottom: 3rem !important;
}

.rightmodal .accordion-button {
  position: relative;
  border-color: var(--white);
  font-weight: normal !important;
  font-size: 1.15rem;
}

.rightmodal .accordion-button[aria-expanded="false"] {
  color: var(--white);
}

.rightmodal .accordion-button[aria-expanded="true"] {
  color: var(--blue);
}

.rightmodal .accordion-button[aria-expanded="true"]:after {
  border-color: var(--blue);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  margin-top: 10px;
}

.rightmodal .accordion-button:after {
  background: none;
  border: solid var(--white);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 0.75rem;
  height: 0.75rem;
  margin-top: -10px;
}

.rightmodal .accordion-button:not(.collapsed):focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.rightmodal .accordion-collapse {
  border: 1px solid var(--white);
}

.rightmodal .accordion-body {
  background: var(--white);
  color: var(--blue);
}

.rightmodal .accordion-body .orderList {
  padding: 1.5rem;
  list-style: decimal;
}

.rightmodal .accordion-body .orderList li {
  margin-bottom: 1.5rem;
}

.loginBox {
  width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
  -webkit-box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 2px 2px rgba(0, 0, 0, 0.05);
  padding: 3rem;
}

.form-control {
  border-radius: 0;
  height: 46px;
}

.text-primary {
  color: var(--blue) !important;
}

.btn-primary {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
}

.btn-primary:hover {
  background: transparent !important;
  color: var(--blue) !important;
}

@media (max-width: 997px) {

  .navbar-toggler {
    min-width: initial;
    border-color: var(--blue);
  }
  #navbarSupportedContent form.d-flex.ms-auto{
    display: block !important;
  }
  #navbarSupportedContent .btn{
    display: block;
    margin: 4rem 2rem;
  }
 
  #navbarSupportedContent.show{
    position: fixed;  display: block;
    z-index: 999;
    top: 95px;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 1); transition: .06s all ease;
  }

  #clock .count {
   width: 85px;
  }
  #MyNav .navbar-nav .nav-link {
    font-weight: 400;
  }
  section {
    padding: 2rem;
  }
  section .content p {
    padding: 0;
  }
  section .content .vendor {
    margin-bottom: 1rem;
  }
  .heading .toptext {
    font-size: 10rem;
  }
  .heading .bottext {
    font-size: 2.75rem;
  }
  #clock .count {
    padding: 1rem;
  }
  .overview {
    display: none;
  }
  .socialLinks {
    display: block;
    text-align: left;
  }
  .rightmodal .col-md-6 + .col-md-6 {
    margin-top: 1.5rem !important;
  }
}
@media(max-width: 557px){
  section.homebanner{
    background: url(../images/homebanner.png) no-repeat top 10rem center;
    background-size: contain; height: initial; padding: 0;
  }
  .flexCaption{
    height: initial;
  }
  .heading{
    position: initial; margin-top: 20rem;
  }
}
@media (min-width: 1660px) {
  .socialLinks {
    height: 150px;
  }
  .rightmodal .modal-dialog {
    min-width: 35vw;
  }
  .expo21 {
    top: 285px !important;
    width: 600px im !important;
  }
  .bg-product {
    height: 450px !important;
  }
  .bg-product a.name {
    font-size: 32px !important;
    margin: 75px 0 0 75px !important;
  }
  .bg-product a.info {
    font-size: 18px !important;
    bottom: 150px !important;
  }
  .carousel-control-prev {
    left: 94% !important;
  }
  .carousel-control-next {
    left: 97% !important;
  }
}

/* Inner page 1 */
.bg-dash {
  background: url("../images/bg-dash.png") no-repeat;
  position: relative;
  width: 100%;
  height: 100vh;
  /* padding: 0; margin: 0;   */
  background-size: 100% 100%;
}

.cat-box {
  margin: 0;
  padding: 1rem;
  list-style: none;
  width: 233px;
  height: 397px;
  background: url("../images/standy.png") no-repeat;
  position: absolute;
  left: 110px;
  background-size: contain;
  bottom: 10px;
  padding: 3rem 2rem;
}

.cat-box.cat-box-right {
  left: initial;
  right: 120px;
}

.cat-box li {
  position: relative;
  background: linear-gradient(30deg, #664e9f 0%, #005c97 100%);
  padding: 2rem;
  border-radius: 4px;
  text-transform: uppercase;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px 15px;
  font-weight: bold;
  width: 140px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cat-box li:hover {
  background: #664e9f;
}

.cat-box li a {
  color: var(--white);
  display: block;
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cat-box li a:hover {
  text-decoration: none;
}

.expo21 {
  position: absolute;
  font-weight: bold;
  top: 150px;
  height: 30px;
  left: 0;
  right: 0;
  text-align: center;
  width: 500px;
  margin: 0 auto;
}

/* Inner page 2
   */
.bg-vendor {
  background: url("../images/bg-gallery.jpg") no-repeat;
  position: relative;
  width: 100%;
  height: 100vh;
  /* padding: 0; margin: 0;   */
  background-size: 100% 100%;
}

.bg-product {
  background: url("../images/stall.png") no-repeat;
  position: relative;
  height: 250px;
  /* padding: 0; margin: 0;   */
  background-size: contain;
}

.bg-product a.name {
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  position: absolute;
  margin: 42px 0 0 60px;
  display: block;
  font-weight: bold;
  width: 225px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg-product a.name:hover {
  text-decoration: none;
  color: #ffc107;
}

.bg-product a.info {
  color: #bd202e;
  text-transform: uppercase;
  position: absolute;
  bottom: 70px;
  display: block;
  font-weight: bold;
  right: 95px;
  font-size: 11px;
}

.bg-product a.info:hover {
  text-decoration: none;
  color: #3e3e8d;
}

.product-row {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: -10px;
  height: calc(100vh - 110px);
}

.carousel-control-next,
.carousel-control-prev {
  top: initial;
  min-width: initial;
  width: 40px !important;
  opacity: 1;
  background: #bd202e;
  left: 90%;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background: var(--white);
}

.carousel-control-next {
  left: 94%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 1rem;
  height: 1rem;
}

.text-sky {
  color: var(--sky-blue);
  font-weight: 500;
}

.box-item + .box-item {
  border-top: 1px solid var(--sky-blue);
  padding: 1.5rem 0;
  margin: 1.5rem 0;
}

.dropdown-menu.btn-danger.show {
  border: 0px;
}

.dropdown-menu.btn-danger.show .dropdown-item:focus,
.dropdown-menu.btn-danger.show .dropdown-item:hover,
.dropdown-menu.btn-danger.show .dropdown-item.active,
.dropdown-menu.btn-danger.show .dropdown-item:active {
  text-decoration: none !important;
  background: #f4f1f1 !important;
  color: #bd202e !important;
}

.back_icon {
  position: absolute;
  top: 65px;
  left: 80px;
  width: 80px;
  height: 60px;
  cursor: pointer;
  transform: scale(0.65);
  z-index: 9999;
}

.back_icon .arrow {
  position: absolute;
  top: 25px;
  width: 90%;
  height: 10px;
  background-color: #b02a37;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  animation: arrow 700ms linear infinite;
}

.back_icon .arrow::after,
.back_icon .arrow::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 10px;
  left: -8px;
  background-color: #b02a37;
}

.back_icon .arrow::after {
  top: -12px;
  transform: rotate(-45deg);
}

.back_icon .arrow::before {
  top: 12px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
}
.back_icon:hover .arrow,
.back_icon:hover .arrow::after,
.back_icon:hover .arrow::before {
  background-color: #000;
}
.display-4 {
  font-size: 2.5rem;
}
.btn-secondary {
  background: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover,
.btn-secondary:focus {
  text-decoration: none;
  background: var(--blue);
}
.joinNow {
  position: absolute;
  top: 80px;
  left: 80px;
  width: 200px;
  cursor: pointer;
  z-index: 9999;
}
#AboutModal p {
  margin-bottom: 1rem;
}
#AboutModal ol {
  padding: 0.5rem 2rem;
}
#AboutModal ol li {
  margin-bottom: 0.75rem;
}
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
  background: #bd202e;
  text-decoration: none !important;
}
.box-item p > a {
  color: #fff; 
}
.box-item p > a:hover {
  color: #ffc107;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
#AjaxLoader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  overflow: hidden;
  z-index: 99999;
}
#AjaxLoader span {
  position: fixed;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  text-align: center;
  overflow: hidden;
  padding: 5rem 0;
}
#AjaxLoader:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "  ";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
select.form-control {
  background: #fff
    url("data:image/svg+xml;utf8,<svg viewBox='0 0 140 140' width='18' height='18' xmlns='http://www.w3.org/2000/svg'><g><path d='m121.3,34.6c-1.6-1.6-4.2-1.6-5.8,0l-51,51.1-51.1-51.1c-1.6-1.6-4.2-1.6-5.8,0-1.6,1.6-1.6,4.2 0,5.8l53.9,53.9c0.8,0.8 1.8,1.2 2.9,1.2 1,0 2.1-0.4 2.9-1.2l53.9-53.9c1.7-1.6 1.7-4.2 0.1-5.8z' fill='black'/></g></svg>")
    no-repeat;
  background-position: right 15px top 15px;
}
.logoutLink {
  position: fixed;
  top: 20px;
  right: 20px;
  color: #fff;
  font-weight: 500;
  font-size: 1.15rem;
}
.logoutLink:hover {
  color: #1a1a1a;
}
.helpdesk_wrapper .helpdesk_link {
  position: absolute;
  font-weight: bold;
  bottom: 55px;
  height: 50px;
  left: calc(50% - 150px);
  right: 0;
  text-align: center;
  text-align: center;
  width: 300px;
}

.helpdesk_wrapper .helpdesk_content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: calc(50% - 250px);
  bottom: 75px;
  transform: translate(0, 10px);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  width: 500px;
  border-radius: 4px;
  text-align: center;
}
.helpdesk_wrapper:hover .helpdesk_content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}
.helpdesk_content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: calc(50% - 10px);
  bottom: -8px;
  border-style: solid;
  border-width: 10px 10px 0px 10px;
  border-color: #fff transparent transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
.register_msg{
padding: 2rem;
background: rgba(255, 255, 255, 0.15);
font-size: 20px;
line-height: 30px;
margin-top: 2rem;
}
.loginEvent{
  width: 300px;
  /* height: 150px; */
position: absolute;
z-index: 9;
margin: 0 auto;
left: 0;
right: 0;
border: 5px solid #a3d8e1;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.txtinfo{
background: #a3d8e1;
text-align: center;
font-size: 1.2rem; font-weight: bold;
color: #fff;
padding: 1rem;
}
@media (min-width: 1920px) {
  .joinNow {
    position: absolute;
    top: 135px;
    left: 175px;
    width: 200px;
    cursor: pointer;
    z-index: 9999;
    height: 100px;
}
}