.smart_scroll_section {
  width: 100%;
  position: relative;
}

.smart_scroll_section .scroll_left,
.smart_scroll_section .scroll_middle,
.smart_scroll_section .scroll_right {
  width: 100%;
  display: block;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s ease-in-out all;
}

@media (min-width: 480px) {

  .smart_scroll_section .scroll_left .scroll_content,
  .smart_scroll_section .scroll_middle .scroll_content,
  .smart_scroll_section .scroll_right .scroll_content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_middle,
  .smart_scroll_section .scroll_right {
    width: 50%;
    float: left;
    position: absolute;
    padding: 10px;
  }
}

@media (min-width: 768px) {

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_middle,
  .smart_scroll_section .scroll_right {
    width: 33.3333%;
    left: 33.33%;
    padding: 10px;
  }
}

@media (min-width: 992px) {

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_middle,
  .smart_scroll_section .scroll_right {
    /* padding: 30px; */
    padding: 80px;
    font-size: 1em;
  }
}

/* Animate positions */
.smart_scroll_section.animate .scroll_left {
  left: 0;
}

@media (min-width: 480px) {
  .smart_scroll_section.animate .scroll_left {
    left: 50%;
  }
}

@media (min-width: 768px) {
  .smart_scroll_section.animate .scroll_left {
    left: 0;
  }
}

.smart_scroll_section.animate .scroll_right {
  left: 0;
}

@media (min-width: 480px) {
  .smart_scroll_section.animate .scroll_right {
    left: 50%;
  }
}

@media (min-width: 768px) {
  .smart_scroll_section.animate .scroll_right {
    left: 66.66%;
  }
}

/* Titles */
/* .smart_scroll_section .title {
  background: #F2E6D0;
} */

.smart_scroll_section .title h2 {
  margin-top: 0;
  margin-bottom: 25px;
}

.smart_scroll_section .title p {
  line-height: 1.55em;
  margin-bottom: 0.75em;
}

.smart_scroll_section .title .btn-primary {
  color: #fff;
  background: #ff3814;
  padding: 10px;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
  transition: 0.3s ease-in-out all;
}

.smart_scroll_section .title .btn-primary:hover {
  background: #fa2600;
}

/* Tiles */
.smart_scroll_section .tiles {
  /* padding: 0; */
  background: transparent;
  clear: both;
  display: none;
}

.scroll_content p,
.scroll_content ul li {
  /* color: #fff; */
}

.smart_scroll_section .tiles img {
  /*width: 50%;
  */
  width: 100%;
  float: left;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s ease-in-out all;
  -webkit-transition: 0.3s ease-in-out all;
  -moz-transition: 0.3s ease-in-out all;
  -ms-transition: 0.3s ease-in-out all;
  -o-transition: 0.3s ease-in-out all;
}

/* .smart_scroll_section .scroll_middle img,
.smart_scroll_section .tiles img {
  min-height: 640px;
} */

.smart_scroll_section .tiles img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (min-width: 768px) {
  .smart_scroll_section .tiles {
    display: block;
  }
}

/* Middle image */
.smart_scroll_section .scroll_middle {
  z-index: 2;
  padding: 0;
}

.smart_scroll_section .scroll_middle img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bounce animation */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

.animated.bounce {
  animation: bounce 2s infinite;
}

