@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primary: #5227C9;
  --primary-active: #461db7;
  --primary-blue: #1E2F59;
  --primary-blue-active: #1E2F59;
  --green: #0BB783;
  --green-active: #0ba275;
  --green-secondary: #65DAA4;
  --secondary: #1D294F;
  --success: #65DAA4;
  --gradient-color: linear-gradient(90deg, #152C3E 0%, #0E202E 100.84%);
  --white: #ffffff;
  --black: #000000;
  --gray: #ECF1F4;
  --dark-gray: #777C84;
  --gray-200: #f5f5f5;
  --gray-300: #D9D9D9;
  --gray-400: #D9D9D9;
  --gray-400: #D9D9D9;
  --gray-500: #787e82;
  --light-success-new: rgba(11, 183, 131, .08);
  --light-success-new-dark: rgba(11, 183, 131, .1);
}

.social--button {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: rgba(237, 242, 245, 0.5);
  border: 1px solid #DFE6E9;
  display: inline-flex;
  align-items: center;
  grid-gap: 8px;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
.social--button img {
  max-width: 22px;
  max-height: 22px;
  min-height: 22px;
}
.social--button span {
  font-weight: 400;
  font-size: inherit;
  color: #000000;
}
.social--button:hover, .social--button:focus {
  border-color: var(--primary);
}
@media screen and (max-width: 1700px) {
  .social--button {
    font-size: inherit;
    padding: 7px 14px;
  }
  .social--button img {
    max-width: 18px;
  }
}
@media screen and (max-width: 676px) {
  .social--button {
    justify-content: center;
    padding: 7px;
    flex: 1;
  }
}

.btn {
  box-shadow: none !important;
  min-width: 113px;
  min-height: 44px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  grid-gap: 8px;
  justify-content: center;
}
.btn.btn-large {
  font-size: 16px;
  min-height: 60px;
  padding: 0px 40px;
  min-width: 160px;
}
@media screen and (max-width: 1680px) {
  .btn.btn-large {
    padding: 0 30px;
  }
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-active);
  color: #fff;
  border-color: var(--primary-active);
}

.btn-secondary {
  background: var(--secondary);
  color: #FFFFFF;
  border-color: var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-border-dark {
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn-border-dark:hover, .btn-border-dark:focus {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.btn-border-light {
  border-color: var(--gray-500);
  color: var(--gray-500);
}
.btn-border-light:hover, .btn-border-light:focus {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-border-primary {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-border-primary:hover, .btn-border-primary:focus {
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-hover-primary:hover, .btn-hover-primary:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-hover-secondary:hover, .btn-hover-secondary:focus {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.btn-primary:disabled, .btn-primary.disabled {
  background: #a7a9ad;
  border-color: #a7a9ad;
}

.btn[disabled] {
  background: #f5f5f5;
  border-color: #c7c7c7;
  color: #a8a8a8;
  user-select: none;
  pointer-events: none;
}

.invite-form .auth-input-form {
  background: rgba(237, 242, 245, 0.5);
  color: var(--black);
  border: 1px solid #DFE6E9;
  padding: 13px 24px;
  outline: none;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05) !important;
  border-radius: 6px;
}

.input-holder {
  position: relative;
  display: flex;
  flex-direction: column;
}

.auth-input {
  background: rgba(237, 242, 245, 0.5);
  color: var(--black);
  border: 1px solid #DFE6E9;
  padding: 13px 24px;
  outline: none; /* Frame 35943 */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}
.auth-input:focus {
  border-color: var(--secondary) !important;
}
.auth-input::placeholder {
  color: var(--primary-blue);
}

.wizard .col-12 .auth-input {
  max-width: 100%;
}

.error select,
.error input {
  border-color: var(--primary);
}
.error .error-message {
  color: var(--primary);
  font-size: 12px;
  margin: 3px 0 0;
}

.icon-right input {
  padding-right: 50px;
}
.icon-right .icon-holder {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1700px) {
  .icon-right .icon-holder {
    top: 24px;
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 2px;
  }
  .icon-right .icon-holder img {
    width: 16px;
  }
}

.icon-holder {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 5px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.icon-holder:hover {
  background: var(--gray-200);
  color: var(--gray-500);
}
@media screen and (max-width: 676px) {
  .icon-holder {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
}

.switch {
  position: relative;
  line-height: 0;
}
.switch input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.switch span {
  position: relative;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  grid-gap: 8px;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: #787E82;
  cursor: pointer;
}
.switch span::before {
  content: "";
  min-width: 40px;
  background: #ECECEC;
  border: 0.5px solid #C9C9C9;
  border-radius: 36px;
  display: inline-block;
  min-height: 20px;
  transition: all 0.3s ease;
}
.switch span::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 1px 1px 2px -1px rgba(51, 51, 51, 0.3);
  position: absolute;
  left: 2px;
  transition: all 0.3s ease;
}
.switch input[type=checkbox]:checked ~ span::before {
  background-color: var(--primary);
}
.switch input[type=checkbox]:checked ~ span::after {
  left: 22px;
}
@media screen and (max-width: 1700px) {
  .switch span:before {
    min-width: 34px;
    min-height: 16px;
  }
  .switch span::after {
    width: 12px;
    height: 12px;
  }
  .switch input[type=checkbox]:checked ~ span::after {
    left: 20px;
  }
}

.custom-checkbox {
  position: relative;
  line-height: 0;
}
.custom-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.custom-checkbox span {
  position: relative;
  background: #EFEFEF;
  width: 17px;
  height: 17px;
  display: inline-block;
  border-radius: 2px;
}
.custom-checkbox span::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
  position: absolute;
  left: 24%;
  top: 45%;
  opacity: 0;
}
.custom-checkbox input[type=checkbox]:checked ~ span {
  background: var(--primary);
}
.custom-checkbox input[type=checkbox]:checked ~ span::after {
  opacity: 1;
}

.custom-radio {
  position: relative;
  line-height: 0;
}
.custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.custom-radio span {
  position: relative;
  background: #EFEFEF;
  width: 17px;
  height: 17px;
  display: inline-block;
  border-radius: 2px;
  border-radius: 100%;
  border: 1px solid #ccc;
}
.custom-radio span::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.custom-radio input[type=radio]:checked ~ span {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-radio input[type=radio]:checked ~ span::after {
  opacity: 1;
}

.terms-checkbox {
  cursor: pointer;
  box-shadow: none !important;
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 2px !important;
}
.terms-checkbox[type=checkbox]:checked {
  background-color: #7f47cd;
  border-color: #7f47cd;
}

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

.select2-selection {
  background: #fff;
  color: var(--gray-500);
  font-size: 14px;
  border: 1px solid var(--gray-300) !important;
  padding: 18.5px 24px;
  outline: none;
  height: auto !important;
  border-radius: 4px !important;
}
.select2-selection .select2-selection__rendered {
  line-height: 1.2 !important;
  padding: 0 !important;
}
.select2-selection .select2-selection__arrow {
  position: relative;
  height: auto !important;
  top: 21px !important;
}
.select2-selection .select2-selection__arrow::after {
  content: "";
  position: absolute;
  left: auto;
  right: -6px;
  top: 0;
  opacity: 0.6;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  width: 13px;
  height: 15px;
}
.select2-selection .select2-selection__arrow b {
  display: none;
}
@media screen and (min-width: 1700px) {
  .select2-selection {
    padding: 24px 24px;
    border-radius: 8px !important;
  }
}
@media screen and (max-width: 1700px) {
  .select2-selection {
    font-size: inherit;
    padding: 15px 24px;
  }
  .select2-selection .select2-selection__arrow {
    top: 16px !important;
  }
}

.advance-filter .select2-selection__arrow::after {
  right: 0;
}

.select2-dropdown {
  border: 1px solid var(--gray-300) !important;
  z-index: 1;
}

.select2-results__option {
  padding: 7px 17px !important;
  font-size: 14px;
}
@media screen and (max-width: 1700px) {
  .select2-results__option {
    font-size: inherit;
  }
}

.visa-category-dropdown {
  border-radius: 6px !important;
}
.visa-category-dropdown .select2-results__options {
  padding: 10px;
}

.select2-results__option.select2-results__option--selectable.select2-results__option--selected.select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--gray-200);
  color: var(--primary);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 15px;
  right: 15px;
}

.select2-container--default .select2-results__option--selected {
  background: transparent;
  font-weight: 500;
  color: var(--secondary);
}

label.error {
  display: inline-block;
  color: #F1416C;
  margin-top: 5px;
  font-size: 12px;
}
@media screen and (min-width: 1700px) {
  label.error {
    font-size: 14px;
  }
}

.error {
  color: #F1416C;
  font-size: 12px;
}

input.error {
  border: 1px solid #F1416C;
  color: #F1416C;
}

textarea.error {
  border: 1px solid #F1416C;
  color: #F1416C;
}

select.form-select.select2-hidden-accessible.error + label.error + span .form-select {
  border: 1px solid #F1416C;
}

select.form-select.error + label.error {
  position: absolute;
  top: 70px;
  left: 0;
}

@media screen and (max-width: 1700px) {
  label.error,
.error {
    font-size: 12px;
  }
}
.confirm-pass-modal .auth-input {
  padding: 12px 24px !important;
}
.confirm-pass-modal .icon-holder {
  top: 50% !important;
  bottom: 50% !important;
}

.individual--card {
  border: 1px solid #f5f5f5;
  min-width: 270px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 332px;
  min-width: 220px;
  max-width: 300px;
}
.individual--card .agent--rating {
  display: inline-flex;
  grid-gap: 2px;
  align-items: center;
}
.individual--card .link {
  transition: all 0.4s ease;
  min-width: 72px;
  font-size: 12px;
  justify-content: flex-end;
  grid-gap: 0;
}
.individual--card .link:hover {
  color: var(--primary) !important;
}
.individual--card .link:hover img {
  padding-left: 2px;
}
.individual--card .card-feature {
  position: relative;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  grid-gap: 5px;
  color: #fff;
  font-size: 11px;
  transition: all 0.3s ease;
}
.individual--card .card-feature::before {
  content: "";
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  transform: translateX(-15%);
}
.individual--card .card-feature img {
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.individual--card .card-feature span {
  opacity: 0;
  transition: all 0.4s ease;
  width: 0;
  transform: translateX(-50%);
}
.individual--card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 44, 62, 0) 37.22%, rgba(21, 44, 62, 0.6) 100%);
}
.individual--card .agent--image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.individual--card .agent--detail {
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  padding: 20px;
  color: #fff;
  width: 100%;
}
.individual--card .agent--detail .agent--name {
  font-weight: 500;
  font-weight: 500;
  font-size: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.individual--card .agent--detail .d-grid {
  transition: all 0.3s ease;
}
.individual--card .agent--detail .agent--desc {
  opacity: 0;
  color: #CBCBCB;
  font-size: 13px;
  margin: 1px 0 0;
  max-height: 0;
  transition: max-height 0.15s ease-out;
  overflow: hidden;
}
.individual--card .agent--detail > div {
  z-index: 1;
  position: relative;
}
.individual--card .agent--detail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  background: transparent;
  transition: all 0.3s ease;
}
.individual--card:hover .agent--detail .agent--desc {
  transition: all 0.3s ease;
}
.individual--card:hover .agent--detail .agent--desc {
  opacity: 1;
  max-height: 500px;
  transition: max-height 0.25s ease-in;
}
@keyframes move_animation {
  0% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(100);
  }
}
.individual--card:hover .agent--detail::after {
  background: var(--secondary);
  transform: translateY(0%);
}
.individual--card:hover .card-feature {
  transition: all 0.3s ease;
}
.individual--card:hover .card-feature::before {
  transform: translateX(0);
}
.individual--card:hover .card-feature span {
  opacity: 1;
  width: auto;
  transform: translateX(0%);
}
@media screen and (max-width: 1700px) {
  .individual--card {
    min-height: 280px;
  }
  .individual--card .agent--detail {
    padding: 15px;
  }
  .individual--card .agent--detail .agent--name {
    font-size: 16px;
  }
  .individual--card .agent--detail .agent--desc {
    font-size: 11px;
  }
}

.agencies-logo {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  min-width: 84px;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.agencies-logo img {
  max-width: 100%;
  object-fit: contain;
  max-height: 90%;
}
@media screen and (max-width: 1700px) {
  .agencies-logo {
    height: 60px;
    border-radius: 12px;
  }
}

.agencies--card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 362px;
  max-width: 300px;
  min-width: 220px;
  border: 1px solid #f5f5f5;
}
.agencies--card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 44, 62, 0) 37.22%, rgba(21, 44, 62, 0.6) 100%);
}
.agencies--card .agent--image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.agencies--card .card-feature {
  position: relative;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  grid-gap: 5px;
  color: #fff;
  font-size: 11px;
  transition: all 0.3s ease;
}
.agencies--card .card-feature::before {
  content: "";
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  transform: translateX(-15%);
}
.agencies--card .card-feature img {
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.agencies--card .card-feature span {
  opacity: 0;
  transition: all 0.4s ease;
  width: 0;
  transform: translateX(-50%);
}
.agencies--card .agencies-logo {
  min-width: 74px;
  height: 74px;
  width: 74px;
  border-radius: 10px;
}
.agencies--card .agent--rating {
  display: inline-flex;
  grid-gap: 2px;
  align-items: center;
  margin-bottom: 4px;
}
.agencies--card .link {
  transition: all 0.4s ease;
  font-size: 12px;
}
.agencies--card .link:hover {
  color: var(--primary) !important;
}
.agencies--card .link:hover img {
  padding-left: 2px;
}
.agencies--card .agencies-profile {
  transition: all 0.4s ease;
  background-color: var(--secondary);
  padding: 8px;
  color: #fff;
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  transform: translateY(100%);
}
.agencies--card .business-card--info {
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  grid-gap: 10px;
  padding: 20px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}
.agencies--card .business-card--info h3 {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  margin: 0 0 4px;
}
.agencies--card .business-card--info p {
  margin: 0;
  color: #fff;
  font-size: 12px;
  margin: 0 0 10px 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .agencies--card .business-card--info .d-grid {
    width: 100%;
  }
  .agencies--card .business-card--info .d-grid h3 {
    width: 90%;
  }
  .agencies--card .business-card--info .d-grid p svg {
    min-width: 15px;
  }
}
@media screen and (max-width: 1700px) {
  .agencies--card {
    min-height: 300px;
  }
  .agencies--card .business-card--info {
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    grid-gap: 10px;
    padding: 20px;
  }
  .agencies--card .business-card--info .agencies-logo {
    min-width: 60px;
    width: 60px;
    height: 60px;
    padding: 8px !important;
  }
  .agencies--card .business-card--info h3 {
    font-size: 16px;
  }
  .agencies--card .business-card--info p {
    font-size: 11px;
  }
}
@media screen and (max-width: 676px) {
  .agencies--card {
    max-width: 100%;
  }
}
@media screen and (max-width: 479px) {
  .agencies--card {
    min-height: 96px;
    background: #f8f8f8;
  }
  .agencies--card:hover .business-card--info {
    bottom: 0 !important;
  }
  .agencies--card::after {
    content: none !important;
  }
  .agencies--card .card-feature:before {
    transform: none !important;
    right: 0;
  }
  .agencies--card .business-card--info {
    padding: 8px;
    height: 100%;
    align-items: center;
    grid-gap: 65px;
    background: none;
  }
  .agencies--card .business-card--info .agencies-logo {
    min-width: 32px;
    width: 32px;
    height: 32px;
    padding: 3px !important;
    align-self: flex-end;
  }
  .agencies--card .business-card--info h3 {
    color: #152c3e;
  }
  .agencies--card .business-card--info p {
    color: #6c757d !important;
  }
  .agencies--card .agent--image {
    width: 86px;
    border-radius: 7px;
  }
  .agencies--card .card-feature {
    right: 0;
    left: auto;
  }
  .agencies--card .card-feature::before {
    right: 0;
    left: auto;
  }
  .agencies--card .card-feature img {
    left: 2px;
  }
  .agencies--card .agencies-profile {
    transform: translateY(0) !important;
    opacity: 0;
    height: 100%;
  }
  .agencies--card .agencies-profile .link {
    height: 100%;
    width: 100%;
  }
}

.agencies--card-v2 {
  position: relative;
  background: #fff;
  border-radius: 6px;
  min-height: 320px;
  border: 1px solid #DCDCDC;
  overflow: hidden;
}
.agencies--card-v2 .logo {
  min-height: calc(100% - 74px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.agencies--card-v2 .logo img {
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.agencies--card-v2 .agent--rating {
  display: inline-flex;
  grid-gap: 2px;
  align-items: center;
  margin-bottom: 4px;
}
.agencies--card-v2 .link {
  transition: all 0.4s ease;
  min-width: 70px;
  color: var(--secondary);
  cursor: pointer;
}
.agencies--card-v2 .link:hover {
  color: var(--primary) !important;
}
.agencies--card-v2 .link:hover img {
  padding-left: 2px;
}
.agencies--card-v2 .business-card--info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  display: flex;
  grid-gap: 10px;
  align-items: flex-end;
  justify-content: space-between;
}
.agencies--card-v2 .business-card--info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(241, 241, 241);
  height: 74px;
  border-top: 1px solid #DCDCDC;
  transition: all 0.3s ease;
}
.agencies--card-v2 .business-card--info > div {
  z-index: 1;
}
.agencies--card-v2 .business-card--info .d-grid {
  transform: translateY(65%);
  transition: all 0.3s ease;
}
.agencies--card-v2 .business-card--info .d-grid p {
  opacity: 0;
  transition: all 0.3s ease;
  visibility: hidden;
}
.agencies--card-v2 h3 {
  font-weight: 500;
  margin: 0 0 3px;
  font-size: 22px;
  color: var(--secondary);
}
.agencies--card-v2 p {
  font-size: 12px;
  margin: 5px 0 0;
}
@media screen and (max-width: 1700px) {
  .agencies--card-v2 {
    min-height: 280px;
  }
  .agencies--card-v2 h3 {
    font-size: 16px;
  }
}
.agencies--card-v2:hover .business-card--info::after {
  height: 100%;
  background: var(--secondary);
}
.agencies--card-v2:hover .business-card--info * {
  color: #fff;
}
.agencies--card-v2:hover .business-card--info .d-grid {
  transform: translateY(0);
}
.agencies--card-v2:hover .business-card--info .d-grid p {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 676px) {
  .agencies--card:hover .card-feature {
    transition: all 0.3s ease;
  }
  .agencies--card:hover .card-feature::before {
    transform: translateX(0);
  }
  .agencies--card:hover .card-feature span {
    opacity: 1;
    width: auto;
    transform: translateX(0%);
  }
}
.agencies--card:hover .business-card--info {
  bottom: 30px;
}
.agencies--card:hover .agencies-profile {
  transform: translateY(0);
}

@media screen and (max-width: 480px) {
  .shimmer-loader .col-md-3.col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .shimmer-loader .shimmer-card {
    max-width: 100%;
  }
}

header {
  position: sticky;
  z-index: 999;
  top: 0;
  background: #fff;
  box-shadow: 0px 7px 67px rgba(0, 0, 0, 0.08);
}

.top-header {
  position: relative;
  background: var(--secondary);
  padding: 8px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.top-header .top-header-line {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 40%;
}
.top-header p {
  font-size: 14px;
  font-weight: 400;
  font-weight: 500;
  margin: 0;
  color: var(--secondary);
}
.top-header .btn-secondary {
  position: relative;
  font-size: 13px;
  line-height: 24px;
  padding: 5px 16px;
  background: var(--primary) !important;
  border: 0;
  color: #fff;
  min-height: auto;
}
.top-header .btn-secondary::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transition: all 0.3s ease;
}
.top-header .btn-secondary:hover::after {
  width: 100%;
}
.top-header .list-unstyled a:hover img {
  filter: brightness(100);
}
.top-header a:hover {
  color: #fff;
}
@media screen and (max-width: 1700px) {
  .top-header {
    padding: 5px 0;
    min-height: 40px;
  }
  .top-header .btn {
    white-space: nowrap;
    line-height: 1.6;
  }
  .top-header .btn-secondary,
.top-header p {
    font-size: 11px;
  }
}
@media screen and (max-width: 500px) {
  .top-header .btn {
    padding: 5px 10px;
    min-width: auto;
  }
  .top-header .btn span {
    display: none;
  }
}

.migration-header--alert {
  padding: 5px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.migration-header--alert a {
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 576px) {
  .migration-header--alert {
    padding: 12px 0;
  }
}

.header-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  min-height: 70px;
}
.header-holder .logo img {
  height: 44px;
}
@media screen and (min-width: 1000px) {
  .header-holder > div {
    min-width: 240px;
  }
  .header-holder .logo {
    min-width: 170px;
  }
}
@media screen and (max-width: 1000px) {
  .header-holder .navigation.me-4 {
    margin-right: 0 !important;
  }
}
.header-holder .inbox-icon img {
  width: 30px;
}
.header-holder .inbox-icon:hover img {
  opacity: 0.8;
}
.header-holder .navigation {
  margin-right: 27px;
}
.header-holder ul:not(.dropdown-menu) {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  grid-gap: 25px;
}
.header-holder ul a {
  position: relative;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 400;
  line-height: 44px;
  padding: 11px 0;
}
.header-holder .navigation ul a::before {
  background-color: var(--primary);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}
.header-holder ul a.active,
.header-holder ul a:hover {
  color: var(--primary);
}
.header-holder .navigation ul a.active::before,
.header-holder .navigation ul a:hover::before {
  opacity: 1;
}
.header-holder ul a .icon {
  display: none;
}
.header-holder .active a {
  font-weight: 500;
}
.header-holder .btn {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 24px;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1) !important;
  border-radius: 6px;
}
.header-holder .btn-primary {
  background: #f94e2e;
  border-color: #f94e2e !important;
  color: #fff !important;
  display: inline-flex !important;
}
.header-holder .btn-primary:hover {
  background: #d9351c;
  border-color: #d9351c;
}
.header-holder .dropdown-header {
  font-size: initial;
  font-weight: 500;
  color: #1D294F;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.header-holder .dropdown-menu {
  margin-top: 14px !important;
  box-shadow: 2px 6px 64px 40px rgba(0, 0, 0, 0.06) !important;
}
.header-holder .dropdown-menu a {
  display: flex;
  align-items: center;
  grid-gap: 12px;
}
.header-holder .dropdown-item {
  padding: 10px 20px;
}
.header-holder .nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -30px 0 -30px;
  padding: 15px 30px;
  border-bottom: 1px solid #566774;
}
.header-holder .icon-rounded {
  background: #f1f1f1;
}
@media screen and (max-width: 1100px) {
  .header-holder .navigation {
    background: var(--secondary) url("../media/images/footer-ill-1.svg") bottom left -10px no-repeat;
    background-size: 70%;
    display: block !important;
    padding: 0px 30px 30px 30px !important;
    position: fixed;
    left: 0;
    top: 0px;
    width: 360px;
    height: 100vh;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    transform: translateX(-100%);
    z-index: 1;
  }
  .header-holder .navigation ul.justify-content-lg-center {
    display: grid;
    justify-content: flex-start !important;
  }
  .header-holder .navigation ul a {
    color: #fff !important;
  }
  .header-holder .navigation ul a .icon {
    top: -1px;
    left: -20px;
  }
  .header-holder .cross-icon {
    transition: all 0.5s ease;
    display: none;
    transition: all 0.6s ease;
  }
  .header-holder .menu-icon.cursor-pointer.d-lg-none {
    display: block !important;
  }
  .header-holder .navigation .nav-head.d-lg-none {
    display: flex !important;
  }
}
@media screen and (max-width: 1700px) {
  .header-holder .logo img {
    max-width: 140px;
  }
  .header-holder .inbox-icon img {
    width: 22px;
  }
  .header-holder .dropdown-menu {
    margin-top: 27px !important;
  }
  .header-holder .btn {
    min-width: 100px;
    font-size: 14px;
  }
  .header-holder .btn,
.header-holder ul a {
    font-size: inherit;
  }
  .header-holder .icon-rounded {
    width: 38px;
    height: 38px;
  }
}
@media screen and (max-width: 991px) {
  .header-holder .logo img {
    max-width: 150px;
  }
  .header-holder .btn {
    min-height: 40px;
    font-size: inherit;
  }
  .header-holder ul:not(.dropdown-menu) {
    grid-gap: 5px;
  }
}
@media screen and (max-width: 600px) {
  .header-holder .navigation {
    width: 100%;
  }
  .header-holder .logo img {
    max-width: 115px;
  }
  .header-holder .dropdown-menu {
    margin-top: 15px !important;
  }
}
@media screen and (max-width: 390px) {
  .header-holder .btn {
    min-width: 80px;
  }
  .header-holder .logo img {
    max-width: 100px;
  }
  .header-holder .d-flex .btn {
    min-height: 40px !important;
  }
}

