@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "Montserrat Arabic";
  /* Name of the custom font */
  src: url("../fonts/Montserrat-Arabic-Regular-2.ttf");
  /* Fallback format */
  font-weight: normal;
  font-style: normal;
}

*,
body,
html {
  font-family: "Montserrat Arabic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  overflow-x: hidden;
}

:root {
  --primary-blue: #3bade2;
  --secondary-blue: rgba(59, 173, 226, 0.1);
  --light-gray: rgba(0, 0, 0, 0.6);
}

::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  direction: ltr;
  background-color: rgb(220, 220, 230);
}

::-webkit-scrollbar-thumb {
  background-color: #3bade2;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #3498db;
}


body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
  overflow-x: hidden;
}

nav > .container {
  display: flex;
  justify-content: center;
  max-width: none !important;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

#is-auth.header-cta {
  display: flex;
  align-items: center;
}

#is-auth.header-cta h5 {
  margin-left: 1rem;
  margin-bottom: 0.05rem;
}

.preloader {
  z-index: 9999999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(63, 63, 70, 0.85);
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

.img-partner {
  max-height: 5.125rem !important;
}

.success {
  z-index: 9999999;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  color: #ffffff;
  background-color: rgba(63, 63, 70, 0.97);
  animation: fadeIn .4s;
}

.success .close-text {
  margin-top: 12.5rem;
  margin-bottom: -13rem;
  color: rgb(241 245 249);
  font-size: 0.9rem;
}

.success > * + * {
  margin-top: 0.6rem;
}

.success-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success .icon,
.success-box .icon {
  width: 80px;
  height: 115px;
}

.success .icon .check-icon,
.success-box .icon .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4CAF50;
}

.success .icon .check-icon::before,
.success-box .icon .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}

.success .icon .check-icon::after,
.success-box .icon .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}

.success .icon .check-icon::before,
.success .icon .check-icon::after,
.success-box .icon .check-icon::before,
.success-box .icon .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  transform: rotate(-45deg);
}

.success .icon .check-icon .icon-line,
.success-box .icon .check-icon .icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}

.success .icon .check-icon .icon-line.line-tip,
.success-box .icon .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success .icon .check-icon .icon-line.line-long,
.success-box .icon .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}

.success .icon .check-icon .icon-circle,
.success-box .icon .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, .7);
}

.success .icon .check-icon .icon-fix,
.success-box .icon .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
}

.error-text {
  margin-inline-start: 0.65rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: rgb(220 38 38);
}

.skeleton-box {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: #DDDBDD;
}

.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(#fff, 0) 0,
    rgba(#fff, 0.2) 20%,
    rgba(#fff, 0.5) 60%,
    rgba(#fff, 0)
  );
  animation: shimmer 3s infinite;
  content: '';
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.8vw;
  width: 85.2vw;
}

#header-nav-list {
  display: flex;
  align-items: center;
  list-style-type: none;
}

.my-nav-item:not(:last-of-type) {
  /* Your styles here */
  margin-inline-end: 1.6vw;
}

.my-nav-link {
  color: #000;
  text-decoration: none;
  font-weight: normal;
  transition: all 0.2s ease-out;
  font-size: 1.05vw;
}

.my-nav-link:hover {
  color: var(--primary-blue);
}

.header-logo {
  width: 11.5vw;
}

.cta {
  text-decoration: none;
  padding-block: 0.8vw;
  padding-inline: 2.63vw;
  font-size: 1.05vw;
  font-weight: normal;
  border-radius: 2.303vw;
  outline: 0;
  border: 0;
}

.cta.hero {
  padding-inline: 4.2vw;
}

.cta-thic {
  background-color: var(--primary-blue);
  color: #fff;
}

.cta-thic:hover {
  color: #fff;
}

.cta-light {
  background-color: var(--secondary-blue);
  color: var(--primary-blue);
}

.cta-light.border {
  border: 1px solid var(--primary-blue) !important;
}

.cta-light:hover {
  color: var(--primary-blue);
}

#mobile-menu-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
}

