@keyframes simple-spinner-3-jump7456 {
  15% {
    border-bottom-right-radius: 3px;
  }
  25% {
    transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
.loading-overlay {
  position: absolute;
  background: linear-gradient(90deg, #f4f5ff 10%, #ebf8ff);
  width: 100%;
  height: 100%;
  z-index: 90;
  display: none;
}

.loading-container {
  /*position: fixed;*/
  position: absolute;
  top: 50%;
  z-index: 100;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.loading-container .loader-body {
  width: 48px;
  height: 48px;
  margin: auto;
  position: relative;
}

.loading-container .loader-body:before {
  content: "";
  width: 48px;
  height: 5px;
  background: rgba(var(--aurora-color-rgb), 0.2);
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: simple-spinner-3-shadow324 0.5s linear infinite;
  animation: simple-spinner-3-shadow324 0.5s linear infinite;
}

.loading-container .loader-body:after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--aurora-color);
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  -webkit-animation: simple-spinner-3-jump7456 0.5s linear infinite;
  animation: simple-spinner-3-jump7456 0.5s linear infinite;
}

@font-face {
  font-family: "FontAwesome";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/webfonts/fa-solid-900.ttf");
}
display-flex {
  display: flex;
  display: -webkit-flex;
}

.display-flex {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  -o-justify-content: space-between;
  -ms-justify-content: space-between;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
}

.display-flex-center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -o-justify-content: center;
  -ms-justify-content: center;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
}

.signup-content {
  display: flex;
  display: -webkit-flex;
  padding: 90px 0;
}

.signin-content {
  display: flex;
  display: -webkit-flex;
  padding: 90px 0;
}

.social-login {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  -o-align-items: center;
  -ms-align-items: center;
  margin-top: 80px;
}

.socials {
  display: flex;
  display: -webkit-flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.socials li {
  padding: 5px;
}
.socials li:last-child {
  margin-right: 0;
}
.socials li a {
  text-decoration: none;
}
.socials li a i {
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 14px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  transform: translateZ(0);
  -moz-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  -o-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.socials li:hover a i {
  -webkit-transform: scale(1.3) translateZ(0);
  transform: scale(1.3) translateZ(0);
}

list-type-ulli {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.link:focus {
  text-decoration: none;
  outline: none;
  transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
}
.link:active {
  text-decoration: none;
  outline: none;
  transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
}

.input {
  outline: none;
  appearance: unset !important;
  -moz-appearance: unset !important;
  -webkit-appearance: unset !important;
  -o-appearance: unset !important;
  -ms-appearance: unset !important;
  width: 100%;
  display: block;
  border: none;
  border-bottom: 1px solid #999;
  padding: 6px 30px;
  box-sizing: border-box;
}
.input::-webkit-outer-spin-button {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0;
}
.input::-webkit-inner-spin-button {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0;
}
.input:focus {
  outline: none;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
  border-bottom: 1px solid #222;
}
.input:focus::-webkit-input-placeholder {
  color: #222;
}
.input:focus::-moz-placeholder {
  color: #222;
}
.input:focus:-ms-input-placeholder {
  color: #222;
}
.input:focus:-moz-placeholder {
  color: #222;
}
.input::-webkit-input-placeholder {
  color: #999;
}
.input::-moz-placeholder {
  color: #999;
}
.input:-ms-input-placeholder {
  color: #999;
}
.input:-moz-placeholder {
  color: #999;
}

input[type=checkbox] {
  appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  -ms-appearance: checkbox !important;
}
input[type=checkbox]:not(old) + label {
  display: inline-block;
  line-height: 1.5em;
  margin-top: 6px;
}
input[type=checkbox]:not(old) + label > span {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 15px;
  margin-bottom: 3px;
  border: 1px solid #999;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  background: #fff;
  background-image: -moz-linear-gradient(white, white);
  background-image: -ms-linear-gradient(white, white);
  background-image: -o-linear-gradient(white, white);
  background-image: -webkit-linear-gradient(white, white);
  background-image: linear-gradient(white, white);
  vertical-align: bottom;
}
input[type=checkbox]:not(old):checked + label > span {
  background-image: -moz-linear-gradient(white, white);
  background-image: -ms-linear-gradient(white, white);
  background-image: -o-linear-gradient(white, white);
  background-image: -webkit-linear-gradient(white, white);
  background-image: linear-gradient(white, white);
}
input[type=checkbox]:not(old):checked + label > span:before {
  content: "\f00c";
  display: block;
  color: #222;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  font-family: FontAwesome;
  font-weight: 700;
}

input[type=radio] {
  appearance: radio !important;
  -moz-appearance: radio !important;
  -webkit-appearance: radio !important;
  -o-appearance: radio !important;
  -ms-appearance: radio !important;
}

.fig-img {
  max-width: 100%;
  height: auto;
}

.fig {
  margin: 0;
  margin-bottom: 50px;
  text-align: center;
}

p {
  margin-bottom: 0;
  font-size: 15px;
  color: #777;
}

.form-title {
  line-height: 1.66;
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #222;
  font-size: 36px;
  margin-bottom: 33px;
}

.main {
  background: #f8f8f8;
  padding: 150px 0;
}

.clear {
  clear: both;
}

.sign-container {
  width: 900px;
  background: #fff;
  margin: 10% auto;
  box-shadow: 0 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 15px 16.83px 0.17px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
}

.position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.signup {
  margin-bottom: 150px;
}

.signup-form {
  width: 50%;
  margin-left: 75px;
  margin-right: 75px;
  padding-left: 34px;
}

.signup-image {
  width: 50%;
  overflow: hidden;
  /*margin: 0 55px;*/
  margin: 0 25px;
  margin-top: 45px;
}

.signin-form {
  width: 50%;
  overflow: hidden;
  margin-right: 90px;
  margin-left: 80px;
}

.signin-image {
  width: 50%;
  overflow: hidden;
  margin-left: 110px;
  margin-right: 20px;
  margin-top: 10px;
}

#signin {
  margin-top: 16px;
}

.signup-image-link {
  font-size: 14px;
  color: #222;
  display: block;
  text-align: center;
}

.term-service {
  font-size: 15px;
  color: #222;
}

.register-form {
  width: 100%;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
}
.form-group:last-child {
  margin-bottom: 0;
}

.agree-term {
  display: inline-block;
  width: auto;
}

.form-submit {
  display: inline-block;
  background: #e1be1d;
  color: #fff;
  border: 1px solid #e1be1d;
  width: auto;
  padding: 15px 39px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.form-submit:hover {
  background: #fff;
  color: #e1be1d;
  border: 1px solid #e1be1d;
}

.label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #222;
}

.label-has-error {
  top: 22%;
}

label.error {
  position: relative;
  background: url(../images/unchecked.gif) no-repeat;
  background-position-y: 3px;
  padding-left: 20px;
  display: block;
  margin-top: 20px;
}

label.valid {
  display: block;
  position: absolute;
  right: 0;
  left: auto;
  margin-top: -6px;
  width: 20px;
  height: 20px;
  background: 0 0;
}
label.valid:after {
  content: "\f269";
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 16px;
  color: green;
}

.label-agree-term {
  position: relative;
  top: 0%;
  transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
}

.material-icons-name {
  font-size: 18px;
}

.social-label {
  display: inline-block;
  margin-right: 15px;
}

.fa-facebook {
  background: #3b5998;
}

.fa-g {
  background: linear-gradient(to bottom, #c31a1a, #fbbd00 50%, #31aa52 75%, #4086f4 75%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.customErrorClass {
  border-bottom: 1px solid #e72734;
}

.error-message {
  color: #e72734;
  font-size: 0.7rem;
}

@media screen and (max-width: 1200px) {
  .sign-container {
    width: calc(100% - 30px);
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .sign-container {
    max-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .signup-content {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
  }

  .signin-content {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
  }

  .signup-form {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding: 0 30px;
    width: auto;
  }

  .signin-image {
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
    order: 2;
    -moz-order: 2;
    -webkit-order: 2;
    -o-order: 2;
    -ms-order: 2;
    width: auto;
  }

  .signup-image {
    width: auto;
  }

  .signin-form {
    width: auto;
    order: 1;
    -moz-order: 1;
    -webkit-order: 1;
    -o-order: 1;
    -ms-order: 1;
    margin-right: 0;
    margin-left: 0;
    padding: 0 30px;
  }

  .social-login {
    justify-content: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    -o-justify-content: center;
    -ms-justify-content: center;
  }

  .form-button {
    text-align: center;
  }

  .form-title {
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .social-login {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
  }

  .social-label {
    margin-right: 0;
    margin-bottom: 10px;
  }
 
}
.edit-coach-page .input-group-text {
  font-size: 0.9rem;
}
.edit-coach-page input.form-control {
  color: #696e77;
  transition: 0.4s;
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
  box-shadow: none !important;
}
.edit-coach-page input.form-control:focus {
  border-color: var(--anna-color);
  box-shadow: none;
}
.edit-coach-page input.form-control::placeholder {
  color: rgba(153, 153, 153, 0.568627451);
}
.edit-coach-page button.form-select {
  color: rgba(153, 153, 153, 0.568627451);
  text-align: left;
}
.edit-coach-page textarea.form-control {
  color: #696e77;
  transition: 0.4s;
  box-shadow: none !important;
}
.edit-coach-page textarea.form-control:focus {
  border-color: var(--anna-color);
  box-shadow: none;
}
.edit-coach-page textarea.form-control::placeholder {
  color: rgba(153, 153, 153, 0.568627451);
}
.edit-coach-page .certificates-container .single-certificate .wrapper {
  position: relative;
}
.edit-coach-page .certificates-container .single-certificate .wrapper textarea {
  padding-bottom: 30px;
}
.edit-coach-page .certificates-container .single-certificate .wrapper input[type=file] {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.edit-coach-page .certificates-container .single-certificate .wrapper input[type=file]:focus {
  border-color: var(--anna-color);
  box-shadow: none;
}
.edit-coach-page .careers-container .single-career .wrapper {
  position: relative;
}
.edit-coach-page .careers-container .single-career .wrapper textarea {
  padding-bottom: 30px;
}
.edit-coach-page .careers-container .single-career .wrapper input[type=date] {
  position: absolute;
  width: 100%;
  bottom: 0;
}
.edit-coach-page .careers-container .single-career .wrapper input[type=date]:focus {
  border-color: var(--anna-color);
  box-shadow: none;
}
.edit-coach-page button.add-item {
  outline: 0;
  background-color: transparent;
  border: 1px dashed #ddd;
  width: 100%;
  height: 30px;
  font-size: 1rem;
  color: gray;
  transition: 0.3s;
  border-radius: 0.25rem;
}
.edit-coach-page button.add-item:hover {
  border-color: gray;
}

.sign-in-page > .container > .row {
  min-height: 100vh;
  align-items: center;
}
.sign-in-page .forget-password a {
  color: #888;
}
.sign-in-page ul.login-method {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sign-in-page ul.login-method li a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  background-color: var(--anna-color);
  transition: 0.3s;
}
.sign-in-page ul.login-method li a:hover {
  border-radius: 0;
}

.verify-email-page > .container > .row {
  min-height: 100vh;
  align-items: center;
}

.card-bordered {
  border: 1px solid #ebebeb;
}

.card {
  border: 0;
  border-radius: 20px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.padding {
  padding-top: 10rem !important;
}

body {
  background-color: #f9f9fa;
}

.card-header {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding: 15px 20px;
  background-color: transparent;
  border-bottom: 1px solid rgba(77, 82, 89, 0.07);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header .card-title {
  padding: 0;
  border: none;
}
.card-header > * {
  margin-left: 8px;
  margin-right: 8px;
}
.card-header > *:last-child {
  margin-right: 0;
}

h4.card-title {
  font-size: 17px;
}

.btn-secondary {
  color: #4d5259 !important;
  background-color: #e4e7ea;
  border-color: #e4e7ea;
  color: #fff;
}

.btn-xs {
  font-size: 11px;
  padding: 2px 8px;
  line-height: 18px;
}
.btn-xs:hover {
  color: #fff !important;
}

.card-title {
  font-family: Roboto, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(77, 82, 89, 0.07);
}

.ps-container {
  position: relative;
  -ms-touch-action: auto;
  touch-action: auto;
  overflow: hidden !important;
  -ms-overflow-style: none;
}

.media-chat {
  padding-right: 64px;
  margin-bottom: 0;
  padding-right: 64px;
  margin-bottom: 0;
}
.media-chat .media-body {
  -webkit-box-flex: initial;
  flex: initial;
  display: table;
}
.media-chat .media-body p {
  position: relative;
  padding: 6px 8px;
  margin: 4px 0;
  background-color: #f5f6f7;
  border-radius: 3px;
  font-weight: 500;
  color: #4d5259;
  position: relative;
  padding: 6px 8px;
  margin: 4px 0;
  background-color: #f5f6f7;
  border-radius: 3px;
}
.media-chat .media-body p.meta {
  background-color: transparent !important;
  padding: 0;
  opacity: 0.8;
}
.media-chat .media-body a{
    text-decoration:none;
    color:#000;
}
.media-chat .media-body a:hover{
    text-decoration:underline;
    opacity:0.8;
}
.media {
  padding: 16px 12px;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  padding: 16px 12px;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  padding: 16px 12px;
  -webkit-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
  display: flex;
}
.media .avatar {
  flex-shrink: 0;
}
.media > * {
  margin: 0 8px;
}

.avatar {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 36px;
  text-align: center;
  border-radius: 100%;
  background-color: #f5f6f7;
  color: #8b95a5;
  text-transform: uppercase;
}

.media-body {
  min-width: 0;
}

.media-meta-day {
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 0;
  color: #8b95a5;
  opacity: 0.8;
  font-weight: 400;
}
.media-meta-day::before {
  margin-right: 16px;
  content: "";
  -webkit-box-flex: 1;
  flex: 1 1;
  border-top: 1px solid #ebebeb;
}
.media-meta-day::after {
  content: "";
  -webkit-box-flex: 1;
  flex: 1 1;
  border-top: 1px solid #ebebeb;
  content: "";
  -webkit-box-flex: 1;
  flex: 1 1;
  border-top: 1px solid #ebebeb;
  margin-left: 16px;
}

.media-chat.media-chat-reverse {
  padding-right: 12px;
  padding-left: 64px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.media-chat.media-chat-reverse .media-body p {
  /*float: right;*/
  /*clear: right;*/
  background-color: #e1be1d;
  /*color: #fff;*/
}
.media-chat.media-chat-reverse .media-body a{
    text-decoration:none;
    color:#000;
}
.media-chat.media-chat-reverse .media-body a:hover{
    opacity:0.8;
    text-decoration:underline;
}
.border-light {
  border-color: #f1f2f3 !important;
}

.bt-1 {
  border-top: 1px solid #ebebeb !important;
}

.publisher {
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  padding: 12px 20px;
  background-color: #f9fafb;
}
.publisher > * {
  margin: 0 8px;
}
.publisher > *:first-child {
  margin-left: 0;
}

.publisher-input {
  -webkit-box-flex: 1;
  flex-grow: 1;
  border: none;
  outline: none !important;
  background-color: transparent;
}

button {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

input {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

optgroup {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

select {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

textarea {
  font-family: Roboto, sans-serif;
  font-weight: 300;
}

.publisher-btn {
  background-color: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  overflow: -moz-hidden-unscrollable;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  background-color: transparent;
  border: none;
  color: #e1be1d;
  font-size: 16px;
  cursor: pointer;
  overflow: -moz-hidden-unscrollable;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.file-group {
  position: relative;
  overflow: hidden;
}
.file-group input[type=file] {
  position: absolute;
  opacity: 0;
  width: 20px;
  left: 0;
}

.text-info {
  color: #FBC604 !important;
}

.dropdown-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.dropdown-item .form-check-input:checked {
  accent-color: #fbc604;
}
.dropdown-item .form-check-input:focus {
  box-shadow: none;
  border: none;
}

.form-select:focus {
  border-color: #e1be1d;
  box-shadow: none;
}

#js-user-avatar-input[type=file] {
  height: 0;
  overflow: hidden;
  width: 0;
}
[type=file] + label {
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  font-weight: 500;
  margin-bottom: 1rem;
  outline: none;
  padding: 0.3rem 20px;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;
}
[type=file] + label.btn-2 {
  background-color: #e1be1d;
  border-radius: 50px;
  overflow: hidden;
}
[type=file] + label.btn-2::before {
  color: #e1be1d;
  content: "\f382";
  font-family: "FontAwesome";
  font-size: 70%;
  height: 100%;
  right: 130%;
  line-height: 3.1;
  position: absolute;
  top: 0px;
  transition: all 0.3s;
}
[type=file] + label.btn-2:hover {
  background-color: #fff;
  border: 1px solid #e1be1d;
  color: #e1be1d;
}
[type=file] + label.btn-2:hover::before {
  right: 82%;
}

.gradient-custom {
  background: #d3d3d3;
}

#biography:focus {
  border-color: #fbc604;
  box-shadow: none;
}

.popup-booking-box,.popup-testimonial-box,.popup-terms-box {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: rgba(252, 252, 252, 0.87);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}

.popup-booking-box.show,.popup-testimonial-box.show,.popup-terms-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  border-radius: 0;
  top: 0;
}

.popup-booking-box.show form,.popup-testimonial-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

.popup-booking-box button.bookingClose,.popup-testimonial-box button.testimonialClose,.popup-terms-box button.termsClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: #e1be1d;
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  transform: rotate(0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.4s;
  color: #e1be1d;
}

.popup-booking-box button.bookingClose:hover,.popup-testimonial-box button.testimonialClose:hover,.popup-terms-box button.termsClose:hover {
  background-color: #fff;
  border-color: transparent;
  transform: rotate(90deg);
}

.popup-booking-box form,.popup-testimonial-box form  {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
}

.popup-booking-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid #e1be1d;
  background-color: transparent;
  padding-left: 30px;
  color: #000;
  outline: none;
}

.popup-booking-box form button {
  position: absolute;
  top: 0;
  background-color: transparent;
  border: none;
  font-size: 12px;
  font-weight: 700;
  right: 0px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
  color: #fff;
  background: #e1be1d;
}

.popup-booking-box form button:hover {
  transform: scale(1.3);
}

.fa-circle-check {
  color: #fff;
  font-size: 1.5rem;
}

.ui-datepicker-header, .ui-state-default {
  background: #e1be1d !important;
}

.ui-state-active {
  background: #763803 !important;
  border: 1px solid #e1be1d !important;
}

@media (max-width: 1199px) {
  .popup-booking-box form {
    max-width: 600px;
  }
}
body {
  --aurora-color: #362a26;
  /*--anna-color: #fbc604;*/
  --anna-color: #e1be1d;
  --aurora-color-rgb: 54, 42, 38;
  --anna-color-rgb: 251, 198, 4;
  font-family: 'Poppins', sans-serif;
  /*font-family: "Montserrat Alternates", sans-serif;*/
  background-color: #fff;
}

body.load {
  overflow: hidden;
}

body.load .loading-container,
body.load .loading-overlay {
  display: block;
}

.cursor-pointer {
  cursor: pointer;
}

.nice-shadow {
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}

.text-aurora {
  color: var(--aurora-color);
}

.text-anna {
  color: var(--anna-color);
}

.bg-aurora {
  background-color: var(--aurora-color);
}

.dropdown.with-hover:hover .dropdown-menu {
  display: block;
}
.dropdown.hide-toggle .dropdown-toggle::after {
  content: unset;
}
.dropdown .dropdown-divider {
  height: 0;
  opacity: 1;
  border-top: 1px solid #eff2f7;
}
.dropdown .dropdown-toggle::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  border-top: 0;
  border-left: 0;
  margin-left: 5px;
  margin-right: 5px;
}
.dropdown .dropdown-menu {
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -webkit-animation-name: DropDownSlide;
  animation-name: DropDownSlide;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  overflow: auto;
  max-height: 900px;
  max-width: 300px;
}
.dropdown .dropdown-menu li {
  margin: 0.25rem 0.5rem;
}
.dropdown .dropdown-menu li .dropdown-item.active, .dropdown .dropdown-menu li .dropdown-item:active, .dropdown .dropdown-menu li .dropdown-item:hover, .dropdown .dropdown-menu li .dropdown-item:focus {
  color: #fff;
  border-radius: 5px;
  transition: 0.3s;
  background-color: var(--anna-color);
}
@keyframes DropDownSlide {
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  font-size: 22px;
  border-radius: 10px;
  background-color: var(--aurora-color);
  cursor: pointer;
}

.back-to-top:hover {
  color: #fff;
}

.aurora-btn {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: transparent;
  line-height: 1;
  text-decoration: none;
  outline: 0;
  border: 0;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s;
  border-radius: 5px;
}
.aurora-red-btn {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: transparent;
  line-height: 1;
  text-decoration: none;
  outline: 0;
  border: 0;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s;
  border-radius: 5px;
}
.aurora-green-btn {
  position: relative;
  display: inline-block;
  color: #fff;
  background-color: transparent;
  line-height: 1;
  text-decoration: none;
  outline: 0;
  border: 0;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.3s;
  border-radius: 5px;
}

.aurora-btn:hover::before,.aurora-red-btn:hover::before,.aurora-green-btn:hover::before  {
  transform: scale(1.1);
}

.aurora-btn:hover .btn-inner span,.aurora-red-btn:hover .btn-inner span,.aurora-green-btn:hover .btn-inner span  {
  opacity: 0;
  transform: scale(0.5);
}

.aurora-btn:hover .btn-inner figure,.aurora-red-btn:hover .btn-inner figure,.aurora-green-btn:hover .btn-inner figure  {
  transform: translateY(0);
}

.aurora-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /*background-color: #fbc604;*/
  background-color: #e1be1d;
  border-radius: inherit;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.aurora-red-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #dc3545;
  border-radius: inherit;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.aurora-green-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #198754;
  border-radius: inherit;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}

.aurora-btn .btn-inner,.aurora-red-btn .btn-inner,.aurora-green-btn .btn-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0%);
  padding: 0.75rem 2rem;
}

.aurora-btn .btn-inner span,.aurora-red-btn .btn-inner span,.aurora-green-btn .btn-inner span {
  will-change: transform;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.aurora-red-btn .btn-inner span,.aurora-green-btn .btn-inner span {
 color:#ffff;
}
.aurora-btn .btn-inner figure,.aurora-red-btn .btn-inner figure,.aurora-green-btn .btn-inner figure {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  will-change: transform;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.aurora-btn .btn-inner figure .icon,.aurora-red-btn .btn-inner figure .icon,.aurora-green-btn .btn-inner figure .icon {
  margin: auto;
  height: 16px;
  width: 16px;
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.aurora-btn.white {
  background-color: #fff;
  /*color: #fbc604;*/
  color: #e1be1d;
  transition: 0.3s;
  /*border: 1px solid #fbc604;*/
  border: 1px solid #e1be1d;
}

.aurora-btn.white:hover {
  color: #fff;
  /*background-color: #fbc604;*/
  background-color: #e1be1d;
}

.aurora-btn.white:hover .btn-inner span {
  opacity: 1;
  transform: scale(1);
}

.aurora-btn.white:before {
  content: none;
}

.banner {
  /*margin-top: 100px;*/
  padding-top:100px;
  height: 50vh;
  position: relative;
  z-index: 1;
  color: #333;
}
@media (max-width: 576px) {
  .banner {
    height: 300px;
  }
}
.banner .breadcrumb-item a {
  color: var(--aurora-color);
}
.banner .breadcrumb-item + .breadcrumb-item {
  padding-left: 0.7rem;
}
.banner .breadcrumb-item + .breadcrumb-item::before {
  color: var(--aurora-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 0.7rem;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.5);
}

/* title style */
.special-header {
  position: relative;
}

.special-header::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 10px;
  width: 10px;
  top: 42px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--aurora-color);
  left: 45px;
}

.special-header::before {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  width: 100px;
  background-color: var(--aurora-color);
  top: 45px;
  left: 0;
}

.special-header.text-center::after {
  left: calc(50% - 5px);
}

.special-header.text-center::before {
  left: calc(50% - 50px);
}

/* glide slider */
.glide__bullets {
  transform: none;
  position: unset;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.glide__bullets .glide__bullet {
  background-color: #ddd;
  border-radius: 5px;
  width: 20px;
}

.glide__bullets .glide__bullet--active {
  background-color: var(--aurora-color);
}

/* user cards */
.card-12 .single-card-12 .figure-wrapper {
  display: block;
  text-align: center;
}

.card-12 .single-card-12 .figure-wrapper:hover figure.figure {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.card-12 .single-card-12 .figure-wrapper:hover figure.figure img {
  -webkit-filter: none;
  filter: none;
}

.card-12 .single-card-12 .figure-wrapper figure.figure {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-clip-path 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.card-12 .single-card-12 .figure-wrapper figure.figure img {
  display: block;
  width: 300px;
  height: 300px;
  max-width: 100%;
  object-fit: cover;
  transform: scale(1.1);
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-filter 0.3s;
}

.card-12 .single-card-12 .card-title {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.card-12 .single-card-12 .card-title:hover {
  color: var(--aurora-color);
}

.card-12 .single-card-12 .separator {
  display: block;
  width: 40px;
  height: 3px;
  background-color: #e7e7e7;
  margin: 1.25rem auto;
}

.card-12 .single-card-12 .info {
  line-height: 1.58;
  color: #95979d;
}

/* testimonial cards */
.card-5 .single-testimonial {
  background-color: #f4f7fa;
  padding: 70px 50px;
  transition: all 0.4s ease;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.card-5 .shapes .shape {
  position: absolute;
  max-width: 100%;
}

.card-5 .shapes .shape.shape-1 {
  top: 0;
  left: -30px;
  height: 90px;
  width: 90px;
}

.card-5 .shapes .shape.shape-2 {
  right: 20px;
  bottom: 20px;
}

.card-5 .inner-content {
  position: relative;
  z-index: 0;
}

.card-5 .inner-content .text h4 {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.card-5 .inner-content .author {
  position: relative;
  margin-top: 40px;
}

.card-5 .inner-content .author img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.card-5 .inner-content .author h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--aurora-color);
}

.card-5 .inner-content .author h4 span {
  color: #95979d;
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}

.search-page .search-page-accordion.accordion {
  position: sticky;
  top: 110px;
}
.search-page .search-page-accordion.accordion .accordion-button {
  box-shadow: none;
}
.search-page .search-page-accordion.accordion .accordion-button:not(.collapsed) {
  background-color: rgba(var(--aurora-color-rgb), 0.1);
  color: #000;
}
.search-page .checkbox-content .checkBox {
  display: block;
  cursor: pointer;
  width: 25px;
  height: 25px;
  border: 3px solid rgba(255, 255, 255, 0);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 0px 2px var(--aurora-color);
}
.search-page .checkbox-content .transition {
  width: 60px;
  height: 60px;
  background-color: var(--aurora-color);
  top: -52px;
  left: -52px;
  position: absolute;
  transform: rotateZ(45deg);
  z-index: 100;
  transition: 300ms ease;
}
.search-page .checkbox-content input[type=radio] {
  position: absolute;
  left: 50px;
  visibility: hidden;
}
.search-page .checkbox-content input[type=radio]:checked + .transition {
  left: -10px;
  top: -10px;
}

.extra-feature .feature-box {
  position: relative;
  z-index: 1;
  transition: all 0.4s;
  overflow: hidden;
  padding: 50px;
  background: #fff;
  color: #fff ;
  border-radius: 5px;
  border: 2px solid #f6f6f6;
}

.extra-feature .feature-box p {
  color: #fff ;
}
.extra-feature .feature-box:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  right: -1px;
  border-radius: 5px;
  bottom: -1px;
  transition: all 0.4s;
  outline: solid 20px #fff;
  outline-offset: -20px;
  background-color: var(--anna-color);
}
.extra-feature .feature-box .special-header::before {
  top: 35px;
  background-color: #fff;
}
.extra-feature .feature-box .special-header::after {
  top: 32px;
  background-color: #fff;
}
.extra-feature .feature-box p {
  margin-bottom: 0;
  font-size: 1.2rem;
  transition: all 0.4s;
}
@media (max-width: 575px) {
  .extra-feature .feature-box {
    padding: 35px;
  }
}

.contact-us-page .contact-info-box .info-media {
  margin-bottom: 20px;
}

.contact-us-page .contact-info-box .info-media .media-icon {
  width: 75px;
  height: 75px;
  background-color: #fff;
  line-height: 54px;
  border-radius: 10px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: var(--anna-color);
  border: 5px solid var(--anna-color);
  margin-right: 25px;
  transition: all ease 0.4s;
}

.contact-us-page .contact-info-box .info-media .media-body {
  flex: 1;
}

.custom-form-control {
  height: 60px;
  width: 100%;
  background-color: #f2f5f9;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: #696e77;
  display: block;
  border-radius: 10px;
  border: 2px solid transparent;
  font-weight: 500;
  letter-spacing: -0.02px;
  transition: 0.4s;
}
.custom-form-control:focus {
  border-color: var(--anna-color);
}
.custom-form-control ::-webkit-input-placeholder {
  color: #959aa1;
}
.custom-form-control ::-moz-placeholder {
  color: #959aa1;
}
.custom-form-control :-ms-input-placeholder {
  color: #959aa1;
}
.custom-form-control ::-ms-input-placeholder {
  color: #959aa1;
}
.custom-form-control ::placeholder {
  color: #959aa1;
}

textarea.custom-form-control {
  height: 180px;
  padding-top: 15px;
}

.advisor-page .card-7 .single-blog-grid {
  background-color: #fff;
  border: 2px solid #f6f6f6;
  border-radius: 18px;
  padding: 12px;
}
.advisor-page .card-7 .single-blog-grid:hover .blog-img img {
  transform: scale(1);
}
.advisor-page .card-7 .single-blog-grid a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s;
}
.advisor-page .card-7 .single-blog-grid .blog-img {
  position: relative; /* Ensure watermark is positioned relative to this container */
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s;
}

.advisor-page .card-7 .single-blog-grid .blog-img::after {
  content: ''; /* Clear any existing content */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 100 100'%3E%3Ctext x='0' y='50' font-family='Arial' font-size='10' fill='rgba(60,60,60,0.5)' transform='rotate(-45)'%3EAOC%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none; /* Ensure the watermark doesn't interfere with clicks */
  z-index: 1; /* Ensure watermark appears above the image */
}

.advisor-page .card-7 .single-blog-grid .blog-img img {
  /* width: 100%; */
  width: 400px;
  max-width: 100%;
  transition: all 0.3s ease;
  height:300px;
}
.advisor-page .card-7 .single-blog-grid .blog-content {
  padding: 10px;
}
.advisor-page .card-7 .single-blog-grid .blog-content h4 {
  font-weight: 600;
  line-height: 28px;
  font-size: 1.1rem;
  color: var(--aurora-color);
}
.advisor-page .card-7 .single-blog-grid .blog-content p {
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 24px;
  color: #727272;
}
.advisor-page .timeline-v2 {
  --white: #fff;
  --black: #323135;
  --crystal: #a8dadd;
  --columbia-blue: #cee9e4;
  --midnight-green: #01565b;
  --yellow: #e5f33d;
  --timeline-gradient: rgba(206, 233, 228, 1) 0%, rgba(206, 233, 228, 1) 50%,
  	rgba(206, 233, 228, 0) 100%;
}
.advisor-page .timeline-v2 ::-webkit-scrollbar {
  width: 10px;
}
.advisor-page .timeline-v2 ::-webkit-scrollbar-track {
  background-color: #eeebeb;
}
.advisor-page .timeline-v2 ::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 5px;
}
.advisor-page .timeline-v2 ::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}
.advisor-page .timeline-v2 .timeline {
  position: relative;
  white-space: nowrap;
}
.advisor-page .timeline-v2 .timeline ol {
  font-size: 0;
  padding: 250px 0;
  transition: all 1s;
  margin: 0;
  overflow-x: scroll;
}
.advisor-page .timeline-v2 .timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 160px;
    /* width: 25%;*/
  height: 2px;
  background: var(--aurora-color);
}

.advisor-page .timeline-v2 .timeline ol li:last-child {
  width: 340px;
}
.advisor-page .timeline-v2 .timeline ol li:not(:first-child) {
  margin-left: 14px;
}
.advisor-page .timeline-v2 .timeline ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--anna-color);
  z-index: 1;
}
.advisor-page .timeline-v2 .timeline ol li div {
  position: absolute;
  left: calc(100% + 7px);
  width: 280px;
  padding: 15px;
  font-size: 1rem;
  white-space: normal;
  color: #000;
  background: var(--anna-color);
  border-radius: 0 10px 10px 10px;
      border: 1px solid #E1BE1D;
background-image:url(../images/back.png);
    background-size: cover;
    /*background-position: center;*/
}
.advisor-page .timeline-v2 .timeline ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.advisor-page .timeline-v2 .timeline ol li:nth-child(odd) div {
  top: -16px;
  transform: translateY(-100%);
  border-radius: 10px 10px 10px 0;
}
.advisor-page .timeline-v2 .timeline ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: var(--anna-color) transparent transparent transparent;
}
.advisor-page .timeline-v2 .timeline ol li:nth-child(even) div {
  top: calc(100% + 16px);
  
}
.advisor-page .timeline-v2 .timeline ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent var(--anna-color);
}
.advisor-page .timeline-v2 .timeline time {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #000;
}
.advisor-page .timeline-v2 .timeline .title {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #000;

}
.advisor-page .timeline-v1 .timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 15px 0;
}
.advisor-page .timeline-v1 .timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--aurora-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}
.advisor-page .timeline-v1 .timeline-container {
  padding: 15px 0;
  position: relative;
  background: inherit;
  width: 50%;
}
.advisor-page .timeline-v1 .timeline-container.left {
  left: 0;
}
.advisor-page .timeline-v1 .timeline-container.right {
  left: 50%;
}
.advisor-page .timeline-v1 .timeline-container::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border: 2px solid var(--aurora-color);
  border-radius: 16px;
  z-index: 1;
}
.advisor-page .timeline-v1 .timeline-container.right::after {
  left: -8px;
}
.advisor-page .timeline-v1 .timeline-container::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  background: var(--aurora-color);
  z-index: 1;
}
.advisor-page .timeline-v1 .timeline-container.right::before {
  left: 8px;
}
.advisor-page .timeline-v1 .timeline-container .date {
  position: absolute;
  display: inline-block;
  top: calc(50% - 8px);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--aurora-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}
