@font-face {
  font-family: gilroy;
  src: url("./webfont/Gilroy-Black.ttf");
}
@font-face {
  font-family: gilroy-medium;
  src: url("./webfont/Gilroy-Medium.ttf");
}
@font-face {
  font-family: gilroy-bold;
  src: url("./webfont/Gilroy-Bold.ttf");
}
@font-face {
  font-family: gilroy-thin;
  src: url("./webfont/Gilroy-Thin.ttf");
}
@font-face {
  font-family: gilroy-regular;
  src: url("./webfont/Gilroy-Regular.ttf");
}
@font-face {
  font-family: gilroy-italicregular;
  src: url("./webfont/Gilroy-RegularItalic.ttf");
}
@font-face {
  font-family: gilroy-italicthin;
  src: url("./webfont/Gilroy-ThinItalic.ttf");
}
@font-face {
  font-family: gilroy-semibold;
  src: url("./webfont/Gilroy-SemiBold.ttf");
}
@font-face {
  font-family: lustra-bold;
  src: url("./webfont/lustra-text-black.ttf");
}
@font-face {
  font-family: lustra-medium;
  src: url("webfont/lustra-text.ttf");
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bkg-color);
  font-family: gilroy-regular !important;
}
.darktheme {
  background: #000;
  height: 100vh;
}
.right-menu {
  margin-top: 40px;
}
.darktheme .content {
  background-color: #000 !important;
}
.login-rightbg {
  background: url("../Images/login-rightbg.png") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  color: #fff;
}

h3 {
  font-family: lustra-medium;
  font-size: 2.5rem !important;
}
h5,
h6 {
  font-family: gilroy-medium;
  margin: 0;
}
h4 {
  margin: 0;
  font-family: gilroy-semibold;
  /* color: #000; */
}

h2 {
  font-size: 2.6rem !important;
  font-family: lustra-bold;
}

a {
  text-decoration: none;
}

.small {
  color: #a3a3a3;
  font-size: 18px;
}

.cursor {
  cursor: pointer;
}

.noaccount-title,
.checkbox-wrap label {
  font-family: gilroy-regular;
  font-size: 1.2rem;
  color: #000;
}

.login span,
.text-red,
.login .left-section i {
  color: #e40309;
}
.text-green {
  color: #1b7d1b;
}
.input-field-border label {
  margin-bottom: 10px;
  font-family: gilroy-medium;
}
.input-field-border input,
.input-field-border select {
  border: 1px solid #a3a3a3;
  width: 100%;
  height: 50px;
  padding: 0px 10px;
  background: #fff;
  border-radius: 10px;
  color: #000;
}
.login .left-section,
.login-right-content {
  width: 80%;
  margin: 0 auto;
}
.mob-position {
  position: absolute;
}

/* .logged-in-content {
      margin-top: -18px;
    } */

.login .left-section button,
.signupbtn,
.button-red {
  width: 160px;
  background: #e40309;
  color: #fff;
  height: 50px;
  font-family: lustra-medium;
  border: 0;
  border-radius: 10px;
  box-shadow: 20px 18px 30px 0px rgba(0, 0, 0, 0.2);
}

.login h4 {
  font-family: gilroy-semibold;
  font-size: 1.4rem;
  line-height: 2rem;
  width: 80%;
}

.login-rightbg p,
.reviewlist .modal-dialog p,
.user-list p.grey-color,
.subscription-details h6 {
  font-size: 0.9rem;
  line-height: 1.85rem;
  font-family: gilroy-medium;
}

.modal-dialog h4 {
  font-family: lustra-medium;
  font-size: 1.4rem;
}
.reviewlist .modal-dialog p {
  font-family: gilroy-medium;
}

.flex-wrap-input .input-field-border,
.flex-wrap-input select {
  flex: 1 0 280px;
}

.profile-section .flex-wrap-input .input-field-border,
.profile-section .flex-wrap-input select {
  flex: 1 0 400px;
}
input:focus {
  border: 1.5px solid #000 !important;
}

.signup-left {
  height: calc(100vh - 40px);
  overflow: auto;
}

.signup-left::-webkit-scrollbar {
  display: none;
}