.mobile-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease-out;
}

#mobile-menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 3rem;
  background-color: var(--primary-blue);
}

.mobile-menu-item {
  margin-block: 1rem;
}

.mobile-menu-link {
  color: #fff;
  text-decoration: none;
  font-weight: normal;
}

.mobile-menu.active {
  height: auto !important;
}

#hero {
  background-image: url("../images/hero-banner.svg");
  background-size: cover;
  padding-top: 55px;
}

#hero-img {
  margin-bottom: -4px;
}

.hero-text h5 {
  color: var(--light-gray);
  font-weight: normal;
}

.hero-text h1 {
  color: #000;
  font-weight: normal;
  font-size: 2.6rem;
  line-height: 1.3;
}

.hero-text h1 span {
  color: var(--primary-blue);
}

.hero-text p {
  color: var(--light-gray);
  font-weight: normal;
  font-size: 0.9rem;
}

.hero-cta-container {
  margin-block-start: 2rem;
  margin-block-end: 3rem;
}

.hero-avatars-container {
  display: flex;
}

.avatar {
  text-decoration: none;
  display: block;
  background-color: var(--secondary-blue);
  border-radius: 50%;
}

.avatar img {
  height: 60px;
  width: 60px;
}

.hero-avatars-container .avatar:not(:first-of-type) {
  margin-inline-start: -25px;
}

.hero-avatars-cta-text p.lead {
  color: #000;
  font-size: 1.05rem;
}

.hero-avatars-cta-text p.sub {
  color: var(--light-gray);
  font-weight: normal;
}

.section-element {
  padding-top: 80px;
}

.section-header h6 {
  color: #000;
  font-weight: normal;
  font-size: 1.3rem;
}

.section-header p {
  color: var(--light-gray);
  font-weight: normal;
}

.section-header {
  margin-bottom: 3rem;
}

.benefit-item img {
  margin-bottom: 0.5rem;
}

.benefit-item .benefit-heading {
  font-size: 1.3rem;
  color: #000;
  font-weight: normal;
  margin-bottom: 0.25rem;
}

.benefit-item .sub-text {
  color: var(--light-gray);
}

.section-text h3 {
  color: #000;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: normal;
}

.section-text h3 span {
  color: var(--primary-blue);
}

.section-text p {
  color: var(--light-gray);
  font-weight: normal;
  font-size: 1rem;
}

.benefit-item.border-item {
  border: 1px solid #eee;
  border-radius: 1rem;
  padding: 2rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-gap: 1rem;
}

.partners-more-links {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-blue);
}

.partners-more-links a {
  font-weight: normal;
  text-decoration: none;
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.accordion-item {
  background-color: rgb(240, 240, 240) !important;
  border-radius: 35px !important;
}

.accordion-item .accordion-header button {
  background-color: rgb(240, 240, 240) !important;
  color: #000;
  padding-block: 1.5rem;
  font-weight: normal;
  box-shadow: none !important;
}

.accordion-item .accordion-header button:focus {
  box-shadow: none !important;
}

.accordion-body {
  background-color: rgb(240, 240, 240) !important;
}

.primary-bg {
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 35px;
  padding: 5rem;
}

.primary-section-text h2 {
  font-weight: normal;
  margin-bottom: 1.4rem;
}

.primary-section-text p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.download-links-image {
  position: absolute;
  bottom: -122px;
  height: 650px;
  transform: translateX(-30%);
}

#journey {
  margin-top: 13rem;
}

