/*
    Theme Name: PNT Job placement
    Theme URL:
    Author: Peoplentech Software
*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*font-family: 'Heebo', sans-serif;*/
@import url('https://fonts.googleapis.com/css?family=Heebo:400,700,900&display=swap');
/*font-family: 'Passion One', cursive;*/
@import url('https://fonts.googleapis.com/css?family=Passion+One:700&display=swap');
html,body{
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
body {
  background: #fff;
  color: #444;
  font-family: 'Heebo', sans-serif;
  max-width: 100%;
  overflow-x: hidden;
  transition: 0.4s;
}
a {
  color: #797979;
  transition: 0.5s;
}
a:hover,
a:active,
a:focus {
  color: #c6ad8f;
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 30px 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0 0 6px 0;
  padding: 0;
}
/*common class*/
.f-weight-400{
  font-weight: 400;
}
.f-weight-700{
  font-weight: 700;
}
.f-weight-900{
  font-weight: 900;
}
.common-text {
  font-size: 15px;
  color: #676767;
  letter-spacing: .2px;
}
.bg-light-grey{
  background: #f9f9f9;
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/*common class*/
/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #c6ad8f;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}
.back-to-top:focus {
  background: #50d8af;
  color: #fff;
  outline: none;
}
.back-to-top:hover {
  background: #0c2e8a;
  color: #fff;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
#topbar .contact-info a {
  line-height: 1;
  color: #555;
}
#topbar .contact-info a:hover {
  color: #c6ad8f;
}
#topbar .contact-info i {
  color: #c6ad8f;
  padding: 4px;
}
#topbar .contact-info .fa-phone {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e9;
}
#topbar .social-links a {
  color: #555;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}
#topbar .social-links a:hover {
  color: #50d8af;
}

#topbar .social-links a:first-child {
  border-left: 0;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 20px 0;
  height: 84px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}
#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}
#header #logo h1 a {
  color: #0c2e8a;
  line-height: 1;
  display: inline-block;
}
#header #logo h1 a span {
  color: #50d8af;
}
#header #logo img {
  padding: 0;
  margin: 0;
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  width: 100%;
  height: 60vh;
  position: relative;
  background: url("../img/intro-carousel/1.jpg") no-repeat;
  background-size: cover;
}
#intro .intro-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}
#intro .intro-content h2 {
  color: #0c2e8a;
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
}
#intro .intro-content h2 span {
  color: #50d8af;
  text-decoration: underline;
}

#intro .intro-content .btn-get-started,
#intro .intro-content .btn-projects {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#intro .intro-content .btn-get-started {
  background: #0c2e8a;
  border: 2px solid #0c2e8a;
}

#intro .intro-content .btn-get-started:hover {
  background: none;
  color: #0c2e8a;
}

#intro .intro-content .btn-projects {
  background: #50d8af;
  border: 2px solid #50d8af;
}

#intro .intro-content .btn-projects:hover {
  background: none;
  color: #50d8af;
}

#intro #intro-carousel {
  z-index: 8;
}

/*
#intro #intro-carousel::before {
  content: '';
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}
*/

#intro #intro-carousel .item {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #555;
  font-weight: 700;
  font-size: 14px;
  outline: none;
}
.nav-menu li:hover > a, .nav-menu .menu-active > a {
  color: #c6ad8f;
}
.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #50d8af;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #555;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #50d8af;
}

#mobile-nav ul .menu-item-active {
  color: #50d8af;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #0c2e8a;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #50d8af;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* About section
--------------------------------*/
.about-img img{
  -webkit-animation: movebounce 3.9s linear infinite;
  animation: movebounce 3.9s linear infinite;

}

/* Achievements section
--------------------------------*/
#achievement {
  background: #f9f9f9;
  padding-top: 131px!important;
  padding-bottom: 55px!important;
}
.btm-shape {
  position: absolute;
  top: 0;
  left: 0;
}
.tp-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.ach-img {
  height: 95px;
  object-fit: contain;
  position: absolute;
  top: -9px;
  left: -18px;
  margin: 0;
  box-shadow: 0 0 40px rgba(0,0,0,.2);
  border-radius: 10em;
  max-width: 27%;
  background: white;
}
.ach-box {
  position: relative;
  background-color: #fff;
  box-shadow: 0 7px 20px rgba(0,0,0,.15);
  border-radius: 70px 10px 70px 10px;
  padding: 77px 10px 18px 57px;
  margin-bottom: 35px;
  transition: 0.4s;
  z-index: 2;
}
.ach-box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}
.ach-box:after {
  position: absolute;
  content: "";
  left: 84px;
  top: 39px;
  height: 2px;
  width: 71%;
  background: #ffffff;
}
.sec-title {
  font-size: 26px;
  color: #c6ad8f;
  line-height: 23px;
  font-weight: 700;
}
/*.ttl-main:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 220px;
  width: 9px;
  background: #585858;
}*/
.ttl-main {
  padding: 15px;
  z-index: 1;
}
/* Services Section
--------------------------------*/

