.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
  color: #e11d25;
}

.btn.btn-light {
  color: #e11d25;
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: #e11d25;
}


/*** Topbar Start ***/
/*** Topbar ***/
.topbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
  color: #e11d25;
}

.topbar .dropdown .dropdown-menu a:hover {
  background: #e11d25;
  color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
  transform: rotateX(-75deg);
  visibility: hidden;
  opacity: 0;
  background: var(--bs-light);
  padding-top: 11px;
  border: 0;
  transition: all 0.5s ease;
  transform-origin: top center;
}

.topbar .dropdown:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  opacity: 1;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: 'Roboto', sans-serif;
  position: relative;
  margin-right: 40px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active {
  color: #e11d25;
}

.navbar-light .navbar-brand img {
  max-height: 80px;
  transition: .5s;
  margin-top: 5px;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 80px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: #e11d25;
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: .5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid danger;
    color: #e11d25;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #DDDDDD;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 5px 0;
    margin-left: 0;
    color: var(--bs-dark);
  }

  .navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-dark);
  }

  .navbar-light .navbar-brand img {
    max-height: 70px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: .5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -9px;
    left: 50%;
    background: #e11d25;
    transition: .5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: -1px;
    left: 50%;
    background: #e11d25;
    transition: .5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    width: 2px;
    height: 12px;
  }
}

/*** Navbar End ***/

/* 20. preloader */
.preloader {
  background: url('../img/pre1.png') no-repeat center center;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  transition: 0.5s;
  margin: 0 auto;
}

.preloader .preloader-circle {
  width: 100px;
  height: 100px;
  position: relative;
  border-style: solid;
  border-width: 1px;
  border-top-color: #f50909;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  z-index: 10;
  border-radius: 50%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
  background-color: #f9e2df;
  -webkit-animation: zoom 2000ms infinite ease;
  animation: zoom 2000ms infinite ease;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.preloader .preloader-circle2 {
  border-top-color: #ff0000;
}

.preloader .preloader-img {
  position: absolute;
  top: 50%;
  z-index: 200;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-top: 6px;
  -webkit-transition: .6s;
  -o-transition: .6s;
  transition: .6s;
}

.preloader .preloader-img img {
  max-width: 65px;
}

.preloader .pere-text strong {
  font-weight: 800;
  color: #dca73a;
  text-transform: uppercase;
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
  }
}


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item img {
  object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
  height: 700px;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: var(--bs-primary);
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
  bottom: 30px;
  left: 30px;
  margin-left: 90px;
}

.header-carousel .owl-nav .owl-next {
  bottom: 30px;
  left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  padding-top: 120px;
  background: rgba(6, 6, 53, 0.5);
  display: flex;
  /* align-items: center; */
}

@media (max-width: 991px) {
  .header-carousel {
    max-height: 450px;
    text-align: start;
  }

  .header-carousel .header-carousel-item .carousel-caption {
    padding-top: 45px;
  }
}

@media (max-width: 767px) {
  .header-carousel .owl-nav .owl-prev {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -45px;
    text-align: start;
  }

  .header-carousel .owl-nav .owl-next {
    left: 50%;
    transform: translateX(-50%);
    margin-left: 45px;
  }
}
@media (max-width: 480px) {
  .header-carousel .header-carousel-item .carousel-caption {
   text-align: start;
  }
  .header-carousel .header-carousel-item .carousel-caption .social-icon {
   margin-top: -20px;
  }
}

.header-carousel .header-carousel-item img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes image-zoom {
  0% {
    height: 100%;
    opacity: 0.9;
  }

  25% {
    height: 110%;
    opacity: 0.50;
  }

  50% {
    height: 115%;
    opacity: 1;
  }

  75% {
    height: 110%;
    opacity: 0.50;
  }

  100% {
    height: 100%;
    opacity: 0.9;
  }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/s5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 600px;
}

.bg-breadcrumb h4 {
  font-size: 47px;
  text-align: center;
}

.bg-breadcrumb .bg-para {
  font-size: 16px;
  text-align: center;
}

.bg-breadcrumb .bg-para1 {
  font-size: 16px;
  margin-top: -18px;
  text-align: center;
}

/* Medium Screens (Tablets) */

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding: 100px 0 50px 0;
    height: 480px;
    background-size: contain;
    /* Image will fit inside the container */
  }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
  .bg-breadcrumb {
    padding: 80px 0 40px 0;
    height: 390px;
    background-size: 100% auto;
    /* Image width will be 100% and height auto */
    background-position: top center;
  }

  .bg-breadcrumb h4 {
    font-size: 20px;
  }

}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
  .bg-breadcrumb {
    padding: 60px 0 30px 0;
    height: 370px;
    background-size: cover;
    /* Image ko pura cover karne ke liye */
    background-position: center center;
    /* Center me set karne ke liye */
    background-repeat: no-repeat;
    /* Image repeat na ho */
  }

  .bg-breadcrumb h4 {
    font-size: 20px;
    margin-top: -40px;
    /* text-align: left; */
  }

  .bg-breadcrumb .bg-para {
    margin-top: -10px;
    font-size: 13px;
    /* text-align:left; */
  }

  .bg-breadcrumb .bg-para1 {
    font-size: 14px;
    margin-top: -10px;
  }
}

/* learn-borrow */

.learn-step .learn-heading {
  height: 150px;
  background-color: #C63C51;
  opacity: 0.8;
  margin-top: -150px;
}

.learns-head h5 {
  font-size: 25px;
  text-align: center;
  margin-top: 20px;
}

.learns-head h1 {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .learn-step .learn-heading {
    height: 120px;
    margin-top: -120px;
  }

  .learns-head h5 {
    font-size: 22px;
  }

  .learns-head h1 {
    font-size: 15px;

  }
}

@media (max-width: 768px) {
  .learn-step .learn-heading {
    height: 100px;
    margin-top: -100px;
  }

  .learns-head h5 {
    font-size: 20px;
  }

  .learns-head h1 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .learn-step .learn-heading {
    height: 130px;
    margin-top: -16px;
  }

  .learns-head h5 {
    font-size: 18px;
    margin-top: 15px;
    margin-left: -15px;
  }

  .learns-head h1 {
    font-size: 12px;
    margin-top: 15px;
    margin-left: -15px;
  }
}


.breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/n3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 600px;
}

.breadcrumb h4 {
  font-size: 47px;
  text-align: center;
}

.breadcrumb .bg-para {
  font-size: 16px;
  text-align: center;
}

.breadcrumb .bg-para1 {
  font-size: 16px;
  margin-top: -18px;
  text-align: center;
}

/* Medium Screens (Tablets) */

@media (max-width: 992px) {
  .breadcrumb {
    padding: 100px 0 50px 0;
    height: 480px;
    background-size: contain;
    /* Image will fit inside the container */
  }
}