.advisor-page .timeline-v1 .timeline-container.left .date {
  right: -75px;
}
.advisor-page .timeline-v1 .timeline-container.right .date {
  left: -75px;
}
.advisor-page .timeline-v1 .timeline-container .content {
  padding: 30px 90px 30px 30px;
  background: var(--anna-color);
  position: relative;
  border-radius: 0 500px 500px 0;
}
.advisor-page .timeline-v1 .timeline-container.right .content {
  padding: 30px 30px 30px 90px;
  border-radius: 500px 0 0 500px;
}
.advisor-page .timeline-v1 .timeline-container .content h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: var(--aurora-color);
}
.advisor-page .timeline-v1 .timeline-container .content p {
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}
@media (max-width: 767.98px) {
  .advisor-page .timeline-v1 .timeline::after {
    left: 90px;
  }
  .advisor-page .timeline-v1 .timeline-container {
    width: 100%;
    padding-left: 120px;
  }
  .advisor-page .timeline-v1 .timeline-container.right {
    left: 0%;
  }
  .advisor-page .timeline-v1 .timeline-container.left::after,
.advisor-page .timeline-v1 .timeline-container.right::after {
    left: 82px;
  }
  .advisor-page .timeline-v1 .timeline-container.left::before,
.advisor-page .timeline-v1 .timeline-container.right::before {
    left: 100px;
    border-color: transparent var(--aurora-color) transparent transparent;
  }
  .advisor-page .timeline-v1 .timeline-container.left .date,
.advisor-page .timeline-v1 .timeline-container.right .date {
    right: auto;
    left: 15px;
  }
  .advisor-page .timeline-v1 .timeline-container.left .content,
.advisor-page .timeline-v1 .timeline-container.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
}
@media (max-width: 576px) {
  .advisor-page .timeline-v1 .timeline::after {
    left: 28px;
  }
  .advisor-page .timeline-v1 .timeline-container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .advisor-page .timeline-v1 .timeline-container.right .content,
.advisor-page .timeline-v1 .timeline-container.left .content {
    padding: 30px 20px 30px 50px;
  }
  .advisor-page .timeline-v1 .timeline-container.right .date,
.advisor-page .timeline-v1 .timeline-container.left .date {
    top: calc(50% - 60px);
    left: 0px;
    background: #fff;
    transform: rotate(-90deg);
    padding: 3px 5px;
    font-size: 0.8rem;
  }
  .advisor-page .timeline-v1 .timeline-container .content p {
    font-size: 0.9rem;
    line-height: 20px;
  }
  .advisor-page .timeline-v1 .timeline-container.left::before,
.advisor-page .timeline-v1 .timeline-container.right::before {
    display: none;
  }
  .advisor-page .timeline-v1 .timeline-container.left::after,
.advisor-page .timeline-v1 .timeline-container.right::after {
    left: 20px;
  }
}

