@media only screen and (max-width: 576px) {
  p {
    font-size: 15px !important;
  }
}
:root {
  --hoverColor: #f7edfa;
}

.tooltip {
  width: 200px;
}
/* Title */
.sections-title {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.sections-title.white {
  color: #fff;
}
.sections-title.center {
  justify-content: center;
}
.sections-t-text {
  display: flex;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 52px;
}
.sections-t-sub {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.sections-t-sub i {
  width: 20px;
  height: 20px;
  display: flex;
}
.home--contact-wrapper:hover .sections-t-sub i {
  animation: myAnimhellow 2s linear 0s infinite normal both;
}
.main_box_textarea {
  border-radius: 8px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'urbanist', sans-serif;
  border: 1px solid var(--borderColor);
  font-size: 1rem;
  position: relative;
  padding: 8px;
  width: 100%;
  background-color: #fff;
  resize: none;
}
@keyframes myAnimhellow {
  0%,
  100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }

  15% {
    transform: translateX(0) rotate(-40deg);
  }

  30% {
    transform: translateX(0) rotate(40deg);
  }

  45% {
    transform: translateX(0) rotate(-20deg);
  }

  60% {
    transform: translateX(0) rotate(10deg);
  }

  75% {
    transform: translateX(0) rotate(-20deg);
  }
}
.sections-t-sub span {
  margin-left: 8px;
}
@media only screen and (max-width: 1200px) {
  .sections-t-text {
    font-size: 46px;
    line-height: 48px;
  }
  .sections-t-sub {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 14px;
  }
}
@media only screen and (max-width: 992px) {
  .sections-t-text {
    font-size: 40px;
    line-height: 44px;
  }
  .sections-t-sub {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .sections-t-text {
    font-size: 36px;
    line-height: 40px;
  }
  .sections-t-sub {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 576px) {
  .sections-title {
    margin-bottom: 24px;
  }
}

/* modal */
.modal {
  position: absolute;
  z-index: 1000; /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
}
.modal.is-visible {
  visibility: visible;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 20, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-wrapper {
  position: absolute;
  z-index: 999;
  top: 6em;
  left: calc(50% - 200px);
  background-color: #fff;
  border-radius: 24px;
  padding: 24px;
  width: 400px;
  box-shadow: var(--boxShadow);
}
.modal-header .main_box_title {
  padding-right: 24px;
}
.modal-transition {
  transition: var(--transition);
  display: none;
}
.modal.is-visible .modal-transition {
  animation: modalfadeIn 0.3s;
  display: flex;
}

body.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
}
.modal.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.center .modal-wrapper {
  position: relative;
  left: initial;
  top: initial;
}
.modal-login .modal-wrapper {
  padding: 40px 40px;
  width: 460px;
}
.modal-standard .modal-wrapper {
  padding: 40px 40px;
  width: 460px;
  min-height: auto;
}

.modal-login-wrapper {
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  align-content: flex-start;
  position: relative;
}
.modal-login-wrapper.transition {
  transition: var(--transition);
  visibility: hidden;
  overflow: hidden;
  display: none;
}
#login.modal-login-wrapper.is-visible.transition {
  animation: loginfadeIn 0.3s;
}
#register.modal-login-wrapper.is-visible.transition {
  animation: registerfadeIn 0.3s;
}
.modal-login-wrapper.is-visible.transition {
  visibility: visible;
  display: flex;
}

.modal-standard .modal-body {
  padding: 12px 0;
}
.modal-standard .modal-body-text {
  font-size: 14px;
  line-height: 24px;
  color: var(--grayColor);
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 12px;
}

/* standard */
.modal-standard .modal-wrapper {
  padding: 40px 40px;
  width: 460px;
  min-height: auto;
}
.modal-standard .modal-header {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid var(--borderColor);
}
.modal-standard .modal-header-title {
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: left;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.modal-standard .modal-footer {
  display: flex;
  width: 100%;
  padding-top: 12px;
  justify-content: flex-end;
}
.modal-standard .modal-footer .btn,
.modal-standard .modal-footer a,
.modal-standard .modal-footer button {
  margin-left: 2px;
  margin-right: 2px;
}
.modal-standard button,
.modal-standard a,
.modal-standard i svg {
  transition: none !important;
}

@keyframes loginfadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes registerfadeIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-standard .modal-header {
  display: flex;
  justify-content: flex-start;
}
.modal-standard .modal-header-title {
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  text-align: left;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.modal-standard .modal-body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--grayColor);
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
}

.modal-login .modal-header {
  display: flex;
  justify-content: center;
}
.modal-login .modal-header-title {
  text-transform: uppercase;
  display: block;
  width: 100%;
  font-weight: 900;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 16px;
}
.modal-login .modal-body-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--grayColor);
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 576px) {
  .modal-wrapper {
    width: calc(100% - 30px) !important;
    margin-left: 0;
    left: 0 !important;
    right: 0;
  }
  .modal-login .modal-wrapper {
    padding: 40px;
  }
}