/* ========== MOBILE FIX (DEFAULT) ========== */
/* @media (max-width:520px){
  .smart_scroll_section {
    position: relative;
    height: auto !important;
    display: flex;
    flex-direction: column;
  }
  
  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_middle,
  .smart_scroll_section .scroll_right {
    position: relative;
    width: 100% !important;
    float: none;
    left: 0 !important;
    padding: 20px;
  }
  
  .smart_scroll_section .scroll_middle img {
    min-height: auto;
    height: 220px;
    object-fit: cover;
  }
  
  .smart_scroll_section .tiles {
    display: block;
  }
  
} */
/* ========== TABLET ========== */
@media (max-width:1024px) {
  .smart_scroll_section {
    position: relative;
    height: auto !important;
    display: flex;
    flex-direction: column;
  }

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_middle,
  .smart_scroll_section .scroll_right {
    position: relative;
    width: 100% !important;
    float: none;
    left: 0 !important;
    padding: 20px;
  }

  .smart_scroll_section .scroll_middle img {
    min-height: auto;
    height: 220px;
    object-fit: cover;
  }

  .smart_scroll_section .tiles {
    display: block;
  }

  .smart_scroll_section {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .smart_scroll_section .scroll_middle {
    width: 100%;
    order: -1;
  }

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_right {
    width: 50% !important;
    height: 560px !important;
  }

  .smart_scroll_section .scroll_middle img {
    height: 320px;
  }

  .smart_collect_scroll_sec .pb-100 {
    padding-bottom: 100px;
  }

  .smart_collect_scroll_sec .pt-100 {
    padding-top: 100px;
  }

}


/* ========== DESKTOP (ANIMATION ENABLED) ========== */
@media (min-width: 992px) {
  /* .smart_scroll_section {
    display: block;
    height: 100vh;
  }

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_middle,
  .smart_scroll_section .scroll_right {
    position: absolute;
    width: 33.333%;
    padding: 80px;
  }

  .smart_scroll_section .scroll_middle {
    left: 33.33%;
    padding: 0;
  }

  .smart_scroll_section .scroll_middle img {
    min-height: 640px;
    height: 100%;
  }

  .smart_scroll_section .tiles {
    display: block;
  } */
}

@media (max-width: 520px) {

  .smart_scroll_section .scroll_left,
  .smart_scroll_section .scroll_right {
    width: 100% !important;
    height: auto !important;
  }
}


/* ***************************************************************************************** */


/* ***************************************************************************************** */

.smart_card {
  display: grid;
  place-items: center;
}

.smart_card .page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  /* max-width: 1024px; */
  margin: 0 auto;
  font-family: var(--font-sans);
}

@media (min-width: 600px) {
  .smart_card .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .smart_card .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.smart_card .card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}

@media (min-width: 600px) {
  .smart_card .card {
    height: 350px;
  }
}

.smart_card .card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  pointer-events: none;
}