.steps-start .single-steps {
  display: flex;
  gap: 20px;
  align-items: center;
}
.steps-start .single-steps .count .counter {
  font-weight: bold;
  width: 5rem;
  height: 5rem;
  background: var(--anna-color);
  color: #fff;
  border-radius: 0 50% 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.7rem;
}

/* Media Query */
.footer-3 {
  background-color: var(--aurora-color);
  color: #fff;
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
}

@media (max-width: 767px) {
  .footer-3 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.footer-3 a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
}

.footer-3 h3 {
  /* font-size: 17px; */
  font-weight: 600;
  display: block;
  margin-bottom: 35px;
  color: #fff;
}

.footer-3 ul,
.footer-3 ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-3 .single-footer.f-about {
  padding-right: 30px;
}

.footer-3 .single-footer.f-about .logo img {
  width: 110px;
  max-width: 100%;
}

.footer-3 .single-footer.f-about p {
  color: #95979d;
  margin-top: 20px;
  font-size: 15px;
}

.footer-3 .single-footer.f-about .copyright-text {
  color: #95979d;
  font-size: 15px;
  margin-top: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

.footer-3 .single-footer.f-about .copyright-text a {
  color: #95979d;
}

.footer-3 .single-footer.f-about .copyright-text a:hover {
  color: #fff;
}

.footer-3 .single-footer.f-link li {
  display: block;
  margin-bottom: 12px;
}

.footer-3 .single-footer.f-link li a {
  font-size: 15px;
  font-weight: 400;
  color: #95979d;
}

.footer-3 .single-footer.f-link li a:hover {
  color: #fff;
}

.footer-3 .single-footer.newsletter {
  padding-left: 80px;
}

@media (max-width: 767px) {
  .footer-3 .single-footer.newsletter {
    margin-top: 40px;
    padding-left: 0;
  }
}
.footer-3 .single-footer.newsletter .newsletter-form {
  margin-top: 30px;
  position: relative;
}

.footer-3 .single-footer.newsletter .newsletter-form input {
  height: 55px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #fff;
  box-shadow: none;
  text-shadow: none;
  padding-left: 18px;
  background-color: transparent;
  color: #fff;
  padding-right: 65px;
  outline: 0;
  transition: all 0.4s ease;
}

.footer-3 .single-footer.newsletter .newsletter-form .button {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
}

.footer-3 .single-footer.newsletter .newsletter-form .button .sub-btn {
  height: 42px;
  width: 42px;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid transparent;
  color: var(--aurora-color);
  text-align: center;
  line-height: 40px;
  box-shadow: none;
  text-shadow: none;
  font-size: 17px;
  transition: all 0.4s ease;
}

.footer-3 .single-footer.newsletter .newsletter-form .button .sub-btn:hover {
  color: #fff;
  background-color: var(--aurora-color);
  border-color: #fff;
}

header.hero-slider-container {
  position: relative;
  z-index: 2;
  padding-top:100px;
  overflow: hidden;
}

header.hero-slider-container .wave-divider {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

header.hero-slider-container ul.glide__slides {
  margin: 0;
}

header.hero-slider-container .single-slide {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 576px) {
  header.hero-slider-container .single-slide {
    height: 331px;
  }
}
header.hero-slider-container .single-slide::before {
  content: "";
  display: block;
  /*background-color: rgba(250, 249, 249, 0.635);*/
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
}

header.hero-slider-container .single-slide .hero-content {
  position: relative;
  text-align: center;
  margin: auto;
}

@media (min-width: 575px) {
  header.hero-slider-container .single-slide .hero-content {
    max-width: 600px;
  }
}
header.hero-slider-container .single-slide .hero-content img {
  max-width: 100%;
  height: auto;
  position: absolute;
  opacity: 0;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
}

nav.navbar .navbar-toggler {
  box-shadow: none;
  order: 3;
}

nav.navbar .nav-link {
  font-size: 18px;
}

nav.navbar .nav-link.active,
nav.navbar .nav-link:hover {
  color: var(--aurora-color) !important;
}

nav.navbar .text-sm {
  font-size: 0.9rem;
}

nav.navbar .ham-svg {
  cursor: pointer;
  transition: transform 400ms;
  user-select: none;
  -webkit-user-select: none;
}

nav.navbar .ham-svg.active {
  transform: rotate(45deg);
}

nav.navbar .ham-svg .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--aurora-color);
  stroke-width: 5.5;
  stroke-linecap: round;
}