/* Alert */
.inner-login-bc-alert {
  margin-bottom: 40px;
  display: flex;
  width: 100%;
  padding: 24px 16px;
  border-radius: 8px;
}
.inner-login-bc-alert.success {
  background-color: #f0fdf4;
  color: #286630;
}
.inner-login-bc-alert.danger {
  background-color: #fef2f2;
  color: #cd0007;
}
.inner-login-bc-alert.warning {
  background-color: #fefce8;
  color: #ae5f25;
}
.inner-login-bc-alert.info {
  background-color: #eff6ff;
  color: #3747e6;
}
.inner-login-bc-alert .inner-login-bc-alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-login-bc-alert.success .inner-login-bc-alert-icon {
  background-color: #05df72;
}
.inner-login-bc-alert.danger .inner-login-bc-alert-icon {
  background-color: #ff6467;
}
.inner-login-bc-alert.warning .inner-login-bc-alert-icon {
  background-color: #fdc700;
}
.inner-login-bc-alert.info .inner-login-bc-alert-icon {
  background-color: #50a2ff;
}
.inner-login-bc-alert-icon svg {
  width: 18px;
  height: 18px;
  display: flex;
}
.inner-login-bc-alert .inner-login-bc-alert-icon svg {
  fill: #fff;
}
.inner-login-bc-aler-text {
  display: inline-block;
  text-align: left;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 12px;
  padding-top: 2px;
}