/* agree all conditions checkbox  */
.agree-wrap {
  margin-top: -20px;
}
.agree-wrap input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.agree-wrap .cbx {
  position: relative;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 1px solid #c8ccd4;
  border-radius: 3px;
  vertical-align: middle;
  /* transition: background 0.1s ease; */
  cursor: pointer;
}
.agree-wrap .cbx:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 14px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  /* transition: all 0.3s ease; */
  /* transition-delay: 0.15s; */
  right: 0;
  bottom: 3px;
  margin: auto;
}
.agree-wrap .lbl {
  margin-left: 5px;
  vertical-align: middle;
  cursor: pointer;
}

.agree-wrap input[type="checkbox"]:checked ~ .cbx {
  border-color: transparent;
  background: #1b7d1b;
  /* animation: jelly-42 0.6s ease; */
}
.agree-wrap input[type="checkbox"]:checked ~ .cbx:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.agree-wrap .cntr {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
}
@-moz-keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@-o-keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes jelly-42 {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}

/* forgot password  */
.forgot {
  height: 100vh;
}

/* subscription payment form  */
.subscription-title {
  font-size: 52px;
  font-family: lustra-medium;
}

.payment-subscription {
  width: 85%;
  border-radius: 30px;
  margin: -70px auto 0px;
}

.subscription-paymentform {
  border: 1px solid #e2e2e2;
}
.subcriptionright-card {
  background: #f9f5f0;
}

.subscription-description {
  font-size: 1.1rem;
  font-family: gilroy-medium;
  line-height: 30px;
}
.action-view {
  font-size: 0.8rem;
}

.searchbar-input input:focus,
.searchbar-input input:focus-visible {
  border: 0 !important;
  outline: 0;
}
.searchbar-input div:nth-child(1) {
  width: 7%;
}
.searchbar-input button {
  font-size: 0.9rem;
  width: 30%;
  height: 42px;
}
.themebtn-shadow {
  box-shadow: 20px 18px 30px 0px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}
.themebutton-wrap {
  background: #e40309;
  background: #e40309;
  border: 0;
  padding: 12px 40px;
  color: #fff;
  border-radius: 16px;
}
.darkbtn {
  background: #000;
  color: #fff;
  border: 0;
}

/* dark theme change color  */
.darktheme .sidebar,
.darktheme .top-header,
.darktheme .mobile-sidebar,
.darktheme .darkmode {
  background-color: #1a1818 !important;
}

.darktheme .sidebar a,
.darktheme h4,
.darktheme h6,
.darktheme h5,
.darktheme label,
.darktheme .mobile-sidebar a {
  color: #fff !important;
}
.darktheme label {
  color: black !important;
}
.darktheme .reviewlist h5 {
  font-weight: 500 !important;
}
.darktheme .viewreview-conten,
.darktheme .view-review,
.darktheme .reviewlist-aftersubmit {
  background: #1a1818 !important;
}

.darktheme .darkbtn {
  background: #fff !important;
  color: #000 !important;
  font-weight: 500;
}

.darktheme .profile-section input,
.darktheme select {
  background: #5a5a5a;
  border: 0;
  color: #fff !important;
}

/* view review  */

.reviewlist h5 {
  font-size: 1.05rem;
  color: #000;
}

.grey-color {
  color: #686868;
  margin: 6px 0px 0px 26px !important;
}

.yes-field input {
  accent-color: #02a402;
  width: 20px;
  height: 20px;
}
.yes-field label {
  color: #000;
}

.yes-field input[type="checkbox"]:checked + label {
  color: #02a402 !important;
  font-weight: 800;
}

.no-field input {
  accent-color: #e40309;
  width: 20px;
  height: 20px;
}

.no-field input[type="checkbox"]:checked + label {
  color: #e40309 !important;
  font-weight: 800;
}

.viewreview-list {
  height: calc(100vh - 320px);
  overflow: auto;
  padding-bottom: 30px;
}

.viewreview-list::-webkit-scrollbar,
.aftesearch-list::-webkit-scrollbar {
  background: #fff;
  width: 5px;
}