#services {
  padding-top: 131px!important;
  padding-bottom: 131px!important;
}
.service-img {
  width: 100%;
  height: 84px;
  object-fit: contain;
}
.servc-title {
  font-size: 22px;
  color: #585858;
}
/* Clients Section
--------------------------------*/

#clients {
  padding: 30px 0;
}
#clients img {
width: 100%;
opacity: 0.5;
transition: 0.3s;
padding: 15px 0;
height: 100px;
object-fit: contain;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #50d8af;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  background: #f9f9f9;
  padding-top: 132px;
}
.testi-main {
  position: absolute;
  top: -22px;
  left: -17px;
}
#testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 70px 30px 0 30px;
  margin: 30px 20px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 70px 10px 70px 10px;
}
#testimonials .testimonial-item .testimonial-img {
  width: 117px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  margin: 0 auto;
  box-shadow: 0 0 7px rgba(0,0,0,.2);
}
#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-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

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

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #50d8af;
}


/* job Section
--------------------------------*/

#job {
  background: #ffffff;
  z-index: 0;
}
.job-ttl {
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 0px;
}
.job-company {
  font-size: 12px;
}
.job-ex {
  font-size: 13px;
  color: #ff0021;
}
.job-box {
  background-color: #fff;
  box-shadow: 0 7px 20px rgba(0,0,0,.15);
  padding: 16px 11px;
  margin-bottom: 25px;
  border-radius: 30px 0 30px 0;
  transition: 0.4s;
}
.job-box:hover {
  box-shadow: 0 0 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}
.job-logo {
width: 75px;
/* padding-right: 5px; */
height: 61px;
object-fit: contain;
padding-left: 5px;
}
/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}
#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}
#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #50d8af;
}
#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}
#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}
#contact .contact-info a {
  color: #000;
}
#contact .contact-info a:hover {
  color: #50d8af;
}
#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}
#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #50d8af;
  border: 1px solid #50d8af;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

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

#contact .form button[type="submit"] {
  background: #50d8af;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #2dc899;
}

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

#footer {
  background: #ffffff;
  padding: 0 0 30px 0;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #555;
}