/* login / signup */
.login-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.login-form-row {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.login-form-row.last {
  margin-top: 10px;
}
.login-form-row.login-button {
  margin-bottom: 24px;
}
.login-form-row:last-child {
  margin-bottom: 0;
}
.login-form-row.captch {
  display: flex;
  flex-wrap: nowrap;
  padding: 0 0 12px 0;
}
.login-form-row.captch div:first-child {
  width: 50%;
}
.login-form-row.captch div:last-child {
  width: 50%;
  display: flex;
  align-items: center;
  padding-left: 8px;
}
.login-form-row.center {
  justify-content: center;
}
.login-form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: 'urbanist', sans-serif;
  border: 1px solid var(--borderColor);
  outline: 0;
  background: #fff;
  color: var(--mainColor);
  font-size: 16px;
  border-radius: 8px;
}
.login-form-textarea {
  width: 100%;
  height: auto;
  padding: 16px;
  font-family: 'urbanist', sans-serif;
  border: 1px solid var(--borderColor);
  outline: 0;
  background: #fff;
  color: var(--mainColor);
  font-size: 16px;
  border-radius: 8px;
  resize: none;
}
.login-form-label {
  width: 100%;
  display: flex;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--grayColor);
}
.login-form-error {
  color: var(--dangerColor);
  margin-top: 4px;
  font-size: 14px;
}
.login-form-error.hidden {
  display: none;
}
.login-form-forgot {
  font-size: 16px;
  font-weight: 500;
  margin: 8px;
}
.login-form-btn {
  width: 100%;
}
.login-form--registerlink {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 16px;
  padding: 24px 0 16px;
}
.login-form--registerlink a {
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.login-form--registerlink i {
  width: 20px;
  display: flex;
  align-items: center;
  margin: auto 6px;
}
.login-form--registerlink i svg {
  display: flex;
  transition: var(--transition);
}
.login-form--registerlink a:hover i svg {
  fill: var(--secondaryColor);
  transition: var(--transition);
}
.login-form-row-checkboc-wrapper {
  display: flex;
  align-items: center;
  padding: 6px 0;
  width: 100%;
}
.login-form-row-checkboc-wrapper label {
  color: var(--mainColor);
  cursor: pointer;
  margin-left: 6px;
  margin-bottom: 0;
}
.login-form-counter-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.login-form-counter {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-right: 8px;
  color: var(--grayColor);
}

/* Social Signin */
.social-login {
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 12px 16px 12px 42px;
  border-radius: 8px;
  color: #757575;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 44px;
  background-color: white;
  border: 1px solid var(--borderColor);
}
.social-login:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.social-login:active {
}
.social-login:focus {
  outline: none;
}
.login-with-google-btn {
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=');

  background-repeat: no-repeat;
  background-position: 12px 11px;
}
.login-with-facebook-btn {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='%231877F2'%3E%3Cpath d='M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px 11px;
  background-size: 12px;
}
.login-with-microsoft-btn {
  background-image: url("data:image/svg+xml,%3Csvg version='1.2' baseProfile='tiny' id='MS-symbol' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 72 72' xml:space='preserve'%3E%3Crect fill='%23F25022' width='34.2' height='34.2'/%3E%3Crect x='37.8' fill='%237FBA00' width='34.2' height='34.2'/%3E%3Crect y='37.8' fill='%2300A4EF' width='34.2' height='34.2'/%3E%3Crect x='37.8' y='37.8' fill='%23FFB900' width='34.2' height='34.2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 12px 13px;
  background-size: 16px;
}
.login-with-apple-btn {
  background-image: url("data:image/svg+xml,%3Csvg fill='%23b3b3b3' xmlns='http://www.w3.org/2000/svg' viewBox='0 -3.552713678800501e-15 820 950'%3E%3Cpath d='M404.345 229.846c52.467 0 98.494-20.488 138.08-61.465s59.38-88.626 59.38-142.947c0-5.966-.472-14.444-1.414-25.434-6.912.942-12.096 1.727-15.552 2.355-48.383 6.908-90.954 30.615-127.713 71.12-36.758 40.506-55.137 83.838-55.137 129.996 0 5.337.785 14.13 2.356 26.375zM592.379 950c37.387 0 78.701-25.59 123.943-76.772S796.122 761.915 820 692.836c-88.912-45.844-133.368-111.626-133.368-197.348 0-71.591 35.973-132.82 107.92-183.688-49.954-62.486-115.931-93.729-197.931-93.729-34.56 0-66.134 5.181-94.724 15.543l-17.908 6.594-24.035 9.42c-15.709 5.966-30.004 8.95-42.885 8.95-10.054 0-23.25-3.455-39.586-10.363l-18.38-7.536-17.436-7.065c-25.449-10.676-52.782-16.014-82-16.014-78.23 0-141.065 26.376-188.506 79.128C23.72 349.479 0 419.03 0 505.379c0 121.517 38.015 233.772 114.046 336.763C166.828 914.047 215.054 950 258.724 950c18.537 0 36.916-3.611 55.138-10.833l23.092-9.42 18.38-6.594c25.762-9.106 49.482-13.659 71.16-13.659 22.935 0 49.326 5.81 79.173 17.427l14.609 5.652C550.75 944.191 574.786 950 592.379 950z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 12px 10px;
  background-size: 16px;
}

/* main */
.wsmenu-list li a.active {
  color: var(--primaryColor);
}
.mbc_main_button span {
  color: #fff;
}

/* navbar */
.home--navbar {
  position: absolute;
  background-color: transparent;
  box-shadow: none;
  transition: none;
  transition: var(--transition);
}
.navbar-sticky.stick {
  position: fixed;
  top: -74px;
  transition: var(--transition);
  transform: translateY(74px);
  z-index: 10;
}
.home--navbar .main_navbar_wrapper {
  height: auto;
  padding: 9px 20px;
  box-shadow: var(--boxShadow);
  border-radius: 8px;
  background-color: #fff;
  margin-top: 40px;
}

/* second footer */
.second--footer {
  background-color: var(--mainColor);
  color: #fff;
  width: initial;
  position: initial;
}
.second--footer-wrapper {
  display: flex;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.second--footer.home-footer .second--footer-wrapper {
  display: flex;
  padding: 300px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.second--footer-w-content {
  display: flex;
  width: 50%;
  padding-right: 80px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.second--footer-wc-logo {
  width: 160px;
  margin-bottom: 16px;
}
.second--footer-wc-logo img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
.second--footer-wc-text {
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: var(--grayColor);
}
.second--footer-w-links {
  display: flex;
  width: 25%;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
}
.second--footer-wl-title {
  display: flex;
  margin-bottom: 16px;
}
.second--footer-wl-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
}
.second--footer-wl-list li {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 8px;
}
.second--footer-wl-list li:last-child {
  margin-bottom: 0;
}
.second--footer-wl-list li a {
  color: var(--grayColor);
}
.second--footer-wl-list li a:hover {
  color: #fff;
}
.second--footer-copyright {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px 0;
  justify-content: space-between;
}
.second--footer-c-text {
  color: var(--grayColor);
}
.second--footer-c-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.second--footer-c-social a {
  margin-right: 16px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.second--footer-c-social a:last-child {
  margin-right: 0;
}
.second--footer-c-social a i {
  width: 20px;
  height: 20px;
}
.second--footer-c-social a i path {
  fill: var(--grayColor);
  transition: var(--transition);
}
.second--footer-c-social a:hover i path {
  fill: #fff;
  transition: var(--transition);
}

@media only screen and (max-width: 992px) {
  .second--footer-wrapper {
    display: flex;
  }
  .second--footer-w-content {
    padding-right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .second--footer-wrapper {
    flex-wrap: wrap;
  }
  .second--footer-w-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .second--footer-w-links {
    width: 100%;
    margin-bottom: 40px;
  }
  .second--footer-w-links:last-child {
    margin-bottom: 0;
  }
}

/* inner  hero */
.inner--hero {
  background-color: #e7ecf7;
}
.inner--hero-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 150px 0 0;
}
.inner--hero-w-breadcrumb {
  padding: 0;
  margin-bottom: 24px;
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
}
.inner--hero-wb-item {
  display: inline-block;
  margin: 0;
}
.inner--hero-wb-item a {
  padding: 0 16px 0 0px;
  position: relative;
  font-size: 16px;
}
.inner--hero-wb-item a:after {
  position: absolute;
  right: -2px;
  margin: 0px 4px;
  top: 0;
  display: block;
  content: '/';
  width: 8px;
  height: 12px;
}
.inner--hero-title {
  width: 100%;
  display: flex;
  align-content: center;
  font-weight: 900;
  font-size: 42px;
  line-height: normal;
  color: var(--mainColor);
  margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
  .inner--hero-wrapper {
    padding: 120px 0 0;
  }
}

/* inner */
.main--inner {
  display: block;
  width: 100%;
  padding: 60px 0 120px;
  overflow: hidden;
  position: relative;
}
.inner--bg {
  position: absolute;
  width: 100%;
  height: 300px;
  top: 0;
  z-index: 0;
  overflow: hidden;
  background: rgb(231, 236, 247);
  background: linear-gradient(
    0deg,
    rgba(231, 236, 247, 0) 0%,
    rgba(231, 236, 247, 1) 100%
  );
}
.main--inner-wrapper {
  display: block;
  width: 100%;
}
.inner-content-wrapper {
  display: block;
  width: 100%;
}
.inner-content-wrapper h2 {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 28px;
  line-height: 34px;
}
.inner-content-wrapper h3 {
  display: block;
  width: 100%;
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 34px;
  line-height: 40px;
}

.inner-content-wrapper p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: var(--grayColor);
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .main--inner {
    padding: 30px 0 80px;
  }
}
@media only screen and (max-width: 767px) {
  .main--inner {
    padding: 30px 0 60px;
  }
  .inner-content-wrapper h3 {
    font-size: 26px;
    line-height: 32px;
  }
  .inner-content-wrapper h2 {
    font-size: 22px;
    line-height: 28px;
  }
}

/* FAQ */
.inner--faq {
  background-color: #fff;
  padding: 80px 0 120px;
}
.inner--faq-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.faq--list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.faq--item {
  position: relative;
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--borderColor);
}
.faq--item:last-child {
  border-bottom: 0;
}
.faq--item-title {
  display: block;
  font-weight: 400;
  transition: var(--transition);
  font-size: 20px;
  line-height: 26px;
  padding: 20px 0;
  cursor: pointer;
  position: relative;
}
.faq--item-title:hover {
  color: var(--primaryColor);
}
.faq--item-content {
  display: none;
  padding-bottom: 40px;
}
.faq--item-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grayColor);
}
.faq--item-title:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M4.251 181.1C7.392 177.7 11.69 175.1 16 175.1c3.891 0 7.781 1.406 10.86 4.25l197.1 181.1l197.1-181.1c6.5-6 16.64-5.625 22.61 .9062c6 6.5 5.594 16.59-.8906 22.59l-208 192c-6.156 5.688-15.56 5.688-21.72 0l-208-192C-1.343 197.7-1.749 187.6 4.251 181.1z'/%3E%3C/svg%3E");
  height: 14px;
  width: 14px;
  top: calc(50% - 7px);
  right: 0px;
  position: absolute;
  transition: var(--transition);
}
.faq--item-title.active:after {
  transform: rotate(-180deg);
}
.accordion-container > h2 {
  text-align: center;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 767px) {
  .inner--faq {
    background-color: #fff;
    padding: 80px 0 80px;
  }
  .faq--item-title {
    font-size: 18px;
    line-height: 24px;
    padding: 16px 0;
  }
}
@media only screen and (max-width: 576px) {
  .inner--faq {
    padding: 60px 0;
  }
  .faq--item-title {
    font-size: 17px;
    line-height: 20px;
  }
  .faq--item-content {
    padding-bottom: 30px;
  }
}
/* prcing table */
.home--pricing-w-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.home--pricing-wl-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--lightColor);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: background-color 0.4s cubic-bezier(0.65, 0, 0.076, 1);
}
.home--pricing-wl-item:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  top: 0;
  left: 0;
  border-radius: 24px;
}
.home--pricing-wl-item:hover:before {
  box-shadow: var(--boxShadow);
  transition: var(--transition);
}
/* .home--pricing-wl-item:hover {
  background-color: var(--hoverColor);
  transition: var(--transition);
} */
.home--pricing-wl-item.selected {
  margin: -30px 0;
}
.home--pricing-wli-head {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid var(--borderColor);
  margin-bottom: 30px;
  z-index: 1;
  transition: var(--transition);
}
.home--pricing-wl-item:hover .home--pricing-wli-head {
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.4); */
  transition: var(--transition);
}
.home--pricing-wlih-title {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  transition: var(--transition);
}
.home--pricing-wl-item:hover .home--pricing-wlih-title {
  /* color: #fff; */
  transition: var(--transition);
}
.home--pricing-wlih-price {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 16px;
  transition: var(--transition);
}
.home--pricing-wl-item:hover .home--pricing-wlih-price {
  /* color: #fff; */
  transition: var(--transition);
}
.home--pricing-wlihp-num {
  font-size: 64px;
  letter-spacing: -1px;
  font-weight: 900;
}
.home--pricing-wlihp-curr {
  font-size: 24px;
  font-weight: 900;
}
.home--pricing-wlihp-cond {
  font-size: 24px;
  font-weight: 900;
}
.home--pricing-wlih-sub {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
}
.home--pricing-wl-item:hover .home--pricing-wlih-sub {
  /* color: #fff; */
  transition: var(--transition);
}
.home--pricing-wli-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.home--pricing-wli-list li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  position: relative;
  color: #999;
  transition: var(--transition);
}
.home--pricing-wl-item:hover .home--pricing-wli-list li {
  /* color: #fff; */
  transition: var(--transition);
}
.home--pricing-wli-list li:last-child {
  margin-bottom: 0;
}
.home--pricing-wli-list li.active {
  color: var(--mainColor);
}
.home--pricing-wli-list li.active-noIcon {
  color: var(--mainColor);
}
.home--pricing-wli-list li.active:before {
  content: '';
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2321b531' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/%3E%3C/svg%3E");
  display: flex;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.home--pricing-wli-btn {
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
}
.home--pricing-wl-item:hover .home--pricing-wli-btn {
  /* color: #fff; */
  /* border: 1px solid var(--borderColor);
  background-color: transparent; */
  transition: var(--transition);
  animation: myAnimbtn 0.6s ease-in-out 0s 1;
}
@keyframes myAnimbtn {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 0;
    transform: translateY(-15px);
  }
  50% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.home--pricing-wl-item.selected .home--pricing-wli-label {
  position: absolute;
  right: 0;
  top: 0;
  width: 72px;
  height: 72px;
  background-color: var(--secondaryColor);
  display: none;
  justify-content: flex-end;
  padding-right: 12px;
  padding-top: 10px;
  border-radius: 0 24px 0 0;
  clip-path: polygon(0 0, 100% 0%, 100% 100%);
}
.home--pricing-wl-item.selected .home--pricing-wli-label {
  display: flex;
}
.home--pricing-wl-item.selected .home--pricing-wli-label i {
  width: 20px;
  height: 20px;
  display: flex;
}
.home--pricing-wl-item.selected .home--pricing-wli-label svg {
  display: flex;
}
.home--pricing-wl-item.selected .home--pricing-wli-label svg path {
  fill: #fff;
}
.pricing-dropdown {
}
.pricing-dropdown .dropdown-btn {
  background-color: #fff;
  color: var(--mainColor);
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 1rem;
  border: 1px solid var(--borderColor);
}
.pricing-dropdown .dropdown-btn-arrow-down {
}
.pricing-dropdown .dropdown-content {
  min-width: 100%;
}
.pricing-dropdown .dropdown-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
.pricing-dropdown .dropdown-content ul li {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.pricing-dropdown .mbc_table_main_list_name {
  color: var(--mainColor);
  font-size: 15px;
}

/* prcing switch */
.pricing-switch-price-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding-bottom: 20px;
  justify-content: center;
}
.pricing-toggle {
  gap: 6px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  position: relative;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.04);
}
.pricing-promotinal-wrapper {
  gap: 10px;
  left: -140px;
  display: flex;
  position: absolute;
  align-items: center;
}
.pricing-promotion-text {
  max-width: 85px;
  text-align: center;
  color: var(--grayColor);
}
.pricing-toggle .pricing-toggle-btn {
  color: var(--grayColor);
  font-weight: 500;
  box-shadow: none;
  line-height: 24px;
  padding: 8px 30px;
  border-radius: 6px;
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
}
.pricing-toggle .pricing-toggle-btn.active {
  background: #fff;
  color: var(--primaryColor);
  box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1),
    0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}
