:root {
  --color-white: #fff;
  --color-light-white: #f5f5f5;
  --color-black: #000;
  --color-red: #cd1b28;
  --color-light-black: #4d4d4d;
  --color-light-red: #f9ebed;
  --color-red-opacity: #F9EDEF;
  --color-grey: #b3b3b3;
  --color-light-grey: #dee2e6;
  --color-rating: #ffeb39;
  --first-font: "Montserrat";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Regular.woff2") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Medium.woff2") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-SemiBold.woff2") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("./fonts/Montserrat-Bold.woff2") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


body {
  color: var(--color-light-black);
  font: normal normal 400 16px/24px var(--first-font);
  background-color: var(--color-white);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
strong {
  color: var(--color-black);
}

section.section {
  padding: 50px 0;
  width: 100%;
}

.allheading {
  font: normal normal 500 32px/40px var(--first-font);
  position: relative;
  margin: 0;
  color: var(--color-black);
}

.btn {
  padding: 8px 20px;
  border-radius: 4px;
  transition: all 0.3s ease 0s;
  min-width: 160px;
}

.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.btn:focus-visible {
  outline: none;
}

.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  transition: transform 1s ease;
}

.cc-link,
.cc-revoke:hover {
  text-decoration: underline;
}

.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window {
  padding: 1em 1.8em;
  width: 100%;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: .5em;
}

.cc-btn,
.cc-link,
.cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: .8;
  display: inline-block;
  padding: .2em;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active,
.cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: .4em .8em;
  font-size: .9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus,
.cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: .5em;
  border-top-right-radius: .5em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-window {
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-btn+.cc-btn {
  margin-left: .5em;
  white-space: nowrap;
}

@media print {

  .cc-revoke,
  .cc-window {
    display: none;
  }
}

@media (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .cc-window.cc-bottom {
    bottom: 0;
    flex-wrap: wrap;
  }

  .cc-window {
    left: 0;
    right: 0;
  }

  .cc-window {
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .cc-window .cc-compliance {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .cc-window .cc-message {
    margin-bottom: 1em;
  }

  .cc-window {
    -ms-flex-align: unset;
    align-items: unset;
  }

  .cc-window .cc-message {
    margin-right: 0;
  }
}

img,
svg {
  max-width: 100%;
}

a,
a:active,
a:focus,
a:hover {
  outline: 0;
  text-decoration: none;
}

a,
a:hover {
  color: var(--color-light-black);
  transition: all 0.3s ease 0s;
}

input.form-control,
textarea.form-control {
  border-color: var(--color-light-grey);
  border-radius: 4px;
  box-shadow: none;
  color: var(--color-light-black);
  margin-top: 0;
  padding: 15px 10px;
  font: normal normal 500 16px/20px var(--first-font);
}

.form-control::placeholder {
  font-size: 14px;
}

.section-title {
  text-align: center;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
}

.section-title h1 {
  margin-bottom: 15px;
}

.section-title p {
  margin: 0;
}

.section-title-left {
  text-align: left;
  position: relative;
  max-width: 750px;
  margin-top: 60px;
}

.white_bg {
  background-color: var(--color-white);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--color-grey);
}

.mx-7 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.px-7 {
  padding-left: 7.5px;
  padding-right: 7.5px;
}

.header .collapse:not(.show) {
  display: block;
}

.header {
  background-color: var(--color-white);
  position: relative;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.header.affix {
  position: fixed;
}

header.affix.fadeInDown {
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-name: fadeInDown !important;
  animation-play-state: running;
  animation-timing-function: ease;
}

header .fadeInDown {
  animation-name: none !important
}

#search-submit,
.d_none,
.events-wrapper .owl-theme .owl-controls .owl-pagination,
.spotLcarousel .owl-dots,
header.affix .top-wrapper {
  display: none
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.dropdown-toggle::after {
  display: none;
}

.logo-wrapper {
  box-shadow: 0 0.7rem 1rem 0 rgb(0 0 0 / 5%);
  width: 100%;
}

.mainmenubar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .mainmenubar {
    min-height: 84px;
  }
}

@media (max-width: 1199px) {
  .container.mainmenubar {
    max-width: 100%;
  }
}

.header-logo {
  width: 160px;
}

.desktop-menu .sub-menu {
  left: 0;
  position: absolute;
  top: unset;
  width: 220px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-in-out, top 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, top 0.1s ease-in-out;
  background: 0 0;
  padding: 0;
  height: 0;
}

.desktop-menu li {
  display: inline-block;
  position: relative;
}

.desktop-menu li.active a {
  font: normal normal 400 16px/24px var(--first-font);
  color: var(--color-red);
}

.desktop-menu li a {
  color: var(--color-light-black);
  font: normal normal 400 16px/24px var(--first-font);
  padding: 30px 6px;
  display: inline-block;
  white-space: nowrap;
  transition: none;
}

.desktop-menu li a i {
  margin-left: 5px;
}

.desktop-menu li a:hover {
  color: var(--color-red);
}

.desktop-menu li a:hover svg path {
  fill: #e63946;
}

.desktop-menu li:hover .sub-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.desktop-menu .sub-menu li a {
  width: 100%;
  background-color: var(--color-black);
  padding: 10px;
  display: block;
  color: var(--color-white);
  white-space: normal;
}

.desktop-menu .sub-menu li {
  width: 100%;
}

.desktop-menu .sub-menu li a:hover {
  background-color: var(--color-red);
}

.login-button li.login_links>a {
  border-radius: 4px;
  border: 1px solid var(--color-black);
  width: 100px;
  text-align: center;
  padding: 8px 20px;
  color: var(--color-black);
}

.login-button .login_dropdown {
  left: 0;
  position: absolute;
  top: unset;
  width: 220px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-in-out, top 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, top 0.1s ease-in-out;
  background: 0 0;
  padding: 0;
  height: 0;
}

.login-button li.login {
  margin-right: 15px;
}

.login-button li a.signUP_btn {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.login:hover .login_dropdown {
  padding-top: 10px;
  top: 100%;
  visibility: visible;
  opacity: 1;
}

.login-button li.login .login_dropdown a {
  width: 100%;
  background-color: var(--color-black);
  padding: 10px;
  color: var(--color-white);
}

.login-button li.login .login_dropdown li {
  width: 100%;
}

.login-button li.login .login_dropdown a:hover {
  background-color: var(--color-red);
}

.menu-toggler {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 30px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggler .line-toggle {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-black);
  border-radius: 5px;
  transition: all 0.6s;
}

.menu-toggler .line-toggle:first-child {
  transform: translateY(-8px) translateX(0px);
  width: 30px;
  transition-delay: 0s;
}

.menu-toggler .line-toggle:nth-child(2) {
  transition-delay: 0.12s;
}

.menu-toggler .line-toggle:last-child {
  transform: translateY(8px) translateX(0px);
  width: 30px;
  transition-delay: 0s;
}

.menu-active .menu-toggler .line-toggle:first-child {
  transform: translateY(0) translateX(0) rotate(45deg);
  width: 24px;
  height: 2px;
  transition-delay: 0.1s;
}

.menu-active .menu-toggler .line-toggle:nth-child(2) {
  transform: translateX(110px);
  transition-delay: 0s;
}

.menu-active .menu-toggler .line-toggle:last-child {
  transform: translateY(0) translateX(0) rotate(314deg);
  width: 24px;
  height: 2px;
  transition-delay: 0.1s;
}

@media (min-width: 1400px) {
  .desktop-menu li a {
    padding: 30px 12px;
  }

  .login-button li.login_links>a {
    width: 120px;
  }
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .header-logo {
    max-width: 140px;
  }

  .desktop-menu li a {
    font-size: 15px;
    padding: 30px 6px;
  }

  .login-button li.login_links>a {
    padding: 8px 15px;
    width: 90px;
  }
}

@media (max-width: 991px) {
  .login-button {
    display: none;
  }

  .menu-toggler {
    display: inline-flex;
  }

  .menunone .container {
    max-width: 100%;
  }

  .header-menu {
    display: none;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }

  .menunone {
    width: 100%;
    position: fixed;
    background: var(--color-white);
  }

  .wrapper {
    margin-top: 64px;
  }

  .header-logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    max-width: 100%;
  }

  .header-logo .navbar-brand {
    max-width: 140px;
    margin: 0;
  }

  .header-logo .navbar-brand img {
    object-fit: contain;
  }

  .menu-active .header-menu,
  .menu-active .login-button {
    display: block;
    width: 100%;
  }

  .menu-active .desktop-menu {
    width: 100%;
  }

  .menu-active .desktop-menu>li {
    width: 100%;
  }

  .menu-active .desktop-menu>li>a {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--color-light-grey);
    padding: 13px 20px;
    background-color: var(--color-white);
    text-align: left;
    color: var(--color-black);
  }

  .login-button li.login {
    margin: 0;
  }

  .expand-icon {
    height: 32px;
    width: 32px;
    position: absolute;
    right: 8px;
    top: 10px;
  }

  .expand-icon::before,
  .expand-icon::after {
    content: " ";
    width: 17px;
    height: 1px;
    background-color: var(--color-black);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.15s cubic-bezier(0.42, 0, 0.58, 1);
    opacity: 1;
    border-radius: 2px;
  }

  .expand-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .expand-icon::after {
    transform: translate(-50%, -50%);
  }

  .expand-icon.expanded::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .expand-icon.expanded::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  }

  .desktop-menu li .expand-icon+.sub-menu,
  .desktop-menu li .expand-icon+.login_dropdown {
    top: unset;
    visibility: hidden;
    opacity: 0;
    position: relative;
    width: 100%;
    padding: 0;
  }

  .desktop-menu li .expand-icon.expanded+.sub-menu,
  .desktop-menu li .expand-icon.expanded+.login_dropdown {
    top: 0;
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}

/* new desktop menu css end */
.inputs {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(6, 1fr);
  margin-bottom: 15px;
  margin-top: 15px;
}

.inputs>* {
  border: 2px solid #333;
  width: 100%;
  text-align: center;
  font-size: 45px;
  line-height: 1;
}

.inputs input:hover,
.inputs input:focus {
  border-color: var(--color-red);
}

input {
  border-radius: 5px;
}

.popup_modal .popup-bg .modal-content {
  margin: auto;
  position: relative;
  max-width: 600px;
  background: var(--color-white);
  transition: all 0.3s ease 0s;
  padding: 40px;
}

.popup_modal .login_popup_footer {
  margin-top: 15px;
}

.popup_modal .login_popup_footer p {
  color: var(--color-black);
  text-align: center;
  margin-bottom: 0;
}

.popup_modal .login_popup_footer p a {
  padding: 0;
  text-decoration: underline;
  width: auto;
  float: none;
  border: 0;
  display: inline-block;
}

.popup_modal .popup-bg .title {
  text-align: center;
  margin-bottom: 15px;
}

.popup_modal .popup-bg .title h3 {
  font: normal normal 500 32px/40px var(--first-font);
  text-align: center;
  padding: 8px 20px;
  color: var(--color-black);
}

.popup_modal .popup-bg .title .login-title1 {
  font: normal normal 500 32px/40px var(--first-font);
  text-align: center;
  padding: 8px 20px;
  color: var(--color-black);
  margin-bottom: 8px;
}

.popup_modal .hdform .form-group {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}

.popup_modal .popup-bg .hdform>label {
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--color-black);
}

.popup_modal .hdform .form-group i,
.popup_modal .hdform .form-group .icon-inputlogin {
  width: 50px;
  background-color: var(--color-light-black);
  height: 50px;
  line-height: 50px;
  color: var(--color-white);
  text-align: center;
  font-size: 18px;
  border-radius: 4px 0 0 4px;
  padding: 0;
  margin: 0;
}

.popup_modal .form-group textarea,
.popup_modal .hdform .form-group input {
  color: var(--color-black);
  height: 50px;
  padding-left: 15px;
  width: 84%;
  border: 1px solid var(--color-light-grey);
  margin: 0;
  border-radius: 0 4px 4px 0;
  font: normal normal 400 16px/22px var(--first-font);
  outline: none;
  box-sizing: border-box;
}

.popup_modal .hdform .form-group #togglePassword {
  color: var(--color-red);
  background-color: transparent;
  cursor: pointer;
  position: absolute;
  z-index: 222;
  right: 0;
}

