* {
    margin: 0;
    padding: 0;
  }
:root{
  --primary-clr: #FABA3D;
  --secondary-clr: #101010;
  --txt-clr: #666666;
  --txt-lgt-clr: rgb(108 108 108 / 89%);
  --white-clr: #fff;
  --black-clr: #000000;
  --black-12: #121212;
  --dark-grey: #101010;
  --blue-clr: #3085B0;
  --red-clr: #F50E0E;
  --ub-font: 'Urbanist';
  --pp-font: 'Poppins';
  --spacer: 35px;
}

::selection {
  background-color: var(--primary-clr);
  color: var(--black-clr);
}

/* Scrollbar css start */

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c1c1c1;
}

:is(.card-table-layout, .discount-main-detail-blk, .members-table-blk, .message-box)::-webkit-scrollbar-track {
  background: #393939;
}
:is(.card-table-layout, .discount-main-detail-blk, .members-table-blk, .message-box)::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
}

/* Scrollbar css end */

.spacer-y {
  padding: 35px 0px;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.p-relative {
  position: relative;
}
button:focus-visible , button:hover {
  outline: none !important;
}

span.error {
  font-size: 12px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: #ff0000;
}
.primary-text-clr {
  color: var(--primary-clr) !important;
}

html, body {
  overflow-x: hidden;
}
body {
  background-color: #000;
}

.primary-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--black-clr);
  text-transform: capitalize;
  background: var(--primary-clr);
  border: 0px solid var(--primary-clr);
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
.text-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--pp-font);
  color: var(--primary-clr);
  border: 0px;
  background: transparent;
  transition: all 0.2s ease-in-out;
}
.white-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--black-clr);
  text-transform: capitalize;
  background: var(--white-clr);
  border: 0.5px solid var(--white-clr);
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  text-align: center;
}

/* Credential CSS Start */

section.credential-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 0px 15px;
  position: relative;
  z-index: 1;
}
section.credential-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 88%);
  z-index: -1;
}
.credential-wrapper {
  background: rgb(26 26 26 / 86%);
  border-radius: 24px;
  max-width: 516px;
  width: 100%;
  padding: 50px 40px 20px;
}

.credential-logo-blk {
  width: 194px;
  height: 74px;
  margin: 0px auto;
}
.credential-logo-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.credential-form-blk form {
  margin: 60px 0px 28px;
}
.form-field-blk:not(:last-child) {
  margin-bottom: 15px;
}
.form-field-blk label {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #DDDDDD;
  margin-bottom: 8px;
}
.input-field {
  position: relative;
}
.input-field :is(.form-control, .form-select) {
  background-color: rgb(255 255 255 / 8%);
  border: .5px solid var(--primary-clr);
  color: var(--white-clr);
  font-size: 16px;
  font-family: var(--pp-font);
  border-radius: 4px;
}
.input-field :is(.form-control, .form-select):focus {
  box-shadow: none;
  background: var(--white-clr);
  border-color: #3A57E8;
  color: var(--black-clr);
}
.input-field .form-select{
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
span.eye {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
span.eye i {
  color: var(--primary-clr);
  font-size: 14px;
}
.input-field .form-control:focus + span.eye i{
  color: var(--black-clr);
}
.forgot-psw {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}
a.forgotpsw-link {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--primary-clr);
  display: inline-block;
}
.form-btn-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
}
.form-btn {
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--black-clr);
  background: var(--primary-clr);
  border: 0.5px solid var(--primary-clr);
  border-radius: 4px;
  max-width: 185px;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.form-btn:hover {
  background: var(--black-clr);
  color: var(--primary-clr);
}
.form-content-blk :is(p, span) {
  color: var(--white-clr);
  font-weight: 400;
  font-family: var(--pp-font);
  text-align: center;
  display: block;
}
.form-content-blk p a {
  color: var(--primary-clr);
}
.form-content-blk span.crf-info {
  font-size: 10px;
}

.credential-heading-blk h1 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 0px;
}
.otp-form-blk form {
  margin: 30px 0px 28px !important;
}
.otp-field-blk {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.otp-field-blk .input-field .form-control {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  text-align: center;
}

.form-resendbtn {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--primary-clr);
  background: transparent;
  border: 0px;
  transition: all 0.2s ease-in-out;
}

.credential-wrapper.signup-wrapper {
  max-width: 912px;
}
.signup-wrapper .form-fields-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0px 20px;
}
.signup-wrapper .form-field-blk {
  width: 48%;
}