.open-menu {
  overflow: hidden;
}
.open-menu .header-holder .cross-icon {
  display: block;
  transform: rotate(180deg);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.open-menu .header-holder .navigation {
  transform: translateX(0);
}
.open-menu .navigation .justify-content-lg-center li:first-child {
  animation: slideUp 0.5s ease;
}
.open-menu .navigation .justify-content-lg-center li:nth-child(2) {
  animation: slideUp 0.7s ease;
}
.open-menu .navigation .justify-content-lg-center li:nth-child(3) {
  animation: slideUp 0.9s ease;
}
.open-menu .navigation .justify-content-lg-center li:nth-child(4) {
  animation: slideUp 1s ease;
}
.open-menu .navigation .justify-content-lg-center li:nth-child(5) {
  animation: slideUp 1s ease;
}
@keyframes slideUp {
  0% {
    transform: translateY(80px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.sticky-bar {
  position: sticky;
  top: 107px;
  z-index: 2;
}
@media screen and (max-width: 1700px) {
  .sticky-bar {
    top: 68px;
  }
}

.min-h-38px {
  min-height: 38px !important;
}

@media screen and (min-width: 1700px) {
  .min-h-xl-54 {
    min-height: 55px !important;
  }
}
.dropdown-menu-start::before {
  left: 10px !important;
  right: auto !important;
}

.inbox-icon {
  position: relative;
  text-decoration: none;
}

.count--icon {
  position: absolute;
  right: -3px;
  top: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  padding: 3px 5px 0;
  height: 14px;
  border-radius: 14px;
  background: var(--primary);
  font-size: 8px;
  line-height: 10px;
  color: #fff;
  text-decoration: none !important;
}
@media screen and (max-width: 1700px) {
  .count--icon {
    min-width: 11px;
    height: 11px;
    padding: 3px 3px 2px;
    font-size: 7px !important;
  }
}

.notification-dropdown .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  margin: 0 0 15px;
  color: var(--gray-500);
  font-weight: 400;
  margin: 0;
  border-bottom: 1px solid var(--gray-300);
}
.notification-dropdown .head .count--icon {
  position: relative;
  right: 0;
  top: 0;
  min-width: 20px;
  height: 20px;
  font-size: 12px;
}
.notification-dropdown .sub-head {
  border-bottom: 1px solid var(--gray-300);
  padding: 4px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 25px;
}
.notification-dropdown .sub-head span {
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  grid-gap: 4px;
  line-height: 1;
}
.notification-dropdown .sub-head span:hover {
  color: var(--primary);
}
@media screen and (max-width: 1700px) {
  .notification-dropdown .sub-head span {
    font-size: 12px;
  }
}
.notification-dropdown .dropdown-menu {
  min-width: 340px;
  max-width: 340px;
  left: 15px !important;
}
.notification-dropdown .dropdown-item {
  border-bottom: 1px dashed var(--gray-300);
}
.notification-dropdown a {
  white-space: normal !important;
  padding: 12px 20px;
}
.notification-dropdown h6 {
  font-weight: 500;
  font-size: 15px;
}
.notification-dropdown span {
  font-size: 11px;
}
.notification-dropdown p {
  font-size: 11px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}
.notification-dropdown .inbox-icon img {
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1700px) {
  .notification-dropdown h6 {
    font-size: inherit;
  }
  .notification-dropdown span {
    font-size: 10px;
  }
}

.notification-filter .form-group {
  margin: 0 0 18px;
}

.dropdown-menu {
  z-index: 99;
}

.organization-landing--header {
  background: #fff;
  box-shadow: none;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
}

.remove-hover-bg {
  text-decoration: none;
}
.remove-hover-bg:hover {
  background: transparent !important;
  text-decoration: underline;
}

footer {
  position: relative;
  background: #1D294F;
  padding: 80px 0 60px;
  margin-top: 0px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul a {
  color: #fff;
  opacity: 0.75;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 1600px) {
  footer ul a {
    font-size: inherit;
  }
}
footer ul a:hover {
  opacity: 1;
  color: #fff;
}
footer ul li:not(:last-child) {
  margin: 0 0 12px;
}
footer .logo {
  margin: 0 0 20px;
}
footer .row + .row {
  margin-top: 60px;
}
footer .container {
  position: relative;
  z-index: 1;
}
footer .footer-caption {
  font-size: 34px;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 1600px) {
  footer .footer-caption {
    font-size: 28px;
  }
}
footer .pl-icon {
  color: #fff;
}
@media screen and (max-width: 1700px) {
  footer {
    padding: 80px 0 50px 0;
    margin-top: 0px;
  }
  footer .row + .row {
    margin-top: 30px;
  }
  footer ul li:not(:last-child) {
    margin: 0 0 9px;
  }
}
@media screen and (max-width: 676px) {
  footer {
    padding: 50px 0 50px 0;
  }
  footer .pl-icon {
    padding-left: 0;
  }
  footer .logo img {
    max-width: 140px;
  }
  footer .footer-caption {
    font-size: 24px;
  }
}

@media screen and (max-width: 676px) {
  .pl-icon {
    padding-left: 50px;
  }
}

.sub-footer {
  position: relative;
  background: #24445D;
  padding: 10px 0;
}
.sub-footer p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  opacity: 0.65;
  color: #fff;
}
@media screen and (max-width: 1700px) {
  .sub-footer p {
    font-size: 11px;
  }
}
@media screen and (max-width: 676px) {
  .sub-footer .pl-icon {
    padding: 0;
  }
}

.footer-ill-1 {
  position: absolute;
  left: 0;
  bottom: 10%;
  max-width: 50%;
  height: auto;
}

.footer-ill-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 25%;
  height: auto;
}

.footer-cta {
  position: relative;
  bottom: 100px;
  z-index: 1;
}
.footer-cta .box {
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
  padding: 39px 54px;
  border-radius: 8px;
}
.footer-cta h3 {
  font-size: 38px;
  line-height: 48px;
  margin: 0;
}
.footer-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 8px;
}
.footer-cta .icon-holder {
  background: #fff;
  width: 74px;
  height: 74px;
  margin: auto;
}
.footer-cta strong {
  font-weight: 500;
}
.footer-cta .btn-secondary:hover {
  background: var(--secondary);
}
@media screen and (max-width: 1700px) {
  .footer-cta {
    bottom: 70px;
  }
  .footer-cta .box {
    padding: 22px 40px;
  }
  .footer-cta h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .footer-cta p {
    font-size: 13px;
  }
}
@media screen and (max-width: 676px) {
  .footer-cta .container {
    padding: 0;
  }
  .footer-cta .box {
    padding: 15px 20px;
    border-radius: 0;
  }
  .footer-cta h3 {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-cta p {
    font-size: inherit;
  }
  .footer-cta p br {
    display: none;
  }
  .footer-cta .icon-holder {
    width: 40px;
    height: 40px;
  }
  .footer-cta .btn {
    white-space: nowrap;
  }
}

.footer-links svg {
  max-width: 100%;
}
.footer-links li a {
  display: flex;
  align-items: center;
}

.mm-auth--view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  background-color: var(--white);
  min-height: 100vh;
  font-weight: 400;
  font-size: 13px;
}
.mm-auth--view .max-w-500px {
  max-width: 500px;
  width: 100%;
}
.mm-auth--view .left--col {
  padding: 30px 38px 30px 60px;
  min-height: 100vh;
}
.mm-auth--view .right--col {
  position: sticky !important;
  top: 0;
  min-height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.mm-auth--view .auth--title h1 {
  font-weight: 400;
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 6px;
}
.mm-auth--view .auth--title p {
  line-height: 29px;
  margin: 0 0 30px;
}
.mm-auth--view .g-recaptcha {
  width: 100%;
}
.mm-auth--view .caption {
  position: relative;
  z-index: 1;
  padding: 50px;
}
.mm-auth--view .caption h1 {
  color: var(--success);
  font-family: "Continuo";
  font-size: 50px;
  line-height: 1;
}
.mm-auth--view .layer {
  position: absolute;
  right: 10%;
  top: 0;
  z-index: 1;
  height: 36%;
  opacity: 0.7;
}
.mm-auth--view .layer.layer-2 {
  left: 10%;
  right: auto;
  bottom: 0;
  top: auto;
}
.mm-auth--view form .btn {
  margin: 0;
}
.mm-auth--view .icon-right .icon-holder {
  top: 26px !important;
}
.mm-auth--view .form-group {
  margin: 0 0 20px;
}
.mm-auth--view .social--button {
  flex: 1;
}
.mm-auth--view .right--col {
  position: relative;
}
.mm-auth--view .right--col::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 40, 79, 0.8);
  z-index: 1;
}
.mm-auth--view .right--col .bg-image,
.mm-auth--view .right--col video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mm-auth--view .login-info {
  animation: moveup 0.4s ease;
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  z-index: 1;
  background: rgba(255, 242, 242, 0.13);
  mix-blend-mode: normal;
  backdrop-filter: blur(50px);
  border-radius: 10px;
  padding: 47px 42px;
}
.mm-auth--view .login-info .btn {
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 16px;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}
.mm-auth--view .login-info .btn:hover {
  background: var(--primary);
  color: #fff;
}
.mm-auth--view .login-info p {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 33px;
  margin: 25px 0 0;
}
.mm-auth--view .auth-form {
  position: relative;
  z-index: 10;
}
@keyframes moveup {
  0% {
    transform: translateY(80%);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}
.mm-auth--view .iti__selected-flag {
  height: 48px;
  background-color: transparent !important;
}
@media screen and (min-width: 1700px) {
  .mm-auth--view .form,
.mm-auth--view form {
    min-width: 400px;
    max-width: 850px;
  }
}
@media screen and (max-width: 1700px) {
  .mm-auth--view .logo img {
    max-width: 140px;
  }
  .mm-auth--view .left--col {
    padding: 30px;
  }
  .mm-auth--view .auth--title h1 {
    font-size: 20px;
    line-height: 22px;
  }
  .mm-auth--view .auth--title p {
    margin: 0 0 25px;
    line-height: 20px;
  }
  .mm-auth--view .form,
.mm-auth--view form .btn.btn-large {
    font-size: inherit;
    min-height: 44px;
  }
  .mm-auth--view .form-group {
    margin: 0 0 20px;
  }
  .mm-auth--view .icon-right .icon-holder {
    top: 22px !important;
  }
  .mm-auth--view .login-info {
    padding: 25px;
  }
  .mm-auth--view .login-info .btn {
    font-size: inherit;
  }
  .mm-auth--view .login-info .btn img {
    width: 18px;
  }
  .mm-auth--view .login-info p {
    line-height: 22px;
    font-size: 13px;
  }
}
@media screen and (max-width: 990px) {
  .mm-auth--view {
    grid-template-columns: 1fr !important;
  }
  .mm-auth--view .right--col {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mm-auth--view .flex-grow-1 > div {
    width: 100%;
    max-width: 100%;
  }
  .mm-auth--view .form,
.mm-auth--view form {
    min-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mm-auth--view .logo img {
    max-width: 120px;
  }
  .mm-auth--view .auth--title h1 {
    font-size: 22px;
    margin: 0;
  }
  .mm-auth--view .left--col {
    padding: 20px 14px;
  }
  .mm-auth--view .flex-grow-1 > div {
    width: 100%;
    max-width: 100%;
  }
  .mm-auth--view .form,
.mm-auth--view form {
    min-width: 100%;
  }
  .mm-auth--view .form,
.mm-auth--view form .btn.btn-large {
    min-width: auto;
  }
}

.auth-lines {
  top: 120px;
  z-index: 9;
  width: 100%;
}

.recover-password-page .auth-lines {
  bottom: 120px !important;
  top: auto !important;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.auth-section .form-check-input, .auth-section .form-check-input ~ .form-check-label {
  cursor: pointer;
}
.auth-section .form-check-input:checked {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
  background-color: var(--primary) !important;
}
.auth-section .form-check-input:checked ~ .form-check-label {
  color: var(--primary) !important;
}
.auth-section .form-check-input:checked:focus {
  box-shadow: 0 0 0 0.25rem rgba(82, 39, 201, 0.25);
}

.register-page {
  grid-template-columns: 1fr 1fr;
  height: auto;
}
.register-page .left--col {
  order: 2;
}
.register-page .right--col {
  order: 1;
}
.register-page .flex-grow-1 {
  padding: 20px 0 0;
}
.register-page .register-info {
  max-width: 260px;
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 20%;
  display: flex;
  flex-direction: column;
  grid-gap: 33px;
  align-items: flex-start;
}
.register-page .register-info .btn:hover {
  background: var(--primary);
  color: #fff;
}
.register-page .register-info .login-info {
  position: relative;
  inset: 0;
  padding: 19px 20px;
}
.register-page .register-info .login-info .icon-holder {
  background: var(--secondary) !important;
  width: 53px;
  height: 53px;
  border-radius: 4px;
}
.register-page .register-info .login-info p {
  font-size: 16px;
  line-height: 28px;
}
.register-page .register-info .btn {
  padding: 11px 50px 11px 13px;
  border-radius: 50px;
}
.register-page .register-info .btn .icon-holder {
  background: rgba(255, 255, 255, 0.2);
}
.register-page .right--col {
  position: relative;
  display: flex;
  align-items: center;
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 40, 79, 0.8);
}
.register-page .right--col .logo {
  position: absolute;
  left: 60px;
  top: 45px;
  z-index: 1;
}
@media screen and (max-width: 1700px) {
  .register-page .right--col .logo {
    top: 30px;
  }
  .register-page .register-info .login-info {
    padding: 25px;
  }
  .register-page .register-info .login-info .btn {
    font-size: 13px;
  }
  .register-page .register-info .login-info p {
    line-height: 22px;
    font-size: 13px;
    margin: 15px 0 0;
  }
  .register-page .register-info .btn {
    padding: 8px 40px 8px 10px;
    font-size: inherit;
  }
  .register-page .register-info .btn img {
    max-width: 20px;
  }
}
@media screen and (max-width: 900px) {
  .register-page {
    grid-template-columns: 1fr !important;
  }
  .register-page .logo .d-none {
    display: block !important;
  }
}

.code-inputs {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  justify-content: center;
}
.code-inputs .code-input {
  width: 55px;
  height: 55px;
  padding: 10px;
  appearance: none;
}
.code-inputs input::-webkit-outer-spin-button,
.code-inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.code-inputs input[type=number] {
  -moz-appearance: textfield;
}

.password-meter {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  margin: 8px 0;
}
.password-meter > div {
  flex: 1;
  width: 100%;
  height: 6px;
  border-radius: 12px;
  background: #D9D9D9;
}
.password-meter .active {
  background: #50cd89;
}

.text-hover-link:hover {
  text-decoration: underline !important;
}

@media screen and (min-width: 767px) {
  .max-md-400px {
    max-width: 400px;
    width: 100%;
  }
  .max-md-600px {
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (min-width: 1700px) {
  .max-md-400px {
    max-width: 440px;
    width: 100%;
  }
  .max-md-600px {
    max-width: 500px;
    width: 100%;
  }
}
.payment-element {
  border: 0.5px solid #D9D9D9;
  border-radius: 8px;
  padding: 18px 14px;
  background: #fff;
}
@media screen and (max-width: 1700px) {
  .payment-element {
    border-radius: 4px;
    padding: 14px;
  }
}

.trial-card .payment-element {
  padding: 22px 14px;
}
.trial-card .card {
  padding: 0;
  border: 0;
  border-radius: 4px;
}
.trial-card .card-body {
  padding: 35px 40px;
}
.trial-card .box {
  position: relative;
  border: 0.5px solid #C7C7C7;
  border-radius: 4px;
  padding: 15px 24px;
  min-height: 98px;
}
.trial-card .box h3 {
  font-size: 24px;
  line-height: 29px;
  color: #152C3E;
  margin: 0 0 12px;
}
.trial-card strong {
  font-weight: 500;
}
.trial-card .box p {
  font-size: 12px;
  line-height: 20px;
  color: #464E5F;
  margin: 0;
}
.trial-card .text {
  font-weight: 500;
  background: var(--secondary);
  color: #fff;
  padding: 4px 8px 0px;
  margin-left: -8px;
  font-size: 15px;
  line-height: 1;
}
.trial-card .box.sm {
  padding: 17px 8px;
}
.trial-card .card-feature {
  background: var(--primary);
  position: relative;
  line-height: 1;
  padding: 4px 8px 3px;
  display: inline-flex;
  align-items: center;
  grid-gap: 5px;
  color: #fff;
  font-size: 11px;
  transition: all 0.3s ease;
}
.trial-card .card-feature img {
  margin-bottom: 2px;
  position: relative;
  z-index: 1;
}
.trial-card .select2-container {
  width: auto !important;
  min-width: 110px !important;
}
.trial-card .select2-selection {
  padding: 12px 15px !important;
}
.trial-card .select2-selection .select2-selection__arrow {
  top: 13px !important;
}
@media screen and (max-width: 1700px) {
  .trial-card {
    margin: auto 60px;
  }
  .trial-card .card-body {
    padding: 20px;
  }
  .trial-card .payment-element {
    padding: 14px;
  }
  .trial-card .box {
    padding: 15px;
  }
  .trial-card .box h3 {
    font-size: 20px;
    margin: 0 0 20px;
  }
  .trial-card .box .badge {
    font-size: 10px;
  }
  .trial-card .box p {
    font-size: 10px;
  }
  .trial-card .box .font-size-18 {
    font-size: 14px !important;
  }
  .trial-card .box .text {
    font-size: 12px !important;
  }
}
@media screen and (max-width: 1400px) {
  .trial-card {
    margin: auto;
  }
}
@media screen and (max-width: 991px) {
  .trial-card .box h3 {
    font-size: 16px;
  }
}

.login-with--wia {
  position: relative;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-with--wia::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.4), transparent);
}
.login-with--wia .card {
  width: 420px;
  margin: auto;
  border-color: #ccc;
  border-radius: 8px;
}
.login-with--wia .head {
  border-bottom: 1px solid #ccc;
  padding: 12px 16px;
  color: #5f6368;
  font-size: 14px;
}
.login-with--wia .card-body {
  padding: 50px 40px;
}
.login-with--wia .card-body ul {
  margin: 40px 0;
}
.login-with--wia .card-body li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-gap: 15px;
  padding: 15px 40px;
  margin: 0 -40px;
  border-bottom: 1px solid #ccc;
}
.login-with--wia .card-body li:hover {
  cursor: pointer;
  background: #f1f1f1;
}
.login-with--wia .card-body .btn-sm {
  padding: 4px 10px;
  min-height: auto;
  min-width: auto;
}
.login-with--wia .card-body .icon {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-with--wia .card-body .user-icon {
  background: var(--primary);
  color: #fff;
}

.payment-icon {
  width: 60px;
  height: 38px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #C7C7C7;
  margin-top: 8px;
  object-fit: cover;
}

.modal.login-register-modal .login-container.px-6 {
  padding: 42px;
}
@media screen and (max-width: 767px) {
  .modal.login-register-modal .login-container.px-6 {
    padding: 34px 20px;
  }
}
.modal.login-register-modal h2 {
  margin-bottom: 32px !important;
  font-size: 20px;
  font-weight: 400 !important;
}
@media screen and (max-width: 767px) {
  .modal.login-register-modal h2 {
    font-size: 16px;
  }
}
.modal.login-register-modal .text-14 {
  font-size: 0.875rem;
}
.modal.login-register-modal .text-12 {
  font-size: 0.75rem;
}
.modal.login-register-modal .item:hover {
  background-color: rgba(127, 64, 208, 0.1);
}
.modal.login-register-modal .item:hover, .modal.login-register-modal .item:hover h5 {
  color: #7f40d0;
  border-color: #7f40d0 !important;
}
.modal.login-register-modal .item.cursor-pointer {
  padding: 20px 15px;
  border-radius: 7px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  transition: 200ms ease;
}
.modal.login-register-modal .gap-5 {
  gap: 1.25rem !important;
}
.modal.login-register-modal .btn-close {
  right: -12px;
  top: -12px;
  background-color: #fff;
  border-radius: 0.375rem;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 4.5L5 13.5' stroke='%23a5a3ae' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 4.5L5 13.5' stroke='white' stroke-opacity='0.2' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 4.5L14 13.5' stroke='%23a5a3ae' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 4.5L14 13.5' stroke='white' stroke-opacity='0.2' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  opacity: 1;
  padding: 0.44rem;
  box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
  transition: all 0.23s ease 0.1s;
}
.modal.login-register-modal .flex.items-center.gap-3 {
  display: flex;
  align-items: center;
}
.modal.login-register-modal svg {
  opacity: 0.7;
}
.modal.login-register-modal .flex.items-center.gap-1 {
  display: flex;
  align-items: center;
}
.modal.login-register-modal .d-flex.arrow-icon {
  align-items: center;
  gap: 4px;
}
.modal.login-register-modal .d-flex.arrow-icon svg {
  margin-bottom: 2px;
}

@media screen and (max-width: 676px) {
  .modal-dialog {
    margin: 14px;
  }
}
.auth-option--dropdown .dropdown-menu {
  margin-top: 12px !important;
  padding: 20px;
  min-width: 400px;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  top: 60px !important;
  transform: none !important;
  right: 0 !important;
  left: auto !important;
}
@media screen and (max-width: 1700px) {
  .auth-option--dropdown .dropdown-menu {
    top: 40px !important;
  }
  .auth-option--dropdown .dropdown-menu .item p,
.auth-option--dropdown .dropdown-menu .item h5 {
    font-size: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  .auth-option--dropdown .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 60px !important;
    position: fixed !important;
  }
}
.auth-option--dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  right: 10%;
  top: -10px;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-bottom: 10px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
@media screen and (max-width: 767px) {
  .auth-option--dropdown .dropdown-menu::before {
    left: 10% !important;
  }
}
.auth-option--dropdown .dropdown-menu li:not(:last-child) {
  margin-bottom: 14px;
}
.auth-option--dropdown .dropdown-menu li a {
  background: transparent !important;
}
.auth-option--dropdown .dropdown-menu li:hover .item {
  background: #f2f2f2 !important;
}
.auth-option--dropdown .dropdown-menu .item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  padding: 15px 20px;
  background: #fbfbfb;
  border-radius: 8px;
  border: 1px solid #ECF1F4;
}
.auth-option--dropdown .dropdown-menu .item .icon {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .auth-option--dropdown .dropdown-menu {
    padding: 14px;
    min-width: 340px;
  }
  .auth-option--dropdown .dropdown-menu .item {
    padding: 14px;
  }
  .auth-option--dropdown .dropdown-menu .item .font-size-16 {
    font-size: 14px !important;
  }
  .auth-option--dropdown .dropdown-menu .item .font-size-14 {
    font-size: 12px !important;
  }
}
.auth-option--dropdown.after-center .dropdown-menu::before {
  left: 45% !important;
}
.auth-option--dropdown.after-login .dropdown-menu {
  min-width: 240px !important;
  padding: 12px 0 !important;
}
.auth-option--dropdown.after-login .dropdown-menu::before {
  left: auto !important;
  right: 10%;
}
.auth-option--dropdown.after-login .dropdown-menu .dropdown-item {
  line-height: normal;
  padding: 10px 18px;
  border-radius: 6px;
}
.auth-option--dropdown.after-login .dropdown-menu .dropdown-item:hover {
  background-color: #f9f9f9 !important;
  color: var(--primary);
}
.auth-option--dropdown.after-login .dropdown-menu li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 1700px) {
  .auth-option--dropdown.after-login .dropdown-menu {
    min-width: 210px !important;
  }
  .auth-option--dropdown.after-login .dropdown-menu .dropdown-header {
    font-size: 14px;
  }
}

.stretched-link {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.auth-card {
  border: 1px solid #ECF1F4 !important;
  border-radius: 8px;
  background-color: rgba(236, 241, 244, 0.5) !important;
}

@font-face {
  font-family: "Continuo";
  src: url("https://d1d4i6zmr686pd.cloudfront.net/Seeker/fonts/Continuo.eot");
  src: url("https://d1d4i6zmr686pd.cloudfront.net/Seeker/fonts/Continuo.eot") format("embedded-opentype"), url("https://d1d4i6zmr686pd.cloudfront.net/Seeker/fonts/Continuo.woff2") format("woff2"), url("https://d1d4i6zmr686pd.cloudfront.net/Seeker/fonts/Continuo.woff") format("woff"), url("https://d1d4i6zmr686pd.cloudfront.net/Seeker/fonts/Continuo.ttf") format("truetype"), url("https://d1d4i6zmr686pd.cloudfront.net/Seeker/fonts/Continuo.svg#FilsonProMedium") format("svg");
}
.font-continuo {
  font-family: "Continuo";
}

@media screen and (min-width: 991px) {
  .w-lg-auto {
    width: auto !important;
  }
}
.suggestion-list {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
  top: 90px;
  z-index: 2;
  background: #FFFFFF;
  min-width: 100%;
  border: 1px solid #CACFD2;
  box-shadow: 4px 6px 94px -33px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  min-height: 260px;
}
.suggestion-list h5 {
  margin: 22px 27px 30px;
  font-weight: 500;
  color: var(--secondary);
  font-size: 13px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--secondary);
}
.suggestion-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.suggestion-list li {
  color: var(--gray-500);
  font-size: 14px;
  padding: 10px 27px;
  display: flex;
  grid-gap: 10px;
  align-items: center;
}
.suggestion-list li:hover {
  cursor: pointer;
  background: var(--gray-200);
}
@media screen and (max-width: 1700px) {
  .suggestion-list {
    top: 71px;
  }
  .suggestion-list h5 {
    margin: 15px 20px;
    padding-bottom: 15px;
  }
  .suggestion-list li {
    font-size: inherit;
    padding: 8px 20px;
  }
}
@media screen and (max-width: 812px) {
  .suggestion-list {
    top: 50px;
  }
}
.suggestion-list.show {
  opacity: 1;
  visibility: visible;
}

.mm--banner {
  position: relative;
  background: #000;
}
.mm--banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 9;
}
.mm--banner .container {
  position: relative;
  z-index: 1;
  padding: 164px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 150px;
}
.mm--banner.remove-after::after {
  display: none;
}
.mm--banner h3 {
  font-size: 30px;
  filter: drop-shadow(1px 1px 0px #000000);
  line-height: 1;
  margin: 0 0 8px;
}
.mm--banner h1 {
  text-align: left;
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 50px;
  filter: drop-shadow(1px 1px 0px #000000);
  line-height: 1;
}
.mm--banner p {
  max-width: 75%;
}
.mm--banner #image-banner,
.mm--banner #video-banner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  aspect-ratio: 16/9;
}
.mm--banner #image-banner video, .mm--banner #image-banner source,
.mm--banner #video-banner video,
.mm--banner #video-banner source {
  background-color: #000;
}
.mm--banner .cld-video-player .vjs-big-play-button {
  height: 1.5em;
  visibility: visible !important;
  opacity: 1 !important;
}
.mm--banner .cld-video-player .vjs-big-play-button:before {
  content: none !important;
}
.mm--banner video::-webkit-media-controls-enclosure {
  display: none !important;
}
.mm--banner video::-webkit-media-controls-panel {
  display: none !important;
}
.mm--banner video::-webkit-media-controls {
  visibility: hidden !important;
  display: none !important;
}
.mm--banner .vjs-loading-spinner:after, .mm--banner .vjs-loading-spinner:before, .mm--banner .vjs-loading-spinner {
  content: none !important;
  display: none !important;
}
.mm--banner .banner-captions {
  max-width: 900px;
}
@media screen and (max-width: 1700px) {
  .mm--banner .container {
    padding: 110px 15px;
  }
}
@media screen and (max-width: 1201px) {
  .mm--banner {
    min-height: 280px;
    height: 280px;
  }
  .mm--banner h1 {
    margin: 0 0 25px;
  }
  .mm--banner h3 {
    line-height: normal;
  }
  .mm--banner .container {
    padding: 60px 60px;
  }
}
@media screen and (max-width: 676px) {
  .mm--banner {
    min-height: auto;
    height: 200px;
  }
  .mm--banner .container {
    padding: 60px 20px;
  }
}