.viewreview-list::-webkit-scrollbar-thumb,
.aftesearch-list::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 10px;
}

.accept-btn,
.action-view {
  background: #1b7d1b;
  color: #fff;
}
.reject-btn {
  background: #e40309;
}
button.modalbtn {
  padding: 9px 0px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-family: gilroy-medium;
  width: 44%;
}

button:focus,
button:focus-visible {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0;
}

.reviewlist .modal-content,
.delete-account {
  width: 370px;
}

.leavereview-btn button:hover {
  border: 0;
}
.backbutton {
  width: max-content;
  padding: 3px 10px;
  background: #000;
}
.showtabs {
  display: none !important;
}

.backbutton svg,
.darktheme .toggle {
  fill: #fff;
  color: #fff;
}
/* terms 05-02-2024 condition */
/* .terms-condition {
      margin-top: 6.5rem;
    } */
.darktheme .terms-header-section,
.darktheme .reviewlist .modal-content {
  background-color: #1a1818 !important;
}
.darktheme .terms-condition {
  background-color: #1a1818 !important;
}
.darktheme h3 {
  color: #fff !important;
}
.terms-condition h4,
.subscription-details h6 {
  font-family: lustra-medium;
}
.terms-condition ul li {
  list-style: none;
  font-size: 17px;
  margin-bottom: 0.4rem;
  text-decoration: none;
}
.darktheme .terms-condition ul li {
  color: white;
}
.darktheme .terms-condition p {
  color: white !important;
}
.terms-condition h4 {
  font-family: lustra-medium;
  margin-bottom: 1rem;
}
.terms-condition p {
  font-size: 17px;
}

.darktheme .form-label {
  color: #e1e1e1 !important;
}
.profile-section input,
.profile-section select {
  border: 0;
  background: #f2f2f2;
  padding: 0.6rem 1rem;
  height: 50px;
  color: #000;
}
.profile-section h5 {
  font-family: lustra-medium;
}
.darktheme hr {
  border-top: white solid !important;
}
.sidebar li.active {
  color: white;
  border-left: 4px solid #e40309;
  background: #ffeceb7a;
}
.sidebar li.active a {
  font-family: gilroy-medium;
  color: #e40309 !important;
}
.profile-section {
  background: #fff;
}
.darktheme .sidebar li.active a {
  color: #fff !important;
}
.payment-table-wrapper th {
  font-family: "lustra-medium";
  font-weight: 100;
  padding: 18px;
  color: #fff;
}
.payment-table-wrapper td {
  padding: 18px;
  border-bottom: 1px solid #ddd;
  font-family: gilroy-medium;
}
/* .payment-table-wrapper th:nth-child(1) {
    width: 50px;
  } */
/* .payment-table-wrapper th:nth-child(5) {
    width: 130px;
  } */
.darktheme tbody tr {
  background-color: #1a1818 !important;
  color: white !important;
}
.darktheme thead {
  background-color: white !important;
}
.darktheme thead th {
  background: #5a5a5a;
}
.view-card {
  border-left: 4px solid black;
}
.darktheme .grey-color {
  color: #e1e1e1 !important;
}
.darktheme .view-card:nth-child(1) {
  margin-top: 0 !important;
}
.darktheme .profile-section {
  background: #1a1818;
}
.darktheme .subscription-details {
  background: #c0c0c0 !important;
}
.darktheme .view-card {
  border-left: 4px solid #1b7d1b;
  background: #1a1818 !important;
}
.darktheme .viewreview-section .profile-section {
  padding: 1rem;
}
.darktheme .modal-body,
.darktheme .modal-header {
  background: #1a1818;
}

.darktheme .modal-body p,
.darktheme .view-card p,
.darktheme .view-reviewlist p,
.darktheme .lighttext {
  color: #fff;
}

.darktheme .modal-header .btn-close,
.darktheme .mobicon,
.darktheme .lightfilter,
.darktheme .btn-close {
  filter: invert(1) brightness(2);
}
/* =====07-02-2024====== */
/* .chat-notification {
      right: 1%;
      width: 450px;
    } */