/* Small Screens (Mobile) */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 80px 0 40px 0;
    height: 390px;
    background-size: 100% auto;
    /* Image width will be 100% and height auto */
    background-position: top center;
  }

  .breadcrumb h4 {
    font-size: 20px;
  }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
  .breadcrumb {
    padding: 60px 0 30px 0;
    height: 370px;
    background-size: cover;
    /* Image ko pura cover karne ke liye */
    background-position: center center;
    /* Center me set karne ke liye */
    background-repeat: no-repeat;
    /* Image repeat na ho */
  }

  .breadcrumb h4 {
    font-size: 20px;
    margin-top: -40px;
    /* text-align: left; */
  }

  .breadcrumb .bg-para {
    margin-top: -10px;
    font-size: 13px;
    /* text-align:left; */
  }

  .breadcrumb .bg-para1 {
    font-size: 16px;
    margin-top: -16px;
  }
}

/* cp-borrow */

.cp-step .cp-heading {
  height: 150px;
  background-color: #C63C51;
  opacity: 0.8;
  margin-top: -166px;
}

.cp-head h5 {
  font-size: 25px;
  text-align: center;
  margin-top: 20px;
}

.cp-head h1 {
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  margin-top: 20px;
}

.channel-sub-style .channel-heading {
  position: relative;
  display: inline-block;
  font-size: 33px;
  color: #050505;
  text-align: center;
}

.channel-sub-style .channel-heading::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: red;
  transform: translateX(-50%);
}

.channel-img {
  min-height: 350px;
}

.channel-img .cp_img img {
  object-fit: cover;
  height: 400px;
  margin-top: -20px;
  max-width: 100%;
}

.benefit-channel img {
  width: 80px;
  height: 80px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .cp-step.cp-heading {
    height: 120px;
    margin-top: -120px;
  }

  .cp-head h5 {
    font-size: 22px;
  }

  .cp-head h1 {
    font-size: 15px;
  }

  .channel-img {
    min-height: 300px;
  }

  .channel-img .cp_img img {
    height: 350px;
    margin-top: -10px;
  }

  .benefit-channel img {
    width: 70px;
    height: 70px;
  }

  .cp-heading small {
    font-size: 12px;
  }
}


@media (max-width: 768px) {
  .cp-step .cp-heading {
    height: 100px;
    margin-top: -100px;
  }

  .cp h5 {
    font-size: 20px;
  }

  .cp h1 {
    font-size: 14px;
  }

  .channel-img {
    min-height: 250px;
    flex-direction: column;
  }

  .channel-img .cp_img img {
    height: 300px;
    margin-top: 0;
  }

  .benefit-channel img {
    width: 60px;
    height: 60px;
  }

  .cp-heading small {
    font-size: 11px;

  }
}

@media (max-width: 480px) {
  .cp-step .cp-heading {
    height: 130px;
    margin-top: -32px;
  }

  .cp-head h5 {
    font-size: 18px;
    margin-top: 15px;
    margin-left: -15px;
  }

  .cp-head h1 {
    font-size: 12px;
    margin-top: 15px;
    margin-left: -15px;
  }

  .channel-img {
    min-height: 200px;
  }

  .channel-img .cp_img img {
    height: 250px;
  }

  .benefits-cp  {
    margin-top: 70px;
 
  }
  .benefit-channel img {
    width: 50px;
    height: 50px;
    margin-left: -40px;
  }

  .cp-heading small {
    font-size: 10px;
  }
}

.about-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/about-banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.gallery-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/about-banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.job-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/about-banner.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.contact-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/contact1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.business-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/businessloan3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.personal-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/personalloan.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.home-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/home.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.od-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/od-draft.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.working-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/working.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.loan-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/loanagainst.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

.account-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(6, 6, 53, 0.5), rgba(6, 6, 53, 0.5)), url(../img/account.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 60px 0;
  transition: 1s;
  height: 400px;
}

@media (min-width: 992px) {
  .bg-breadcrumb {
    padding: 140px 0 60px 0;
  }
}

@media (max-width: 991px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/* -Partners-start */

@keyframes scroll-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.scroll-container {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-slide 30s linear infinite;
}

.scroll-container a {
  display: inline-block;
  margin-right: 10px;
}

/* --Partners-end-- */


/*** Facts ***/
.facts-overlay {
  position: absolute;
  padding: -50px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(6, 6, 53, 0.7);
}

.fact-history {
  height: 400px;
}

.history-img {
  height: 400px;
}

.facts-overlay h1 {
  font-size: 70px;
  color: transparent;
  -webkit-text-stroke: 2px #f50909;
}

.facts-overlay a:hover {
  color: #f50909 !important;
}


/*** Service ***/
.service-text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #f50909;
  opacity: 0;
  transition: .5s;
}

.service-item:hover .service-text::before {
  height: 100%;
  opacity: 1;
}

.service-text * {
  position: relative;
  transition: .5s;
  z-index: 1;
}

.service-item:hover .service-text * {
  color: #FFFFFF !important;
}

/*** Service End ***/

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
   text-align: center;

}
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: "Raleway",  sans-serif;;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #ffffff;
  background-color: #bd1b1b;;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, #ffffff, transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, #444444, transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, #444444, transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/* index-about */

.first-about .first-abouts {
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

/* Responsive adjustments */
.first-about .first-abouts .first-about-headings {
  width: 50vw;
  max-width: 200px;
  height: auto;
}


.first-about-btn {
  width: 100%;
  max-width: 165px;
  font-size: 16px;
  color: #ffffff;
  /* font-weight: 700; */
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 35px 12px;
  background: #e11d25;
  border: none;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  font-size:14px;
  /* text-align: center; */
}

/* Adjustments for medium screens (tablets) */
@media (max-width: 768px) {
  .first-about-btn {
    margin-top: -15px;
    justify-content: left;
  }
}

/* Adjustments for small screens (mobile) */
@media (max-width: 480px) {
  .first-about-btn {
    margin-top: 20px;
      max-width: 140px;
      font-size: 13px;
      padding: 10px 25px 8px;
  }
}


/* Mobile view adjustments */
@media (max-width: 768px) {
  .first-about {
    margin-top: 230px;
  }

  .first-about .first-abouts {
    min-height: 300px;
    padding: 15px;
  }

  .first-about .first-abouts .first-about-headings {
    width: 85vw;
    max-width: 150px;
  }

  .first-about .first-abouts .first-about-headings {
    width: 85vw;
    max-width: 150px;
  }
 
}

/* Very small screens */
@media (max-width: 480px) {
  .first-about .first-abouts {
    min-height: 250px;
    padding: 10px;
  }

  .first-about .first-abouts .first-about-headings {
    width: 95vw;
    max-width: 120px;
  }
  
}


/* works
================================================== */
/* work box */
.ts-service-box .ts-service-icon i {
  font-size: 36px;
  float: left;
  color: #ffb600;
}

.ts-service-box .ts-service-box-content {
  margin-left: 62px;
  margin-bottom: 30px;
}

.tab-content .ts-service-box .ts-service-box-content {
  margin-left: 90px;
}

.ts-service-box .ts-service-box-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 28px;
}