.popup_modal .hdform .form-group input:-webkit-autofill,
.popup_modal .hdform .form-group input:-webkit-autofill:hover,
.popup_modal.hdform .form-group input:-webkit-autofill:focus,
.popup_modal .hdform .form-group input:-webkit-autofill:active {
  -webkit-background-clip: text;
}

.popup_modal .modal-close {
  color: var(--color-red);
  cursor: pointer;
  font-size: 24px;
  margin: 0;
  padding: 5px 8px;
  position: absolute;
  right: 5px;
  top: 5px;
}

.forget-password {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.popup_modal .hdform .forget-password a:hover {
  color: var(--color-red);
}

.header .mean-nav ul.nav.navbar-nav.mobile-menu li.login_links>a:hover {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.popup_modal [type="checkbox"]:checked+label,
.popup_modal [type="checkbox"]:not(:checked)+label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: var(--color-black);
  font: normal normal 400 16px/22px var(--first-font);
}

.popup_modal [type="checkbox"]:checked,
.popup_modal [type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.popup_modal [type="checkbox"]:checked+label:before,
.popup_modal [type="checkbox"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: solid 1px var(--color-light-black);
  border-radius: 50%;
}

.popup_modal [type="checkbox"]:checked+label:after,
.popup_modal [type="checkbox"]:not(:checked)+label:after {
  content: "✔";
  position: absolute;
  top: 8px;
  left: 5px;
  font-size: 14px;
  line-height: 0.7;
  color: var(--color-black);
  transition: all 0.2s;
}

.popup_modal [type="checkbox"]:not(:checked)+label:after {
  opacity: 0;
  transform: scale(0);
}

.popup_modal [type="checkbox"]:checked+label:after {
  opacity: 1;
  transform: scale(1);
}

.popup_modal .form-group textarea,
.popup_modal .hdform .form-group input {
  color: var(--color-black);
  height: 50px;
  padding-left: 15px;
  width: 100%;
  border: 1px solid var(--color-light-grey);
  margin: 0;
  border-radius: 0 4px 4px 0;
  font: normal normal 400 16px/22px var(--first-font);
  outline: none;
  box-sizing: border-box;
}

.popup_modal .hdform .form-group input:-webkit-autofill,
.popup_modal .hdform .form-group input:-webkit-autofill:hover,
.popup_modal.hdform .form-group input:-webkit-autofill:focus,
.popup_modal .hdform .form-group input:-webkit-autofill:active {
  -webkit-background-clip: text;
}

.popup_modal .hdform .btn {
  background: var(--color-red);
  color: var(--color-white);
  text-transform: uppercase;
  padding: 10px 0;
  transition: all 0.3s ease 0s;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  margin: 0 0 0;
  font: normal normal 500 16px/22px var(--first-font);
}

.popup_modal .hdform .btn:hover {
  background: var(--color-black);
}

.forget-password {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.header-forms li .popup .hdform .forget-password a:hover {
  color: var(--color-red);
}

.forgot-password-input input,
.change-password-input input {
  padding: 12px 30px 12px 15px;
}

.forgot-password-input .input-group-addon,
.change-password-input .input-group-addon {
  position: absolute;
  right: 11px;
  top: 11px;
  z-index: 9;
}

.forgot-password-input input:focus,
.change-password-input input:focus {
  box-shadow: none;
}

.popup_modal .popup-bg .modal-content {
  margin: auto;
  position: relative;
  max-width: 600px;
  background: var(--color-white);
  transition: all 0.3s ease 0s;
  padding: 40px;
}

.popup_modal .popup-bg .title h3 {
  font: normal normal 500 32px/40px var(--first-font);
  text-align: center;
  color: var(--color-black);
}

.popup_modal .popup-bg .title div.login-title {
  font: normal normal 500 32px/40px var(--first-font);
  text-align: center;
  padding: 8px 20px;
  color: var(--color-black);
}

.popup_modal .popup-bg .title div.login-title1 {
  font: normal normal 500 32px/40px var(--first-font);
  text-align: center;
  padding: 8px 20px;
  color: var(--color-black);
}

.popup_modal .popup-bg .title {
  text-align: center;
  margin-bottom: 15px;
}

.popup_modal .login_popup_footer {
  margin-top: 15px;
}

.popup_modal .login_popup_footer p {
  color: var(--color-black);
  text-align: center;
  margin-bottom: 0;
}

.popup_modal .login_popup_footer p a {
  padding: 0;
  text-decoration: underline;
  width: auto;
  float: none;
  border: 0;
  display: inline-block;
}

.menu-toggler {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 30px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
}

.menu-toggler .line-toggle {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-black);
  border-radius: 5px;
  transition: all 0.6s;
}

.menu-toggler .line-toggle:first-child {
  transform: translateY(-8px) translateX(0px);
  width: 30px;
  transition-delay: 0s;
}

.menu-toggler .line-toggle:nth-child(2) {
  transition-delay: 0.12s;
}

.menu-toggler .line-toggle:last-child {
  transform: translateY(8px) translateX(0px);
  width: 30px;
  transition-delay: 0s;
}

.menu-active .menu-toggler .line-toggle:first-child {
  transform: translateY(0) translateX(0) rotate(45deg);
  width: 24px;
  height: 2px;
  transition-delay: 0.1s;
}

.menu-active .menu-toggler .line-toggle:nth-child(2) {
  transform: translateX(110px);
  transition-delay: 0s;
}

.menu-active .menu-toggler .line-toggle:last-child {
  transform: translateY(0) translateX(0) rotate(314deg);
  width: 24px;
  height: 2px;
  transition-delay: 0.1s;
}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
  .header-logo {
    max-width: 140px;
  }

  .desktop-menu li a {
    font-size: 14px;
    padding: 30px 5px;
  }

  .login-button li.login_links>a {
    padding: 8px 10px;
    width: 85px;
  }

  .login-button li.login {
    margin-right: 8px;
  }
}

@media (max-width: 991px) {
  .login-button {
    display: none;
  }

  .menu-toggler {
    display: inline-flex;
  }

  .menunone .container {
    max-width: 100%;
  }

  .header-menu {
    display: none;
    -moz-transition: width 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
  }

  .menunone {
    width: 100%;
    position: fixed;
    background: var(--color-white);
  }

  .header-logo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    max-width: 100%;
  }

  .header-logo .navbar-brand {
    max-width: 140px;
    margin: 0;
  }

  .menu-active .header-menu,
  .menu-active .login-button {
    display: block;
    width: 100%;
  }

  .menu-active .desktop-menu {
    width: 100%;
  }

  .menu-active .desktop-menu>li {
    width: 100%;
  }

  .menu-active .desktop-menu>li>a {
    width: 100%;
    border: 0;
    border-top: 1px solid var(--color-light-grey);
    padding: 13px 20px;
    background-color: var(--color-white);
    text-align: left;
    color: var(--color-black);
  }

  .login-button li.login {
    margin: 0;
  }

  .expand-icon {
    height: 32px;
    width: 32px;
    position: absolute;
    right: 8px;
    top: 10px;
  }

  .expand-icon::before,
  .expand-icon::after {
    content: " ";
    width: 17px;
    height: 1px;
    background-color: var(--color-black);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.15s cubic-bezier(0.42, 0, 0.58, 1);
    opacity: 1;
    border-radius: 2px;
  }

  .expand-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .expand-icon::after {
    transform: translate(-50%, -50%);
  }

  .expand-icon.expanded::before {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .expand-icon.expanded::after {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  }

  .desktop-menu li .expand-icon+.sub-menu,
  .desktop-menu li .expand-icon+.login_dropdown {
    top: unset;
    visibility: hidden;
    opacity: 0;
    position: relative;
    width: 100%;
    padding: 0;
  }

  .desktop-menu li .expand-icon.expanded+.sub-menu,
  .desktop-menu li .expand-icon.expanded+.login_dropdown {
    top: 0;
    visibility: visible;
    opacity: 1;
    height: auto;
  }
}

/* new desktop menu css end */
/* ===================== 
    banner CSS Start 
=========================*/
.sliderTit {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sliderTit.headwidth {
  max-width: 550px;
  right: 0;
  left: auto !important;
  transform: translate(0%, -50%);
}

.sliderTit h1 {
  color: var(--color-white);
  font: normal normal 400 64px/72px var(--first-font);
}

.sliderTit h1 span {
  font: normal normal 600 64px/72px var(--first-font);
  display: block;
}

.sliderTit h2 {
  color: var(--color-white);
  font: normal normal 400 64px/72px var(--first-font);
}

.sliderTit h2 span {
  font: normal normal 600 64px/72px var(--first-font);
  display: block;
}

.btn-joinus {
  color: var(--color-black);
  width: 160px;
  height: 40px;
  font: normal normal 400 16px/24px var(--first-font);
  text-align: center;
  margin: 50px 0 0;
  background-color: var(--color-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}

.btn-joinus:hover {
  background-color: var(--color-red);
  color: var(--color-white);
}

.btn-joinus i {
  margin-left: 10px;
}

.slide-2 img {
  width: 100%;
  height: auto;
}

.banner-wrapper .carousel-control-next,
.banner-wrapper .carousel-control-prev {
  width: 5%;
  display: none;
}

.banner-wrapper .carousel-control-prev-icon,
.banner-wrapper .carousel-control-next-icon {
  border: 1px solid;
  border-radius: 100px;
  background-size: 20px;
}

.important-facts {
  background-color: var(--color-red);
  padding: 20px 0 25px;
}

.important-facts .box_fiexed_counter {
  text-align: center;
}

.important-facts .counter .number {
  color: var(--color-white);
  font: normal normal 500 32px/38px monospace;
  display: inline-block;
  min-width: 4ch;
}

.important-facts .counter p {
  color: var(--color-white);
  font: normal normal 400 16px/24px var(--first-font);
  margin: 0;
}

.important-facts .abheadcont {
  display: inline-block;
  color: var(--color-white);
  font-size: 16px;
  padding: 20px 15px;
}

.about-us .ourAmb {
  background-color: var(--color-white);
  padding: 25px;
}

.Featuredin .owl-stage {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-us .read-more {
  margin-top: 40px;
  border: 1px solid var(--color-red);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--color-red);
  font: normal normal 400 16px/29px var(--first-font);
}

.about-us .read-more:hover {
  color: var(--color-white);
  background-color: var(--color-red);
}

.about-us h2,
.about-us h1 {
  margin-bottom: 24px;
}

.about-us h1 {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .about-us h1 {
    margin-bottom: 10px;
  }
}

.Featuredin {
  background-color: var(--color-light-red);
}

.Columnnew {
  max-height: 220px;
  padding: 10px 10px;
}

.Columnnew img {
  max-height: 90px;
  object-fit: contain;
  margin: 0 auto;
  max-width: 90%;
}

.Featuredin h2 {
  margin-bottom: 30px;
}

.youtube-player {
  position: relative;
  height: 400px;
  max-height: 400px;
  overflow: hidden;
  max-width: 100%;
  background: var(--color-black);
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: inherit !important;
  z-index: 100;
  background: transparent;
}

.youtube-player img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: 0.4s all;
}

.youtube-player img:hover {
  -webkit-filter: brightness(75%);
  -moz-filter: brightness(75%);
  filter: brightness(75%);
}

.youtube-player .play {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  background: url("../images/YouTube_play_button_icon.svg") no-repeat;
  cursor: pointer;
}

.youtube-player .videoIcon-center {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.youtube-player .videoIcon-center svg {
  color: red;
}

.ourproject-sec .headAll {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.viewbtn {
  background-color: var(--color-white);
  border: 1px solid var(--color-red);
  color: var(--color-red);
  width: 160px;
  height: 42px;
  font-size: 16px;
}

.events-wrapper .events-list {
  background-color: var(--color-white);
  height: 100%;
  position: relative;
}

.events-wrapper .item {
  height: 100%;
}

.events-wrapper .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.events-wrapper .events-list .event-imgSty {
  max-height: auto;
  overflow: auto;
  position: relative;
}

.events-wrapper .events-list .eventImgHead {
  margin-bottom: 24px;
}

.events-wrapper .events-list .eventImgHead h2 {
  font: normal normal 500 20px/25px var(--first-font);
  margin-bottom: 8px;
  max-height: 50px;
  overflow: hidden;
  color: var(--color-black);
}

.events-list-dec {
  padding: 24px;
}

.events-list-dec h5 {
  font: normal normal 400 16px/24px var(--first-font) !important;
  max-height: 75px;
  overflow: hidden;
  margin-bottom: 40px;
}

.events-list-dec p {
  margin-bottom: 15px;
}

.events-wrapper:after {
  content: "";
  width: 100%;
  height: calc(100% - 243px);
  position: absolute;
  background-color: var(--color-red);
  bottom: 0;
  left: 0;
}

.events-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}

.events-wrapper .owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 40px;
}

.events-wrapper .read_more_cover .Readmoresty {
  font: normal normal 500 16px/24px var(--first-font);
  color: var(--color-red);
}

.events-wrapper .read_more_cover {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

#OurProjects .owl-nav {
  display: block;
}

#OurProjects .owl-nav.disabled {
  display: none;
}

#OurProjects .owl-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: -30px;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: transparent;
  outline: none;
}