/* Credential CSS End */

/* toaster css start */

.toast-success {
    background-color: #28a745;
    color: #fff;
  }

  /* Customize Toaster error notification */

  .toast-error {
    background-color: #dc3545;
    color: #fff;
  }


  .toast-warning{
    background-color: #dc3545;
    color: #fff;
  }

/* toaster css end */

span.min-loader {
    width: 100%;
    height: 100%;
    background: #000000c7;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    border-radius: 50px;
    backdrop-filter: blur(2px);
    justify-content: center !important;
    align-items: center !important;
    z-index: 2;
}
span.min-loader img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Header css Start */

header {
  background-color: transparent;
  padding: 23px 0px 4px;
  position: fixed;
  width: 100%;
  top: 0;
  transition: top 0.2s ease-in-out;
  z-index: 5;
}

header::before {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 50%;
  max-width: 1296px;
  width: 100%;
  height: 0.6px;
  background-image: radial-gradient(#ffffff8c 4%, #ffffff1c 80%);
  background-image: -webkit-radial-gradient(#ffffff8c 4%, #ffffff1c 80%);
  background-image: -moz-radial-gradient(#ffffff8c 4%, #ffffff1c 80%);
  transform: translateX(-50%);
}
header.bg-header {
  background: var(--black-clr);
}
.header-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 38px;
  transition: all 0.1s ease-in-out;
}
header.bg-header .header-flex-wrapper {
  padding-bottom: 20px !important;
}
.logo-blk {
  width: 140px;
  height: 54px;
}
a.logo {
  width: 100%;
  height: 100%;
  display: block;
}
.menu-wrapper {
  padding: 16px 32px;
  border: 1px solid #1c1c1c;
  border-radius: 40px;
  background: linear-gradient(180deg, #111111, #000000);
}
ul.menu-list-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 43px;
}
.menu-wrapper ul.menu-list-blk li {
  line-height: 14px;
}
a.menu-link {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--ub-font);
  color: var(--white-clr);
  cursor: pointer;
  transition: all 0.1s ease-in-out
}
a.menu-link.active , a.menu-link:hover {
  color: var(--primary-clr);
}
ul.menu-btn-list-blk {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
:is(.menu-btn-item, .about-btn-blk) .primary-btn {
  text-transform: initial !important;
}
.lang-btn {
  width: 60px;
  height: 38px;
  border: 1px solid #1c1c1c;
  border-radius: 40px;
  background: linear-gradient(180deg, #111111, #000000);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--ub-font);
  color: var(--white-clr);
  text-transform: capitalize;
  position: relative;
}
.language-selector-blk {
  position: relative;
}
.lang-list-blk {
  position: absolute;
  content: "";
  top: calc(100% + 5px);
  right: 0;
  width: 180px;
  max-height: 295px;
  overflow-y: auto;
  border: 1px solid #1c1c1c;
  border-radius: 15px;
  background: linear-gradient(180deg, #111111, #000000);
  box-shadow: 0px 0px 6px rgb(0 0 0 / 15%);
  padding: 15px 10px;
  transform: scaleY(0);
  transform-origin: top;
  transition: all .2s ease-in-out;
  opacity: 0;
}
.lang-drop {
  transform: scaleY(1);
  opacity: 1;
}
.lang-item {
  padding: 4px 0px;
  border-bottom: 1px solid #1a1a1a;
}
.lang-item:first-child {
  padding: 0px 0px 4px 0px;
  border-bottom: 1px solid #1a1a1a;
}
.lang-item:last-child {
  padding: 4px 0px 0px;
  border-width: 0px;
}
.language-btn {
  width: 100%;
  border: 0px;
  background: transparent;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--ub-font);
  color: #fff;
  text-align: left;
  padding: 4px 10px;
  position: relative;
  letter-spacing: 0.5px;
}
.language-btn.active {
  font-weight: 600;
  color: var(--primary-clr);
}
.language-btn:hover {
  background: #161616;
}
.language-btn.active::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background: url(../images/tick-mark-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}



.btn-box {
  cursor: pointer;
  display: none;
  flex-direction: column;
  width: 30px;
  height: 25px;
  background: transparent;
  border: 0px;
  justify-content: space-between;
  transition: transform 0.33s ease-out;
}

.btn_bar {
  background-color: #fff;
  border-radius: 10px;
  height: 3px;
  width: 100%;
}

.btn_bar.btn_width {
  width: 50%;
}

.btn_bar.top {
  transform-origin: right;
  transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn_bar.bottom {
  align-self: flex-end;
  transform-origin: left;
  transition: transform 0.33s cubic-bezier(0.54, -0.81, 0.57, 0.57);
}

.btn-box.active {
  transform: rotate(-45deg);
}

.active .btn_bar.top {
  background-color: #fff;
  transform: rotate(-90deg) translateX(4px);
}

.active .btn_bar.bottom {
  background-color: #fff;
  transform: rotate(-90deg) translateX(-4px);
}

.menu-wrapper.show {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #111111, #000000);
  border-radius: 0px;
  z-index: -1;
}
.menu-wrapper.show ul.menu-list-blk {
  flex-direction: column;
}

/* Header css End */

/* Footer css Start */

footer {
  padding-top: 30px;
  border-top: 1px solid #494949;
}
.footer-flex-blk {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px;
}
.footer-logo-wrapper {
  width: 226px;
}
.footer-logo-blk {
  width: 185px;
  height: 70px;
}
.footer-logo-blk a {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-logo-blk a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-logo-wrapper p {
  font-size: 11px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #F8F8F8;
  margin: 15px 0px;
  line-height: 18px;
}
.social-media-blk ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.social-media-blk ul li a {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}
.social-media-blk ul li a:hover {
  transform: scale(0.9);
}
.footer-navigation {
  width: calc(100% - 446px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 25px;
}
.footer-navigation ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}
.footer-nav-blk ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-nav-blk h3 {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #818180;
  text-transform: capitalize;
  transition: all 0.1s ease-in-out;
  margin-bottom: 20px;
}
a.footer-link {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--white-clr);
  text-transform: capitalize;
  transition: all 0.1s ease-in-out;
}
a.footer-link:hover {
  color: var(--primary-clr);
}

.copyright-blk {
  padding: 20px 0px 25px;
  border-top: 1px solid #494949;
}
.copyright-content p {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--ub-font);
  text-align: center;
  color: var(--white-clr);
  margin-bottom: 0px;
  letter-spacing: 4px;
}
/* Footer css End */

/* Homepage css Start */

section.hero-section {
  height: 100vh;
  min-height: 825px;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
section.common-hero-section {
  height: 100vh;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
section.hero-section::before , .common-hero-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 90%);
  z-index: -1;
}
section.hero-section::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 816px;
  max-height: 816px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(217 144 0 / 26%);
  filter: blur(247px);
  z-index: -1;
}
.hero-outer-wrapper {
  position: relative;
}
.hero-wrapper {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 50%;
  transform: translateY(-50%);
}
.hero-img-blk {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 50%;
  transform: translateY(-50%);
}
.hero-img-blk {
  /* mask-image: url(../images/hero-mask-img.png);
  -webkit-mask-image: url(../images/hero-mask-img.png);
  -moz-mask-image: url(../images/hero-mask-img.png);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center; */
    padding-top: 90px;
}
.hero-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-wrapper h1 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--ub-font);
  color: var(--white-clr);
  margin-bottom: 15px;
}
section.common-hero-section .hero-wrapper h1 {
  font-size: 30px;
}
.hero-wrapper p {
  width: 95%;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--pp-font);
  color: var(--white-clr);
  line-height: 26px;
  margin: 0px;
}
.app-link-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 50px;
}
.app-link-blk a {
  width: 203px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-clr);
  border-radius: 30px;
  padding: 10px 30px;
}
.app-link-blk a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.heading-flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.sub-heading h2 {
  font-size: 40px;
  font-weight: 900;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
}
.common-sub-heading h2 {
  font-size: 30px;
}
.side-content-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

