@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&family=Unbounded:wght@200..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
  scroll-behavior: auto;
  overflow-x: hidden !important;
}

body {
  width: 100%;
  height: auto;
  position: relative;
  font-family: "Poppins";
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin-bottom: 0;
}

#scroll-content {
  width: 100%;
  height: 100vh;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999999999999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.loaderTop,
.loaderBottom {
  width: 100%;
  overflow: hidden;
  height: 50%;
  background: var(--bg-color-2);
  display: flex;
  justify-content: center;
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.loaderTop {
  align-items: end;
}
.loaderBottom {
  align-items: start;
}
.loaderBottomTxt,
.loaderTopTxt {
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1;
  font-size: 200px;
  font-family: 'Bricolage Grotesque';
  font-weight: 900;
  background: var(--bg-color-2);
  text-shadow: #046bfb 4px 0px 0px,
    #046bfb 3.87565px 0.989616px 0px,
    #046bfb 3.51033px 1.9177px 0px,
    #046bfb 2.92676px 2.72656px 0px,
    #046bfb 2.16121px 3.36588px 0px,
    #046bfb 1.26129px 3.79594px 0px,
    #046bfb 0.282949px 3.98998px 0px,
    #046bfb -0.712984px 3.93594px 0px,
    #046bfb -1.66459px 3.63719px 0px,
    #046bfb -2.51269px 3.11229px 0px,
    #046bfb -3.20457px 2.39389px 0px,
    #046bfb -3.69721px 1.52664px 0px,
    #046bfb -3.95997px 0.56448px 0px,
    #046bfb -3.97652px -0.432781px 0px,
    #046bfb -3.74583px -1.40313px 0px,
    #046bfb -3.28224px -2.28625px 0px,
    #046bfb -2.61457px -3.02721px 0px,
    #046bfb -1.78435px -3.57996px 0px,
    #046bfb -0.843183px -3.91012px 0px,
    #046bfb 0.150409px -3.99717px 0px,
    #046bfb 1.13465px -3.8357px 0px,
    #046bfb 2.04834px -3.43574px 0px,
    #046bfb 2.83468px -2.82216px 0px,
    #046bfb 3.44477px -2.03312px 0px,
    #046bfb 3.84068px -1.11766px 0px,
    #046bfb 3.9978px -0.132717px 0px;
  z-index: 2;
  color: var(--bg-color-2);
}
.loaderTopTxt {
  transform: translateY(50%);
}
.loaderBottomTxt {
  transform: translateY(-50%);
}
.animateTxt {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
header {
  width: 100%;
  /* min-height: 100vh; */
  background-image: url(../../images/header/headerBg.png);
  background-size: cover;
  padding-top: calc(15px + 21px);
}
.yoso-talk {
  background: transparent;
  border: 0;
  font-family: 'Bricolage Grotesque';
  font-size: 15px;
  font-weight: normal;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: solid 1px var(--text-color-2);
}
header nav {
  width: 100%;
  border: solid 8px #046BFB;
  padding: 0 35px;
  background-color: var(--bg-color);
  border-radius: 60px;
  min-height: 120px;
}
.topBar {
  position: relative;
  min-height: 42px;
  border-radius: inherit;
  width: 100%;
  top: -25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #182C40;
  padding: inherit;
}
.discount {
  font-size: 14px;
  color: var(--text-color-2);
  font-weight: 500;
}
.topBar ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.topBar ul li ,.topBar ul li a {
  color: #ffffff !important;
  font-weight: 400;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.yoso-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  transition: var(--transition);
}
.sticky {
  transform: translateY(-100px);
  transition: none;
}
.yoso-menu.sticky {
  background-color: var(--bg-color);
  transform: translateY(0);
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 10;
  box-shadow: 0px 22px 65px 0px rgba(32, 28, 29, 0.14) !important;
}
.logo {
  display: flex;
  line-height: 1;
  font-family: 'Bricolage Grotesque';
  font-weight: 800;
  color: var(--text-color-2);
  font-size: 40px;
  align-items: center;
  position: relative;
  bottom: 10px;
}
.logo img {
  width: 135px;
}
.mainMenu {
  display: flex;
  height: auto;
  align-items: center;
  gap: 45px;
}
.mobileMenu {
  display: none;
  flex-direction: column;
  flex: 1;
  justify-content: end;
  align-items: end;
}
.hamburger {
  position: relative;
  width: 1em;
  height: 1em;
  font-size: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
}
.hamburger-line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 0.125em;
  border-radius: 0.125em;
  background: currentColor;
  transition: inherit;
}
.hamburger-line:nth-child(1) {
  top: 0.125em;
}
.hamburger.is-active .hamburger-line:nth-child(1),
.w-nav-button.w--open .hamburger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotateZ(-135deg);
}
.hamburger-line:nth-child(2) {
  top: 0.438em;
}
.hamburger.is-active .hamburger-line:nth-child(2),
.w-nav-button.w--open .hamburger-line:nth-child(2) {
  right: 50%;
  width: 0;
}
.hamburger-line:nth-child(3) {
  top: 0.75em;
  width: 0.625em;
}
.hamburger.is-active .hamburger-line:nth-child(3),
.w-nav-button.w--open .hamburger-line:nth-child(3) {
  top: 50%;
  width: 100%;
  transform: translateY(-50%) rotateZ(135deg);
}
.mobileMenu .mainMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-color-2);
  z-index: 100000000000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.mobileMenu .mainMenu li a {
  color: var(--bg-color);
  text-align: center;
  font-size: 40px;
  line-height: 1;
}
.mobileMenu .mainMenu .hamburger {
  color: var(--bg-color);
  position: absolute;
  top: 20px;
  right: 20px;
}
.mainMenu li {
  font-size: 17px;

  font-weight: 600;
}
.mainMenu li .dropdown-toggle.show.menuText .duplicateText {
  clip-path: circle(70.7% at 50% 50%);
}
.mainMenu li .dropdown-toggle.show.menuText .menuTextInner {
  color: transparent;
}
.mainMenu li a {
  transition: var(--transition);
  color: var(--text-color-2);
  cursor: pointer;
}
.mainMenu li .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}
.mainMenu li .dropdown-menu {
  margin-top: 10px !important;
  padding: 0;
  border: 0;
}