@media only screen and (max-width: 1200px) {
  .home--pricing-w-list {
    gap: 24px;
  }
  .home--pricing-wl-item {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 992px) {
  .home--pricing-w-list {
    gap: 0;
  }
  .home--pricing-wl-item {
    padding: 40px 24px 30px;
  }
  .home--pricing-wl-item:nth-child(1) {
    border-radius: 24px 0 0 24px;
  }
  .home--pricing-wl-item:nth-child(2) {
    box-shadow: var(--boxShadow);
    z-index: 1;
  }
  .home--pricing-wl-item:nth-child(3) {
    border-radius: 0 24px 24px 0;
  }
  .home--pricing-wlih-title {
    font-size: 19px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .home--pricing-wlihp-num {
    font-size: 56px;
  }
  .home--pricing-wlihp-cond {
    font-size: 20px;
  }
  .home--pricing-wli-head {
    margin-bottom: 24px;
  }
  .home--pricing-wlih-sub {
    margin-bottom: 24px;
  }
  .home--pricing-wli-list li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .home--pricing-w-list {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
  }
  .home--pricing-wl-item.selected {
    margin: 0;
  }
  .home--pricing-wl-item:nth-child(1) {
    border-radius: 16px;
  }
  .home--pricing-wl-item:nth-child(2) {
    box-shadow: none;
    z-index: initial;
  }
  .home--pricing-wl-item:nth-child(3) {
    border-radius: 16px;
  }
  .pricing-switch-price-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-bottom: 0;
    justify-content: center;
  }
  .pricing-promotinal-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 576px) {
  .home--pricing-w-list {
    gap: 16px;
  }
  .home--pricing-wl-item {
    padding: 30px 16px;
  }
  .home--pricing-wlihp-num {
    font-size: 52px;
  }
}

/* Dropdown Button */
.links_item_login-user {
  display: flex;
  align-items: center;
}
.links_item_login-user span.name {
  font-weight: 600;
  margin-left: 4px;
}
.lilu-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.dropdown-btn {
  display: flex;
  height: 36px;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  user-select: none;
}
.dropdown-btn-arrow-down {
  display: flex;
}
.dropdown-btn-arrow-down i {
  width: 10px;
  height: 10px;
  display: flex;
  margin-left: 6px;
}
.dropdown-btn-arrow-down i svg {
  width: 100%;
  display: flex;
  fill: var(--primarycolor);
}
.lilu-dropdown .open .dropdown-btn-arrow-down i {
  transform: rotate(-180deg);
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid var(--borderColor);
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.3s forwards;
  border-radius: 8px;
  margin-top: 5px;
}
.dropdown-content ul {
  list-style-type: none;
  margin: 0;
  padding: 16px;
}
.dropdown-content ul li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  font-size: 13.5px;
}
.dropdown-content ul li a.logout {
  color: var(--dangerColor);
  margin-top: 6px;
}
.show {
  display: block;
  animation: fadeInUp 0.3s forwards;
}
.hide {
  animation: fadeInDown 0.3s forwards;
}
@keyframes fadeInUp {
  from {
    transform: translate3d(0, -30px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}
