* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background: #0D0D0D;
}

.landing__header {
  background: transparent;
  position: fixed;
  width: 100%;
  z-index: 2;
}
.landing__header.scroll-header {
  background: #0D0D0D;
}
.landing__header .navabr {
  width: 1270px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  padding-bottom: 30px;
}
@media screen and (max-width: 1270px) {
  .landing__header .navabr {
    width: 90%;
  }
}
.landing__header .navabr .logo__section .heading {
  display: flex;
  text-decoration: none;
  cursor: pointer;
}
.landing__header .navabr .logo__section .heading img {
  height: 40px;
}
.landing__header .navabr .navlinks {
  display: flex;
  align-items: center;
}
.landing__header .navabr .navlinks .navlink {
  list-style: none;
}
.landing__header .navabr .navlinks .navlink a {
  cursor: pointer;
  text-decoration: none;
}
.landing__header .navabr .navlinks .navlink a .login__btn {
  all: unset;
  color: #FFF;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.landing__header .navabr .navlinks .navlink a .signup__btn {
  margin-left: 30px;
}
.landing__header .navabr .navlinks .navlink img {
  margin-left: 50px;
  cursor: pointer;
}
@media screen and (max-width: 420px) {
  .landing__header .navabr .navlinks .navlink img {
    margin-left: 0;
  }
}
@media screen and (max-width: 620px) {
  .landing__header .navabr .navlinks .hideInSm {
    display: none;
  }
}
.landing__header .sidebar__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.landing__header .sidebar__wrapper.showSidebar {
  display: block;
}
.landing__header .sidebar__wrapper .sidebar__container {
  width: 453px;
  background: #1D1D1D;
  padding-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  min-height: calc(100vh - 80px);
}
@media screen and (max-width: 620px) {
  .landing__header .sidebar__wrapper .sidebar__container {
    width: 300px;
  }
}
@media screen and (max-width: 420px) {
  .landing__header .sidebar__wrapper .sidebar__container {
    width: 240px;
  }
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #303030;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header a {
  text-decoration: none;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header a .login__btn {
  all: unset;
  color: #FFF;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header a .signup__btn {
  margin-left: 25px;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header .close__icon {
  margin-left: auto;
  cursor: pointer;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header .close__icon svg {
  color: #fff;
  width: 20px;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__header .close__icon svg:hover {
  color: #FECB21;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__links__wrapper {
  margin-top: 85px;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__links__wrapper .sidebar__links__contaainer .link {
  margin-bottom: 30px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__links__wrapper .sidebar__links__contaainer .link.activeLink span {
  color: #FECB21;
  position: relative;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__links__wrapper .sidebar__links__contaainer .link.activeLink span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: #FECB21;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__links__wrapper .sidebar__links__contaainer .link:hover span {
  color: #FECB21;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__links__wrapper .sidebar__links__contaainer .link span {
  color: #FFF;
  font-family: "Poppins";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__footer__wrapper {
  position: absolute;
  bottom: 20px;
  width: calc(100% - 60px);
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__footer__wrapper .sidebar__footer__container {
  display: flex;
  gap: 7px;
  padding-top: 20px;
  border-top: 1px solid #303030;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__footer__wrapper .sidebar__footer__container .social__icon {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__footer__wrapper .sidebar__footer__container .social__icon:hover svg {
  color: #FECB21;
}
.landing__header .sidebar__wrapper .sidebar__container .sidebar__footer__wrapper .sidebar__footer__container .social__icon svg {
  color: #D3D6D8;
  width: 20px;
}

.footer__wrapper {
  background: #1D1D1D;
}
.footer__wrapper .footer__container {
  display: flex;
  justify-content: space-between;
  width: 1180px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 1180px) {
  .footer__wrapper .footer__container {
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .footer__wrapper .footer__container {
    flex-wrap: wrap;
  }
}
.footer__wrapper .footer__container .foot1 .logo__section .heading {
  display: flex;
  text-decoration: none;
  cursor: pointer;
}
.footer__wrapper .footer__container .foot1 .logo__section .heading img {
  height: 40px;
}
.footer__wrapper .footer__container .foot1 .info__text {
  color: #D3D6D8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  width: 255px;
  margin-top: 22px;
  margin-bottom: 30px;
}
.footer__wrapper .footer__container .foot1 .foot__social__icon__container {
  display: flex;
  gap: 7px;
}
.footer__wrapper .footer__container .foot1 .foot__social__icon__container .social__icon {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer__wrapper .footer__container .foot1 .foot__social__icon__container .social__icon:hover svg {
  color: #FECB21;
}
.footer__wrapper .footer__container .foot1 .foot__social__icon__container .social__icon svg {
  color: #D3D6D8;
  width: 20px;
  stroke-width: 1.5px;
}
.footer__wrapper .footer__container .foot2 {
  margin-left: 70px;
}
@media screen and (max-width: 1000px) {
  .footer__wrapper .footer__container .foot2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 520px) {
  .footer__wrapper .footer__container .foot2 {
    margin-top: 40px;
  }
}
.footer__wrapper .footer__container .foot2 .foot__title {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer__wrapper .footer__container .foot2 .foot__links {
  display: flex;
  flex-direction: column;
  margin-top: 33px;
}
.footer__wrapper .footer__container .foot2 .foot__links a {
  color: #D3D6D8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  margin-bottom: 25px;
}
.footer__wrapper .footer__container .foot2 .foot__links a:hover {
  color: #FECB21;
}
.footer__wrapper .footer__container .foot3 .foot3__text {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.footer__wrapper .footer__container .foot3 .foot3__email {
  text-decoration: none;
  margin-top: 40px;
  color: #D3D6D8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.auth__section .auth__wrapper {
  background: #030404;
  padding: 90px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth__section .auth__wrapper .auth__container {
  width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1180px) {
  .auth__section .auth__wrapper .auth__container {
    width: 90%;
  }
}
.auth__section .auth__wrapper .auth__container .left__section {
  width: 575px;
  height: 788px;
}
@media screen and (max-width: 1180px) {
  .auth__section .auth__wrapper .auth__container .left__section {
    width: 413px;
  }
}
@media screen and (max-width: 1000px) {
  .auth__section .auth__wrapper .auth__container .left__section {
    display: none;
  }
}
.auth__section .auth__wrapper .auth__container .left__section img {
  height: 100%;
  width: 100%;
}
.auth__section .auth__wrapper .auth__container .login__page__img__style {
  height: 678px;
}
@media screen and (max-width: 1180px) {
  .auth__section .auth__wrapper .auth__container .login__page__img__style {
    width: 413px;
  }
}
@media screen and (max-width: 1000px) {
  .auth__section .auth__wrapper .auth__container .login__page__img__style {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  .auth__section .auth__wrapper .auth__container .right__section {
    width: 100%;
  }
}
.auth__section .auth__wrapper .auth__container .right__section form {
  width: 449px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .auth__section .auth__wrapper .auth__container .right__section form {
    width: 100%;
  }
}
.auth__section .auth__wrapper .auth__container .right__section form .heading {
  margin: 20px 0;
  text-decoration: none;
}
.auth__section .auth__wrapper .auth__container .right__section form .heading img {
  height: 40px;
}
.auth__section .auth__wrapper .auth__container .right__section form p {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 40px;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row {
  display: flex;
  flex-direction: column;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column label {
  color: #E4E4E7;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 10px;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column input {
  all: unset;
  padding: 17px 22px;
  color: #94A3B8;
  /* Regular/16px */
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  border-radius: 35px;
  border: 1px solid #334155;
  outline: none;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column input::-moz-placeholder {
  color: #94A3B8;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column input::placeholder {
  color: #94A3B8;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column input.is-invalid {
  border: 1px solid #F04438;
}
.auth__section .auth__wrapper .auth__container .right__section form .form__row .form__column .error {
  color: #F04438;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 6px;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper {
  display: flex;
  justify-content: space-between;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper .checkbox__container {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d0d5dd;
  margin-bottom: 14px;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper .checkbox__container .custom__checkbox {
  display: none;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper .checkbox__container .checkbox__label {
  display: flex;
  align-items: center;
  gap: 15px;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper .checkbox__container .checkbox__label .label__text {
  cursor: pointer;
  color: #FFF;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper .checkbox__container .checkbox__label .bsc-checkbox {
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #334155;
  border-radius: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.auth__section .auth__wrapper .auth__container .right__section form .fogot__checkbox__wrapper a {
  color: #FECB21;
  /* Regular/13px */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}
.auth__section .auth__wrapper .auth__container .right__section form button {
  padding: 16px;
  color: #000;
  text-align: center;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 175% */
  letter-spacing: -0.2px;
  border: none;
  outline: none;
  background: #FECB21;
  margin-top: 30px;
  margin-bottom: 15px;
  cursor: pointer;
}
.auth__section .auth__wrapper .auth__container .right__section form span {
  text-align: center;
  color: #64748B;
  /* Regular/13px */
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}
.auth__section .auth__wrapper .auth__container .right__section form span a {
  color: #FECB21;
  /* Bold/13px */
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  cursor: pointer;
}
.auth__section .auth__wrapper .forgot__password__container {
  align-items: center;
}
.auth__section .auth__wrapper .reset__password__container {
  align-items: center;
}

.tou__and__pp__wrapper {
  background: #0D0D0D;
}
.tou__and__pp__wrapper .tou__and__pp__container {
  padding: 90px 0;
  width: 1010px;
  margin: 0 auto;
  padding-top: 200px;
}
@media screen and (max-width: 1180px) {
  .tou__and__pp__wrapper .tou__and__pp__container {
    width: 90%;
  }
}
.tou__and__pp__wrapper .tou__and__pp__container h2 {
  color: #FFF;
  text-align: center;
  font-family: "Poppins";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tou__and__pp__wrapper .tou__and__pp__container .tou__and__pp__info__para {
  color: #FFF;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.tou__and__pp__wrapper .tou__and__pp__container .all__tou__and__pp__heading__para .heading__para {
  margin-bottom: 30px;
}
.tou__and__pp__wrapper .tou__and__pp__container .all__tou__and__pp__heading__para .heading__para:last-child {
  margin-bottom: 0;
}
.tou__and__pp__wrapper .tou__and__pp__container .all__tou__and__pp__heading__para .heading__para h3 {
  color: #FFF;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.tou__and__pp__wrapper .tou__and__pp__container .all__tou__and__pp__heading__para .heading__para p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 15px;
}

.hero_section {
  height: 811px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .hero_section {
    height: auto;
  }
}
.hero_section .hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.hero_section .hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_section .bg_cover {
  position: absolute;
  height: 100%;
  width: 100%;
}
.hero_section .hero__content__wrapper .hero__content__container {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  padding-top: 270px;
  width: 1180px;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 1180px) {
  .hero_section .hero__content__wrapper .hero__content__container {
    width: 90%;
    padding-top: 280px;
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .hero__content__wrapper .hero__content__container {
    padding-top: 200px;
    flex-direction: column-reverse;
    padding-bottom: 70px;
  }
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper {
  width: 435px;
  border-radius: 14px;
  background: linear-gradient(139deg, rgba(255, 255, 255, 0) -48.47%, rgba(255, 255, 255, 0.1) 120.48%);
  padding: 25px;
}
@media screen and (max-width: 1180px) {
  .hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper {
    width: 80%;
  }
}
@media screen and (max-width: 1000px) {
  .hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper {
    width: calc(100% - 50px);
  }
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container {
  width: 100%;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container h4 {
  color: #FFF;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box {
  margin-top: 15px;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 13px;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .search__input {
  position: relative;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .search__input img {
  position: absolute;
  padding-right: 12px;
  top: 12px;
  right: 0px;
  z-index: 1;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .search__input select {
  color: #BABABA !important;
  font-family: "Poppins" !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
  border-radius: 5px !important;
  background: #111 !important;
  padding: 15px 12px !important;
  border: none !important;
  outline: none !important;
  width: calc(100% - 24px) !important;
  cursor: pointer !important;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .date__input__box {
  position: relative;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input {
  color: #BABABA;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background: #111;
  padding: 15px 12px;
  border: none;
  outline: none;
  width: calc(100% - 24px);
  cursor: pointer;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input::-moz-placeholder {
  color: #bababa;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input::placeholder {
  color: #bababa;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  background-image: url(/images/date.svg?736e4886abb5ca267766ef73e4a94f0a);
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .input__box .date__input__box .selected__date {
  position: absolute;
  color: #BABABA;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background: #111;
  padding: 15px 12px;
  border: none;
  outline: none;
  width: calc(100% - 60px);
  cursor: pointer;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .time__box {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .time__box .time {
  width: 50%;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .time__box .time p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .time__box .time input {
  color: #BABABA;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background: #111;
  padding: 15px 12px;
  border: none;
  outline: none;
  cursor: pointer;
  width: calc(100% - 24px);
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container .time__box .time input::-webkit-calendar-picker-indicator {
  background-image: url(/images/time.svg?f9d6f5e60824f5fa4dc1b54e318ec742);
  cursor: pointer;
}
.hero_section .hero__content__wrapper .hero__content__container .date__picker__wrapper .date__picker__container button {
  margin-top: 20px;
  width: 100%;
}
.hero_section .hero__content__wrapper .hero__content__container .hero__content {
  width: 620px;
  padding-top: 100px;
}
@media screen and (max-width: 1180px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content {
    width: 100%;
    padding-top: 30px;
  }
}
.hero_section .hero__content__wrapper .hero__content__container .hero__content p {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.hero_section .hero__content__wrapper .hero__content__container .hero__content h1 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: #fff;
  font-size: 57px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1180px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content h1 {
    font-size: 45px;
  }
}
@media screen and (max-width: 620px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content h1 {
    font-size: 32px;
    padding-top: 0;
  }
}
.hero_section .hero__content__wrapper .hero__content__container .hero__content h1 span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  color: #fff;
  font-size: 57px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fecb21;
}
@media screen and (max-width: 1180px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content h1 span {
    font-size: 45px;
  }
}
@media screen and (max-width: 620px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content h1 span {
    font-size: 32px;
    padding-top: 0;
  }
}
.hero_section .hero__content__wrapper .hero__content__container .hero__content .hero__para__info {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-weight: 300;
  width: 90%;
}
@media screen and (max-width: 1180px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content .hero__para__info {
    width: 100%;
  }
}
@media screen and (max-width: 620px) {
  .hero_section .hero__content__wrapper .hero__content__container .hero__content .hero__para__info {
    font-size: 16px;
  }
}

.innovation__wrapper {
  background: #000;
}
.innovation__wrapper .innovation__container {
  width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 110px 0;
}
@media screen and (max-width: 1180px) {
  .innovation__wrapper .innovation__container {
    width: 90%;
    padding: 90px 0;
  }
}
@media screen and (max-width: 1000px) {
  .innovation__wrapper .innovation__container {
    flex-direction: column;
    padding: 70px 0;
  }
}
.innovation__wrapper .innovation__container .left__section {
  width: 486px;
}
@media screen and (max-width: 1180px) {
  .innovation__wrapper .innovation__container .left__section {
    width: 370px;
  }
}
@media screen and (max-width: 1000px) {
  .innovation__wrapper .innovation__container .left__section {
    width: 100%;
  }
}
.innovation__wrapper .innovation__container .left__section h2 {
  color: #fff;
  font-family: "Poppins";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.innovation__wrapper .innovation__container .left__section p {
  color: #bababa;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.innovation__wrapper .innovation__container .left__section a {
  text-decoration: none;
}
.innovation__wrapper .innovation__container .left__section a button {
  all: unset;
  color: #000;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 12px 28px;
  background: #fecb21;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 35px;
}
.innovation__wrapper .innovation__container .right__section {
  width: 605px;
}
@media screen and (max-width: 1180px) {
  .innovation__wrapper .innovation__container .right__section {
    width: 500px;
  }
}
@media screen and (max-width: 1000px) {
  .innovation__wrapper .innovation__container .right__section {
    width: 100%;
    margin-top: 45px;
  }
}
.innovation__wrapper .innovation__container .right__section img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__wrapper {
  background: #0d0d0d;
}
.services__wrapper .services__container {
  width: 1180px;
  padding: 110px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .services__wrapper .services__container {
    width: 90%;
    padding: 90px 0;
  }
}
@media screen and (max-width: 1000px) {
  .services__wrapper .services__container {
    padding: 70px 0;
  }
}
.services__wrapper .services__container .services {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .services__wrapper .services__container .services {
    width: 100%;
  }
}
.services__wrapper .services__container .services .service__headings {
  text-align: center;
}
.services__wrapper .services__container .services .service__headings h3 {
  color: #fff;
  font-family: "Poppins";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.services__wrapper .services__container .services .service__headings p {
  color: #bababa;
  text-align: center;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 72%;
  margin: 0 auto;
}
@media screen and (max-width: 1180px) {
  .services__wrapper .services__container .services .service__headings p {
    width: 100%;
  }
}
.services__wrapper .services__container .services .service__cards {
  margin-top: 80px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .services__wrapper .services__container .services .service__cards {
    flex-wrap: wrap;
  }
}
.services__wrapper .services__container .services .service__cards .service__card {
  width: 331px;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .services__wrapper .services__container .services .service__cards .service__card {
    width: 100%;
  }
}
.services__wrapper .services__container .services .service__cards .service__card .service__card__img {
  height: 207px;
}
.services__wrapper .services__container .services .service__cards .service__card .service__card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__wrapper .services__container .services .service__cards .service__card .service__card__content {
  padding: 25px;
}
.services__wrapper .services__container .services .service__cards .service__card .service__card__content h3 {
  color: #000;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.services__wrapper .services__container .services .service__cards .service__card .service__card__content .underline {
  height: 3px;
  width: 35%;
  background: #000;
  margin: 18px 0;
}
.services__wrapper .services__container .services .service__cards .service__card .service__card__content .first__para {
  color: #292929;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.services__wrapper .services__container .services .get__started__button {
  margin-top: 50px;
  text-align: center;
}
.services__wrapper .services__container .services .get__started__button a {
  text-decoration: none;
}
.services__wrapper .services__container .services .get__started__button a button {
  all: unset;
  color: #000;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 12px 28px;
  background: #fecb21;
  border: none;
  outline: none;
  cursor: pointer;
}

.testimonials__wrapper {
  background: #000;
}
.testimonials__wrapper .testimonials__container {
  width: 1270px;
  margin: 0 auto;
  padding: 110px 0;
}
@media screen and (max-width: 1270px) {
  .testimonials__wrapper .testimonials__container {
    width: 90%;
    padding: 90px 0;
  }
}
@media screen and (max-width: 1000px) {
  .testimonials__wrapper .testimonials__container {
    padding: 70px 0;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .testimonial__heading .headings {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 1270px) {
  .testimonials__wrapper .testimonials__container .testimonials__content .testimonial__heading .headings {
    width: 100%;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .testimonial__heading .headings .p__logo {
  height: 23px;
  width: 23px;
  background: #fecb21;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 800;
}
.testimonials__wrapper .testimonials__container .testimonials__content .testimonial__heading .headings .text {
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 2.7px;
  margin: 20px 0;
}
@media screen and (max-width: 720px) {
  .testimonials__wrapper .testimonials__container .testimonials__content .testimonial__heading .headings .text {
    font-size: 18px;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .testimonial__heading .headings .info__text {
  color: #bababa;
  text-align: center;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials {
  margin-top: 80px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  .testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials {
    flex-direction: column;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides {
  width: 620px;
  overflow: hidden;
  margin: 0;
  background: #f6f6f6;
}
@media screen and (max-width: 1000px) {
  .testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides {
    width: 100%;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left {
  padding: 40px;
  padding-bottom: 100px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .testimonial__text {
  display: flex;
  padding-top: 30px;
  padding-right: 35px;
  padding-bottom: 20px;
  padding-left: 20px;
  background: #fff;
  gap: 30px;
  margin-right: 80px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .testimonial__text .texts p {
  color: #555;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .testimonial__text .texts span {
  color: #555;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 10px;
  display: inline-block;
  padding-top: 10px;
  border-top: 1px solid #c4c4c4;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .author {
  margin-top: 40px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .author .author__img {
  width: 90px;
  height: 90px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .author .author__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .author .author__info {
  padding-bottom: 8px;
  border-bottom: 1px solid #c4c4c4;
  width: 69%;
  margin-right: 80px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .author .author__info .name {
  color: #6c6c6c;
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: 0.2px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .testimonial__left .testimonial .author .author__info .role {
  color: #555;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-top: 10px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .prev__next__button {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  position: absolute;
  bottom: 45px;
  right: 40px;
  z-index: 111;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .handle__testimonial__slides .prev__next__button button {
  position: absolute;
  all: unset;
  padding: 7px 10px;
  background: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right {
  width: 621px;
}
@media screen and (max-width: 1000px) {
  .testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right {
    width: 100%;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper {
  position: relative;
  z-index: 1;
  height: 135px;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 520px) {
  .testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper {
    height: 115px;
  }
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__container {
  width: 400px;
  display: flex;
  gap: 15px;
  padding-left: 26px;
  align-items: center;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__container .user__avatar {
  height: 56px;
  width: 56px;
  overflow: hidden;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__container .user__avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__container .user__name__role .user__name {
  color: #6c6c6c;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: 0.2px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__container .user__name__role p {
  color: #555;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__bg {
  position: absolute;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.testimonials__wrapper .testimonials__container .testimonials__content .all__testimonials .testimonials .testimonial__right .user__info__wrapper .user__info__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: #6C6C6C !important;
}

.select2-container {
  color: #BABABA !important;
  font-family: "Poppins" !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 500 !important;
  line-height: normal !important;
  border-radius: 5px !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
}

.select2.select2-container {
  width: 100% !important;
}

.select2.select2-container .select2-selection {
  border-radius: 8px !important;
  height: 34px;
  margin-bottom: 15px;
  outline: none !important;
  transition: all 0.15s ease-in-out;
  background: #111 !important;
  border: none !important;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
  color: #BABABA !important;
  line-height: 35px;
  padding-right: 33px;
  background: #111 !important;
  padding-left: 12px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-radius: 8px;
}

.select2.select2-container .select2-selection .select2-selection__arrow {
  background: #111 !important;
  border-radius: 0 3px 3px 0;
  height: 40px;
  width: 33px;
  cursor: pointer;
}

.select2.select2-container .select2-selection .select2-selection__arrow b {
  display: none !important;
}

.select2-container--default .select2-selection--single {
  border: none !important;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single {
  background: #f8f8f8;
  background: #000 !important;
}

.select2.select2-container.select2-container--open .select2-selection.select2-selection--single .select2-selection__arrow {
  border-radius: 0 3px 0 0;
}

.select2.select2-container .select2-selection--multiple .select2-selection__choice {
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 4px 4px 0 0;
  padding: 0 6px 0 22px;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  position: relative;
}

.select2-container .select2-dropdown {
  background: transparent;
  border: none;
  margin-top: -5px;
}

.select2-container .select2-dropdown .select2-search {
  padding: 0;
}

.select2-container .select2-dropdown .select2-search input {
  outline: none !important;
  border: 1px solid #34495e !important;
  border-bottom: none !important;
  padding: 4px 6px !important;
}

.select2-container .select2-dropdown .select2-results {
  padding: 0;
}

.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #34495e;
}

.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #3498db;
  color: #fff !important;
}

.select2-selection .select2-selection--single {
  border-radius: 8px;
}

.select2-results__option--selectable {
  color: #667085;
}

.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .select2.select2-container .select2-selection .select2-selection__rendered {
  background: #202020 !important;
}

.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .select2.select2-container .select2-selection .select2-selection__arrow {
  background: #202020 !important;
}

.yellow__btn {
  color: #000;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 10px 28px;
  background: #fecb21;
  border: none;
  outline: none;
  cursor: pointer;
}

.search__list__wrapper .search__list__container {
  background: #0D0D0D;
  padding-top: 200px;
  padding-bottom: 90px;
}
.search__list__wrapper .search__list__container h3 {
  color: #FFF;
  font-family: "Poppins";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  width: 1270px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1270px) {
  .search__list__wrapper .search__list__container h3 {
    width: 90%;
  }
}
.search__list__wrapper .search__list__container .search__list {
  width: 1270px;
  margin: 0 auto;
  background: #151515;
  padding: 20px 0;
  padding-left: 20px;
  display: flex;
}
@media screen and (max-width: 1270px) {
  .search__list__wrapper .search__list__container .search__list {
    width: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .search__list__wrapper .search__list__container .search__list {
    flex-direction: column;
    width: calc(90% - 20px);
  }
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper {
  width: 555px;
}
@media screen and (max-width: 1270px) {
  .search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper {
    width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  .search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper {
    width: calc(100% - 20px);
  }
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container {
  width: 100%;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 13px;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .search__input {
  position: relative;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .search__input img {
  position: absolute;
  padding-right: 12px;
  top: 13px;
  right: 0px;
  z-index: 1;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .search__input input {
  width: calc(100% - 54px);
  color: #BABABA;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background: #202020;
  padding: 15px 12px;
  border: none;
  outline: none;
  padding-right: 42px;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input {
  color: #BABABA;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background: #202020;
  padding: 15px 12px;
  border: none;
  outline: none;
  width: calc(100% - 24px);
  cursor: pointer;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input::-moz-placeholder {
  color: #bababa;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input::placeholder {
  color: #bababa;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .input__box .date__input__box .date__input::-webkit-calendar-picker-indicator {
  background-image: url(/images/date.svg?736e4886abb5ca267766ef73e4a94f0a);
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .handle__margin {
  margin-top: 15px;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .time__box {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .time__box .time {
  width: 50%;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .time__box .time p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .time__box .time input {
  color: #BABABA;
  font-family: "Poppins";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 5px;
  background: #202020;
  padding: 15px 12px;
  border: none;
  outline: none;
  width: calc(100% - 24px);
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container .time__box .time input::-webkit-calendar-picker-indicator {
  background-image: url(/images/time.svg?f9d6f5e60824f5fa4dc1b54e318ec742);
  cursor: pointer;
}
.search__list__wrapper .search__list__container .search__list .left__section .date__picker__wrapper .date__picker__container button {
  margin-top: 20px;
  width: 100%;
}
.search__list__wrapper .search__list__container .search__list .right__section {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #303030;
  margin-top: 35px;
}
@media screen and (max-width: 1270px) {
  .search__list__wrapper .search__list__container .search__list .right__section {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .search__list__wrapper .search__list__container .search__list .right__section {
    margin-left: 0px;
    width: calc(100% - 20px);
  }
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards {
  max-height: 70vh;
  overflow-y: auto;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards::-webkit-scrollbar {
  width: 7px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards::-webkit-scrollbar-thumb {
  border-radius: 10px;
  border-radius: 3px 3px 0px 0px;
  background: #464646;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards::-webkit-scrollbar-track {
  border-radius: 3px;
  background: #1F1F1F;
  border-radius: 10px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card {
  width: 622px;
  padding: 15px;
  background: #1E1E1E;
  margin-bottom: 15px;
  margin-right: 15px;
}
@media screen and (max-width: 1270px) {
  .search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card {
    width: calc(100% - 45px);
  }
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card:last-child {
  margin-bottom: 0px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section {
  display: flex;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #303030;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .img {
  width: 107px;
  height: 107px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content {
  width: 80%;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .info__heading {
  display: flex;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .info__heading .location__name {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-right: 10px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .info__heading .pricing {
  color: #FFF;
  font-family: "Poppins";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-left: auto;
  display: flex;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .info__heading .pricing p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transform: translateY(5.5px);
  margin-left: 6px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .place__infos .info {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .place__infos .info p {
  color: #FFF;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .info__section .info__content .place__infos .info p span {
  color: #BABABA;
  font-family: "Poppins";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.search__list__wrapper .search__list__container .search__list .right__section .search__card__list .search__cards .search__card .book__now__button {
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
}