nav.navbar .ham-svg.ham-8 .top {
  stroke-dasharray: 40 160;
}

nav.navbar .ham-svg.ham-8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

nav.navbar .ham-svg.ham-8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

nav.navbar .ham-svg.ham-8.active .top {
  stroke-dashoffset: -64px;
}

nav.navbar .ham-svg.ham-8.active .middle {
  transform: rotate(90deg);
}

nav.navbar .ham-svg.ham-8.active .bottom {
  stroke-dashoffset: -64px;
}

@media (min-width: 991px) {
  nav.navbar .nav-link {
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
  }

  nav.navbar .nav-link:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: var(--aurora-color);
    height: 3px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
  }

  nav.navbar .nav-link:hover::before,
nav.navbar .nav-link:focus::before,
nav.navbar .nav-link.active::before {
    left: 0;
    right: 0;
  }

  nav.navbar .dropdown-toggle::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    border-top: 0;
    border-left: 0;
    margin-left: 5px;
    margin-right: 5px;
  }

  nav.navbar .nav-item {
    margin: 0 5px;
  }
}
@media (max-width: 991px) {
  nav.navbar .navbar-collapse .navbar-nav {
    padding: 20px 30px;
  }

  nav.navbar .navbar-collapse .navbar-nav .nav-item {
    transition: 0.5s;
  }
}
.humbugger-svg {
  cursor: pointer;
  transition: transform 400ms;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.humbugger-svg.active {
  transform: rotate(45deg);
}

.humbugger-svg .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--aurora-color);
  stroke-width: 5.5;
  stroke-linecap: round;
}

