* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

body, input, select {
  font-family: "avenir";
  color: #333;
}

a {
  text-decoration: none;
}

h1 {
  color: #0e4f66;
}

h3 {
  color: #0e4f66;
  font-size: 18px;
}

h4 {
  color: #0e4f66;
}

h2 {
  color: #0e4f66;
}

ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}

h1, h2, h3, h4, h5, h6, strong {
  font-family: "avenir";
  margin-bottom: 0;
}

p {
  font-size: 13px;
  margin-bottom: 0;
}

.btn {
  font-size: 12px;
  border: 1px solid #118975;
  border-radius: 4px;
  padding: 10px 15px 9px;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s linear;
}
.btn:hover {
  background: #0e4f66;
  border-color: #0e4f66;
  color: white;
}

select,
input {
  font-size: 13px;
  height: 34px;
  padding: 0 16px;
  border: 1px solid #118975;
  border-radius: 4px;
}

input[type=checkbox] {
  height: auto;
}

.container {
  padding: 0 15px;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrapper table tr:not(:last-child) {
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.table-wrapper table td {
  font-size: 13px;
}
.table-wrapper table th, .table-wrapper table td {
  line-height: 1;
}
.table-wrapper table tr:first-child {
  border-bottom: 1px solid #118975;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
}
.table-wrapper table tr:not(:last-child) {
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.table-wrapper table td {
  font-size: 13px;
}
.table-wrapper table th, .table-wrapper table td {
  line-height: 1;
}
.table-wrapper table tr:first-child {
  border-bottom: 1px solid #118975;
}

@media all and (min-width: 768px) {
  table th {
    text-transform: uppercase;
    font-size: 18px;
  }
}
.paginations {
  margin: 5% 0 3%;
}
.paginations ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.paginations li {
  margin: 0 4px;
}
.paginations li:hover a,
.paginations li.active a {
  background: #118975;
  color: white;
}
.paginations a {
  padding: 9px 13px;
  width: 36px;
  background: #edebeb;
  color: #0f0f0f;
  display: block;
  border-radius: 6px;
  text-align: center;
}

table th, table td {
  padding: 20px 0;
}

@media only screen and (max-width: 767px) {
  .table-wrapper td {
    width: 20%;
    padding: 0 10px;
  }
}
header {
  background-color: #ffffff;
  height: 57px;
}

.header-sec {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-sec .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-sec .search {
  width: 20px;
}
.header-sec .font {
  line-height: 1;
}
    .header-sec .menutxt {
        color: #3d3e3e;
        padding: 15px;
        display: flex;
        align-items: center;
        text-decoration: none;
        font-family: "avenir";
    }
.header-sec .menutxt .arrow {
  margin-left: 8px;
  font-size: x-small;
}
.header-sec .menutxt .mimg {
  width: 20px;
}
.header-sec .menutxt .user {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-sec .menutxt .user img {
  width: 10px;
}
.header-sec .humburger-menu-ap, .header-sec .humburger-menu {
  margin-left: 10px;
}
.header-sec .sign-btn {
  font-size: 12px;
  line-height: 1;
  padding: 10.5px 28px;
  background-color: transparent;
  border: 1px solid #3d3e3e;
  color: #3d3e3e;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s linear;
  display: inline-block;
}
.header-sec .sign-btn:hover {
  background: #0e4f66;
  border-color: #0e4f66;
  color: white;
}
.header-sec .menu-sec {
  position: relative;
}
.header-sec .sub-menu {
  position: absolute;
  top: 45px;
  right: 0;
  width: 150px;
  background-color: #ffffff;
  display: none;
  border-top: 2px solid white;
  z-index: 9;
}
.header-sec .sub-menu li {
  padding: 0 10px;
}
.header-sec .sub-menu li a:hover {
  color: #ffffff;
}
.header-sec .sub-menu li:hover {
  background-color: #0e4f66;
}
.header-sec .menu-sec:hover .sub-menu {
  display: block;
}

@media only screen and (max-width: 767px) {
  header {
    padding: 10px 0;
  }
  .header-sec .logo img {
    width: 140px;
  }
  .header-sec .list-item {
    display: flex;
    align-items: center;
  }
  .header-sec .sign-btn-sec .sign-btn {
    border: 0;
    padding: 0;
    padding-right: 20px;
  }
  .header-sec .menubar {
    display: none;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 57px;
    padding: 10px;
    border-top: 1px solid white;
    z-index: 1;
  }
  .header-sec .humburger-menu-ap {
    display: block;
    height: 36px;
  }
  .header-sec .head {
    font-size: 20px;
    padding: 20px 0;
  }
  .header-sec .sub-menu {
    background-color: #ffffff;
    z-index: 9;
    width: 200px;
    left: 200px;
    position: static;
    height: 0;
    transition: 1s linear;
  }
  .header-sec .sub-menu .menutxt {
    color: #108073;
  }
  .header-sec .menu-sec:hover .sub-menu {
    height: auto;
    transition: 1s linear;
  }
  .pd15 {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1025px) {
  .humburger-menu {
    display: none;
  }
  .menubar-s {
    display: flex;
  }
  .sign-btn-sec {
    display: flex;
    align-items: center;
  }
  .sign-btn-sec .ml10 {
    margin-left: 10px;
  }
  .font {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .menubar-s {
    display: none;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 57px;
    padding: 10px;
    border-top: 1px solid white;
    z-index: 999;
  }
  .menubar.menu-active {
    display: block;
  }
  .humburger-menu {
    display: block;
    height: 36px;
  }
  .menubar {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  header .container .header-sec {
    margin: 0 -20px;
  }
  header {
    height: 70px;
    padding: 10px 20px;
  }
  .header-sec {
    margin: 0 20px;
  }
  .header-sec .logo img {
    width: 191px;
  }
  .header-sec .list-item {
    display: flex;
    align-items: center;
  }
  .menubar {
    display: flex;
  }
  .humburger-menu-ap {
    display: none;
  }
}
@media only screen and (min-width: 1026px) and (max-width: 1137px) {
  .header-sec .logo img {
    width: 120px;
  }
  .menubar-s .menutxt {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 931px) {
  .header-sec .menubar {
    font-size: 12px;
    align-items: center;
  }
  .header-sec .pd14 {
    padding: 14px;
  }
}
footer {
  background: #118a75;
  padding: 60px 0px;
}

footer .footer-logo {
  margin-bottom: 40px;
}

footer .footer-do-left-list ul li {
  color: white;
  margin-bottom: 20px;
  display: flex;
  font-size: 14px;
}

footer .footer-do-left-list ul li span:nth-child(1) {
  padding-right: 10px;
}

footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 60px;
}

footer .footer-middle-bottom {
  color: #fff;
  margin-bottom: 35px;
}

footer .footer-middle-bottom .footer-middle-img img {
  border-radius: 5px;
}

footer .footer-middle-bottom a {
  color: #fff;
  margin-top: 10px;
  display: inline-block;
  text-decoration: underline;
}

footer .footer-subscribe-frame input {
  text-align: right;
  border-radius: 6px;
  border: 0px;
  width: 90%;
  padding: 20px;
  margin-bottom: 15px;
}

.footer-right {
  text-align: right;
}

footer .solist-footer li {
  display: inline-block;
  font-size: 22px;
  margin-right: 10px;
}

footer .solist-footer li img {
  width: 40px;
}

footer .solist-footer li:last-child {
  margin-right: 0px;
}

footer .touch-footer-frame {
  margin-top: 30px;
}

footer .touch-footer-frame h4 {
  margin-bottom: 20px;
}

footer .solist-footer li a {
  color: #fff;
}

footer .footer-subscribe-frame button {
  border: 1px solid #fff;
  color: #fff;
  /* border-radius: 3px; */
  background: transparent;
  padding: 6px 30px;
  border-radius: 6px;
}

@media all and (min-width: 120px) and (max-width: 420px) {
  footer {
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }
  footer h4 {
    margin-bottom: 20px;
  }
  footer .footer-do-left-list ul {
    display: -webkit-flexbox;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-pack: center;
    justify-content: center;
    -webkit-flex-line-pack: center;
    align-content: center;
    -webkit-flex-align: center;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .footer-middle-bottom .row {
    display: flex;
    justify-content: space-between;
  }
}
.copyright-sec {
  background-color: #0e4f66;
}
.copyright-sec p {
  font-size: 12px;
  padding: 25px 0;
  line-height: 1px;
  color: white;
  text-align: center;
}

@media all and (min-width: 768px) {
  .copyright-sec p {
    font-size: 14px;
  }
}
.slick-slider {
  margin-bottom: 0;
}

.creative-element {
  position: absolute;
  z-index: -1;
}

.home-slider .slick-slider {
  margin-bottom: 0;
}
.home-slider .home-slider-box {
  position: relative;
}
.home-slider .home-slider-box .home-banner-img {
  width: 100%;
}
.home-slider .home-slider-box .home-slider-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
}
.home-slider .home-slider-box .home-txt-head {
  font-size: 40px;
  line-height: 40px;
}
.home-slider .home-slider-box .home-txt-head span {
  display: block;
}
.home-slider .home-slider-box .home-txt-subhead {
  font-size: 25px;
  line-height: 25px;
  padding-top: 30px;
}
.home-slider .home-slider-box .home-txt-link {
  margin-top: 50px;
}
.home-slider .home-slider-box .home-txt-link a {
  border: 1px solid #ffffff;
  font-size: 16px;
  padding: 10px 30px;
  color: #ffffff;
  border-radius: 5px;
}

.your-partner {
  display: flex;
  position: relative;
}
.your-partner .your-partner-left {
  width: 50%;
}
.your-partner .your-partner-left img {
  width: 100%;
}
.your-partner .your-partner-right {
  position: relative;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7faf9;
}
.your-partner .your-partner-right .your-partner-text-sec {
  max-width: 480px;
  text-align: center;
}
.your-partner .your-partner-right .your-partner-head {
  font-size: 30px;
  line-height: 1.1;
  color: #0e4f66;
}
.your-partner .your-partner-right .your-partner-head span {
  display: block;
}
.your-partner .your-partner-right .your-partner-subhead {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 34px;
  color: #000000;
}
.your-partner .your-partner-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}
.your-partner .your-partner-icon {
  text-align: center;
  width: 125px;
}
.your-partner .your-partner-icon-txt {
  padding-top: 10px;
  font-size: 16px;
  color: #000000;
}
.your-partner .your-partner-link {
  margin-top: 60px;
}
.your-partner .your-partner-link a {
  border: 1px solid #118975;
  font-size: 16px;
  padding: 8px 40px;
  color: #000000;
  border-radius: 5px;
}
.your-partner .your-partner-1 {
  bottom: 30px;
  left: 30px;
}
.your-partner .your-partner-2 {
  top: 50px;
  right: 0px;
}

.your-professional {
  position: relative;
  flex-direction: row-reverse;
}
.your-professional .your-partner-icon {
  width: 120px;
}
.your-professional .your-professionals-element-1 {
  top: 5px;
  left: 0;
}

.how-it-works {
  position: relative;
}
.how-it-works .how-it-works-container {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.how-it-works .how-it-works-left {
  max-width: 325px;
}
.how-it-works .how-it-works-right {
  max-width: 662px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.how-it-works .how-it-work-text-sec {
  text-align: center;
}
.how-it-works .how-it-works-head {
  font-size: 30px;
  line-height: 1.1;
  color: #0e4f66;
}
.how-it-works .how-it-works-txt {
  font-size: 14px;
  line-height: 1.5;
  padding-top: 34px;
  color: #000000;
}
.how-it-works .how-it-works-subhead {
  font-size: 18px;
  line-height: 1.4;
  color: #0e4f66;
  font-weight: 600;
  padding-top: 25px;
  padding-bottom: 30px;
}
.how-it-works .how-it-works-subhead span {
  display: block;
}
.how-it-works .how-it-works-list {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}
.how-it-works .how-it-works-list li {
  padding: 0 30px;
  position: relative;
  font-size: 18px;
  color: #414042;
  font-weight: 600;
}
.how-it-works .how-it-works-list li::before {
  content: "";
  background: url("../images/home-page/bullets.png");
  width: 18px;
  height: 13px;
  position: absolute;
  left: 0px;
  top: 5px;
}
.how-it-works .how-it-works-1 {
  top: 30%;
  left: 30px;
}
.how-it-works .how-it-works-2 {
  top: 30%;
  right: 0;
}

.quality {
  background: #0e4f66;
  padding: 50px 0;
}
.quality .slick-slider {
  margin-bottom: 0;
}
.quality .quality-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.quality .quality-container .quality-left {
  width: 254px;
}
.quality .quality-container .quality-right {
  width: 406px;
}
.quality .quality-container .quality-head {
  font-size: 30px;
  line-height: 1.1;
  color: #ffffff;
}
.quality .quality-container .quality-head span {
  display: block;
}
.quality .quality-container .quality-subhead {
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
  margin-top: 20px;
}
.quality .quality-container .quality-link {
  margin-top: 30px;
}
.quality .quality-container .quality-link a {
  border: 1px solid #ffffff;
  font-size: 12px;
  padding: 10px 30px;
  color: #ffffff;
  border-radius: 5px;
}

.home-testimonials {
  padding: 50px 0;
  position: relative;
}
.home-testimonials .home-testimonials-heading {
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  color: #0e4f66;
}
.home-testimonials .home-testimonials-container {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}
.home-testimonials .testimonials-head {
  text-align: center;
  color: #118975;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}
.home-testimonials .testimonials-left, .home-testimonials .testimonials-right {
  width: 350px;
}
.home-testimonials .testimonials-boxes {
  margin-top: 40px;
}
.home-testimonials .testimonials-box {
  border: 1px solid #118975;
  border-radius: 59px;
  padding: 50px 30px;
  min-height: 270px;
}
.home-testimonials .testimonials-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}
.home-testimonials .testimonials-authar {
  font-size: 18px;
  font-weight: 600;
  color: #118975;
  padding-top: 30px;
}
.home-testimonials .testimonials-1 {
  top: 55px;
  left: 0px;
}
.home-testimonials .testimonials-2 {
  right: 0;
  bottom: 55px;
}

.home-logo-sec {
  background: #fdf8ec;
  padding: 50px 0;
}
.home-logo-sec .home-logo-heading {
  text-align: center;
  font-size: 30px;
  line-height: 1.1;
  color: #0e4f66;
}
.home-logo-sec .home-logo-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 30px;
}
.home-logo-sec .home-logo-box {
  margin: 0 40px;
  display: flex;
  align-items: center;
}

/*********about-us*************/
.banner-section {
  position: relative;
}
.banner-section img {
  width: 100%;
}
.banner-section .banner-section-txt-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.banner-section .banner-section-txt {
  color: #ffffff;
  font-size: 40px;
  line-height: 40px;
}
.banner-section .banner-section-txt span {
  display: block;
}
.banner-section .get-started-link {
  margin-top: 30px;
}
.banner-section .get-started-link a {
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 30px;
  border-radius: 5px;
}

.mission-vision {
  position: relative;
  padding-top: 90px;
}
.mission-vision .mission-vision-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.mission-vision .mission-vision-left, .mission-vision .mission-vision-right {
  width: 50%;
}
.mission-vision .mission-vision-heading {
  font-size: 30px;
  color: #0e4f66;
  line-height: 30px;
}
.mission-vision .mission-vision-subheading {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  padding-top: 35px;
}
.mission-vision .vision-sec-subheading {
  color: #118a75;
}
.mission-vision .mission-sec-subheading {
  color: #f8b325;
}
.mission-vision .mission-vision-lists-head {
  font-size: 14px;
  line-height: 1.5;
  color: #414042;
  padding-top: 25px;
}
.mission-vision .mission-vision-lists {
  padding-left: 25px;
  padding-top: 25px;
}
.mission-vision .mission-vision-lists li {
  font-size: 15px;
  color: #6d6e71;
  position: relative;
  padding-bottom: 15px;
}
.mission-vision .mission-vision-lists li::before {
  content: "";
  width: 20px;
  height: 13px;
  position: absolute;
  left: -25px;
  top: 5px;
}
.mission-vision .mission-vision-lists li span {
  font-weight: 600;
  display: block;
}
.mission-vision .vision-lists li::before {
  background: url("../images/about-us/blue-bullets.png");
}
.mission-vision .mission-lists li::before {
  background: url("../images/about-us/yellow-bullets.png");
}
.mission-vision .vision-sec {
  padding-right: 60px;
  border-right: 1px solid #769ba8;
}
.mission-vision .mission-sec {
  padding-left: 60px;
}
.mission-vision .aboutus-creative-1 {
  top: 50px;
  left: 0;
}
.mission-vision .aboutus-creative-2 {
  top: 100px;
  right: 0;
}
.mission-vision .aboutus-creative-3 {
  top: 30%;
  left: 30%;
}
.mission-vision .aboutus-creative-4 {
  right: 100px;
  bottom: 50px;
}

.values-why {
  padding-bottom: 100px;
}

/*****employers*********/
.how-locums {
  padding-top: 75px;
  position: relative;
  z-index: 9;
}
.how-locums .how-locums-container {
  max-width: 872px;
  margin: 0 auto;
  text-align: center;
}
.how-locums .how-locums-heading {
  font-size: 30px;
  color: #0e4f66;
}
.how-locums .how-locums-para {
  font-size: 14px;
  color: #58595b;
  padding: 20px 50px 75px;
  position: relative;
}
.how-locums .how-locums-para::after {
  content: "";
  position: absolute;
  width: 323px;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0e4f66;
}
.how-locums .locums-tenens-heading {
  font-size: 30px;
  color: #0e4f66;
}
.how-locums .locums-tenens-heading {
  font-size: 30px;
  color: #0e4f66;
}
.how-locums .locums-tenens-para {
  font-size: 14px;
  color: #58595b;
  padding: 20px 10px;
}
.how-locums .locums-tenens-para span {
  display: block;
}
.how-locums .locums-tenens-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.how-locums .locums-tenens-box {
  text-align: center;
  font-size: 14px;
  margin: 0px 6px;
  width: 205px;
}
.how-locums .locums-tenens-box-txt {
  padding-top: 10px;
}

.first-choice {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.first-choice .first-choice-left {
  position: relative;
  width: 538px;
}
.first-choice .first-choice-left img {
  width: 100%;
  height: 100%;
}
.first-choice .first-choice-left .first-choice-head {
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.first-choice .first-choice-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7faf9;
  width: 902px;
  flex-wrap: wrap;
}
.first-choice .first-choice-boxes {
  display: flex;
  width: 65%;
  justify-content: space-around;
  flex-wrap: wrap;
}
.first-choice .first-choice-box {
  text-align: center;
  margin-bottom: 30px;
  width: 150px;
}
.first-choice .first-choice-right-heading {
  text-align: center;
  color: #0e4f66;
  font-size: 24px;
}

.how-locums-works {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 9;
}
.how-locums-works .how-locums-works-container {
  max-width: 872px;
  margin: 0 auto;
  text-align: center;
}
.how-locums-works .how-locums-works-heading {
  font-size: 30px;
  color: #0e4f66;
  border: 1px solid #0e4f66;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 5px;
}
.how-locums-works .how-locums-works-txt {
  color: #6d6e71;
  font-size: 14px;
  padding-top: 30px;
}
.how-locums-works .how-locums-works-txt span {
  display: block;
}
.how-locums-works .how-locums-works-boxes {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.how-locums-works .how-locums-works-box {
  text-align: center;
  margin: 0 60px;
}
.how-locums-works .how-locums-works-box span {
  display: block;
}
.how-locums-works .how-locums-works-box span:first-child {
  font-size: 14px;
  padding-top: 30px;
}
.how-locums-works .how-locums-works-box span:nth-child(2) {
  font-size: 18px;
  color: #118975;
}

.get-quality-phisian {
  background: #fcf2e2;
  padding-top: 90px;
  padding-bottom: 70px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.get-quality-phisian .get-quality-phisian-heading {
  font-size: 30px;
  color: #0e4f66;
}
.get-quality-phisian .get-quality-phisian-signup {
  margin-top: 50px;
}
.get-quality-phisian .get-quality-phisian-signup a {
  border: 1px solid #0e4f66;
  text-decoration: none;
  font-size: 14px;
  color: #6d6e71;
  padding: 5px 30px;
  border-radius: 5px;
}

.employers-new-1 {
  top: 100px;
  right: -10%;
}

.employers-new-2 {
  top: 200px;
  left: 0;
}

.employers-new-3 {
  top: 100px;
  left: -50px;
}

.employers-new-4 {
  top: 100px;
  right: -50px;
}

.employers-new-5 {
  top: 30px;
  left: 100px;
}

.employers-new-6 {
  top: 30px;
  right: -50px;
}

/*************long term***************/
.long-term-para {
  padding-top: 75px;
  position: relative;
  padding-bottom: 25px;
  z-index: 9;
}
.long-term-para .how-locums-container {
  max-width: 872px;
  margin: 0 auto;
  text-align: center;
}
.long-term-para .how-locums-heading {
  font-size: 30px;
  color: #0e4f66;
}
.long-term-para .how-locums-para {
  font-size: 17px;
  color: #58595b;
  padding: 20px 50px 30px;
  position: relative;
}
.long-term-para .locums-tenens-heading {
  font-size: 30px;
  color: #0e4f66;
}
.long-term-para .locums-tenens-heading {
  font-size: 30px;
  color: #0e4f66;
}
.long-term-para .locums-tenens-para {
  font-size: 14px;
  color: #58595b;
  padding: 20px 10px;
}
.long-term-para .locums-tenens-para span {
  display: block;
}
.long-term-para .locums-tenens-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.long-term-para .locums-tenens-box {
  text-align: center;
  font-size: 14px;
  margin: 0px 6px;
  width: 205px;
}
.long-term-para .locums-tenens-box-txt {
  padding-top: 10px;
}
.long-term-para .long-term-para-link a {
  border: 1px solid #0e4f66;
  text-decoration: none;
  font-size: 17px;
  color: #231f20;
  padding: 10px 30px;
  border-radius: 5px;
}

.long-term {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.long-term .first-choice-left {
  position: relative;
  width: 610px;
}
.long-term .first-choice-left img {
  width: 100%;
  height: 100%;
}
.long-term .first-choice-left .first-choice-head {
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.long-term .first-choice-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7faf9;
  width: 830px;
  flex-wrap: wrap;
}
.long-term .first-choice-boxes {
  display: flex;
  width: 75%;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: -90px;
}
.long-term .first-choice-box {
  text-align: center;
  margin-bottom: 30px;
  width: 180px;
}
.long-term .first-choice-right-heading {
  text-align: center;
  color: #0e4f66;
  font-size: 24px;
}

/*****credentialing pages*********/
.pro-end-to-end {
  position: relative;
}
.pro-end-to-end .pro-end-to-end-container {
  max-width: 886px;
  margin: 0 auto;
  text-align: center;
}
.pro-end-to-end .pro-end-to-end-head {
  font-size: 25px;
  color: #0e4f66;
  margin-top: 80px;
}
.pro-end-to-end .pro-end-to-end-img {
  margin-top: 70px;
  margin-bottom: 50px;
}
.pro-end-to-end .credentialing-graphics1 {
  top: 100px;
  left: 50px;
}
.pro-end-to-end .credentialing-graphics2 {
  top: 100px;
  right: 0px;
}
.pro-end-to-end .credentialing-graphics3 {
  bottom: 100px;
  left: 70px;
}
.pro-end-to-end .credentialing-graphics4 {
  bottom: 20px;
  right: 70px;
}

.digital-credentials {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.digital-credentials .digital-credentials-img {
  width: 538px;
}
.digital-credentials .digital-credentials-img img {
  width: 100%;
  height: 100%;
}
.digital-credentials .digital-credentials-txt {
  width: 902px;
  background: #f7faf9;
}
.digital-credentials .digital-credentials-txt .digital-credentials-sec-inner {
  max-width: 75%;
  margin: 0 auto;
}
.digital-credentials .digital-credentials-txt .digital-credentials-head {
  text-align: center;
  padding-top: 30px;
}
.digital-credentials .digital-credentials-txt .digital-credentials-head span {
  font-size: 28px;
  color: #0e4f66;
  border: 1px solid #0e4f66;
  display: inline-block;
  padding: 0px 20px;
  border-radius: 5px;
}
.digital-credentials .digital-credentials-txt .digital-credentials-subhead {
  padding-top: 20px;
  font-size: 20px;
  line-height: 1.3;
  color: #0e4f66;
}
.digital-credentials .digital-credentials-txt .digital-credentials-lists {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.digital-credentials .digital-credentials-txt .digital-credentials-list {
  width: 270px;
  padding-left: 30px;
  flex-wrap: wrap;
}
.digital-credentials .digital-credentials-txt .digital-credentials-list li {
  font-size: 14px;
  color: #414042;
  padding-bottom: 5px;
  position: relative;
}
.digital-credentials .digital-credentials-txt .digital-credentials-list li::before {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  left: -30px;
  top: -5px;
  background: url("../images/credentialing/YellowBullet.png");
}

.real-time-location {
  background: #ffffff;
}
.real-time-location .credentialing-graphics5 {
  top: -20px;
  left: 20px;
}
.real-time-location .credentialing-graphics6 {
  top: -20px;
  right: 50px;
}

/****why-prolocums**********/
.why-prolocums-sec {
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
}
.why-prolocums-sec .why-prolocums-container {
  max-width: 960px;
  margin: 0 auto;
}
.why-prolocums-sec .why-prolocums-head {
  font-size: 30px;
  color: #0e4f66;
  text-align: center;
}
.why-prolocums-sec .why-prolocums-subhead {
  font-size: 14px;
  color: #58595b;
  text-align: center;
  padding-top: 25px;
}
.why-prolocums-sec .why-prolocums-subhead span {
  display: block;
}
.why-prolocums-sec .why-prolocums-boxes {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.why-prolocums-sec .why-prolocums-box {
  width: 190px;
  position: relative;
}
.why-prolocums-sec .why-prolocums-box::after {
  content: "";
  width: 1px;
  height: 100px;
  position: absolute;
  background: #58595b;
  top: 0;
  right: -27px;
}
.why-prolocums-sec .why-prolocums-box:last-child::after {
  content: none;
}
.why-prolocums-sec .why-prolocums-box .why-prolocums-box-head {
  font-size: 18px;
  color: #0e4f66;
}
.why-prolocums-sec .why-prolocums-box .why-prolocums-box-subhead {
  font-size: 14px;
  color: #58595b;
}
.why-prolocums-sec .credentialing-graphics1 {
  top: 50px;
  left: -5%;
}
.why-prolocums-sec .credentialing-graphics2 {
  top: 50px;
  right: -10%;
}

.automate-process-sec {
  display: flex;
}
.automate-process-sec .automate-process-img {
  width: 538px;
}
.automate-process-sec .automate-process-img img {
  width: 100%;
  height: 100%;
}
.automate-process-sec .automate-process-txt {
  background: #f7faf9;
  width: 902px;
}
.automate-process-sec .automate-process-txt-inner {
  max-width: 75%;
  margin: 0 auto;
}
.automate-process-sec .automate-process-head {
  text-align: center;
  padding-top: 50px;
}
.automate-process-sec .automate-process-head span {
  font-size: 28px;
  color: #0e4f66;
  border: 1px solid #0e4f66;
  display: inline-block;
  padding: 0px 20px;
  border-radius: 5px;
}
.automate-process-sec .automate-process-lists {
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.automate-process-sec .automate-process-list {
  width: 290px;
  padding-bottom: 20px;
}
.automate-process-sec .automate-process-list-head {
  font-size: 22px;
  color: #0e4f66;
}
.automate-process-sec ul {
  padding-left: 30px;
  flex-wrap: wrap;
}
.automate-process-sec ul li {
  font-size: 14px;
  color: #414042;
  padding-bottom: 5px;
  position: relative;
}
.automate-process-sec ul li::before {
  content: "";
  width: 23px;
  height: 23px;
  position: absolute;
  left: -30px;
  top: -5px;
  background: url("../images/credentialing/YellowBullet.png");
}

.benifits-prolocums {
  background: #fcf6e5;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9;
}
.benifits-prolocums .benifits-prolocums-txt {
  width: 902px;
}
.benifits-prolocums .benifits-prolocums-img {
  width: 538px;
}
.benifits-prolocums .benifits-prolocums-img img {
  width: 100%;
  height: 100%;
}
.benifits-prolocums .benifits-prolocums-inner {
  max-width: 75%;
  margin: 0 auto;
}
.benifits-prolocums .benifits-prolocums-head {
  text-align: center;
}
.benifits-prolocums .benifits-prolocums-head span {
  font-size: 28px;
  color: #0e4f66;
  border: 1px solid #0e4f66;
  display: inline-block;
  padding: 0px 20px;
  border-radius: 5px;
}
.benifits-prolocums .benifits-prolocums-subhead {
  font-size: 14px;
  color: #58595b;
  text-align: center;
  padding-top: 20px;
}
.benifits-prolocums .benifits-prolocums-lists {
  padding-top: 30px;
  display: flex;
  justify-content: space-evenly;
}
.benifits-prolocums .benifits-prolocums-list {
  padding-left: 30px;
  flex-wrap: wrap;
}
.benifits-prolocums .benifits-prolocums-list li {
  font-size: 14px;
  color: #414042;
  padding-bottom: 5px;
  position: relative;
}
.benifits-prolocums .benifits-prolocums-list li::before {
  content: "";
  width: 20px;
  height: 15px;
  position: absolute;
  left: -30px;
  top: 2px;
  background: url("../images/why-prolocum/Bullet-Blue.png");
}

.faq {
  padding: 90px 0 100px;
  position: relative;
}
.faq .faq-container {
  max-width: 960px;
  margin: 0 auto;
}
.faq .faq-container .faq-sec1 {
  font-size: 25px;
  text-align: center;
  color: #333;
  padding-bottom: 30px;
}
.faq .faq-container .faq-sec1 span {
  font-weight: 600;
  color: #652d91;
}
.faq .faq-container .accordion .accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  margin-bottom: 20px;
}
.faq .faq-container .accordion .accordion-item button[aria-expanded=true] {
  background: #118a75;
}
.faq .faq-container .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 15px 0;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
  line-height: normal;
  text-transform: initial;
}
.faq .faq-container .accordion button:hover {
  cursor: pointer;
  color: #333;
}
.faq .faq-container .accordion button:hover::after,
.faq .faq-container .accordion button:focus::after {
  cursor: pointer;
  color: #333;
}
.faq .faq-container .accordion button .accordion-title {
  padding: 16px 0 16px 16px;
}
.faq .faq-container .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: -1px;
  right: 0;
  width: 52px;
  height: 52px;
  background: #0e4f66;
  border-radius: 0 5px 5px 0;
}
.faq .faq-container .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  width: 18px;
  height: 3px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq .faq-container .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  width: 3px;
  height: 18px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq .faq-container .accordion button[aria-expanded=true] {
  color: #ffffff;
}
.faq .faq-container .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.faq .faq-container .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: none;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  padding-left: 16px;
}
.faq .faq-container .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.faq .faq-container .accordion .accordion-content p {
  font-size: 16.667px;
  font-weight: 300;
  margin: 1em 0;
  line-height: 1.75;
}
.faq .faq-container .accordion .accordion-content ul {
  padding-left: 17px;
  margin: 0;
  list-style: none;
  padding-top: 5px;
}
.faq .faq-container .accordion .accordion-content ul li {
  color: #333;
  font-size: 18px;
  line-height: 1.7;
}
.faq .faq-container .accordion .accordion-content ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #f26537;
  border-radius: 50%;
  float: left;
  margin: 15px 0 0 -1em;
}
.faq .faq-element1 {
  top: 50px;
  left: 50px;
}
.faq .faq-element2 {
  top: 30%;
  right: -50px;
}
.faq .faq-element3 {
  bottom: 50px;
  left: 50px;
}

/********refer earn***********/
.refer-earn {
  padding-top: 70px;
  position: relative;
}
.refer-earn .refer-earn-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.refer-earn .refer-earn-txt {
  font-size: 30px;
  line-height: 1.4;
  color: #0e4f66;
}
.refer-earn .refer-earn-txt span {
  font-size: 39px;
  display: block;
}
.refer-earn .refer-earn-help-txt {
  font-size: 20px;
  color: #118a75;
  padding-top: 50px;
}
.refer-earn .refer-earn-share-txt {
  font-size: 14px;
  color: #414042;
  padding-top: 30px;
}
.refer-earn .refer-earn-socialicon {
  padding-top: 40px;
}
.refer-earn .refer-earn-socialicon a {
  margin: 0 15px;
}
.refer-earn .refer-earn-socialicon img {
  width: 50px;
}
.refer-earn .refer-now-link {
  padding-top: 40px;
}
.refer-earn .refer-now-link a {
  border: 1px solid #118975;
  color: #000000;
  padding: 7px 35px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 5px;
}
.refer-earn .refer-now-link a:hover {
  background: #0e4f66;
  color: #ffffff;
}
.refer-earn .refer-element1 {
  top: 50px;
  left: -5px;
}
.refer-earn .refer-element2 {
  top: 50px;
  right: -50px;
}

.refer-form {
  padding-top: 100px;
  padding-bottom: 100px;
}
.refer-form .refer-form-container {
  max-width: 750px;
  margin: 0 auto;
  background: #0e4f66;
  border-radius: 20px;
}
.refer-form form {
  padding: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.refer-form .refer-group {
  width: 45%;
  margin-bottom: 40px;
}
.refer-form .refer-group input {
  width: 100%;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 5px 0 5px 20px;
  background: transparent;
  color: #ffffff;
}
.refer-form .refer-group input::-moz-placeholder {
  color: #ffffff;
}
.refer-form .refer-group input:-ms-input-placeholder {
  color: #ffffff;
}
.refer-form .refer-group input::placeholder {
  color: #ffffff;
}
.refer-form .refer-group:last-child {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
.refer-form .refer-group:last-child button {
  width: 295px;
  padding: 5px;
  color: #0e4f66;
  font-size: 20px;
  border: 0;
  border-radius: 5px;
  font-weight: bold;
}
.refer-form .refer-group:last-child button:hover {
  background: #118975;
  color: #ffffff;
}
/**********signup**************/
.signup {
  display: flex;
}
.signup .signup-left, .signup .signup-right {
  width: 50%;
}
.signup .signup-left {
  background: #e5e5e5;
  border-left: 5px solid #0e4f66;
}
.signup .signup-txtsec {
  padding: 15% 5% 10% 25%;
}
.signup .signup-txt {
  color: #0e4f66;
  font-size: 25px;
  line-height: 1.4;
}
.signup .signup-head {
  color: #118a75;
  font-size: 30px;
  line-height: 0.8;
  padding-top: 25px;
}
.signup .signup-list {
  padding-top: 20px;
}
.signup .signup-list ul li {
  font-size: 15px;
  line-height: 1.3;
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
.signup .signup-list ul li::before {
  content: "";
  background: url("../images//signup/bullets.png");
  width: 20px;
  height: 14px;
  position: absolute;
  left: 0px;
  top: 5px;
}
.signup .signup-right {
  background: #0e4f66;
  padding: 6% 15% 10% 5%;
}
.signup .signup-right .signup-form {
  width: 100%;
}
.signup .signup-right .signup-group {
  padding-top: 30px;
  position: relative;
}
.signup .signup-right .signup-group input, .signup .signup-right .signup-group button {
  width: 100%;
}
.signup .signup-right .signup-group input {
  width: 100%;
  border: 1px solid #ffffff;
  border-radius: 5px;
  padding: 5px 0 5px 35px;
  background: transparent;
  color: #ffffff;
}
.signup .signup-right .signup-group input::-moz-placeholder {
  color: #ffffff;
}
.signup .signup-right .signup-group input:-ms-input-placeholder {
  color: #ffffff;
}
.signup .signup-right .signup-group input::placeholder {
  color: #ffffff;
}
.signup .signup-right .signup-group button {
  padding: 5px;
  color: #0e4f66;
  font-size: 20px;
  border: 0;
  border-radius: 5px;
  font-weight: bold;
}
.signup .signup-right .signup-group button:hover {
  background: #118975;
  color: #ffffff;
}
.signup .signup-right .signup-group .input-icon {
  position: absolute;
  left: 5px;
  bottom: 8px;
  width: 18px;
}
.signup .signup-right .forgot-password {
  text-align: right;
  padding-top: 30px;
}
.signup .signup-right .forgot-password a {
  color: #ffffff;
}

.signup-bottom-txtsec {
  text-align: center;
}
.signup-bottom-txtsec .signup-bottom-txt {
  font-size: 30px;
  line-height: 1.2;
  color: #0e4f66;
  padding: 40px 0;
}

/************tele medicine**********/
.telemedicine {
  padding-top: 100px;
  padding-bottom: 10px;
  position: relative;
}
.telemedicine .why-prolocums-container {
  max-width: 770px;
  margin: 0 auto;
}
.telemedicine .why-prolocums-head {
  font-size: 20px;
  color: #0e4f66;
  text-align: center;
  padding-top: 30px;
}
.telemedicine .why-prolocums-subhead {
  font-size: 14px;
  color: #58595b;
  text-align: center;
  padding-top: 25px;
}
.telemedicine .why-prolocums-subhead span {
  display: block;
}
.telemedicine .why-prolocums-boxes {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.telemedicine .why-prolocums-box {
  width: 173px;
  position: relative;
  text-align: center;
}
.telemedicine .why-prolocums-box::after {
  content: "";
  width: 1px;
  height: 65px;
  position: absolute;
  background: #58595b;
  top: 0;
  right: -15px;
}
.telemedicine .why-prolocums-box:last-child::after {
  content: none;
}
.telemedicine .why-prolocums-box .why-prolocums-box-head {
  font-size: 18px;
  color: #0e4f66;
}
.telemedicine .why-prolocums-box .why-prolocums-box-subhead {
  font-size: 14px;
  color: #58595b;
}
.telemedicine .credentialing-graphics1 {
  top: 50px;
  left: -5%;
}
.telemedicine .credentialing-graphics2 {
  top: 50px;
  right: -10%;
}
.telemedicine .telemedicine-term-para-link {
  text-align: center;
  margin-top: 45px;
}
.telemedicine .telemedicine-term-para-link a {
  border: 1px solid #0e4f66;
  text-decoration: none;
  font-size: 17px;
  color: #231f20;
  padding: 10px 30px;
  border-radius: 5px;
}

.telemedicine-why {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.telemedicine-why .first-choice-left {
  position: relative;
  width: 610px;
}
.telemedicine-why .first-choice-left img {
  width: 100%;
  height: 100%;
}
.telemedicine-why .first-choice-left .first-choice-head {
  font-size: 30px;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.telemedicine-why .first-choice-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7faf9;
  width: 830px;
  flex-wrap: wrap;
}
.telemedicine-why .first-choice-boxes {
  display: flex;
  width: 85%;
  flex-wrap: wrap;
}
.telemedicine-why .first-choice-box {
  display: flex;
  padding-bottom: 20px;
}
.telemedicine-why .first-choice-box .first-choice-content {
  padding-left: 10px;
}
.telemedicine-why .first-choice-box .first-choice-content .first-choice-box-head {
  font-size: 20px;
  color: #0e4f66;
}
.telemedicine-why .first-choice-box .first-choice-content .first-choice-txt {
  display: flex;
}
.telemedicine-why .first-choice-box .first-choice-content .first-choice-txt span {
  padding-right: 15px;
}

@media (max-width: 767px) {
  .creative-element {
    display: none;
  }
  .home-slider .home-slider-box .home-slider-txt {
    width: 100%;
    padding: 0 20px;
  }
  .home-slider .home-slider-box .home-txt-head {
    font-size: 20px;
    line-height: 20px;
  }
  .home-slider .home-slider-box .home-txt-head span {
    display: inline;
  }
  .home-slider .home-slider-box .home-txt-subhead {
    font-size: 16px;
    line-height: 16px;
    padding-top: 10px;
  }
  .home-slider .home-slider-box .home-txt-link {
    margin-top: 20px;
  }
  .your-partner {
    flex-wrap: wrap;
  }
  .your-partner .your-partner-left {
    width: 100%;
  }
  .your-partner .your-partner-right {
    width: 100%;
    padding: 50px 0;
  }
  .your-partner .your-partner-icons {
    justify-content: center;
    padding-top: 30px;
  }
  .your-partner .your-partner-link {
    margin-top: 30px;
  }
  .how-it-works .how-it-works-container {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column-reverse;
  }
  .how-it-works .how-it-works-left {
    max-width: 100%;
    text-align: center;
  }
  .how-it-works .how-it-works-right {
    max-width: 100%;
    padding: 20px 20px;
  }
  .how-it-works .how-it-works-list {
    flex-wrap: wrap;
  }
  .quality .quality-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .quality .quality-container .quality-left {
    width: 100%;
    text-align: center;
    padding: 20px 20px;
  }
  .quality .quality-container .quality-right {
    width: 100%;
  }
  .quality .quality-container .how-it-work-text-sec {
    text-align: center;
  }
  .home-testimonials .home-testimonials-heading {
    padding: 20px;
  }
  .home-testimonials .home-testimonials-container {
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  /**********mission-vision********/
  .banner-section .banner-section-txt {
    font-size: 20px;
    line-height: 20px;
  }
  .banner-section .banner-section-txt span {
    display: inline;
  }
  .mission-vision {
    padding-top: 50px;
  }
  .mission-vision .mission-vision-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
  }
  .mission-vision .mission-vision-left, .mission-vision .mission-vision-right {
    width: 100%;
  }
  .mission-vision .vision-sec {
    border-right: 0;
    padding-right: 0;
  }
  .mission-vision .mission-sec {
    padding-left: 0;
  }
  /**credentialling*******/
  .pro-end-to-end .pro-end-to-end-head {
    font-size: 20px;
  }
  .pro-end-to-end .pro-end-to-end-img img {
    width: 100%;
  }
  .digital-credentials {
    flex-wrap: wrap;
  }
  .digital-credentials .digital-credentials-img {
    width: 100%;
  }
  .digital-credentials .digital-credentials-txt {
    width: 100%;
  }
  .digital-credentials .digital-credentials-txt .digital-credentials-sec-inner {
    max-width: 95%;
  }
  .why-prolocums-sec {
    padding-top: 50px;
  }
  .why-prolocums-sec .why-prolocums-container {
    padding: 0 20px;
  }
  .why-prolocums-sec .why-prolocums-head {
    font-size: 25px;
  }
  .why-prolocums-sec .why-prolocums-subhead span {
    display: inline;
  }
  .why-prolocums-sec .why-prolocums-boxes {
    justify-content: center;
    flex-wrap: wrap;
  }
  .why-prolocums-sec .why-prolocums-box {
    margin-bottom: 20px;
    width: 50%;
  }
  .why-prolocums-sec .why-prolocums-box::after {
    content: none;
  }
  .automate-process-sec {
    flex-wrap: wrap;
  }
  .automate-process-sec .automate-process-img {
    width: 100%;
  }
  .automate-process-sec .automate-process-txt {
    background: #f7faf9;
    width: 100%;
  }
  .automate-process-sec .automate-process-txt-inner {
    max-width: 95%;
    margin: 0 auto;
  }
  .automate-process-sec .automate-process-list {
    width: 50%;
  }
  .benifits-prolocums {
    flex-wrap: wrap;
  }
  .benifits-prolocums .benifits-prolocums-txt {
    width: 100%;
    padding: 50px 0;
  }
  .benifits-prolocums .benifits-prolocums-img {
    width: 100%;
  }
  .benifits-prolocums .benifits-prolocums-inner {
    max-width: 95%;
    margin: 0 auto;
  }
  .benifits-prolocums .benifits-prolocums-lists {
    flex-wrap: wrap;
  }
  .first-choice {
    flex-wrap: wrap;
  }
  .first-choice .first-choice-boxes {
    width: 90%;
    padding-top: 20px;
  }
  .how-locums .locums-tenens-box {
    width: 175px;
  }
  .how-locums-works .how-locums-works-boxes {
    flex-wrap: wrap;
  }
  .how-locums-works .how-locums-works-box {
    margin-bottom: 20px;
  }
  .faq {
    padding: 0px 0 100px;
  }
  .faq .faq-container {
    padding: 0 10px;
  }
  .faq .faq-container .accordion button {
    font-size: 14px;
    padding: 0;
    padding-left: 5px;
  }
  .faq .faq-container .accordion button .accordion-title {
    padding: 16px 0 16px 0px;
    display: block;
    width: calc(100% - 52px);
  }
  .faq .faq-container .accordion .accordion-content p {
    font-size: 14px;
  }
  .faq .faq-container .accordion .accordion-content ul li {
    font-size: 14px;
  }
  .refer-earn .refer-earn-container {
    margin: 0 20px;
  }
  .refer-earn .refer-earn-socialicon a {
    margin: 0 5px;
  }
  .refer-earn .refer-earn-socialicon img {
    width: 40px;
  }
  .refer-form .refer-group {
    width: 100%;
  }
  .refer-form .refer-group:last-child button {
    width: 150px;
  }
  .signup {
    flex-wrap: wrap;
  }
  .signup .signup-left, .signup .signup-right {
    width: 100%;
  }
  .signup .signup-right {
    width: 100%;
    padding: 40px;
  }
  .signup .signup-txtsec {
    padding: 40px;
  }
  /********long term ***********/
  .long-term {
    flex-wrap: wrap;
  }
  .long-term .first-choice-left {
    position: relative;
    width: 100%;
  }
  .long-term .first-choice-left img {
    width: 100%;
    height: 100%;
  }
  .long-term .first-choice-right {
    width: 100%;
  }
  .long-term .first-choice-boxes {
    width: 100%;
    margin-top: 0px;
  }
  .long-term .first-choice-right-heading {
    padding: 30px 0;
  }
  /************tele medicine**********/
  .telemedicine {
    padding-top: 30px;
    padding-bottom: 10px;
    position: relative;
  }
  .telemedicine .why-prolocums-container {
    max-width: 100%;
    padding: 0 20px;
  }
  .telemedicine .why-prolocums-subhead {
    font-size: 14px;
    color: #58595b;
    text-align: center;
    padding-top: 25px;
  }
  .telemedicine .why-prolocums-subhead span {
    display: block;
  }
  .telemedicine .why-prolocums-boxes {
    flex-wrap: wrap;
    justify-content: center;
  }
  .telemedicine .why-prolocums-box {
    width: 200px;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
  }
  .telemedicine .why-prolocums-box::after {
    content: none;
  }
  .telemedicine-why {
    flex-wrap: wrap;
  }
  .telemedicine-why .first-choice-left {
    position: relative;
    width: 100%;
  }
  .telemedicine-why .first-choice-left img {
    width: 100%;
    height: 100%;
  }
  .telemedicine-why .first-choice-right {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7faf9;
    width: 100%;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .telemedicine-why .first-choice-boxes {
    display: flex;
    width: 95%;
    flex-wrap: wrap;
  }
  .telemedicine-why .first-choice-box .first-choice-content {
    padding-left: 10px;
  }
  .telemedicine-why .first-choice-box .first-choice-content .first-choice-box-head {
    font-size: 20px;
    color: #0e4f66;
  }
  .telemedicine-why .first-choice-box .first-choice-content .first-choice-txt {
    display: flex;
  }
  .telemedicine-why .first-choice-box .first-choice-content .first-choice-txt span {
    padding-right: 15px;
  }
}/*# sourceMappingURL=style.css.map */