#footer .credits a {
  color: #0c2e8a;
}

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #header {
    padding: 20px 0;
    height: 74px;
  }

  #header #logo h1 {
    font-size: 34px;
  }

  #header #logo img {
    max-height: 40px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }

  #about .about-img {
    height: auto;
  }

  #about .about-img img {
    margin-left: 0;
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #intro .intro-content h2 {
    font-size: 34px;
  }

  #services .box .box {
    margin-bottom: 20px;
  }

  #services .box .icon {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #services .box h4,
  #services .box p {
    margin-left: 0;
    text-align: center;
  }

  #testimonials .testimonial-item {
    margin: 30px 10px;
  }
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}
/*test*/
.slider_small3_shape {
  position: absolute;
  right: -125px;
  bottom: -27px;
  z-index: 1;
  -webkit-animation: moveleftbounce 3.0s linear infinite;
  animation: moveleftbounce 3.0s linear infinite;
}
.serach-img {
  width: 47%;
  opacity: .2;
}
@media (max-width: 1430px) {
  .slider_small3_shape {
    right: -270px;
  }
}
.slider_small3_shape {
  position: absolute;
  left: -55px;
  top: 57px;
  -webkit-animation: moveleftbounce 3.0s linear infinite;
  animation: moveleftbounce 3.0s linear infinite;
  z-index: 0;
}
@keyframes moveleftbounce {
  0% {
    transform: translateX(0px); }
  50% {
    transform: translateX(20px); }
  100% {
    transform: translateX(0px); }
}
.shapenew {
  right: -88px!important;
  left: auto;
  z-index: -1;
  opacity: .5;
}
/*test*/
/*job details page*/
.job-title-and-info {
  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-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.job-title-and-info .title {
  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;
}
.job-title-and-info .title .thumb {
    width: 200px;
    height: 99px;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    border-radius: 3px;
    background: #ffffff;
    /* 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-right: 20px;
    padding: 9px;
    box-shadow: 2px 1px 7px #ddd;
}
.job-title-and-info .buttons .apply {
    padding: 13px 14px;
    border-radius: 3px;
    background: #c6ad8f;
    color: #ffffff;
    font-size: 15px;
}
.job-title-and-info .buttons .apply svg {
  height: 18px;
  margin-left: 10px;
}
.job-title-and-info .buttons .apply:hover {
    color: #ffffff;
    background: #009688;
}
.responsibilities ul{
  list-style: none;
}
.responsibilities ul li{
  padding-top: 10px;
}

.job-apply-buttons a {
  padding: 14px 30px;
  border-radius: 3px;
  border: 1px solid;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
}

.job-apply-buttons .apply {
  background: #246df8;
  color: #ffffff;
  border-color: #246df8;
  margin-right: 10px;
}

.job-apply-buttons .email {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(247, 249, 252, 0)), to(#f7f9fc));
  background-image: -webkit-linear-gradient(right, rgba(247, 249, 252, 0), #f7f9fc);
  background-image: -o-linear-gradient(right, rgba(247, 249, 252, 0), #f7f9fc);
  background-image: linear-gradient(to left, rgba(247, 249, 252, 0), #f7f9fc);
  color: #6f7484;
  border-color: rgba(0, 0, 0, 0.05);
}

.job-apply-buttons .email:hover {
  color: #ffffff;
  background: #246df8;
  border-color: #246df8;
}

.job-apply-buttons .email svg {
  height: 15px;
}
.job-summary {
    background: #009688;
    padding-left: 15px;
    color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}
.job-summary ul{
  padding-left: 0;
  list-style: none;
}
.job-summary ul li{
margin-bottom: 10px;
}
.job-summary ul li span{
  color: #FFEB3B;
  font-weight: 700;
  border-bottom: 1px solid #fff;
}
.share-job-post {
    margin-top: 50px;
    padding: 12px 30px;
    background: #009688;
    color: #fff;
    font-size: 18px!important;
}
.share-job-post a {
  margin-right: 12px;
  color: #fff;
}

.share-job-post a:hover {
  color: #FFEB3B;
}

.share-job-post .add-more {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #f7f9fc;
  border-radius: 3px;
  height: 30px;
  width: 30px;
  line-height: 31px;
  text-align: center;
}
.job-apply-buttons {
  margin-top: 45px;
}

.job-apply-buttons a {
  margin-top: 15px;
}
.icn-clr{
  color: #009688;
}
/*job details page*/
/*job list page*/
.has-search-right {
  position: relative;
}

.has-search-right .form-control {
  padding-right: 2.375rem;
}

.has-search-right .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  color: #aaa;
}
.filter-main {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 8px;
  box-shadow: 2px 1px 8px #e2e2e2;
  margin-bottom: 39px;
}
.filtr select {
  background: transparent;
  color: #009688;
  font-size: 16px;
  padding: 8px;
  box-shadow: 1px 1px 11px #ddd;
  border: 0;
}
select.form-control:not([size]):not([multiple]) {
  height: calc(2.5rem + 1px);
}
.has-search-right .form-control {
  padding-right: 2.375rem;
  background: transparent;
  box-shadow: 1px 1px 11px #ddd;
  border: 0;
}
/*job list page*/
/*login page*/
.reg-main {
  box-shadow: 0 7px 20px rgba(0,0,0,.15);
  padding: 23px 25px;
}
/*login page*/

/*Profile page*/
.jumbotron-flat {
  background-color: solid #4DB8FFF;
  height: 100%;
  border: 1px solid #4DB8FF;
  background: white;
  width: 100%;
  text-align: center;
  overflow: auto;
}

.paymentAmt {
  font-size: 80px;
}

.centered {
  text-align: center;
}
.avatarr {
  width: 100%;
  height: 170px;
  object-fit: contain;
  background: #f5f5f5;
}
.title {
  padding-top: 15px;
}
.company_image{
  width: 200px;
    height: 99px;
    object-fit: contain;
}
/*Profile page*/
.single-image{
    width: 100%;
    height: 278px;
    object-fit: scale-down;
}
/*common page*/
.cont-secc-ttl {
font-size: 45px;
color: #c6ad8f;
background: #ececec;
text-align: center;
padding: 21px;
}
/*common page*/
/*contact page*/
.cont-sec-ttl {
  font-weight: 700;
  font-size: 18px;
  color: #c6ad8f;
  padding-top: 12px;
  padding-bottom: 12px;
}
.service-main {
    height: 69px;
    overflow: hidden;
}
/*contact page*/