.mainMenu li .dropdown-item {
  padding: 10px 15px;
  position: relative;
  transform-style: preserve-3d;
  font-weight: 600;
  font-size: 17px;
}
.mainMenu li .dropdown-item::after {
  content: "";
  width: 0;
  height: 100%;
  background: var(--primary-gradiant);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateZ(-1px);
  transition: var(--transition);
}
.mainMenu li .dropdown-item:hover {
  background: none;
}
.mainMenu li .dropdown-item:hover::after {
  width: 100%;
}
.menuText {
  position: relative;
}
.menuText .menuTextInner {
  transition: var(--transition);
}
.menuText .duplicateText {
  position: absolute;
  top: 0;
  left: 0;
  color: #B5E3F2;
  background: #B5E3F2;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
  clip-path: circle(0% at 50% 50%);
}
.menuText:hover .menuTextInner {
  color: transparent;
}
.menuText:hover .duplicateText {
  clip-path: circle(70.7% at 50% 50%);
}
.search i {
  font-size: 22px;
  color: var(--text-color-2);
  position: relative;
  transition: var(--transition);
}
.search {
  cursor: pointer;
  display: none;
}
.search i:after {
  content: "\f002";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: inherit;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary-gradiant);
  color: transparent;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
  clip-path: circle(0% at 50% 50%);
}
.search i:hover {
  color: transparent;
  transform: scale(1.5);
}
.search i:hover::after {
  clip-path: circle(70.7% at 50% 50%);
}

.searchPopUp,
.talkPopup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.talkPopup form {
  width: 30%;
  margin: 0 auto;
  background: var(--bg-color);
  /* border-radius: 50px; */
  padding: 30px;
}
.talkPopup form input,
.talkPopup form textarea {
  width: 100%;
  /* border-radius: 20px; */
  height: 50px;
  border: 0;
  margin-bottom: 15px;
  box-shadow: 0px 22px 65px 0px rgba(32, 28, 29, 0.14) !important;
  padding: 0 20px;
}
.talkPopup form textarea {
  height: 150px;
  padding: 30px 20px;
}
.talkPopup form input:focus,
.talkPopup form textarea:focus {
  outline: none;
}
.showSearch {
  display: flex;
  display: none !important;
}
.searchPopUp form {
  width: 50%;
  height: 100px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}
.searchPopUp form input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  border: 0;
}
.searchPopUp form input:focus {
  outline: none;
}
.searchPopUp form button {
  background: transparent;
  border: 0;
  font-size: 44px;
  color: rgb(112 112 112);
  position: relative;
  transition: var(--transition);
}
.searchPopUp form input,
.searchPopUp form input::placeholder {
  font-size: 30px;
}
.searchPopUp form input {
  color: #fff;
}
.searchPopUp form:focus-within button {
  color: var(--bg-color);
}
.close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.close i {
  font-size: 50px;
  color: var(--bg-color);
}
.close i:after {
  content: "\f00d";
}

/* nav end */