.homepage-banner {
  height: auto !important;
}
.homepage-banner #video-banner {
  object-fit: cover !important;
}
.homepage-banner .container {
  padding: 150px 15px 100px;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 1700px) {
  .homepage-banner .container {
    padding: 150px 20px 130px;
  }
  .homepage-banner h1 {
    font-size: 60px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 1600px) {
  .homepage-banner .container {
    padding-left: 120px;
  }
  .homepage-banner h1 {
    font-size: 44px;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 1350px) {
  .homepage-banner .container {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1201px) {
  .homepage-banner {
    min-height: 280px;
    height: auto !important;
  }
  .homepage-banner h3 {
    font-size: 22px;
  }
  .homepage-banner h1 {
    font-size: 48px;
    margin: 0 0 20px;
  }
  .homepage-banner .container {
    padding: 80px 40px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .homepage-banner .container {
    padding: 80px 20px 40px;
  }
}
@media screen and (max-width: 676px) {
  .homepage-banner {
    min-height: auto;
    height: auto !important;
  }
  .homepage-banner .container {
    padding: 60px 20px 30px;
  }
  .homepage-banner h3 {
    font-size: 18px;
  }
  .homepage-banner h1 {
    font-size: 27px !important;
    margin: 0 0 20px;
  }
}

.filters-container {
  position: relative;
  padding: 20px 0 40px;
}
.filters-container h1 {
  font-size: 34px;
  font-weight: 300;
  margin: 0 0 5px;
}
.filters-container p {
  margin: 0 0 40px;
  font-size: inherit;
}
@media screen and (max-width: 1570px) {
  .filters-container {
    padding: 20px 0;
  }
  .filters-container h1 {
    font-size: 30px;
  }
  .filters-container p {
    font-size: inherit;
    margin: 0 0 25px;
  }
}
@media screen and (max-width: 767px) {
  .filters-container h1 {
    font-size: 24px;
  }
}

.filter--holder {
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  justify-content: space-between;
  padding: 28px 32px;
  background: #FFFFFF;
  border: 2px solid var(--secondary);
  box-shadow: -8px 12px 94px -9px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}
.filter--holder .input-icon-left input {
  padding-left: 45px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter--holder .input-icon-left input:focus {
  border-color: var(--primary);
}
.filter--holder input:not(.form-control):focus ~ .suggestion-list {
  opacity: 1;
  visibility: visible;
}
.filter--holder .form-control,
.filter--holder .form-select,
.filter--holder .select2 .select2-selection {
  padding: 12px 35px 12px 45px;
  border-radius: 8px !important;
  border: 1px solid #C7C7C7 !important;
  min-height: 50px;
  display: flex;
  align-items: center;
}
.filter--holder .select2-container--focus .select2-selection,
.filter--holder .form-control:focus {
  border-color: var(--primary) !important;
}
.filter--holder button.btn-border-light {
  border-color: #C7C7C7;
}
.filter--holder button.btn-border-light:hover {
  border-color: var(--primary);
}
.filter--holder .select2-selection__arrow {
  right: 22px !important;
}
.filter--holder .row {
  width: 100%;
}
.filter--holder .row .col:first-child {
  border-right: 0 !important;
}
.filter--holder .row .col:not(:last-child) {
  border-right: 1px solid #CACFD2;
}
.filter--holder .btn {
  border-radius: 6px;
  padding: 12px 30px;
  min-height: 50px;
}
.filter--holder .input-icon-left .icon {
  z-index: 1;
  width: 22px;
  height: 22px;
}
.filter--holder #suggestion-box {
  box-shadow: none;
  border: 1px solid #c7c7c7;
  padding: 10px 0;
  border-radius: 6px;
  top: calc(100% + 4px);
  z-index: 99;
}
.filter--holder #suggestion-box li {
  font-size: 14px;
  line-height: 1;
  color: var(--gray-500);
  padding: 10px 17px;
}
@media screen and (max-width: 1700px) {
  .filter--holder {
    padding: 20px;
    border-radius: 10px;
    border-width: 1px;
  }
  .filter--holder .form-control,
.filter--holder .select2 .select2-selection {
    border-width: 1px !important;
  }
  .filter--holder .btn {
    padding: 10px 28px;
  }
  .filter--holder .select2-selection .select2-selection__arrow::after {
    top: 2px;
  }
}
@media screen and (min-width: 1199px) {
  .filter--holder .col-flex-1 {
    flex: none;
    width: auto;
    flex: 1;
  }
  .filter--holder .filter-btns {
    gap: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .filter--holder .row {
    margin: 0;
  }
  .filter--holder .btn {
    position: absolute;
    right: 33px;
    top: 26px;
    padding: 10px 15px;
  }
  .filter--holder .filter-btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .filter--holder .filter-btns button {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 6.5px;
  }
}
@media screen and (max-width: 767px) {
  .filter--holder {
    padding: 22px;
    grid-gap: 10px;
    justify-content: center;
    border-radius: 12px;
    border-width: 1px;
  }
  .filter--holder [class^=col-] {
    padding: 0;
  }
  .filter--holder .form-control,
.filter--holder .select2 .select2-selection {
    min-height: 50px;
  }
  .filter--holder .row .col:not(:last-child) {
    margin-right: 0;
  }
  .filter--holder .btn {
    position: absolute;
    min-width: auto;
    top: 27px;
    right: 34px;
  }
  .filter--holder .btn img {
    display: none;
  }
}

.landing-agents {
  padding: 62px 33px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 20%;
}
.landing-agents .box-holder {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}
.landing-agents .box-holder .card-body {
  padding: 20px 38px;
}
@media screen and (max-width: 1700px) {
  .landing-agents {
    padding: 40px 0;
  }
  .landing-agents .box-holder .card-body {
    padding: 20px 26px;
  }
}
@media screen and (max-width: 767px) {
  .landing-agents {
    padding: 30px 0;
  }
}

.landing-agent-profile {
  background-color: #F5F5F5;
  margin-bottom: -40px;
}

.agent-slide {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.agent-slide .individual--card {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .agent-slide {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 812px) {
  .agent-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .agent-slide {
    grid-template-columns: repeat(1, 1fr);
  }
}

.form-control {
  border: 1px solid #C7C7C7;
  border-radius: 4px;
  min-height: 42px;
  padding: 8px 14px;
  font-size: 14px;
  box-shadow: none !important;
}
@media screen and (max-width: 1700px) {
  .form-control {
    font-size: inherit;
  }
}

.form-control.otp-input {
  padding: 8px 12px !important;
}

.filter-select-2 ~ .select2 .select2-selection {
  padding: 14px 15px !important;
  border: 1px solid #C7C7C7 !important;
  border-radius: 4px !important;
}
.filter-select-2 ~ .select2 .select2-selection .select2-selection__arrow {
  top: 16px !important;
}

.advance-filter label {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  margin: 0 0 8px;
}
.advance-filter .form-group input {
  min-height: 45.2px;
}
.advance-filter .btn.btn-sm {
  min-height: 41px;
  border-color: #c7c7c7;
  box-shadow: none !important;
  font-weight: 500;
  color: var(--secondary);
}
.advance-filter .btn.btn-sm .icon {
  transform: rotate(180deg);
  transition: all 0.4s ease;
}
.advance-filter .btn.btn-sm.active .icon {
  transform: rotate(0);
}
.advance-filter .input-icon-right {
  min-width: 300px;
}
.advance-filter .input-icon-right .icon {
  background: var(--secondary);
  padding: 8px;
  height: 30px;
  border-radius: 5px;
  right: 10px;
}
@media screen and (max-width: 1700px) {
  .advance-filter label {
    font-size: inherit;
  }
}
@media screen and (max-width: 767px) {
  .advance-filter .input-icon-right {
    min-width: auto;
    flex: 1;
  }
  .advance-filter .btn {
    min-width: auto;
  }
  .advance-filter .btn span {
    display: none;
  }
  .advance-filter .col-md-3 {
    margin-bottom: 20px;
  }
}

.search-drop-down {
  min-width: 240px;
  top: 4px;
  padding: 5px 0;
  border: 1px solid #CACFD2;
  box-shadow: 4px 6px 94px -33px rgba(0, 0, 0, 0.06);
  border-radius: 6px !important;
  overflow: hidden;
}
.search-drop-down li {
  color: var(--gray-500);
  padding: 10px 17px;
}
@media screen and (max-width: 1700px) {
  .search-drop-down {
    min-width: 200px;
  }
  .search-drop-down li {
    font-size: inherit;
  }
}
@media screen and (max-width: 767px) {
  .search-drop-down {
    left: 0 !important;
  }
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 250px !important;
}

.home-page-filters {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .home-page-filters .filter--holder .filter-btns {
    grid-template-columns: 1fr !important;
  }
  .home-page-filters .filter--holder .filter-btns button {
    margin: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .home-page-filters {
    position: relative;
  }
  .home-page-filters .mobile-search-filters {
    padding: 0 22px !important;
    background: #202a50;
    border-radius: 0 0 12px 12px;
    transition: 0.2s ease-in-out 0s;
    position: absolute;
    width: 100%;
    height: 0 !important;
    overflow: hidden;
    top: calc(100% + 20px);
    left: 0;
  }
  .home-page-filters .mobile-search-filters .col-md-6 {
    flex: 1;
    padding: 0 7.5px !important;
  }
  .home-page-filters .filter--holder {
    transition: 0.1s ease-in-out 0s;
    border-radius: 12px;
  }
  .home-page-filters .filter--holder .filter-btns {
    display: flex !important;
    gap: 14px;
  }
  .home-page-filters .filter--holder .filter-btns button {
    display: flex !important;
    flex: 1;
  }
}
@media screen and (max-width: 700px) {
  .home-page-filters .mobile-search-filters {
    flex-direction: column;
    gap: 14px;
  }
}

@media screen and (max-width: 768px) {
  .home-page-filters.active .filter--holder {
    border-radius: 12px 12px 0 0;
  }
  .home-page-filters.active .mobile-search-filters {
    padding: 22px 22px !important;
    height: auto !important;
    overflow: visible;
    z-index: 9;
  }
  .home-page-filters.active .mobile-search-filters #reset_search_form {
    width: calc(100% - 12px);
  }
}

.visa-category-dropdown {
  z-index: 99;
}

.clear-icon {
  display: none;
  position: absolute;
  right: 15px;
  font-size: 25px;
  cursor: pointer;
  color: #85888c;
  height: 14px;
  width: 14px;
  overflow: hidden;
  align-items: center;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

.landing-agents .advance-filter .visa-dropdown .select2-selection {
  height: 45.2px !important;
  border: 1px solid #C7C7C7 !important;
  border-radius: 4px !important;
  padding: 8px 14px !important;
  display: flex;
  align-items: center;
}
.landing-agents .advance-filter .visa-dropdown .select2-selection .select2-selection__arrow {
  display: flex;
  align-items: center;
  height: 12px !important;
  top: auto !important;
}
.landing-agents .advance-filter .visa-dropdown .select2-selection .select2-selection__arrow ::after {
  right: 0;
  top: auto;
}
.landing-agents .advance-filter .visa-dropdown .select2-selection .select2-selection__clear span {
  font-size: 25px;
  background-color: #fcfcfc;
}

.schedule-widget-parent .ipad-mobile-widget {
  margin: -30px 0 30px !important;
}
@media screen and (max-width: 812px) {
  .schedule-widget-parent .ipad-mobile-widget {
    margin: 0px 0 30px !important;
  }
}
.schedule-widget-parent .agent-image {
  min-height: 110px;
  width: 110px;
}
.schedule-widget-parent .agencies-logo {
  padding: 6px;
  min-width: 52px;
  width: 52px;
  height: 52px;
  left: 10px !important;
  bottom: 10px !important;
}

#suggestion-box {
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
}

#suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#suggestion-list li {
  padding: 5px 10px;
  cursor: pointer;
}

#suggestion-list li:hover {
  background-color: #f5f5f5;
}

.filter-3-colmns {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  grid-gap: 15px;
}
@media screen and (max-width: 600px) {
  .filter-3-colmns {
    grid-template-columns: 100%;
    grid-gap: 0px;
  }
}

.coming-soon-label {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 22px;
  transform: skew(-15deg);
}
.coming-soon-label span {
  transform: skew(15deg);
  display: inline-block;
}
.coming-soon-label.sm {
  padding: 3px 5px;
  border-radius: 2px;
  font-size: 10px;
  transform: none;
  border: 1px solid var(--primary);
  white-space: nowrap;
}
.coming-soon-label.sm span {
  transform: none;
}

.video-banner .d-flex.video-control-icons {
  display: none !important;
}
.video-banner .vjs-volume-control.vjs-control.vjs-volume-horizontal {
  display: none !important;
}
.video-banner .vjs-big-play-button {
  display: none !important;
}

.video-banner .play-btn {
  display: none !important;
}

.video-banner .vjs-control-bar {
  height: 100% !important;
}

.video-banner .cld-video-player .vjs-play-control {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 60px !important;
  width: 60px !important;
  display: flex !important;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.video-banner .cld-video-player button.vjs-fullscreen-control.vjs-control.vjs-button {
  height: 30px !important;
  width: 30px !important;
  position: absolute;
  right: 10%;
  bottom: 15%;
}

.video-banner .cld-video-player .vjs-volume-panel {
  height: 30px !important;
  width: 30px !important;
  position: absolute !important;
  right: 12%;
  bottom: 15%;
}
@media screen and (max-width: 1200px) {
  .video-banner .cld-video-player .vjs-volume-panel {
    right: 13%;
  }
}
@media screen and (max-width: 992px) {
  .video-banner .cld-video-player .vjs-volume-panel {
    right: 14%;
  }
}
@media screen and (max-width: 768px) {
  .video-banner .cld-video-player .vjs-volume-panel {
    right: 15%;
  }
}
@media screen and (max-width: 479px) {
  .video-banner .cld-video-player .vjs-volume-panel {
    right: 17%;
  }
}
@media screen and (max-width: 390px) {
  .video-banner .cld-video-player .vjs-volume-panel {
    right: 18%;
  }
}

.video-banner .cld-video-player .vjs-volume-panel, .video-banner .cld-video-player .vjs-play-control, .video-banner .cld-video-player .vjs-fullscreen-control, .video-banner .cld-video-player .vjs-mute-control {
  display: block !important;
}

.vjs-control-bar *:not(.vjs-volume-panel, .vjs-play-control, .vjs-fullscreen-control, .vjs-mute-control) {
  display: none;
}

.cld-video-player .vjs-control-bar * {
  display: none;
}

.vjs-cloudinary-button {
  display: none !important;
}

.video-banner .cld-video-player .vjs-control-bar .vjs-progress-control, .video-banner .cld-video-player .vjs-control-bar .vjs-progress-control-events-blocker {
  display: none;
}

.video-banner .video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before, .video-banner .vjs-icon-volume-mute:before,
.video-banner .video-js .vjs-mute-control .vjs-icon-placeholder:before, .vjs-icon-volume-high:before,
.video-banner .cld-video-player button.vjs-fullscreen-control.vjs-control.vjs-button .vjs-icon-placeholder:before {
  background-color: rgba(0, 0, 0, 0.5) !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  font-size: 18px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-banner .video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before, .vjs-icon-pause:before,
.video-banner .cld-video-player .vjs-button > .vjs-icon-placeholder:before {
  width: 60px;
  height: 60px;
  background-color: transparent;
  line-height: 60px !important;
  font-size: 30px;
}

.cld-video-player-video-banner.cld-video-player-skin-dark .base-color-bg, .cld-video-player-video-banner.cld-video-player-skin-dark .vjs-control-bar, .cld-video-player-video-banner.cld-video-player-skin-dark .vjs-big-play-button, .cld-video-player-video-banner.cld-video-player-skin-dark .vjs-menu-button .vjs-menu-content {
  background-color: transparent !important;
}

.font-70 {
  font-size: 70px !important;
}

.agents-container {
  padding: 50px 0;
}
.agents-container #agentsSlider {
  padding: 0 50px;
}
.agents-container .heading .font-continuo {
  font-size: 44px;
}
.agents-container .heading p {
  font-size: inherit;
  margin: 0 0 50px;
}
@media screen and (max-width: 1700px) {
  .agents-container .heading .font-continuo {
    font-size: 36px;
  }
  .agents-container .heading p {
    font-size: inherit;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1024px) {
  .agents-container .heading .font-continuo {
    font-size: 38px;
  }
}
@media screen and (max-width: 676px) {
  .agents-container .heading .font-continuo {
    font-size: 30px;
  }
  .agents-container .heading p {
    font-size: inherit;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 676px) {
  .agents-container {
    padding: 40px 0;
  }
}

.labour-banner {
  position: relative;
  padding: 60px 0;
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
}
.labour-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(29, 41, 79, 0.7), rgba(29, 41, 79, 0.7));
}
.labour-banner > div {
  position: relative;
  z-index: 1;
}
.labour-banner h1 {
  color: #fff;
  font-size: 30px;
  filter: drop-shadow(1px 1px 0px #000000);
}
.labour-banner h1 span {
  display: block;
  color: var(--success);
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 1570px) {
  .labour-banner h1 {
    font-size: 28px;
  }
  .labour-banner h1 span {
    font-size: 40px;
  }
}
.labour-banner p {
  margin: 50px 0;
}

.labour-testimonals {
  background-color: #AA68FD;
  padding: 0px 0 60px;
  color: #fff;
  margin-top: 100px;
}
.labour-testimonals .font-continuo {
  font-size: 50px;
  color: #fff !important;
}
@media screen and (max-width: 1570px) {
  .labour-testimonals .font-continuo {
    font-size: 34px;
  }
}
.labour-testimonals .company-logos {
  position: relative;
  top: -50px;
}
.labour-testimonals .agencies-logo {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 1px solid var(--primary);
}

.how-it-works {
  position: relative;
  padding: 60px 0;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
}
.how-it-works::after {
  content: "";
  background: #5227C9;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.how-it-works > div {
  position: relative;
  z-index: 1;
}
.how-it-works .font-continuo {
  font-size: 48px;
  color: #fff !important;
  margin: 0 0 50px;
}
@media screen and (max-width: 1570px) {
  .how-it-works .font-continuo {
    font-size: 34px;
  }
}
.how-it-works .count-label {
  background-color: var(--success);
  padding: 11px 13px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  width: 80%;
  margin: auto;
  position: relative;
}
.how-it-works .count-label::before, .how-it-works .count-label::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 0;
}
.how-it-works .count-label::before {
  left: 0;
  border-right: 26px solid transparent;
  transform: translateX(-100%) rotate(180deg);
  border-top: 26px solid var(--success);
  border-bottom: 26px solid var(--success);
}
.how-it-works .count-label::after {
  right: 0;
  border-left: 26px solid var(--success);
  transform: translateX(100%);
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
}
.how-it-works h4 {
  margin: 30px 0;
  font-size: 18px;
}

.labour-solution-section {
  padding: 60px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.labour-solution-section .layer-1 {
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  z-index: 1;
  height: 100px;
}
.labour-solution-section .layer-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  user-select: none;
  z-index: 1;
}
@media screen and (max-width: 1570px) {
  .labour-solution-section .layer-1,
.labour-solution-section .layer-2 {
    display: none;
  }
}
.labour-solution-section::after {
  content: "";
  background: #fff;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}
.labour-solution-section > div {
  position: relative;
  z-index: 2;
}
.labour-solution-section .heading {
  margin: 0 0 50px;
}
.labour-solution-section .font-continuo {
  font-size: 48px;
}
@media screen and (max-width: 1570px) {
  .labour-solution-section .font-continuo {
    font-size: 34px;
  }
}
.labour-solution-section .card {
  background-color: #fff;
  border: 1px solid #ECF1F4;
  border-radius: 12px;
}
.labour-solution-section .card .card-body {
  padding: 25px;
}
.labour-solution-section .card .card-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0;
}
.labour-solution-section .card .card-body p {
  font-size: 14px;
  min-height: 80px;
}
@media screen and (max-width: 1570px) {
  .labour-solution-section .card .card-body h4 {
    font-size: 16px;
    margin: 14px 0;
  }
}

.labour-streamlining {
  background-color: #ECF1F4;
  padding: 60px 0;
}
.labour-streamlining h3 {
  font-size: 44px;
  font-weight: 700;
}
.labour-streamlining p {
  margin: 0 0 40px;
}
@media screen and (max-width: 1570px) {
  .labour-streamlining h3 {
    font-size: 36px;
  }
}

.migration-specialist-banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 15px 0;
}
.migration-specialist-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(245deg, rgba(255, 255, 255, 0.5), #fff);
}
.migration-specialist-banner > div {
  position: relative;
}
.migration-specialist-banner h1 {
  font-size: 55px;
  font-weight: bold;
  color: #000;
}
.migration-specialist-banner h1 span {
  color: var(--primary);
}
@media screen and (max-width: 1700px) {
  .migration-specialist-banner h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .migration-specialist-banner h1 {
    font-size: 30px;
  }
}
.migration-specialist-banner p {
  font-size: 16px;
  font-weight: 500;
  margin: 20px 0 30px;
}
@media screen and (max-width: 991px) {
  .migration-specialist-banner {
    padding: 40px 0 20px;
  }
}

.agent-adv-row {
  margin-bottom: 80px;
}
@media screen and (max-width: 676px) {
  .agent-adv-row {
    margin-bottom: 50px;
  }
}

.agent-advertisement {
  border-radius: 8px;
  overflow: hidden;
}
.agent-advertisement .card-body {
  position: relative;
  z-index: 1;
  padding: 31px 36px;
  color: #fff;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.agent-advertisement .card-body h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  line-height: 30px;
  color: var(--secondary);
  line-height: 40px;
}
.agent-advertisement .card-body a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.5s ease;
}
.agent-advertisement .card-body strong {
  font-weight: 700;
}
.agent-advertisement .bg-illus {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
}
.agent-advertisement .bg-illus.sm {
  max-width: 35%;
}
@media screen and (max-width: 1700px) {
  .agent-advertisement .card-body {
    min-height: 200px;
    padding: 25px;
  }
  .agent-advertisement .card-body h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .agent-advertisement .card-body a {
    font-size: 14px;
  }
}

.col-md-12 .agent-advertisement .bg-illus {
  max-width: 40%;
}

.agent-img-col {
  min-width: 214px !important;
}
@media screen and (max-width: 576px) {
  .agent-img-col {
    min-height: 450px;
  }
}
@media screen and (max-width: 479px) {
  .agent-img-col {
    min-height: 400px;
  }
}
@media screen and (max-width: 390px) {
  .agent-img-col {
    min-height: 350px;
  }
}
.agent-img-col .position-relative {
  min-width: 200px;
}

.agent-image {
  position: relative;
  border-radius: 6px;
  max-width: 297px;
  min-height: 220px;
  overflow: hidden;
  margin: auto;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.agent-image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  max-width: 100%;
  transition: all 0.3s ease;
}
.agent-image:hover img {
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  .agent-image {
    max-width: 100%;
  }
}

.counter-box {
  text-align: center;
  border: 1px dashed #C7C7C7;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}
.counter-box span {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
}
.counter-box p {
  font-size: 16px;
  line-height: 20px;
  color: #787E82;
  margin: 0;
}
@media screen and (max-width: 1700px) {
  .counter-box {
    min-height: 120px;
  }
  .counter-box span {
    font-size: 22px;
  }
  .counter-box p {
    font-size: inherit;
  }
}

.services-offer {
  padding: 70px 0 90px;
  background: var(--secondary);
  background-repeat: no-repeat;
  background-position: right top;
}
.services-offer .section--title {
  margin: 0 0 60px;
}
.services-offer .section--title::before {
  box-shadow: -8px 0px 0px 0px var(--primary) inset, -12px 0px 0px 0px var(--secondary) inset;
}
.services-offer .services {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 30px;
}
.services-offer .services .service-item,
.services-offer .services .item {
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  grid-gap: 25px;
  font-size: 18px;
  line-height: 27px;
  color: #fff;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid #C7C7C7;
  border-radius: 4px;
}
.services-offer .services .service-item .icon,
.services-offer .services .item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #C7C7C7;
  border-radius: 4px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
}
.services-offer .services .service-item:hover,
.services-offer .services .item:hover {
  background: #fff;
  color: #000;
}
.services-offer .services .service-item:hover .icon,
.services-offer .services .item:hover .icon {
  background: #152C3E;
}
@media screen and (max-width: 1700px) {
  .services-offer {
    padding: 50px 0 60px;
  }
  .services-offer .services {
    grid-gap: 20px;
  }
  .services-offer .services .item {
    font-size: 14px;
    padding: 7px 12px 7px 14px;
    font-weight: 400;
  }
  .services-offer .services .item .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
  .services-offer .services .service-item {
    font-size: 14px;
    padding: 7px 12px 7px 14px;
    font-weight: 400;
  }
  .services-offer .services .service-item .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }
}

.testimonial {
  padding: 88px 0 72px;
}
.testimonial .section--title {
  margin: 0 0 60px;
}
@media screen and (max-width: 1700px) {
  .testimonial {
    padding: 40px 0;
  }
  .testimonial .section--title {
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 812px) {
  .testimonial .section--title {
    margin: 0 0 30px;
  }
}
.testimonial .slick-track {
  margin: 0;
}

.client-reviews .box {
  position: relative;
  min-height: 242px;
  padding: 30px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.05));
  background: #FFFFFF;
  border-radius: 8px;
  margin: 10px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1700px) {
  .client-reviews .box {
    min-height: 285px;
  }
}
.client-reviews .box .show-more-row.gap-3 {
  justify-content: flex-end !important;
}
.client-reviews .box img {
  width: 18px;
}
.client-reviews .box p {
  margin-top: 24px;
  transition: 200ms ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.client-reviews .box::after {
  content: "";
  position: absolute;
  left: 20px;
  left: 20px;
  bottom: -10px;
  border-top: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-radius: 0;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}
.client-reviews .box .show-more-less {
  display: none;
}
.client-reviews .box .show-more-row .font-12 {
  font-weight: 500;
}
@media screen and (min-width: 1700px) {
  .client-reviews .box .show-more-row .font-12 {
    font-size: 16px;
  }
}
.client-reviews .box .testimonial-img {
  width: 20px;
  height: 20px;
  border-radius: 50px;
  border: 1px solid #D5D5D5;
  object-fit: contain;
}
.client-reviews .box.expand .show-more-less {
  display: block;
}
@media screen and (min-width: 1700px) {
  .client-reviews .box.expand .show-more-less {
    font-size: 16px;
  }
}
.client-reviews .box.expand .show-more-row {
  justify-content: space-between !important;
}
.client-reviews .box.expand.show-full p {
  margin-top: 24px;
  max-height: 100%;
  overflow: inherit;
  display: block;
}
.client-reviews .icon-rounded {
  width: 68px;
  height: 68px;
}
.client-reviews h3 {
  font-size: 16px;
  margin: 0 0 2px;
  font-weight: 500;
}
.client-reviews p {
  margin: 0;
  color: #787E82;
}
@media screen and (min-width: 1700px) {
  .client-reviews .box p {
    font-size: 16px;
  }
  .client-reviews h3 {
    font-size: 18px;
  }
  .client-reviews p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1700px) {
  .client-reviews .icon-rounded {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 812px) {
  .client-reviews .box {
    padding: 30px;
  }
  .client-reviews .icon-rounded {
    width: 40px;
    height: 40px;
  }
  .client-reviews h3 {
    font-size: 14px;
  }
  .client-reviews p {
    font-size: inherit;
  }
}

.v-divider {
  width: 100%;
  flex: 1;
  height: 1px;
  border-top: 1px dashed var(--gray-300);
}

.y-divider {
  width: 1px;
  height: 16px;
  background: var(--gray-300);
}

.cta-box {
  display: grid;
  grid-template-columns: auto;
  grid-gap: 14px;
  max-width: 60%;
}
.cta-box .box {
  border: 1px solid #C7C7C7;
  border-radius: 4px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
}
.cta-box .box .icon {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-box .icon svg {
  transition: all 0.3s ease;
}
.cta-box h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 11px;
}
.cta-box p {
  font-size: 16px;
  color: #787E82;
  line-height: 24px;
  margin: 0;
}
.cta-box .box:hover {
  background-color: var(--primary);
}
.cta-box .box:hover * {
  color: #fff;
}
.cta-box .box:hover .icon svg {
  color: var(--primary);
  transition: all 0.3s ease;
}

.services-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 24px;
}
.services-items .item {
  position: relative;
}
.services-items .item input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.services-items .item .info {
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  border: 1px solid #C7C7C7;
  border-radius: 8px;
  padding: 21px 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 16px;
  align-items: center;
}
.services-items .item:hover .info {
  border-color: var(--primary);
  background: var(--secondary);
  color: #fff;
}
.services-items .item .info .check-mark {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: inline-block;
  border: 1px solid #C7C7C7;
}
.services-items .item .info .check-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border-radius: 100%;
  background: var(--primary);
  opacity: 0;
  border-radius: 100%;
}
.services-items .item span {
  font-weight: 500;
}
.services-items .item input[type=checkbox]:checked ~ .info {
  background: var(--secondary);
  box-shadow: 10px 9px 22px 3px rgba(0, 0, 0, 0.06);
}
.services-items .item input[type=checkbox]:checked ~ .info span {
  color: #fff;
}
.services-items .item input[type=checkbox]:checked ~ .info .check-mark {
  border-color: #fff;
}
.services-items .item input[type=checkbox]:checked ~ .info .check-mark::after {
  opacity: 1;
}

.cta-modal .modal-dialog {
  max-width: 850px !important;
}
.cta-modal .modal-body {
  padding: 64px 30px !important;
}
.cta-modal .icon {
  position: absolute;
  bottom: 5px;
  right: 20px;
  opacity: 0;
  transform-origin: bottom right;
}
.cta-modal .hover .icon {
  opacity: 1;
  animation: zoomIn 0.5s forwards;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 1700px) {
  .cta-modal .modal-dialog {
    max-width: 700px !important;
  }
  .cta-modal .cta-box .icon {
    max-width: 150px;
  }
  .cta-modal .cta-box .icon svg {
    width: 100%;
    height: auto;
  }
  .cta-modal .cta-box h2 {
    font-size: 16px;
    line-height: 18px;
  }
  .cta-modal .cta-box p {
    font-size: inherit;
    line-height: 15px;
  }
  .service-type .modal-dialog {
    max-width: 750px !important;
  }
  .service-type .services-items {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .service-type .item .info {
    padding: 16px;
    font-size: inherit;
    border-radius: 6px;
  }
  .service-type .item .info .check-mark {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 812px) {
  .cta-modal .modal-dialog {
    max-width: 100% !important;
    margin: 12px;
  }
  .cta-box {
    grid-template-columns: 100%;
    max-width: 100%;
    margin-top: 50px;
  }
  .cta-box .box {
    padding: 20px;
  }
  .cta-box .box .icon {
    display: none;
  }
  .services-items {
    grid-template-columns: 100%;
  }
}
#service-type .modal-content {
  min-height: 436px;
}

.agent-name-30px {
  font-size: 30px !important;
}
@media screen and (max-width: 1700px) {
  .agent-name-30px {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 812px) {
  .agent-name-30px {
    font-size: 16px !important;
  }
}

.schedule-consultation-widget {
  position: relative;
  z-index: 1;
  background: var(--primary);
  padding: 20px 40px 20px 70px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -30px 0 30px;
  grid-gap: 15px;
  overflow: hidden;
}
.schedule-consultation-widget .dot-img {
  position: absolute;
  right: 20%;
  bottom: 0;
  width: 120px;
}
.schedule-consultation-widget .dot-img-1 {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 120px;
}
.schedule-consultation-widget h1 {
  color: #fff;
  font-size: 24px;
  margin: 0;
  font-weight: 400;
}
.schedule-consultation-widget .btn img {
  position: relative;
  left: 0;
  transition: all 0.3s ease;
}
.schedule-consultation-widget .btn-secondary:hover,
.schedule-consultation-widget .btn-secondary:focus {
  background: var(--secondary);
}
.schedule-consultation-widget .btn-secondary:hover img,
.schedule-consultation-widget .btn-secondary:focus img {
  left: 5px;
}
@media screen and (max-width: 1700px) {
  .schedule-consultation-widget {
    padding: 20px 40px 20px 70px;
  }
  .schedule-consultation-widget h1 {
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
  }
}
@media screen and (max-width: 812px) {
  .schedule-consultation-widget {
    flex-wrap: wrap;
    margin: 0px 0 30px;
    padding: 25px;
  }
  .schedule-consultation-widget .dot-img,
.schedule-consultation-widget .dot-img-1 {
    display: none;
  }
}

.rating-modal .modal-body {
  padding: 35px 40px !important;
}
.rating-modal .rating-success-icon {
  width: 100%;
  height: 150px;
}

.seeker-profile {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 290px calc(100% - 320px);
  grid-gap: 30px;
  align-items: flex-start;
}
.seeker-profile .count {
  min-width: 19px;
  height: 19px;
  line-height: 22px;
  background: #F3F3F3;
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.seeker-profile .left-col {
  background: #FFFFFF;
  box-shadow: -7px -5px 90px rgba(0, 0, 0, 0.03), 13px 7px 170px 7px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  position: sticky;
  top: 130px;
  overflow: hidden;
}
.seeker-profile .left-col h3 {
  font-weight: 500;
  color: var(--secondary);
  font-size: 26px;
  margin: 0;
  padding: 24px 22px 21px;
}
.seeker-profile .left-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.seeker-profile .left-col ul li:not(:last-child) {
  border-bottom: 1px solid var(--gray-300);
}
.seeker-profile .left-col a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  color: var(--secondary);
  text-decoration: none;
  font-size: 18px;
  padding: 20px 22px;
  line-height: 20px;
  display: inline-block;
  width: 100%;
  transition: all 0.2s ease;
}
.seeker-profile .left-col a:hover {
  background: rgba(127, 71, 205, 0.1);
}
.seeker-profile .left-col a.active {
  background: var(--secondary);
  color: #fff;
}
.seeker-profile .left-col a:hover .count {
  background: #fff;
}
@media screen and (max-width: 1700px) {
  .seeker-profile .left-col h3 {
    font-size: 20px;
  }
  .seeker-profile .left-col a {
    font-size: 14px;
    padding: 14px 20px;
  }
}
.seeker-profile .card {
  margin: 0 0 30px;
  background: #FFFFFF;
  padding: 0;
  border-radius: 16px;
  border: 0;
  box-shadow: -7px -5px 90px rgba(0, 0, 0, 0.03), 21px 15px 170px 7px rgba(0, 0, 0, 0.05);
}
.seeker-profile .card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 31px 29px 22px;
  border-radius: 0;
  border-bottom: 1px solid #C7C7C7;
  background: transparent;
}
.seeker-profile .card .card-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--secondary);
  margin: 0;
}
.seeker-profile .card .card-body {
  padding: 40px 40px 40px;
}
@media screen and (max-width: 1700px) {
  .seeker-profile .card {
    border-radius: 10px;
  }
  .seeker-profile .card .card-header {
    padding: 20px 20px 18px !important;
  }
  .seeker-profile .card .card-header .form-control {
    font-size: inherit;
    padding-left: 50px !important;
  }
  .seeker-profile .card .card-title {
    font-size: 16px;
  }
  .seeker-profile .card .card-body {
    padding: 30px 30px 30px;
  }
}
.seeker-profile .user-image {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 100%;
}
.seeker-profile .user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seeker-profile .user-name {
  font-weight: 500;
  font-size: 19px;
  margin: 0;
}
.seeker-profile .profile-stat {
  padding: 19px 20px;
  background: #F3F6F9;
  box-shadow: 0px 0px 20px rgba(56, 71, 109, 0.06);
  border-radius: 12px;
}
.seeker-profile .profile-stat h4 {
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 6px;
}
.seeker-profile .profile-stat p {
  font-size: 14px;
}
@media screen and (max-width: 1700px) {
  .seeker-profile {
    grid-template-columns: 260px calc(100% - 290px);
  }
  .seeker-profile .user-image {
    width: 90px;
    height: 90px;
  }
  .seeker-profile .user-name {
    font-size: 16px;
  }
  .seeker-profile .profile-stat {
    padding: 15px;
  }
  .seeker-profile .profile-stat h4 {
    font-size: 18px;
  }
  .seeker-profile .profile-stat p {
    font-size: inherit;
  }
}
.seeker-profile .font-lg-16 {
  font-size: 14px !important;
}
@media screen and (max-width: 1150px) {
  .seeker-profile {
    grid-template-columns: 100%;
    padding: 40px 0;
  }
  .seeker-profile .left-col {
    position: relative;
    border-radius: 8px;
    top: 0;
  }
  .seeker-profile .left-col ul {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .seeker-profile .left-col ul::-webkit-scrollbar {
    display: none;
  }
  .seeker-profile .left-col li {
    border: 0 !important;
    flex: 1;
    text-align: center;
  }
  .seeker-profile .left-col li a {
    position: relative;
    font-size: inherit;
    padding: 8px 12px;
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
  }
  .seeker-profile .left-col li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    background: var(--secondary);
  }
  .seeker-profile .left-col li a:hover,
.seeker-profile .left-col li a.active {
    background: transparent;
    color: var(--secondary);
  }
  .seeker-profile .left-col li a.active::after {
    height: 2px;
  }
  .seeker-profile .card .card-body {
    padding: 20px;
  }
  .seeker-profile .flex-1 {
    word-break: break-word;
  }
}
@media screen and (max-width: 676px) {
  .seeker-profile .card .card-title {
    font-size: 14px;
  }
  .seeker-profile .card .card-header {
    padding: 16px 20px !important;
  }
  .seeker-profile .card-header .btn {
    min-width: auto;
    min-height: auto;
    padding: 8px 16px;
  }
}