section.about-section {
  padding: 180px 0px;
}
.about-content-wrapper h2, .download-content-blk h2 {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 15px;
}
.about-content-wrapper p {
  font-size: 20px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: #E0E0E0;
  margin-bottom: 0px;
}
.about-tabs {
  margin-top: 100px;
}
.about-tabs div.nav {
  display: inline-flex;
}
.aboutnav-link {
  background: transparent;
  border: 0px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--pp-font);
  color: rgb(255 255 255 / 56%);
  text-align: left;
  position: relative;
  padding-left: 50px;
  transition: all 0.3s ease-in-out;
}
.about-tabs div .aboutnav-link:not(:last-child) {
  margin-bottom: 10px;
}
.aboutnav-link::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 25px;
  background: rgb(255 255 255 / 56%);
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.aboutnav-link.active {
  font-size: 25px;
  color: var(--white-clr);
}
.aboutnav-link.active::before {
  width: 23px;
  height: 23px;
  background: var(--white-clr);
}

.about-btn-blk {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
}
.float-img-wrapper {
  max-width: 610px;
  height: 510px;
  position: relative;
  margin-left: auto;
}
.float-img-item {
  position: absolute;
  content: "";
  width: 235px;
  height: 235px;
  border-radius: 25px;
}
.float-img-item img{
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}
.float-img-item:first-child {
  top: 3%;
  left: 10%;
}
.float-img-item:nth-child(2) {
  top: -5%;
  right: 8%;
}
.float-img-item:nth-child(3) {
  bottom: 3%;
  left: 10%;
}
.float-img-item:nth-child(4) {
  top: 44%;
  right: 8%;
}