.humbugger-svg.ham-4 .top {
  stroke-dasharray: 40 121;
}

.humbugger-svg.ham-4 .bottom {
  stroke-dasharray: 40 121;
}

.humbugger-svg.ham-4.active .top {
  stroke-dashoffset: -68px;
}

.humbugger-svg.ham-4.active .bottom {
  stroke-dashoffset: -68px;
}

.humbugger-svg.ham-8 .top {
  stroke-dasharray: 40 160;
}

.humbugger-svg.ham-8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.humbugger-svg.ham-8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.humbugger-svg.ham-8.active .top {
  stroke-dashoffset: -64px;
}

.humbugger-svg.ham-8.active .middle {
  transform: rotate(90deg);
}

.humbugger-svg.ham-8.active .bottom {
  stroke-dashoffset: -64px;
}

.popup-search-box {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: rgba(252, 252, 252, 0.87);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}

.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  border-radius: 0;
  top: 0;
}

.popup-search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--aurora-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  transform: rotate(0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.4s;
  color: var(--aurora-color);
}

.popup-search-box button.searchClose:hover {
  background-color: #fff;
  border-color: transparent;
  transform: rotate(90deg);
}

.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
}

@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--aurora-color);
  background-color: transparent;
  padding-left: 30px;
  color: #000;
  border-radius: 50px;
  outline: none;
}