.recent-invoice {
  border: 1.5px dashed var(--gray-400);
  border-spacing: 5px;
  border-radius: 8px;
  padding: 5px 5px 10px;
}
.recent-invoice .title {
  padding: 22px 16px 22px;
  font-size: 16px;
  display: flex;
  align-items: center;
  grid-gap: 8px;
  color: #787E82;
  margin: 0;
}
.recent-invoice ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 165px;
  overflow-y: auto;
}
.recent-invoice li {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.recent-invoice li:nth-child(even) {
  background: #F3F6F9;
}
.recent-invoice li h5 {
  font-weight: 500;
  font-size: 14px;
  margin: 0 0 3px;
}
.recent-invoice li p {
  font-size: 12px;
  color: #787E82;
  margin: 0;
}
.recent-invoice .badge {
  font-size: 10px;
  line-height: 1;
  padding: 5px 8px;
}
@media screen and (max-width: 1700px) {
  .recent-invoice .title {
    padding: 16px;
    font-size: 14px;
  }
  .recent-invoice ul {
    max-height: 140px;
  }
  .recent-invoice li {
    padding: 5px 16px;
  }
  .recent-invoice li h5 {
    font-size: 12px;
  }
  .recent-invoice li p {
    font-size: 10px;
  }
  .recent-invoice .badge {
    padding: 2px 7px;
    font-size: 9px;
  }
}

.min-h-150px {
  min-height: 150px;
}

.min-h-200px {
  min-height: 200px;
}

.min-h-250px {
  min-height: 250px;
}

.min-h-300px {
  min-height: 300px;
}

.invoice-table {
  width: 100%;
}
.invoice-table thead tr {
  background: #F5F8FA;
}
.invoice-table th {
  padding: 14px 40px;
  color: #3F4254;
  font-weight: 500;
}
.invoice-table td {
  padding: 11px 40px;
  color: #787E82;
  font-size: 14px;
}
.invoice-table.sm th, .invoice-table.sm td {
  padding: 12px 14px !important;
}
.invoice-table .btn {
  background: #F5F8FA;
  padding: 9px 16px;
  min-height: auto;
  min-width: auto;
  font-size: 12px;
  border-radius: 4px;
  line-height: 1;
  font-weight: 500;
}
.invoice-table .btn:hover {
  background: var(--gray-200);
}
.invoice-table tr:not(:last-child) {
  border-bottom: 1px solid #F3F6F9;
}
@media screen and (max-width: 1700px) {
  .invoice-table td,
.invoice-table th {
    font-size: inherit;
    white-space: nowrap;
    padding: 10px 20px;
  }
  .invoice-table .badge {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .invoice-table td, .invoice-table th {
    padding: 8px 18px;
  }
}

.notification-card .card-title {
  display: flex;
  align-items: center;
  grid-gap: 35px;
}

.notification-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 35px;
  padding: 35px 30px;
}
.notification-item h5 {
  font-weight: 500;
  font-size: 15px;
  margin: 0 0 8px;
  color: var(--secondary);
}
.notification-item p {
  margin: 0;
  font-size: 14px;
}
.notification-item span {
  color: #C7C7C7;
  font-size: 15px;
}
.notification-item:not(:last-child) {
  border-bottom: 1.5px dashed var(--gray-300);
}
@media screen and (max-width: 1700px) {
  .notification-item {
    padding: 24px 30px;
  }
  .notification-item span,
.notification-item p,
.notification-item h5 {
    font-size: inherit;
  }
}
@media screen and (max-width: 767px) {
  .notification-item {
    padding: 15px 20px;
  }
}

.notification-setting .notification-item {
  grid-template-columns: 1fr 50px 50px;
  padding: 16px 30px;
}

.card.account-setting .card-body {
  padding: 40px 30px 50px;
}

.user-image--holder.profile-image-edit .icon {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5px;
  top: 5px;
  background: #FFFFFF;
  box-shadow: 1px -1px 12px 3px rgba(0, 0, 0, 0.14);
}
.user-image--holder.profile-image-edit .user-icon {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  overflow: hidden;
}
.user-image--holder.profile-image-edit .remove-image {
  bottom: 20px;
  top: auto;
}

.btn-medium {
  font-size: 14px;
  padding: 8px 24px;
  min-height: 40px;
}
@media screen and (max-width: 1700px) {
  .btn-medium {
    font-size: inherit;
  }
}

.gap-40px {
  grid-gap: 40px;
}
@media screen and (max-width: 1700px) {
  .gap-40px {
    grid-gap: 25px;
  }
}

.payment-card-item {
  border: 0.5px dashed #C7C7C7;
  border-radius: 7px;
  padding: 18px 23px;
  font-size: 14px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-card-item > .row {
  width: 100%;
}
.payment-card-item img {
  width: 40px;
}
@media screen and (max-width: 1700px) {
  .payment-card-item {
    font-size: 12px !important;
    padding: 12px 18px 12px 40px !important;
  }
  .payment-card-item .badge {
    font-size: 10px;
  }
  .payment-card-item .icon-holder {
    width: 30px;
    height: 30px;
  }
  .payment-card-item .icon-holder img {
    width: 11px;
  }
}
@media screen and (max-width: 767px) {
  .payment-card-item .row {
    justify-content: space-between;
    row-gap: 8px;
  }
}
.payment-card-item .custom-dropdown {
  min-width: 150px !important;
}
.payment-card-item .icon-holder img {
  width: 20px;
}

.consultation-flow .payment-card-item {
  padding: 18px 23px 18px 45px;
}

.payment-card-select span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border: 1px solid #ccc;
}

.payment-card-select input[type=radio]:checked ~ .payment-card-item {
  background: #f8f9fa;
  border-color: var(--primary);
}

.book-mark * {
  color: #C7C7C7 !important;
}

.filled * {
  color: #ffc358 !important;
}

.chat-listing {
  overflow: hidden;
}
.chat-listing .card-header {
  padding: 31px 40px 20px !important;
}
.chat-listing table {
  width: 100%;
  margin-bottom: 0 !important;
}
.chat-listing table .message-count {
  min-width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #F3F6F9;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 12px;
}
.chat-listing table tbody td, .chat-listing table tbody th {
  padding: 24px 10px;
}
.chat-listing table tbody td:first-child {
  padding-left: 40px;
}
.chat-listing table tbody td:last-child {
  padding-right: 30px;
}
.chat-listing table tbody td {
  font-weight: 500;
  font-size: 15px;
  color: #929AAB;
}
.chat-listing table tbody .user-image {
  width: 56px;
  min-width: 56px;
  height: 56px;
}
.chat-listing table tbody h5 {
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  line-height: 1.2;
}
.chat-listing table tbody tr:hover {
  background: #faf9f9;
  cursor: pointer;
}
.chat-listing table tbody tr:not(:last-child) {
  border-bottom: 1px dashed #C7C7C7;
}
.chat-listing table tbody tr.active * {
  color: var(--secondary);
}
@media screen and (max-width: 1700px) {
  .chat-listing .message-count {
    min-width: 25px;
    height: 25px;
  }
  .chat-listing .message-count,
.chat-listing .font-size-11 {
    font-size: 8px !important;
  }
  .chat-listing table tbody td, .chat-listing table tbody th {
    padding: 14px 4px;
  }
  .chat-listing table tbody td:first-child {
    padding-left: 29px;
  }
  .chat-listing table tbody td:last-child {
    padding-right: 20px;
  }
  .chat-listing table tbody .book-mark svg {
    width: 14px;
  }
  .chat-listing table tbody .user-image {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .chat-listing table tbody * {
    font-size: 12px;
  }
  .chat-listing table tbody h5 {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .chat-listing .message-count {
    min-width: 20px;
    height: 20px;
    margin: 0 !important;
  }
}

.chat-subject {
  font-weight: 700;
  font-size: 20px;
  margin: 35px 0 45px;
  color: var(--secondary);
}
@media screen and (max-width: 1700px) {
  .chat-subject {
    margin: 25px 0;
  }
}

.chat-single-view {
  font-size: 15px;
}
.chat-single-view .chat-quotation {
  font-size: 12px;
  margin: 20px 0;
  padding: 27px;
  background: #F4F4F4;
  border: 1px dashed #C7C7C7;
  border-radius: 8px;
}
.chat-single-view .user-image {
  width: 67px;
  height: 67px;
}
.chat-single-view h5 {
  font-weight: 500;
  color: #000;
  font-size: 16px;
  margin: 0;
  line-height: 1.2;
}
@media screen and (max-width: 1700px) {
  .chat-single-view * {
    font-size: 12px;
  }
  .chat-single-view .user-image {
    width: 46px;
    height: 46px;
  }
  .chat-single-view h5 {
    font-size: 12px;
  }
}

.cases-chat-view .chat-boxes .item:not(.open-state):hover {
  background: #faf9f9;
  cursor: pointer;
}
.cases-chat-view .item {
  padding: 24px 40px;
}
.cases-chat-view .item:not(:last-child) {
  border-bottom: 1px dashed #C7C7C7;
}
.cases-chat-view .user-image {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background-color: #f2f2f2;
  border: 1px solid #f5f4f4;
}
.cases-chat-view h5 {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  line-height: 1.2;
}
.cases-chat-view .icon-holder svg {
  color: #ccc;
}
.cases-chat-view .btn-hover-light:hover {
  background: #f1f1f1;
}
@media screen and (max-width: 1700px) {
  .cases-chat-view * {
    font-size: 12px;
  }
  .cases-chat-view .item {
    padding: 18px 30px;
  }
  .cases-chat-view .user-image {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
  .cases-chat-view h5 {
    font-size: 12px;
  }
}

@media screen and (max-width: 1700px) {
  .book-mark svg {
    width: 14px;
  }
}
.chat-time {
  font-size: 14px;
  white-space: nowrap;
  font-weight: 600;
  color: #C7C7C7 !important;
  display: inline-block;
  margin: 0 0 6px;
}
@media screen and (max-width: 1700px) {
  .chat-time {
    font-size: 11px;
  }
}

.message-view * {
  word-break: break-word;
}

.lang-badge {
  font-size: 14px;
  padding: 7px 22px !important;
  margin: 0;
}

.open-chat--hidden {
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-status {
  position: fixed;
  display: none;
  right: 0;
  top: 200px;
  z-index: 5;
  overflow: hidden;
  padding: 25px 31px;
  background-color: var(--secondary);
  border-radius: 8px 0 0 8px;
  box-shadow: 20px 21px 34px 3px rgba(0, 0, 0, 0.25);
  align-items: center;
  grid-gap: 15px;
  color: #fff;
}
.profile-status .icon img {
  width: 50px;
}
.profile-status h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 6px;
}
.profile-status p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 1700px) {
  .profile-status {
    top: 150px;
    padding: 10px 20px;
  }
  .profile-status .icon img {
    width: 40px;
  }
  .profile-status h5 {
    font-size: 13px;
    margin: 0;
  }
  .profile-status p {
    font-size: inherit;
    line-height: 1.4;
  }
}

.notification-card .notification-item {
  grid-template-columns: 1fr auto;
}
.notification-card .notification-item:hover {
  background-color: var(--gray-200);
}
.notification-card a {
  text-decoration: none;
  color: inherit;
}

.invoice-table--holder {
  color: #000;
  width: 100%;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 30%;
}
.invoice-table--holder span {
  color: #a7a9ad;
}
.invoice-table--holder .table {
  width: 100%;
  margin: 0;
}
.invoice-table--holder .table th {
  color: #a7a9ad;
  font-size: 14px;
}
.invoice-table--holder .table td {
  font-size: 14px;
  color: #000;
  border: 0;
}
.invoice-table--holder .table th, .invoice-table--holder .table td {
  padding: 14px 18px;
}
.invoice-table--holder td {
  line-height: 31px;
}
.invoice-table--holder .table-wrapper {
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 5px;
}

.invoice-flow {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 40px;
}
.invoice-flow .left-col {
  border-right: 1px solid var(--gray-200);
  padding: 0 50px 0 0;
}
.invoice-flow .right-col {
  width: 400px;
  padding: 0 0 0 50px;
}
.invoice-flow .right-col h4 {
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 991px) {
  .invoice-flow {
    grid-template-columns: auto;
  }
  .invoice-flow .left-col {
    border: 0;
  }
}

.badge-profile {
  font-size: 16px;
  position: relative;
  padding: 0 0 0 15px;
}
.badge-profile:before {
  content: "-";
  position: absolute;
  color: var(--primary);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
@media screen and (max-width: 1700px) {
  .badge-profile {
    font-size: inherit;
  }
}

.profile-agent--detail {
  font-size: 16px;
}
@media screen and (max-width: 1700px) {
  .profile-agent--detail {
    font-size: inherit;
  }
  .profile-agent--detail .font-size-20 {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .profile-agent--detail .font-size-20 {
    font-size: 14px !important;
  }
}

.mm-agrent-profile {
  background-color: #ecf1f4;
  padding: 0px 0 80px;
}
.mm-agrent-profile .mm--banner {
  margin-bottom: 30px;
}
@media screen and (max-width: 812px) {
  .mm-agrent-profile .mm--banner {
    margin-bottom: 20px;
  }
}
.mm-agrent-profile .profile-content-holder {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1570px) {
  .mm-agrent-profile .profile-content-holder .consultation-booking-card h4 {
    font-size: 20px;
  }
  .mm-agrent-profile .profile-content-holder .consultation-booking-card h6 {
    font-size: inherit;
  }
}
.mm-agrent-profile .object-cover {
  object-fit: cover;
}
.mm-agrent-profile .opacity-light {
  opacity: 0.1;
}
.mm-agrent-profile .opacity-25 {
  opacity: 0.25;
}
.mm-agrent-profile .opacity-50 {
  opacity: 0.5;
}
.mm-agrent-profile a {
  text-decoration: none;
  word-break: break-all;
}
.mm-agrent-profile .auto-fr {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
}
.mm-agrent-profile .card {
  border: 0;
  background: #fff;
  font-size: 14px;
  margin: 0 0 14px;
  border-radius: 15px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}
.mm-agrent-profile .card .card-body {
  padding: 30px;
}
@media screen and (max-width: 1570px) {
  .mm-agrent-profile .card .card-body {
    padding: 20px;
  }
}
@media screen and (max-width: 1570px) {
  .mm-agrent-profile .card {
    font-size: inherit;
  }
}
.mm-agrent-profile .card-content {
  padding-left: 35px;
}
@media screen and (max-width: 812px) {
  .mm-agrent-profile .card-content {
    padding-left: 0;
  }
}
.mm-agrent-profile .agent-profile-image {
  aspect-ratio: 1/1;
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
}
.mm-agrent-profile .agent-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1570px) {
  .mm-agrent-profile .agent-profile-image {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 812px) {
  .mm-agrent-profile .agent-profile-image {
    width: 100px;
    height: 100px;
  }
}
.mm-agrent-profile .agent-name {
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 5px;
  line-height: 1;
}
@media screen and (max-width: 1700px) {
  .mm-agrent-profile .agent-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 812px) {
  .mm-agrent-profile .agent-name {
    font-size: 20px;
  }
}
.mm-agrent-profile .agent-jd {
  font-size: 15px;
}
.mm-agrent-profile .agent-skills {
  display: flex;
  align-items: center;
  margin: 6px 0 14px;
  flex-wrap: wrap;
}
.mm-agrent-profile .agent-skills span {
  display: inline-block;
  padding-right: 15px;
  font-size: 12px;
}
.mm-agrent-profile .agent-logo {
  width: 60px;
  height: 60px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ECF1F4;
}
@media screen and (max-width: 1570px) {
  .mm-agrent-profile .agent-logo {
    width: 50px;
    height: 50px;
    padding: 5px;
  }
}
.mm-agrent-profile .agent-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mm-agrent-profile .slick-disabled {
  opacity: 0.3;
  user-select: none;
}
.mm-agrent-profile .bullet-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mm-agrent-profile .bullet-list li {
  position: relative;
  padding-left: 25px;
  margin: 0 0 10px;
  line-height: 1.3;
}
.mm-agrent-profile .bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #0BB783;
}
.mm-agrent-profile .skill-badge {
  padding: 10px 20px;
  background-color: var(--light-success-new);
  color: var(--secondary);
  border-radius: 8px;
}
@media screen and (max-width: 1600px) {
  .mm-agrent-profile .skill-badge {
    padding: 7px 14px;
  }
}
.mm-agrent-profile .map-area {
  height: 200px;
  border: 1px solid #FFFFFF;
  filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
  overflow: hidden;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 812px) {
  .mm-agrent-profile .agent-profile--card {
    grid-template-columns: auto;
  }
}

@media screen and (max-width: 991px) {
  .mobile-full-screen .modal-dialog {
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .mobile-full-screen .modal-content {
    border-radius: 0 !important;
    min-height: 100dvh;
  }
  .mobile-full-screen .mobile-view-footer-fixed {
    padding-bottom: 100px !important;
  }
  .mobile-full-screen .mobile-view-footer-fixed .mobile-view-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 14px;
    background-color: #fff;
    border-top: 1px solid #C7C7C7;
  }
}

.booking-slot-modal {
  font-size: 13px;
}
.booking-slot-modal .modal-dialog {
  max-width: 1380px;
}
.booking-slot-modal .agent-profile-image {
  width: 80px;
  height: 80px;
}
.booking-slot-modal .agent-name {
  font-size: 20px;
  font-weight: 600;
}
.booking-slot-modal .agent-jd {
  font-size: 14px;
}
@media screen and (max-width: 1700px) {
  .booking-slot-modal .agent-name {
    font-size: 16px;
  }
  .booking-slot-modal .agent-jd {
    font-size: inherit;
  }
}
.booking-slot-modal .inline-date--picker {
  margin-top: 45px;
  padding: 20px;
  border: 1px solid #ECF1F4;
  box-shadow: none;
}
.booking-slot-modal .inline-date--picker .datepicker-switch {
  line-height: 44px;
  font-size: 15px;
}
.booking-slot-modal .inline-date--picker th, .booking-slot-modal .inline-date--picker td {
  font-weight: 400;
  font-size: 14px;
  min-height: 44px;
  line-height: 44px;
}
@media screen and (max-width: 1700px) {
  .booking-slot-modal .inline-date--picker th, .booking-slot-modal .inline-date--picker td {
    font-size: inherit;
    min-width: 40px;
    min-height: 40px;
    height: auto;
    line-height: 36px;
  }
}
.booking-slot-modal .inline-date--picker th.dow {
  color: var(--primary);
}
.booking-slot-modal .inline-date--picker td {
  border: 1px solid #DFE6E9;
  border-radius: 0px;
}
.booking-slot-modal .inline-date--picker .prev,
.booking-slot-modal .inline-date--picker .next {
  font-size: 26px;
  color: var(--secondary);
  font-weight: 400;
}
@media screen and (max-width: 1700px) {
  .booking-slot-modal .inline-date--picker {
    padding: 10px;
  }
}
@media screen and (max-width: 991px) {
  .booking-slot-modal .inline-date--picker {
    margin-top: 20px;
    padding: 0;
    margin-bottom: 20px;
  }
  .booking-slot-modal .inline-date--picker .datepicker {
    padding: 0;
  }
}
.booking-slot-modal .card {
  box-shadow: none;
  border: 1px solid #DFE6E9;
}
.booking-slot-modal .card .card-body {
  padding: 20px;
}
.booking-slot-modal .cards-holder {
  margin-top: 50px;
  padding: 0 70px;
}
.booking-slot-modal .cards-holder .item {
  position: relative;
}
.booking-slot-modal .cards-holder .item input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.booking-slot-modal .cards-holder .item input:checked ~ .card-info {
  border-color: var(--success);
}
.booking-slot-modal .cards-holder .item .card-info {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  grid-gap: 15px;
  padding: 20px;
  border: 1px solid #DFE6E9;
  border-radius: 10px;
  margin: 0 0 15px;
}
.booking-slot-modal .cards-holder .item .card-info h6 {
  font-weight: 500;
}
.booking-slot-modal .cards-holder .item .card-info p {
  margin: 0;
}
@media screen and (max-width: 1700px) {
  .booking-slot-modal .modal-dialog {
    max-width: 1180px;
  }
}

.slots-holder {
  background-color: #ecf1f4;
  padding: 5px 5px 30px 5px;
  border-radius: 6px;
  min-height: 100%;
}
.slots-holder .consultaion-fee {
  background-color: var(--secondary);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 20px 10px;
  margin: 0 0 20px;
  border-radius: 6px;
}
@media screen and (max-width: 1700px) {
  .slots-holder .consultaion-fee {
    font-size: 14px;
    padding: 14px 10px;
  }
}
.slots-holder .slots {
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 11px;
}
.slots-holder .slot-time {
  position: relative;
}
.slots-holder .slot-time input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.slots-holder .slot-time input:checked ~ label {
  border-color: var(--success);
}
.slots-holder .slot-time label {
  display: flex;
  align-items: center;
  grid-gap: 7px;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  border: 1px solid transparent;
}
.slots-holder .slot-time.disbaled input {
  display: none;
}
.slots-holder .slot-time.disbaled label {
  background-color: #DFE6E9;
  color: #8E8E8E;
  pointer-events: none;
}
.slots-holder .slot-time.disbaled label svg {
  filter: grayscale(1);
}

.assessment-page {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 20%;
}
.assessment-page .page-title {
  font-weight: 600;
  font-size: 24px;
}
.assessment-page .assessment-container {
  border-top: 1px solid var(--gray-300);
  margin-top: 30px;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: flex-start;
}
.assessment-page .step {
  display: none;
}
.assessment-page [data-question] {
  position: relative;
  padding-left: 40px;
}
.assessment-page [data-question]::before {
  content: attr(data-question);
  position: absolute;
  left: 0;
  top: 5px;
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 16px;
  padding: 3px 6px 2px;
  line-height: 1;
}
.assessment-page .left-col {
  position: sticky;
  top: 100px;
  padding: 50px 40px 25px 25px;
}
.assessment-page .left-col .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5px;
}
.assessment-page .left-col .item:not(:last-child) {
  padding-bottom: 50px;
}
.assessment-page .left-col .item:not(:last-child) .icon::after {
  content: "";
  position: absolute;
  right: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 1px;
  height: 120%;
  background: var(--gray-300);
}
.assessment-page .left-col h5 {
  font-weight: 600;
  margin: 0 0 3px;
  font-size: 16px;
}
.assessment-page .left-col p {
  font-size: 12px;
}
.assessment-page .left-col .icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #C7C7C7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assessment-page .left-col .active .icon {
  background: var(--primary);
}
.assessment-page .left-col .active .icon::after {
  background: var(--primary) !important;
}
.assessment-page .right-col {
  padding: 60px 30px;
  border-left: 1px solid var(--gray-300);
}
.assessment-page .right-col h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 35px;
  color: var(--secondary);
}
.assessment-page .right-col label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
  margin: 0 0 8px !important;
}
.assessment-page .right-col .step {
  min-height: 500px;
}
.assessment-page .right-col .form-check {
  display: inline-block;
  margin: 0 0 22px;
}
.assessment-page .right-col .form-check + .form-check {
  margin-left: 22px;
}
.assessment-page .right-col .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: none !important;
}
.assessment-page .right-col input[type=radio],
.assessment-page .right-col input[type=checkbox] {
  accent-color: var(--primary);
}
.assessment-page .right-col .form-group {
  margin: 0 0 35px;
}
.assessment-page .right-col .form-control {
  margin: 0 0 22px;
}
.assessment-page .right-col .btn.prev {
  background: var(--secondary);
  border-color: var(--secondary);
}
.assessment-page .right-col .btn-primary:disabled, .assessment-page .right-col .btn-primary.disabled {
  color: #fff;
  background-color: #ccc;
  border-color: #ccc;
}
.assessment-page .files-uploader {
  position: relative;
  border: 1.4px dashed #C7C7C7;
  border-radius: 4px;
  min-height: 163px;
  max-height: 500px;
  width: 100%;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.assessment-page .files-uploader input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.assessment-page .files-uploader:hover {
  background: #f5f5f5;
}
.assessment-page .files-uploader p {
  font-weight: 700;
  color: #787E82;
}
.assessment-page .sub-element {
  padding: 0px 0 30px 30px;
}
@media screen and (max-width: 1700px) {
  .assessment-page .assessment-container {
    grid-template-columns: 320px 1fr;
  }
  .assessment-page .page-title {
    font-size: 16px;
  }
  .assessment-page p {
    font-size: inherit !important;
  }
  .assessment-page [data-question]::before {
    top: 2px;
  }
  .assessment-page .left-col {
    padding: 30px 20px;
  }
  .assessment-page .left-col h5 {
    font-size: 13px;
  }
  .assessment-page .left-col .icon {
    width: 30px;
    height: 30px;
  }
  .assessment-page .left-col .item:not(:last-child) {
    padding-bottom: 25px;
  }
  .assessment-page .right-col {
    padding: 30px;
  }
  .assessment-page .right-col .form-control,
.assessment-page .right-col label {
    font-size: inherit;
  }
  .assessment-page .right-col .step {
    min-height: 400px;
  }
  .assessment-page .right-col .form-group {
    margin: 0 0 28px;
  }
}
@media screen and (max-width: 1000px) {
  .assessment-page .assessment-container {
    grid-template-columns: auto;
  }
  .assessment-page .left-col {
    position: relative;
    top: 0;
    padding: 0;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
  }
  .assessment-page .left-col .icon::after,
.assessment-page .left-col .icon::before {
    display: none;
  }
  .assessment-page .left-col .item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    padding: 0 10px !important;
    text-align: center;
  }
  .assessment-page .right-col {
    border: 0 !important;
    padding: 0;
  }
}

