/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color: #444444;
}
a {
  text-decoration: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0859f7;
  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.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #eaeffa;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #0859f7;
  border-top-color: #eaeffa;
  border-bottom-color: #eaeffa;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 25px 0;
  box-shadow: 0px 0px 14px 0px #1967d259;
}
#header.header-scrolled, #header.header-inner-pages {
  background: #eaeffa;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo img {
  max-height: 40px;
}
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 48px;
  padding: 7px 0;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 114px;
  height: 38px;
  text-align: center;
  margin-left: 25px;
}
.get-started-btn:hover {
  background: none;
  border: 2px solid #0859f7;
  color: #0859f7;
}
.search-btn {
  margin-right: 25px;
  margin-left: 25px;
}
.search-btn i {
  color: #0859f7;
  font-size: 20px;
}
.CateBtn {
  color: #fff;
  border-radius: 48px;
  padding: 7px 0;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 145px;
  height: 38px;
  text-align: center;
  margin-left: 25px;
  background-image: url(../img/icon1.svg);
  background-repeat: no-repeat;
  background-position: 16px 9px;
  background-size: 15px;
  padding-left: 19px;
}
.CateBtn:hover {
  color: #fff;
}
.lastMenu {
  display: none;
}
@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 7px;
    margin-left: 11px;
  }
  .display-mobile-none {
    display: none;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #202124;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.navbar a::after {
  background-image: url(../img/line.svg);
  background-repeat: no-repeat;
  background-position: bottom right;
  position: absolute;
  width: 100%;
  height: 4px;
  content: "";
  bottom: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0;
}
.navbar a:hover::after, .navbar .active::after, .navbar .active:focus::after, .navbar li:hover > a::after {
  color: initial;
  opacity: 1;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: initial;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  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;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #0859f7;
}
.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: #0859f7;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width:1024px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #202124;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #fff;
  background-color: #0859f7;
}
.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;
  color: #151515;
}
.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 {
  background-color: #ffc451;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Inner Header Start
--------------------------------------------------------------*/
#InnerHeader {
  /*background: linear-gradient(180deg, #EAEFFA, #E8EEFA);
  box-shadow: 0px 0px 14px 0px rgba(25, 103, 210, 0.35);*/
  height: 70px;
  padding-bottom: 11px;
  padding-top: 11px;
  z-index: 1;
}
.HeaderOverlay {
  opacity: 0.5;
  box-shadow: 0px 0px 14px 0px rgba(25, 103, 210, 0.35);
  background: linear-gradient(180deg, #EAEFFA, #E8EEFA);
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 92%;
  z-index: 0;
}
#InnerHeader .container {
	align-items: center;
	display: flex;
	justify-content: space-between;
	max-width: 1440px;
  z-index: 1;
  position: relative;
}
.leftHeader {
	align-items: center;
    display: flex;
	margin: 4px 0;
}
.leftHeader .logo {
    display: flex;
	margin-right: 29px;
	width: 113.99px;
}
.leftHeader .logo .logoImg {
	height: auto;
	width: 100%;
}
.leftHeader .categories .search {
	background: url(../img/inner-search-icon.svg) no-repeat 15px 9px #FFFFFF;
	border: 1px solid #DEDEDE;
	border-radius: 52px;
    margin: 0;
    padding: 9px 0 9px 43px;
    position: relative;
    width: 279px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.286;
    text-transform: capitalize;
    color: #404041;
    height: 38px;
}
#InnerHeader .rightHeader .mobileSearch { display: none; }
#InnerHeader .rightHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
    position: relative;
}
#InnerHeader .rightHeader .wg-drop-down {
    position: absolute;
    right: 0;
    top: 60px;
    /*height: 225px;*/
    background-color: #fff;
    border: 1px solid #eaeaea;
    width: 300px;
    padding: 20px 25px;
    border-top: none;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(234,234,234,1);
    -moz-box-shadow: 0px 8px 15px 0px rgba(234,234,234,1);
    box-shadow: 0px 8px 15px 0px rgba(234,234,234,1);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
    border-radius: 13px;
}
#InnerHeader .rightHeader .wg-drop-down ul {
    padding: 0 0;
    margin: 0 0;
    list-style: none;
}
#InnerHeader .rightHeader .wg-drop-down ul li {
    margin-bottom: 4px;
    /*border-bottom: 1px solid #eaeaea;*/
    /*padding-bottom: 4px;*/
}
#InnerHeader .rightHeader .wg-drop-down ul li.wg-sub-header {font-size:16px;font-weight: 600;}
#InnerHeader .rightHeader .wg-drop-down ul li:last-child {border-bottom:none;}
#InnerHeader .rightHeader .wg-drop-down ul li i {padding-right: 8px;}
#InnerHeader .rightHeader .wg-drop-down ul li a {
    color: #666666;
    font-size: 13px;
}
.innerNav {
	align-items: center;
	list-style: none;
	display: flex;
	margin-bottom: 0;
}
.innerNav li {
	margin: 0 33px;
}
.innerNav li:last-child {
	margin-right: 0;
}
.innerNav li a {
	align-items: center;
	border-bottom: 2px solid transparent;
	color: #202124;
	display: inline-flex;
	font-size: 12px;
	font-weight: 500;
	flex-direction: column;
	justify-content: center;
  padding: 0;
}
.innerNav .active a {
	border-bottom: 2px solid #0859F7;
}
.innerNav li img {
	margin-bottom: 4px;
}
#InnerHeader .rightHeader .bvName {
	align-items: center;
	background-color: #0859F7;
	border-radius: 100%;
	color: #fff;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	height: 40px;
	justify-content: center;
	text-transform: uppercase;
	width: 40px;
  margin-left: 33px;
  overflow: hidden;
}
/*~~~ Inner Header End ~~~*/


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-bg.png") top center;
  background-size: 105%;
  position: relative;
  background-repeat: no-repeat;
  overflow: visible;
}
/* #hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */
#hero .container-fluid {
  position: relative;
  padding-top: 74px;
}
.bannerLft {
  width: 50%;
  margin-right: -100px;
  margin-left: 105px;
  position: relative;
  z-index: 9;
}
.bannerRgt {
  width: 50%;
  text-align: right;
}
.bannerRgt img {
  width: 100%;
  height: auto;
}
#hero .bannerLft h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 48px;
  color: #202124;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
}
#hero h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 52px;
  color: #0859f7;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#hero p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #202124;
  font-family: "Montserrat", sans-serif;
  padding-right: 240px;
  margin-bottom: 55px;
}
.inputGrp {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 43px;
}
.inputGrp .form-control {
  width: 50%;
  background-image: url(../img/icon2.svg);
  background-repeat: no-repeat;
  background-position: 15px 19px;
  height: 57px;
  border-radius: 43px 0 0 43px;
  box-shadow: none;
  border: none;
  padding-left: 49px;
}
.inputGrp .select-form {
  width: 40%;
  height: 57px;
  border-radius: 0;
  box-shadow: none;
  border: none;
  outline: none;
  position: relative;
  padding-left: 20px;
  background-image: url(../img/line2.png);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 1px;
}
.inputGrp .btn {
  color: #fff;
  border-radius: 48px;
  padding: 7px 0;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 18px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  width: 114px;
  height: 50px;
  text-align: center;
  margin-left: 25px;
}
.inputGrp .btn:hover {
  background: none;
  border: 2px solid #0859f7;
  color: #0859f7;
}
#hero::after {
  content: "";
  background-image: url(../img/bg-icon.svg);
  width: 195px;
  height: 127px;
  background-size: 100%;
  position: absolute;
  bottom: -42px;
  left: 113px;
  background-repeat: no-repeat;
  z-index: 99;
}
#hero::before {
  content: "";
  background-image: url(../img/bg-icon2.svg);
  width: 59px;
  height: 250px;
  background-size: 100%;
  position: absolute;
  bottom: -120px;
  left: 41%;
  background-repeat: no-repeat;
  z-index: 99;
}
/*--------------------------------------------------------------
# Job Listing  Banner Sections
--------------------------------------------------------------*/
.jobListingBanner {
	align-items: flex-end;
	display: flex;
	background: url(../img/job-interview-banner.jpeg) no-repeat 0 0;
	background-size: cover;
	height: 450px;
	justify-content: center;
	margin-top: 70px;
	padding-bottom: 61px;
}
.jobListingBanner .container {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 1096px;
}
.jobListingBanner h3 {
	color: #0859F7;
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 30px;
}
.jobListingBanner .bannerSearchList {
	background-color: #fff;
	border-radius: 70px;
	display: flex;
	height: 70px;
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
	width: 100%;
}
.jobListingBanner .bannerSearchList li {
	border-right: 1px solid #DEDEDE;
	padding: 15px 30px;
}
.jobListingBanner .bannerSearchList li:last-child {
	border-right: none;
}
.jobListingBanner .bannerSearchList li .form-control {
	background-color: #fff;
	border: none;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	height: 40px;
	padding: 0;
	width: 225px;
}
.jobListingBanner .bannerSearchList li .input1 {
	background: url(../img/search-icon.svg) no-repeat 0 center;
	padding-left: 35px;
}
.jobListingBanner .bannerSearchList li .form-control:focus {
	box-shadow: none;
}
.jobListingBanner .bannerSearchList li .select-form {
	background-color: #fff;
	border: none;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	height: 40px;
	padding: 0 20px 0 0;
	width: 225px;
}
.jobListingBanner .bannerSearchList li .selectCity {
	background: url(../img/select-location-icon.svg) no-repeat 0 center;
	padding-left: 35px;
}
.jobListingBanner .bannerSearchList li .selectCategories {
	background: url(../img/category-select-icon.svg) no-repeat 0 center;
	padding-left: 35px;
}
.jobListingBanner .bannerSearchList li .select-form:focus {
	box-shadow: none;
	outline: none;
}
.jobListingBanner .bannerSearchList li .clearBtn {
	background: none;
	border: none;
	color: #191919;
	cursor: pointer;
    font-size: 14px;
	font-weight: 400;
	height: 40px;
	line-height: 40px;
	padding: 0;
}
.jobListingBanner .bannerSearchList li .searchBtn {
	align-items: center;
	background: #0859F7;
	border: none;
    border-radius: 70px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	height: 40px;
	justify-content: center;
	line-height: 40px;
    margin: 0 0 0 15px;
    padding: 0;
	text-align: center;
    width: 95px;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-title {
  padding-bottom: 40px;
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}
.section-title span {
  width: 95%;
}
.section-title h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  color: #0859f7;
  margin: 0 0 15px 0;
  padding-bottom: 17px;
}
.section-title h3::after {
  content: "";
  height: 2px;
  background-color: #0859f7;
  width: 59px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-title h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #202124;
}
.section-title .get-started-btn {
  color: #fff;
  border-radius: 48px;
  padding: 7px 0;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 145px;
  height: 38px;
  text-align: center;
  margin-left: 0px;
}
.section-title .get-started-btn:hover {
  background: none;
  border: 2px solid #0859f7;
  color: #0859f7;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.png") top center;
  background-size: 100%;
  position: relative;
  background-repeat: no-repeat;
  padding: 70px 0 0;
  overflow: visible;
}
.about .Aboutcontent {}
.about .Aboutcontent h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  color: #0859f7;
  margin: 0 0 15px 0;
  padding-bottom: 17px;
}
.about .Aboutcontent h3::after {
  content: "";
  height: 2px;
  background-color: #0859f7;
  width: 59px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.about .Aboutcontent h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #202124;
}
.about .Aboutcontent p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  padding-bottom: 50px;
}
.aboutInfo {
  width: 100%;
}
.aboutInfo ul {
  width: 100%;
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
}
.aboutInfo ul li {
  width: 50%;
}
.aboutInfo ul li .aboutInfoBox {
  padding-top: 30px;
}
.aboutInfo ul li .aboutInfoBox h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 22px;
  color: #000;
  margin-bottom: 15px;
}
.aboutInfo ul li .aboutInfoBox h4 i {
  color: #0859f7;
  margin-right: 5px;
}
.aboutInfo ul li .aboutInfoBox p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #000;
  padding: 0 0 0 35px;
}
.aboutInfo .get-started-btn {
  margin-top: 25px;
  width: 170px;
  height: 50px;
  padding: 14px 0;
  font-weight: 700;
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 50px;
}
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}
.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}
.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}
/*--------------------------------------------------------------
# Job
--------------------------------------------------------------*/
.job-slider {
  padding-top: 0px;
  margin-bottom: -58px;
  position: relative;
  z-index: 99;
}
.job {
  padding: 50px 0 0;
  margin-bottom: -59px;
}
.job-item {
  background: #0859f7;
  transition: 0.3s;
  border-radius: 8px;
  text-align: center;
  padding: 25px 0;
}
.job-item img {
  margin-bottom: 15px;
}
.job-item h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  color: #fff;
  line-height: 22px;
}
.job-item p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  margin: 0;
}
.swiper-button-next {
  background: url(../img/nxt.svg);
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  right: -7px;
}
.swiper-button-prev {
  background: url(../img/prv.svg);
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  left: -7px;
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}
.apply {
  background-image: url(../img/apply-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 120px 0 70px;
}
.apply .section-title {
  text-align: center;
}
.apply .section-title span {
  text-align: center;
  width: 100%;
}
.apply .section-title h3::after {
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
}
.apply .section-title h3 {
  color: #fff;
}
.apply .section-title h2 {
  color: #fff;
}
.applyBox {
  text-align: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 3px solid #0859f7;
  border-radius: 8px;
  margin-bottom: 30px;
}
.applyBox .applyBoxInner {
  padding: 20px 35px 40px;
}
.applyBox .applyBoxInner h3 {
  font-family: "Montserrat", sans-serif;
  text-shadow: 0px 4px 4px #00000040;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 0 15px 0;
}
.dateTime {}
.dateTime span {
  width: 49%;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  background-repeat: no-repeat;
  padding-left: 28px;
  margin-bottom: 15px;
}
.dateTime span.time {
  background-image: url(../img/timeIcon.svg);
}
.dateTime span.hr {
  background-image: url(../img/clockIcon.svg);
}
.dateTime span.loc {
  background-image: url(../img/locIcon.svg);
}
.tag {
  padding-top: 15px;
}
.tag a {
  color: #fff;
  border-radius: 48px;
  padding: 4px 15px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 13px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: auto;
  height: auto;
  text-align: center;
  margin-right: 2px;
  margin-bottom: 4px;
}
.applyBoxBottom {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.applyBoxBottomLft {}
.applyBoxBottomLft h5 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0;
}
.applyBoxBottomRgt .get-started-btn {
  color: #fff;
  border-radius: 48px;
  padding: 7px 0;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 120px;
  height: 38px;
  text-align: center;
  margin-left: 0px;
}
.applyBoxBottomRgt .get-started-btn:hover {
  background: none;
  border: 2px solid #fff;
  color: #fff;
}
.More .get-started-btn {
  width: 170px;
  height: 50px;
  padding: 14px 0;
  font-weight: 700;
  margin: 0 auto;
  margin-top: 25px;
}
.More .get-started-btn:hover {
  background: none;
  border: 2px solid #fff;
  color: #fff;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background-color: #f5f6f8;
  padding: 70px 0;
}
.services .section-title {
  text-align: center;
}
.services .section-title h3::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.services .icon-box {
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  transition: 0.3s;
  position: relative;
  z-index: 9;
}
.services .icon-box h4 {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 15px;
  font-size: 20px;
  color: #000;
}
.services .icon-box p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  margin-bottom: 0;
}
.workLine {
  position: relative;
}
.workLine::before {
  content: "";
  width: 77%;
  height: 1px;
  background-color: #0859f7;
  top: 55px;
  position: absolute;
  left: 12%;
  margin: 0 auto;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background-color: #0859f7;
}
.count-box {
  display: flex;
}
.countRgt {
  padding: 0 0 0 25px;
}
.countNum {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 45px;
  color: #fff;
}
.countRgt p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }
  .counts .image img {
    max-width: 80%;
  }
}
@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 410px 0 40px 100px;
  background: url(../img/testimonials-bg.jpg) no-repeat;
  background-position: top center;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  background: linear-gradient(180deg, rgba(12, 25, 42, 0) 41%, #000000 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.testimonials-slider {
  margin-right: -150px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 3px solid #0859f7;
  border-radius: 8px;
  padding: 20px 35px 40px;
}
/* .testimonials .testimonial-item {
  text-align: left;
  color: #fff;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 20px 35px 40px;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-image-source: linear-gradient(
    101.72deg,
    rgba(255, 231, 231, 0.46) 0%,
    rgba(255, 255, 255, 0.47) 6.23%,
    rgba(0, 0, 0, 0) 20.42%,
    rgba(255, 255, 255, 0.3) 49.28%,
    #1965cd 69.29%,
    #1965cd 85.25%
  );
} */
.testimonials .testimonial-item p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
  color: #fff;
  margin: 0 0 40px 0;
  background: url("../img/quotes_icon2.svg") no-repeat;
  background-size: 120px;
  background-position: top right;
  padding: 14px 0 0 0;
}
.testimonials .testimonial-item h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin: 0 0 0 0;
}
.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
  text-align: left;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0.5;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active::after {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  position: absolute;
  content: "";
  border-radius: 100%;
  top: -4px;
  left: -4px;
  right: 0;
}
.testiLft {
  position: relative;
  z-index: 9;
  padding-right: 50px;
}
.testiLft h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
  margin: 20px 0 8px 0;
  padding-bottom: 17px;
}
.testiLft h2::after {
  content: "";
  height: 2px;
  background-color: #fff;
  width: 59px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.testiLft h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #fff;
}
.testiLft p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #fff;
}
@media (min-width: 1024px) {}
@media (min-width: 992px) {}
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
  background-image: url(../img/blog-bg.png);
  background-color: #fff;
  background-position: 97px -90px;
  background-repeat: no-repeat;
  background-size: 100%;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: #fff;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .member-img:before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.85%, #000000 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.team .member .member-info {
  padding: 25px;
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
  opacity: 1;
  transition: ease-in-out 0.3s;
  text-align: left;
}
.team .member .member-info h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 15px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  background-image: url(../img/calicon.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  padding-left: 28px;
}
.team .member .member-info p {
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 18px;
  color: #fff;
  list-style: 28px;
  font-family: "Montserrat", sans-serif;
}
.blogRgt {}
.blogRgt h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #202124;
}
.blogRgt p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #000;
  padding-right: 100px;
}
.blogLft {
  position: relative;
  z-index: 9;
}
.blogRgt {
  position: relative;
  z-index: 9;
  padding-bottom: 50px;
  padding-right: 40px;
}
.blogRgt .get-started-btn {
  color: #fff;
  border-radius: 48px;
  padding: 14px 0;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #0859f7;
  background: #0859f7;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  width: 200px;
  height: 50px;
  text-align: center;
  margin-left: 0px;
  margin-top: 15px;
}
.blogRgt .get-started-btn:hover {
  background: none;
  border: 2px solid #0859f7;
  color: #0859f7;
}
.blogBottom {
  position: relative;
  display: flex;
  align-items: end;
  padding-top: 50px;
}
.blogBottom::after {
  content: "";
  background: #f3f7fe;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  width: 100%;
  background: url(../img/cont-bg.jpg) top center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  padding: 250px 0 70px;
}
.contact:before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40.85%, #000000 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.contactLft {
  z-index: 9;
  position: relative;
}
.contactLft h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  color: #fff;
  margin: 0 0 8px 0;
  padding-bottom: 17px;
}
.contactLft h2::after {
  content: "";
  height: 2px;
  background-color: #fff;
  width: 59px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.contactLft h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 45px;
  letter-spacing: 2px;
  margin-bottom: 0px;
  color: #fff;
}
.contactRgt form {
  margin-top: 47px;
  background: none;
  padding: 0;
  position: relative;
  border-radius: 45px;
  border: 2px solid #0859f7;
  width: 100%;
  height: 48px;
}
.contactRgt form input[type="email"] {
  border: 0;
  padding: 0 25px;
  width: calc(100% - 150px);
  height: 44px;
  background: none;
  outline: none;
  box-shadow: none;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  padding-right: 45px;
}
.contactRgt form input[type="email"]::-ms-input-placeholder {
  color: #fff;
}
.contactRgt form input[type="email"]::placeholder {
  color: #fff;
}
.contactRgt .submitBtn {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 17px;
  padding: 0px 35px;
  background: #0859f7;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  border-radius: 45px;
  height: 45px;
}
.contactRgt .submitBtn i {
  font-size: 15px;
  margin-left: 15px;
}
.contactRgt .submitBtn:hover {
  background: #0859f7;
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Global Checkbox Style
--------------------------------------------------------------*/
.form-check {
  align-items: center;
  display: flex;
  padding-left: 32px;
}
.form-check .form-check-input {
  border-radius: 0;
  border: 1px solid #000;
  height: 22px;
  margin-left: -32px;
  margin-right: 10px;
  margin-top: 0;
  width: 22px;
}
.form-check .form-check-input:checked[type=checkbox] {
  background: url(../img/tick-img.svg) no-repeat center;
}
.form-check .form-check-input:focus {
  box-shadow: none;
}
.form-check label {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.form-check label a {
  color: #0859F7;
  cursor: pointer;
  text-decoration: underline;
}
/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
.RegisterSec {
  padding-left: 15px;
  padding-right: 15px;
}
.RegisterSec .RegtopImg {
  display: none;
}
.LeftRegSec {
  background: url(../img/register-bg.svg) no-repeat 0 bottom;
  background-size: cover;
  min-height: 1024px;
}
.RightRegSec {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 30px;
  position: relative;
  text-align: center;
}
.RightRegSec .centerRegContent {
  max-width: 406px;
  width: 100%;
}
.RightRegSec h3 {
  color: #202124;
  font-family: "Outfit", sans-serif;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 20px;
}
.RightRegSec p {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.RightRegSec .copyText {
  bottom: 10px;
  color: #000;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 400;
  left: 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%
}
.RightRegSec .SocialLogin {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
  width: 100%;
}
.RightRegSec .SocialLogin li {
  margin-bottom: 10px;
}
.RightRegSec .SocialLogin li a {
  border: 1px solid #DEDEDE;
  border-radius: 52px;
  cursor: pointer;
  display: block;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 48px;
}
.RightRegSec .SocialLogin li a img {
  display: inline-block;
  margin-right: 15px;
  position: relative;
  top: -2px;
}
.RightRegSec .RegForm {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 20px;
  width: 100%;
}
.RightRegSec .RegForm li {
  margin-bottom: 27px;
  text-align: left;
}
.RightRegSec .RegForm li .LoginSpan {
  color: #000;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.RightRegSec .RegForm li .LoginSpan a {
  cursor: pointer;
  text-decoration: underline;
}
.RightRegSec .RegForm li .RegisterSpan {
  color: #000;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.RightRegSec .RegForm li .RegisterSpan a {
  color: #0859F7;
  cursor: pointer;
  text-decoration: underline;
}
.RightRegSec .RegForm li .forgot-passwordlink {
  color: #404041;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}
.RightRegSec .RegForm li .forgot-passwordlink:hover {
  color: #0859F7;
}
.RightRegSec .RegForm li .form-group {
  position: relative;
}
.RightRegSec .RegForm li label {
  color: #404041;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.RightRegSec .RegForm li .knowIcon {
  bottom: 12px;
  position: absolute;
  right: 0;
}
.RightRegSec .RegForm li .form-check label {
  color: #9F9FA0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 0;
}
.RightRegSec .RegForm li .form-check label a {
  color: #0859F7;
  cursor: pointer;
  text-decoration: underline;
}
.RightRegSec .RegForm li .form-control {
  border: none;
  border-bottom: 1px solid #404041;
  border-radius: 0;
  color: #9F9FA0;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  padding: 0 20px 15px 0;
}
.RightRegSec .RegForm li .btn {
  background-color: #0859F7;
  border-color: #0859F7;
  border-radius: 52px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  height: 50px;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}

/*--------------------------------------------------------------
# Inner Body Start
--------------------------------------------------------------*/
/*-------------- Dashboard Body Start --------------*/
.dashboardSection {
	margin-top: 107px;
}
.dashboardSection .container {
	max-width: 1440px;
}
.leftSideTop {
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background: #FFFFFF;
	display: flex;
	margin-bottom: 20px;
	padding: 37px 0 18px 0;
	position: relative;
}
.rectangleBlue {
	background: #0859F7;
	border-radius: 10px 10px 0 0;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
	height: 140px;
    left: 0px;
	position: absolute;
	right: 0px;
    top: 0px;
}
.leftSideTopContainer {
	align-items: center;
    display: flex;
    flex-direction: column;
	position: relative;
	width: 100%;
}
.leftUserName {
	align-items: center;
	display: flex;
	margin-bottom: 20px;
	justify-content: center;
	padding: 17.5px 0;
	position: relative;
}
.leftUserName span {
	align-items: center;
	background-color: #0859F7;
	border-radius: 15px;
	color: #fff;
	display: inline-flex;
	font-size: 24px;
	font-weight: 600;
	height: 250px;
	justify-content: center;
	text-transform: uppercase;
	width: 250px;
  position:relative;
}
.leftUserName span img {max-width:100%;border-radius:10px;}
.leftUserName span a {position:absolute;right:5px;bottom:5px;color:#0859F7;text-decoration:none;background: rgba(255, 255, 255, 0.7);font-size:12px;padding:5px 12px;}
.leftSideTopContent {
	display: flex;
    flex-direction: column;
    width: fit-content;
    box-sizing: border-box;
}
.bench-vendors {
	display: inline-block;
    align-self: center;
    overflow-wrap: break-word;
    font-family: 'Montserrat';
    font-weight: 600;
    font-size: 15px;
    color: #191919;
}
.simpleteTxtConetnt {
	margin-bottom: 14px;
    display: inline-block;
    align-self: normal;
    text-align: left;
    overflow-wrap: break-word;
    font-weight: 400;
    font-size: 12px;
    color: #666666;
	padding: 0 14px;
}
.lineSec {
    opacity: 0.5;
    background: #E8E8E8;
    margin-bottom: 20px;
    width: 100%;
    height: 1px;
}
.groupBox {
	margin: 0 0 13px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	padding: 0 16.1px 0 14px;
    width: 100%;
	align-self: flex-start;
}
.profile-viewers {
    margin-right: 7.5px;
    width: 262.5px;
    overflow-wrap: break-word;
    font-weight: 600;
    font-size: 15px;
    color: #666666;
}
.my-items1 {
	text-align: right;
	overflow-wrap: break-word;
    font-weight: 600;
    font-size: 15px;
    color: #0859F7;
}
.view-all-analytics {
	margin: 0 14px 14px 14px;
    display: inline-block;
    align-self: flex-start;
    overflow-wrap: break-word;
    font-weight: 600;
    font-size: 12px;
    color: #666666;
}
.groupBox2 {
  align-items: center;
  margin: 0 0 19px;
    display: flex;
    flex-direction: row;
    align-self: flex-start;
    width: fit-content;
    padding: 0 16.1px 0 14px;
    width: 100%;
}
.premium-1 {
  background: url(../img/premium_1.png) 50% / cover no-repeat;
  margin: 0 12px 3px 0;
  width: 16px;
  height: 16px;}
.try-premium-for-10 {
  margin-top: 0;
  display: inline-block;
  overflow-wrap: break-word;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 12px;
  color: #191919;
}
.image-775-traced-1 {
  margin: 0 13px 0 0;
  width: 13px;
  height: 16px;
}
.leftSideBottom {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #FFFFFF;
  position: relative;
  display: flex;
  padding: 20px 0 14px 0;
  flex-direction: column;
  margin-bottom: 20px;
}
.leftSideBottom .Innercontainer {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
}
.leftSideBottom h3 {
  margin: 0 15px 19px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #0859F7;
}
.leftSideBottom h4 {
  margin: 0 15px 19px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  color: #0859F7;
}
.leftSideBottom .group-176241 {
  margin: 0 0 16px;
  display: flex;
  align-self: flex-start;
  width: 100%;
  padding: 0 14px ;
}
.leftSideBottom .sideList {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}
.leftSideBottom .sideList li {
  align-items: center;
  margin: 0 0 15px;
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  width: 100%;
  padding: 0 15px;
}
.leftSideBottom .sideList li img {
  height: 16px;
  margin: 0 12.2px 0 0;
  width: 14.8px;
}
.leftSideBottom .sideList li .my-sql {
    display: inline-block;
    overflow-wrap: break-word;
    font-weight: 600;
    font-size: 12px;
    color: #666666;
}
.leftSideBottom .show-more {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 15px 0 41px;
}
.leftSideBottom .show-more span {
  background: url(../img/down-arrow-icon.svg) no-repeat right 6px;
  color: #666666;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  padding-right: 28px;
}
.leftSideBottom .discover-more {
  display: block;
  text-align: center;
  color: #666666;
  font-weight: 600;
  font-size: 15px;
  border-top: 1px solid #E8E8E8;
  line-height: 52px;
}
.leftSideBottom .accordion {
  margin-bottom: 20px;
  padding: 0 15px;
}
.leftSideBottom .accordion .accordion-item {
  border: none;
  border-radius: 0;
}
.leftSideBottom .accordion .accordion-item .accordion-header .accordion-button {
  background-color: #fff;
  border-radius: 0;
  color: #0859F7;
  font-weight: 600;
  font-size: 15px;
  padding: 0;
}
.leftSideBottom .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.leftSideBottom .accordion .accordion-item .accordion-header .accordion-button::after {
  background-image: url(../img/accordion-minus.svg);
  background-position: right center;
  background-size: 10px 9.76px;
  transform: none;
}
.leftSideBottom .accordion .accordion-item .accordion-header .collapsed::after {
  background-image: url(../img/accordion-plus.svg);
  background-position: right center;
  background-size: 10px 9.76px;
  transform: none;
}
.leftSideBottom .accordion .accordion-item .accordion-body {
  padding: 10px 0 0;
}
.leftSideBottom .accordion .accordion-item .accordion-body .sideList {
  padding: 0;
}
.midTop {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #FFFFFF;
  position: relative;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  padding: 18px 19px 18px 15px;
  width: 100%;

}
.midTop h3 { margin: 0 0 25px;     font-weight: 400;
    font-size: 15px;
    color: #1763F8;}
    .midTop .postForm { list-style: none; margin-bottom: 20px; padding-left: 0; width: 100%; }
    .midTop .postForm li { border: 1px solid
      #C7C7C7; border-radius: 30px; display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 5px 12px; }
    .midTop .postForm li .userPost {  background-color: #0859F7; align-items: center; justify-content: center;  display: flex; color: #fff; min-width: 40px; height: 40px; border-radius: 100%; color: #fff; font-weight: 600;
      font-size: 18px; text-transform: uppercase;  }
      .midTop .postForm li .postButton { background-color: #0859F7; border: none; color: #fff; padding: 0; display: inline-block; min-width: 52px; line-height: 28px; height: 28px; text-align: center; font-weight: 700;
        font-size: 14px; border-radius: 30px; cursor: pointer; }
        .midTop .postForm li .inputBox { border: none; width: 100%; padding: 0 12px; height: 40px; color:
          #202124; line-height: 40px; font-weight: 500;
          font-size: 15px; }
          .MediaList { list-style: none; padding-left: 12px; margin-bottom: 0; }
          .MediaList li { align-items: center; display: inline-flex; color: #202124; font-weight: 500;
            font-size: 15px; margin-right: 25px; }
            .MediaList li img {     margin: 0 9px 0;
              width: 16px;
              height: 16px;
          }
          .midMid { align-items: center; justify-content: space-between;  display: flex; margin-bottom: 26px; }
          .midMid .dropdown .dropdown-toggle { background: url(../img/vector_3341_x2.svg) no-repeat right center; background-size: 10px auto; border: none; border-radius: 0; padding: 0 16px 0 0;     font-weight: 500;
            font-size: 13px;
            color: #666666; }
            .midMid .dropdown .dropdown-toggle::after { display: none; }
            .midMid .line-1 {     opacity: 0.5;
              background: #404041;
              margin: 0 8px 0 0;
              width: 100%;
              height: 1px; }
              .MidPostList{ list-style: none; margin-bottom: 0; padding-left: 0; }
              .MidPostList li {
                box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
                border-radius: 10px;
                background: #FFFFFF;
                position: relative;
                margin: 0 0 20px;
                display: flex;
                flex-direction: column;
                padding: 26px 16px 20px 16px;
                width: 100%;
              }
              .MidPostList li p {
                margin: 0 0 10px;
                font-weight: 400;
    font-size: 14px;
    line-height: 1.357;
    color: #666666;
              }
              .MidPostList li img { height: auto; width: 100%; }
              .MidPostList li .postTopCont {     display: flex;
                flex-direction: row;
                margin-bottom: 20px;
                }
                .MidPostList li .postTopCont  .UserName {
                  background-color: #0859F7;
                  align-items: center;
                  justify-content: center;
                  display: flex;
                  min-width: 60px;
                  height: 60px;
                  border-radius: 100%;
                  color: #fff;
                  font-weight: 600;
                  font-size: 24px;
                  text-transform: uppercase;
                  margin: 0 16px 0 0;
                }
                .MidPostList li .postTopCont .postTopText h3 {
                  margin: 0 0 2px;
                  font-weight: 600;
    font-size: 15px;
    color: #191919;
                }
                .MidPostList li .postTopCont .postTopText h4 {
                  margin-bottom: 2px;
                  font-weight: 400;
                  font-size: 14px;
                  color: #666666;
                }
                .MidPostList li .postTopCont .postTopText p {
                  margin: 0 0 0;
                  font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: #666666;
                }
                .MidPostList li .postTopCont .postTopText p img {     width: 12px;
                  height: 12px; margin-left: 5px; }
                  .MidPostList li .bottomFirstSec { align-items: center;
                    justify-content: space-between;
                    display: flex; margin-top: 20px; margin-bottom: 20px; }
                    .MidPostList li .bottomFirstSec .LeftbottomFirstSec { align-items: center;
                      display: flex;  color: #202124; font-weight: 400;
                      font-size: 13px; }
                      .MidPostList li .bottomFirstSec .LeftbottomFirstSec img { height: auto; width: 18px; }
                      .MidPostList li .bottomFirstSec .LeftbottomFirstSec .group-176443 {     border-radius: 9.5px;
                        background: #04904F;     padding: 4px 3px 3px 4px;     width: 19px;
                        height: 19px;
                        align-items: center;
                      display: flex;
                      justify-content: center;
                      margin-left: -7px;
                        }
                        .MidPostList li .bottomFirstSec .LeftbottomFirstSec .group-176443 img {  width: 12px; }
                        .MidPostList li .bottomFirstSec .LeftbottomFirstSec .group-176453 {     border-radius: 9.5px;
                          background: #BBA9D1;     padding: 4px 3px 3px 4px;     width: 19px;
                          height: 19px;
                          align-items: center;
                        display: flex;
                        justify-content: center;
                        margin-left: -7px;
                        margin-right: 15px;
                          }
                          .MidPostList li .bottomFirstSec .LeftbottomFirstSec .group-176453 img {  width: 12px; }
                    .MidPostList li .bottomFirstSec .RightbottomFirstSec {     font-weight: 400;
                      font-size: 13px;
                      color: #202124; }
                      .MidPostList li .bottomLastList { border-top: 1px solid #E8E8E8; padding-top: 15px; list-style: none; padding-left: 0; margin-bottom: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; }
                      .MidPostList li .bottomLastList li { box-shadow: none; border: none; border-radius: 0; flex-direction: row; padding: 0;  width: auto; margin-bottom: 5px; }
                        .MidPostList li .bottomLastList li a { display: flex; align-items: center;     font-weight: 600;
                          font-size: 14px;
                          color: #191919; cursor: pointer; }
                      .MidPostList li .bottomLastList li img {     margin: 0 10px 0 0;
                        width: 21px;
                        height: auto; }

.rightFirstBox {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #FFFFFF;
    position: relative;
    margin-bottom: 20px;
    padding: 5px 0 21px;
}
.rightFirstBox2 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.rightFirstBox h2 {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 24px 20px 21px;
  font-weight: 600;
  font-size: 15px;
  color: #191919;
}
.rightFirstBox h2 a {
  cursor: pointer;
}
.rightFirstBox h2 a img {
  height: auto;
  width: 16px;
}
.rightFirstBox .newsList {  list-style: none; padding-left: 0; margin-bottom: 0 ;}
.rightFirstBox .newsList li { }
.rightFirstBox .newsList li a { background: url(../img/disc.svg) no-repeat 20px 17px; cursor: pointer; display: block; padding: 10px 40px; }
.rightFirstBox .newsList li a:hover {
  background-color: #EEF3F9;
}
.rightFirstBox .newsList li .show-more { background: none; padding: 0 40px; }
.rightFirstBox .newsList li .show-more:hover { background: none; }
.rightFirstBox .newsList li .show-more span {
  background: url(../img/down-arrow-icon.svg) no-repeat right 6px;
  color: #666666;
  display: inline-block;
  font-weight: 600;
  font-size: 12px;
  padding-right: 28px;
}
.rightFirstBox .newsList li a h3 { margin: 0 0 0;
  font-weight: 500;
  font-size: 15px;
  color: #191919; }
  .rightFirstBox .newsList li a p {
    margin: 0 0 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.583;
    color: #666666;
}
.rightFirstBox .dropdown { text-align: right; margin-bottom: 10px; padding: 0 20px; }
.rightFirstBox .dropdown .dropdown-toggle { background: none; background: url(../img/eclip-icon.svg) no-repeat right 8px; border: none; border-radius: 0; font-weight: 400;
  font-size: 12px;
  color: #666666; padding: 0 20px 0 0; }
.rightFirstBox .dropdown .dropdown-toggle::after { display: none; }
.rightFirstBox .dropdown .dropdown-menu li a {  font-size: 12px;
  font-weight: 400;
  color: #666666; }
.rightFirstBox .center-Text {      margin: 0 40px 19px;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.583;
  color: #666666; }
  .rightFirstBox .adsList { align-items: center; justify-content: center; display: flex; list-style: none; margin-bottom: 25px; margin-top: 20px; padding: 0 20px; }
  .rightFirstBox .adsList li {  padding: 0 15px; }
  .rightFirstBox .adsList li .userName { background-color: #092356; border-radius: 100%; display: flex; width: 60px; height: 60px; align-items: center; justify-content: center; color: #fff;      font-weight: 600;
    font-size: 24px;}
    .rightFirstBox .followLink { display: inline-block; border: 1px solid #0859F7; border-radius: 30px; color: #0859F7; font-weight: 600;
      font-size: 16px; width: auto; line-height: 44px; padding: 0 40px;  max-width: min-content;
      margin: 10px auto; }
.bottomLink { list-style: none; padding-left: 0; text-align: center; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; width: 100%; margin: 25px 0 20px; }
.bottomLink li { display: inline-flex; margin-bottom: 10px; }
.bottomLink li a { display: block;     font-weight: 400;
  font-size: 12px;
  color: #666666; padding:  0 15px; cursor: pointer; }
  .bottomLink li a:hover { color: #000; text-decoration: underline; }
  .bottomLink li .dropdown .dropdown-toggle { background: none; border: none; font-weight: 400;
    font-size: 12px;
    color: #666666; padding: 0; }

/*-------------- Job Listing Body Start --------------*/
.breadscrumbs { display: flex; list-style: none; padding-left: 0; width: 100%; }
.breadscrumbs li { margin-right: 5px; }
.breadscrumbs li a { background: url(../img/breadscrumbs-artrow.svg) no-repeat right 7px; color: #666; display: block; font-size: 15px; font-weight: 400; padding-right: 12px; }
.breadscrumbs li a:hover { text-decoration: underline; }
.breadscrumbs li strong { color: #0859F7; font-size: 12px; font-weight: 600; }
.jobListingLeft {
	background: #FFFFFF;
	border-radius: 10px;
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
    margin: 0;
    padding: 0;
	position: relative;

}
.jobListingLeftTop {
	box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px 10px 0 0;
    background: #FFFFFF;
    position: relative;
    margin-bottom: 25px;
    display: flex;
    flex-direction: row;
    padding: 20px 0 15.8px 21.5px;
    width: 100%;
	align-items: center;
}
.jobListingLeftTop img {
    margin-right: 12.1px;
    width: 16.2px;
    height: 17.2px;
}
.jobListingLeftTop .jobs {
    font-weight: 600;
    font-size: 15px;
    color: #0859F7;
}
.jobListingLeftListing { list-style: none; margin-bottom: 0; padding-left: 0; }
.jobListingLeftListing li { padding-right: 15px; width: 100%; }
.jobListingLeftListing li h3 { border-left: 4px solid #0859F7; color: #000; font-size: 15px; font-weight: 600; margin: 0 0 20px; padding-left: 17.5px; }
.jobListingLeftListing li .SubOneList { list-style: none; margin-bottom: 30px; padding-left: 0; width: 100%; }
.jobListingLeftListing li .SubOneList li { margin-bottom: 0; padding: 0 0 0 21.5px; width: 100%; }
.jobListingLeftListing li .SubOneList li .form-check .form-check-label { color: #000; font-size: 12px; font-weight: 400; }
.jobListingLeftListing li .SubOneList li .form-check .form-check-input { border: 1px solid #DDDDDD; border-radius: 2px; height: 10px; width: 10px; }
.jobListingLeftListing li .SubOneList li .form-check .form-check-input:checked[type="checkbox"] { background-image: url("../img/check-icon.svg"); background-position: center; }
.jobListingLeftListing li .fromList { list-style: none; margin-bottom: 30px; padding-left: 21.5px; }
.jobListingLeftListing li .fromList li {       padding-right: calc(var(--bs-gutter-x)* .5);      width: 33.33333333%;  }
.jobListingLeftListing li .fromList li .form-control {     border-radius: 2px;
    border: 1px solid #E3E3E3;
    background: #FFFFFF;
    position: relative;
    padding: 0 7px;
    width: 100%; height: 33px; line-height: 31px;     color: #666666;     font-weight: 400;
    font-size: 12px; }
.jobListingLeftListing li .fromList li .select-form {
	border-radius: 2px;
    border: 1px solid #E3E3E3;
    background-color: #FFFFFF;
    position: relative;
    padding: 0 7px;
    width: 100%; height: 33px; line-height: 31px;     color: #666666;     font-weight: 400;
    font-size: 12px;
}
.rightTop {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 20.5px;
}
.rightTop h3 {
	color: #666;
	font-size: 15px;
	font-weight: 400;
	margin: 0 0 0;
}
.rightTop .select-form {
	border: none;
	padding: 0 0 0 0;
	font-weight: 400;
    font-size: 15px;
	color: #666;
}
.rightTop .select-form:focus { outline: none; }
.jobListing {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
}
.jobListing li {
	display: flex;
	justify-content: space-between;
	    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
	    padding: 32px 19px 19px 32px;
	    border-radius: 10px;
	margin-bottom: 10px;
}
.jobListing li .imgSec { margin: 0 19px 81px 0;     width: 93px; }
.jobListing li .imgSec img { height: auto; max-width: 100%; width: auto; }
.jobListing li .TextSec { position: relative; width: 100%; }
.jobListing li .TextSec h3 { color:
#191919;font-weight: 600;
    font-size: 24px;     line-height: 1.167; margin: 0 0 10px; }
.jobListing li .TextSec h4 { color:
#191919;font-weight: 400;
    font-size: 14px;     margin: 0 0 25px; }
.jobListing li .TextSec h4 strong { font-weight: 600; }
.jobListing li .TextSec h4 span { color: #0859F7; font-weight: 600;}
.jobListing li .TextSec .wishtList { align-items: center; display: flex; position: absolute; right: 0; top: 0; width: auto; }
.jobListing li .TextSec .wishtList li { display: flex; align-items: center; border-radius: 0; box-shadow: none; margin-right: 10px; padding: 0; }
.jobListing li .TextSec .wishtList li:last-child { margin-right: 0; }
.jobListing li .TextSec .wishtList li img {     width: 20.7px;
    height: 16px; }
.jobListing li .TextSec .wishtList li a { display: inline-flex; color: #000000;     font-weight: 400;
    font-size: 14px; }
.jobListing li .TextSec .wishtList li a i { margin-right: 6.6px; color: #0859F7;  }
.jobListing li .TextSec .wishtList li .wishLink i { margin-right: 0; color:
#666; }
.jobListing li .TextSec .jobBottom { display: flex; justify-content: space-between; flex-wrap: wrap; }
.jobListing li .TextSec .jobBottom .ApplyNowBtn { display: inline-flex; border-radius: 52px;     color: #0859F7;;
	font-family: "Outfit", sans-serif;
	    font-weight: 600;
    font-size: 16px;
    background: #fff; border: 1px solid #0859F7;
    padding: 0 19.7px; line-height: 34px; }
.jobListing li .TextSec .jobBottom .ApplyNowBtn:hover { background: #0859F7; color: #fff; }
.jobListing li .TextSec .jobBottom .tagsList { display: flex; list-style: none; padding-left: 0; margin-bottom: 0; }
.jobListing li .TextSec .jobBottom .tagsList li {  border-radius: 22px;   color: #191919;     font-weight: 400;
    font-size: 12px; background: #E3EDFF; align-items: center; display: flex; padding: 0 8.9px; box-shadow: none; margin-right: 15px }
.jobListing li .TextSec .jobBottom .tagsList li img {     margin: 0 6px 0 0;
    max-width: 12px;
    height: auto; max-height: 9px; width: auto; }
.pagiList { flex-wrap: wrap; list-style: none; padding-left: 0; width: 100%; margin-top: 30px; display: flex; align-items: center; justify-content: center; }
.pagiList li { margin: 0 5px 8px; }
.pagiList li:nth-child(1) { margin-left: 0; }
.pagiList li:last-child { margin-right: 0; }
.pagiList li a { display: block; width: 30px; line-height: 34px; border-radius:
36px; border: 1px solid
#E1E1E1; color: #ADADAD; font-size: 12px; font-weight: 400; text-align: center; cursor: pointer;}
.pagiList li a:hover { background-color:
#0859F7; color:
#fff !important; border-color:
#0859F7; }
.pagiList li .active { background-color:
#0859F7; color:
#fff !important; border-color:
#0859F7; }
.pagiList li .prev { width: auto; padding-left: 20px; padding-right: 20px; }
.pagiList li .prevDisabled { background: none; color: #ADADAD; border: 1px solid
#E1E1E1; cursor: not-allowed;
  pointer-events: all !important; }
.pagiList li .prevDisabled:hover { background: none; color: #ADADAD !important; border: 1px solid
#E1E1E1; }
.pagiList li .next { width: auto; padding-left: 20px; padding-right: 20px; }
.pagiList li .nextDisabled { background: none; color: #ADADAD; border: 1px solid
#E1E1E1; cursor: not-allowed;
  pointer-events: all !important; }
.pagiList li .nextDisabled:hover { background: none; color: #ADADAD !important; border: 1px solid
#E1E1E1; }
/*~~~ Inner Body End ~~~*/


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 0 0 20px 0;
  color: #fff;
  font-size: 14px;
}
#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  padding: 0 0 20px 0;
  background-image: url(../img/footerline.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  margin-top: 30px;
}
#footer .footer-top .footer-info h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  color: #fff;
  margin: 15px 0 0 0;
}
#footer .footer-top .social-links {
  padding-bottom: 15px;
}
#footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 0 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  color: #1967d2;
  text-decoration: none;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  padding: 0 0 20px 0;
  background-image: url(../img/footerline.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  width: 32.33%;
}
#footer .footer-top .footer-links ul i {
  padding-right: 10px;
  color: #fff;
  font-size: 17px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #0859f7;
}
#footer .footer-top .footer-newsletter h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  padding: 0 0 20px 0;
  background-image: url(../img/footerline.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  margin-bottom: 30px;
}
.footerMail a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  padding: 0 0 0 35px;
  background-image: url(../img/Footermail.svg);
  background-repeat: no-repeat;
  background-position: 0 11px;
  margin-bottom: 18px;
  display: block;
}
.footerPhn a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  padding: 0 0 0 35px;
  background-image: url(../img/Footerphn.svg);
  background-repeat: no-repeat;
  background-position: 0 7px;
  margin-bottom: 20px;
  display: block;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ffcd6b;
}
.FooterBottom {
  width: 100%;
  justify-content: space-between;
  display: flex;
  padding-top: 20px;
}
.FooterBottomLft {}
.FooterBottomLft p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #000;
  margin: 0;
}
.FooterBottomLft p a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #000;
  margin: 0;
}
.FooterBottomRgt {}
.FooterBottomRgt p {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #000;
  margin: 0;
}
.FooterBottomRgt p span {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #000;
}
.FooterBottomRgt p a {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 30px;
  color: #000;
}
#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.8);
}
/* Inner Footer Start */
#InnerFooter { background-color:
  #0F1B31; color: #FFFFFF;   font-weight: 400; font-family: "Outfit", sans-serif;
  font-size: 12px; padding: 14px 0; text-align: center; margin-top: 20px; }

/*--------------------------------------------------------------
REsponsive
--------------------------------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1390px) {

}
@media only screen and (max-width: 1024px) {
  .leftHeader .categories {
    display: none;
  }
  #InnerHeader .rightHeader .mobileSearch {
    display: block;
  }
  #InnerHeader .rightHeader .bvName {
    margin-left: 5px;
    margin-right: 15px;
  }
  .innerNav li { margin: 0; }
  .innerNav li a { border-bottom: none; flex-direction: row;     font-size: 15px; padding: 10px 20px; }
  .innerNav li a img { display: none; }
  .innerNav .active a { border-bottom: none; color: #fff; }
/*~~~ Inner Header End ~~~*/
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .blogLft img {
    width: 100%;
    height: auto
  }
  .blogBottom::after {
    height: 489px;
  }
  .countNum {
    font-size: 34px;
    line-height: 45px;
  }
  .countRgt p {
    font-size: 16px;
  }
  .navbar a, .navbar a:focus {
    padding: 10px 0 10px 12px;
  }
  .search-btn {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #hero {
    background-size: cover;
    padding-bottom: 0;
  }
  #hero .d-flex {
    display: block !important;
  }
  .bannerLft {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    z-index: 9;
  }
  #hero p {
    padding-right: 0;
  }
  .bannerRgt {
    width: 100%;
    text-align: center;
    padding: 50px 0 0 0;
  }
  #hero::after {
    bottom: 315px;
    left: 0;
    width: 140px;
    height: 125px;
  }
  #hero::before {
    display: none;
  }
  .about .Aboutcontent p {
    padding-bottom: 20px;
  }
  .aboutInfo ul {
    display: block;
  }
  .aboutInfo ul li {
    width: 100%;
  }
  .aboutInfo ul li .aboutInfoBox {
    padding-top: 0;
  }
  .aboutInfo {
    width: 100%;
    padding-bottom: 50px;
  }
  .about .Aboutcontent h2 {
    letter-spacing: 0;
  }
  .testimonials-slider {
    margin-right: 0;
  }
  .testimonials {
    padding: 120px 55px 40px 55px;
  }
  .lastMenu {
    display: block
  }
  .lastMenu .CateBtn {
    color: #fff !important;
    border-radius: 48px !important;
    padding: 7px 0 !important;
    white-space: nowrap !important;
    transition: 0.3s;
    font-size: 15px !important;
    display: block !important;
    border: 2px solid #0859f7 !important;
    background: #0859f7 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    width: 90% !important;
    height: 38px !important;
    text-align: center !important;
    margin: 0 auto !important;
    background-image: url(../img/icon1.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 16px 9px !important;
    background-size: 15px !important;
    padding-left: 0px !important;
  }
  .lastMenu .CateBtn:hover {
    color: #fff;
  }
  .blogLft img {
    width: 100%;
    height: auto
  }
  .blogBottom::after {
    height: 489px;
  }
  #footer .footer-top .footer-links ul {
    width: 49%;
  }
}
@media (max-width: 991px) {
	/*-------------- Job Listing Body Start --------------*/
  .jobListingBanner .bannerSearchList { border-radius: 15px; flex-direction: column; height: auto; max-width: 500px; width: 100%; }
	.jobListingBanner .bannerSearchList li .form-control { width: 100%; }
	.jobListingBanner .bannerSearchList li .select-form { width: 100%; }
	.jobListingBanner .bannerSearchList li:last-child { text-align: center; }
	.jobListing li .TextSec .wishtList { position: relative; padding-left: 0; }
	.jobListing li .TextSec .jobBottom {  display: block; }
	.jobListing li .TextSec .jobBottom .tagsList { display: block; }
	.jobListing li .TextSec .jobBottom .tagsList li { display: inline-flex; }

}
@media (max-width: 767px) {
  .lastMenu {
    display: block
  }
  .lastMenu .CateBtn {
    color: #fff !important;
    border-radius: 48px !important;
    padding: 7px 0 !important;
    white-space: nowrap !important;
    transition: 0.3s;
    font-size: 15px !important;
    display: block !important;
    border: 2px solid #0859f7 !important;
    background: #0859f7 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    width: 90% !important;
    height: 38px !important;
    text-align: center !important;
    margin: 0 auto !important;
    background-image: url(../img/icon1.svg) !important;
    background-repeat: no-repeat !important;
    background-position: 16px 9px !important;
    background-size: 15px !important;
    padding-left: 0px !important;
  }
  .lastMenu .CateBtn:hover {
    color: #fff;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #hero {
    background-size: cover;
    padding-bottom: 0;
  }
  #hero .d-flex {
    display: block !important;
  }
  .bannerLft {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    position: relative;
    z-index: 9;
  }
  #hero p {
    padding-right: 0;
  }
  .bannerRgt {
    width: 100%;
    text-align: center;
    padding: 50px 0 0 0;
  }
  #hero::after {
    bottom: 210px;
    left: 0;
    width: 93px;
    height: 118px;
  }
  #hero::before {
    display: none;
  }
  .about .Aboutcontent p {
    padding-bottom: 20px;
  }
  .aboutInfo ul {
    display: block;
  }
  .aboutInfo ul li {
    width: 100%;
  }
  .aboutInfo ul li .aboutInfoBox {
    padding-top: 0;
  }
  .aboutInfo {
    width: 100%;
    padding-bottom: 50px;
  }
  .about .Aboutcontent h2 {
    letter-spacing: 0;
  }
  .count-box {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
  }
  .counts {
    padding-bottom: 20px;
  }
  .workLine::before {
    display: none
  }
  .testimonials {
    padding: 50px 10px 50px 10px;
  }
  .testimonials-slider {
    margin-right: 0;
  }
  .section-title {
    display: block;
  }
  .blogLft img {
    width: 100%;
  }
  .blogLft {
    margin-bottom: 30px;
  }
  .blogLft img {
    width: 100%;
  }
  .blogRgt p {
    padding-right: 0;
  }
  .contact {
    width: 100%;
    padding: 59px 0 70px;
  }
  #footer .footer-top .footer-links ul {
    width: 49%;
  }
  .FooterBottom {
    display: block;
    padding-top: 20px;
    text-align: center;
  }
  .blogBottom::after {
    height: 457px
  }
  .search-btn {
    margin-right: 0;
    margin-left: 0;
  }
  /*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
  .RegisterSec {
    padding-left: 0;
    padding-right: 0;
  }
  .RegisterSec .row {
    margin-left: 0;
    margin-right: 0;
  }
  .RegisterSec .RegtopImg {
    display: block;
  }
  .RegisterSec .RegtopImg img {
    height: auto;
    width: 100%;
  }
  .LeftRegSec {
    display: none;
  }
  .RightRegSec {
    margin-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
  }
  /*~~~ Inner Body Start ~~~*/
  .MediaList li { margin-right: -4px; }
  .MediaList li:last-child {  margin-right: 0; }
  .MidPostList li .bottomLastList li a { font-size: 13px; }
  .MidPostList li .bottomLastList li img { margin-right: 5px; width: 18px; }
	/*-------------- Job Listing Body Start --------------*/
	.jobListingBanner { height: auto; padding-top: 30px; padding-bottom: 30px; }
	.jobListingBanner h3 { font-size: 24px; text-align: center; }
	.jobListingSection { margin-top: 40px; }
  /*~~~ Inner Body End ~~~*/
}
