/**
* Template Name: Vesperr - v4.9.1
* Template URL: https://bootstrapmade.com/vesperr-free-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700&display=swap');
body {
  font-family: 'Lexend', sans-serif;
  color: #444444;
  
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  color: #5faee3;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lexend', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #3498db;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

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

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  z-index: 997;
  transition: all 0.5s;
  padding: 22px 0;
  background: #fff;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;

}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #222222;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}


.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #3498db;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #3498db;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #4aa3df;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobileonly{
    margin-right:15px;
    display:none !important;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
    .mobileonly{
    display: block !important;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #3498db;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #3498db;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  margin-top: 70px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: black;
}

#hero h2 {
  color: #484848;
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #3498db;
  border: 2px solid #3498db;
}

#hero .btn-get-started:hover {
  background: #3498db;
  color: #fff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }

  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }

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

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 20px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 20px 0;
  overflow: hidden;
}
.dashboard{
  padding: 100px 0 60px 0;
}

.section-bg {
  background-color: #fff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #3498db;
  display: inline-block;
}

.section-title h2::before {
  margin: 0 15px 10px 0;
}

.section-title h2::after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin: 15px 0 0 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #fff;
  padding: 10px 0;
  text-align: center;
}

.clients .col-lg-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients img {
  width: 40px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 10px 0;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    width: 40%;
  }
}

@media (max-width: 575px) {
  .clients img {
    width: 30%;
  }
  .clients img.mobow-70 {
    width: 60px;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #3498db;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: #3498db;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #3498db;
}

.about .content .btn-learn-more:hover {
  background: #3498db;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .content {
  padding: 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #222222;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #3498db;
  float: left;
  line-height: 0;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #222222;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 30px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  color: #484848;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #484848;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #6f6f6f;
}

@media (max-width: 1024px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 70%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 12px 1px 1px 1px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 0; min-width:200px !important;
}

.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e1f0fa;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #c9e6f9;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon {
  margin: 5px auto 5px auto;
  padding-top: 10px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #f9b56c;
  transition: all 0.3s ease-in-out;
}

.services .icon i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0; text-align: justify;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
  color: #000;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #f9b56c;
}

/*--------------------------------------------------------------
# More Services
--------------------------------------------------------------*/
.more-services {
  padding-top: 20px;
}

.more-services .card {
  border: 0;
  padding: 160px 20px 20px 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.more-services .card-body {
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  transition: ease-in-out 0.4s;
  border-radius: 5px;
}

.more-services .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.more-services .card-title a {
  color: #222222;
}

.more-services .card-text {
  color: #5e5e5e;
}

.more-services .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.4s;
}

.more-services .read-more a:hover {
  text-decoration: underline;
}

.more-services .card:hover .card-body {
  background: #3498db;
}

.more-services .card:hover .read-more a,
.more-services .card:hover .card-title,
.more-services .card:hover .card-title a,
.more-services .card:hover .card-text {
  color: #fff;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f6f6f6;
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #3498db;
}

.features .icon-box:hover {
  background: #eef7fc;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  text-align: justify;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -50px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #e1f0fa;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

.search_page .rounded h6 {
 
  font-size: 1.5rem;
}
.search_page .rounded p {
 
  font-size: 1.2rem;
}

.search_page .rounded .sociaicon a{font-size: 1.2rem}
.search_page.rounded .sociaicon a span{font-size: 1.2rem}
.ls-switcher .sort-by{font-size: 1.2rem;}
.form-control{font-size: 1.2rem;}


 .switchbox-outer {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
}
.switchbox-outer h4 {
  margin-top: 10px; font-size: 16px;
}

.switchbox-outer label {
  font-size: 1rem;
  font-weight: normal;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #222222;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #3498db;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(34, 34, 34, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(34, 34, 34, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #3498db;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #3498db;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #222222;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #f9f9f9;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid #f9f9f9;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #222222;
}

.pricing .box h4 {
  font-size: 42px;
  color: #3498db;
  font-weight: 500;
  font-family: 'Lexend', sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  color: #222222;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #3498db;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  border: 2px solid #3498db;
  color: #3498db;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .box .btn-buy:hover {
  background: #3498db;
  color: #fff;
}

.pricing .recommended {
  border-color: #3498db;
}

.pricing .recommended .btn-buy {
  background: #3498db;
  color: #fff;
}

.pricing .recommended .btn-buy:hover {
  background: #2383c4;
  border-color: #2383c4;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}

.faq .faq-item i {
  color: #8bc4ea;
  font-size: 24px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 32px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-about h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222222;
}

.contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: 'Lexend', sans-serif;
  color: #888;
}

.contact .social-links {
  padding-bottom: 20px;
}

.contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #3498db;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #3498db;
}

.contact .social-links a:hover {
  background: #3498db;
  color: #fff;
}

.contact .info {
  color: #fff;
}

.contact .info p a{
  color: #fff;
}

.contact .info i {
  font-size: 32px;
  color: #3498db;
  float: left;
  line-height: 1;
}

.contact .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #3498db;
}

.contact .php-email-form button[type=submit] {
  background: #3498db;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2383c4;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f8f8f8;
  min-height: 40px;
  margin-top: 86px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 72px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

@media (max-width: 992px) {
  .breadcrumbs ol {
    margin-top: 10px;
  }
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #222;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .credits {
  font-size: 13px;
  padding-top: 5px;
  color: #fff;
}

#footer .footer-links a {
  color: #fff;
  padding-left: 15px;
}

#footer .footer-links a:first-child {
  padding-left: 0;
}

#footer .footer-links a:hover {
  color: #3498db;
}



body{margin-top:20px;}
.p-15px {
    padding: 15px;
}
.border-color-gray {
    border-color: #f2f3fa; border-radius: 5px;
}
.border-all-1 {
    border: 1px solid;
}
.hover-top {
    position: relative;
    top: 0;
}
.m-15px-tb {
    margin-top: 15px;
    margin-bottom: 15px;
}
.overlay-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 0;
}
.border-radius-50 {
    border-radius: 50%;
}
.icon-50 {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 21px;
}
.white-color {
    color: #ffffff;
}
.theme-bg {
    background-color: #0050d8;
}
.icon-50 i.number {
    font-style: normal;
}
.icon-50 i {
    line-height: 50px;
}
.p-20px-l {
    padding-left: 20px;
}
.p-10px-lr {
    padding-left: 10px;
    padding-right: 10px;
}
.p-0px-tb {
    padding-top: 0px;
    padding-bottom: 0px;
}
.border-radius-15 {
    border-radius: 15px;
}
.white-color {
    color: #ffffff;
}
.theme2nd-bg {
    background-color: #53d267;
}
.m-0px {
    margin: 0px;
}
.font-small {
    font-size: .75rem;
    line-height: 1rem;
}

.green-bg-alt {
  background-color: rgba(17, 226, 121, 0.1);
}

.green-bg {
  background-color: #11e279;
}

.green-after:after {
  background-color: #11e279;
}

.green-before:before {
  background-color: #11e279;
}

.green-color-alt {
  color: rgba(17, 226, 121, 0.65);
}

.green-color {
  color: #11e279;
}

.blue-bg-alt {
  background-color: rgba(21, 178, 236, 0.1);
}

.blue-bg {
  background-color: #15b2ec;
}

.blue-after:after {
  background-color: #15b2ec;
}

.blue-before:before {
  background-color: #15b2ec;
}

.blue-color-alt {
  color: rgba(21, 178, 236, 0.65);
}

.blue-color {
  color: #15b2ec;
}

.pink-bg-alt {
  background-color: rgba(241, 38, 153, 0.1);
}

.pink-bg {
  background-color: #f12699;
}

.pink-after:after {
  background-color: #f12699;
}

.pink-before:before {
  background-color: #f12699;
}

.pink-color-alt {
  color: rgba(241, 38, 153, 0.65);
}

.pink-color {
  color: #f12699;
}

.body-bg-alt {
  background-color: rgba(113, 128, 150, 0.1);
}

.body-bg {
  background-color: #718096;
}

.body-after:after {
  background-color: #718096;
}

.body-before:before {
  background-color: #718096;
}

.body-color-alt {
  color: rgba(113, 128, 150, 0.65);
}

.body-color {
  color: #718096;
}

.white-color-light {
  color: rgba(255, 255, 255, 0.65);
}

.bg-transparent {
  background-color: transparent;
}