.circleTxt {
  width: 100%;
  aspect-ratio: 1 /1;
  background: var(--primary-gradiant);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.circleTxt img {
  width: 50px;
}
.circleTxt .rotateTxt {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aboutImg img {
  width: 60%;
}
.aboutText {
  background: var(--primary-gradiant);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  font-family: 'Bricolage Grotesque';
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 30px;
}
.aboutImg {
  margin: 0 auto;
  width: 80%;
  aspect-ratio: 1 / 1;
  background-color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shaderSlide {
  width: 100%;
  height: 570px;
  background-color: lightcoral;
}
.yoso-details-pagination {
  position: absolute;
  right: 0 !important;
  display: flex;
  justify-content: end;
}

.yoso-details-pagination .swiper-pagination-bullet {
  border: solid 1px rgb(193, 193, 193);
  background-color: transparent;
  width: 65px;
  border-radius: 20px;
  height: 24px;
  opacity: 1;
}
.yoso-details-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--primary-gradiant);
  border: 0;
}
/* hero Section End */

.tagline img {
  width: 20px;
}
.tagline p {
  font-size: 15px;
  font-family: 'Bricolage Grotesque';
  font-weight: 500;
  color: var(--text-color);
}
.tagline {
  display: flex;
  align-items: center;
  gap: 5px;
}
.yoso-h1,
.yoso-h2,
.yoso-h3,
.yoso-h5,
.yoso-h6,
.yoso-h4 {
  font-weight: 800;
  color: var(--heading-color);
  font-family: 'Bricolage Grotesque';
  margin: 15px 0px;
}
.yoso-h1 {
  font-size: 70px;
}
.yoso-desc {
  font-size: 18px;
  color: var(--text-color);
  font-weight: normal;
  padding: 15px 0;
  line-height: 1.5;
}
.yoso-list li {
  display: flex;
  font-size: 18px;
  color: var(--text-color-2);
  font-weight: 600;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.yoso-list li i {
  font-size: 24px;
  color: transparent;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.yoso-button {
  width: max-content;
  height: 65px;
  border-radius: 32px;
  background: #046bfb;
  border: none;
  padding: 0 35px;
  display: flex;
  text-transform: uppercase;
  align-items: center;
  font-size: 13px;
  font-family: 'Bricolage Grotesque';
  font-weight: 600;
  color: rgb(255 255 255);
  gap: 10px;
  transition: 0.5s linear;
  position: relative;
}
.yoso-button i,
.yoso-button-3 i {
  font-size: 16px;
  transform: rotate(-45deg);
  transition: var(--transition);
  position: relative;
}
.yoso-button span,
.yoso-button-3 span i {
  display: inline-block;
  overflow: hidden;
  position: relative;
  margin-left: 7px;
}

.yoso-button span i:nth-child(1),
.yoso-button-3 span i:nth-child(1) {
  position: absolute;
  left: -10px;
  bottom: -10px;
  transform: translateX(-5px) rotate(-45deg);
}
.yoso-button span i:nth-child(2),
.yoso-button-3 span i:nth-child(2) {
  bottom: 0;
  left: 0;
}
.yoso-button:hover span i:nth-child(2),
.yoso-button-3:hover span i:nth-child(2) {
  left: 100px;
  bottom: 100px;
}
.yoso-button:hover span i:nth-child(1),
.yoso-button-3:hover span i:nth-child(1) {
  bottom: 5px;
  left: 5px;
}

.featureslide {
  background: #B5E3F2;
  height: 161px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featureslide marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.js-marquee {
    margin: 0 !important;
}
.slideInner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 98px;
  width: 100%;
  height: 100%;
  margin-right: 98px;
}
.slide {
  font-family: 'Bricolage Grotesque';
  font-size: 5rem;
  font-weight: 800;
  color: #182C40;
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 0;
  width: max-content;
}
.slide::after {
  content: "";
  background-image: url(../../images/Layer_x0020_1\ \(1\).svg);
  background-size: cover;
  width: 50px;
  height: 50px;
  display: inline-block;
}
.yoso-h2 {
  font-size: 50px;
}
.yoso-margin {
  margin: 150px 0;
}
.serviceSingle {
  width: 100%;
  height: auto;
  background-color: #F8F9FF;
  border-radius: 30px;
  padding: 0 50px;
  position: relative;
  margin-top: 90px;
}
.serviceSingle > * {
  position: relative;
}
.serviceIcon {
  border: solid 10px #F8F9FF;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color);
  margin: 0 auto;
  transform: translateY(-40%);
  font-size: 38px;
  position: relative;
  color: var(--text-color-2);
  /* transform-style: preserve-3d; */
}
.serviceIcon::after {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: -10px;
  background: transparent;
  border-radius: inherit;
  border: inherit;
  border-color: #046bfb;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.serviceIcon img {
  width: 38px;
}
.yoso-h3 {
  font-size: 20px;
}
.yoso-list-2 li i {
  background: rgb(0 0 0);
  background-clip: text;
  font-size: 17px !important;
}
.yoso-button-2 {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  font-size: 14px;
  color: var(--text-color-2);
  margin: 0 auto;
  transition: 0.5s linear;
  position: relative;
}
.serviceSingle::before {
  content: "";
  background: #046BFB;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
}
.serviceSingle:hover .serviceIcon::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.serviceSingle:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.aboutAgency {
  width: 100%;
  position: relative;
  min-height: 80vh;
  transform-style: preserve-3d;
  margin-top: -10rem;
}
.aboutAgency::before {
  content: "";
  width: 100%;
  height: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../../images/bg.jpg);
  background-size: cover;
  transform: translateZ(-1px);
  background-color: var(--secondary-color);
}
.agencySide {
  width: 100%;
}
.agencySide img:nth-child(3) {
  height: 100%;
  display: block;
  margin: 0 auto;
}
.agencySide img:nth-child(1) {
  top: 40%;
}
.agencySide img:nth-child(2) {
  top: 65%;
}
.agencySide img:nth-child(4) {
  top: 60%;
}
.gallery .swiper-slide {
  transition-timing-function: cubic-bezier(0.76, 0.09, 0.215, 1);
}
.gallery {
  width: 100%;
  height: auto;
}

.gallerySingle {
  margin-bottom: 80px;
  padding: 0 20px;
  position: relative;
}
.aboutGallery {
  width: 80%;
  height: auto;
  background: var(--primary-gradiant);
  padding: 30px 30px;
  border-radius: 55px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  transform: translateY(-80%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.yoso-h6 {
  font-size: 14px;
}
.yoso-h4 {
  font-size: 23px;
  color: var(--heading-color);
}
.yoso-button-3 {
  width: 55px;
  height: 55px;
  background-color: var(--bg-color);
  border-radius: 50%;
  font-size: 14px;
  color: var(--text-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.yoso-button-3 i {
  transform: rotate(-45deg);
}
.yoso-button-3:hover span i:nth-child(2) {
  left: 100px;
  bottom: 100px;
}

.yoso-button-3:hover span i:nth-child(1) {
  bottom: 15px;
  left: 15px;
}
.gallerySingle:hover .aboutGallery {
  transform: translateY(-70%);
  opacity: 1;
}
.yoso-padding {
  padding: 150px 0;
}
.yoso-awards {
  width: 100%;
  height: auto;
  background-image: url(../../images/bgDark.jpg);
  background-size: cover;
  /* clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%); */
  /* padding-top: 10rem; */
  /* padding-bottom: 18rem; */
  background-color: #182C40;
  background-image: url(../../images/ss-01.svg);
  /* margin-top: 970px; */
}

.darkTagline {
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.headingLight {
  color: #B5E3F2;
}
.awardSingle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding-bottom: 25px;
  border-bottom: solid 1px rgb(50, 50, 50);
  margin-top: 25px;
  position: relative;
}
.awardIcon {
  min-width: 103px;
  height: 103px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  border: solid 1px transparent;
  transition: var(--transition);
}
.awardIcon img {
  width: 60px;
  transition: var(--transition);
}
.awardSingle::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #B5E3F2;
  transition: var(--transition);
}
.awardSingle .yoso-button-3 {
  transition: var(--transition);
  min-width: 55px;
  margin-left: auto;
}
.awardSingle:hover .awardIcon {
  background: transparent;
  border-color: #046bfb;
}
.awardSingle:hover .menuText .menuTextInner {
  color: transparent;
}
.awardSingle:hover .menuText .duplicateText {
  clip-path: circle(70.7% at 50% 50%);
}
.awardSingle:hover .yoso-button-3 {
  background: #B5E3F2;
}
.awardSingle:hover .awardIcon {
  background-color: #B5E3F2;
  border-color: #B5E3F2;
}
.awardSingle:hover .awardIcon img {
  /* filter: invert(25%) sepia(100%) saturate(7000%) hue-rotate(210deg) brightness(95%) contrast(100%); */
}
.awardSingle:hover::before {
  width: 100%;
}
.priceSingle {
  width: 100%;
  height: auto;
  background-color: var(--secondary-color);
  padding: 50px 45px;
  border-radius: 30px;
}
.price {
  /* font-family: 'Bricolage Grotesque'; */
  font-size: 38px;
  font-weight: 800;
  color: rgb(255 255 255);
/* $395 */
  /* position: absolute; */
  /* left: 20.57%; */
  right: 67.6%;
  top: 48.37%;
  bottom: 50.47%;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  font-size: 90px;
  line-height: 108px;
/* identical to box height */
  color: #F8F9FF;
}
.price span {
  font-weight: normal;
  font-size: 28px;
}
.priceImg {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 48px;
  border-bottom-left-radius: 0;
  margin: 25px 0;
}
.priceSingle .yoso-h4 {
  color: var(--text-color-3);
  margin: 0;
  font-family: "Poppins";
}
.priceLine {
  width: 100%;
  height: 5px;
  background: var(--primary-gradiant);
  margin: 35px 0;
  margin-top: 30px;
}
.yoso-button-4 {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-color: var(--text-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: "Poppins";
  color: var(--bg-color);
  font-weight: 900;
  margin-top: 35px;
  position: relative;
  transition: var(--transition);
}
.yoso-button-4:hover {
  border-radius: 0;
  background: var(--primary-gradiant);
  color: var(--text-color-2);
}
.yoso-price .yoso-desc {
  font-size: 20px;
  color: rgb(100, 124, 158);
  font-weight: 600 !important;
  text-align: center;
  margin-top: 60px;
}
.yoso-desc a {
  color: var(--text-color-2);
  border-bottom: solid 1px var(--text-color-2);
}
.yoso-testimonials {
  width: 100%;
  height: auto;
  background-image: url(../../images/bg.jpg);
  background-size: cover;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.yoso-testimonials .yoso-desc {
  font-size: 20px;
  font-family: "Space Grotesk";
  font-weight: bold;
  width: 90%;
}
.testimonials {
  width: 100%;
  height: 100%;
}
.testimonials .swiper-wrapper {
  width: 100%;
  height: 450px;
}
.testimonials .testimonialImg {
  width: 100%;
  height: 450px;
  border-radius: 20px;
}
.testimonialsThumb {
  position: relative;
}
.testimonialsThumb img {
  width: 100%;
  height: 160px;
  border-radius: 20px;
}
.stars {
  display: flex;
  font-size: 18px;
  color: var(--text-color-2);
  align-items: center;
  justify-content: start;
  gap: 6px;
}
.clientName {
  font-family: "Space Grotesk";
  font-size: 20px;
  color: rgb(0 178 161);
  font-weight: bold;
}
.clientName span {
  font-size: 14px;
  color: rgb(115 120 121);
}
.prevNext {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.prevNext button {
  width: 50px;
  height: 50px;
  background-color: var(--bg-color-2);
  border-radius: 50%;
  border: none;
  color: var(--bg-color);
  font-size: 14px;
  transition: var(--transition);
}
.prevNext button.testimonial-next {
  background: var(--primary-gradiant);
  color: var(--text-color-2);
}
.prevNext button.testimonial-next:hover {
  transform: translateX(10px);
}
.prevNext button.testimonial-prev:hover {
  transform: translateX(-10px);
}
.testimonials .swiper-slide {
  opacity: 0 !important;
}
.testimonials .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.qouteSign {
  position: absolute;
  top: 5px;
  right: 15px;
}
.expIcon {
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 4px #046bfb;
  margin-right: 20px;
}
.expIcon i {
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--text-color-2);
  background-color: rgb(173, 255, 1);
  border-radius: 50%;
}
.experienceTxt .yoso-h2 {
  font-size: 50px;
  margin: 0;
}

.experienceTxt .yoso-desc {
  margin-top: 10px;
  font-size: 14px;
  font-family: 'Bricolage Grotesque';
  margin: 0;
  padding: 0;
  width: 80%;
}
.BorderLine {
  height: 1px;
  min-width: 60px;
  background: var(--primary-gradiant);
}
.yoso-rotate-45 {
  transform: rotate(45deg);
}
.yoso-rotate-n-45 {
  transform: rotate(-45deg);
}

.tabs-inner {
  border-radius: 240px;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
}
.tabs-inner::before {
  content: "";
  width: 100%;
  height: 93%;
  background-color: rgb(243, 248, 255);
  border-radius: inherit;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateZ(-1px);
}
.yoso-tab-button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.yoso-tab-button button {
  width: 100%;
  height: 55px;
  border-radius: 30px;
  border: 0;
  background: var(--bg-color);
  font-family: 'Bricolage Grotesque';
  font-size: 13px;
  font-weight: bold;
  color: var(--text-color-2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.yoso-tab-button button.active {
  background: var(--primary-gradiant);
}
.yoso-tab-button button i {
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-10px);
}
.yoso-tab-button button.active i {
  transform: translateX(0);
  opacity: 1;
}
.tab-pane .yoso-h4 {
  font-size: 25px;
  margin: 0;
  margin-bottom: 12px;
  margin-top: 20px;
}
.yoso-list-3 {
  margin-top: 30px;
}
.yoso-list-3 li {
  font-size: 17px;
  font-family: 'Bricolage Grotesque';
  color: var(--text-color-2);
  margin: 20px 0;
}
.yoso-list-3 li i {
  margin-right: 10px;
}
.yoso-break {
  width: 100%;
  margin-bottom: 80px;
  height: 3px;
  background-color: var(--text-color-3);
  position: relative;
}
.yoso-break img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.yoso-faqs {
  border: solid 8px #046bfb;
  border-radius: 30px;
  background: white;
}
.yoso-faqs .yoso-h2 {
  font-size: 50px;
  line-height: 1.5;
}
.faq-item {
  border-bottom: solid 1px var(--text-color-2);
  padding: 0;
  margin-bottom: 30px;
}
.faq-item:nth-child(4) {
  border-bottom: 0;
}
.faq-header {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.faq-header button {
  background: transparent;
  width: 100%;
  height: auto;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-size: 23px;
  font-family: 'Bricolage Grotesque';
  font-weight: 600;
  text-align: start;
  gap: 20px;
}
.plusminus {
  position: relative;
  min-width: 40px;
  height: 40px;
  cursor: pointer;
  background: #046bfb;
  border-radius: 50%;
  transition: var(--transition);
}
.faq-header button.collapsed .plusminus {
  background: #B5E3F2;
}
.plusminus:before {
  transform: translate(-50%, -50%) rotate(-90deg);
  opacity: 0;
}
.plusminus:after {
  transform: translate(-50%, -50%) rotate(0);
}
.plusminus:before,
.plusminus:after {
  content: "";
  display: block;
  background-color: rgb(255 255 255);
  position: absolute;
  top: 50%;
  left: 50%;
  transition: var(--transition);
  width: 10px;
  height: 2px;
}
.faq-header button.collapsed .plusminus:before,
.faq-header button.collapsed .plusminus:after {
  background-color: rgb(129, 129, 129);
}
.faq-header button.collapsed .plusminus:before {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.faq-header button.collapsed .plusminus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-body {
  margin-bottom: 30px;
}
.postSingle {
  width: 100%;
  height: auto;
}
.postImg {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
}
.postImg img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.postTime {
  position: absolute;
  top: 0;
  left: 0;
  height: 75px;
  border-bottom-right-radius: 15px;
  width: 100px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Bricolage Grotesque';
  font-size: 20px;
  font-weight: 600;
  color: var(--bg-color);
}
.postTime span {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color-2);
}
.postTime .month {
  background: var(--primary-gradiant);
  font-size: 12px;
  color: var(--text-color-2);
}
.skillBlock {
  width: 100%;
  border-radius: 10px;
  background-color: var(--secondary-color);
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.skillBlock img {
  width: 52px;
}
.skillBlock.flex-column img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}
.skillBlock .yoso-desc {
  font-size: 16px;
}
.yoso-footer {
  width: 100%;
  height: auto;
  background: #182C40;
  background-image: url(../../images/Group\ 14514.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.footerHeader {
  padding: 30px 0;
  width: 100%;
  height: auto;
  border-bottom: solid 1px #EBEBEB;
}
.footerHeader::before {
  /* content: ""; */
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  background-color: rgb(65, 39, 99);
  left: 50%;
  transform: translateX(-50%);
}
.yoso-footer .logo {
  color: var(--bg-color);
}
.yoso-h5 {
  font-size: 15px;
  margin: 0;
}
.newsLetter {
  background-color: rgb(32, 11, 58);
  width: 406px;
  height: 57px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.newsLetter input {
  height: 100%;
  background-color: transparent;
  border: 0;
  flex: 1;
  padding-left: 40px;

  font-size: 11px;
  font-family: 'Bricolage Grotesque';
  color: rgb(84, 53, 125);
}
.newsLetter input:focus {
  outline: none;
}
.newsLetter input::placeholder {
  font-size: 11px;
  font-family: 'Bricolage Grotesque';
  color: rgb(84, 53, 125);
}
.newsLetter button {
  padding: 0 30px;
  height: 100%;
  border-radius: 30px;
  background-color: rgb(48, 18, 86);
  font-size: 13px;
  font-family: 'Bricolage Grotesque';
  color: var(--bg-color);
  border: 0;
}
.footerMain {
  padding: 0;
}
.phoneIcon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradiant);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: var(--text-color-2);
}
.phoneDetails {
  font-family: 'Bricolage Grotesque';
  font-size: 12.5px;
  font-weight: normal;
  background: var(--primary-gradiant);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 15px;
}
.phoneDetails span {
  font-size: 15px;
  font-weight: bold;
  background: var(--bg-color);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footerMain .yoso-desc {
  color: var(--bg-color);
  width: 70%;
}
.footerLinks li {
  margin-top: 0;
}
.footerLinks li a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-size: 15px;
  font-family: 'Bricolage Grotesque';
  color: #B1B1B1;
}
.footerLinks li a img {
  width: 20px;
  transition: var(--transition);
  transform: translateX(0);
  position: relative;
  z-index: 2;
}
.linkTxt {
  position: relative;
  display: inline-block;
}
.linkTxt .linkD {
  position: absolute;

  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  left: 0;
}
.linkTxt .txtTop {
  top: 0;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  color: var(--bg-color);
}
.linkTxt .txtBottom {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  color: var(--bg-color);
  bottom: 0;
}
.footerLinks li:hover a img {
  transform: translateX(200%);
  opacity: 0;
}
.footerLinks li:hover .linkTxt {
  color: white;
}
.footerLinks li:hover .linkTxt .txtTop {
  top: -3px;
}
.footerLinks li:hover .linkTxt .txtBottom {
  bottom: -3px;
}
.linkTxt::before {
  content: "";
  position: absolute;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) skew(15deg);
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary-gradiant);
  transition: var(--transition);
}
.footerLinks li:hover .linkTxt::before {
  width: 90%;
  opacity: 1;
}
.copyright {
  width: 100%;
  min-height: 80px;
  background: var(--primary-gradiant);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.copyrightTxt {
  font-size: 13px;
  font-family: 'Bricolage Grotesque';
  font-weight: 500;
}
.socialIcon {
  font-size: 13px;
  font-family: 'Bricolage Grotesque';
  font-weight: 800;
  text-transform: uppercase;
  color: #B1B1B1;
}
.socialIcon i {
  margin-right: 8px;
  font-size: 15px;
  color: #B1B1B1;
}
.cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  background: var(--primary-gradiant);
  border-radius: 50%;
  pointer-events: none;
  transition: 0.2s linear;
  /* transition: var(--transition); */
  z-index: 9999;
  opacity: 0.7;
}

.cursor.pointer-hover {
  transform: scale(2);
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #046bfb;
  color: rgb(255 255 255);
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Bricolage Grotesque';
  z-index: 1000;
  transition: var(--transition);
}

.back-to-top.show {
  display: block;
}


.js-marquee h1:hover {
    color: white;
}

/* FLIP card  */

 .card-container {
      display: flex;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1rem;
      /* max-width: 1100px; */
      align-items: center;
      justify-content: center;
      justify-items: center;
      flex-wrap: wrap;
      align-content: center;
      flex-direction: row;
    }

  .flip-card {
  background: transparent;
  width: 100%;
  height: 475px; /* fixed height */
  perspective: 1000px;
  min-width: 350px;
  max-width: 27%;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;   /* Ã°Å¸â€˜Ë† fixed: overlap properly */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;         /* Ã°Å¸â€˜Ë† fixed same height */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-front {
  background: #046BFB;
  color: white;
  gap: 1rem;
}

.flip-card-back {
  background: #fff;
  color: #333;
  transform: rotateY(180deg);
}

    .flip-card-front h2 {
      /* font-family: 'Montserrat', sans-serif; */
      /* font-size: 26px; */
      /* margin-bottom: 15px; */
    /* Executive Edge */
      /* position: absolute; */
      left: 22.6%;
      right: 67.14%;
      top: 46.97%;
      bottom: 52.69%;
      font-family: 'Bricolage Grotesque';
      font-style: normal;
      font-weight: 700;
      font-size: 27px;
      line-height: 32px;
      color: #F8F9FF;
    }

    .flip-card-front .price {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 10px;
      font-family: 'Bricolage Grotesque'; 
      font-size: 38px;
      font-weight: 800;
      color: rgb(255 255 255);
      /* position: absolute; */
      /* left: 20.57%; */
      right: 67.6%;
      top: 48.37%;
      bottom: 50.47%;
      font-family: 'Bricolage Grotesque';
      font-style: normal;
      font-weight: 700;
      font-size: 90px;
      line-height: 108px;
      color: #F8F9FF;
    }

    .flip-card-front p {
      font-size: 14px;
    }

    .flip-card-back {
      background: #fff;
      color: #333;
      transform: rotateY(180deg);
      text-align: left;
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding-top: 34px;
    }

    .flip-card-back h3 {
      font-family: 'Montserrat', sans-serif;
      font-size: 17px;
      margin-bottom: -2px;
      color: #182C40;
      font-weight: 600;
    }

    .flip-card-back p {
      font-size: 14px;
      margin: 5px 0;
    }

    .flip-card-back ul {
      font-size: 14px;
      margin: 10px 0;
      padding-left: 20px;
    }
.flip-card-back ul {
    padding: 0;
    list-style: none;
}
    .btn-select {
      margin-top: 20px;
      background: transparent;
      color: #182C40;
      padding: 12px 25px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s;
      border-radius: 50px;
      border: 1px solid #182C40;
      font-family: Bricolage Grotesque;
    }

    .btn-select:hover {
      opacity: 0.9;
      transform: scale(1.05);
    }

    .price.price-medium {
    font-size: 2.2rem;
    line-height: 1.2;
}
img.star-dark {
    filter: invert(25%) sepia(100%) saturate(7000%) hue-rotate(210deg) brightness(95%) contrast(100%);
}.featureslide.cta {
    height: auto;
}

.featureslide.cta .col-md-6 .cta {
    background: #ffffff;
    height: 400px;
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    border-radius: 12px;
    box-shadow: 3px 4px 10px 0px #8080807a;
    padding: 36px;
  }
  
  
  h2.yoso-h2.text-center.headingLight.max-width {
    max-width: 980px;
    margin: auto;
}.col-md-5.pb-5.mb-3.pt-5.Pricing-Influenced-By {
    margin: auto;
}

.col-md-5.pb-5.mb-3.pt-5.Pricing-Influenced-By .yoso-list li {
    font-weight: 500;
    font-size: 14px;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: flex-start; */
}


section.yosoHero.flex-grow-1.d-flex.flex-column.justify-content-center.hero-height-100dvh {
    min-height: 100vh;
    /* position: absolute; */
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../../images/hero/hero.png);
    z-index: 1;
    background-position: center;
    background-size: cover;
    /* padding-top: 75px; */
    margin-top: -156px;
    height: 1000px;
}

.padding-absolute {
    padding-top: 100vh;
}
p.hero-spagn-tag {/* Group 14450 */
  background: #182C40;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  color: #F8F9FF;
display: inline;;
padding: 10px 25px;
border-radius: 50px;
}

.d-flex.\34 -9 {
   
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 400;
    font-size: 37px;
    line-height: 1.2;
    color: #182C40;
    display: flex;
    gap: 11px;
}

.col-md-2.loans-col {
    position: relative;
    left: -65px;
}
.col-md-2.circleTxt-image {
    position: relative;
    right: -65px;
}

section.yoso-services.EXPERTISE-SPEED-SAVINGS-section {
    padding-top: 10rem;
    padding-bottom: 18rem;
    background-color: #182C40;
    background-image: url(../../images/ss-01.svg);
    /* margin-top: 970px; */
}.tagline p {
   
font-family: 'Bricolage Grotesque';
   
font-style: normal;
   
font-weight: 700;
   
font-size: 20px;
   
line-height: 30px;
   
color: #F8F9FF;
}

.serviceSingle.pb-4:hover * {
    color: white ;
}

.serviceSingle.pb-4:hover  i.fa-solid.fa-check{
filter: invert();
}
.serviceSingle.pb-4:hover
 i.fa-solid.fa-right-long {
    color:#000000
}

a.mt-4.yoso-button.btn-cyan {
    background: #B5E3F2;
    color: black;
    font-weight: 800;
}

.d-flex.price-d-flex {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 17px;
}p.MOST-POPULAR {
    position: absolute;
    /* left: 69.48%; */
    /* right: 22.4%; */
    top: 60px;
    bottom: auto;
    /* position: absolute; */
    /* left: 68.8%; */
    /* position: absolute; */
    /* left: 69.48%; */
    /* right: 22.4%; */
    /* top: 46.41%; */
    /* bottom: 53.33%; */
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #046BFB;
    /* top: 46.35%; */
    /* bottom: 53.28%; */
    background: #CFEF80;
    margin-bottom: 21px;
    padding: 6px 13px;
    /* border-radius: 12px; */
}.flip-card-back ul li {font-size: 13px;margin-bottom: 5px;}

section#pricing {
    background-image: url(../../images/Group14429.svg);
    background-color: #F8F9FF;
    padding: 80px 0px;
    margin: 0;
    background-position: center;
    background-size: cover;
}

section.faq-section {
    width: 100%;
    height: auto;
    background-size: cover;
    background-color: #182C40;
    background-image: url(../../images/ss-01.svg);
    padding: 80px 0;
    background-repeat: no-repeat;
    }
    .cta.Join.Our.Team {
    background: #182C40;
}

.cta.Join.Our.Team * {
    color: white;
}


.featureslide.cta .col-md-6 .cta h2 {
    font-weight: 600;
}


.featureslide.cta {
    width: 100%;
    height: auto;
    background-size: cover;
    background-color: #182C40;
    background-image: url(../../images/Group\ 14467.svg);
    padding: 80px 0;
    background-repeat: no-repeat;
}.cta.Training {
    border: 2px solid #046BFB;
}


.row.footer-social-row * {/* Facebook */
    /* position: absolute; */
    /* left: 53.56%; */
    /* right: 42.33%; */
    /* top: 93.01%; */
    /* bottom: 6.75%; */
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
/* identical to box height */
    color: #B1B1B1;
}

.row.footer-social-row img {
    margin-right: 10px;
}.row.footer-social-row .col-md-3 {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

h2.footer-title {
 
  
   
  
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 600;
    font-size: clamp(40px, 9vw, 100px);
    line-height: 120px;

    color: white;
}
.col-md-7.border-right {
    padding: 30px 0px 0px 0;
    border-right: 1px solid #ffffff;
}

.padding-left-col-md-4{
  padding-left: 3.5rem;
}

.row.hr-row hr {border-top: 2px solid #ffffff;opacity: 1;margin-top: 6rem;margin-bottom: 3rem;}

.row.hr-row .col-md-12 {
    padding: 0;
    margin: 0;
}

.row.hr-row .col-md-12 p {
  
  
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    line-height: 21px;
    color: #B1B1B1;
    padding-left: 13px;
}.row.hr-row {
    padding-bottom: 0;
}


/* Common styling for all sections */
.privacy-policy,
.terms,
.legal-disclaimer {
  padding: 100px 20px;
  background: #e7e7e9;
}

.privacy-policy .title,
.terms .title,
.legal-disclaimer .title {
  color: #046bfb;
  font-size: clamp(2.4rem, 6.5vw, 8rem);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy-policy p,
.privacy-policy li,
.terms p,
.terms li,
.legal-disclaimer p,
.legal-disclaimer li {
  font-size: 18px;
  color: #474747;
  font-weight: normal;
  line-height: 1.5;
  padding: 10px 0;
}

/* Privacy-policy mein thoda alag padding */
.privacy-policy p,
.privacy-policy li {
  padding: 15px 0;
}

.privacy-policy h2,
.terms h2,
.legal-disclaimer h2 {
  margin-top: 30px;
  font-size: clamp(1.85rem , 2.5vw, 2.5rem);
  color: #046bfb;
}

.privacy-policy ul,
.terms ul {
  margin-left: 20px;
  list-style-type: disc;
}

.privacy-policy a,
.terms a,
.legal-disclaimer a {
  color: #046bfb;
  text-decoration: underline;
}



  header#taining {
    background-image: none;
}

section.hero-bg-section {
    position: relative;
    margin-top: -156px;
    height: 750px;
    background:url('../../images/Group\ 14561.png');
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 5rem;
    max-height: 750px;
}

.container.hero-bg-containar {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}




.col-md-12.text-center.breadcrumb-text * {/* Training & Education */
  
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
/* identical to box height */
    color: #5D5D5D;
}

section#EXPERTISE-SPEED-SAVINGS-section {
    margin: 0;
    padding: 7rem 0;
}


.col-md-4.tab-50.sm-100.training-cards {
    background: white;
    padding: 2.5rem 3.5rem 3rem;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 20px;
    transition: all 0.5s linear;
}

.col-md-4.tab-50.sm-100.training-cards h3 {/* Contract Processor Training */
   
    font-family: 'Bricolage Grotesque';
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
/* identical to box height */
    color: #182C40;
    /* bottom: 72.05%; */
}

.col-md-4.tab-50.sm-100.training-cards p {/* corporate America wonÃ¢â‚¬â„¢t hand you. */
  
font-family: 'Outfit';
  
font-style: normal;
  
font-weight: 400;
  
font-size: 17px;
  
line-height: 21px;
  
color: #1a2e42;
}

.col-md-4.tab-50.sm-100.training-cards:hover {background: #2c6dff;}

.col-md-4.tab-50.sm-100.training-cards:hover * {
    filter: brightness(0) invert(1);
    
}


section#aboutAgency {
    margin: 0;
    padding: 7rem 0 0 0;
    min-height: auto;
    background-image: url(../../images/bg.jpg);
}

#aboutAgency .agencySide img:nth-child(1) {
    width: 100%;
    max-width: 600px;
}
.aboutAgency-pb-5{
  padding-bottom: 5rem;
}


.join-card-2x2 {
  margin-top: 4rem;
    background: white;
    border: 5px solid #2c6dff;
    border-radius: 20px;
    padding: 2rem;
}


p.text-1.yoso-desc.text-center {/* WeÃ¢â‚¬â„¢re not just another processing company. WeÃ¢â‚¬â„¢re a fast-growing, client-first team that brings consistent work, reliable support, and the freedom to work remote and on your terms. */
   
  
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
/* identical to box height */
    color: #B1B1B1;
}

h3.heading-1.text-center {/* Feeling stuck chasing files or dealing with slow months? */
    
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-size: 38px;
    line-height: 48px;
/* identical to box height */
    color: #CFEF80;
    padding-top: 50px;
}


.col-md-8.list-item {
    filter: brightness(0) invert(1);
}


.col-md-4.green-border {/* WeÃ¢â‚¬â„¢ll Review Your Info And */
   
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
   
    color: #E2E2E2;
    border: 3px solid #CFEF80;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 3rem;
    text-align: center;
}

img.white-bg-absolute {
    position: absolute;
    bottom: 0;
}.row.mt-5.how-to-apply-row.p-5 {
    border-radius: 20px;
}
a.menuText.menuText-active {
    color: #d1ef79 !important;
}



ul.list-unstyled.footerLinks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    align-items: start;
    align-content: space-between;
}


a.footer-address {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 8px;
    font-size: 15px;
    font-family: 'Bricolage Grotesque';
    color: #B1B1B1;
}

.contact-form-section{
   background-image: url(../../images/Group\ 14427.png);
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
}

.contact-form-4 {
    padding-top: 70px;
}

ul#tabPanel2 {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

img.card-flip-arrow {
    background: #ffffff;
    position: absolute;
    right: 15px;
    bottom: 15px;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    padding: 11px;
}
.cta.Training .d-flex.gap-3 {
    padding-bottom:1.5rem
}

.row.footer-social-row img {
    width: 40px;
    filter: invert(1);
    background: #fb9404;
    border-radius: 50px;
    padding: 8px;
    height: 40px;
}.row.hr-row p a {
    color: white;
    font-weight: 500;
}
.container.hero-bg-containar h2.yoso-h1 {
    font-size: clamp(40px,6vw,125px);
}

p.text-start.footer-copyright-text {
    color: #B1B1B1;
    padding-top: 40px;
    padding-bottom: 15px;
}
p.text-start.footer-copyright-text *{
     color: #B1B1B1;
}.yoso-list li img {
    padding-top: 3px;
}.join-card-2x2 ul.list-unstyled.yoso-list {
    max-width: 543px;
}