.payment-consultation {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 20%;
}
.payment-consultation .page-title {
  font-weight: 600;
  font-size: 24px;
}
.payment-consultation .consultation-flow {
  display: grid;
  grid-template-columns: 1fr 500px;
  min-height: calc(100vh - 260px);
  align-items: flex-start;
}
.payment-consultation .consultation-flow .section-info {
  font-weight: 600;
  line-height: 24px;
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  padding: 4px 16px 2px;
  color: #fff;
  font-size: 15px;
  margin: 0 0 19px;
}
.payment-consultation .consultation-flow .left-col {
  padding: 41px;
  border-right: 0.5px solid #C7C7C7;
  border-top: 0.5px solid #C7C7C7;
  min-height: 60vh;
}
.payment-consultation .consultation-flow .right-col {
  border-top: 0.5px solid #C7C7C7;
  padding: 41px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 20px;
  min-height: 60vh;
}
.payment-consultation .consultation-flow .right-col .user-image {
  width: 95px;
  height: 107px;
  border-radius: 6px;
  background: #D9D9D9;
}
.payment-consultation .consultation-flow .right-col .user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.payment-consultation .consultation-flow .right-col .user-name {
  font-weight: 600;
  font-size: 22px;
  font-weight: 700;
  line-height: 27px;
  color: var(--secondary);
  margin: 0px;
}
.payment-consultation .consultation-flow .right-col .user-type {
  font-size: 14px;
  color: #787E82;
  margin: 0;
}
.payment-consultation .consultation-flow .right-col .date {
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary);
  line-height: 29px;
  margin: 0 0 2px;
}
.payment-consultation .consultation-flow .right-col .duration {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  padding: 6px 8px;
  display: inline-block;
  line-height: 1;
}
.payment-consultation .consultation-flow .right-col .pay {
  font-weight: 700;
  color: var(--primary);
  font-size: 36px;
  line-height: 44px;
  margin: 0;
}
.payment-consultation .consultation-flow .right-col .session {
  font-size: 12px;
  color: var(--secondary);
}
@media screen and (max-width: 1700px) {
  .payment-consultation .page-title {
    font-size: 16px;
  }
  .payment-consultation p {
    font-size: inherit !important;
  }
  .payment-consultation .consultation-flow {
    grid-template-columns: 1fr 440px;
    font-size: 12px !important;
  }
  .payment-consultation .consultation-flow .right-col {
    padding: 25px;
  }
  .payment-consultation .consultation-flow .right-col .user-image {
    width: 95px;
    height: 107px;
  }
  .payment-consultation .consultation-flow .right-col .user-name {
    font-size: 16px !important;
    line-height: 24px;
  }
  .payment-consultation .consultation-flow .right-col .user-type {
    font-size: inherit;
  }
  .payment-consultation .consultation-flow .right-col .date {
    font-size: 14px !important;
  }
  .payment-consultation .consultation-flow .right-col .duration {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }
  .payment-consultation .consultation-flow .right-col .pay {
    font-size: 30px;
    line-height: 30px;
  }
  .payment-consultation .consultation-flow .right-col .session {
    font-size: inherit;
  }
}
@media screen and (max-width: 1180px) {
  .payment-consultation .consultation-flow {
    grid-template-columns: 100%;
  }
  .payment-consultation .consultation-flow .left-col {
    border: 0;
    padding: 25px 0;
  }
}

.schedule-consultation {
  display: grid;
  grid-template-columns: 330px 1fr;
  margin: 50px 0;
  grid-gap: 20px;
}
.schedule-consultation .section-info {
  font-weight: 600;
  line-height: 24px;
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  padding: 4px 16px 2px;
  color: #fff;
  font-size: 15px;
  margin: 0 0 19px;
}
@media screen and (max-width: 1700px) {
  .schedule-consultation {
    margin: 30px 0 50px;
  }
}
@media screen and (max-width: 1180px) {
  .schedule-consultation {
    grid-template-columns: 100%;
  }
}

.inline-date--picker {
  background: #FFFFFF;
  box-shadow: 0px 0px 0px 1px #E4E4E4;
  border-radius: 8px;
}
.inline-date--picker .datepicker-switch {
  user-select: none;
  pointer-events: none;
  line-height: 60px;
  color: #000;
  opacity: 1;
}
.inline-date--picker .prev,
.inline-date--picker .next {
  color: var(--primary);
  font-size: 22px;
}
.inline-date--picker > div {
  width: 100%;
}
.inline-date--picker table {
  width: 100%;
}
.inline-date--picker th,
.inline-date--picker td {
  min-width: 45px;
  min-height: 40px;
  line-height: 40px;
  padding: 0;
}
.inline-date--picker th {
  font-size: 15px;
  color: #7A7A7A;
}
.inline-date--picker td {
  font-size: 11px;
}
.inline-date--picker table tr td.today,
.inline-date--picker table tr td.active.active {
  background: var(--primary) !important;
  color: #fff;
}

.available-time--slots .head {
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 20px;
}
.available-time--slots .head .nav {
  flex-wrap: nowrap;
}
.available-time--slots .head .nav-item {
  flex: 1;
}
.available-time--slots .head .btn {
  font-weight: 300;
  width: 100%;
  color: #B1B1B1;
  min-width: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}
.available-time--slots .head .active {
  color: var(--primary);
}
.available-time--slots .body {
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  grid-gap: 20px;
  justify-content: space-between;
}
.available-time--slots .slot-time {
  position: relative;
}
.available-time--slots .slot-time input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.available-time--slots .slot-time input[type=checkbox]:checked ~ .item {
  background: rgba(83, 39, 201, 0.1) !important;
}
.available-time--slots .slot-time input[type=checkbox]:checked ~ .item img {
  filter: brightness(100);
}
.available-time--slots .slot-time input[type=radio]:checked ~ .active,
.available-time--slots .slot-time input[type=radio]:checked ~ .item {
  background: rgba(83, 39, 201, 0.1) !important;
}
.available-time--slots .slot-time input[type=radio]:checked ~ .active img,
.available-time--slots .slot-time input[type=radio]:checked ~ .item img {
  filter: brightness(100);
}
.available-time--slots .slot-time.expired input {
  pointer-events: none;
  user-select: none;
}
.available-time--slots .slot-time.expired .item {
  background: #DFE6E9 !important;
  color: #8E8E8E;
}
.available-time--slots .slot-time.expired .item::before {
  width: 0;
}
.available-time--slots .slot-time.expired .item img {
  filter: brightness(100);
}
.available-time--slots .slots-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
}
.available-time--slots .slots-list .item {
  position: relative;
  background: #fff;
  border-radius: 6px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  grid-gap: 5px;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  overflow: hidden;
}
@media screen and (max-width: 1700px) {
  .available-time--slots .slots-list .item {
    padding: 12px 18px;
  }
}
.available-time--slots .slots-list .item.active {
  background: var(--primary);
  color: #fff;
}
.available-time--slots .not-available {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .available-time--slots .slots-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .available-time--slots .slots-list {
    grid-gap: 8px;
  }
  .available-time--slots .slots-list .item {
    padding: 12px 8px;
    font-size: 12px;
  }
}
@media screen and (max-width: 812px) {
  .available-time--slots .slots-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.assessment-page .right-col label.form-check-label {
  display: inline-block !important;
  margin: 0 20px 22px 0 !important;
  font-weight: 400 !important;
}

.flex-sm-fill {
  padding: 18px 20px;
}
.flex-sm-fill p {
  margin: 0;
}
.flex-sm-fill .pagination {
  margin: 0;
}
.flex-sm-fill .pagination .page-link, .flex-sm-fill .pagination a {
  border: 0;
}
.flex-sm-fill .pagination .page-link {
  width: 38px;
  height: 38px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--secondary);
  box-shadow: none !important;
}
.flex-sm-fill .pagination .active .page-link {
  background: var(--secondary);
  color: #fff;
}
@media screen and (max-width: 1700px) {
  .flex-sm-fill .pagination .page-link {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    font-size: 12px;
  }
}

.flex-fill.d-sm-none {
  justify-content: center !important;
  padding: 15px;
}

.item-remove {
  width: 24px;
  height: 24px;
  position: absolute;
  right: -5px;
  top: -5px;
  background: #f0f0f0;
  border-radius: 100%;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

html .checkout-page,
html #consultaion-payment-detail {
  font-size: 14px;
}
html .checkout-page .payment-consultation,
html #consultaion-payment-detail .payment-consultation {
  padding: 0;
  background: #fff !important;
}
html .checkout-page .consultation-flow,
html #consultaion-payment-detail .consultation-flow {
  grid-gap: 20px;
  min-height: auto;
}
html .checkout-page .consultation-flow .col,
html #consultaion-payment-detail .consultation-flow .col {
  border: 1px solid #ECF1F4;
  border-radius: 10px;
  padding: 20px 40px;
  min-height: auto;
  grid-gap: 30px;
}
@media screen and (max-width: 991px) {
  html .checkout-page .consultation-flow .col,
html #consultaion-payment-detail .consultation-flow .col {
    padding: 0;
    border: 0;
  }
}
html .checkout-page .consultation-flow .right-col .user-image,
html #consultaion-payment-detail .consultation-flow .right-col .user-image {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid #ECF1F4;
  overflow: hidden;
}
html .checkout-page .consultation-flow .right-col .user-name,
html #consultaion-payment-detail .consultation-flow .right-col .user-name {
  font-size: 18px;
  font-weight: 600;
}
html .checkout-page .consultation-flow .right-col p,
html .checkout-page .consultation-flow .right-col .user-type,
html #consultaion-payment-detail .consultation-flow .right-col p,
html #consultaion-payment-detail .consultation-flow .right-col .user-type {
  color: #1D294F;
}
@media screen and (max-width: 991px) {
  html .checkout-page .consultation-flow .right-col,
html #consultaion-payment-detail .consultation-flow .right-col {
    grid-gap: 16px;
    margin-top: 0px;
    padding-top: 20px;
    border-top: 1px solid #C7C7C7;
    border-radius: 0;
  }
}
html .checkout-page .consultation-flow .booking-date,
html #consultaion-payment-detail .consultation-flow .booking-date {
  padding: 9px 15px;
  border-radius: 10px;
  border: 1px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
html .checkout-page .consultation-flow .booking-date .slot_date,
html #consultaion-payment-detail .consultation-flow .booking-date .slot_date {
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}
html .checkout-page .consultation-flow .booking-date .duration,
html #consultaion-payment-detail .consultation-flow .booking-date .duration {
  background: var(--success);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
}
html .checkout-page .consultation-flow .total-fee,
html #consultaion-payment-detail .consultation-flow .total-fee {
  border: 1px solid #DFE6E9;
  border-radius: 10px;
}
html .checkout-page .consultation-flow .accordion-item,
html #consultaion-payment-detail .consultation-flow .accordion-item {
  border: 1px solid #DFE6E9 !important;
  border-radius: 10px;
  margin: 0 0 15px;
}
html .checkout-page .consultation-flow .accordion-item .accordion-body,
html #consultaion-payment-detail .consultation-flow .accordion-item .accordion-body {
  padding: 20px;
}
html .checkout-page .consultation-flow .accordion-item .accordion-header,
html #consultaion-payment-detail .consultation-flow .accordion-item .accordion-header {
  padding: 28px 20px;
}
html .checkout-page .consultation-flow .accordion-item .accordion-header .accordion-button,
html #consultaion-payment-detail .consultation-flow .accordion-item .accordion-header .accordion-button {
  padding: 0 !important;
}
@media screen and (max-width: 1700px) {
  html .checkout-page .consultation-flow .accordion-item .accordion-header,
html #consultaion-payment-detail .consultation-flow .accordion-item .accordion-header {
    padding: 18px;
  }
}
@media screen and (max-width: 1700px) {
  html .checkout-page,
html #consultaion-payment-detail {
    font-size: 12px;
  }
}

.full-page-slider .slick-slide {
  padding: 0 !important;
}
.full-page-slider .slick-dots {
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.full-page-slider .slick-dots li {
  position: relative;
  width: 30px;
  height: 30px;
  margin: 10px 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-page-slider .slick-dots li::after {
  content: "";
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid var(--primary);
  border-radius: 100%;
}
.full-page-slider .slick-dots button {
  padding: 3px;
  border-radius: 100%;
  font-size: 0;
  border: 0;
  background: var(--gray-500);
  margin: 10px 0;
  box-shadow: none !important;
  outline: none;
}
.full-page-slider .slick-dots .slick-active::after {
  opacity: 1;
}
.full-page-slider .slick-dots .slick-active button {
  padding: 5px;
  background: var(--primary);
}
.full-page-slider .logo {
  position: absolute;
  top: 40px;
}
.full-page-slider .logo img {
  max-width: 240px;
}

.provider-home {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) -3.17%, rgba(0, 0, 0, 0) 110.67%), #FAFAFA;
}
@media screen and (max-width: 991px) {
  .provider-home .section-reverse .row {
    flex-direction: column-reverse;
  }
  .provider-home .as-employer-info {
    padding: 60px 0;
  }
  .provider-home .as-employer-info .content {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 991px) {
  .provider-home .provider_free-trial {
    left: 5% !important;
    bottom: 5% !important;
  }
}

.as-employer-info {
  padding: 60px 0;
}

.as-employer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-position: top left;
}
.as-employer h2 {
  font-size: 30px;
  line-height: 46px;
  margin: 0 0 30px;
}
.as-employer h2 span {
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  padding: 5px 11px 5px;
  display: inline-block;
  border-radius: 4px;
  line-height: 1;
}
.as-employer p {
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 20px;
}
.as-employer ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  grid-gap: 15px;
}
.as-employer li {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}
.as-employer .provider_free-trial {
  position: absolute;
  left: 30px;
  bottom: 20%;
}
.as-employer .content {
  padding: 80px 0 60px;
}
.as-employer .image.position-relative {
  padding: 80px 0 0;
}
.as-employer .image.position-relative img {
  max-width: 90%;
}
.as-employer .no-pseudo:before {
  content: none;
}
.as-employer .marketplace-features {
  row-gap: 40px;
}
@media screen and (max-width: 1850px) {
  .as-employer .image {
    max-width: 500px;
    margin: auto;
  }
}
@media screen and (max-width: 1700px) {
  .as-employer h2 {
    font-size: 24px;
    max-width: 400px;
    line-height: 40px;
    margin: 0 0 20px;
  }
  .as-employer li,
.as-employer p {
    font-size: inherit;
    line-height: 1.6;
  }
}
@media screen and (max-width: 1570px) {
  .as-employer .image {
    max-width: 440px;
    margin: auto;
  }
}
@media screen and (max-width: 1366px) {
  .as-employer .image {
    max-width: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 992px) {
  .as-employer .image.position-relative {
    padding: 0;
  }
  .as-employer .content {
    padding: 60px 0 30px;
  }
  .as-employer ul {
    margin: 0 0 40px;
  }
}

.provider_free-trial {
  display: inline-flex;
  align-items: center;
  grid-gap: 15px;
  max-width: 300px;
  background: #FFFFFF;
  box-shadow: 20px 21px 34px 3px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 16px 20px;
}
.provider_free-trial .icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: 100%;
}
.provider_free-trial h5 {
  font-weight: 500;
  font-size: 13px;
  margin: 0 0 1px;
}
.provider_free-trial p {
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
}

.section-footer {
  padding: 45px 0;
  background: var(--primary);
}
.section-footer .icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-footer h4 {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1700px) {
  .section-footer {
    padding: 25px 0;
  }
  .section-footer .icon {
    width: 44px;
    height: 44px;
  }
  .section-footer h4 {
    font-size: 12px;
  }
}

.section-reverse {
  background: var(--secondary);
  color: #fff;
  background-repeat: no-repeat;
  background-position: top right;
}
.section-reverse > .container {
  display: flex;
  align-items: center;
  flex: 1;
}
.section-reverse .image img {
  border-radius: 20px;
}
.section-reverse p,
.section-reverse li {
  color: #C7C7C7;
}
.section-reverse h2 {
  color: #fff;
}
.section-reverse .provider_free-trial {
  left: -50px;
}
.section-reverse .provider_free-trial,
.section-reverse .provider_free-trial p {
  color: #000;
}
.section-reverse .slick-dots button {
  background: #fff !important;
}
@media screen and (max-width: 1700px) {
  .section-reverse .image {
    max-width: 360px;
    margin: auto;
  }
}

.centered-align > .container {
  display: flex;
  align-items: center;
  flex: 1;
}
.centered-align .provider_free-trial {
  left: -50px;
}
.centered-align .section-info .icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 100%;
  background: var(--primary) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.centered-align .section-info .icon img {
  filter: brightness(100);
}
.centered-align .section-info h4 {
  font-weight: 600;
  font-size: 18px;
  color: var(--secondary) !important;
  margin: 0 0 8px !important;
}
.centered-align .section-info p {
  font-size: 14px;
  line-height: 22px;
}
.centered-align .content {
  padding: 0 !important;
}
@media screen and (max-width: 1700px) {
  .centered-align .image {
    margin: auto auto auto 0;
  }
  .centered-align .section-info h4 {
    font-size: 14px;
  }
  .centered-align .section-info p {
    font-size: inherit;
    line-height: 18px;
  }
}

.packages-banner {
  min-height: 250px;
}
@media screen and (max-width: 1700px) {
  .packages-banner {
    min-height: 200px;
  }
}