.ts-service-box .ts-service-box-info {
  margin-left: 25px;
  margin-bottom: 40px;
}

.service-box-title {
  font-size: 16px;
  margin: 0 0 10px;
}

.service-box-title a {
  color: #333;
}

.service-box-title a:hover {
  color: #ffb600;
}

/* work box bg */
.ts-service-box-bg {
  background: #252525;
  color: #fff;
  padding: 30px;
}

.ts-service-box-bg h4,
.ts-service-box-bg h3 {
  color: #fff;
}

/* Icon squre */
.ts-service-icon.icon-round i {
  font-size: 24px;
  color: #fff;
  background: #ffb600;
  text-align: center;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-bottom: 20px;
  position: relative;
  float: none;
}

/* Icon left */
.ts-service-box.icon-left .ts-service-box-icon {
  float: left;
}

.ts-service-box.icon-left .ts-service-box-icon i {
  background: #ffb600;
  color: #fff;
}

.ts-service-box.icon-left .ts-service-box-info {
  margin-left: 90px;
}

.ts-service-box.icon-left .ts-service-box-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

/* work no box */
.service-no {
  font-size: 48px;
  color: #dbdbdb;
  float: left;
  margin-top: 10px;
}

.ts-service-box-content .ts-service-box-info {
  margin-left: 90px;
}

/* work Image */
.ts-service-image-wrapper {
  margin-bottom: 30px;
}

.ts-service-icon i {
  font-size: 28px;
  margin-right: 15px;
  margin-top: 2px;
}

.ts-service-info {
  margin-left: 30px;
}

.ts-service-info h3 {
  font-size: 16px;
}

.ts-service-info .learn-more {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.ts-service-info .learn-more:hover {
  color: #ffb600;
}

/* work Classic */
.ts-service-classic .ts-service-icon i {
  font-size: 24px;
  float: left;
  color: #fff;
  background: #ffb600;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  transition: all 0.3s;
}

.ts-service-classic .ts-service-box-info {
  margin-left: 80px;
}

.ts-service-classic:hover .ts-service-icon i {
  background: #ffb600;
}

.work-img {
  margin-top: 20px;
  border-radius: 50%;
  width: 100%;
  max-width: 300px;
  height: auto;
  aspect-ratio: 1/1;
  /* Maintains square shape */
  object-fit: cover;
  border: 8px solid #dddada;
}

/* Adjust size for smaller screens */
@media (max-width: 768px) {
  .work-img {
    max-width: 200px;
    /* Reduce size on tablets */
  }
}

@media (max-width: 480px) {
  .work-img {
    margin-top: -20px;
    max-width: 280px;
    /* Reduce size on mobile screens */
  }
}

/*---------------------
  About
-----------------------*/
/* Base styles */
.spad {
  padding-top: 70px;
  padding-bottom: 30px;
}

.about {
  padding-bottom: 30px;
}

.about__content {
  margin-bottom: 30px;
}

.about__img img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10 auto;
}

.about__text {
  padding-top: 25px;
}

.about__text h3 {
  color: #323232;
  margin-top: -25px;
  font-size: 24px;
}

.about__text p.first_para {
  margin-bottom: 26px;
}

.about__text p.last_para {
  margin-bottom: 35px;
}


.about__item h4 {
  color: #323232;
  font-weight: 700;
  margin-bottom: 10px;
}

.about__item p {
  color: #707070;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .spad {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .about {
    padding-bottom: 50px;
  }

  .about__text h3 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .spad {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about__content {
    margin-bottom: 50px;
  }

  .about__text {
    text-align: center;
  }

}

@media (max-width: 480px) {
  .spad {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about {
    padding-bottom: 30px;
  }

  .about__text h3 {
    font-size: 20px;
    margin-top: -15px;
  }

  .about__text p {
    font-size: 14px;
  }

  .about__item h4 {
    font-size: 16px;
  }

}

/*** Roadmap history start***/

.roadmap-carousel {
  position: relative;
}

.Roadmap-heading {
  color: #cc0810;
  position: relative;
  display: inline-block;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
}

.Roadmap-heading::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color:#cc0810;
  transform: translateX(-50%);
}

.roadmap-carousel::before {
  position: absolute;
  content: "";
  height: 0;
  width: 100%;
  top: 20px;
  left: 0;
  border-top: 2px dashed #999999;
}

.roadmap-carousel .roadmap-item .roadmap-point {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 6px;
  left: 50%;
  margin-left: -15px;
  background: #FFFFFF;
  border: 2px solid #f50909;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
  display: block;
  width: 18px;
  height: 18px;
  background: #f50909;
}

.roadmap-carousel .roadmap-item {
  position: relative;
  padding-top: 150px;
  text-align: center;
}

.roadmap-carousel .roadmap-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 115px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: 2px dashed #999999;
}

.roadmap-carousel .roadmap-item::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 111px;
  left: 50%;
  margin-left: -7px;
  transform: rotate(45deg);
  background: #f50909;
}

.roadmap-carousel .owl-nav {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 22px;
  color: #F2F8FE;
  background: #f50909;
  transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
  color: #f50909;
  background: #111111;
}

/***Roadmap history end***/

/*** Features Start ***/
.feature .feature-item {
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  border: 1px solid transparent;
  transition: 0.5s;
}

.feature .feature-item:hover {
  border: 1px solid var(--bs-primary);
}

.feature .feature-item .feature-icon {
  background: var(--bs-white);
  border-radius: 10px;
  display: inline-block;
}

/*** Features End ***/

/***learn-borrow choose Start ***/
.choose .choose-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: -30px;
}

.choose .choose-item::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 58, 102, 0.1);
  z-index: -1;
  transition: 0.5s;
}

.choose .choose-item:hover::after {
  width: 100%;
  height: 100%;
}

.choose .choose-item .choose-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
  transition: 0.5s;
}

.choose .choose-item:hover .choose-icon {
  border-radius: 50%;
  background: var(--bs-white) !important;
}

.choose .choose-item .choose-icon img {
  transition: 0.5s;
}

.choose .choose-item:hover .choose-icon img {
  color: var(--bs-secondary) !important;
  transform: rotate(360deg);
  transition: all 0.5s ease;
}

.sub-style .heading {
  position: relative;
  display: inline-block;
  font-size: 35px;
  color: #0c0c0c;
  text-align: center;
}

.sub-style .heading::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: red;
  transform: translateX(-50%);
}