.blob-anim {
  width: 100%;
  height: 100%;
  background: url(../images/circle-blob.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

section.get-in-touch-section {
  padding: 100px 0px;
}
.get-in-touch-wrapper h2 {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 10px;
}
.get-in-touch-wrapper p {
  width: 52%;
  font-size: 17px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #B7B7B7;
  text-align: center;
  margin: 0 auto;
}
.get-in-touch-form {
  margin-top: 30px;
}
.get-in-touch-form .common-field :is(.form-control, .form-select) {
  border-color: var(--dark-grey);
}
.get-in-touch-form .common-field .form-control::placeholder {
  color: #B7B7B7;
}

section.download-section {
  padding: 150px 0px;
}
.download-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.download-wrapper::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 725px;
  max-height: 725px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(250 186 61 / 39%);
  filter: blur(220px);
  z-index: -1;
}
.download-wrapper::after {
  position: absolute;
  content: "";
  top: -10%;
  left: -30%;
  max-width: 525px;
  max-height: 525px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(#F9BB3D, #F9BB3D), #171C1A;
  filter: blur(545px);
  z-index: 1;
}
.d-preview-img {
  position: absolute;
  content: "";
  top: 50%;
  left: -200px;
  width: 715px;
  height: 785px;
  transform: translateY(-50%);
}
.download-content-blk {
  width: 50%;
}
.download-content-blk h3 {
  font-size: 23px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 10px;
  letter-spacing: 3px;
}
.download-content-blk p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
  line-height: 30px;
}
.download-qr-blk {
  width: 235px;
  height: 235px;
  padding: 20px;
  background: var(--white-clr);
  border-radius: 5px;
  margin-top: 45px;
}
.download-qr-blk img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.events-card-img-blk {
  width: 100%;
  height: 444px;
  border-radius: 12px;
  overflow: hidden;
}
.events-card-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
a.events-card:hover img {
  transform: scale(1.1);
}
.events-card-details {
  padding: 10px 0px;
}
.events-card-details h3 {
  font-size: 19px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 2px;
}
.events-card-details p {
  font-size: 12px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #A5A5A5;
  margin-bottom: 0px;
}
span.event-values {
  display: block;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--primary-clr);
  margin-top: 15px;
}

/* Homepage css End */


.text-blk h3 {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 0px;
}

/* Career css start */

section.career-hero-section {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 160px 0px 75px;
}
section.career-hero-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 90%);
  z-index: -1;
}
section.career-hero-section::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 816px;
  max-height: 816px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(217 144 0 / 26%);
  filter: blur(247px);
  z-index: 0;
}