.provider-landing {
  padding: 54px 0 122px;
}
.provider-landing h3 {
  font-weight: 500;
  text-align: center;
  margin: 0 0 46px;
  font-size: 32px;
}
@media screen and (max-width: 1700px) {
  .provider-landing {
    padding: 50px;
  }
  .provider-landing h3 {
    font-size: 24px;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .provider-landing {
    padding: 30px 0px;
  }
  .provider-landing h3 {
    font-size: 20px;
  }
}

.provider-packages .card {
  position: relative;
  padding: 39px 28px 46px;
  background: #FAFAFA;
  border-radius: 4px;
  border: 0;
}
.provider-packages .card .card-content {
  position: relative;
  z-index: 1;
}
.provider-packages .card .layer-mask {
  position: absolute;
  right: 0;
  top: 0;
}
.provider-packages .card .head {
  margin: 0 -28px 40px 0;
  background: #E1E1E1;
  font-size: 14px;
  color: #787E82;
  line-height: 23px;
  display: flex;
  grid-gap: 8px;
  align-items: center;
  text-transform: uppercase;
}
.provider-packages .card .head strong {
  color: #fff;
  padding: 0px 15px;
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  font-size: 20px;
  line-height: 33px;
  font-weight: 500;
  border-radius: 4px;
}
.provider-packages .card .price {
  font-size: 40px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 48px;
  margin: 0 0 5px;
}
.provider-packages .card p {
  font-size: 15px;
  color: #787E82;
  line-height: 25px;
  margin: 0 0 43px;
}
.provider-packages .card ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-gap: 19px;
  margin: 0 0 43px;
}
.provider-packages .card li {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-size: 14px;
  line-height: 23px;
  color: #787E82;
}
.provider-packages .card .btn {
  font-size: 16px;
  width: 100%;
}
.provider-packages .card.dark {
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  color: #fff;
}
.provider-packages .card.dark .head {
  background: linear-gradient(90deg, #254A65 0%, #152F42 103.74%);
  color: #C7C7C7;
}
.provider-packages .card.dark .head strong {
  background: linear-gradient(88.69deg, #FC3B40 22.26%, #FF6C6C 99.41%);
}
.provider-packages .card.dark .price {
  color: #fff;
}
.provider-packages .card.dark p, .provider-packages .card.dark li {
  color: #C7C7C7;
}
@media screen and (max-width: 1700px) {
  .provider-packages .card {
    padding: 30px 20px 30px;
  }
  .provider-packages .card .head {
    margin: 0 -20px 20px 0;
    font-size: inherit;
  }
  .provider-packages .card .head strong {
    font-size: inherit;
    line-height: 26px;
  }
  .provider-packages .card .price {
    font-size: 28px;
    font-weight: 500;
  }
  .provider-packages .card p {
    font-size: inherit;
    line-height: 18px;
    margin: 0 0 30px;
  }
  .provider-packages .card ul {
    grid-gap: 15px;
    margin: 0 0 30px;
  }
  .provider-packages .card li {
    font-size: inherit;
    line-height: 18px;
  }
  .provider-packages .card .btn {
    font-size: inherit;
  }
}
@media screen and (max-width: 1000px) {
  .provider-packages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .provider-packages {
    grid-template-columns: repeat(1, 1fr);
  }
}

.terms-lists {
  position: relative;
}
.terms-lists li {
  display: block;
}
.terms-lists strong {
  font-size: 16px;
  font-weight: 600;
}
.terms-lists ol {
  counter-reset: item;
  padding-left: 22px;
}
.terms-lists li ol {
  padding-left: 0;
  margin-top: 12px;
}
.terms-lists li.no-before ol {
  padding-left: 30px;
}
.terms-lists ol li {
  margin-bottom: 45px;
}
.terms-lists li ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 40px;
}
.terms-lists li:before {
  content: counters(item, ".") " ";
  counter-increment: item;
  padding-right: 20px;
  position: absolute;
  width: 40px;
  left: 0px;
  font-weight: 600;
}
.terms-lists .alphabet-list, .terms-lists .roman-list {
  position: relative;
  padding-left: 30px;
}
.terms-lists .alphabet-list:before {
  content: counter(item, lower-alpha) ".";
  counter-increment: item;
  padding-right: 20px;
  left: 0px;
}
.terms-lists .roman-list:before {
  content: counter(item, lower-roman) ".";
  counter-increment: item;
  padding-right: 20px;
  left: 0px;
}
.terms-lists li strong, .terms-lists li:not(.terms-lists li ol li):before {
  font-size: 16px;
}
.terms-lists ul li ol li strong {
  font-size: 13px !important;
}

.migration-terms h2 {
  font-size: 18px;
  margin: 40px 0 20px;
  font-weight: 600;
}
.migration-terms a {
  color: var(--primary);
}
.migration-terms .ul-list {
  padding-left: 20px;
}
.migration-terms p {
  position: relative;
  padding-left: 30px;
}
.migration-terms p b {
  position: absolute;
  left: 0;
  top: 0;
}
.migration-terms p strong {
  font-weight: 600;
}
.migration-terms p {
  margin: 0 0 10px;
}
.migration-terms ul {
  padding-left: 30px;
  margin-bottom: 24px;
}
.migration-terms ul ul {
  margin-top: 12px;
  padding-left: 0;
}
.migration-terms li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 30px;
}
.migration-terms li b {
  position: absolute;
  left: 0px;
  top: 0;
  font-weight: 600;
}

.expire-section .expire-heading {
  font-size: 24px;
  margin: 40px 0 17px;
}
.expire-section .expire-text {
  font-size: 14px !important;
  margin-bottom: 27px;
}
.expire-section .expire-body {
  max-width: 70%;
  margin: 40px auto;
  width: 100%;
  padding: 90px;
  background: #f8f8f8;
  border-radius: 6px;
  border-top: 7px solid #7F3FD1;
}
.expire-section .expire-body img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .expire-section .expire-body {
    max-width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .expire-section .expire-body {
    max-width: calc(100% - 30px);
    padding: 50px 30px;
    margin: 20px auto;
  }
  .expire-section .expire-body img {
    max-width: 85%;
  }
}

.about-us h1 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 1700px) {
  .about-us h1 {
    font-size: 32px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .about-us h1 {
    font-size: 28px;
    margin: 0;
  }
}

.about-us--caption {
  padding: 60px 0 50px;
}
.about-us--caption img {
  margin-bottom: -70px;
}
@media screen and (max-width: 1700px) {
  .about-us--caption {
    padding: 30px 0 50px;
  }
}

.about-us--number {
  background: #F7F7F7;
  padding: 180px 0;
}
.about-us--number .box {
  background: #FFFFFF;
  box-shadow: 7px 7px 59px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 43px;
  text-align: center;
}
.about-us--number .box span {
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
}
.about-us--number .box p {
  margin: 0;
  font-size: 14px;
}
@media screen and (max-width: 1700px) {
  .about-us--number {
    padding: 100px 0px;
  }
  .about-us--number .box {
    padding: 30px 15px;
  }
  .about-us--number .box span {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .about-us--number {
    padding: 60px 0;
  }
}

.about-us--slider {
  padding: 80px 0 145px;
  overflow-x: hidden;
}
.about-us--slider .slider-nav {
  margin-top: 80px;
}
.about-us--slider .slider-nav .item {
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  grid-gap: 22px;
  cursor: pointer;
}
.about-us--slider .slider-nav .item span {
  font-weight: 600;
  font-size: 20px;
  color: #787E82;
  display: inline-block;
}
.about-us--slider .slider-nav .slick-current .item span {
  color: var(--secondary);
}
.about-us--slider .slider-nav .slick-slide {
  padding: 0;
}
.about-us--slider .slider-nav .slick-slide:not(:last-child) .item {
  border-right: 1px solid var(--gray-300);
}
.about-us--slider .slider-for {
  padding-left: calc((100% - 1280px) / 2) !important;
}
.about-us--slider .slider-for .slick-list {
  padding: 0 !important;
}
.about-us--slider .slider-for .image {
  min-height: 390px;
  max-height: 390px;
  border-radius: 20px;
  overflow: hidden;
}
.about-us--slider .slider-for .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1700px) {
  .about-us--slider {
    padding: 70px 0 100px;
  }
  .about-us--slider .slider-nav {
    margin-top: 40px;
  }
  .about-us--slider .slider-nav .item {
    grid-gap: 10px;
  }
  .about-us--slider .slider-nav .item span {
    font-size: 14px;
  }
  .about-us--slider .slider-for {
    padding-left: calc((100% - 1080px) / 2) !important;
  }
  .about-us--slider .slider-for .slick-list {
    padding: 0 !important;
  }
  .about-us--slider .slider-for .image {
    position: relative;
    min-height: 300px;
    max-height: 300px;
  }
  .about-us--slider .slider-for .image img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 200%;
    height: 200%;
  }
}
@media screen and (max-width: 767px) {
  .about-us--slider {
    padding: 60px 0;
  }
  .about-us--slider .slider-for {
    padding-left: 20px !important;
  }
  .about-us--slider .slider-for .image {
    min-height: 120px;
    max-height: 120px;
  }
  .about-us--slider .slider-nav .item span {
    font-size: inherit;
  }
}

.mm-inner--banner .container {
  padding: 100px 0;
}
@media screen and (max-width: 1200px) {
  .mm-inner--banner .container {
    padding: 60px;
  }
}
@media screen and (max-width: 676px) {
  .mm-inner--banner .container {
    padding: 60px 5px;
  }
}

.contact-us {
  padding: 60px 0 120px;
}
.contact-us .contact-form--holder {
  display: grid;
  grid-template-columns: 1fr 544px;
  background: #fff;
  filter: drop-shadow(14px 26px 99px rgba(0, 0, 0, 0.08));
  border-radius: 15px;
  overflow: hidden;
}
.contact-us .left-col {
  padding: 90px;
}
.contact-us .left-col .form-group {
  margin: 0 0 18px;
}
.contact-us .left-col .form-control {
  border-radius: 8px;
  letter-spacing: 0.01em;
  color: #000;
  font-size: 14px;
  min-height: 50px;
}
.contact-us .left-col .iti__selected-flag {
  height: 48px;
}
@media screen and (max-width: 1700px) {
  .contact-us .left-col .iti__selected-flag {
    height: 42px;
  }
}
.contact-us .left-col .button-holder {
  margin: 60px 0 0;
}
.contact-us .left-col .contact-info p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
}
.contact-us .left-col .contact-info span {
  margin: 0;
  font-size: 13px;
}
.contact-us .right-col {
  height: 100%;
}
@media screen and (max-width: 1700px) {
  .contact-us {
    padding: 40px 0 70px;
  }
  .contact-us .contact-form--holder {
    grid-template-columns: 1fr 450px;
  }
  .contact-us .left-col {
    padding: 60px;
  }
  .contact-us .left-col .form-control {
    border-radius: 5px;
    font-size: inherit;
    min-height: 44px;
  }
  .contact-us .left-col .button-holder {
    margin: 40px 0 0;
  }
  .contact-us .left-col .contact-info p,
.contact-us .left-col .contact-info span {
    font-size: inherit;
  }
}
@media screen and (max-width: 992px) {
  .contact-us .contact-form--holder {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 767px) {
  .contact-us .left-col {
    padding: 30px;
  }
  .contact-us .contact-info {
    flex-wrap: wrap;
    grid-gap: 20px !important;
  }
  .contact-us .contact-info > div {
    flex: 100%;
  }
}

.search-banner {
  background: var(--secondary);
  background-repeat: no-repeat;
  background-position: top left;
}
.search-banner .container {
  position: relative;
  padding: 72px 15px 100px;
  color: #fff;
}
.search-banner h1 {
  font-size: 32px;
  font-weight: 600;
}
.search-banner h1 span {
  font-weight: 600;
}
.search-banner p {
  color: #c7c7c7;
}
.search-banner .filter--holder {
  position: absolute;
  bottom: -60px;
  left: 15px;
  border: 2px solid #C7C7C7;
  width: calc(100% - 30px);
}
@media screen and (max-width: 1700px) {
  .search-banner .container {
    padding: 70px 15px 80px;
  }
  .search-banner .filter--holder {
    bottom: -45px;
  }
}
@media screen and (max-width: 1200px) {
  .search-banner .container {
    padding: 60px 60px 40px;
  }
  .search-banner .filter--holder {
    position: relative;
    bottom: unset;
    left: unset;
    width: 100%;
  }
}
@media screen and (max-width: 676px) {
  .search-banner .container {
    padding: 60px 15px 40px;
  }
  .search-banner p {
    margin: 0 0 15px;
  }
  .search-banner h1 {
    font-size: 22px;
  }
}

.search-tabs .nav-item:not(:first-child) .nav-link {
  text-align: center;
}

.search-results {
  padding: 140px 0 120px 0;
}
.search-results .tab-content {
  margin-top: 60px;
}
.search-results .nav-tabs {
  margin: 0 0 80px;
}
.search-results .nav-link {
  box-shadow: none !important;
  outline: none !important;
}
@media screen and (max-width: 1700px) {
  .search-results {
    padding: 120px 0 100px;
  }
  .search-results .tab-content {
    margin-top: 40px;
  }
  .search-results .nav-tabs {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1200px) {
  .search-results {
    padding: 60px 0;
  }
}

.nav-tabs {
  border: 0;
}
.nav-tabs .nav-item:last-child .nav-link {
  border-right: 0 !important;
}
.nav-tabs .nav-link {
  font-size: 20px;
  line-height: 24px;
  color: #C7C7C7;
  border: 0;
  padding: 0;
  min-width: 180px;
  text-align: left;
  padding-right: 30px;
  margin-right: 30px;
  min-height: 30px;
  border-right: 1px solid #c7c7c7;
  border-radius: 0;
  transition: all 0.2s ease;
}
.nav-tabs .nav-link.active {
  font-weight: 500;
  font-size: 30px;
}
@media screen and (max-width: 1700px) {
  .nav-tabs .nav-link {
    font-size: 15px;
    min-width: 160px;
  }
  .nav-tabs .nav-link.active {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .nav-tabs .nav-link {
    font-size: inherit;
    min-width: auto;
    padding-right: 12px;
    margin-right: 12px;
  }
  .nav-tabs .nav-link.active {
    font-size: 18px;
  }
}

* {
  box-sizing: border-box;
}
*:not(i) {
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
}

.object-fit-cover {
  object-fit: cover;
}

.rounded-20 {
  border-radius: 20px;
}

.required {
  position: relative;
}
.required::after {
  content: "*";
  position: absolute;
  right: -10px;
  top: 3px;
  font-size: 12px;
  color: red;
}

.no-pseudo:before, .no-pseudo:after {
  content: none !important;
}

html {
  font-size: 15px;
  padding: 0;
  margin: 0;
  font-weight: 400;
}
@media screen and (max-width: 1700px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1570px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 12px;
  }
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1420px !important;
  padding-left: 30px !important;
  padding-right: 30px !important;
}
@media screen and (max-width: 1600px) {
  .container {
    max-width: 1240px !important;
  }
}
@media screen and (max-width: 1350px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.cursor-none {
  cursor: inherit !important;
}

.border-success {
  border-color: var(--success) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.bg-primary {
  background: var(--primary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.bg-green-secondary {
  background: var(--green);
}

.bg-success {
  background: var(--success) !important;
}

.bg-gray {
  background: var(--gray) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-hover-primary:hover {
  color: var(--primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-green-secondary {
  color: var(--green-secondary) !important;
}

.text-danger {
  color: #F15757 !important;
}

.text-primary-blue {
  color: var(--primary-blue) !important;
}

.hover-bg-light:hover {
  background-color: #f8f8f8;
}

.btn {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: inherit;
  box-shadow: none !important;
  outline: none !important;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  font-weight: 400;
  min-height: 40px;
}
@media screen and (max-width: 1570px) {
  .btn {
    padding: 11px 16px;
  }
}
.btn.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary) !important;
}
.btn.btn-primary:active, .btn.btn-primary:hover {
  background-color: var(--primary-active) !important;
  color: var(--white);
}
.btn.btn-primary:active svg, .btn.btn-primary:hover svg {
  color: var(--white) !important;
}
.btn.btn-success {
  background-color: var(--success);
  color: rgb(31, 41, 55);
  border-color: var(--success) !important;
}
.btn.btn-success:active, .btn.btn-success:hover {
  background-color: var(--success) !important;
  filter: brightness(0.95);
}
.btn.btn-success:active svg, .btn.btn-success:hover svg {
  color: var(--white) !important;
}
.btn.btn-hover-light:hover {
  background-color: #f2f2f2;
}
.btn.btn-light-success-new {
  background-color: var(--light-success-new);
}
.btn.btn-light-success-new:active, .btn.btn-light-success-new:hover {
  background-color: var(--light-success-new-dark) !important;
  color: var(--success);
}
.btn.btn-light-primary, .btn.badge-light-primary {
  position: relative;
  background: #fff !important;
  overflow: hidden;
  color: var(--primary);
}
.btn.btn-light-primary::after, .btn.badge-light-primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  inset: 0;
  opacity: 0.1;
}
.btn.btn-icon {
  width: 50px;
  height: 50px;
  padding: 10px;
  min-width: auto;
}
@media screen and (max-width: 1700px) {
  .btn.btn-icon {
    width: 40px;
    height: 40px;
    padding: 5px;
  }
}
.btn.btn-shadow {
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.1) !important;
}

.btn-rounded-sm {
  border-radius: 25px;
  padding: 5px 15px;
  min-width: auto;
  min-height: auto;
}
@media screen and (max-width: 991px) {
  .btn-rounded-sm {
    padding: 3px 9px;
    font-size: 11px;
  }
}

.bg-light-success-new {
  background-color: var(--light-success-new);
}

.radius-4 {
  border-radius: 4px;
}

.radius-8 {
  border-radius: 8px;
}

.radius-12 {
  border-radius: 12px;
}

.radius-20 {
  border-radius: 20px !important;
}

.font-size-9 {
  font-size: 9px !important;
}

.font-size-10 {
  font-size: 10px !important;
}

.font-size-11 {
  font-size: 11px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.font-size-13 {
  font-size: 13px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-15 {
  font-size: 15px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-17 {
  font-size: 17px !important;
}

.font-size-18 {
  font-size: 20px !important;
}

.font-size-20 {
  font-size: 20px !important;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-800 {
  font-weight: 800;
}

.flex-1 {
  flex: 1;
}

.cursor-pointer {
  cursor: pointer;
}

.border-dashed {
  border-style: dashed !important;
}

.border-style-dashed {
  border-style: dashed !important;
}

.hide-arrow::after {
  display: none !important;
}

.custom-dropdown {
  box-shadow: 4px 6px 94px 33px rgba(0, 0, 0, 0.06) !important;
  padding: 7px;
  min-width: 200px !important;
}

.badge {
  font-weight: 400;
  padding: 6px 20px;
  font-size: 12px;
  line-height: 15px;
  border-radius: 4px;
}
.badge.badge-light-primary {
  background-color: #FFE7E7;
  color: #EB6F72;
}
.badge.badge-light-success {
  background-color: rgba(207, 255, 229, 0.54);
  color: #50CD89;
}
.badge.bg-success {
  color: #1f2937;
}
.badge.badge-light-danger {
  background-color: #FFE7E7;
  color: #EB6F72;
}

.text-muted {
  color: var(--gray-500);
}

.min-h-auto {
  min-height: auto !important;
}

.divider {
  width: 100%;
  height: 1.5px;
  border-top: 1px dashed var(--gray-400);
}

.divider-solid {
  width: 100%;
  height: 1.5px;
  border-top: 1px solid var(--gray-400);
}

.divider-text {
  position: relative;
  text-align: center;
  margin: 39px 0;
}
.divider-text::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: #DBDBDB;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.divider-text span {
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--gray-500);
  background: var(--white);
  padding: 0 10px;
}
.divider-text.w-75 {
  max-width: 400px;
}
@media screen and (max-width: 1700px) {
  .divider-text {
    margin: 30px 0;
  }
  .divider-text span {
    font-size: inherit;
  }
}
@media screen and (max-width: 1300px) {
  .divider-text {
    margin: 28px 0;
  }
}

.attached-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  grid-gap: 12px;
  cursor: pointer;
}
.attached-link:hover {
  color: var(--primary);
}
.attached-link input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  cursor: pointer;
}
.attached-link label.error {
  margin: 0 !important;
}
@media screen and (max-width: 1700px) {
  .attached-link img {
    width: 30px;
  }
}

.attached-files {
  display: inline-flex;
  grid-gap: 5px;
  flex-wrap: wrap;
}
.attached-files .item {
  display: inline-flex;
  align-items: center;
  grid-gap: 15px;
  padding: 13px 30px 13px 14px;
  background: #fff;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1;
}
.attached-files .icon {
  background: var(--primary);
  padding: 4px;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 1700px) {
  .attached-files .item {
    font-size: inherit;
    padding: 11px 20px;
  }
}

.feedback-row .iti__selected-flag {
  height: 40px;
}
.feedback-row .col-md-6 {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .feedback-row .col-md-6 {
    flex: auto;
  }
  .feedback-row .col-md-6 .col-md-4 .d-flex {
    justify-content: center;
  }
  .feedback-row .col-md-6 .button-holder, .feedback-row .col-md-6 .profile-img {
    text-align: center !important;
  }
}
@media screen and (max-width: 600px) {
  .feedback-row {
    gap: 0 !important;
    margin-bottom: 0 !important;
  }
}

.user-image--holder {
  position: relative;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}
.user-image--holder .user-icon {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  margin: auto 10px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 6px !important;
}
@media screen and (max-width: 992px) {
  .user-image--holder .user-icon {
    width: 100px;
    height: 100px;
  }
}
.user-image--holder .user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-image--holder .pencil {
  cursor: pointer;
  position: absolute;
  right: -10px;
  bottom: 5%;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: #FFFFFF;
  box-shadow: 1px -1px 12px 3px rgba(0, 0, 0, 0.14);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-image--holder .pencil img {
  width: 15px;
}
.user-image--holder label.error {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -24px;
  width: 200px;
  background: #f5f5f5;
}
.user-image--holder input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.user-image--holder input::-webkit-file-upload-button {
  cursor: pointer;
}

.input-icon-left {
  position: relative;
}
.input-icon-left input {
  padding-left: 60px !important;
}
.input-icon-left .icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.advance-filter .input-icon-left input {
  padding-left: 14px !important;
  padding-right: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.input-icon-right {
  position: relative;
}
.input-icon-right input {
  padding-right: 60px;
}
.input-icon-right .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.section--sub-title {
  margin: 0 0 20px;
  font-size: 15px;
  color: #787E82;
  text-transform: uppercase;
}
@media screen and (max-width: 1700px) {
  .section--sub-title {
    font-size: inherit;
    margin: 0 0 12px;
  }
}

.section--title {
  position: relative;
  font-weight: 600;
  font-size: 40px;
  padding: 0 0 23px;
  margin: 0;
  line-height: 54px;
}
.section--title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--primary);
  box-shadow: -8px 0px 0px 0px var(--primary) inset, -12px 0px 0px 0px #fff inset;
}
@media screen and (max-width: 1700px) {
  .section--title {
    font-size: 20px;
    line-height: 30px;
    padding: 0 0 15px;
  }
}
@media screen and (max-width: 676px) {
  .section--title {
    font-size: 18px;
    line-height: 24px;
  }
}

.section--desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: #152C3E;
  margin: 0;
  max-width: 100%;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 1700px) {
  .section--desc {
    font-size: inherit;
    line-height: 20px;
  }
}

.text-wrap {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-wrap-1 {
  -webkit-line-clamp: 1;
}

.text-wrap-2 {
  -webkit-line-clamp: 2;
}

.text-wrap-3 {
  -webkit-line-clamp: 3;
}

.text-wrap-4 {
  -webkit-line-clamp: 4;
}

.text-wrap-5 {
  -webkit-line-clamp: 5;
}

.show-all--link {
  position: relative;
  display: inline-flex;
  align-items: center;
  grid-gap: 8px;
  color: #000;
  text-decoration: none;
}
.show-all--link::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease;
}
.show-all--link:hover {
  color: var(--primary);
}
.show-all--link:hover::after {
  width: 100%;
}

.slick-slider .slick-list {
  margin: 0 -10px;
}
.slick-slider .slick-slide {
  padding: 0 10px;
}
.slick-slider .individual--card {
  min-width: 100%;
  max-width: 100%;
}

.scale-slider--arrow .slick-arrow {
  right: 40px;
  bottom: 0px;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 100%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scale-slider--arrow .slick-arrow:hover {
  border-color: var(--primary);
}
.scale-slider--arrow .slick-arrow.slick-next {
  right: 0;
}
@media screen and (max-width: 991px) {
  .scale-slider--arrow::before {
    display: none;
  }
}

.scale-slider {
  position: relative;
  padding-bottom: 50px;
}
.scale-slider::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 20%;
  z-index: 1;
  height: 100%;
  background: linear-gradient(270deg, rgba(250, 250, 250, 0) -7.6%, rgb(250, 250, 250) 81.69%);
}
.scale-slider .slick-list {
  padding-left: 66% !important;
}
@media screen and (max-width: 1700px) {
  .scale-slider .slick-list {
    padding-left: 64% !important;
  }
}
@media screen and (max-width: 1024px) {
  .scale-slider .slick-list {
    padding-left: 56% !important;
  }
}
@media screen and (max-width: 991px) {
  .scale-slider .slick-list {
    padding: 0px !important;
    margin: 0 !important;
    padding: 0 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .scale-slider .slick-list {
    padding: 0 0px !important;
  }
}
.scale-slider .slick-slide {
  padding: 0;
  transform: scale(0.9);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.scale-slider .slick-slide > div {
  margin: 10px 0;
}
.scale-slider .slick-current.slick-active {
  transform: scale(1);
  margin-left: 10px;
  margin-block: 0;
}
.scale-slider .slick-slide:not(.slick-current) {
  opacity: 0.3;
  user-select: none;
  pointer-events: none;
}
.scale-slider .slick-arrow {
  position: absolute;
  right: 40px;
  bottom: -33px;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 100%;
  border: 1px solid transparent;
}
@media screen and (max-width: 1700px) {
  .scale-slider .slick-arrow {
    bottom: -27px;
  }
}
.scale-slider .slick-arrow:hover {
  border-color: var(--primary);
}
.scale-slider .slick-arrow.slick-next {
  right: 0;
}
@media screen and (max-width: 991px) {
  .scale-slider::before {
    display: none;
  }
}

.slick-rounded-arrow .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 1px solid var(--secondary);
  background: #fff;
}
.slick-rounded-arrow .slick-arrow:hover {
  border-color: var(--primary);
}
.slick-rounded-arrow .slick-arrow.slick-next {
  left: auto;
  right: -60px;
}
@media screen and (max-width: 1700px) {
  .slick-rounded-arrow .slick-arrow {
    width: 34px;
    height: 34px;
    left: -50px;
  }
  .slick-rounded-arrow .slick-arrow.slick-next {
    right: -50px;
  }
}
@media screen and (max-width: 991px) {
  .slick-rounded-arrow .slick-arrow {
    left: 0px;
    z-index: 1;
  }
  .slick-rounded-arrow .slick-arrow.slick-next {
    right: 0px;
  }
}

.slider-holder .counter {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 40px;
  padding-right: 120px;
}
.slider-holder li {
  margin-top: 0.2em;
  position: relative;
  font-size: 16px;
}
.slider-holder li.current::after {
  content: "/";
  position: absolute;
  right: -12px;
}
.slider-holder .current {
  font-weight: 700;
}

.group-slide--count {
  position: relative;
}
.group-slide--count .slick-next,
.group-slide--count .slick-prev {
  position: absolute;
  right: 40px;
  bottom: 0px;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 100%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.group-slide--count .slick-prev:hover,
.group-slide--count .slick-next:hover {
  border-color: var(--primary);
}
.group-slide--count .slick-next {
  right: 0;
}

.icon-rounded {
  width: 54px;
  height: 54px;
  border-radius: 100%;
  overflow: hidden;
}
.icon-rounded img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown .btn {
  min-width: auto;
  min-height: auto;
}

.dropdown-menu {
  border: 0;
  background: #FFFFFF;
  min-width: 100%;
  box-shadow: 4px 6px 94px -33px rgba(0, 0, 0, 0.06);
  border-radius: 0 0 6px 6px;
  min-width: 250px;
}
.dropdown-menu a {
  box-shadow: none;
  outline: none;
  padding: 10px 17px;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: var(--gray-200);
}
@media screen and (max-width: 1700px) {
  .dropdown-menu {
    min-width: 180px;
  }
  .dropdown-menu a {
    padding: 9px 17px;
  }
}

/** Shimmer Effect Css **/
.shimmer-loader {
  display: none;
}

.shimmer-card {
  position: relative;
  background-color: #FFF;
  border-radius: 6px;
  height: 100%;
  overflow: hidden;
  width: 100%;
  max-width: 300px;
}
.shimmer-card .shimmerBG {
  animation-duration: 2.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  background: #ddd;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 1200px 100%;
}
@-webkit-keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }
  100% {
    background-position: 1200px 0;
  }
}
.shimmer-card .media {
  height: 200px;
}
.shimmer-card .p-32 {
  padding: 32px;
}
.shimmer-card .title-line {
  height: 18px;
  width: 100%;
  margin-bottom: 12px;
  border-radius: 20px;
}
.shimmer-card .content-line {
  height: 12px;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 8px;
}
.shimmer-card .end {
  width: 40%;
}
@media screen and (max-width: 479px) {
  .shimmer-card {
    max-width: 100% !important;
  }
  .shimmer-card .shimmerBG.media {
    height: 95px !important;
    width: 100%;
  }
}

.shimmer-agent-card .shimmerBG.media {
  height: 330px;
}
.shimmer-agent-card .bottom-info {
  position: absolute;
  bottom: 5px;
  left: 18px;
  right: 18px;
  z-index: 1;
}
.shimmer-agent-card .bottom-info > div {
  background: #ebebeb !important;
}
@media screen and (max-width: 1700px) {
  .shimmer-agent-card .shimmerBG.media {
    height: 280px;
  }
}

.slots-shimmer {
  min-height: 300px;
}
.slots-shimmer .shimmer-card .title-line {
  border-radius: 4px;
  height: 44px;
  margin: 0;
}

.iti__flag-container {
  height: auto !important;
}

.page-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
.page-loader #animation-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader svg {
  max-width: 30%;
}

/**modal**/
.modal .modal-content {
  padding: 0;
  border-radius: 15px;
}
.modal .header--title {
  font-size: 24px;
  line-height: 20px;
}
.modal .modal-header {
  padding: 40px 30px 20px;
}
.modal .btn-close {
  position: absolute;
  right: 30px;
  top: 39px;
  padding: 8px;
  border-radius: 100%;
  background-color: #C7C7C7;
  color: #fff;
  background-size: 11px;
  cursor: pointer;
  z-index: 2;
}
.modal .modal-body {
  padding: 50px 30px 35px;
}
@media screen and (max-width: 1700px) {
  .modal .header--title {
    font-size: 20px;
    line-height: 20px;
    padding: 0 0 18px;
  }
}
@media screen and (max-width: 991px) {
  .modal .modal-body {
    padding: 24px;
  }
}

.modal-size-md .modal-dialog {
  max-width: 1000px;
}

.grid {
  display: grid;
}

.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.indicator-progress {
  display: none;
}
[data-kt-indicator=on] > .indicator-progress {
  display: inline-block;
}

[data-kt-indicator=on] > .indicator-label {
  display: none;
}

.iti {
  width: 100%;
}

#schedule-success h4 {
  font-weight: 500;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
}
#schedule-success h5 {
  font-size: 19px;
  line-height: 33px;
  margin: 0 0 40px;
}
#schedule-success #tick-container {
  max-width: 150px;
  margin: 5px auto;
}
@media screen and (max-width: 1700px) {
  #schedule-success h5 {
    font-size: inherit;
    line-height: 20px;
  }
}