.btn_wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn_learnback,
.btn_get {
  width: 80%;
  max-width: 150px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 20px 12px;
  background: #e11d25;
  border: none;
  /* letter-spacing: 1px; */
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

/* Learn More Button */
.btn_learnback {
  background: #e11d25;
}

.btn_learnback:hover {
  background-color: #fff;
  color: #D21312;
}

/* Get Started Button */
.btn_get {
  color: #D21312;
  background: #FFEFEF;
}

.btn_get:hover {
  background-color: #D21312;
  color: #fff;
}

@media (max-width: 1200px) {
  .choose .choose-item {
    margin-top: -20px;
  }

  .choose .choose-item .choose-icon {
    width: 100px;
    height: 100px;
  }

  .sub-style .heading,
  .channel-sub-style .channel-heading {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .choose .choose-item {
    margin-top: -15px;
  }

  .choose .choose-item .choose-icon {
    width: 90px;
    height: 90px;
  }

  .sub-style .heading,
  .channel-sub-style .channel-heading {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .choose .choose-item {
    margin-top: -10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  }

  .choose .choose-item .choose-icon {
    width: 80px;
    height: 80px;
  }

  .sub-style .heading,
  .channel-sub-style .channel-heading {
    font-size: 25px;
  }
}

@media (max-width: 576px) {
  .choose .choose-item {
    margin-top: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

  .choose .choose-item .choose-icon {
    width: 70px;
    height: 70px;
  }

  .sub-style .heading,
  .channel-sub-style .channel-heading {
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .choose .choose-item {
    margin-top: 10px;
    padding: 10px;
  }

  .choose .choose-item .choose-icon {
    width: 60px;
    height: 60px;
  }

  .sub-style .heading,
  .channel-sub-style .channel-heading {
    font-size: 20px;
    margin-top: 30px;
  }

  .btn_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .btn_learnback,
  .btn_get {
    width: 80%;
    max-width: 140px;
    font-size: 12px;
  }
}

/*** choose end ***/

/*** Counter Facts Start ***/

.counter-facts .counter {
  position: relative;
  text-align: center;
  width: 200px;
  min-height: 215px;
  padding: 10px 15px;
  margin: 0 auto;
  border-radius: 100px;
  box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
  background: var(--bs-white);
}

.counter-facts .counter:before {
  content: "";
  position: absolute;
  height: 105px;
  width: 100%;
  left: 0;
  top: 0;
  border-radius: 10px 10px 0 0;
  background-color: #cc0810;
}

.counter-facts .counter .counter-icon {
  position: relative;
  width: 120px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 10px 10px 0 0;
  transform: translateY(-20px);
  font-size: 50px;
  line-height: 90px;
  color: #f8f8fa;
  background: rgba(139, 0, 0, 0.9);
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 90px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
  background: rgba(211, 68, 43, 0.7);
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
  transform: rotate(360deg);
  transition: all 0.3s ease;
}

.counter-facts .counter h3 {
  color: var(--bs-primary);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
  font-size: 30px;
  font-weight: 700;
  display: block;
  color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
  .counter-facts .counter {
    margin-bottom: 40px;
    margin-top: -20px;
  }
}

@media screen and (max-width: 768px) {
  .counter-facts {
    height: 70rem;
    margin-top: -40px;
  }
}

@media screen and (max-width: 480px) {
  .counter-facts {
    height: 50rem;
    margin-top: -40px;
  }
}

/* how we works */
.ftco-animate {
  opacity: 0;
  visibility: hidden;
}

.ftco-section {
  padding: 7em 0;
  position: relative;
}

@media (max-width: 767.98px) {
  .ftco-section {
    padding: 6em 0;
  }
}

.heading-section .subheading {
  font-size: 12px;
  display: block;
  font-weight: 500;
  color: #2b98f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heading-section h2 {
  font-size: 44px;
  font-weight: 300;
}

@media (max-width: 767.98px) {
  .heading-section h2 {
    font-size: 28px;
  }
}

.heading-section.heading-section-white .subheading {
  color: red;
}

.heading-section.heading-section-white h2 {
  color: #550808;
}

.heading-section.heading-section-white p {
  color: blue;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: red;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/*** Counter Facts End ***/


/* ----------------
Hero section
 ---------------------*/
.hero-section .container {
  position: relative;
  z-index: 99;
}

.hs-text {
  margin-top: -470px;
}

.hs-text p {
  color: #fff;
  margin-bottom: 30px;
}

.hs-text h2 {
  display: inline-flex;
  align-items: center;
  color: #f7f3f3;
  font-size: 60px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hs-text .rupees-icon img {
  margin-top: -40px;
  vertical-align: middle;
}

.form-loan {
  width: 410px;
  height: 450px;
  margin-top: -550px;
  background-color: rgb(240, 46, 46);
  background-image: linear-gradient(to bottom right, #e7f0fd, #a0c5f0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.borrow-sub-style .borrow-heading {
  position: relative;
  margin-left: 20px;
  display: inline-block;
  font-size: 30px;
  color: #000957;
  text-align: center;
}

.borrow-sub-style .borrow-heading::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: #000957;
  transform: translateX(-50%);
  transform-origin: left;
}

.form-check-input:checked {
  border-color: red;
  background-color: red;
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.5);
}

.form-check-input:checked+.form-check-label {
  color: red;
}

.form-check-input:active {
  border-color: red;
  background-color: red;
}

.short-input .form-control:focus {
  border-color: rgb(231, 28, 28);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

.short-input-message .form-control {
  border: 1px solid #000957;
  margin-top: 10px;
}

.short-input-message .form-control:focus {
  border-color: rgb(231, 28, 28);
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}


.short-input .form-control {
  height: 40px;
  border: 1px solid #000957;
}

.short-input {
  max-width: 270px;
  margin-top: 15px;
}

.label-name {
  font-size: 14px;
  margin-top: -7px;
  color: #000;
  font-weight: 600;
}

.form-check-input {
  border: 1px solid #000957;
}

.borrow-btn {
  width: 80%;
  max-width: 180px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 20px 12px;
  background: #e11d25;
  border: none;
  /* letter-spacing: 1px; */
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.borrow-btn:hover {
  color: #fff;
}

.borrow-work-btn {
  width: 80%;
  max-width: 180px;
  font-size: 15px;
  background-color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 20px 12px;
  color: #e11d25;
  border: none;
  /* letter-spacing: 1px; */
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.borrow-work-btn:hover {
  color: #D21312;
}


@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.sub-title {
  border-radius: 20px;
  border: 1px solid #000957;
  width: 220px;
  height: 40px;
  margin-left: -120px;
  margin-top: 64px;
  padding-top: -20px;
  font-size: clamp(15.5px, 15.5px, 15.5px);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  color: #000;
}

.sub-title .gradient-text {
  background: linear-gradient(to right,
      #FF0000 20%,
      #f8f401 30%,
      #FF204E 70%,
      #fa0cda 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShine 3s ease-in infinite alternate;
}

.sub-title i {
  color: #000957;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hs-text {
    margin-top: -300px;
  }

  .hs-text h2 {
    font-size: 48px;
  }

  .form-loan {
    margin-top: -350px;
  }
}

@media (max-width: 768px) {
  .hs-text {
    margin-top: -200px;
  }

  .hs-text h2 {
    font-size: 36px;
  }

  .form-loan {
    margin-top: -250px;
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hs-text {
    margin-top: -270px;
  }

  .hs-text h2 {
    font-size: 28px;
  }

  .form-loan {
    margin-top: 20px;
    padding: 10px;
    height: 650px;
  }
  .hs-text .rupees-icon img {
    margin-top: -8px;
  }

  .borrow-btn, .borrow-work-btn {
    width: 150px;
    max-width: 150px;
    font-size: 12px;
    height: 45px;
    margin-top: -20px;
    /* padding: 15px 25px; */
  }
  .sub-title{
    margin-top: 8px;
    margin-left: 50px;
  }
  .borrow-sub-style .borrow-heading {
    font-size: 25px;
  }
  .form-floating .form-control{
    width: 300px;
  }
}

/* Keyframes for gradient animation */
@keyframes textShine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 100% center;
  }
}

/*** gallery Start ***/
/* .gallery-heading {
  color: #f50909;
  position: relative;
  display: inline-block;
  font-size: 20px !important;
  font-weight: 700;
}

.gallery-heading::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: red;
  transform: translateX(-50%);
  display: block;
} */


.instragram_area {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  position: relative;
  width: 100%;
}

.instragram_wrapper {
  display: flex;
  gap: 10px;
  animation: scroll-gallery 20s linear infinite;
  width: max-content;
}

.single_instagram {
  position: relative;
  width: 230px;
  height: 230px;
  background-image: linear-gradient(to top right, #9ab1c9, #f79ce8, #b0ceeb);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.single_instagram::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  z-index: -1;
}

.single_instagram img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  margin-top: 12px;
  margin-left: 10px;
}

.instragram_area .single_instagram .ovrelay p {
  text-align: center;
  padding-top: 50px;
  color: #f80303;
  font-weight: 700;
  font-size: 20px;
}

@keyframes scroll-gallery {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}



/* ---------------------reverse------------------------------- */
.instragram_area_reverse {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  padding: 30px 0;
  position: relative;
  width: 100%;
}

.instragram_wrapper_reverse {
  display: flex;
  gap: 10px;
  animation: scroll-gallery1 20s linear infinite;
  width: max-content;
}

.single_instagram_reverse {
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  position: relative;
  overflow: hidden;
  width: 230px;
  height: 230px;
  background-image: linear-gradient(to top right, #9ab1c9, #f79ce8, #b0ceeb);
}

.single_instagram_reverse::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  background: #fff;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  z-index: -1;
}

.single_instagram_reverse img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  margin-top: 12px;
  margin-left: 10px;
}


.instragram_area_reverse .single_instagram_reverse:hover .ovrelay {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.instragram_area_reverse .single_instagram_reverse:hover img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

@keyframes scroll-gallery1 {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/*** gallery End ***/

.ftco-hireme {
  text-align: center;
  height: 590px;
  margin-top: 30px;
  background: rgb(255, 240, 242);
  padding: 0;
  color: rgba(255, 255, 255, 0.9);

}

.ftco-hireme h2 {
  color: #f50909;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
}

.ftco-hireme h2::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: #e91313;
  transform: translateX(-50%);
}


.ftco-hireme img {
  margin-top: 30px !important;
  margin-left: 40px;
}

@media (min-width: 992px) {
  .ftco-hireme img {
    margin-top: -90px;
  }
}

/*** FAQs Start ***/
/* Default styles */
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
  color: var(--bs-secondary);
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--bs-dark);
}

.faq-section h1 {
  color: #e91313;
  font-size: 34px;
  font-weight: 600;
  text-align: center;
  position: relative;
  display: inline-block;
}

.faq-section h1::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 50%;
  height: 3px;
  background-color: #e91313;
  transform: translateX(-50%);
}

/* Responsive styles */
@media (max-width: 768px) {
  .faq-section h1 {
    font-size: 28px;
  }

  .faq-section h1::before {
    width: 60%;
  }

  .faq-section .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-section h1 {
    font-size: 24px;
    /* margin-top: -20px; */
  }

  .faq-section h1::before {
    width: 70%;
  }

  .faq-section .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 10px;
  }
}


/*** FAQs End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  padding: 0 25px 25px 25px;
  border-radius: 10px;
  transition: 0.5s;
}

.team .team-member {
  margin-left: auto;
  margin-right: auto;
  max-width: 300px; /* optional: control max width */
}

@media (min-width: 768px) {
  .team .team-member {
    margin-left: 150px; /* for tablets and above */
    margin-right: 0;
  }
}

.team .team-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-light);
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::before {
  height: 0;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  transition: 0.5s;
  z-index: -1;
}

.team .team-item:hover::after {
  height: 100%;
  background: #cc0810;
}

.team .team-item .team-img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: relative;
  margin-top: 50%;
  transform: translateY(-50%);
  margin-bottom: -50%;
  display: flex;
  justify-content: center;
  border: 4px solid var(--bs-primary);
  border-style: dotted;
  padding: 4px;
  background: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-img {
  border: 4px solid var(--bs-white);
  border-style: dotted;
  background: 0;
}

.team .team-item .team-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  transition: 0.5s;
}

.team .team-item .team-title {
  padding: 25px 0 25px 0;
  text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
  transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
  color: var(--bs-white);
}

.team .team-item .team-icon {
  display: flex;
  justify-content: center;
}

.team .team-item .team-icon a {
  transition: 0.5s;
}

.team .team-item:hover .team-icon a {
  color: var(--bs-dark);
  background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
  color: var(--bs-primary);
  background: #cc0810;
}

/*** Team End ***/


/*---------------------
  Call
-----------------------*/

/* Background Settings */
.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

/* Padding for Sections */
.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .spad {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .spad {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Call Image Background */
.call-img {
  background: linear-gradient(rgba(6, 6, 53, 0.2), rgba(6, 6, 53, 0.2)), url(../img/call-bg.jpg);
  background-size: cover;
  background-position: center;
}

/* Section Title */
.call__text .section-title {
  text-align: left;
  margin-bottom: 25px;
}

.call__text .section-title h2,
.call__text .section-title p {
  color: #ffffff;
  text-align: left;
}

/* Call to Action Link */
.call__text a {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 0;
  position: relative;
  display: inline-block;
}

.call__text a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: #e11d25;
  content: "";
}

/* Form Inputs */
.call__form input,
.call__form select,
.call__form .nice-select {
  width: 100%;
  height: 48px;
  font-size: 15px;
  padding-left: 20px;
  border: none;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Dropdown Styling */
.call__form .nice-select span {
  font-size: 15px;
  color: #323232;
}

.call__form .nice-select .list {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
}

.call__form .nice-select:after {
  height: 10px;
  width: 10px;
  border-bottom: 2px solid #323232;
  border-right: 2px solid #323232;
  margin-top: 0;
  right: 22px;
  top: 35%;
}

/* Button Styling */
.site-btn {
  width: 100%;
  max-width: 200px;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 30px 12px;
  background: #e11d25;
  border: none;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.site-btn:hover {
  background-color: #fff;
  color: #D21312;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .call__text .section-title {
    text-align: center;
  }

  .call__text a {
    font-size: 14px;
  }

  .site-btn {
    max-width: 180px;
    font-size: 14px;
    padding: 12px 25px 10px;
  }
}

@media (max-width: 480px) {
  .call__text .section-title h2 {
    font-size: 22px;
  }

  .call__form input,
  .call__form select,
  .call__form .nice-select {
    height: 42px;
    font-size: 14px;
    margin-top: 10px;
  }

  .call__text a {
    font-size: 14px;
  }

  .site-btn {
    max-width: 160px;
    font-size: 13px;
    padding: 10px 20px 8px;
    /* text-align: center; */
  }
}

/* job start */

label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

.owl-carousel .owl-nav div {
  background: transparent;
  height: 50px;
  left: 0px;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 50px;
  color: #707070;
  background-color: transparent;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: 50px;
  font-size: 15px;
  line-height: 50px;
  border: 1px solid #4D6174;
  left: 150px;
  color: #fff;
}

.owl-carousel .owl-nav div.owl-next {
  left: auto;
  right: 150px;
}

.owl-carousel .owl-nav div.owl-next i {
  position: relative;
  right: 0;
}

.owl-carousel .owl-nav div.owl-prev i {
  position: relative;
  top: 0px;
}

.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}

.owl-carousel:hover .owl-nav div:hover {
  color: #fff;
  background: #FD8E5E;
  border: 1px solid transparent;
}

.boxed-btn3 {
  background: #cc0810;
  color: #fff;
  display: inline-block;
  padding: 13px 29px 13px 29px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: 0;
  border: 1px solid transparent;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.boxed-btn3:hover {
  color: #fff !important;
  border: 1px solid #f50909;
  background: transparent;
}

.boxed-btn3:focus {
  outline: none;
}

.boxed-btn4 {
  display: inline-block;
  padding: 11px 29px 13px 29px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  color: #fff !important;
  text-transform: capitalize;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  color: #f50909 !important;
  border: 1px solid #f50909;
  background: transparent;
}

.boxed-btn4:hover {
  color: #fff !important;
  border: 1px solid #f50909;
  background: transparent;
  border: 0;
  background: #f50909;
  border: 1px solid transparent;
}

.boxed-btn4:focus {
  outline: none;
}

.section_title span {
  display: inline-block;
  background: #33D4D6;
  width: 60px;
  height: 3px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 4px;
}

.section_title h3 {
  font-size: 38px;
  font-weight: 400;
  color: #001D38;
  position: relative;
  z-index: 0;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .section_title h3 {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .section_title h3 {
    font-size: 36px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .section_title h3 br {
    display: none;
  }
}

.section_title p {
  font-size: 16px;
  color: #7A838B;
  margin-bottom: 0;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

@media (max-width: 767px) {
  .section_title p br {
    display: none;
  }
}

.section_title h4 {
  font-size: 22px;
  font-weight: 500;
  color: #001D38;
  padding-bottom: 21px;
}

.catagory_area {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .catagory_area {
    padding: 70px 0;
  }
}

.catagory_area .cat_search {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 30px;
}

.catagory_area .cat_search .single_input input {
  height: 50px;
  border: 1px solid #E8E8E8;
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
}

.catagory_area .cat_search .single_input select {
  height: 50px;
  border: 1px solid #E8E8E8;
  padding: 0 20px;
  border-radius: 5px;
  width: 100%;
  color: #7A838B;
  font-size: 16px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.catagory_area .cat_search .single_input select:focus {
  outline: none;
  border-color: #0A8CFF;
}

@media (max-width: 767px) {
  .catagory_area .cat_search .single_input select {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .catagory_area .cat_search .single_input select {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .catagory_area .cat_search .single_input input {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .catagory_area .cat_search .single_input input {
    margin-bottom: 20px;
  }
}

.catagory_area .cat_search .single_input input::placeholder {
  color: #7A838B;
  font-size: 16px;
  font-weight: 400;
}

.catagory_area .cat_search .single_input input:focus {
  outline: none;
}

.catagory_area .cat_search .single_input .nice-select {
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #7A838B;
  font-size: 16px;
}

@media (max-width: 767px) {
  .catagory_area .cat_search .single_input .nice-select {
    margin-bottom: 20px;
  }
}

.catagory_area .cat_search .single_input .nice-select:focus {
  outline: none;
}

.catagory_area .cat_search .job_btn a {
  width: 100%;
  display: block !important;
}

@media (max-width: 767px) {
  .catagory_area .popular_search {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .catagory_area .popular_search {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .catagory_area .popular_search {
    display: block !important;
  }
}

.catagory_area .popular_search span {
  font-size: 18px;
  font-weight: 400;
  color: #001D38;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .catagory_area .popular_search span {
    margin-bottom: 20px;
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .catagory_area .popular_search span {
    margin-bottom: 20px;
    display: block;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .catagory_area .popular_search span {
    margin-bottom: 20px;
    display: block;
  }
}

.catagory_area .popular_search ul li {
  display: inline-block;
  margin-right: 7px;
}

@media (max-width: 767px) {
  .catagory_area .popular_search ul li {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .catagory_area .popular_search ul li {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .catagory_area .popular_search ul li {
    margin-bottom: 15px;
  }
}

.catagory_area .popular_search ul li a {
  color: #0A8CFF;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #CEE8FF;
  display: inline-block;
  border-radius: 5px;
  padding: 7px 14px;
}

@media (max-width: 767px) {
  .catagory_area .popular_search ul li a {
    font-size: 13px;
  }
}

.catagory_area .popular_search ul li a:hover {
  border-color: #0A8CFF;
}

.popular_catagory_area {
  background: #F5F7FA;
  padding: 100px 0;
}

.popular_catagory_area .single_catagory {
  background: #FFFFFF;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 38px 25px;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 30px;
}

.popular_catagory_area .single_catagory a h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.popular_catagory_area .single_catagory p {
  font-size: 16px;
  color: #AAB1B7;
  margin-bottom: 0;
  font-weight: 400;
}

/* line 26, ../../Arafath/CL/December/235. Job board/HTML/scss/_popular_catagory.scss */
.popular_catagory_area .single_catagory p span {
  background: #E6F3FF;
  color: #0A8CFF;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 17px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-right: 10px;
}

/* line 36, ../../Arafath/CL/December/235. Job board/HTML/scss/_popular_catagory.scss */
.popular_catagory_area .single_catagory:hover {
  border-color: #B2F2D0;
}

/* line 37, ../../Arafath/CL/December/235. Job board/HTML/scss/_popular_catagory.scss */
.popular_catagory_area .single_catagory:hover h4 {
  color: #f50909;
  text-decoration: underline;
}

/* line 1, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area {
  background: #F5F7FA;
  padding-bottom: 80px;
}

/* line 4, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area.plus_padding {
  padding-top: 100px;
}

@media (max-width: 767px) {

  /* line 4, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area.plus_padding {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {

  /* line 10, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .brouse_job {
    text-align: left !important;
    margin-top: 20px;
  }
}

/* line 16, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists {
  margin-top: 50px;
}

/* line 18, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs {
  padding: 30px;
  margin-bottom: 12px;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 767px) {

  /* line 18, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs {
    display: block !important;
  }
}

@media (max-width: 767px) {

  /* line 27, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs .jobs_left {
    display: block !important;
    overflow: hidden;
  }
}

/* line 32, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .thumb {
  float: left;
  width: 82px;
  height: 82px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 15px;
  background: #F5F7FA;
  margin-right: 25px;
  border: 1px solid #F0F0F0;
}

/* line 46, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent {
  float: left;
}

/* line 48, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {

  /* line 48, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent h4 {
    margin-top: 15px;
  }
}

/* line 56, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent h4:hover {
  color: #f50909;
}

@media (max-width: 767px) {

  /* line 60, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent .links_locat {
    display: block !important;
  }
}

/* line 64, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent .links_locat .location {
  margin-right: 50px;
}

@media (max-width: 767px) {

  /* line 64, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent .links_locat .location {
    margin-right: 10px;
  }
}

/* line 69, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent .links_locat .location p {
  margin-bottom: 0;
  font-size: 16px;
  color: #AAB1B7;
}

/* line 73, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_left .jobs_conetent .links_locat .location p i {
  margin-right: 7px;
}

@media (max-width: 767px) {

  /* line 82, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs .jobs_right .apply_now {
    margin: 10px 0;
  }
}

/* line 87, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_right .apply_now a.heart_mark {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #f50909;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: #EFFDF5;
  margin-right: 15px;
}

/* line 98, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_right .apply_now a.heart_mark:hover {
  background: #f50909;
  color: #fff;
}

/* line 103, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_right .apply_now a.boxed-btn3 {
  padding: 9px 27px 9px 27px;
  font-size: 14px;
}

/* line 109, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_right .date {
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 767px) {

  /* line 109, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_lists .single_jobs .jobs_right .date {
    text-align: left;
  }
}

/* line 115, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs .jobs_right .date p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
  color: #7A838B;
}

/* line 123, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_lists .single_jobs:hover {
  border-color: #B2F2D0;
}

/* line 130, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter {
  padding: 25px;
  display: block;
}

/* line 133, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #001D38;
  font-weight: 400;
}

/* line 141, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .single_field input {
  height: 60px;
  border: 1px solid #E8E8E8;
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
}

/* line 148, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .single_field input::placeholder {
  color: #7A838B;
  font-size: 16px;
  font-weight: 400;
}

/* line 154, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .single_field input:focus {
  outline: none;
}

/* line 159, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .single_field .nice-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #7A838B;
  font-size: 16px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {

  /* line 159, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_filter .form_inner .single_field .nice-select {
    margin-bottom: 20px;
  }
}

/* line 169, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .single_field .nice-select:focus {
  outline: none;
}

/* line 175, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .nice-select {
  width: 100%;
  height: 50px;
  line-height: 50px;
  color: #7A838B;
  font-size: 16px;
}

@media (max-width: 767px) {

  /* line 175, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
  .job_listing_area .job_filter .form_inner .nice-select {
    margin-bottom: 20px;
  }
}

/* line 184, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_list.scss */
.job_listing_area .job_filter .form_inner .nice-select:focus {
  outline: none;
}

/* line 1, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area {
  background: #F5F7FA;
  padding-bottom: 100px;
}

/* line 4, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area.candidate_page_padding {
  padding-top: 100px;
}

/* line 6, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area.candidate_page_padding .single_candidates {
  margin-bottom: 30px;
}

/* line 10, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .single_candidates {
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 35px 45px;
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 10, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
  .featured_candidates_area .single_candidates {
    padding: 25px 30px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {

  /* line 10, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
  .featured_candidates_area .single_candidates {
    padding: 25px 20px;
  }
}

/* line 20, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .single_candidates .thumb {
  width: 110px;
  height: 110px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin: auto;
}

/* line 25, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .single_candidates .thumb img {
  width: 100%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

/* line 30, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .single_candidates h4 {
  font-size: 20px;
  font-weight: 400;
  color: #001D38;
  margin-top: 24px;
  margin-bottom: 6px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

/* line 38, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .single_candidates p {
  font-size: 16px;
  font-weight: 400;
  color: #AAB1B7;
  margin-bottom: 0;
}

/* line 45, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .single_candidates:hover h4 {
  color: #f50909;
}

/* line 50, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .owl-carousel .owl-nav div {
  background: rgba(10, 140, 255, 0.1);
  height: 38px;
  left: 0px;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 38px;
  color: #0A8CFF;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: 50px;
  font-size: 15px;
  line-height: 38px;
  border: none;
  left: -19px;
}

/* line 73, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .owl-carousel .owl-nav div.owl-next {
  left: auto;
  right: -19px;
}

/* line 77, ../../Arafath/CL/December/235. Job board/HTML/scss/_candidates.scss */
.featured_candidates_area .owl-carousel .owl-nav div:hover {
  background: rgba(10, 140, 255, 0.5);
  color: #fff;
  border: none;
}

/* line 515, ../../Arafath/CL/December/235. Job board/HTML/scss/_elements.scss */
.single-input {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

/* line 523, ../../Arafath/CL/December/235. Job board/HTML/scss/_elements.scss */
.single-input:focus {
  outline: none;
}


/* job-details */

/* line 1, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area {
  background: #F5F7FA;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* line 5, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs {
  padding: 30px;
  border-bottom: 1px solid #EAEAEA;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

@media (max-width: 767px) {

  /* line 5, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs {
    display: block !important;
  }
}

@media (max-width: 767px) {

  /* line 13, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left {
    display: block !important;
    overflow: hidden;
  }
}

/* line 18, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .thumb {
  float: left;
  width: 82px;
  height: 82px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 15px;
  background: #F5F7FA;
  margin-right: 25px;
  border: 1px solid #F0F0F0;
}

/* line 32, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent {
  float: left;
}

/* line 34, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {

  /* line 34, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left .jobs_conetent h4 {
    margin-top: 15px;
  }
}

/* line 42, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent h4:hover {
  color: #f50909;
}

@media (max-width: 767px) {

  /* line 46, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat {
    display: block !important;
  }
}

/* line 50, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location {
  margin-right: 50px;
}

@media (max-width: 767px) {

  /* line 50, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location {
    margin-right: 10px;
  }
}

/* line 55, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location p {
  margin-bottom: 0;
  font-size: 16px;
  color: #AAB1B7;
}

/* line 59, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_left .jobs_conetent .links_locat .location p i {
  margin-right: 7px;
}

@media (max-width: 767px) {

  /* line 68, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_right .apply_now {
    margin: 10px 0;
  }
}

/* line 73, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .apply_now a.heart_mark {
  width: 40px;
  height: 40px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: #f50909;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: #EFFDF5;
}

/* line 83, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .apply_now a.heart_mark:hover {
  background: #f50909;
  color: #fff;
}

/* line 88, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .apply_now a.boxed-btn3 {
  padding: 9px 27px 9px 27px;
  font-size: 14px;
}

/* line 94, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .date {
  text-align: right;
  margin-top: 10px;
}

@media (max-width: 767px) {

  /* line 94, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .single_jobs .jobs_right .date {
    text-align: left;
  }
}

/* line 100, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .single_jobs .jobs_right .date p {
  margin-bottom: 0;
  font-size: 14px;
  font-style: italic;
  color: #7A838B;
}

/* line 110, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap {
  padding: 40px;
}

/* line 112, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap {
  margin-bottom: 30px;
}

/* line 114, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap:last-child {
  margin-bottom: 0;
}

/* line 117, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap h4 {
  font-size: 20px;
  font-weight: 500;
  color: #001D38;
  margin-bottom: 25px;
}

/* line 123, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap p {
  color: #7A838B;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

/* line 130, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap ul li {
  font-size: 16px;
  line-height: 32px;
  color: #7A838B;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  list-style: none;
}

/* line 137, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .descript_wrap .single_wrap ul li::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  background: #7A838B;
  content: '';
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 12px;
}

/* line 152, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form {
  margin-top: 30px;
  padding: 40px;
}

@media (max-width: 767px) {

  /* line 152, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .apply_job_form {
    padding: 30px;
  }
}

/* line 158, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

/* line 164, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field input,
.job_details_area .apply_job_form .input_field textarea {
  height: 60px;
  border: 1px solid #E8E8E8;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding-left: 20px;
  margin-bottom: 20px;
}

/* line 171, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field input::placeholder,
.job_details_area .apply_job_form .input_field textarea::placeholder {
  color: #7A838B;
  font-size: 16px;
}

/* line 175, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field input:focus,
.job_details_area .apply_job_form .input_field textarea:focus {
  outline: none;
}

/* line 179, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field textarea {
  height: 188px;
  padding: 20px;
}

/* line 184, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field.file_up input {
  position: relative;
}

/* line 186, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input_field.file_up input:before {
  position: absolute;
  left: 0;
  top: 0;
  content: 'Upload CV';
}

/* line 195, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group {
  width: 100%;
  height: 60px;
  border-radius: 5px !important;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}

/* line 201, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group button {
  background: transparent;
  border: none;
  font-size: 16px;
  color: #7A838B;
  padding-left: 20px;
  margin-right: 5px;
}

/* line 209, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group .custom-file {
  margin-bottom: 0;
  height: 60px;
  border: none;
}

/* line 214, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group .custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  padding: 0;
  line-height: 60px;
  color: #7A838B;
  background-color: transparent;
  border-radius: 0;
  border: none;
}

/* line 228, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .apply_job_form .input-group .custom-file-input {
  height: 100%;
}

/* line 233, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary {
  background: #fff;
}

@media (max-width: 767px) {

  /* line 233, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary {
    margin-top: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {

  /* line 233, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary {
    margin-top: 30px;
  }
}

/* line 241, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .summery_header {
  border-bottom: 1px solid #EAEAEA;
  padding: 40px;
}

@media (max-width: 767px) {

  /* line 241, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary .summery_header {
    padding: 30px;
  }
}

/* line 247, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .summery_header h3 {
  font-size: 24px;
  color: #001D38;
  font-weight: 400;
}

/* line 253, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content {
  padding: 40px;
}

@media (max-width: 767px) {

  /* line 253, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
  .job_details_area .job_sumary .job_content {
    padding: 30px;
  }
}

/* line 259, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content ul li {
  font-size: 16px;
  font-weight: 400;
  color: #AAB1B7;
  line-height: 38px;
  padding-left: 18px;
  position: relative;
  list-style: none;
}

/* line 266, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content ul li::before {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid #AAB1B7;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  left: 0;
  content: '';
  top: 16px;
}

/* line 277, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_sumary .job_content ul li span {
  color: #001D38;
}

/* line 284, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap {
  background: #fff;
  margin: 30px 0;
  padding: 20px;
}

/* line 288, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap span {
  font-size: 16px;
  font-weight: 500;
  color: #001D38;
  margin-right: 20px;
}

/* line 295, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap ul li {
  display: inline-block;
  margin-right: 10px;
}

/* line 298, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap ul li a {
  font-size: 16px;
  color: #D5D5D5;
}

/* line 301, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .share_wrap ul li a:hover {
  color: #f50909;
}

/* line 308, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.job_details_area .job_location_wrap {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}

/* line 314, ../../Arafath/CL/December/235. Job board/HTML/scss/_job_details.scss */
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(calc(2.25rem + 2px) - 1px * 2);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 .25rem .25rem 0;
  margin-bottom: 0;
  height: 60px;
  display: none !important;
}

.custom-file:hover {
  border-color: #007bff;
}

/* Hide default file input */
.custom-file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Style the label */
.custom-file-label {
  position: absolute;
  width: 100%;
  height: 100%;
  line-height: 60px;
  color: #7A838B;
  font-size: 14px;
  pointer-events: none;
}

/* When file is selected */
.custom-file-input:valid+.custom-file-label {
  color: #007bff;
  border-color: #007bff;
  margin-left: 45px;
}

.custom-file-label::after {
  content: "Upload CV";
  display: block;
  position: absolute;
  right: 15px;
  color: #7A838B;
  font-size: 14px;
}

.input-group-prepend button {
  background: none;
  border: none;
  font-size: 20px;
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.input-group-prepend {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Footer Start ***/
.footer {
  background: var(--bs-secondary);
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}

.footer .footer-item a {
  line-height: 35px;
  color: #9AA6B2;
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
  color: #9AA6B2;
}

.footer .footer-item a:hover {
  color: #e11d25;
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

@media (max-width: 768px) {
  .footer .footer-item img {
    margin-top: -20px;
  }
}

@media (max-width: 480px) {
  .footer .footer-item img {
    margin-top: -40px;
  }
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  background: var(--bs-dark);
}

/*** copyright end ***/