footer {
  background-color: #fafafa;
  margin-top: 8rem;
  padding-block: 4rem;
  overflow-x: hidden;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-text {
  margin-bottom: 1.5rem;
  color: #000000;
}

.footer-heading {
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.footer-nav-item {
  margin-bottom: 1rem;
}

.footer-nav-link {
  text-decoration: none;
  color: #000000;
  font-size: 0.85rem;
}

.full-height {
  min-height: 100vh;
}

.auth-container {
  height: 100%;
}

.auth-columns {
  display: flex;
  align-items: center;
}

.auth-page-bg {
  background: #f9f9fa;
  text-align: center;
  padding-inline: 5rem;
}

.auth-page-stepper-text h4 {
  font-weight: normal;
}

.auth-page-stepper-text p {
  color: var(--light-gray);
}

.auth-form-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-inline: 5rem;
  padding-block: 2rem;
}

.auth-form-text h1 {
  font-weight: normal;
}

.auth-form-text p {
  color: var(--light-gray);
}

.auth-form-inputs {
  margin-top: 3rem;
}

.auth-form-elements-group {
  margin-bottom: 2rem;
}

.auth-form-label {
  font-size: 1.1rem;
  font-weight: normal;
}

.auth-form-text-input {
  display: block;
  width: 100%;
  border-radius: 35px;
  outline: 0;
  border: 0;
  background: #f7f7f7;
  padding: 1rem;
  text-align: right;
  margin-block: 1rem;
}

.auth-form-text-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.auth-form-anchors {
  text-decoration: none;
}

.auth-form-submit-button-container {
  margin-top: 4rem;
}

.auth-form-submit-button {
  display: block;
  width: 100%;
  background-color: var(--primary-blue);
  color: #fff;
  font-weight: normal;
  padding-block: 0.75rem;
  border-radius: 35px;
  outline: 0;
  border: 0;
}

.auth-form-homepage-button {
  display: block;
  width: 100%;
  background-color: var(--secondary-blue);
  color: var(--primary-blue);
  font-weight: normal;
  padding-block: 0.75rem;
  border-radius: 35px;
  outline: 0;
  border: 0;
}

.auth-form-homepage-button:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.steps-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #e7e7e7;
  border-radius: 50%;
  margin-inline: 0.15rem;
}

.step.active {
  width: 20px;
  background-color: var(--primary-blue);
  border-radius: 35px;
}

.accordion-item {
  overflow: hidden;
}

.register-radio {
  visibility: hidden;
}

.active-register-box {
  border-color: #3498db !important;
  border-width: 4px !important;
}

.radio-label {
  display: flex;
  width: 100%;
  border: 2px solid #eeeeee;
  padding: 1rem;
  align-items: center;
  border-radius: 25px;
  transition: all 0.1s ease-in-out;
}

.radio-label img {
  width: 65px;
  margin-inline-end: 0.75rem;
}

.radio-label p.lead {
  color: #000;
  font-weight: normal;
  margin-bottom: 0.5rem !important;
}

.radio-label p:not(.lead) {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.6);
}

.auth-form-submit-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.radio-label.active {
  border-color: var(--primary-blue) !important;
}

.intl-tel-input {
  user-select: none !important;
  margin-block: 1rem !important;
  width: 100% !important;
}

.intl-tel-input .allow-dropdown {
  width: 100% !important;
}

.intl-tel-input .flag-container {
  width: auto !important;
}

.intl-tel-input .selected-flag {
  width: auto !important;
  display: flex !important;
  padding-left: 20px !important;
  padding-right: 50px !important;
  background-color: transparent !important;
  font-size: 0.8rem !important;
}

.intl-tel-input .selected-dial-code {
  z-index: 0 !important;
  padding-left: 4px !important;
}

.intl-tel-input .allow-dropdown .flag-container:hover .selected-flag {
  background-color: transparent !important;
}

.intl-tel-input .country-list {
  left: 0 !important;
}

.intl-tel-input .arrow {
  position: absolute;
  right: -20px;
  display: none;
}

.intl-tel-input .country-listbox {
  left: 0 !important;
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type=text],
.intl-tel-input.allow-dropdown input[type=tel] {
  padding-right: 1rem !important;
}

.intl-tel-input.allow-dropdown input.was-validated,
.intl-tel-input.allow-dropdown input[type=text].was-validated,
.intl-tel-input.allow-dropdown input[type=tel].was-validated {
  padding-right: calc(1.5em + .75rem) !important;
}