#OurProjects .owl-nav button svg {
  color: #fff !important;
}

#OurProjects .owl-nav button.disabled svg {
  opacity: 0.5;
}

#OurProjects .owl-nav button.owl-next {
  left: auto;
  right: -30px;
}

.cta {
  background-color: var(--color-red);
  padding: 40px 0;
}

.cta h2 {
  color: var(--color-white);
  font: normal normal 500 32px/40px var(--first-font);
  margin: 0 0 20px;
}

.cta p {
  color: var(--color-white);
}

.cta .btn {
  background: 0 0;
  border: 2px solid var(--color-white);
  background-color: var(--color-white);
  font: normal normal 400 16px/18px var(--first-font);
  padding: 10px 30px;
}

.cta .btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.cta .btn i {
  margin-left: 10px;
}

.viewbtn:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.registerCov a {
  display: inline-block;
}

.registerCov {
  text-align: right;
}

.footer-wrapper {
  padding-bottom: 0px;
  padding-top: 50px;
  border-top: 2px solid var(--color-red);
}

.footer_lg {
  margin-bottom: 20px;
  display: block;
}

.footer-wrapper p {
  font: normal normal 400 16px/22px var(--first-font);
  color: var(--color-light-black);
  margin-bottom: 0px;
}

.abt_ngo {
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.soc_icon a {
  font-size: 26px;
  color: var(--color-red);
  margin-right: 30px;
  padding: 5px;
}

.soc_icon a:hover {
  color: var(--color-black);
}

.ft_tit {
  margin-bottom: 20px;
}

.ft_tit h4 {
  color: var(--color-black);
  font: normal normal 500 20px/22px var(--first-font);
}

.mail_sbm {
  display: flex;
  justify-content: flex-start;
}

.mailinput {
  width: 90%;
  display: flex;
  background: var(--color-light-grey);
}

.contact-form input.form-control {
  height: 44px;
  border-radius: 4px 0 0 4px;
  border: 0;
  box-shadow: none;
  padding-left: 20px;
}

.contact-form input.form-control:focus {
  background: var(--color-light-grey);
}

.contact-form .btn {
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 0 4px 4px 0px;
  padding: 10px 22px;
  font: normal normal 600 16px/22px var(--first-font);
}

.contact-form .btn:hover {
  background-color: var(--color-black);
}

.contact-form .btn:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.footer-wrapper ul.helpLink {
  padding: 0;
}

.footer-wrapper ul.helpLink li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-wrapper ul.helpLink li a {
  font: normal normal 400 16px/20px var(--first-font);
}

.footer-wrapper ul.helpLink li a:hover {
  color: var(--color-red);
}

#dvLoading {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;

  display: flex;
  justify-content: center;
  align-items: center;
}