.popup-booking-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid #e1be1d;
  background-color: transparent;
  padding-left: 30px;
  color: #000;
  outline: none;
}

.popup-search-box form input::-webkit-input-placeholder {
  color: #000;
}

.popup-search-box form input::-moz-placeholder {
  color: #000;
}

.popup-search-box form input:-ms-input-placeholder {
  color: #000;
}

.popup-search-box form input::-ms-input-placeholder {
  color: #000;
}

.popup-search-box form input::placeholder {
  color: #000;
}

.popup-search-box form button {
  position: absolute;
  top: 0;
  background-color: transparent;
  border: none;
  color: #000;
  font-size: 24px;
  right: 12px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}

.popup-search-box form button:hover {
  transform: scale(1.1);
}

.fa-bell {
  color: #e1be1d;
  font-size: 1.5rem;
}

.btn-remove-advisor{
    color: red;
}
.badge a{
    color:#fff;
    text-decoration:none;
    transition: all ease 0.4s;
}
.badge a:hover{
    color:#FBC604;
}
.chat-icon {
    color:#e1be1d;
    padding-top:5px;
}
.btn-check:checked+.btn{
    background-color:#e1be1d !important;
    border-color:#e1be1d !important;
    color: #fff !important;
}
.checkChatBtn{
    background-color:#fff !important;
    color:#e1be1d !important;
    border-color:#e1be1d !important;
}
.checkChatBtn:hover{
    background-color:#e1be1d !important;
    color: #fff !important;
}
.stars i{
    color:rgb(243, 156, 18);
    font-size: 1.5rem;
}
.cv-file span{
    background: #e1be1d6e;
    padding: 5px;
    border-radius: 10px;
}
.nav-underline .nav-link{
    color: #000;
}
.nav-underline .nav-link.active{
    color: #e1be1d;
    border-bottom-color: #e1be1d;
}
.btn-close:focus{
    box-shadow:none;
}
/*# sourceMappingURL=style.css.map */