.career-hero-wrapper {
  max-width: 625px;
  width: 100%;
  margin: 0 auto;
}
.career-hero-wrapper h1 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--ub-font);
  color: var(--white-clr);
  margin-bottom: 15px;
  text-align: center;
}
.career-hero-wrapper p {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--ub-font);
  color: var(--white-clr);
  margin-bottom: 0px;
  text-align: center;
}
.career-hero-img-blk {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.outline-btn {
  padding: 4px 15px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
  border: 1px solid var(--white-clr);
  border-radius: 30px;
  background: var(--black-clr);
}

.jobs-card-img-blk {
  width: 100%;
  height: 352px;
  border-radius: 12px;
  overflow: hidden;
}
.jobs-card-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
a.jobs-card:hover img {
  transform: scale(1.1);
}
.jobs-card-details {
  padding: 10px 0px;
}
.jobs-card-details h3 {
  font-size: 19px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 2px;
}
.jobs-card-details p {
  font-size: 15px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #797C86;
  margin-bottom: 0px;
}
.jobs-card-details p.primary-text-clr {
  font-size: 12px;
  margin-top: 5px;
}

.career-hero-main-wrapper {
  position: relative;
}
.career-detail-hero-wrapper {
  position: absolute;
  content: "";
  top: 60px;
  left: 0;
}
.career-detail-hero-wrapper :is(h1, p) {
  text-align: left !important;
}
.career-detail-hero-wrapper p {
  margin-top: 10px;
}
.career-detail-hero-img-blk {
  mask-image: url(../images/mask-img-2.png);
  -webkit-mask-image: url(../images/mask-img-2.png);
  -moz-mask-image: url(../images/mask-img-2.png);
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.career-detail-hero-img-blk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carrer-content-wrapper ul {
  padding-left: 18px;
}
.carrer-content-wrapper ul li {
  font-size: 18px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: #E0E0E0;
}
.carrer-content-wrapper ul li:not(:last-child) {
  margin-bottom: 22px;
}

.application-wrapper {
  position: relative;
}
.application-wrapper::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 725px;
  max-height: 725px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(250 186 61 / 39%);
  filter: blur(220px);
  z-index: -1;
}
.application-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--ub-font);
  color: var(--white-clr);
  text-align: center;
  margin-bottom: 0px;
}
.application-form {
  margin-top: 40px;
}
.application-form .common-field :is(.form-control, .form-select){
  background-color: rgb(26 26 26);
  background: linear-gradient(45deg, #1a1a1a, #3e2e0f, #1a1a1a) !important;
  background-clip: border-box;
  border: 0.8px solid rgb(141 141 141 / 24%);
  border-radius: 6px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: #8D8D8D !important;
}
input#uploadCV + label {
  background-color: rgb(26 26 26);
  background-image: linear-gradient(45deg, #1a1a1a, #3e2e0f, #1a1a1a);
  border: 0.8px solid rgb(141 141 141 / 24%);
  border-radius: 6px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 300;
  font-family: var(--pp-font);
  color: #8D8D8D !important;
  margin-bottom: 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.application-form .common-field :is(.form-control, .form-select)::placeholder {
  color: #8D8D8D !important;
}
.select-field::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 12px;
  height: 10px;
  background: url(
  "data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
span.browse-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--primary-clr);
}
/* Career css end */

/* form css Start */


.common-field-blk label {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--pp-font);
  color: #B7B7B7;
  margin-bottom: 5px;
}
.common-field {
  position: relative;
}
.color-info {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 13px;
  height: 13px;
  border-radius: 30px;
  transform: translateY(-50%);
}
.common-field :is(.form-control, .form-select) {
  background-color: var(--dark-grey);
  border: 1px solid #2B2B2B;
  border-radius: 8px;
  padding: 15px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--pp-font);
  color: var(--white-clr) !important;
}
.common-field .form-control::placeholder {
  color: var(--white-clr);
}
.common-field .form-control:focus , .form-control:focus, .form-select:focus {
  box-shadow: none;
}
.common-field .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.common-field-select-blk {
  background-color: var(--dark-grey);
  border: 1px solid #2B2B2B;
  border-radius: 8px;
  padding: 40px 20px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
}
.add-loaction-field .location-icon {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.add-loaction-field input {
  padding-right: 40px !important;
}

.common-btn-blk {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.cancel-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: #909090;
  text-transform: capitalize;
  background: var(--dark-grey);
  border: 0.5px solid var(--dark-grey);
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}


/* from css End */


.add-blk, .next-btn-blk {
  display: flex;
  justify-content: flex-end;
}
.add-blk .text-btn {
  font-weight: 500;
}
.remove-btn-blk {
  width: 150px;
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}
.edit-type-btn {
  display: inline-block;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--ub-font);
  color: var(--white-clr);
  text-transform: capitalize;
  background: var(--balck-clr);
  border: 0.5px solid var(--white-clr);
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}