.show-hide-password-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.copy-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-blue);
  color: #fff;
  border-radius: 35px;
  height: 80%;
  outline: 0;
  border: 0;
  font-size: 0.9rem;
  padding-inline: 2rem;
  font-weight: normal;
  margin-left: 0.4rem;
}

.auth-form-submit-button.outline {
  background-color: var(--secondary-blue) !important;
  color: var(--primary-blue) !important;
}

.contact-info-element {
  display: flex;
  align-items: center;
}

.contact-info-element:not(:last-of-type) {
  margin-bottom: 3rem;
}

.contact-info-element img {
  margin-inline-end: 1.5rem;
}

.contact-info-element p.lead {
  color: #fff;
  font-weight: normal;
}

.contact-info-element p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

#contact-form {
  background-color: #f8f8f8;
  padding: 2rem 2rem;
  border-radius: 35px;
}

#contact-form h5 {
  margin-bottom: 2rem;
  font-weight: normal;
}

#contact-form .auth-form-text-input {
  background-color: #fff;
}

.privacy-item .privacy-heading {
  font-size: 1.1rem;
  font-weight: bold;
}

.privacy-item .privacy-description {
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  font-size: 0.9rem;
}

.blogs-hero {
  height: 70vh;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  border-radius: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  padding-inline-start: 4rem;
}

.blogs-hero-text .date-time {
  font-size: 1.1rem;
  color: #ffffff;
  opacity: 0.6;
}

.blogs-hero-text .blogs-hero-heading a {
  color: #fff;
  font-weight: normal;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.blogs-hero-text .blogs-hero-subheading {
  color: #ffffff;
  opacity: 0.6;
}

.single-blog-card img {
  border-radius: 20px;
  margin-bottom: 1rem;
}

.blog-item-text .blog-item-date-time {
  color: #141313;
  opacity: 0.6;
  margin-bottom: 0.2rem !important;
}

.blog-item-text .blog-item-heading {
  margin-bottom: 0.5rem !important;
}

.blog-item-text .blog-item-heading a {
  color: #000;
  font-weight: normal;
  margin-bottom: 0.5rem !important;
  text-decoration: none;
}

.blog-item-text .blog-item-description {
  color: #141313;
  opacity: 0.6;
  font-weight: normal;
  font-size: 0.85rem;
}

.jobs-filter-container {
  background-color: var(--primary-blue);
  padding: 2rem;
  border-radius: 35px;
}

.jobs-filter-input {
  padding: 0.75rem 1rem;
  width: 100%;
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  outline: 0;
  border: 0;
  border-radius: 35px;
  color: #fff;
}

.jobs-filter-input::placeholder {
  color: #fff;
}

.jobs-filter-submit-btn {
  display: block;
  width: 100%;
  padding-block: 0.5rem;
  border-radius: 35px;
  outline: 0;
  border: 0;
  background-color: #fff;
  color: var(--primary-blue);
  font-weight: normal;
}

.magnifier-glass {
  position: relative;
}

.magnifier-glass::before {
  content: "";
  background-image: url("../images/search-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.jobs-filter-input.select {
  appearance: none;
}

.dropdown-arrow {
  position: relative;
}

.dropdown-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 25px;
  height: 25px;
  background-image: url("../images/drop-arrow.svg");
  background-size: cover;
  z-index: 2;
}

.dark-dropdown-arrow {
  position: relative;
}

.dark-dropdown-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2rem;
  width: 25px;
  height: 25px;
  background-image: url("../images/dark-dropdown-arrow.svg");
  background-size: cover;
  z-index: 2;
}

.single-job-item {
  border-radius: 35px;
  background: #f8f8f8;
  padding: 1rem 2rem;
}

.single-job-top-text .datetime {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem !important;
}

.single-job-top {
  margin-bottom: 1.1rem !important;
}