.chatpopup {
  display: none;
}
.mobilepopup {
  display: none !important;
  z-index: 999;
}
.mobicon {
  display: none;
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  z-index: 999;
  background: white;
  padding-top: 20px;
  /* transition: 1.5s; */
  width: 260px;
}
.mobile-sidebar ul {
  list-style-type: none;
  padding: 0;
}
.mobile-sidebar li {
  padding: 10px;
  margin: 16px 0px;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.mobile-sidebar {
  height: 100vh;
}
.darktheme .natification,
.darktheme .view-reviewlist .nav-tabs,
.darktheme .view-reviewlist button.active,
.darktheme .searchbar-input,
.darktheme .searchbar-input input,
.darktheme .payment-form {
  background: #1a1818 !important;
  border: 0;
}
.darktheme .leavereview-btn button.active {
  background: #fff !important;
}

input[type="date"] {
  min-width: 95%;
  color: #000;
}
.darktheme .chat-notification {
  background: #000 !important;
}
.darktheme .natification p,
.darktheme .searchbar-input input {
  color: white !important;
}
.form-select:focus {
  border: none !important;
  box-shadow: none;
}
/* 08-02-2024 */
.progress {
  height: 15px;
  width: 100%;
  background-color: #ffeceb;
}

.bar {
  height: 100%;
  background-color: #ff0303;
  width: 33%;
}

.user-list h6,
.darktheme .subscription-details p,
.darktheme .subscription-details h6 {
  color: #000 !important;
}
.user-list .grey-color {
  color: #686868 !important;
}
.darktheme .sidebar li.active {
  background: #000;
}

.darktheme .viewreview-section .profile-section {
  background: #000 !important;
}

.payment-table-wrapper {
  min-width: 800px;
  overflow: auto;
}

.borderbottom {
  border-bottom: 1.5px solid #ededed;
  padding: 20px 0px;
}

.borderbottom .grey-color {
  margin: 0;
}

.nav-link:hover {
  border: 0;
}

/* admin subscription card  */
.subscription-card {
  background: #000;
}

.subscription-card h5,
.subscription-card h3 {
  color: #ffff;
}

.subscription-card button {
  padding: 10px 30px;
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  border: 0;
}
.darktheme-icon {
  display: none;
}
.darktheme .whitetheme-icon {
  display: none;
}
.darktheme .darktheme-icon {
  display: block;
}

.darktheme .sidebar li.active .darktheme-icon {
  display: none;
}

input::placeholder,
select {
  color: #000;
  font-size: 0.9rem;
}

.darktheme .view-reviewlist svg,
.darktheme .backbutton svg {
  fill: #fff;
}

.darktheme input::placeholder {
  color: #fff;
}

.modal.show .modal-dialog {
  display: flex;
  margin: auto;
  justify-content: center;
}

.eyeicon {
  position: absolute;
  bottom: 12px;
  right: 10px;
}
/* ================== */
.gmap {
  width: 100%;
  height: calc(100vh - 92px);
  /* pointer-events: none; */
}
.searchbar-input {
  background: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 430px;
}
.searchbar-input input {
  border: 0;
  height: 50px;
  width: 68%;
  font-size: 0.9rem;
}
.view-reviewlist {
  position: absolute;
  top: 85px;
  right: 20px;
  width: 430px;
}

.view-reviewlist button {
  font-family: gilroy-medium;
  font-size: 1rem;
  color: #000;
}

.view-review-date {
  color: #686868;
  font-size: 0.8rem;
}
.view-reviewlist h4 {
  font-family: gilroy-bold;
}

.view-reviewlist p {
  font-family: gilroy-medium;
  font-size: 1rem;
}

.leavereview-btn button {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.8rem;
  background: #e40309;
}

.leavereview-date select {
  width: 100px;
  background: #000 !important;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
}
option:hover {
  background-color: #fff !important;
}

.leavereview-modal {
  width: 340px;
}

.view-reviewlist {
  background: #fff;
}
.checkbox-wrap label {
  margin-bottom: 0 !important;
}

.nav-tabs {
  border-radius: 0px 0px 20px 20px;
}

.view-reviewlist .nav-tabs {
  background: #fff;
}
.donecheckbox {
  width: 14px;
  height: 14px;
}
option:hover {
  background-color: #fff !important;
}

.leavereview-modal {
  width: 340px;
}
.reviewlist-aftersubmit .user-list {
  background: #f5f5f5;
}

.reviewlist-aftersubmit .user-list button {
  width: 150px;
  height: 34px;
  border-radius: 10px;
  font-family: gilroy-medium;
  background: #000;
  color: #fff;
}

.reviewlist-aftersubmit .user-list button:nth-child(2) {
  border: 2px solid #000;
  background: #fff;
  color: #000;
}
.reviewlist-aftersubmit {
  overflow: auto;
}
.view-review,
.reviewlist-aftersubmit {
  background: #fff;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 280px;
  margin: auto;
  border-radius: 40px 40px 0px 0px;
  height: calc(100vh - 170px);
}
.terms-header-section {
  background-image: url("../../assets/Images/terms-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 160px;
  background-position: bottom;
}

/* header section  */
.fit-to-content {
  margin-left: 0 !important;
}
.hidebar-menu {
  width: 0px !important;
  margin-left: -100px !important;
}

.hideshow,
.viewhideshow {
  display: none;
}

.aftesearch-list {
  max-height: 360px;
  overflow: auto;
}
.error-text {
  position: absolute;
  width: 100%;
  text-align: end;
  pointer-events: none;
  font-size: 13px;
}
.error-message {
  font-size: 13px;
}
.error-text li {
  font-size: 13px;
  list-style: none;
}

.pointer-none {
  pointer-events: none !important;
}
/* SweetAlert Styles */

.colored-toast.swal2-icon-success {
  background-color: #1b7d1b !important; /*a5dc86 */
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
  font-size: 15px !important;
  font-family: gilroy-thin !important;
  letter-spacing: 0.5px !important;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: none !important;
}

/* Scanner  */
h1.scan-revolution {
  font-size: 26px;
  /* padding: 26px; */
  font-weight: 600;
  text-align: center;
}
.scan-code.text-center h4 {
  color: #000;
  font-size: 20px;
}
button.scanlink {
  background: #e40309;
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  font-size: 16px;
}
.form-check-input:checked {
  background-color: #ffffff !important;
  border: 6px solid #e40309 !important;
}
.input-select-option input {
  border: 6px solid #f2f2f2 !important;
}
.darktheme .input-select-option input {
  background: #f2f2f2;
  border: 0;
  color: #fff !important;
}
.darktheme .scan-revolution {
  color: #fff !important;
}
/* landing page  */

.top-header-nav li {
  list-style: none;
}
.top-header-nav li a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
}
.minus-index {
  z-index: -1;
}

.first-section h1 {
  font-size: 72px;
  line-height: 90px;
  font-weight: 900;
}
.main-section .viewwork-btn {
  padding: 14px 80px;
}
.object-fit {
  object-fit: contain;
}
.second-section,
.third-section {
  margin-top: 150px;
}
.second-section .vertical-line {
  height: 1px;
  width: 85%;
  background: #fff;
}
.second-section h1 {
  font-size: 3rem;
  line-height: 64px;
}
.second-section .viewwork-btn {
  width: 200px;
}

.working-left-section {
  margin-top: 450px;
}
.working-right-section {
  margin-top: -80px;
}
.work-content-section {
  width: 86%;
  position: relative;
}
.work-detail-wrap {
  background: #ff0303;
  padding: 10px 50px;
  border-radius: 10px 0px 0px 10px;
  position: absolute;
  right: 0;
  bottom: 30px;
  color: #000;
}
.object {
  object-fit: cover;
}

.third-section h1 {
  font-size: 5rem !important;
  font-weight: 900;
}
.work-bg-text {
  font-size: 10rem;
  font-weight: 900;
  color: #808080;
  position: absolute;
  inset: 0 0 0 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: lustra-bold;
}
/* 4th section */
.fourth-section {
  background-image: url(../../assets/Images/support-bg.png);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.fourth-section h1 {
  font-size: 2.7rem !important;
  font-weight: bolder;
  color: #ff0303;
  padding-top: 6rem;
}
.suport-card {
  display: flex;
  flex-direction: column;
  width: 279px;
  align-items: flex-start;
  gap: 1rem;
  border: 2px solid black;
  justify-content: flex-start;
  border-radius: 12px;
  padding: 12px;
}
#support-section {
  display: flex;
  justify-content: center;
}
.suport-card h1 {
  margin-top: -3rem;
  font-size: 4rem !important;
  color: #e5e5e5;
  /* text-align: end !important; */
  font-weight: 900;
  padding-top: 0 !important;
}
.testimonials h1 {
  font-size: 3.5rem !important;
  font-weight: 900;
}
.testimonials {
  padding: 9rem 3rem;
}
/* ============== */
.expert-team {
  background-image: url(../../assets/Images/experts-team-bg.png);
  height: 100%;
  width: 100%;
  padding: 9rem 0 5rem 0;
  background-repeat: no-repeat;
  background-size: cover;
}
/* ================ */
.contact-section {
  background-image: url(../../assets/Images/contact-bg.png);
  height: 100%;
  width: 100%;
  padding: 0 0 5rem 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-form {
  padding: 3rem 6rem;
}
/* input,
  textarea {
    padding: 12px;
  } */
input:focus-visible,
textarea:focus-visible {
  outline: none;
  border: 0;
}
.footer {
  margin: 5rem 0;
}
a {
  text-decoration: none !important;
}
.select-input {
  width: 7px !important;
  height: 7px !important;
  padding: 4px !important;
}
/* ========coming soon */
.comingsoon-page {
  background: url(../Images/login-rightbg.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  color: #fff;
}
.timeContainer .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.timeContainer .wrapper div {
  color: #000;
  gap: 0.4rem;
  width: 120px;
  justify-content: center;
  height: 120px;
  display: flex;
  background: white;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
}
p.comingsoon-description {
  font-size: 1.6rem;
}
.comingsoon-page h4 {
  font-size: 2.6rem;
  color: black;
}
.comingsoon-heading {
  font-size: 3rem;
  font-weight: 600;
}
.comingsoon-heading span {
  color: #ff0303;
}
.trial-bgimage {
  background: url(../Images/trial-days.png) !important;
  width: 100% !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.darktheme .trial-bgimage h5 {
  color: #000 !important;
}
.darktheme .trial-bgimage p {
  color: #000 !important;
}
.darktheme select {
  background: #5a5a5a !important;
  border: 0;
  color: #fff !important;
}
.darktheme .ElementsApp .InputElement.is-invalid {
  color: white !important;
}
.accordion {
  display: flex;
  flex-direction: column;
  /* max-width: 991px; */
  /* min-width: 320px; */
  /* margin: 25px auto;
    padding: 0 50px; */
}

.accordion h1 {
  font-size: 32px;
  text-align: center;
}

.accordion-item {
  margin-top: 16px;
  border: 1px solid #fcfcfc;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.accordion-item .accordion-item-title {
  position: relative;
  margin: 0;
  display: flex;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 14px 20px;
  box-sizing: border-box;
  align-items: center;
}

.accordion-item .accordion-item-desc {
  display: none;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  color: #444;
  border-top: 1px dashed #ddd;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}

.accordion-item input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
  display: block;
}

.accordion-item input[type="checkbox"]:checked ~ .accordion-item-title .icon:after {
  content: "-";
  font-size: 20px;
}

.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
  content: "+";
  font-size: 20px;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item .icon {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .accordion {
    padding: 0 16px;
  }

  .accordion h1 {
    font-size: 22px;
  }
}

.darktheme .accordion-item {
  background-color: #000000 !important;
}
.darktheme .accordion-item label {
  color: rgb(255, 255, 255) !important;
}
.darktheme .accordion-item {
  background-color: #000000 !important;
}

.darktheme .accordion p,
h1 {
  color: white !important;
}

.darktheme .accordion-item-desc {
  color: white !important;
}
.login-card {
  background: #f9f5f0;
  border-radius: 12px;
  color: black;
  padding: 12px;
}
.darktheme .viewreview-list label {
  color: white !important;
}