.smart_card .card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.smart_card .card:nth-child(1):before {
  background-image: url(https://images.unsplash.com/photo-1517021897933-0e0319cfbc28?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
}

.smart_card .card:nth-child(2):before {
  background-image: url(https://images.unsplash.com/photo-1533903345306-15d1c30952de?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
}

.smart_card .card:nth-child(3):before {
  background-image: url(https://images.unsplash.com/photo-1545243424-0ce743321e11?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
}

.smart_card .card:nth-child(4):before {
  background-image: url(https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
}

.smart_card .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
  -webkit-transition: transform var(--d) var(--e);
  -moz-transition: transform var(--d) var(--e);
  -ms-transition: transform var(--d) var(--e);
  -o-transition: transform var(--d) var(--e);
}

.smart_card .content>*+* {
  margin-top: 1rem;
}

.smart_card .title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.smart_card .copy {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: normal;
  line-height: 1.35;
  font-weight: 500;
}

.smart_card .btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}

.smart_card .btn:hover {
  background-color: #0d0d0d;
}

.smart_card .btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .smart_card .card:after {
    transform: translateY(0);
  }

  .smart_card .content {
    transform: translateY(calc(100% - 4.5rem));
    -webkit-transform: translateY(calc(100% - 4.5rem));
    -moz-transform: translateY(calc(100% - 4.5rem));
    -ms-transform: translateY(calc(100% - 4.5rem));
    -o-transform: translateY(calc(100% - 4.5rem));
  }

  .smart_card .content>*:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    -webkit-transform: translateY(1rem);
    -moz-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    -o-transform: translateY(1rem);
    -webkit-transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    -moz-transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    -ms-transition: transform var(--d) var(--e), opacity var(--d) var(--e);
    -o-transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .smart_card .card:hover,
  .smart_card .card:focus-within {
    align-items: center;
  }

  .smart_card .card:hover:before,
  .smart_card .card:focus-within:before {
    transform: translateY(-4%);
  }

  .smart_card .card:hover:after,
  .smart_card .card:focus-within:after {
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
  }

  .smart_card .card:hover .content,
  .smart_card .card:focus-within .content {
    transform: translateY(0);
  }

  .smart_card .card:hover .content>*:not(.title),
  .smart_card .card:focus-within .content>*:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .smart_card .card:focus-within:before,
  .smart_card .card:focus-within:after,
  .smart_card .card:focus-within .content,
  .smart_card .card:focus-within .content>*:not(.title) {
    transition-duration: 0s;
  }
}


/* ************************************************************************************************************************** */


/* ********************************************************************************** */

:root {
  --green: #F2ACB9;
  --yellow: #f8ffae;
  --orange: #E48E5E;
}

/* 🔹 UPDATED PARENT CLASS */
.steps-card {
  width: 100%;
  border-radius: 30px;
  padding: 4rem;
  place-self: center;
  background-color: #F2E6D0;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.3);

}

.steps-card .title {
  padding-bottom: 0.5rem;
  font-size: 1.8rem;
}

.steps-card .line {
  width: 20%;
  height: 5px;
  /* background-color: var(--orange); */
  background-color: #f2b807;
  margin-bottom: 4rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.step__title {
  position: relative;
  background-color: var(--green);
  height: 40px;
  width: 90%;
  display: grid;
  place-items: center;
  color: #fff;
}

.step__title::before,
.step__title::after {
  content: "";
  position: absolute;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}



.step__title::after {
  border-left: 20px solid var(--green);
  right: -20px;
}

.step__info {
  padding: 1rem 0.5rem;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .steps-card {
    padding: 3rem 2rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .steps-card .line {
    width: 30%;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .steps-card {
    padding: 2rem 1.5rem;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps-card .title {
    font-size: 1.5rem;
  }

  .steps-card .line {
    width: 40%;
    margin-bottom: 2.5rem;
  }

  .step__title {
    width: 100%;
    font-size: 1rem;
  }

  /* Adjust ribbon arrows for mobile */
  .step__title::before {
    border-left: 15px solid white;
    left: -15px;
  }

  .step__title::after {
    border-left: 15px solid var(--green);
    right: -15px;
  }

  .step__info {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {
  .steps-card {
    padding: 1.5rem 1rem;
  }

  .steps-card .title {
    font-size: 1.3rem;
  }

  .step__title {
    height: 38px;
  }
}

/* ********************************************************************************* */


/* ************************************************************************************************* */
/* signup page */

.auth-container * {
  /* box-sizing: border-box; */
  /* font-family: 'Poppins', sans-serif; */
}

.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: transparent;
}

.auth-container .wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* width: 400px; */
  height: 500px;
}

/* FORM BOX */
.auth-container .form-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../../images/Sign Up/sign-up-card.webp');

}

/* Animation classes */
.auth-container .wrapper.animate-signUp .form-wrapper.sign-in {
  transform: rotate(7deg);
  animation: animateRotate .7s ease-in-out forwards;
  animation-delay: .3s;
}

.auth-container .wrapper.animate-signIn .form-wrapper.sign-in {
  animation: animateSignIn 1.5s ease-in-out forwards;
}

@keyframes animateSignIn {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-500px);
  }

  100% {
    transform: translateX(0) rotate(7deg);
  }
}

.auth-container .wrapper .form-wrapper.sign-up {
  transform: rotate(7deg);
}

.auth-container .wrapper.animate-signIn .form-wrapper.sign-up {
  animation: animateRotate .7s ease-in-out forwards;
  animation-delay: .3s;
}

@keyframes animateRotate {
  0% {
    transform: rotate(7deg);
  }

  100% {
    transform: rotate(0);
    z-index: 1;
  }
}

.auth-container .wrapper.animate-signUp .form-wrapper.sign-up {
  animation: animateSignUp 1.5s ease-in-out forwards;
}

@keyframes animateSignUp {
  0% {
    transform: translateX(0);
    z-index: 1;
  }

  50% {
    transform: translateX(500px);
  }

  100% {
    transform: translateX(0) rotate(7deg);
  }
}

/* Text + Inputs */
.auth-container h2 {
  font-size: 30px;
  color: #1E2022;
  text-align: center;
}

.auth-container .input-group {
  position: relative;
  width: 320px;
  margin: 30px 0;
}

.auth-container .input-group span {
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #1E2022;
  padding: 0 5px;
  transition: .5s;
  pointer-events: none;
}

.auth-container .input-group input {
  width: 100%;
  height: 40px;
  font-size: 16px;
  color: #1E2022;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #1E2022;
  border-radius: 5px;
  outline: none;
}

/* Floating label effect */
.auth-container .input-group input:focus~span,
.auth-container .input-group input:valid~span,
.auth-container .input-group input.error~span {
  top: 0;
  font-size: 12px;
  background: #F0F5F9;
}

.auth-container .input-group label.error {
  color: #fa2600;
  padding-top: 15px;
}

.auth-container .forgot-pass {
  margin: -15px 0 15px;
}

.auth-container .forgot-pass a {
  color: #1E2022;
  font-size: 14px;
  text-decoration: none;
}

.auth-container .btn {
  width: 100%;
  height: 40px;
  background: #F2B807;
  color: #F0F5F9;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.auth-container .sign-link {
  text-align: center;
  margin-top: 25px;
}

.auth-container .sign-link a {
  color: #F2ACB9;
  text-decoration: none;
  font-weight: 600;
}

.auth-container .sign-link a:hover {
  cursor: pointer;
  color: #F2B807;
}


/* signup responsive */

/* Tablet */
/* @media (max-width: 768px) {

  .auth-container {
    padding: 20px;
    min-height: auto;
  }

  .auth-container .wrapper {
    width: 100%;
    max-width: 380px;
    height: auto;
  }

  .auth-container .form-wrapper {
    padding: 40px 25px;
    background-size: cover;
    background-position: center;
  }

  .auth-container .input-group {
    width: 100%;
  }

} */

/* Mobile */
/* @media (max-width: 480px) {

  .auth-container .wrapper {
    max-width: 100%;
  }

  .auth-container h2 {
    font-size: 24px;
  }

  .auth-container .form-wrapper {
    padding: 30px 20px;
  }

  .auth-container .input-group {
    margin: 22px 0;
  }

  .auth-container .input-group input {
    height: 38px;
    font-size: 14px;
  }

  .auth-container .btn {
    height: 38px;
    font-size: 15px;
  }

  .auth-container .sign-link {
    margin-top: 18px;
  }

} */

/* Small Mobile */
/* @media (max-width: 360px) {

  .auth-container h2 {
    font-size: 22px;
  }

  .auth-container .input-group span {
    font-size: 14px;
  }

  .auth-container .input-group input {
    height: 36px;
  }

} */

@media (max-width: 420px) {

  .auth-container .wrapper .form-wrapper.sign-up {
    transform: rotate(0deg) !important;
  }

  .auth-container .wrapper.animate-signIn .form-wrapper.sign-in {
    transform: rotate(0deg) !important;
  }

  .auth-container .form-wrapper {
    background-color: #fff9ec;
    padding: 60px;
    background-image: none;
  }

}

@media(max-width:280px) {
  .auth-container .input-group {
    width: 215px;
  }
}

/* ************************************************************************************************* */

.orbia-about_one.pt-200 {
  padding-top: 400px;
}

.check-list.style-one li {
  line-height: 2;
}


.orbia-hero_three .hero-wrapper .hero-content h1,
.orbia-hero_one .hero-wrapper .hero-content h1 {
  font-size: 60px;
  font-weight: 500;
}

.section-title h2,
.orbia-service_three .orbia-content-box h5,
.smart_scroll_section .title h2 {
  font-size: 40px;
  font-weight: 500;
}

.orbia-iconic-box.style-two .content .title,
.orbia-service_three .orbia-service-list .nav-tabs .nav-link,
.section-title .sub-title,
/* .smart_scroll_section .title p, */
.orbia-iconic-box.style-four .content h4 {
  font-size: 20px;
  font-weight: 500;
}

.orbia-iconic-box.style-two .content .read-more.style-one,
.orbia-fact-item .content .read-more,
.smart_scroll_section .title .btn-primary,
.smart_card .btn,
.orbia-team_one .member-info .team-experience-social-box,
.orbia-team_one .shape,
.orbia-service_three .orbia-button a,
.orbia-choose_one .orbia-image .orbia-rating-box,
.orbia-hero_one .hero-wrapper .hero-content .hero-button-wrap .orbia-avatar-box,
.orbia-features_three .orbia-avatar-box,
.orbia-hero_three .hero-wrapper .hero-content .orbia-avatar-box {
  display: none;
}

/* .smart_scroll_section .title p {
  color: #fff;
} */

.orbia-iconic-box.style-one {
  min-height: 410px;
}

.orbia-features_three.smart_col {
  padding: 70px 10px;
}

.orbia-cta_one .orbia-content-box {
  width: 70%;
  margin: 0 auto;
}

.smart_slide {
  text-align: left;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}

.smart_slide .sub-title {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 2;
}

.smart_slide .sub-title:before {
  width: 10px;
  height: 6px;
  position: relative;
  top: 13px;
}

.header-navigation .main-menu ul>li.active a,
.header-navigation .main-menu ul>li .sub-menu li.active a {
  color: #F2B807;
}

.footer-widget .widget-content .widget-nav li.active a,
.info a:hover {
  background: linear-gradient(266deg, #f2b807 -1.18%, #ffa5a7 96.14%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.orbia-service_three.home .orbia-button a {
  display: inline-block;
}

.form-group label.error {
  color: red;
  text-align: left;
  align-items: flex-start;
  width: 100%;
  padding: 0 25px 20px;
}


/* ***************************************************************** */

/* sujeet */

main {
  background-image: url('../../images/Home/home-bg.webp');
  background-repeat: repeat;
  background-size: cover;
}

.orbia-iconic-box .icon {
  width: 70px;
}

i.fas.fa-check-circle {
  position: relative;
  top: 9px;
  /* top: 6px; */
  /* top: 0px; */
}

.tarvel_shape {
  position: absolute;
  scale: 0.5;
  top: -150px;
  width: 100%;
}

.orbia-iconic-box .card-img img {
  width: 80%;
  margin-bottom: 15px;
}

.orbia-process_two .process-wrapper .shape img {
  scale: 0.8;
}

.process_bg {
  background-image: url('../../images/Payment Links/03/box.webp');
}

.fact_card_bg {
  background-image: url('../../images/Payment Links/04/box.webp');
}

.SmartCollect_cta_bg {
  background-image: url('../../images/Smart_Collect/04/box.webp');
}

.cta-shape1 {
  position: absolute;
  top: -20%;
  left: 78px;
  rotate: -46deg;
  z-index: -1;
}

.cta-shape2 {
  position: absolute;
  left: 0;
  top: -17%;
  rotate: 155deg;
  z-index: -1;
}

.orbia-process_one .orbia-process-box-wrap .orbia-process-circle-box .content img,
.orbia-process_one .orbia-process-box .content img {
  width: 70px;
}

.orbia-pricing-item.style-two .pricing-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.currentAccount_counter_bg {
  background-image: url('../../images/Current Account/04/box.webp');
}

.tax_service-bg {
  background-image: url('../../images/Tax Payment/05/box.webp');
}

.escrow_advance-bg {
  background-image: url('../../images/Escrow Account/03/box.webp');
}

.orbia-content-box.aos-init.aos-animate {
  padding-left: 15px;
}

.escrow_choose_bg {
  background-image: url('../../images/Escrow Account/05/box-02.webp');
}

.payout_service_bg {
  background-image: url('../../images/Payout/03/box.webp');
}

section.page-hero.bg_cover.p-r.z-1 {
  background-image: url('../../images/Faq/banner.webp') !important;
}

.bg-unset {
  background: unset;
}


/* sujeet */

/* ***************************************************************** */

.footer-logo a img {
  width: 100%;
  max-width: 180px;
}

.author-thumb-item .author-info .position {
  display: none;
}


@media (min-width: 1536px) and (max-width: 1745px) {

  .smart_scroll_section .scroll_middle img,
  .smart_scroll_section .tiles img {
    min-height: 511px;
    overflow: hidden;
  }

}

@media screen and (max-width: 1024px) {

  .orbia-hero_three .hero-wrapper .hero-content h1,
  .orbia-hero_one .hero-wrapper .hero-content h1 {
    font-size: 35px;
  }

  .orbia-hero_three .hero-wrapper {
    padding: 150px 0 20px;
  }

  .orbia-about_two {
    padding-top: 20px;
  }

  .pb-90 {
    padding-bottom: 40px;
  }

  .pb-120 {
    padding-bottom: 60px;
  }

  .pt-115 {
    padding-top: 65px;
  }

  .pb-170 {
    padding-bottom: 60px;
  }

  .pt-165 {
    padding-top: 65px;
  }

  .tarvel_shape {
    display: none;
  }

  .orbia-hero_one .hero-wrapper .hero-content {
    padding-bottom: 50px;
  }

  .pt-120 {
    padding-top: 50px;
  }

  .pt-110 {
    padding-top: 50px;
  }

  .smart_scroll_section .scroll_middle img {
    height: auto;
  }

  .pb-100 {
    padding-bottom: 20px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .orbia-cta_one .orbia-content-box {
    width: 100%;
  }

  .orbia-we_two {
    padding-top: 50px;
  }

  .orbia-fact-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {

  .footer-widget.footer-about-widget .widget-content {
    text-align: center;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .orbia-service_three .orbia-image img {
    scale: 1;
  }

  .auth-container {
    min-height: 40vh;
  }
}

@media screen and (max-width: 767px) {

  .orbia-hero_one .hero-wrapper .hero-content {
    padding-bottom: 0px;
  }

  .orbia-about_four .orbia-image-box {
    min-height: auto;
  }

  .orbia-counter_one {
    padding-bottom: 20px;
  }

  .orbia-info-box.style-two {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .footer-widget .widget-content {
    text-align: center;
  }

  .orbia-content-box {
    text-align: center;
  }

  .header-navigation .site-branding {
    max-width: 150px;
  }

  .orbia-hero_three .hero-wrapper .hero-content h1,
  .orbia-hero_one .hero-wrapper .hero-content h1 {
    font-size: 35px;
  }

  .orbia-hero_three .hero-wrapper {
    padding: 150px 0 20px;
  }

  .orbia-about_two {
    padding-top: 20px;
  }

  .pb-90 {
    padding-bottom: 40px;
  }

  .pb-120 {
    padding-bottom: 60px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pt-115 {
    padding-top: 65px;
  }

  .pb-170 {
    padding-bottom: 60px;
  }

  .pt-165 {
    padding-top: 65px;
  }

  [data-aos^=fade][data-aos^=fade] {
    opacity: 1;
  }

  .section-title h2,
  .orbia-service_three .orbia-content-box h5,
  .smart_scroll_section .title h2 {
    font-size: 30px;
  }

  [data-aos=fade-down] {
    transform: translate3d(0, -10px, 0);
  }

  .orbia-choose_two .orbia-image-box {
    min-height: auto;
  }

  .orbia-we_two .orbia-content-box {
    padding-right: 0;
  }

  .sub-title {
    display: inline-block;
  }

  .hero-content,
  .orbia-about_two .orbia-content-box {
    margin-bottom: 30px;
  }

  /* .orbia-fact-item{
    margin: 0 auto 0px;
  } */
}

.page-hero .page-content ul li a:hover {
  color: #F2B807;
}

.orbia-features_one .features-wrapper .nav-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
}