.single-job-top-text h5 {
  color: #000;
  font-weight: normal;
}

.job-description {
  color: rgba(0, 0, 0, 0.6);
}

.cta-light.tag {
  padding-block: 0.5rem !important;
  padding-inline: 1.5rem !important;
  font-size: 0.9rem;
  font-weight: normal;
}

.modal-content {
  border-radius: 25px;
}

.modal-heading-text {
  font-weight: normal;
  margin-bottom: 2rem;
}

.job-apply-input-group {
  margin-bottom: 1rem;
}

.job-apply-input-group label {
  color: #000;
  font-weight: normal;
  margin-bottom: 1rem;
}

.job-apply-input {
  display: block;
  width: 100%;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  background: #eeeeee;
  outline: 0;
  border: 0;
  border-radius: 35px;
}

.job-apply-input::placeholder {
  color: #141313;
  opacity: 0.6;
}

.job-form-apply-btn {
  display: block;
  width: 100%;
  background-color: var(--primary-blue);
  color: #fff;
  font-weight: normal;
  padding-block: 0.75rem;
  border-radius: 35px;
  outline: 0;
  border: 0;
  margin-top: 1rem;
}

.job-form-apply-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#dropzone-area {
  background-color: var(--secondary-blue);
  border: 2px dashed var(--primary-blue);
  border-radius: 20px;
}

.dz-message {
  margin-block: 2rem;
}

.note.needsclick {
  color: var(--primary-blue);
}

.blog-img img {
  max-height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 35px;
}

.blog-text h4 {
  font-weight: normal;
}

.select-hide-dropdown {
  appearance: none;
}

/* media queries  */
@media only screen and (max-width: 767px) {
  #mobile-btn-container {
    display: flex !important;
    justify-items: center;
  }

  #otp-input input {
    width: 3rem !important;
    height: 3rem !important;
  }

  #blog .container {
    padding: 0 1.5rem 0 1.5rem;
  }

  #register-container {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  .questions-list {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .partners-grid {
    grid-template-columns: repeat(1, auto);
  }

  .job-title {
    margin-bottom: 1rem !important;
  }

  .cta.tag {
    margin-bottom: 0.5rem !important;
  }

  .blogs-hero {
    padding-inline-start: 1rem;
    height: 50vh;
  }

  .auth-columns {
    margin-bottom: 1rem;
  }

  .full-height {
    overflow-x: hidden;
    min-height: auto;
  }

  .img-partner {
    max-height: 6.25rem !important;
  }

  .auth-container {
    padding: 0rem 0.25rem 0rem 0.25rem;
  }

  .auth-form-column {
    display: block !important;
    padding-inline: 0.5rem;
    margin-bottom: 1rem;
  }

  .auth-page-bg {
    padding-inline: 1rem;
  }

  #journey {
    margin-top: unset !important;
    text-align: center;
  }

  .primary-bg {
    padding: 2rem 1rem;
    border-radius: 0;
  }

  .download-links-image {
    position: static;
    transform: translateX(0);
    height: 300px;
  }

  #hero {
    padding-top: 10px;
  }

  .header-cta,
  #header-nav-list,
  #is-auth.header-cta {
    display: none;
  }

  #mobile-menu-btn {
    display: block;
  }

  .hero-text {
    text-align: center;
  }

  .content-center {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text h5 {
    font-size: 1rem;
  }

  .hero-text p {
    font-size: 0.7rem;
  }

  .avatar img {
    height: 50px;
    width: 50px;
  }

  .hero-avatars-cta-text p.lead {
    font-size: 0.8rem;
  }

  .hero-cta-container .cta {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .cta {
    padding-block: 0.75rem;
    padding-inline: 2.5rem;
    font-size: 3.865vw;
    border-radius: 2rem;
  }
  
  .cta.hero {
    padding-inline: 3rem;
  }
}

@media only screen and (max-width: 450px) {
  .cta {
    font-size: 3vw;
  }

  .single-job-top-text .datetime {
    font-size: 0.75rem;
  }
}


@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .cta.tag {
    margin-bottom: 0.5rem !important;
  }

  .partners-grid {
    grid-template-columns: repeat(2, auto);
  }

  #journey {
    margin-top: unset !important;
    text-align: center;
  }

  .auth-columns {
    margin-bottom: 1rem;
  }

  .full-height {
    overflow-x: hidden;
    min-height: auto;
  }

  .auth-container {
    padding: 0rem 0.25rem 0rem 0.25rem;
  }

  .primary-bg {
    padding: 2rem 1rem;
  }

  .download-links-image {
    position: static;
    transform: translateX(0);
    height: 300px;
  }

  #hero {
    padding-top: 10px;
  }

  .header-cta,
  #header-nav-list {
    display: none;
  }

  #mobile-menu-btn {
    display: block;
  }

  .hero-text {
    text-align: center;
  }

  .content-center {
    justify-content: center;
  }
}