.migration-dropdown {
  margin-right: 20px;
}
.migration-dropdown .btn {
  font-family: inherit;
}
.migration-dropdown .btn::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  width: 10px;
  height: 10px;
}
.migration-dropdown .btn .icon {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.migration-dropdown li {
  position: relative;
}
.migration-dropdown li a {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--text-book) !important;
}
.migration-dropdown li a .icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.migration-dropdown li.active a {
  font-weight: 500 !important;
}
@media screen and (max-width: 1700px) {
  .migration-dropdown li a {
    font-size: inherit;
    line-height: 22px;
  }
}

.header-holder li.active .btn {
  font-weight: 500 !important;
}
.header-holder li.active .btn .icon {
  display: block;
}
.header-holder .notification-dropdown .btn.show:before, .header-holder .profile-dropdown .btn.show:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #fff;
  right: auto;
  bottom: -38px;
  transform: rotate(45deg);
  border-left: 6px solid #fff;
  border-right: 6px solid #fff;
  border-top: 6px solid #fff;
  z-index: 999;
}
@media screen and (max-width: 600px) {
  .header-holder .notification-dropdown .btn.show:before, .header-holder .profile-dropdown .btn.show:before {
    bottom: -26px;
  }
}

.min-w-60px {
  min-width: 60px;
}

.min-w-150px {
  min-width: 150px;
}

.min-w-175px {
  min-width: 175px;
}

.min-w-200px {
  min-width: 200px;
}

.min-w-auto {
  min-width: auto;
}

.grid-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.user-profile--icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #fff;
}

.case-rating {
  padding: 54px 0;
}
.case-rating h2 {
  font-weight: 500;
  color: #152C3E;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 35px;
}
.case-rating .item {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}
.case-rating .item h4 {
  color: #787E82;
  font-size: 16px;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .case-rating .item h4 {
    font-size: 13px;
  }
}
.case-rating .item .x-divider {
  width: 100%;
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed #C7C7C7;
}
@media screen and (max-width: 600px) {
  .case-rating .item .x-divider {
    display: none;
  }
}
.case-rating .item .jq-star {
  width: 36px !important;
  height: 28px !important;
  margin: 0 3px;
}
@media screen and (max-width: 600px) {
  .case-rating .item .jq-star {
    min-width: 28px;
    width: 28px !important;
  }
}
@media screen and (max-width: 600px) {
  .case-rating .item {
    justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .case-rating .rating-types {
    display: none !important;
  }
}

.reply-textarea .ql-editor {
  min-height: 100px;
  max-height: 150px;
}
.reply-textarea .ql-toolbar {
  border-radius: 6px 6px 0 0;
}
.reply-textarea .ql-container {
  border-radius: 0 0 6px 6px;
}
.reply-textarea .ql-formats .ql-image {
  display: none !important;
}

.chat-quotation-view {
  background: #f1f1f1;
  padding: 16px 22px;
  border-left: 3px solid var(--primary);
  margin-top: 30px;
}

.border-box {
  padding: 15px;
  border: 1px solid var(--gray-400);
  border-radius: 8px;
  height: 100%;
}
.border-box h6 {
  display: flex;
  align-items: center;
  color: #555;
  justify-content: space-between;
}
.border-box span {
  font-weight: 500;
  color: #000;
  flex: 0 0 50%;
}
.border-box .service-text {
  margin: 0 0 0 -15px;
  background: var(--secondary);
  padding: 3px 15px 1px;
  color: #fff;
}

.info-border-box {
  padding: 10px 20px;
  background: rgb(243, 246, 249);
  border: 1px dashed #DEE3E7;
  box-shadow: 0px 2px 0px rgba(236, 241, 244, 0.35);
  border-radius: 8px;
}
.info-border-box p {
  font-size: 11px;
  margin: 0 0 10px;
  color: #1D294F;
}

@media screen and (max-width: 991px) {
  .shimmer-loading .shimmer-card {
    display: none;
  }
  .shimmer-loading .shimmer-card:first-child {
    display: block;
    margin: auto;
  }
}

.dataTables_length {
  display: none;
}

.pac-container {
  min-width: 240px;
  margin-top: 4px;
  padding: 5px 0;
  border: 1px solid #CACFD2;
  box-shadow: 4px 6px 94px -33px rgba(0, 0, 0, 0.06);
  border-radius: 6px !important;
}
.pac-container .pac-item {
  color: var(--gray-500);
  padding: 4px 17px;
  border: 0 !important;
  cursor: pointer;
}
@media screen and (max-width: 1700px) {
  .pac-container {
    min-width: 200px;
  }
  .pac-container .pac-item {
    font-size: 12px;
    padding: 4px 10px;
  }
  .pac-container .pac-item * {
    font-size: inherit;
  }
}
.pac-container::after {
  background-position: bottom center;
}

.no-before::before {
  display: none;
}

.no-after::after {
  display: none;
}

.table-responsive {
  min-height: 200px;
}
.table-responsive table {
  margin-bottom: 20px;
}

html input.error,
html .error input {
  font-size: inherit !important;
}
html .accordion-button {
  font-size: 16px;
  font-weight: 500;
  padding: 18px 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
@media screen and (max-width: 1700px) {
  html .accordion-button {
    font-size: 14px !important;
  }
}
html .accordion-body {
  padding: 12px 0;
}
html .accordion-button:not(.collapsed) {
  color: var(--primary);
}
html .accordion-button:not(.collapsed)::after {
  filter: grayscale(1);
}

.attachments {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.attachments .icon {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #f1f1f1;
}
.attachments .icon.lg {
  width: 180px;
  height: 180px;
  object-fit: cover;
}
.attachments .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-resize .my-rating {
  min-width: 220px;
}
@media screen and (max-width: 600px) {
  .rating-resize .my-rating {
    min-width: 170px;
  }
}
.rating-resize .jq-star {
  text-align: center;
  min-width: 40px;
}
.rating-resize .jq-star svg {
  width: 20px;
}

.comment-textarea {
  min-height: 140px !important;
}

.rating-types {
  min-width: 216px;
}

.otp-modal .modal-body {
  padding: 30px;
}

body.iti-mobile .iti--container {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
body.iti-mobile .iti__country-list {
  max-height: calc(100% - 60px);
  width: calc(100% - 60px);
  margin: auto !important;
  border-radius: 4px;
}

.visa-dropdown {
  position: relative;
}
.visa-dropdown .visa-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.visa-dropdown .select2-selection__clear {
  position: absolute;
  right: 17px;
  margin-bottom: 2px;
  color: #85888c;
  background: #fff !important;
  z-index: 9;
  height: 12px !important;
  width: 16px;
  display: flex;
  align-items: center;
  margin-right: 0 !important;
}
.visa-dropdown .select2-selection__clear span {
  font-size: 25px;
  font-weight: 400;
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
}

.visa-category-dropdown .select2-search {
  display: none;
}

/** Privacy policy Css **/
.privacy-policy-container .st-anchor {
  font-size: 14px !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  color: #7f40d0 !important;
  word-break: break-word;
}
.privacy-policy-container .st-paragraph {
  margin: 0 0 15px !important;
}
.privacy-policy-container .st-section-title {
  font-weight: 600;
  font-size: 16px !important;
  margin: 30px 0 12px !important;
  color: #000 !important;
}
.privacy-policy-container .col-2x {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .privacy-policy-container .col-2x {
    flex-direction: column;
  }
}
.privacy-policy-container .col-2x > div {
  flex: 1;
}
.privacy-policy-container .st-ul-list {
  margin-left: 5px !important;
  padding-left: 15px !important;
  display: block !important;
  margin-bottom: 20px;
}
.privacy-policy-container .st-ul-list div {
  font-size: 14px;
  margin: 0 0 5px !important;
  line-height: 1.5 !important;
  display: list-item !important;
}
.privacy-policy-container .st-ul-list div .st-ul-list {
  margin: 8px 0 12px !important;
  display: block !important;
  margin-left: 20px !important;
  padding-left: 5px !important;
}
.privacy-policy-container .st-ul-list div .st-ul-list div {
  list-style: circle !important;
}

.select2-loader {
  display: flex;
  padding: 10px 15px;
  background: #fff;
  position: absolute;
  top: 0;
  border-radius: 4px;
  height: 100%;
  margin: 0 !important;
  width: 100%;
  min-height: 58px !important;
  z-index: 9;
  border: 1px solid #C7C7C7 !important;
}
@media screen and (max-width: 1700px) {
  .select2-loader {
    min-height: 46px !important;
  }
}
.select2-loader .visa-icon {
  position: relative;
  top: auto !important;
  left: 0 !important;
  transform: none;
}
.select2-loader .select2-selection__placeholder {
  margin-left: 8px;
  color: #6d757d;
}
.select2-loader .spinner-border {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #6d757d;
}

.feedback-row .button-holder .indicator-progress, .feedback-row .button-holder .btn.btn-lg {
  font-size: 16px;
}

.no-pseudo:before {
  content: none !important;
}

.visa-applicants .agencies-logo {
  min-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.migration-apart-section {
  background: url("../../assets/media/images/benefits-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
}
.migration-apart-section:after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.migration-apart-section .container {
  position: relative;
  z-index: 2;
}
.migration-apart-section .feature-icons {
  height: 70px;
  width: 70px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.migration-apart-section .feature-icons img {
  height: 40px;
  width: 40px;
  min-width: 40px;
}
.migration-apart-section .w-lg-auto {
  width: auto !important;
}
.migration-apart-section h5 {
  font-size: 17px;
}
@media screen and (max-width: 1700px) {
  .migration-apart-section h5 {
    font-size: 14px;
    font-weight: 500;
  }
}

.migration-specialist-section {
  background: url("../../assets/media/images/migration-apart-img.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.new-apart-section {
  background: url("../../assets/media/images/key-feature-bg-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.new-apart-section .feature-icons {
  height: 60px;
  width: 60px;
  min-width: 60px;
}
.new-apart-section .feature-icons img {
  width: 35px;
  height: 35px;
  min-width: 35px;
}
.new-apart-section .key-img {
  object-fit: cover;
  min-height: 100%;
  object-position: top center;
}
.new-apart-section .key-features-row {
  row-gap: 34px;
}

.pricing-section {
  background: url("../../assets/media/images/pricing-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.workinaus-sections {
  position: relative;
  min-height: calc(70dvh - 100px);
  display: flex;
  align-items: center;
}
.workinaus-sections .provider-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
  height: 100%;
}
.workinaus-sections:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("../../assets/media/images/advertise-banner-bg-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.workinaus-sections:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("../../assets/media/images/advertise-banner-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.workinaus-sections .container .row {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 576px) {
  .workinaus-sections {
    padding: 0 !important;
    min-height: auto !important;
  }
  .workinaus-sections .container {
    padding: 0 !important;
  }
  .workinaus-sections .container .row {
    margin: 0;
  }
  .workinaus-sections .container .col-12 {
    padding: 0;
  }
  .workinaus-sections .container .col-12 .content {
    padding: 35px 20px 30px;
    position: relative;
  }
  .workinaus-sections .container .col-12 .content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../../assets/media/images/advertise-banner-bg-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
  .workinaus-sections .container .col-12 .content:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
  }
  .workinaus-sections .container .col-12 .content .inner-content {
    position: relative;
    z-index: 9;
  }
  .workinaus-sections .container .col-12 .image {
    height: 280px;
    overflow: hidden;
  }
  .workinaus-sections:before {
    content: none !important;
  }
  .workinaus-sections:after {
    content: none !important;
  }
  .workinaus-sections .image.position-relative img {
    aspect-ratio: 16/16;
    object-fit: cover;
    object-position: top center;
  }
  .workinaus-sections .provider-banner-overlay {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .workinaus-sections:after {
    content: "" !important;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url("../../assets/media/images/advertise-banner-img.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
  }
}

.provider-home section:not(:last-child) {
  border-bottom: 2px solid #152c3e;
}
.provider-home section:first-child {
  border-top: 2px solid #152c3e;
}
.provider-home section:nth-child(2) {
  border-bottom: none !important;
}
.provider-home .company-logos .slick-slide {
  display: flex;
  justify-content: center;
}
.provider-home button.w-lg-auto {
  width: auto !important;
}
@media screen and (max-width: 576px) {
  .provider-home section.py-5:not(:first-child) {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

.pricing-section ul li:not(:last-child) {
  margin-bottom: 10px;
}
.pricing-section .pricing-card {
  padding: 24px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  min-width: 300px;
}
.pricing-section .pricing-card ul {
  padding-left: 0 !important;
  margin: 30px 0 0 !important;
}
.pricing-section .pricing-card li {
  list-style: none;
}
.pricing-section .pricing-card .tick-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
}

.migration-apart-section .visibility-hidden {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .migration-apart-section .visibility-hidden {
    height: 0;
    margin: 0 !important;
  }
}

.marketplace-features {
  row-gap: 24px;
}

.google-disclosure-page {
  min-height: calc(100dvh - 500px);
}

.btn-primary.bg-orange {
  background: #f94e2e;
  border-color: #f94e2e !important;
}
.btn-primary.bg-orange:hover {
  background: #d9351c !important;
  border-color: #d9351c !important;
}

.form-control:focus {
  border-color: var(--primary) !important;
}

.datepicker-dropdown {
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 10px !important;
}
.datepicker-dropdown::before {
  display: none;
}
.datepicker-dropdown td, .datepicker-dropdown th {
  width: 35px;
  height: 35px;
}
.datepicker-dropdown .today {
  background: rgba(115, 103, 240, 0.5) !important;
}
.datepicker-dropdown td.active.active {
  background: var(--primary) !important;
  color: #fff !important;
}

@media screen and (max-width: 676px) {
  .home-agent-card-responsive {
    margin: 0 0 15px;
    background: #f8f8f8;
  }
  .home-agent-card-responsive .media::before {
    content: "";
    width: 100px;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #ebebeb;
  }
  .home-agent-card-responsive .bottom-info {
    left: 120px;
    width: calc(100% - 120px);
  }
}

.provider-subscription-card .card {
  border-radius: 15px;
  overflow: hidden;
}
.provider-subscription-card .card .card-body {
  padding: 33px;
}
.provider-subscription-card .card .card-body h6 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 13px;
}
.provider-subscription-card .card .card-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.provider-subscription-card .package-card {
  border: 1px solid var(--primary);
}
.provider-subscription-card .package-card .card-body {
  padding: 20px 20px 0 20px;
}
.provider-subscription-card .package-card .bg-success {
  background: #0BC380 !important;
  font-size: 11px;
  padding: 3px 12px;
  border-radius: 20px;
  line-height: 20px;
}
.provider-subscription-card .package-card p {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.provider-subscription-card .package-badge {
  position: relative;
  padding: 5px 50px 5px 14px;
  font-weight: 500;
  font-size: 14px;
  color: var(--primary);
  background-color: var(--primary) 26;
  margin: 0 0 0 -20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.provider-subscription-card .package-badge::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 100%;
  border-right: 24px solid #fff;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
}
.provider-subscription-card .trail-alert {
  background-color: #EAEAEA;
  color: #4F4F4F;
  padding: 7px 10px;
  font-size: 12px;
  margin: 12px -20px 0;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 1700px) {
  .provider-subscription-card .card .card-body {
    padding: 30px 20px;
  }
  .provider-subscription-card .card .card-body h6 {
    font-size: 15px;
  }
  .provider-subscription-card .card .card-body p {
    font-size: inherit;
  }
  .provider-subscription-card .package-card .card-body {
    padding: 20px 20px 0 20px;
  }
  .provider-subscription-card .package-badge {
    font-size: 11px;
  }
}

.landing-agents .group-slide--count .default-screen {
  padding: 50px 0 60px;
}

input[type=password]::-ms-reveal, input[type=password]::-ms-clear {
  display: none;
}

.cases-chat-view .item .col-md-4 {
  width: max-content !important;
}
.cases-chat-view .item .col-md-4 .close-attachment-icon {
  display: none;
}

#message_attachments .col-md-4 {
  width: max-content !important;
}
#message_attachments .col-md-4 .close-attachment-icon {
  display: block;
}

.cases-chat-view .item .col-md-4 {
  margin: 10px 0 !important;
}

.close-attachment-icon {
  position: absolute;
  top: -7px;
  right: -7px;
}
.close-attachment-icon .btn-close {
  background-color: #fff;
  padding: 3px;
  background-size: 45%;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0 0.125rem 0.25rem rgba(165, 163, 174, 0.3);
  transition: 300ms ease;
}
.close-attachment-icon .btn-close:hover {
  background-color: #f1f1f1;
}

.video-banner {
  position: relative;
}
.video-banner .play-btn {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  background: transparent !important;
  padding: 0;
  border: none;
}
.video-banner .mute-btn {
  z-index: 9;
  background: transparent !important;
  padding: 0;
  border: none;
}
.video-banner .mute-btn:focus {
  outline: none;
  border: none;
}
.video-banner .video-control-icons {
  position: absolute;
  bottom: 10%;
  right: 10%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 479px) {
  .video-banner .video-control-icons {
    bottom: 5px;
    right: 5px;
  }
}
.video-banner .video-control-icons .fullscreen-btn {
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  width: 30px;
  height: 30px;
  padding: 8px;
  display: flex;
}
.video-banner video::-webkit-media-controls-play-button,
.video-banner video::-webkit-media-controls-start-playback-button {
  display: none;
}

.video-banner .mm--banner {
  aspect-ratio: 16/4.73;
}

.video-banner:hover .play-btn {
  display: block;
}

.vjs-poster {
  background-color: transparent !important;
}

.tick-wrapper {
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tick-wrapper .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #f94e2e;
  border: 1px solid #f94e2e;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.tick-wrapper .checkmark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #f94e2e;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #f94e2e;
  animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}
.tick-wrapper .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.8s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards infinite;
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

html .employer-packages .our-packages {
  border-bottom: 2px solid #152c3e;
  font-size: 14px;
  background: rgba(244, 246, 252, 0.5);
  padding: 55px 70px 100px;
  position: relative;
}
html .employer-packages .our-packages .fw-500 {
  font-weight: 500;
}
@media screen and (max-width: 1330px) {
  html .employer-packages .our-packages {
    padding: 50px 20px 60px;
  }
  html .employer-packages .our-packages .packages-slider {
    padding: 0 40px;
  }
}
html .employer-packages .our-packages .container {
  max-width: 1470px !important;
  padding: 0 80px !important;
}
@media screen and (max-width: 1280px) {
  html .employer-packages .our-packages .container {
    padding: 0px !important;
  }
}
html .employer-packages .our-packages .remove-icon:before {
  display: none;
}
html .employer-packages .our-packages .slick-slider .slick-slide {
  padding: 0;
}
html .employer-packages .our-packages .slick-prev, html .employer-packages .our-packages .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 26px;
  height: 26px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #f94e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
html .employer-packages .our-packages .slick-prev:before, html .employer-packages .our-packages .slick-next:before {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
html .employer-packages .our-packages .slick-disabled {
  opacity: 0.6;
  user-select: none;
}
html .employer-packages .our-packages .slick-prev {
  left: -40px;
}
html .employer-packages .our-packages .slick-next {
  right: -40px;
}
html .employer-packages .our-packages .slick-next:before {
  content: "";
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-right: 2px;
}
html .employer-packages .our-packages .slick-prev:before {
  content: "";
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin-left: 2px;
}
@media screen and (max-width: 1330px) {
  html .employer-packages .our-packages .slick-prev {
    left: 0px;
  }
  html .employer-packages .our-packages .slick-next {
    right: 0px;
  }
}
html .employer-packages .our-packages .fr-auto {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
html .employer-packages .our-packages [data-gap="25"] {
  display: grid;
  grid-gap: 25px;
}
html .employer-packages .our-packages [data-gap="15"] {
  display: grid;
  grid-gap: 15px;
}
html .employer-packages .our-packages [data-gap="10"] {
  display: grid;
  grid-gap: 10px;
}
html .employer-packages .our-packages [data-gap="8"] {
  display: grid;
  grid-gap: 10px;
}
html .employer-packages .our-packages .title--filson-text {
  font-size: 13px !important;
  line-height: 1.5;
}
html .employer-packages .our-packages li.keywords-list {
  display: block !important;
}
html .employer-packages .our-packages li.keywords-list span {
  cursor: pointer;
  text-decoration: underline;
}
html .employer-packages .our-packages li.keywords-list.remove-icon .keep-icon {
  opacity: 0;
  visibility: hidden;
}
html .employer-packages .our-packages li,
html .employer-packages .our-packages p,
html .employer-packages .our-packages h5 {
  font-size: 12px !important;
}
html .employer-packages .our-packages .discount-payment-duration {
  align-items: center;
  background: rgba(242, 63, 68, 0.2);
  border-radius: 20px 0 0 20px;
  color: #f23f44;
  display: flex;
  flex-direction: row;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  line-height: 16px;
  margin-right: -13px;
  padding: 7px 10px 7px 15px;
}
html .employer-packages .our-packages.yearly-card-active .discount-payment-duration {
  right: auto;
  left: 0;
  border-radius: 0 20px 20px 0;
}
html .employer-packages .our-packages .package-tabs--holder {
  margin: 30px 0 40px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #E2E2E4;
  padding: 11px;
  border-radius: 6px;
}
html .employer-packages .our-packages .package-tabs--holder .nav {
  border: 0;
  background-color: #E2E2E4;
  margin: 0 !important;
  border-radius: 6px;
  padding-bottom: 1px;
}
html .employer-packages .our-packages .package-tabs--holder .nav .nav-link {
  font-size: 13.5px;
  text-align: center;
  cursor: pointer;
  border: 0;
  margin: 0;
  padding: 10px;
  min-width: 140px;
  color: #000000;
  border-radius: 6px;
  border: 1px solid #E2E2E4 !important;
  font-weight: 500;
}
html .employer-packages .our-packages .package-tabs--holder .nav .nav-link.active:hover,
html .employer-packages .our-packages .package-tabs--holder .nav .nav-link.active {
  background-color: #fff;
  color: #f94f2e;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  html .employer-packages .our-packages .package-tabs--holder {
    width: 100%;
  }
  html .employer-packages .our-packages .package-tabs--holder .nav {
    width: 100%;
  }
  html .employer-packages .our-packages .package-tabs--holder .nav-item {
    flex: 1;
  }
  html .employer-packages .our-packages .package-tabs--holder .nav .nav-link {
    min-width: 100%;
  }
}
html .employer-packages .our-packages .package-card-wrapper {
  max-width: 265px;
  max-width: 95%;
  margin: auto;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  border-top: 4px solid #f94f2e;
}
html .employer-packages .our-packages .package-card-wrapper .no-repeat {
  background-repeat: no-repeat !important;
  background-position: 100% 94% !important;
  background-size: contain !important;
}
html .employer-packages .our-packages .package-card-wrapper .package-price {
  font-weight: 400;
}
html .employer-packages .our-packages .package-card-wrapper .qoute-title {
  font-size: 22px !important;
}
html .employer-packages .our-packages .package-card-wrapper .package-head {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: #fff;
  background: #152c3f;
  padding: 14px 13px;
  line-height: 1.3;
  min-height: 70px;
  display: flex;
  align-items: center;
  background-position: center bottom !important;
}
html .employer-packages .our-packages .package-card-wrapper .package-body {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 13px 30px;
}
html .employer-packages .our-packages .package-card-wrapper .package-body h2 {
  font-size: 30px;
  color: #f94f2e;
  font-weight: 600;
}
html .employer-packages .our-packages .package-card-wrapper .package-body p {
  font-size: inherit;
}
html .employer-packages .our-packages .package-card-wrapper .package-head span {
  font-size: 11px;
  color: rgb(255, 220, 7);
  text-transform: uppercase;
}
html .employer-packages .our-packages .package-card-wrapper strong {
  font-weight: 500 !important;
}
html .employer-packages .our-packages .package-card-wrapper p strong {
  font-weight: 500 !important;
}
html .employer-packages .our-packages .package-card-wrapper .package-list li {
  position: relative;
  padding: 3px 5px 3px 25px;
  margin: 0 0 5px !important;
  color: #000;
  font-weight: 500 !important;
  line-height: 1.3;
}
html .employer-packages .our-packages .package-card-wrapper .package-list li:nth-child(8) ~ li {
  display: none !important;
}
html .employer-packages .our-packages .package-card-wrapper .package-list li:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 6px;
  width: 6px;
  height: 12px;
  border: solid;
  border-color: #f23f44;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
html .employer-packages .our-packages .package-card-wrapper .exclusions li::before {
  content: "";
  width: 14px;
  height: 2px;
  border-color: #ff0000;
  top: 10px;
}
html .employer-packages .our-packages .package-card-wrapper .exclusions li::after {
  content: "";
  width: 14px;
  height: 2px;
  background-color: #ff0000;
  position: absolute;
  top: 10px;
  left: 3px;
  transform: rotate(-45deg);
}
html .employer-packages .our-packages .package-card-wrapper .text-expand {
  color: #f94f2e;
}
html .employer-packages .our-packages .package-card-wrapper .text-expand .arrow {
  transform: rotate(90deg);
}
html .employer-packages .our-packages .package-card-wrapper .show-full .package-list li:nth-child(8) ~ li {
  display: flex !important;
}
html .employer-packages .our-packages .package-card-wrapper .show-full .more-text {
  font-size: 0 !important;
}
html .employer-packages .our-packages .package-card-wrapper .show-full .more-text::before {
  content: "Show less";
  font-size: 12px;
}
html .employer-packages .our-packages .package-card-wrapper .show-full .arrow {
  transform: rotate(-90deg);
}
html .employer-packages .our-packages .package-card-wrapper .show-full .arrow {
  transform: rotate(-90deg);
}
html .employer-packages .our-packages .package-card-wrapper .show-full .fa-angle-down {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}
html .employer-packages .our-packages .package-card-wrapper .discount {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  max-width: 90px;
  line-height: 1.2;
  background: #ff0000;
  color: #fff !important;
  border-radius: 2px;
  padding: 5px 10px 5px 0;
  margin: 0 -13px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
}
html .employer-packages .our-packages .package-card-wrapper .discount::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  height: 100%;
  width: 0;
  border-right: 23px solid #ff0000;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
}
html .employer-packages .our-packages .package-card-wrapper .discount strong {
  display: block;
}
html .employer-packages .our-packages .package-card-wrapper .discount-payment-duration {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 7px 10px 7px 15px;
  gap: 10px;
  background: rgba(242, 63, 68, 0.2);
  border-radius: 20px 0px 0px 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  color: #F23F44;
  margin-right: -13px;
}
html .employer-packages .our-packages .package-card-wrapper .btn-primary {
  padding: 8px 40px !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  border: 1px solid transparent !important;
}
html .employer-packages .our-packages .package-card-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
html .employer-packages .our-packages .package-card-wrapper .package-list.new li {
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.3;
  margin: 0 0 1px !important;
}
html .employer-packages .our-packages .package-card-wrapper .qoute-title {
  font-size: 22px !important;
}
html .employer-packages .our-packages .package-card-wrapper:not(.has-limit) .text-expand {
  display: none !important;
}
html .employer-packages .our-packages .package-card-wrapper .text-gray-500 {
  color: #a1a5b7 !important;
}
html .employer-packages .our-packages .package-card-wrapper:hover, html .employer-packages .our-packages .package-card-wrapper:focus {
  background: #f9f9f9 !important;
}
@media screen and (max-width: 1500px) {
  html .employer-packages .our-packages .package-card-wrapper [data-gap="25"] {
    grid-gap: 14px;
  }
  html .employer-packages .our-packages .package-card-wrapper .package-head {
    font-size: 16px;
  }
  html .employer-packages .our-packages .package-card-wrapper .package-body h5 {
    font-size: 15px;
  }
  html .employer-packages .our-packages .package-card-wrapper h5 {
    font-size: 13px;
  }
  html .employer-packages .our-packages .package-card-wrapper .package-list li,
html .employer-packages .our-packages .package-card-wrapper .package-body p {
    font-size: 11px;
  }
}
@media screen and (max-width: 1300px) {
  html .employer-packages .our-packages .package-card-wrapper .package-body {
    min-height: 540px;
  }
}
@media screen and (max-width: 767px) {
  html .employer-packages .our-packages .package-card-wrapper {
    max-width: 100%;
  }
}
html .text-16 {
  font-size: 16px;
}
html .text-14 {
  font-size: 14px;
}
html .end-of-financial-year {
  background: linear-gradient(90deg, #2964A4 44.48%, #122E6C 100%);
  border-radius: 11px;
  padding: 17px 40px 17px 0;
  font-size: 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}
html .end-of-financial-year label {
  background: linear-gradient(90deg, #EA44E5 0%, #731D9F 100%);
  border-radius: 0px 50px 50px 0px;
  font-weight: 700;
  line-height: 16px;
  padding: 10px 20px;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
html .end-of-financial-year p {
  padding-left: 20px;
  margin: 0;
  text-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}
html .end-of-financial-year strong {
  color: #F5FA0C;
}
@media screen and (max-width: 1600px) {
  html .end-of-financial-year {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  html .end-of-financial-year {
    font-size: 14px;
    text-align: center;
    flex-direction: column;
    padding: 0px 10px 18px 10px;
    margin-top: 30px;
  }
  html .end-of-financial-year label {
    border-radius: 20px;
    margin-top: -20px;
    margin-bottom: 10px;
  }
  html .end-of-financial-year p {
    padding: 0;
  }
}
html .text-holder-border {
  border: 2px solid #2A65A4;
  border-radius: 0px 0px 11px 11px;
  padding: 15px;
  border-top: 0;
  max-width: 90%;
  margin: auto;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  html .text-holder-border {
    width: inherit;
  }
}
html .blessed-friday-offer .black-friday-badge {
  position: absolute;
  left: 0;
  top: -10px;
}
html .blessed-friday-offer .end-of-financial-year {
  padding-left: 230px;
}
@media screen and (max-width: 1100px) {
  html .blessed-friday-offer .end-of-financial-year {
    padding: 17px 40px 17px 220px;
    margin: 0;
  }
  html .blessed-friday-offer .black-friday-badge img {
    width: 200px;
  }
}
@media screen and (max-width: 991px) {
  html .blessed-friday-offer .end-of-financial-year {
    padding: 20px;
    margin: 0;
  }
  html .blessed-friday-offer .end-of-financial-year label {
    margin-top: -40px;
  }
  html .blessed-friday-offer .black-friday-badge {
    display: none;
  }
}

.mm--banner.agent_profile_banner {
  aspect-ratio: 16/4.73;
  min-height: auto !important;
  height: auto !important;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .mm--banner.agent_profile_banner {
    min-height: 110px;
  }
}

.agents-section {
  position: relative;
}
.agents-section:after {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-blue-icon.svg) no-repeat center;
  position: absolute;
  width: 334px;
  height: 46px;
  top: 50px;
  right: 0;
  z-index: 9;
}
.agents-section .agents .agent-card {
  border-radius: 20px;
  margin-top: 60px;
  padding: 20px 18px;
  font-size: 13px;
}
@media screen and (max-width: 1700px) {
  .agents-section .agents .agent-card {
    font-size: 12px;
  }
}
.agents-section .agents .agent-card .agent-img-container {
  border-radius: 20px;
  overflow: hidden;
  margin-top: -80px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1570px) {
  .agents-section .agents .agent-card .agent-img-container {
    margin-top: -70px;
  }
}
.agents-section .agents .agent-card .agent-img-container .agent--image {
  object-fit: cover;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 1570px) {
  .agents-section .agents .agent-card .agent-img-container .agent--image {
    width: 110px;
    height: 110px;
  }
}
.agents-section .agents .agent-card .business-logo {
  object-fit: contain;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 1570px) {
  .agents-section .agents .agent-card .rating svg {
    width: 16px;
  }
}
.agents-section .agents .agent-name {
  margin: 15px 0 12px;
  min-height: 48px;
}
.agents-section .agents .agent-name h5 {
  font-weight: 600;
  font-size: 20px;
  color: var(--secondary);
  margin: 0 0 4px;
}
@media screen and (max-width: 1700px) {
  .agents-section .agents .agent-name h5 {
    font-size: 14px;
  }
}
@media screen and (max-width: 1700px) {
  .agents-section .agents .agent-name {
    margin: 10px 0 5px;
  }
}
.agents-section .agents .agent-info .clamp-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.agents-section .agents .agent-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.agents-section .agents .agent-info p {
  position: relative;
  margin-bottom: 0;
  display: inline-block;
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.agents-section .agents .agent-info p:not(:last-child) {
  padding-right: 10px;
  margin-right: 10px;
}
.agents-section .agents .agent-info p:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 12px;
  background-color: #8E8E8E;
}
@media screen and (max-width: 1600px) {
  .agents-section .agents .agent-info p {
    font-size: 12px;
  }
}
.agents-section .agents .agent-skills {
  display: flex;
  align-items: center;
  grid-gap: 5px;
  margin: 8px 0;
  flex-wrap: wrap;
}
.agents-section .agents .agent-skills .badge {
  font-size: 13px;
  border-radius: 25px;
  padding: 8px 10px;
  font-weight: 400;
  background-color: rgba(82, 39, 201, 0.0509803922) !important;
  max-width: 32%;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 1700px) {
  .agents-section .agents .agent-skills .badge {
    font-size: 12px;
  }
}
@media screen and (max-width: 1700px) {
  .agents-section .agents .agent-skills {
    margin: 5px 0;
  }
}
.agents-section .agents .btn {
  min-height: 50px;
}
@media screen and (max-width: 1600px) {
  .agents-section .agents .btn {
    min-width: 80px;
    min-height: 44px;
  }
  .agents-section .agents .btn.btn-primary svg {
    display: none;
  }
}
@media screen and (max-width: 370px) {
  .agents-section .agents .btn {
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .agents-section .agents .agent--image {
    width: 120px;
    height: 120px;
  }
  .agents-section .agents .badge {
    font-size: 10px;
  }
  .agents-section .agents .agent-name h5 {
    font-size: 14px;
  }
  .agents-section .agents .btn.btn-primary svg {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .agents-section::after {
    display: none;
  }
}
.agents-section .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  min-width: 25px;
  min-height: 25px;
  cursor: pointer;
  padding: 0;
  border: none;
  background: transparent;
  left: 15px;
}
.agents-section .slick-arrow#nextArrow {
  left: auto;
  right: 15px;
}
.agents-section ul.slick-dots {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  left: auto;
  right: auto;
  margin-top: 40px;
  justify-content: center;
}
.agents-section ul.slick-dots li {
  list-style: none;
  width: 8px;
  height: 8px;
}
.agents-section ul.slick-dots li button {
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--white);
  font-size: 0;
  padding: 0;
  position: absolute;
}
.agents-section ul.slick-dots li.slick-active button {
  outline: 1px solid var(--primary);
  outline-offset: 2px;
  background: var(--primary);
}

#agentsSlider {
  max-width: 1600px;
  margin: auto;
}

.key-features-section {
  position: relative;
  border-top: 1px solid var(--green);
}
.key-features-section .font-continuo {
  font-size: 44px;
  margin: 0 0 70px;
}
.key-features-section:before {
  content: "";
  background-size: contain;
  background: url("../../assets/media/images/zigzag-lines.svg") no-repeat center;
  position: absolute;
  width: 85px;
  height: 379px;
  top: 0;
  right: 70px;
  z-index: 9;
}
.key-features-section:after {
  content: "";
  background-size: contain;
  background: url("../../assets/media/images/zigzag-lines.svg") no-repeat center;
  position: absolute;
  width: 85px;
  height: 379px;
  bottom: 0;
  left: 70px;
  z-index: 9;
}
.key-features-section .features-section {
  background: url("../../assets/media/images/key-features-bg.png");
  background-size: cover;
  position: relative;
  color: #fff;
  padding: 70px 0;
}
.key-features-section .features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 41, 79, 0.9);
}
.key-features-section .features-section .features-content {
  position: relative;
  z-index: 2;
}
.key-features-section .feature-box h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 25px;
  display: flex;
  align-items: center;
}
.key-features-section .feature-box p {
  max-width: 90%;
}
.key-features-section .feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-secondary);
  border-radius: 8px;
  display: grid;
  place-items: center;
  min-width: 44px;
}
@media screen and (max-width: 1570px) {
  .key-features-section .features-section {
    padding: 40px 0;
  }
  .key-features-section .feature-box h5 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
  }
  .key-features-section .font-continuo {
    font-size: 40px;
    margin: 0 0 40px;
  }
  .key-features-section::after {
    display: none;
  }
}
@media screen and (max-width: 676px) {
  .key-features-section .feature-box h5 {
    font-size: 16px;
  }
  .key-features-section .font-continuo {
    font-size: 30px;
  }
}

.guidance-section {
  position: relative;
  background: url("../../assets/media/images/guidance-bg.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 70px 0;
}
.guidance-section .font-continuo {
  font-size: 70px;
  margin: 0 0 20px;
}
.guidance-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 10px;
  background: var(--success);
}
@media screen and (max-width: 767px) {
  .guidance-section::before {
    content: none;
  }
}
.guidance-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .guidance-section::after {
    content: none;
  }
}
.guidance-section .guidance-steps {
  position: relative;
  z-index: 9;
}
@media screen and (min-width: 1025px) {
  .guidance-section .guidance-steps {
    padding: 0 0px 0 80px;
  }
}
.guidance-section .guidance-box {
  position: relative;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--green-secondary);
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.1);
}
.guidance-section .guidance-box:not(:last-child) {
  margin-bottom: 31px;
}
.guidance-section .guidance-box .union-arrow {
  bottom: -36px;
  position: absolute;
}
@media screen and (min-width: 767px) {
  .guidance-section .guidance-text {
    padding: 0 80px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .guidance-section {
    padding: 0;
  }
  .guidance-section .outer-container {
    padding: 0;
  }
  .guidance-section .guidance-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .guidance-section .guidance-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--success);
  }
  .guidance-section .guidance-steps {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .guidance-section .guidance-steps::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
  }
  .guidance-section .guidance.captions {
    text-align: left;
  }
}
@media screen and (max-width: 1570px) {
  .guidance-section .guidance-text {
    padding: 30px 50px;
  }
  .guidance-section .font-continuo {
    font-size: 44px;
  }
}
@media screen and (max-width: 767px) {
  .guidance-section .guidance-text {
    padding: 30px 20px;
    text-align: center !important;
    min-height: 140px;
  }
  .guidance-section .guidance-text .guidance {
    text-align: center !important;
  }
  .guidance-section .guidance-text .guidance .font-continuo {
    font-size: 30px;
  }
  .guidance-section .guidance-text .guidance .font-continuo br {
    display: none;
  }
}

.text--space-title {
  font-size: 15px;
  letter-spacing: 3.5px;
  margin: 0 0 10px;
}
@media screen and (max-width: 676px) {
  .text--space-title {
    letter-spacing: 2.5px;
    font-size: 14px;
  }
}

.success-stories-section .font-continuo {
  font-size: 48px;
}
.success-stories-section .story-container {
  padding: 60px 0;
}
.success-stories-section .client-image {
  object-fit: cover;
  border: 1px solid #f4f4f4;
}
.success-stories-section .story-card {
  border: 1px solid #ECF1F4;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.success-stories-section .story-card:before {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-green-icon.svg) no-repeat center;
  position: absolute;
  width: 334px;
  height: 46px;
  top: 30px;
  right: -25px;
  z-index: 9;
}
.success-stories-section .story-card:after {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-transparent-icon.svg) no-repeat center;
  position: absolute;
  width: 334px;
  height: 46px;
  top: 90px;
  right: -41px;
  z-index: 9;
}
@media screen and (max-width: 1570px) {
  .success-stories-section .font-continuo {
    font-size: 40px;
  }
}
@media screen and (max-width: 676px) {
  .success-stories-section .story-card::before {
    opacity: 0.2;
  }
}
@media screen and (max-width: 676px) {
  .success-stories-section .font-continuo {
    font-size: 30px;
  }
}