.common-modal .modal-dialog {
  max-width: 614px;
}
.common-modal :is(.modal-header , .common-modal-body) {
  padding: 20px 24px;
  border: 0px;
}
.btn-close {
  opacity: 0.2;
}
.btn-close:focus {
  box-shadow: none;
}
.common-modal-input-field {
  position: relative;
}
.common-modal-field-item:not(:last-child) {
  margin-bottom: 10px;
}
.common-modal-label-blk label {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: #333333;
}
.common-modal-input-field :is(.form-control, .form-select) {
  padding: 14px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: #333333;
  border-radius: 15px;
  background-color: var(--white-clr);
  border: 2px solid rgb(203 210 220 / 50%);
}
.common-modal-input-field input[type="password"] {
  padding-right: 35px;
}
input.colorfield {
  height: 54.5px;
}
input[type="color"] {
  appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
  padding: 5px !important;
}
input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0px;
  border-radius: 10px !important;
}
input[type="color"]::-moz-color-swatch-wrapper {
	padding: 0px;
  border-radius: 10px !important;
}
input[type="color"]::-webkit-color-swatch {
	border: none;
  border-radius: 10px !important;
}
input[type="color"]::-moz-color-swatch {
	border: none;
  border-radius: 10px !important;
}
.common-modal-form-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.form-submit-btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--black-clr);
  text-transform: capitalize;
  background: var(--primary-clr);
  border: 0.5px solid var(--primary-clr);
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}



/* FAQ css Start */

section.faq-section {
  padding: 80px 0px;
  position: relative;
}
section.faq-section::before {
  position: absolute;
  content: "";
  top: 10%;
  right: -5%;
  max-width: 725px;
  max-height: 725px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(250 186 61 / 15%);
  filter: blur(247px);
  z-index: 0;
}
.faq-section h2 {
  font-size: 64px;
  font-weight: 700;
  font-family: var(--pp-font);
  color: var(--white-clr);
  margin-bottom: 15px;
  text-align: center;
}
.faq-wrapper {
  margin-top: 40px;
}
.faq-wrapper .accordion-item {
  border-radius: 14px !important;
  background-color: var(--dark-grey);
}
.faq-wrapper .accordion-item:not(:last-child) {
  margin-bottom: 8px;
  border: 0px;
}
.faq-wrapper .accordion-button::after {
  background: url(../images/plus-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  transform: rotate(0deg);
}
.faq-wrapper .accordion-button:not(.collapsed)::after {
  background: url(../images/plus-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  transform: rotate(-45deg);
}

.faq-wrapper button.accordion-button {
  position: static;
  background: var(--dark-grey);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--ub-font);
  color: var(--white-clr);
  border-radius: 14px !important;
  padding: 32px 36px 32px 42px;
  box-shadow: none !important;
  z-index: 1;
}
.faq-wrapper .accordion-body {
  padding: 10px 36px 26px 42px;
  background: var(--dark-grey);
}
.faq-wrapper .accordion-button:not(.collapsed) {
  font-size: 20px;
  font-weight: 600;
  border-radius: 14px 14px 0px 0px !important;
}
.faq-wrapper .accordion-collapse.collapse.show .accordion-body {
  border-radius: 0px 0px 14px 14px !important;
}
.faq-wrapper .accordion-body p {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--pp-font);
  line-height: 30px;
  color: var(--white-clr);
  margin-bottom: 0px;
}

/* FAQ css End */


/* Privacy and terms css Start */

.common-text-blk h3 {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--pp-font);
  color: var(--white-clr);
}
.common-text-blk :is(p, li) {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--pp-font);
  color: var(--white-clr);
  line-height: 30px;
}
.common-text-blk :is(ul, ol) {
  padding-left: 18px;
}

/* Privacy and terms css End */

/* Profile page css Start */