@media only screen and (min-width: 1025px) {
  #mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    height: 0 !important;
    overflow: hidden;
  }
}

/* otp input styles */

#otp-input {
  display: flex;
  gap: 0.5em;
  justify-content: center;
}

#otp-input input {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  outline: 0;
  background-color: #f7f7f7;
  border-color: transparent;
  padding: 0.5rem 0;
  font-family: monospace;
  font-size: 1rem;
  text-align: center;
}

#otp-input input:focus {
  border: 1px solid var(--primary-blue);
}

#otp-input input.active {
  background-color: var(--primary-blue);
  color: #fff;
}

/* hide spinner */
#otp-input input::-webkit-outer-spin-button,
#otp-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#otp-input input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

#mobile-btn-container {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1201px) {

  #header-nav-list,
  .header-cta {
    display: none !important;
  }

  #mobile-menu-btn {
    display: block;
  }

  #mobile-btn-container {
    display: flex !important;
    justify-items: center;
  }

  .mobile-menu {
    height: 0 !important;
    overflow: hidden;
  }

  #otp-input input {
    width: 3.5rem !important;
    height: 3.5rem !important;
  }
}

.iti-mobile .intl-tel-input.iti-container {
  top: 110px !important;
  bottom: 0px !important;
  left: 0px !important;
  right: 0px !important;
}

.iti-mobile .intl-tel-input.iti-container .country-list {
  max-height: 80% !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.iti__selected-dial-code {
  font-size: 0.8rem;
  position: relative;
}

.iti--separate-dial-code .iti__selected-dial-code {
  position: absolute;
  left: 100%;
  font-weight: normal;
}


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

.accordion-body {
  color: rgba(0, 0, 0, 0.8) !important;
  font-size: 0.9rem;
}


.phone-dropdown::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  width: 25px;
  height: 25px;
  background-image: url("../images/dark-dropdown-arrow.svg");
  background-size: cover;
  z-index: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes rotate-circle {
  0% {
      transform: rotate(-45deg);
  }
  5% {
      transform: rotate(-45deg);
  }
  12% {
      transform: rotate(-405deg);
  }
  100% {
      transform: rotate(-405deg);
  }
}

@keyframes icon-line-tip {
  0% {
      width: 0;
      left: 1px;
      top: 19px;
  }
  54% {
      width: 0;
      left: 1px;
      top: 19px;
  }
  70% {
      width: 50px;
      left: -8px;
      top: 37px;
  }
  84% {
      width: 17px;
      left: 21px;
      top: 48px;
  }
  100% {
      width: 25px;
      left: 14px;
      top: 45px;
  }
}

@keyframes icon-line-long {
  0% {
      width: 0;
      right: 46px;
      top: 54px;
  }
  65% {
      width: 0;
      right: 46px;
      top: 54px;
  }
  84% {
      width: 55px;
      right: 0px;
      top: 35px;
  }
  100% {
      width: 47px;
      right: 8px;
      top: 38px;
  }
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}