.theme-g-bg {
  background: linear-gradient(to right, #0050d8, #002a72);
}

.dark-g-bg {
  background: linear-gradient(50deg, #273444 0, #272b44 100%);
}
.yellow-bg {
    background-color: #ffbe3d;
}
.border-radius-50 {
    border-radius: 50%;
}
.icon-50 {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 21px;
}

.box-shadow-only-hover:hover {
  box-shadow: 0 1.5rem 4rem rgba(22, 28, 45, 0.1);
}
.border-color-gray {
    border-color: #f2f3fa !important; border-radius: 5px;;
}
.border-all-1 {
    border: 1px solid;
}



h3.title-job-list {
  font-size: 14px;
  text-align: left;
}
.media{font-size: 14px;  text-align: left; line-height: 1.6rem;}
.media .job-salary { text-align: left;font-size: 11px;}
.media .location { text-align: left;font-size: 11px;}
.media .text-second{font-size: 12px;  text-align: left; line-height: 1.6rem; color: #222222;}
.btn .btn-primary{font-size: 12px !important;}
.btn {margin-bottom: 10px;}
.overlay-link:hover{padding: 10px 10px 0px 10px; border: #3498db 1px solid; border-radius: 5px;}
.grey-bg {background-color: #c1c1c1; color:#000; width:100%; height:30px;}
.overlay-link:hover.grey-bg {background-color: #9777fa; color:#fff}

         
         


.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-border-width: 0px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: rgba(255, 255, 255, 0);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}

.contact .info h4 {
  font-size: 18px;
  color: #fff;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.contact .info p {
  padding: 0 0 6px 16px;
  line-height: 16px;
  font-size: 14px;
  list-style: circle;
}
.contact-about .img-fluid {
  max-width: 71%;
  height: auto;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3498db;
  --bs-btn-border-color: #54b2f1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #68a0f1;
  --bs-btn-hover-border-color: #6da4f5;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}


.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3498db;
  --bs-btn-border-color: #54b2f1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #68a0f1;
  --bs-btn-hover-border-color: #6da4f5;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-danger {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ff9f46;
  --bs-btn-border-color: #ffcfa2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225,83,97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.theme-bg {
  background-color: #3498db;
}
.carousel{margin-top: 10px;}
.carousel-item h5{ font-size: 25px; text-align: left; margin-bottom:2rem;}
.carousel-item p{ font-size: 15px; text-align: left; margin-bottom: 1.5rem;}
.services .margin_top{margin-top: 60px;}

.services .title_sec { font-size: 3rem; padding-top: 6rem;}
.services .title_three { font-size: 3rem; padding-top: 3rem;}
.services_bgcolor{background: #fff;}

.services_bgcolor .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 1.375rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.services_bgcolor .btn{ border-radius: 1.375rem;}

.services .bg-primary {
  --bs-bg-opacity: 1;
  background:#3498db!important;
}

.bgbluey {
  background:#3498db!important;
}
.logo a{border: 0px;}

.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  text-align: left !important;}

  .services .title_serach { font-size: 3rem; padding-top: 2rem;}
  .services .title_serachsec { font-size: 2rem; padding-top: 1rem;}

.card-body .font_sie{ font-size: 1.5rem;}
.serach .align-items-start{ display: flex;
  align-items: flex-end;}

.slider_div{margin-top: 6rem;}





.contact-section {
  position: relative;
  padding: 50px 0;
}

.contact-section .upper-box {
  position: relative;
  padding: 50px 90px 50px;
  margin-top: -300px;
  z-index: 1;
  background: #ffffff;
}

.contact-block {
  position: relative;
  margin-bottom: 30px;
}

.contact-block .inner-box {
  position: relative;
}

.contact-block .icon {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.contact-block h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 20px;
}

.contact-block p {
  font-size: 15px;
  line-height: 26px;
  color: #696969;
}

.contact-block p a {
  color: #696969;
}

.contact-block p .phone {
  font-size: 18px;
  color: #9777fa;
}

.contact-section .contact-form {
  max-width: 850px;
  margin: 0 auto;
  border: 1px solid #ECEDF2;
  border-radius: 8px;
  padding: 50px 50px 70px;
}

.contact-section .contact-form h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #202124;
  margin-bottom: 15px;
}

.contact-section .contact-form .theme-btn {
  max-width: 330px;
  width: 100%;
}






.blog-post {
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}

.blog-post .blog-img .overlay,
.blog-post .blog-img .post-meta {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.blog-post .blog-img .overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.blog-post .blog-img .post-meta {
  bottom: 5%;
  right: 5%;
  z-index: 1;
}

.blog-post .blog-img .post-meta .read-more:hover {
  color: #6dc77a !important;
}

.blog-post .content h1, .blog-post .content h2, .blog-post .content h3, .blog-post .content h4, .blog-post .content h5, .blog-post .content h6 {
  line-height: 1.2;
}

.blog-post .content .title {
  font-size: 18px;
}

.blog-post .content .title:hover {
  color: #6dc77a !important;
}

.blog-post .content .author .name:hover {
  color: #6dc77a !important;
}

.blog-post:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.blog-post:hover .blog-img .overlay {
  opacity: 0.65;
}

.blog-post:hover .blog-img .post-meta {
  opacity: 1;
}

.blog-post .post-meta .like i,
.profile-post .like i {
  -webkit-text-stroke: 2px #dd2427;
  -webkit-text-fill-color: transparent;
}

.blog-post .post-meta .like:active i, .blog-post .post-meta .like:focus i,
.profile-post .like:active i,
.profile-post .like:focus i {
  -webkit-text-stroke: 0px #dd2427;
  -webkit-text-fill-color: #dd2427;
}

.avatar.avatar-ex-sm {
    height: 36px;
}
.shadow {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
}

.text-muted {
    color: #8492a6 !important;
}


.para-desc {
    max-width: 600px;
}
.text-muted {
    color: #8492a6 !important;
}

.section-title .title {
    letter-spacing: 0.5px;
    font-size: 30px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.ls-section .ls-outer {
    position: relative;
}

.ls-switcher {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ls-switcher .showing-result {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.ls-switcher .showing-result .text {
    font-size: 16px;
    color: #1b2032;
}

.ls-switcher .arrange {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 20px;
}

.ls-switcher .arrange a {
    margin-right: 10px;
}

.ls-switcher .arrange .icon {
    position: relative;
    display: block;
    height: 40px;
    width: 40px;
    border: 2px solid #d7dbe4;
    border-radius: 50%;
    line-height: 36px;
    text-align: center;
    color: #a3acc2;
    font-size: 16px;
}

.ls-switcher .arrange .active .icon {
    color: #a3acc2;
    border-color: #a3acc2;
}

.top-filters {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.top-filters .form-group {
    position: relative;
    margin-right: 20px;
    margin-bottom: 0;
}

.top-filters .chosen-container .chosen-single {
    position: relative;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 25px;
    padding: 10px 22px;
    padding-right: 44px;
    color: #9777fa;
    background: rgba(151, 119, 250, .07);
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top-filters .chosen-container-single .chosen-single div:after {
    color: #9777fa;
    content: "\f17c";
    font-family: 'Flaticon';
    font-size: 10px;
}

.top-filters .chosen-container .chosen-single span {
    color: #9777fa;
    margin: 0;
    min-width: auto;
}

.top-filters .chosen-container .chosen-container-multi .chosen-choices,
.top-filters .chosen-container.chosen-with-drop .chosen-drop {
    background: #eff4fc;
}

.ls-switcher .sort-by {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.ls-switcher .sort-by .chosen-single {
    position: relative;
    height: 45px;
    padding: 10px 20px;
    font-size: 14px;
    color: #696969;
    line-height: 25px;
    background: #F0F5F7;
}

.ls-switcher .sort-by .chosen-container {
    margin-left: 10px;
}

.ls-switcher .sort-by .chosen-container-single .chosen-single div:after {
    color: #696969;
    content: "\f17c";
    font-family: 'Flaticon';
    font-size: 10px;
}

.ls-switcher .showing-result {
    position: relative;
}

.ls-switcher .showing-result .text {
    position: relative;
    font-size: 15px;
    line-height: 20px;
    color: #696969;
}

.ls-switcher .showing-result .text strong {
    font-weight: 500;
    color: #202124;
}

.sociaicon a {
  font-size: 18px;
  background: #fff;
  color: #000;
  line-height: 1;
  padding: 8px  8px  8px  0px;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
 
  transition: 0.3s;
  border: 0px solid #000;
}
.sociaicon a span {font-size: 13px; font-weight: normal;padding-left: 10px;}
.sociaicona:hover {
  background: #000;
  color: #000;
}
.job-search-form .form-group .selectsec_country{padding-left:0px;}
/*** 

====================================================================
Listing Show More
==================0==================================================

***/
.node.btn-danger {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ff9f46;
  --bs-btn-border-color: #ffcfa2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff9f46;
  --bs-btn-hover-border-color: #ff9f46;
  --bs-btn-focus-shadow-rgb: 225,83,97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ff9f46;
  --bs-btn-active-border-color: #ff9f46;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ff9f46;
  --bs-btn-disabled-border-color: #ff9f46;
}


.job-search-form {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  -webkit-box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
  box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
  border-radius: 10px;
  min-width: 620px;
}

.job-search-form form {
  padding: 10px 20px;
  padding-left: 20px;
}
.job-search-form .form-group {
  position: relative;
  text-align: left;
  margin-bottom: 0;
}
.job-search-form .form-group .icon {
  position: absolute;
  left: 15px;
  top: 45%;
    margin-top: -25px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  color: #5c6770;
  background: #ffffff00;
  z-index: 9;
}
.job-search-form .form-group input {
  height: 50px;
  line-height: 20px;
  font-size: 13px;
  padding-left: 40px; border: 0px;
}

.job-search-form form {
  background: #ffffff;
  padding: 10px 5px;
  padding-left: 10px;
  border-radius: 10px;
}
input {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}


.home_margin{margin-left: auto;margin-right: auto;}
.services .icon-box::before {
  content: "";
  position: absolute;
  background: #e6e6e6;
  right: -60px;
  top: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  transition: all 0.3s;
  z-index: -1
}

.services .icon-box:hover::before {
  background: #c9e6f9;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .icon-box:hover .icon {
  background: #fff;
}
.services .icon {
  margin: 5px auto 5px auto;
  padding-top: 10px;
  display: none;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #c9e6f9;
  transition: all 0.3s ease-in-out;
}
.services .icon-box:hover .icon i {
  color: #5c5c5c;
}
.home_slider_work{background: #f3f8ff; margin-top: 10px !important; padding: 10px !important;}

.howto_work{background: #dcf1ff; margin-top: 10px !important;}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  /* color: #0069d9 !important; */
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.nav-linksec {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: #000 !important;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.btn-danger {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ff9f46; min-width:80px;
  text-align: center;
  --bs-btn-border-color: #ffcfa2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff9f46;
  --bs-btn-hover-border-color: #ff9f46;
  --bs-btn-focus-shadow-rgb: 225,83,97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ff9f46;
  --bs-btn-active-border-color: #ff9f46;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ff9f46;
  --bs-btn-disabled-border-color: #ff9f46;
}


.btn-danger:hover {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ff9f46;
  --bs-btn-border-color: #ffcfa2;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff9f46;
  --bs-btn-hover-border-color: #ff9f46;
  --bs-btn-focus-shadow-rgb: 225,83,97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ff9f46;
  --bs-btn-active-border-color: #ff9f46;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ff9f46;
  --bs-btn-disabled-border-color: #ff9f46;
}
.nav-link:focus, .nav-link:hover {
  color: #0069d9 !important;
}

.nav-tabs .nav-link.active {
  color: #fff !important;
  background-color: #ff9f46;
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.media{padding-bottom: 0px;}
.media .job_tags {
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border-top: 1px solid #e9e9e9;
  padding: 8px 10px;
  background: #f9f9f9;
  display: block; font-size: 1rem;
  margin: 0; border-radius:5px;;
  position: relative;

}

.media .job_tags:hover{background-color: #ff9f4673 !important; color: #000; border-radius: 5px;}
.customapplybutton{
    background: #3498db;
    color: #fff5f5;
    font-size: 14px;
    border-color: #3498db;
    transition:0.2s;
}
.customapplybutton:hover{
    background-color: #ff9f4673!important;
    border-color: #ff9f46!important;
    color: #000!important;
    transform:scale(1.15);
}
.category-wrapper-item.style1 {
  background: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #e9e9e9 #e9e9e9 #23c0e9;
  margin-bottom: 15px;
}
.category-wrapper-item.style1 .icon-wrapper{color: #f36969;}
.category-wrapper-item.style1{border-bottom-color:3px solid #f36969;}
.category-wrapper-item.style1:hover{border:1px solid#f36969;}
.category-wrapper-item .category-title {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.category-wrapper-item.style1 .count {
  color: #797979 !important;
}

.top_fotter{ 
    background: #3498db;
    color: #fff;
    border-top: 7px solid #ff9f46;
    
}
.search_page .nav {color:#000}
.search_page .nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size:1.2rem !important;
  font-weight:normal !important;
  color: #424242 !important;
  line-height: 1rem;
  text-decoration: none;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}
.contact_page_email{margin-top:28px;}
.services_row{ min-width: 1265px;width: 100%;}



/*** 

====================================================================
pageserach
==================0==================================================

***/

.job-search-form form {
  padding: 10px 20px;
  padding-left: 20px;
}
.media .location { text-align: left;font-size: 11px;}
.media .text-second{font-size: 12px;  text-align: left; line-height: 1.6rem; color: #222222;}

option {
  font-weight: normal;
  display: block;
  white-space: nowrap;
  min-height: 1.2em;
  padding: 0px 2px 1px;
}

.auto-container {
  position: static;
  max-width: 1310px;
  padding: 0px 15px;
  margin: 0 auto;
  width: 100%;
}
.job-search-form .form-group select{
     padding-left: 45px !important; 
}
 .job-search-form .form-group select, textarea {
  height: 50px;
  line-height: 20px;
  font-size: 14px; color: #898989;
 
  border: 0px;
}
.job-search-form .form-group .selectsec{
  height: 50px;
  line-height: 20px;
  font-size: 14px; color: #898989;
  padding-left: 0px; border: 0px;;
}
.services .findjobmargin_top {
  margin-top: 100px;
}
.feature_news_item {
  background: #fff;
  text-align: center;
}
.item_title_date {
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  padding: 25px 30px 0;
}
.item_meta {
  font-size: 11px;
  color: #767676;
  margin-bottom: 3px;
}
.item_wrapper {
  position: relative;
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.item_content {
  padding: 10px 15% 30px;
}
.news_item_title h2 {
  font-size: 18px;
  margin: 0 0 10px;
}
.news_item_title h2 a:hover, a:focus {
  text-decoration: none;
  color: #ff6102;
}
.contact_pageheader{
  background: #fff;
  margin-top: 10px !important;
  padding: 10px 0px;
  }
.contact_page{
background: #dcf1ff;
margin-top: 10px !important;
padding: 10px 0px;
}

 .navbar .active{
  color: #3498db;
  border-bottom: 1px solid;
}
.icon-box h4.titlesec12 a {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px; color: #2d2d2d;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 15px;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  white-space: nowrap;
  transition: 0.3s;
}

.services .screen-box {
  padding: 0px 20px  0px 10px  ;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1; min-height: 350px;
  min-width: 220px !important;
}


.services .icon-box:hover .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  color: #2d2d2d;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
-webkit-appearance: revert !important;
  -moz-appearance: revert !important;
    appearance: revert !important;
  appearance: revert !important;
  border-radius: 0.375rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.full_btn{width: 80px; text-align: center;}
.full_btn{width: 120px; text-align: center; margin-right: 10px;margin-top: 10px;font-size: 12px;}
.sharewbtn{float: right; text-align: right; margin-right: 15px;}
.contact .info p {
  padding: 0 0 6px 0px;
  line-height: 16px;
  font-size: 14px; 
  list-style: circle;  color: #fff;
}


.contact .info i {
  font-size: 18px;
  color: #ffffff;
  float: left;
  line-height: 1;
  padding-right: 10px;
}
.blog .news_item_title h2 a{
  font-size: 18px;
  margin: 0 0 10px;
  color: #000 !important;;
}
.blog .item_content {
  padding: 10px 15% 30px;
  font-size: 14px;;
}

.carousel-control-next {
  right: -20px;
}

.search_page .nav-link{padding-left:0px;}


.carousel-control-next-icon {
  background-image: url("./img/slider/arrow1.png");
  margin-right: -225px;;
}
.carousel-control-prev-icon {
  background-image: url("./img/slider/arrow2.png");
  margin-left: -225px;}
.hrart_icon{
  float: left;
  text-align: left;
 
}
.hrart_icon a{
 color: red;  
}

  .services_bgblogcolor {
    background: #f4f4f4
}
.services_bgblogcolorsec {
  background: #fdfdfd
}
.arrow-right_icon {
  /* margin-top: 80%; */
  font-size: 1.5rem;
  position: absolute;
  top: 170px;right:93%;
  z-index: 9;
  color: #ff971b;
}
.counts .content .count-box {
  padding: 20px 0;
  width: 100%; text-align: justify;
}
.mobile_div{ display: none; text-align: center;}
.services_row .font-small {
  font-size: .85rem;
  line-height: 1.2rem; font-weight: 700;
}

.about_heading{display: block; margin-top: 10px;}
@media (min-width: 2560px) and (max-width: 1600px)
 {
.services_row {
  min-width: 1500px;
  width: 100%;
}
.services .screen-box {
  padding: 0px 20px  0px 10px  ;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1; min-height: 350px;
  min-width: 240px !important;
}

.arrow-right_icon {
    /* margin-top: 80%; */
    font-size: 1.5rem;
    position: absolute;
    top: 170px;
    right: 98%;
    z-index: 9;
    color: #ff971b;
}

.nav-tabs .nav-linksec{
    padding: 10px 26px;
}


}

@media (max-width: 1200px) {
.services_row {
  min-width: 1180px;
  width: 100%;
}
.services .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  min-width: 100%;
}
.services .screen-box {
  padding: 0px 20px  0px 10px  ;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1; min-height: 350px;
  min-width: 220px !important;
}
 .slider_div img{vertical-align: middle;
  width: 70%!important;;
}
}

@media (max-width: 992px) {
  .btn {
    --bs-btn-padding-x: 0.55rem;
    --bs-btn-padding-y: 0.275rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: .8rem;
  }

.services_row{ min-width: auto!important;
  width: 100%;}

.services .icon-box {
  padding: 8px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 0;
  min-width: 100% !important;
}
.services .title {
    margin-bottom: 10px;
}

.services .screen-box {
  padding: 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  margin-left: 1rem;
  
}
 .slider_div img{vertical-align: middle;
  width: 70%!important;;
}

}


@media (max-width: 867px) {
    
.job-search-form {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    -webkit-box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
    box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
    border-radius: 10px;
    min-width: 80% !important; 
    margin-bottom: 22px;
    width: 100%;
}
.job-search-form .form-group .selectsec_country{padding-left:30px;}

}





@media (max-width: 767px) {
  .btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
  }
 .slider_div img{vertical-align: middle;
  width: 70%!important;;
}

.contact .info {
      color: #fff;
      text-align: center;
  }
  .contact .contact-about {
    color: #fff;
    text-align: center !important;
}

.services .icon-box{text-align: center;}
.services .margin_top {
  margin-top: 30px;
  text-align: center!important;;
}
.media .job-salary {
  text-align: left;
  font-size: 11px;
}
.media .location {
  text-align: left;
  font-size: 11px;
}
.media-body.media-middle{
  text-align: left;
}
.media {
  font-size: 14px;
  text-align: center;
  line-height: 1.6rem;
}
h3.title-job-list {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}
.job-search-form .form-group select, textarea {
    height: 50px;
    line-height: 20px;
    font-size: 14px;
    color: #898989;
    padding-left: 40px;
    border: 0px;
    margin-bottom: 10px;
}
.services .title_three {
  font-size: 2rem;
  padding-top: 3rem;
}
.section-title h2 {
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}
.testimonials .testimonial-item {
  padding: 30px;
  margin: 15px;
  text-align: center;
}
.services .title_sec {
  font-size: 2rem;
  padding-top: 3rem;
}
.services .title_serach {
  font-size: 2rem;
  padding-top: 7rem;
}
.services .card{text-align: center;}

.slider_div{margin-top: 3rem;}

.blog .title_serach {
  font-size: 2rem;
  padding-top: 4rem;
}
.serach .align-items-start{align-items: flex-end!important;}
.search_page .nav{text-align: center!important;}
.node {text-align: center!important;}
.services_bgcolor.blog-post{text-align: center!important;}

.carousel-control-next-icon {
  margin-right: -35px;;
}
.carousel-control-prev-icon {
  margin-left: -65px;}

  .arrow-right_icon {
    margin-top: 80%;
    font-size: 1.44rem;
    display: none;
}
.switchbox-outer {
  position: relative;
  margin-bottom: 30px;
  margin-top: 20px; text-align:center;
}
.form-check .form-check-input {
  float: none;
  margin-left: -1.5em;
}
.job-search-form .form-group .icon {
    background: #ffffff !important;
 }
.job-search-form .form-group {
    position: relative;
    text-align: left;
    margin-bottom: 0; text-align: center;
}
.job-search-form .form-group .country_code {
    height: 50px;
    line-height: 20px;
    font-size: 14px;
    color: #898989;
    padding-left:40px;
    border: 0px;
}
.job-search-form .form-group .selectsec_country{padding-left:30px;}
.card-body .font-small {
    font-size: 1.4rem;
    line-height: 1.8rem;
}
.mb-5 {
    margin-bottom: 5px !important;
}


.job-search-form {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    -webkit-box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
    box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
    border-radius: 10px;
    
    margin-bottom: 22px;
    width: 100%;
    margin: 20px auto;
}
.job-search-form .form-group .icon {
    position: absolute;
    left: 15px;
    top: 63%;
    margin-top: -35px;
    width: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 24px;
    color: #5c6770;
    background: #ffffff;
    z-index: 9;
}

.services .screen-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    margin-left: 1rem;
   
}

.services .screen-box {
    padding: 30px;
    position: relative;}
    
    .screen-box .pr-3{padding-right:0px!important;}
    .job-search-form .form-group input {
      height: 50px;
      line-height: 20px;
      font-size: 13px;
      padding-left: 40px;
      border: 0px;
      background: #f8f8f9;
      margin-bottom: 10px;
      border-radius: 36px;
      width: 100%;
      box-shadow: 5px 4px 5px rgb(64 79 104 / 17%);
  }
  .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    border-bottom: 1px solid #dee2e6;
    font-size:.88rem!important;
}.job-search-form .form-group .icon{left:20px!important;}
.counts .content .count-box p{margin: 0 0 0 20px!important;}
.section-title h2 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}
.services .title_three {
  font-size: 1.4rem;
  padding-top: 3rem;
}
.services .title_sec {
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-left: 5px !important;
}
.mobile_div{ display: block; text-align: center;}
.destop{display: none;}



.open>.dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #0266a9;
  border-color: #01548d;
}


.about_heading{display: none; margin-top: 10px;}
.home_slider_work {
  background: #fafafa;
  margin-top: 10px!important;
  padding: 10px !important;
  min-height: 500px;
}
.home_btton{width: 35%;}


.blog_img{margin-top:30px !important;}
}
@media (max-width:667px) {

  .services .screen-box {
    padding: 0px!important}
    .services .screen-box {
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      border-radius: 8px;
      z-index: 1;
      margin-left: 1rem;
      min-width: 100%!important;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
    display: block;
    float: left;
}
  .job-search-form .form-group input {
    height: 50px;
    line-height: 20px;
    font-size: 13px;
    padding-left: 40px;
    border: 0px;
    background: #f8f8f9;
    margin-bottom: 10px;
    border-radius: 36px;
    width: 100%;
    box-shadow: 5px 4px 5px rgb(64 79 104 / 17%);
  }
  
  .job-search-form .form-group select {
    height: 50px;
    line-height: 20px;
    font-size: 14px; width: 100%;
    color: #898989; margin-bottom: 10px;
    padding-left: 50px; background: #f8f8f9;
    border-radius: 36px;
    border: 0px; box-shadow: 5px 4px 5px rgb(64 79 104 / 17%);
  }
  
  .services_screen{display: none;}
  .carousel-item img{display: none;}
  
  .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
    font-size: 10px;
  }
  .carousel {
    margin-top: 20px !important;
  }
  .slider_div {
   margin-top: 2rem;
  }
  .search_page img{width: 80%;}
  .hrart_icon {
    float: left;
    text-align: center;
  }
  .job-search-form .form-group .icon{left:20px!important;}
  .job-search-form{width: 100%;margin:0px; }
  .counts .content .count-box p{margin: 0 0 0 20px!important;}
  .section-title h2 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    color: #222222;
  }
  .services .title_three {
    font-size: 1.4rem;
    padding-top: 3rem;
  }
  .services .title_sec {
    font-size: 1.5rem;
    padding-top: 1rem;
    padding-left: 5px !important;
  }

  .counts .content .count-box {
    padding: 5px 0px!important;
    width: 100%;
    text-align: justify;
  }
section {
    padding: 0px 0px!important;
    overflow: hidden;
}
.blog .title_serach {
  font-size: 1.5rem;
  padding-top: 1.5rem;
}
.services .title_serachsec {
  font-size: 1.4rem;
  padding-top: 1rem; text-align: left;
}
.mobile_div{ display: block; text-align: center;}
.mobile_div button:not(:disabled) {
  cursor: pointer; text-align: center;
  font-size: 1.2rem;
  width: 63%; 
}
.destop{display: none;}
.dropdown-menu {
  float: left;
  min-width: 2rem;
  padding: 10px;
  inset: 0px 0px auto auto;
  margin: 0px;
  transform: translate(-80px, 20px);
}
.about_heading{display: none; margin-top: 10px;}
.home_slider_work {
  background: #fafafa;
  margin-top: 10px!important;
  padding: 10px !important;
  min-height: 520px;
}

.blog_search_box{width:70%;}
.blog_search_submit{width:30%;}
.blog_img{margin-top:30px !important;}
.find-leftinner_div{width:30%}
.find-righttinner_div{width:70%}
.home_btton{width: 35%;}


.full_btn {
  width: 90px;
  text-align: center;
  margin-right: 10px;
  padding: 9px;font-size: 13px;
  margin-top: 10px;
}

}




@media (max-width:467px) {
    
  .services .screen-box {
  padding: 0px!important}
  .services .screen-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    margin-left: 1rem;
    min-width: 100%!important;
}
.job-search-form .form-group input {
  height: 50px;
  line-height: 20px;
  font-size: 13px;
  padding-left: 40px;
  border: 0px;
  background: #f8f8f9;
  margin-bottom: 10px;
  border-radius: 36px;
  width: 100%;
  box-shadow: 5px 4px 5px rgb(64 79 104 / 17%);
}

.job-search-form .form-group select {
  height: 50px;
  line-height: 20px;
  font-size: 14px; width: 100%;
  color: #898989; margin-bottom: 10px;
  padding-left: 50px; background: #f8f8f9;
  border-radius: 36px;
  border: 0px; box-shadow: 5px 4px 5px rgb(64 79 104 / 17%);
}

.services_screen  { display: none;}
.carousel-item img{display: none;}

.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  font-size: 10px; width: 25%;
}
.carousel {
  margin-top: 20px !important;
}
.slider_div {
 margin-top: 2rem;
}
.search_page img{width: 80%;}
.hrart_icon {
  float: left;
  text-align: center;
}
.job-search-form .form-group .icon{left:20px!important;}
.job-search-form{
    width: 100%;
    margin-top:10px; 
  }
.navbar .dropdown ul li {
    min-width: 200px;
    display: block;
    float: left;
}
.counts .content .count-box p{margin: 0 0 0 20px!important;}
.section-title h2 {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #222222;
}
.services .title_three {
  font-size: 1.4rem;
  padding-top: 3rem;
}
.services .title_sec {
  font-size: 1.5rem;
  padding-top: 1rem;
  padding-left: 5px !important;
}
.counts .content .count-box {
  padding: 5px 0px !important;
  width: 100%;
  text-align: justify;
}
section {
  padding: 0px 0px!important;
  overflow: hidden;
}
.blog .title_serach {
  font-size: 1.5rem;
  padding-top: 1.5rem;
}
.services .title_serachsec {
  font-size: 1.4rem;
  padding-top: 1rem;
}
.dropdown-menu {
  float: left;
  min-width: 2rem;
  padding: 10px;
  inset: 0px 0px auto auto;
  margin: 0px;
  transform: translate(-60px, 20px);
}
.about_heading{display: none; margin-top: 10px;}
.home_slider_work {
  background: #fafafa;
  margin-top: 10px!important;
  padding: 10px !important;
  min-height: 520px;
}
.blog_img{margin-top:30px !important;}
.leftinner_button_div{width:35%;margin-right: 10px;}
.innerbutton_div{width:40%}
.find-leftinner_div{width:30%}

.find-righttinner_div{width:70%}

.blog_btn{font-size: .8rem!important;}
.home_btton{width: 35%;}
.full_btn {
  width: 90px;
  text-align: center;
  margin-right: 10px;
  padding: 9px;
  margin-top: 10px;
}
.hrart_icon {
    float: left;
    text-align: center;
    position: absolute;
    right: -101px;
}

}

.carousel-control-next-icon, .carousel-control-prev-icon {
  display: inline-block;
  width: 12px;
  height: 20px;
  background-size: 100% 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

}

.job-search-form .form-group .icon {
  background: #ffffff00 !important;
}

.clients .bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important;
  border: 1px solid #e4e4e4;
}
.dropdown-menu
{float: left;
  min-width: 2rem;
  padding: 10px; 
  inset: 0px 0px auto auto;
  margin: 0px;
  transform: translate(0px, 25px);}
.dropdown-menu a {float: left!important;}
.dropdown-menu a.dropdown-item {
  display: block;
  float: left!important;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}


.services_bgcolor .btn {
  border-radius: 1.375rem;
  padding: 8px 25px;
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: #3498db;
  border-color: #3498db;
}
.btn-primary:hover {
  color: #fff;
  background-color: #3498db;
  border-color: #3498db;
}



.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #3498db;
  --bs-btn-border-color: #54b2f1;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #68a0f1;
  --bs-btn-hover-border-color: #3498db;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #3498db;
  --bs-btn-active-border-color: #3498db;
  --bs-btn-active-shadow: inset 0 3px 5pxrgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #3498db;
  --bs-btn-disabled-border-color: #3498db;
}

.swiper{
  z-index:0;
}
.home_slider_work .job-search-form {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ECEDF2;
    -webkit-box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
    box-shadow: 0px 7px 18px rgb(64 79 104 / 5%);
    border-radius: 10px;
    min-width: 620px;
    margin-top: 250px;
    z-index: 2;
}
.pac-container{
  z-index: 2;
}
button.theme-btn.close-filters {
    display: none;
}
.destop h4{
  font-size: 1.2rem;
}
.search_page .destop .nav-link{
  font-size: .80rem !important;
}
.navbar .dropdown ul li {
    min-width: 200px;
    display: block;
    float: left;
}


.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  font-size:1rem!important;
}


/*dsahboard css*/

.dashboard-option .dropdown-menu {
  padding: 20px 20px 20px;
}

.dashboard .dashboard-outer {
  padding: 40px 30px 0;
}

.dashboard .dashboard-outer {
  position: relative;
  padding: 60px 60px 0;
}
.dashboard .upper-title-box {
  position: relative;
  margin-bottom: 10px;
}
.dashboard .upper-title-box h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 41px;
  color: #202124;
  margin-bottom: 10px;
}

.main-header .main-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 70px;
  max-width: 1920px;
  margin: 0 auto;
}

.main-header .nav-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* height: 100px; */
}

.main-header .logo-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-header .logo {
  position: relative;
  z-index: 9;
  padding: 0px 0;
  margin-bottom: 13px;
  height: 75px;
  margin-right: 100px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.logo img {
  height: 40px;
  margin-top: 26px;
}

.main-menu {
  position: static;
}
.main-menu .navigation {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-menu .navigation>li {
  position: relative;
  margin-right: 40px;
  padding: 20px 0;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li>span, .main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  opacity: 1;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: #202124;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .outer-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-header .dashboard-option {
  margin-left: 15px;
}

.dashboard-option .dropdown-menu {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  top: 100% !important;
  left: auto !important;
  right: 0 !important;
  min-width: 300px;
  margin-top: 8px;
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  -webkit-box-shadow: 0px 6px 15px rgb(64 79 104 / 5%);
  box-shadow: 0px 6px 15px rgb(64 79 104 / 5%);
  border-radius: 8px;
  padding: 30px 30px 17px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0.25rem;
}
.dashboard-option .dropdown-menu:before {
  position: absolute;
  right: 30px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ECEDF2;
  content: "";
}
ul, li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.ck-content ul,.ck-content li {
    list-style: inside;
    padding: initial;
    margin: initial;
    color: #000000;
}

.dashboard-option .dropdown-menu li a {
  margin-bottom: 5px;
}
.dashboard-option .dropdown-menu li.active a, .dashboard-option .dropdown-menu li:hover a {
  color: #9777fa;
  background: rgba(151, 119, 250, .1);
}
.dashboard-option .dropdown-menu li a {
  padding: 5px 26px;
}
.dashboard-option .dropdown-menu li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 30px;
  line-height: 30px;
  font-weight: 400;
  font-size: 15px;
  color: #696969;
  text-align: left;
  text-transform: capitalize;
  border-radius: 8px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-bottom: 10px;
}







.dashboard {
    position: relative;
    background-color: #fff;
    padding-left: 365px;
    /*min-height: 100vh;*/
}

.dashboard .main-header {
    background: #ffffff;
}

.dashboard .dashboard-outer {
    position: relative;
    padding: 0px 60px 0;
}

.dashboard .upper-title-box {
    position: relative;
    margin-bottom: 10px;
}

.dashboard .upper-title-box h3 {
    font-weight: 500;
    font-size: 30px;
    line-height: 41px;
    color: #202124;
    margin-bottom: 10px;
}

.ui-item {
  position: relative;
  height: 110px;
  width: 100%;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(64, 79, 104, 0.2); /* Subtle default shadow */
  padding: 20px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: box-shadow 0.3s ease-in-out;
}

.ui-item .right {
    text-align: right;
}

.ui-item h4 {
    font-size: 30px;
    color: #333!important;
    font-weight: 500;
    line-height: 1em;
    margin-top: 10px;
    margin-bottom: 8px;
    text-align: left;
    opacity: 0.7;
}
.ui-item:hover h4{
  opacity: 1;
}
.ui-item:hover p{
  opacity: 1;
}

.ui-item p {
    font-size: 16px;
    color: #202124;
    line-height: 26px;
    text-align: left;
    opacity: 0.9;
    margin-bottom: 5px;
}

.ui-item .icon {
    position: relative;
    display: block;
    height: 70px;
    width: 70px;
    line-height: 70px;
    font-size: 40px;
    color: #9777fa;
    text-align: center;
    background-color: rgba(151, 119, 250, 0.1);
    border-radius: 8px;
}

.ui-item.ui-red h4 {
    color: rgba(217, 48, 37, 1);
}

.ui-item.ui-red .icon {
    color: rgba(217, 48, 37, 1);
    background: rgba(217, 48, 37, .1)
}

.ui-item.ui-yellow h4 {
    color: rgba(249, 171, 0, 1)
}

.ui-item.ui-yellow .icon {
    color: rgba(249, 171, 0, 1);
    background: rgba(249, 171, 0, .1)
}

.ui-item.ui-green h4 {
    color: rgba(52, 168, 83, 1);
}

.ui-item.ui-green .icon {
    color: rgba(52, 168, 83, 1);
    background: rgba(52, 168, 83, .1)
}
.si_item:hover{
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/*============================
Graph widget
============================*/

.graph-widget .widget-content {
    padding-top: 80px;
}

.graph-widget .tab-buttons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.graph-widget .tab-buttons li {
    position: relative;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 18px;
    color: #5c6770;
    font-weight: 400;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 8px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.graph-widget .tab-buttons li:hover,
.graph-widget .tab-buttons li.active-btn {
    background: #f9fafc;
}

.graph-widget .graph-img {
    position: relative;
    padding-top: 30px;
    margin-bottom: 20px;
}

.graph-widget .graph-img img {
    width: 100%;
    display: block;
}


/*============================
Form Widget
============================*/

.form-widget {
    position: relative;
}

.form-widget .default-form .form-group {
    margin-bottom: 12px;
}

.form-widget .default-form .form-group button {
    margin-top: 8px;
}

.form-widget .default-form .form-group:last-child {
    margin-bottom: 20px;
}

.form-widget .uploading-outer {
    margin-bottom: 20px;
}


/*============================
Uploading Widget
============================*/

.uploading-widget .widget-content {
    position: relative;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.uploading-widget .widget-content:last-child {
    padding-bottom: 30px;
    margin-bottom: 0;
    border-bottom: 0;
}

.uploading-widget .uploading-outer {
    padding: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.uploading-widget .bottom-text {
    position: relative;
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #5c6770;
}


/*============================
Listing Filters
============================*/

.listing-filters {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 5px;
    padding: 0 30px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09);
    margin-bottom: 30px;
}

.listing-filters .search-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px 0;
}

.search-form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.search-form input[type="text"],
.search-form input[type="search"] {
    position: relative;
    height: 54px;
    min-width: 305px;
    padding: 10px 18px;
    padding-right: 70px;
    background: transparent;
    font-size: 14px;
    color: #5c6770;
    line-height: 30px;
    border: 2px solid #e6e8ed;
    border-radius: 5px 5px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-form .search-btn {
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
    height: 54px;
    width: 54px;
    text-align: center;
    line-height: 54px;
    color: #e6e8ed;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.listing-filters .sort-by {
    margin-left: 30px;
}

.listing-filters .filters-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.listing-filters .filters-list li {
    position: relative;
    margin-right: 10px;
}

.listing-filters .filters-list li a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: #5c6770;
    font-weight: 400;
    padding: 40px 20px;
    padding-left: 55px;
    border-bottom: 2px solid transparent;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.listing-filters .filters-list li a .icon {
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -15px;
    font-size: 20px;
    color: #9fa9b8;
    line-height: 30px;
}

.listing-filters .filters-list li:hover a,
.listing-filters .filters-list li.active a {
    color: #021f4a;
    border-color: #021f4a;
}

.my-listing-widget .listing-block-seven {
    position: relative;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f3f7;
}

.my-listing-widget .listing-block-seven:last-child {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: 0;
}


/*====================================
Listing Block Seven
====================================*/

.listing-block-seven {
    position: relative;
    margin-bottom: 30px;
}

.listing-block-seven .inner-box {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.listing-block-seven .image-box {
    position: relative;
    margin-right: 30px;
}

.listing-block-seven .image {
    position: relative;
    display: block;
    margin-bottom: 0;
    height: 150px;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.listing-block-seven .image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.listing-block-seven .image:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: -webkit-gradient( linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(27, 32, 50, 1)));
    background: -o-linear-gradient( top, rgba(255, 255, 255, 0) 0%, rgba(27, 32, 50, 1) 100%);
    background: linear-gradient( to bottom, rgba(255, 255, 255, 0) 0%, rgba(27, 32, 50, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#1b2032', GradientType=0);
    z-index: 1;
    opacity: .80;
    content: "";
}

.listing-block-seven .inner-box:hover .image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.listing-block-seven .content-box {
    position: relative;
    width: 100%;
}

.listing-block-seven .content-box .upper-box {
    position: relative;
    padding: 20px 40px 10px;
    z-index: 2;
    width: 100%;
}

.listing-block-seven .rating {
    position: relative;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1em;
    color: #5c6770;
}

.listing-block-seven .fa {
    font-size: 11px;
    color: #ffa737;
}

.listing-block-seven .title {
    margin-left: 3px;
}

.listing-block-seven h3 {
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
    color: #1b2032;
    font-weight: 600;
    margin-bottom: 5px;
}

.listing-block-seven h3 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1b2032;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.listing-block-seven h3 a:hover {
    color: #ffa737;
}

.listing-block-seven h3 .icon {
    margin-left: 10px;
}

.listing-block-seven .text {
    position: relative;
    margin-bottom: 10px;
}

.listing-block-seven .info {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.listing-block-seven .info li {
    position: relative;
    color: #5c6770;
    margin-right: 20px;
}

.listing-block-seven .info li span {
    margin-right: 7px;
    font-size: 18px;
}

.listing-block-seven .places {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.listing-block-seven .place {
    position: relative;
    color: #4cbfd8;
    font-size: 14px;
}

.listing-block-seven .place .icon {
    position: relative;
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: #ffffff;
    line-height: 30px;
    text-align: center;
    font-size: 16px;
    background-color: #4cbfd8;
    margin-right: 7px;
}

.listing-block-seven .btn-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.listing-block-seven .btn-box .theme-btn {
    margin: 9px 0;
    margin-left: 18px;
}

.listing-block-seven .btn-box .theme-btn:first-child {
    margin-left: 0;
}

/* .user-sidebar{display: none;} */

.applicants-list {
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
  box-shadow: 0px 40px 30px rgba(25, 25, 46, 0.04);
  border-radius: 8px;
  min-width: 276px;
}

.applicants-list .title-box {
  position: relative;
  height: 50px;
  background: #9777fa;
  border-radius: 8px 8px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: -1px;
}

.applicants-list .title-box h4 {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
}

.applicants-list .applicants {
  position: relative;
  padding: 16px 24px 5px;
  text-align: left;
}

.applicants-list .applicant {
  position: relative;
  padding-left: 66px;
  min-height: 50px;
  margin-bottom: 22px;
}

.applicants-list .applicant .image {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.applicants-list .applicant .image img {
  display: block;
  width: 100%;
}

.applicants-list .applicant .name {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #202124;
  top: 2px;
}

.applicants-list .applicant .designation {
  font-size: 14px;
  line-height: 19px;
  color: #696969;
}

.ls-widget {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  -webkit-box-shadow: 0px 6px 15px rgb(0 0 0 / 42%);
  box-shadow: 0px 6px 15px rgb(0 0 0 / 42%);
  margin-bottom: 30px;
}

.ls-widget .widget-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: transparent;
    padding: 10px 10px 15px;
    height: 50px;
    border-bottom: 1px solid #cdcdcd;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
}

.ls-widget .widget-title h4 {
  position: relative;
  font-size: 20px;
  line-height: 30px;
  color: #1b2032;
  font-weight: 500;
  margin-right: 30px;
  padding: 7px 0;
}

.ls-widget .widget-title h4 .icon {
  position: absolute;
  left: 0;
  top: 0px;
  line-height: 30px;
  color: #9fa9b8;
}

.ls-widget .widget-title .chosen-outer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.widget-title .chosen-single {
  position: relative;
  height: 45px;
  padding: 10px 20px;
  font-size: 14px;
  color: #696969;
  line-height: 25px;
  background: #F0F5F7;
}

.widget-title .chosen-container {
  margin-left: 20px;
}
/* Candidate block three */

.candidate-block-three {
  position: relative;
  padding: 0 15px;
  margin-bottom: 30px;
}

.candidate-block-three .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  border-radius: 8px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.candidate-block-three .inner-box:hover {
  -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}

.candidate-block-three .inner-box .content {
  position: relative;
  padding-left: 110px;
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.candidate-block-three .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 14px;
}

.candidate-block-three .image img {
  width: 100%;
  width: 90px;
  height: 90px;
  object-fit:cover;
}

.candidate-block-three .name {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  color: #202124;
  margin-bottom: 5px;
}

.candidate-block-three .name a {
  color: #202124;
}

.candidate-block-three .candidate-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.candidate-block-three .candidate-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}

.candidate-block-three .candidate-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}

.candidate-block-three .candidate-info li a {
  color: #696969;
}

.candidate-block-three .candidate-info li.designation {
  display: block;
  font-size: 14px;
  color: #9777fa;
  line-height: 19px;
  padding-left: 0;
}

.candidate-block-three .post-tags {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.candidate-block-three .post-tags li {
  position: relative;
  background: #F0F5F7;
  border-radius: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  padding: 5px 20px;
  border-radius: 20px;
  margin-right: 10px;
}

.candidate-block-three .post-tags li a {
  color: #696969;
}

.candidate-block-three .post-tags li.colored {
  background-color: #34A853;
  color: #ffffff;
}

.candidate-block-three .bookmark-btn {
  position: relative;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ECEDF2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.candidate-block-three .inner-box:hover .bookmark-btn {
  opacity: 1;
  visibility: visible;
}

.candidate-block-three .option-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


.notification-list {
  position: relative;
}

.notification-list li {
  position: relative;
  padding: 5px 0;
    display: flex;
    align-items: center;
  font-size: 15px;
  line-height: 25px;
  color: #696969;
  font-weight: 400;
  min-height: 35px;
  margin-bottom: 25px;
}

.notification-list li > div {
    width: 80%;
    padding-left: 20px;
}
.notification-list li strong {
  font-weight: 500;
  color: #202124;
}

.notification-list li .icon {
  height: 35px;
  width: 35px;
  background: rgba(151, 119, 250, .15);
  color: #B51151;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  font-size: 16px;
}

.notification-list li .colored {
  color: #B51151;
}

.notification-list li.success .icon {
  background: rgba(52, 168, 83, .15);
  color: rgba(52, 168, 83, 1);
}

.notification-list li.success .colored {
  color: rgba(52, 168, 83, 1);
}


.job-block {
  position: relative;
  margin-bottom: 30px;
}

.job-block .inner-box {
  position: relative;
  padding: 32px 20px 22px 30px;
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block .inner-box:hover {
  -webkit-box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}

.job-block .content {
  position: relative;
  padding-left: 68px;
  min-height: 51px;
}

.job-block .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  top: -3px;
  margin-bottom: 3px;
}

.job-block h4 a {
  color: #202124;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block h4 a:hover {
  color: #9777fa;
}

.job-block .job-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.job-block .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}

.job-block .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}

.job-block .job-info li a {
  color: #696969;
}

.job-block .bookmark-btn {
  position: absolute;
  right: 0;
  top: -15px;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block .bookmark-btn:hover {
  background: #ECEDF2;
}

.job-block .job-other-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.job-other-info li {
  position: relative;
  font-size: 13px;
  line-height: 17px;
  margin-right: 15px;
  padding: 5px 20px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.job-other-info li.time {
  background: rgba(151, 119, 250, .15);
  color: #9777fa;
}

.job-other-info li.green,
.job-other-info li.privacy {
  background: rgba(52, 168, 83, .15);
  color: #34A853;
}

.job-other-info li.required {
  background: rgba(249, 171, 0, .15);
  color: #F9AB00;
}

.job-section .btn-box {
  position: relative;
  text-align: center;
  margin-top: 15px;
}


/*=== Style Two ===*/

.job-section.style-two {
  background-color: #ECEDF2;
}

.job-section.style-two .default-dots .owl-dots {
  margin-top: 20px;
}


/*** 

====================================================================
Job Section Two
====================================================================

***/

.job-section-two {
  position: relative;
  background-color: #F5F7FC;
  padding: 100px 0;
}

.job-block-two {
  position: relative;
  margin-bottom: 30px;
}

.job-block-two .inner-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px 20px 15px 30px;
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block-two .inner-box:hover {
  -webkit-box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
  box-shadow: 0px 7px 18px rgba(64, 79, 104, 0.05);
}

.job-block-two .content {
  position: relative;
  padding-left: 80px;
  min-height: 60px;
  padding-top: 2px;
}

.job-block-two .company-logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block-two .company-logo img {
  display: block;
  width: 100%;
}

.job-block-two h4 {
  font-size: 18px;
  color: #202124;
  font-weight: 500;
  line-height: 26px;
  ;
  margin-bottom: 8px;
}

.job-block-two h4 a {
  color: #202124;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block-two h4 a:hover {
  color: #9777fa;
}

.job-block-two .job-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.job-block-two .job-info li {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  color: #696969;
  font-weight: 400;
  padding-left: 25px;
  margin-bottom: 5px;
  margin-right: 20px;
}

.job-block-two .job-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  line-height: 22px;
  color: #696969;
}

.job-block-two .job-info li a {
  color: #696969;
}

.job-block-two .bookmark-btn {
  position: absolute;
  right: 35px;
  top: 15px;
  height: 30px;
  width: 30px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  cursor: pointer;
  background: #ffffff;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.job-block-two .bookmark-btn:hover {
  background: #ECEDF2;
}

.job-block-two .job-other-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 9px;
}

.job-section-two .btn-box {
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.ls-widget .widget-content {
  position: relative;
  padding: 0px 10px 10px;
}
.notification-list li {
  position: relative;
  padding: 5px 0;
  font-size: 15px;
  line-height: 25px;
  color: #696969;
  font-weight: 400;
  min-height: 35px;
    margin-bottom: 12px;
    border-top: 1px solid #9777fa7d;
    margin-top: 12px;
}

.dashboard .candidate-block-three .inner-box {
  flex-direction: column;
  align-items: flex-start;
}

.dashboard .candidate-block-three .option-box {
  margin-top: 20px;
  margin-left: 110px;
}

.option-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.option-list li {
  margin-left: 0;
  margin-right: 10px;
}

.option-list li button, .option-list li a {
  position: relative;
  display: block;
  border-radius: 8px;
  height: 30px;
  width: 30px;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: none;
}

.option-list li button:before, .option-list li a:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 100%;
  margin-bottom: 10px;
  background: #202124;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  content: attr(data-text);
  white-space: nowrap;
  padding: 5px 15px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.la.la-eye {
  font-family: 'Line Awesome Free';
  font-weight: 400;
}

.la-eye:before {
  content: "\f06e";
}
.option-list li a:after {
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #202124;
  content: "";
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}







.dashboard-option .dropdown-menu {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  top: 100% !important;
  left: auto !important;
  right: 0 !important;
  min-width: 300px;
  margin-top: 8px;
  background: #FFFFFF;
  border: 1px solid #ECEDF2;
  -webkit-box-shadow: 0px 6px 15px rgb(64 79 104 / 5%);
  box-shadow: 0px 6px 15px rgb(64 79 104 / 5%);
  border-radius: 8px;
  padding: 30px 30px 17px;
}


.job-block .company-logo img{width:100%;}
.copyright-text {
  position: relative;
  text-align: center;
  padding: 10px 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: #696969;
  background-color: #fff;
}




.dashboard-option .dropdown-menu {
  padding: 20px 20px 20px;
}


.dashboard-option .dropdown-menu:before {
  position: absolute;
  right: 30px;
  top: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ECEDF2;
  content: "";
}

.dashboard-option .dropdown-toggle {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.dashboard-option .dropdown-toggle::after {
  margin-left: 12px;
  content: "\f107";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  border: 0;
}

.dashboard-option .thumb {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

.dashboard-option .name {
  position: relative;
  display: block;
  color: #202124;
  font-size: 15px;
  line-height: 28px;
  margin-left: 20px;
}

.dashboard-option .dropdown-menu li a {
  padding: 5px 26px;}

  .dashboard-option .dropdown-menu li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 30px;
    line-height: 30px;
    font-weight: 400;
    font-size: 15px;
    color: #696969;
    text-align: left;
    text-transform: capitalize;
    border-radius: 8px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 10px; width: 100%;
}
.dashboard-option .dropdown-menu li:hover a i {
  color: #9777fa;
}
.dashboard-option .dropdown-menu li a i {
  position: relative;
  margin-right: 15px;
  font-size: 22px;
  color: #696969;
  text-align: center;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.la, .las {
  font-family: 'Line Awesome Free';
  font-weight: 900;
}


.dashboard-option ul.dropdown-menu {
  padding: 20px 20px 20px;
}


.dashboard-option .dropdown-menu li.active a, .dashboard-option .dropdown-menu li:hover a {
  color: #9777fa; width: 100%;
  background: rgba(151, 119, 250, .1);
}


.services_bgcolor .btn {
  border-radius: 1.375rem;
  padding: 8px 25px;
}

.job-search-form .form-group .theme-btn {
  min-width: auto; height: auto!important;
}

.btn-style-one {
  position: relative;
  text-align: center;
  white-space: nowrap;
  color: #ffffff;
  background-color: #9777fa;
  font-size: 11px;
  line-height: 20px;
  border-radius: 8px;
  font-weight: 400;
  margin-top: 2px;
  padding: 5px 15px 5px 15px;
 margin-left: 20px; border: 0px;;
}

.search_page .rounded h6{
  font-size: 1.2rem;
}

.search_page .rounded h6 a {
  font-size: 1rem;
}

.switchbox-outer label {
  font-size: .80rem !important;
  font-weight: normal;
}
.roundedImage{
  border-radius: 50px;
  height: 60px;
  width: 60px;
  object-fit: cover;
  border: 1px solid;
}
.roundedImage2{
  border-radius: 50px;
  height: 40px;
  width: 40px;
  object-fit: contain;
  border: 1px solid;
}
.mt-80{
  margin-top: 80px;
}
.blogImage{
  height: 212px;
  object-fit: cover;
}

/* Added by AKSHAY */
.homeCompanyfield .col-lg-6{
  width: 100% !important;
  padding: 0 !important;
}
.homeCompanyfield .input-group-text{
  position: absolute;
  z-index: 99;
  height: 100%;
}
.homeCompanyfield input{
  padding-left: 50px !important;
}
.custombutton2{
  margin: 25px 0px !important;
  width: auto;
}
.carousel-control-next, .carousel-control-prev{
  width: auto;
}
.mobilesidebar{
  display: none;
}
.job-block .bookmark-btn{
  justify-content: center;
  align-items: center;
  display: flex;
}

/*Datatable CSS Added by AKSHAY */
/* .table-outer {
    overflow-y: hidden;
    overflow-x: hidden;
} */
.dataTable thead{
    min-height: 70px !important;
    height: 70px !important;
    background: #F5F7FC !important;
    border-radius: 8px !important;
    color: #9777fa !important;
}
.dataTable tbody td {
    box-shadow: none !important;
}
table.dataTable.no-footer {
    border-bottom: 1px solid #ECEDF2 !important;
    border: 1px solid #ECEDF2 !important;
    width: 100% !important;
    margin-bottom:15px !important;
}
table.dataTable>thead>tr>th, table.dataTable>thead>tr>td{
    border-bottom: 1px solid #ECEDF2 !important;
}
div.dt-buttons {
    margin-left:20px !important;
    margin-bottom:15px!important;
}
.dt-button{
    background: rgba(151, 119, 250, .15) !important;
    color: #9777fa !important;
    position: relative;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-bottom: 5px !important;
    margin-right: 0px !important;
    border: none !important;
    border-radius: 5px !important;
}
#addManageTable > thead > tr > th:nth-child(1){
    display:none;
}
#addManageTable > tbody > tr > td:nth-child(1){
    display:none;
}
.form-control::file-selector-button{
    height: 125% !important;
}
.custombluebutton{
    background-color:#3498db;
}
.fixed-height-widget{
    height:250px;
    overflow-y:scroll;
}
.fixed-height-widget::-webkit-scrollbar {
  width: 7px;
}
.fixed-height-widget::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
  border-radius: 10px;
}
.fixed-height-widget::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}


body .bg-success-own{
    color: rgba(52, 168, 83, 1);
    background: rgba(52, 168, 83, .1);
}
body .bg-danger-own{
    color: rgba(217, 48, 37, 1);
    background: rgba(217, 48, 37, .1);
}
body .bg-warning-own{
    color: #D0003A;
    background: white;
    border: 1px solid #D0003A;
}
body .bg-primary-own{
    color: rgba(151, 119, 250, 1);
    background-color: rgba(151, 119, 250, .10);
}
body .bg-default-own{
    color: rgba(151, 119, 250, 1);
    background-color: rgba(151, 119, 250, .15);
}
body .bg-success-own:hover{
    color: rgba(255, 255, 255, 1) ;
    background: rgba(52, 168, 83, 1);
}
body .bg-danger-own:hover{
    color: rgba(255, 255, 255, 1) ;
    background: rgba(217, 48, 37, 1) ;
}
body .bg-warning-own:hover{
    color: white ;
    background: linear-gradient(90deg, #D0003A, #B51151, #AB2379);
  }
body .bg-primary-own:hover{
    color: rgba(255, 255, 255, 1) ;
    background-color: rgba(151, 119, 250, 1) ;
}
body .bg-default-own:hover{
    color: rgba(255, 255, 255, 1) ;
    background-color: rgba(151, 119, 250, 1);
}

/* body .blinkinggbutton.bg-primary-own{
    animation: button-blink-anim-primary 2s infinite ease-in-out;
}
body .blinkinggbutton.bg-warning-own{
    animation: button-blink-anim-warning 2s infinite ease-in-out;
}
body .blinkinggbutton.bg-danger-own{
    animation: button-blink-anim-danger 2s infinite ease-in-out;
}
body .blinkinggbutton.bg-success-own{
    animation: button-blink-anim-success 2s infinite ease-in-out;
} */
@keyframes button-blink-anim-primary{
  0%{
  }
  50%{
    transform:scale(1.3);
    background-color: rgba(151, 119, 250, 1);
    color:#fff;
  }
  100%{
    transform:scale(1);
  }
}

@keyframes button-blink-anim-warning{
  0%{
  }
  50%{
    transform:scale(1.3);
    background-color: rgba(249, 171, 0, 1);
    color:#000;
  }
  100%{
    transform:scale(1);
  }
}

@keyframes button-blink-anim-success{
  0%{
  }
  50%{
    transform:scale(1.3);
    background-color: rgba(52, 168, 83, 1);
    color:#fff;
  }
  100%{
    transform:scale(1);
  }
}

@keyframes button-blink-anim-danger{
  0%{
  }
  50%{
    transform:scale(1.3);
    background-color: rgba(217, 48, 37, 1);
    color:#fff;
  }
  100%{
    transform:scale(1);
  }
}
table.dataTable tbody th, table.dataTable tbody td{
    border-bottom: 2px solid #00000038;
}
input[list]::-webkit-calendar-picker-indicator,
input[list]::-webkit-list-button {
    opacity: 0 !important
}
.loaderscreen{
    display:none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0000004d;
    align-items: center;
    justify-content: center;
}
body > .skiptranslate{
    display:none;
}
div#goog-gt-tt {
    display: none !important;
}
.VIpgJd-yAWNEb-VIpgJd-fmcmS-sn54Q{
    background-color:transparent !important;
    box-shadow:none !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display:none !important;
}
.goog-te-gadget{
    visibility:hidden;
}
.goog-te-gadget > div{
    visibility:visible;
}
span.notificationdot {
    background: red;
    color: white;
    margin-left: 15px;
    text-align: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video{
    vertical-align: middle !important;
}
.form-control{
    height:auto !important;
}

.msg-body ul li.repaly p{
	background: #04c90442 !important;
    color: black !important;
}
.msg-body ul li.repaly:before{
    border-color: transparent transparent #04c90442 transparent !important;
}
.send-box button{
  
    background: linear-gradient(90deg, #D0003A, #B51151, #AB2379) !important;
    
}
.chat-list a:nth-child(even) {
    background: #9777fa1c;
}
.chat-list a {
    padding-left: 10px;
}
.btn-primary{
  background: linear-gradient(90deg, #D0003A, #B51151, #AB2379)!important;
}
.btn-secondary{
    background-color: #fff !important;
    border-color: #9777fa !important;
    color: #9777fa !important;
}
/* Added by AKSHAY */
@media only screen and (max-width: 1225px) {
  .slider_div {
    margin-top: 3rem;
  }
  
}
@media only screen and (max-width: 1000px) {
    .customapplybutton {
        position: relative;
        top: 2px !important;
        width:85px;
    }
}
/* Added by AKSHAY */
@media only screen and (max-width: 1025px) {
  .services_row {
      min-width: auto;
  }
  .services .screen-box {
      padding: 0px 0px 0px 10px;
      min-width: 160px !important;
  }
  .arrow-right_icon{
    display: none;
  }
  .logo img {
    width: 150px;
    height: 40px;
    margin-top: 15px !important;
  }
  .blog .news_item_title h2 a {
      font-size: 12px;
  }
  .blog_search_submit.text-left{
    text-align: right !important;
  }
  .title_serach{
    text-align: center;
  }
  section.services.contact_pageheader > div > div > div.col-sm-12.col-lg-6.d-flex.align-items-stretch.mb-5.mb-lg-0{
    justify-content: center;
  }
  .user-sidebar {
      transform: translateX(-100%);
  }
  .dashboard {
      padding-left: 0px;
  }
  .mobilesidebar{
    display: block;
  }
  .navbar-mobile > div {
    display: none;
  }
  .dashboard-option .dropdown-toggle::after{
    display:none;
  }
  .dashboard-option .dropdown-menu{
    min-width: auto;
  }
  .navbar .dropdown ul li {
      display: block;
      float: left;
      text-align: center;
      width: 100%;
  }
}

/* Added by AKSHAY */
@media only screen and (max-width: 1200px) {
    .section-title h2 {
        font-size: 20px;
    }
    
}
/* Added by AKSHAY */
@media only screen and (max-width: 900px) {
  .section-title h2 {
    font-size: 20px;
  }
  .nav-tabs .nav-link {
      font-size: 12px!important;
      padding: 5px 10px;
  }
  #clients .home_btton{
    font-size: 10px;
    padding: 3px 6px;
    min-width: auto;
  }
  .dashboard .dashboard-outer {
      position: relative;
      padding: 0px 15px 0;
  }
}

/* Added by AKSHAY */
@media only screen and (max-width: 450px) {
  .section-title h2 {
    font-size: 18px;
  }
  .job-search-form .form-group .icon{
    font-size: 12px;
  }
  .job-search-form .form-group input{
    padding-top: 2px;
    padding-bottom: 2px;
    height: 50px;
  }
  .job-search-form button{
    font-size: 10px;
    margin-bottom: 0px;
  }
  .carousel-item h5 {
      font-size: 17px;
  }
  .carousel-item p {
      font-size: 12px;
  }
  .form-inline .form-control{
    width: 100%;
  }
  /* .logo img {
      margin-top: 0px !important;
  } */
  @supports (-webkit-touch-callout: none) {
    .job-search-form .form-group select {
      text-indent:38px;
    }
  }
  
}
/* Added by AKSHAY */
@media only screen and (max-width: 600px) {
  /* added by sujan */
    .dashboard-subtitle{
      white-space: normal!important;
    }
    .job-details-button{
      margin-top: 10px!important;
      margin-left: -26px!important;
    }
    .google-btn{
        display:none !important;
    }
    #post_list .sociaicon a span{
        font-size:12px;
    }
    .searchcompany{
            padding-top: 6px;
        display: block;
    }
    .leftdiv{
        min-height: 40vh !important;
    }
    #header .nav-link{
        color: #222222 !important;
    }
    
    #myvideo{
        width:100% !important; 
    }
  #login-modal{
    padding: 30px 15px 20px;
  }
  .login-form .form-group .theme-btn{
    margin-left:0px;
  }
  .candidate-block-three .inner-box{
    padding: 10px 0px;
  }
  .mobopadzero{
    padding:0px;
  }
  .ls-widget .widget-content{
    padding: 0px 10px 10px;
  }
  .job-block .job-info li {
      font-size: 12px;
      line-height: 16px;
  }
  .candidate-block-three .image {
    width: 70px;
    height: 70px;
  }
  .candidate-block-three .inner-box .content {
    padding-left: 85px;
  }
  .dashboard .candidate-block-three .option-box {
      margin-left: 90px;
  }
  .login-section .image-layer{
    height: 200px;
    background-position: bottom;
    width: 100%;
  }
  .job-block-five .inner-box {
    padding: 0;
    padding-right: 0;
  }
  .services .title_serach{
    padding-top: 1rem;
  }

  .login-section .outer-box{
    margin-left: 0;
    margin-top: 215px;
    width: 100%;
  }
  .home_margin .justify-content-end{
    justify-content:center !important;
  }
  .carousel-inner{
    padding: 0px 15px;;
  }
  .nav-tabs .nav-link {
      font-size: 10px !important;
  }
  .services .findjobmargin_top{
    margin-top: 60px;
  }
  .job-search-form .form-group{
    text-align: center !important;
  }
  .job-search-form .form-group .theme-btn{
    float: none !important;
  }
  .ls-switcher .sort-by{
    margin-bottom: 0px;
  }
  .ls-switcher .showing-result{
    margin-bottom: 0px;
  }
  #post_list{
    max-width: 95%;
    margin: 0 auto;
  }
  .hrart_icon {
    text-align: right;
    right: 0;
    width:auto;
  }
  .related-jobs .sociaicon a {
    font-size: 12px !important;
  }
  .related-jobs .sociaicon a span {
    font-size: 12px !important;
  }
  .sociaicon{
    display: flex;
    flex-wrap: wrap;
  }
  .search_page .rounded p {
    font-size: 1rem;
  }
  .search_page .rounded p a{
    color: black;
  }
  .search_page .rounded .sociaicon a {
    font-size: 1rem;
  }
  .search_page .rounded h6 a{
    font-size: 1rem;
  }
  .customButtonforMobile{
    min-width: 150px;
    padding: 3px 6px;
  }
  .roundedImage{
    height: 75px;
    width: 75px !important;
  }
  .default-table tr td{
    padding: 10px 10px;
  }
  td .checkbox{
    text-align: center;
  }
  .table-outer::-webkit-scrollbar {
      height: 5px;
  }
  .table-outer::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
      border-radius: 10px;
  }
  .table-outer::-webkit-scrollbar-thumb {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
  }
  .navbar a{
      justify-content: center;
  }
  .navbar a:focus{
      justify-content: center;
  }
  .job-search-form .form-group .icon.bi-envelope-open{
    margin-top: -27px;
    line-height: normal;
  }
  
  .dataTables_wrapper .dataTables_length {
    float:left !important;
  }
  .dataTables_wrapper .dataTables_filter{
      float:right !important;
      margin-top: 0px !important;
  }
  .dataTables_wrapper .dataTables_info {
    float:left !important;
    font-size:12px;
  } 
  .dataTables_wrapper .dataTables_paginate{
      float:right !important;
      margin-top: 0px !important;
  }
  .dataTables_wrapper .dataTables_length label, .dataTables_wrapper .dataTables_filter label{
      font-size:12px;
  } 
  .dataTables_wrapper .dataTables_filter input{
      width:100px !important;
  }
  .dataTables_wrapper .dataTables_paginate .paginate_button{
    padding: 5px 6px !important;
    font-size: 12px !important; 
  }
  table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before{
    content: "Hide" !important;
    background: #ff000085;
    color: black !important;
    display: flex !important;
    justify-content: center;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 0 !important;
    margin-left: 0px;
    line-height: 16px;
	padding: 4px;
  }
  /* table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before, table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before{
    content: "View" !important;
    background: #00800069;
    color: black !important;
    display: flex !important;
    justify-content: center;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    margin-right: 0 !important;
    margin-left: 0px;
	padding: 4px;
  } */
  div.dt-buttons {
    display: none!important;
  }
  table.dataTable>thead>tr>th, table.dataTable>thead>tr>td{
       font-size: 13px !important; 
  }
  table.dataTable>tbody>tr.child ul.dtr-details{
      width:100% !important;
  }
  table.dataTable .option-list{
      flex-direction: column!important;
  }
  table.dataTable .option-list li {
        margin: 5px 0px!important;
    }
    table.dataTable>tbody>tr.child span.dtr-title{
        width: 45% !important;
    }
    table.dataTable>tbody>tr.child ul.dtr-details>li{
        display: flex!important;
        justify-content: flex-start!important;
        align-items: center!important;
    }
    #addManageTable > tbody > tr.child  td{
        border-bottom: 1px solid #cfc9c9;
        border-left: 1px solid #cfc9c9;
        border-right: 1px solid #cfc9c9;
    }
    .aplicants-upper-bar .aplicantion-status{
        display:none !important;
    }
    .font-sm-mobile-h3{
        font-size:15px;
    }
    .font-sm-mobile-h4{
        font-size:13px;
    }
    #addManageTable > thead > tr > th:nth-child(1){
        display:table-cell;
    }
    #addManageTable > tbody > tr > td:nth-child(1){
        display:table-cell;
    }
    .row.employeer > div{ 
    	max-width:50%
    }
    .row.employeer .ui-item{ 
    	padding:20px;
    	height: 110px;
    }
    .row.employeer .ui-item .icon{
    	height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 25px;
    }
    .row.employeer .ui-item p {
        font-size: 16px!important;
    }
    .row.employeer .ui-item .right {
        text-align: center;
    }
    .row.employeer .ui-item h4 {
        font-size: 26px;
    }
    .dashboard .upper-title-box {
        margin-bottom: 25px;
    }
    .services .icon{
        display:none;
    }
    #clients .home_btton{
        font-size: 12px;
        width: 50%;
    }
    .customapplybutton{
         width: 50%;
    }
    .customapplybutton{
        width:85px !important;
        min-width:85px !important;
        position:absolute!important;
        right:-30px!important;
        top:50px!important;
    }
    .search_page img{
        width:40px !important;
        height:40px !important;
    }
    .find-leftinner_div{
        width: 20% !important;
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .find-leftinner_div img{
        height: 40px;
        width: 40px;
    }
    .job-other-info.ml-4{
        margin-left: 4px !important;
        height: fit-content !important;
        width: 25%;
    }
    .job-other-info li.time {
        font-size: 11px;
        padding: 5px 5px;
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-top: 3px;
    }
    table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before{
        line-height: 17px !important;
    }
    table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before{
        animation: plusblink 2s infinite;
    }
}

@keyframes plusblink{
    0%{
    }
    50%{
        transform:scale(1.2);
    }
    100%{
        transform:scale(1);
    }
}
/* Added by AKSHAY */
@media only screen and (max-width: 600px) {
    /* .ls-widget .widget-title{
        height:auto !important;
    } */
    .ls-widget .widget-title h4{
        margin-right:0px;
        margin-bottom: 0px;
        font-size: 20px;
    }
    .job-block-five h4 a{
      font-size: 20px;
    }
}