#dvLoading img {
  width: 40px;
  height: auto;
}

.response_gif {
  background-color: var(--color-white);
  background-image: url(../images/pleasewait.png);
  background-position: center center;
  background-repeat: no-repeat;
  display: none;
  background-size: 100px auto;
  display: none;
  opacity: 0.9;
  position: fixed;
  width: 100%;
  z-index: 99999;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.allrightsft {
  border-top: 2px solid var(--color-light-grey);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 30px 15px 0;
  padding: 25px 0;
}

.allrightsft p {
  font-size: 14px;
}

.allrightsft a:hover {
  color: var(--color-red);
}

#scrollUp {
  position: fixed;
  bottom: 100px;
  right: 30px;
  color: var(--color-red);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  text-decoration: none;
  border-radius: 50%;
  background: var(--color-light-grey);
  border: 1px solid var(--color-light-grey);
  transition: all 0.5s cubic-bezier(0, 0, 0, 1) 0s;
  z-index: 1000;
}

.our-features .item-list {
  margin-top: 40px;
}

.our-features .project {
  margin-bottom: 24px;
}

.btn.btn-primary,
.btn.primary-button,
.btn.btn-success {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn.btn-primary:hover,
.btn.primary-button:hover,
.btn.btn-success:hover {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.secondary-button,
.btn-reset {
  background-color: var(--color-light-black);
  color: var(--color-white);
}

.secondary-button.btn {
  min-width: auto;
}

.secondary-button:hover,
.btn-reset:hover {
  background-color: var(--color-light-black);
  color: var(--color-white);
  opacity: 0.9;
}

.form-control::placeholder {
  font-weight: normal;
  color: #b6b9bd;
}

@media only screen and (max-width: 1400px) and (min-width: 992px) {
  header .mainmenu-area ul.nav.navbar-nav li a {
    font: normal normal 400 14px/18px var(--first-font);
    padding: 32px 10px;
  }

  header .mainmenu-area ul.nav.navbar-nav li a {
    padding: 32px 10px;
  }
}

@media (max-width: 1024px) {
  .cta h2 {
    font: normal normal 600 30px/38px var(--first-font);
  }

  .contact-form .btn {
    min-width: inherit;
  }

  .about-us p {
    font: normal normal 400 14px/22px var(--first-font);
  }

  .footer-wrapper p,
  .contact-form .btn {
    font: normal normal 400 14px/22px var(--first-font);
  }

  .footer-wrapper ul.helpLink li a {
    font: normal normal 400 14px/22px var(--first-font);
  }

  .allrightsft {
    justify-content: center;
  }

  .youtube-player {
    max-width: 100%;
    height: 300px;
    margin: 0 auto 20px;
  }
}

@media (max-width: 991px) {
  section.section {
    padding: 60px 0;
  }

  ul.nav.navbar-nav li ul {
    position: initial;
    width: 100%;
    visibility: visible;
    opacity: 1;
  }

  ul.nav.navbar-nav li:hover ul {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }

  .sliderTit h1 {
    font: normal normal 400 40px/50px var(--first-font);
    padding: 0 10px;
  }
}

@media (max-width: 767px) {
  .popup_modal .popup-bg .title h3,
  .popup_modal .popup-bg .title div.login-title,
  .popup_modal .popup-bg .title div.login-title1 {
    font: normal normal 600 30px/36px var(--first-font);
  }

  .popup_modal .popup-bg .modal-content {
    padding: 25px;
  }
  .sliderTit h1 {
    font: normal normal 400 24px/30px var(--first-font);
    text-align: center;
  }
  .sliderTit h1 span {
    font: normal normal 600 24px/30px var(--first-font);
    display: block;
  }
  .youtube-player {
    max-height: 300px;
    height: 300px;
  }
  .btn-joinus {
    margin: 0 auto;
  }
  section.section {
    padding: 20px 0;
  }
  body {
    font: normal normal 400 14px/22px var(--first-font);
  }
  .important-facts .counter p,
  .visionwrap p,
  .about-us p {
    font: normal normal 400 14px/22px var(--first-font);
  }

  .footer-wrapper .helpLink ul li a,
  .footer-wrapper p {
    font: normal normal 400 14px/22px var(--first-font);
  }

  .footer-wrapper ul.helpLink li a {
    font: normal normal 400 14px/22px var(--first-font);
  }

  .allheading {
    font: normal normal 500 22px/28px var(--first-font);
    margin-bottom: 15px;
  }

  .footer-wrapper {
    padding-top: 40px;
  }

  .about-us .read-more {
    font: normal normal 400 14px/22px var(--first-font);
    margin-top: 20px;
  }

  .about-us h2 {
    margin-bottom: 15px;
    margin-top: 15px;
  }

  .about-us img.about {
    margin-bottom: 20px;
  }

  .ourproject-sec .headAll {
    padding-bottom: 30px;
  }

  .events-wrapper .events-list .eventImgHead {
    margin-bottom: 15px;
  }

  .events-list-dec h5 {
    margin-bottom: 40px;
  }

  .banner-wrapper .carousel-control-next,
  .banner-wrapper .carousel-control-prev {
    width: auto;
  }

  .important-facts {
    padding: 10px 0;
  }

  .box_fiexed_counter {
    width: 33.33%;
  }

  .cta h2 {
    font: normal normal 600 24px/30px var(--first-font);
  }

  .contact-form .btn {
    min-width: inherit;
  }

  .Featuredin h2 {
    margin-bottom: 30px;
  }

  .registerCov {
    text-align: left;
  }

  .mailinput {
    width: 100%;
  }

  .allrightsft {
    margin: 30px 0 0;
    padding: 15px;
    justify-content: center;
    text-align: center;
  }

  .allrightsft .copyrft {
    margin-bottom: 15px;
  }
}

.dropdown-btn.dropdown .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown-btn.dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

input.appearance-none::-webkit-outer-spin-button,
input.appearance-none::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Modal */
.modal .modal-header .modal-title {
  font-size: 18px;
}

.modal .modal-header {
  border-bottom: 0;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  accent-color: var(--color-red);
}

#togglePassword {
  border-radius: 0 6px 6px 0;
  background-color: #e8f0fe !important;
  cursor: pointer
}
.space-50 {
    margin: 50px 0;
}
.e-vidyalaya-grid{
  margin-top: 24px;
}
@media (max-width:767px) {
  .space-50 {
    margin: 30px 0;
  }
}

@media (min-width:575px) {
  .modal-dialog {
    max-width: 1000px
  }
  .education-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .e-vidyalaya-grid{
    margin-top: 40px;
  }
}
.e-vidyalaya {
  background-color: #fafafa;
}

.e-vidyalaya-images {
    margin-bottom: 16px;
}
.education-card {
  position: relative;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #E1E7EF;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}
.education-head{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.education-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 12px;
}
.education-head p {
    font-size: 15px;
}
.education-haeder p {
    font-size: 15px;
}
.education-card:hover {
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 10%);
}
.education-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-light-red);
  color: var(--color-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.education-head h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 0px;
  flex: 1;
}
.education-dec p {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
.education-icon svg {
    width: 20px;
    height: 20px;
}
.education-grid {
  display: grid;
  gap: 12px;
}
.education-last-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
.education-last-col {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}
.education-last-grid .eicon {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-red);
    color: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.education-last-grid .enumber {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
}
.education-last-grid .etext {
    font-size: 14px;
}
.e-vidyalaya .viewmore {
  margin-top: 32px;
  border: 1px solid var(--color-red);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 4px;
  color: var(--color-red);
}
.e-vidyalaya .viewmore:hover {
  color: var(--color-white);
  background-color: var(--color-red);
}
.space-top-50{
  margin-top: 50px;
}

#result_preview {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
 
#result_preview iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}