.common-field .edit-btn {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.dflex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* Profile page css End */


/* Media CCS Start */

@media screen and (max-width: 1400px) {
  .credential-wrapper {
    padding: 45px 40px 20px;
  }
  .credential-logo-blk {
    width: 180px;
    height: 50px;
  }
  .credential-form-blk form {
    margin: 40px 0px 25px;
  }
  .form-field-blk label {
    font-size: 14px;
  }
  .form-content-blk :is(p, span) {
    margin-bottom: 5px;
  }
  header::before {
    max-width: 82%;
  }
  .events-card-img-blk {
    height: 244px;
  }
  a.footer-link {
    font-size: 12px;
  }
  :is(.events-section, .about-content-wrapper, .download-content-blk, .faq-section, .get-in-touch-wrapper) h2 {
    font-size: 42px;
  }
  .float-img-item {
    width: 195px;
    height: 195px;
  }
    .float-img-item:nth-child(3) {
        bottom: 18%;
    }
    .float-img-item:nth-child(2) {
        right: 12%;
    }
    .float-img-item:nth-child(4) {
        top: 36%;
        right: 12%;
   }
}

@media screen and (max-width:1200px) {
  .container {
    max-width: 100%;
    padding: 0px 1.5rem;
  }
  .menu-wrapper {
    display: none;
  }
  header::before {
    max-width: 90%;
  }
  .btn-box {
    display: flex;
  }
  .hero-wrapper h1 {
    font-size: 36px;
  }
  .sub-heading h2 {
    font-size: 32px;
  }
  .common-sub-heading h2 {
    font-size: 24px;
  }
  .footer-logo-blk {
    width: 130px;
    height: 52px;
  }
  .footer-navigation {
    width: calc(100% - 346px);
  }
  .download-content-blk h3 {
    font-size: 18px;
  }
  .download-content-blk p {
    font-size: 16px;
    line-height: 26px;
  }
  .career-detail-hero-wrapper {
    top: 30px;
  }
}

@media screen and (max-width: 1100px) {
    .float-img-item {
        width: 170px;
        height: 170px;
    }
    .float-img-item:nth-child(3) {
        bottom: 24%;
    }
    .float-img-item:nth-child(4) {
        right: 12%;
    }
}

@media screen and (max-width: 992px) {
  .logo-blk {
    width: 100px;
    height: 40px;
  }
  .menu-btn-item .primary-btn {
    font-size: 12px;
  }
  section.common-hero-section .hero-wrapper h1 {
    font-size: 30px;
  }
  .sub-heading h2 {
    font-size: 24px;
  }
  .footer-navigation {
    width: calc(100% - 276px);
  }
  .copyright-content p {
    font-size: 12px;
  }
  .hero-wrapper h1 {
    font-size: 36px;
  }
  section.about-section {
    padding: 50px 0px;
  }
  :is(.events-section, .about-content-wrapper, .download-content-blk, .faq-section, .get-in-touch-wrapper, .application-wrapper) h2 {
    font-size: 24px;
  }
  .about-content-wrapper p {
    font-size: 16px;
  }
  .float-img-wrapper {
    height: 420px;
  }
  .float-img-item {
    width: 110px;
    height: 110px;
  }
  .float-img-item:nth-child(2) {
    right: 25%;
}
.float-img-item:nth-child(3) {
    bottom: 39%;
    left: 10%;
}
  .float-img-item:nth-child(4) {
        top: 25%;
        right: 25%;
    }
  .download-wrapper {
    gap: 20px;
  }
  .d-preview-img {
    position: static;
    width: 40%;
    height: 100%;
    transform: none;
  }
  .download-content-blk {
    width: calc(100% - 40% + 20px);
  }
  .about-btn-blk a {
    padding: 8px 16px;
  }
  .jobs-card-img-blk {
    height: 252px;
  }
  .carrer-content-wrapper ul li {
    font-size: 16px;
  }
  .career-detail-hero-wrapper {
    top: 0px;
    z-index: 1;
  }
  .career-detail-hero-wrapper h1 {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .career-detail-hero-wrapper p {
    font-size: 14px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 768px){
  .header-flex-wrapper {
    padding-bottom: 25px;
  }
  .footer-flex-blk {
    flex-direction: column;
    gap: 50px;
  }
  .footer-logo-wrapper {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-logo-blk {
    width: 130px;
    height: 52px;
  }
  .footer-navigation {
    width: 100%;
  }
  a.footer-link {
    font-size: 12px;
  }
  .footer-logo-wrapper p {
    text-align: center;
  }
  .app-link-blk {
    justify-content: center;
    align-items: center;
  }
  .app-link-blk a {
    width: 150px;
    height: 45px;
  }
  .copyright-content p {
    font-size: 12px;
    letter-spacing: 2px;
  }
  section.hero-section {
    height: 100vh;
    min-height: 725px;
  }
  .hero-outer-wrapper {
    flex-direction: column;
    display: flex;
  }
  .hero-wrapper {
    position: static;
    width: 100%;
    transform: none;
    order: 2;
  }
  .hero-img-blk {
    position: static;
    width: 60%;
    transform: none;
    margin: 30px auto;
    order: 1;
  }
  .hero-wrapper :is(h1, p) {
    text-align: center;
  }
  .hero-wrapper p {
    margin: 0 auto;
  }
  section.about-section {
    padding: 40px 0px;
  }
  .get-in-touch-wrapper p {
    width: 92%;
    font-size: 15px;
  }
  section.download-section {
    padding: 50px 0px;
  }
  .download-wrapper {
    gap: 20px;
  }
  .d-preview-img {
    position: static;
    width: 40%;
    height: 100%;
    transform: none;
  }
  .download-content-blk {
    width: calc(100% - 40% + 20px);
  }
  .download-content-blk h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .download-content-blk p {
    font-size: 13px;
    line-height: 20px;
  }
  .download-qr-blk {
    width: 135px;
    height: 135px;
    padding: 8px;
    margin-top: 30px;
  }
  .float-img-item:nth-child(2), .float-img-item:nth-child(4) {
    right: 38% !important;
}
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0px 1rem;
  }
  section.credential-section.signup-section {
    min-height: 480px;
    height: 100%;
    padding: 40px 15px;
  }
  .credential-wrapper {
    padding: 50px 25px 20px;
  }
  .credential-logo-blk {
    width: 180px;
    height: 54px;
  }
  .credential-form-blk form {
    margin: 40px 0px 20px;
  }
  .signup-wrapper .form-field-blk {
    width: 100%;
  }
  .form-field-blk label {
    font-size: 14px;
  }
  .form-content-blk :is(p, span) {
    font-size: 14px;
  }
  .header-flex-wrapper {
    padding-bottom: 25px;
  }
  .logo-blk {
    width: 100px;
    height: 40px;
  }
  .menu-btn-item .primary-btn {
    padding: 8px 12px;
    font-size: 10px;
  }
  .hero-wrapper h1 {
    font-size: 32px;
  }
  section.common-hero-section .hero-wrapper h1 {
    font-size: 28px;
  }
  .sub-heading h2 {
    font-size: 20px;
  }
  :is(.events-section, .about-content-wrapper, .download-content-blk, .faq-section, .get-in-touch-wrapper, .application-wrapper) h2 {
    font-size: 20px;
  }
  .hero-wrapper p {
    width: 85%;
    font-size: 14px;
  }
  .footer-flex-blk {
    justify-content: center;
    gap: 50px;
  }
  .footer-logo-wrapper {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer-logo-blk {
    width: 130px;
    height: 52px;
  }
  a.footer-link {
    font-size: 12px;
  }
  .footer-logo-wrapper p {
    text-align: center;
  }
  .footer-nav-blk h3 {
    margin-bottom: 10px;
  }
  .footer-nav-blk ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .app-link-blk {
    justify-content: center;
    align-items: center;
  }
  .app-link-blk a {
    width: 150px;
    height: 45px;
  }
  .copyright-content p {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .text-btn {
    font-size: 14px;
  }
  .about-tabs {
    margin-top: 50px;
  }
  section.get-in-touch-section {
    padding: 40px 0px;
  }
  .get-in-touch-wrapper p {
    width: 92%;
    font-size: 14px;
  }
  .download-wrapper {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .d-preview-img {
    width: 100%;
    height: 250px;
  }
  .d-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .download-content-blk {
    width: 100%;
  }
  section.faq-section::before {
    z-index: -1;
  }
  .jobs-card-img-blk {
    height: 152px;
  }
  .carrer-content-wrapper ul li {
    font-size: 14px;
  }
  .career-detail-hero-wrapper {
    position: static;
    margin-left: 0px;
    margin-bottom: 15px;
  }
  .float-img-wrapper {
    height: 320px;
}
.float-img-item:nth-child(3) {
    bottom: 25%;
    left: 10%;
}
.float-img-item:nth-child(4) {
    top: 34%;
}
.float-img-item:nth-child(2), .float-img-item:nth-child(4) {
    right: 28% !important;
}
.hero-img-blk {
    padding-top: 0px;
}
}

@media screen and (max-width: 420px) {
  .credential-form-blk form {
    margin: 30px 0px 20px;
  }
  .logo-blk {
    width: 90px;
    height: 35px;
  }
  .heading-flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .menu-btn-item .primary-btn {
    display: none;
  }
  .common-sub-heading h2 {
    text-align: center;
  }
  .float-img-item:nth-child(2), .float-img-item:nth-child(4) {
    right: 10% !important;
}

}
/* select country */
.common-field.select-field {
    background-color: rgb(26 26 26);
    background: linear-gradient(45deg, #1a1a1a, #3e2e0f, #1a1a1a) !important;
    background-clip: border-box;
    border: 0.8px solid rgb(141 141 141 / 24%);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 300;
    font-family: var(--pp-font);
    color: #8D8D8D !important;
}
span#selectedCountry {
    left: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.iti.iti--allow-dropdown {
    width: 100% !important;
}

.nodata-blk {
    padding: 24px;
    background: var(--secondary-clr);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white-clr);
    font-family: var(--pp-font);
}