/*edit profile */
.events .section-heading {
  margin-bottom: 100px;
}

.events .item {
  background-color: #f1f1f1;
  border-radius: 25px;
  position: relative;
  padding: 30px;
  margin-bottom: 96px;
}

.events .item .image {
  position: relative;
}

.events .item .image img {
  position: absolute;
  border-radius: 25px;
  max-width: 260px;
  left: 0;
  top: -70px;
}

.events .item ul  {
  display: flex;
  justify-content: space-between;
 flex-direction: column;  
 list-style:none;
    
}


@media screen and (max-width:786px) {
.events .item .image img {
  position: unset;
}
.events .item ul  {
 flex-direction: column;  
  padding-left: 0;
}
}

@media screen and (max-width:560px) {
.events .item .image img {
  position: unset;
}
.events .item ul  {

 flex-direction: column;  
  padding-left: 0;

}
}


.events .item ul li h4 {
  font-size: 22px;
  font-weight: 600;
}

.events .item ul li span {
  display: inline-block;
  font-size: 14px;
  /*color: #4a4a4a;*/
  /*margin-bottom: 10px;*/
}

.events .item ul li h6 {
  font-size: 16px;
  color: #7a6ad8;
  font-weight: 600;
}

.events .item ul li button {
  margin:0 5px;
  color: #ffffff;
  
}
.events .item a {
	position: absolute;
	left: 0;
	top: 22px;
	background-color: #7a6ad8;
	width: 60px;
	height: 120px;
	display: inline-block;
	text-align: center;
	line-height: 120px;
	font-size: 18px;
	z-index: 1;
	color: #fff;
	border-radius: 0 60px 0 60px;
}


/* Assuming FontAwesome is used for the search icon */
.input-group {
  position: relative;
}

.input-group-addon {
  position: absolute;
   right: 25px;; 
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
    border: none;
    background: transparent;
}

/* Adjust the icon size if necessary */
.fa-search {
  font-size: 16px;
}

/* Optional: Style the input for better appearance */
.custom-form-control {
  padding-right: 30px; /* Adjust based on the icon's width and padding */
}
.register-datapicker > .ui-datepicker-calendar {
    display: none;
    }

.terms-content{
   max-width: 1200px;
   max-height: 700px;
   padding:40px 150px;
   overflow:auto;
}
.terms-content::-webkit-scrollbar {
  display: none;
}
#fileName{
    color: #e1be1d;
}
@media screen and (max-width: 400px) {
 .terms-content{
   padding: 50px 20px;
}
}

.truncate-text{
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

  .remove{
    flex-wrap: wrap;
  }