section.blogs-section .font-continuo {
  font-size: 44px;
}
section.blogs-section .btn {
  white-space: nowrap;
}
section.blogs-section .blog-container {
  padding: 50px 0;
}
section.blogs-section .blog-image {
  border-radius: 10px;
}
section.blogs-section .blog-card h5 {
  margin: 10px 0 25px;
  line-height: 1.4;
  font-size: inherit;
}
section.blogs-section .blog-card p {
  font-size: 13px;
}
@media screen and (max-width: 1570px) {
  section.blogs-section .font-continuo {
    font-size: 40px;
  }
  section.blogs-section .blog-card h5 {
    font-weight: 500;
    font-size: inherit;
  }
  section.blogs-section .footer-banner .font-continuo {
    font-size: 36px;
  }
}
@media screen and (max-width: 676px) {
  section.blogs-section .font-continuo {
    font-size: 30px;
  }
  section.blogs-section .footer-banner .font-continuo {
    font-size: 30px;
  }
}

@media screen and (max-width: 1600px) {
  .blog-card h5 {
    font-size: 14px;
  }
}

.footer-banner {
  margin-bottom: -45px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 676px) {
  .footer-banner {
    margin-bottom: 40px;
  }
  .footer-banner .banner {
    flex-direction: column;
  }
}

.search-agents-container .col-lg-3 {
  padding: 9px;
}

.btn-action--fixed {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2) !important;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  position: fixed;
  z-index: 999;
  right: -110px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  min-width: 320px;
  text-decoration: none;
}
.btn-action--fixed svg {
  transform: rotate(90deg);
  margin-right: 8px;
}
@media screen and (max-width: 1570px) {
  .btn-action--fixed {
    font-size: 13px;
    padding: 12px 16px;
    right: -125px;
  }
}

.landing-title {
  font-family: "Continuo";
  font-size: 48px;
  font-weight: 300;
}
@media screen and (max-width: 1700px) {
  .landing-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .landing-title {
    font-size: 30px;
  }
}

.migration--banner {
  position: relative;
  display: flex;
  grid-template-columns: repeat(2, 1fr);
}
.migration--banner .left-col,
.migration--banner .right-col {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 100px 80px;
  flex: 1;
}
.migration--banner .left-col {
  position: relative;
  padding-left: calc((100% - 1360px) / 2);
  border-right: 1px solid var(--primary);
}
.migration--banner .left-col::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.migration--banner .left-col .content {
  position: relative;
  z-index: 1;
}
.migration--banner h1 {
  font-size: 44px;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 30px;
  font-weight: 700;
}
.migration--banner ul {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}
.migration--banner ul li {
  font-size: 15px;
  margin: 0 0 20px;
  display: flex;
  align-items: flex-start;
  grid-gap: 15px;
}
.migration--banner ul li span {
  background-color: var(--primary);
  color: #fff;
  font-size: 16px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1700px) {
  .migration--banner h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 1600px) {
  .migration--banner .left-col {
    padding: 60px;
    padding-left: 120px;
  }
  .migration--banner h1 {
    font-size: 28px;
  }
  .migration--banner ul li {
    font-size: 13px;
  }
}
@media screen and (max-width: 1350px) {
  .migration--banner h1 {
    font-size: 30px;
  }
  .migration--banner .left-col {
    padding: 40px;
    padding-left: 20px;
  }
  .migration--banner ul li {
    font-size: inherit;
  }
}
@media screen and (max-width: 800px) {
  .migration--banner h1 {
    font-size: 24px;
  }
  .migration--banner .right-col {
    display: none;
  }
  .migration--banner .left-col {
    padding: 20px;
  }
}

.migration-benefits {
  padding: 60px 0;
}
.migration-benefits .row {
  margin: 50px 0 0;
}
.migration-benefits .icon {
  padding: 10px;
}
.migration-benefits .icon svg {
  width: 25px;
  height: 25px;
}
.migration-benefits h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 25px;
}
.migration-benefits p {
  font-size: 15px;
  max-width: 85%;
}
@media screen and (max-width: 1700px) {
  .migration-benefits {
    padding: 50px 0;
  }
  .migration-benefits h4 {
    font-size: 16px;
    margin: 0px 0 10px;
  }
  .migration-benefits p {
    font-size: inherit;
  }
}
@media screen and (max-width: 991px) {
  .migration-benefits {
    padding: 40px 0;
  }
  .migration-benefits .row {
    margin: 40px 0 0;
  }
}

.migration-packages {
  background-color: rgba(236, 241, 244, 0.6);
  padding: 70px 0px;
}
.migration-packages .agents-section::before {
  display: none;
}
.migration-packages .agents-section::after {
  display: none;
}
.migration-packages .row {
  margin: 40px 0;
}
.migration-packages .row h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 20px;
}
.migration-packages .row p {
  font-size: 15px;
  margin: 0;
}
@media screen and (max-width: 1700px) {
  .migration-packages {
    padding: 40px 0;
  }
  .migration-packages .row h4 {
    font-size: 16px;
  }
  .migration-packages .row p {
    font-size: inherit;
  }
}
@media screen and (max-width: 1570px) {
  .migration-packages p {
    font-size: inherit;
  }
}
@media screen and (max-width: 1430px) {
  .migration-packages .migration-package-slider {
    padding: 0 40px 40px;
  }
  .migration-packages .slick-arrow {
    left: 0;
  }
  .migration-packages .slick-arrow#nextArrow {
    right: 0;
  }
}

.migration-package-card {
  max-width: 400px;
  font-size: 13px;
}
.migration-package-card .card-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 580px;
  grid-gap: 40px;
  background-color: #fff;
  border: 1px solid #ECF1F4;
  border-radius: 20px;
}
.migration-package-card p {
  margin: 0;
}
.migration-package-card h6 {
  font-weight: 500;
}
.migration-package-card .badge {
  border-radius: 12px;
}
.migration-package-card .package-title {
  font-size: 24px;
  font-weight: 700;
}
.migration-package-card .package-label {
  font-size: 13px;
  background: #FFFFFF;
  border: 1px solid #ECF1F4;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 8px 20px;
  margin-top: 12px;
}
.migration-package-card .package-label strong {
  font-weight: 500;
}
.migration-package-card .package-price {
  color: var(--primary);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  align-items: center;
  grid-gap: 3px;
}
.migration-package-card .package-price span {
  font-size: 20px;
  font-weight: 600;
}
.migration-package-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}
.migration-package-card ul li {
  position: relative;
  margin: 0 0 8px;
  padding-left: 25px;
}
.migration-package-card ul li::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='15' height='15' rx='7.5' fill='%230BB783'/%3E%3Cpath d='M3.5 8.07115L5.78571 10.3569L11.5 4.64258' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  background-size: cover;
}
.migration-package-card .btn-success {
  border-radius: 0 0 25px 25px;
  font-size: 15px;
  padding-top: 40px;
  margin-top: -28px;
}

@media screen and (min-width: 576px) {
  .w-md-auto {
    width: auto !important;
  }
}
#welcome-migration .modal-dialog {
  max-width: 700px;
}
#welcome-migration .image-holder {
  padding: 50px 30px 40px;
  background: linear-gradient(270.09deg, rgba(75, 46, 192, 0) 0.08%, rgba(75, 46, 192, 0.85) 62.42%);
}
#welcome-migration .image-holder .content {
  max-width: 60%;
}
#welcome-migration .image-holder h4 {
  font-size: 22px;
  font-size: 500;
  color: #fff;
  margin: 0 0 20px;
}
#welcome-migration .image-holder p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}
#welcome-migration .migration-option--list {
  padding: 20px 30px 20px;
}
#welcome-migration .migration-option--list h4 {
  font-size: 18px;
  font-size: 500;
  color: #000;
  margin: 0 0 25px;
}

.testimonials-section {
  padding: 60px 0;
}
.testimonials-section .font-continuo {
  font-size: 48px;
}
@media screen and (max-width: 1570px) {
  .testimonials-section .font-continuo {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .testimonials-section .font-continuo {
    font-size: 34px;
  }
}
.testimonials-section .card {
  position: relative;
  border: 1px solid #ECF1F4 !important;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.testimonials-section .card:before {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-green-icon.svg) no-repeat center;
  position: absolute;
  width: 334px;
  height: 46px;
  top: 50px;
  right: -100px;
  z-index: 9;
}
@media screen and (max-width: 1570px) {
  .testimonials-section .card::before {
    display: none;
  }
}

.articals-holder {
  padding: 50px 0 70px;
}
.articals-holder .font-continuo {
  font-size: 48px;
}
@media screen and (max-width: 1570px) {
  .articals-holder .font-continuo {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .articals-holder .font-continuo {
    font-size: 34px;
  }
}
.articals-holder .blog-image {
  border-radius: 10px;
}

.fee-services-section {
  position: relative;
}
.fee-services-section:before {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-green-icon.svg) no-repeat center;
  position: absolute;
  width: 334px;
  height: 46px;
  top: 150px;
  right: -25px;
  z-index: 9;
}
.fee-services-section:after {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-transparent-icon.svg) no-repeat center;
  position: absolute;
  width: 334px;
  height: 46px;
  top: 30px;
  right: -41px;
  z-index: 9;
}
.fee-services-section .layers-effect:after {
  content: "";
  background-size: contain;
  background: url(../../assets/media/images/wave-blue-icon.svg) no-repeat center;
  position: absolute;
  width: 360px;
  height: 46px;
  bottom: 36%;
  left: -140px;
  z-index: 9;
  transform: rotate(180deg);
  opacity: 0.7;
}
@media screen and (max-width: 1570px) {
  .fee-services-section::after, .fee-services-section::before {
    display: none;
  }
  .fee-services-section .layers-effect::after {
    display: none;
  }
}

.add-layer-effect {
  position: relative;
}
.add-layer-effect:before {
  content: "";
  background-size: contain;
  background: url("../../assets/media/images/zigzag-lines.svg") no-repeat center;
  position: absolute;
  width: 85px;
  height: 279px;
  top: 0;
  right: 70px;
  z-index: 9;
  opacity: 0.7;
}
.add-layer-effect:after {
  content: "";
  background-size: contain;
  background: url("../../assets/media/images/zigzag-lines.svg") no-repeat center;
  position: absolute;
  width: 85px;
  height: 279px;
  bottom: 0;
  left: 70px;
  z-index: 9;
  opacity: 0.7;
}
@media screen and (max-width: 1570px) {
  .add-layer-effect::after, .add-layer-effect::before {
    display: none;
  }
}

.labour-faq {
  padding: 50px 0 70px;
}
.labour-faq .landing-title {
  font-size: 48px;
  margin: 0 0 40px !important;
}
@media screen and (max-width: 1570px) {
  .labour-faq .landing-title {
    font-size: 34px;
  }
}
.labour-faq .accordion-item {
  border: 1px solid #DFE6E9;
  margin: 0 0 10px;
  border-radius: 12px;
  overflow: hidden;
}
.labour-faq .accordion-item .accordion-button {
  padding: 20px;
  grid-gap: 10px;
  align-items: center;
}
.labour-faq .accordion-item .accordion-button.collapsed {
  background-color: rgba(236, 241, 244, 0.5019607843) !important;
}
.labour-faq .accordion-item .accordion-body {
  padding: 0 20px 20px 40px;
}

.custom-nav-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  padding: 5px;
  gap: 3px;
}
.custom-nav-tabs .btn {
  padding: 10px 20px;
}
@media screen and (min-width: 991px) {
  .custom-nav-tabs .btn {
    min-width: 160px;
  }
}
.custom-nav-tabs .btn:hover {
  background-color: #f9f9f9;
}
.custom-nav-tabs .btn.active {
  background-color: var(--primary);
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
