body {
  margin: 0 auto;
  font-size: 15px;
  padding: 0;
  font-family: "Poppins", Open Sans, sans-serif;
  color: #000;
  background-color: #f5f6fa;
}

::selection {
  background-color: #2196f3;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #000;
}

a {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  outline: 0;
  color: #000;
}

a:hover {
  outline: none;
  color: #1d1d1d;
  text-decoration: none;
}

.clear {
  clear: both;
}

img:not(table img) {
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

p {
  font-size: 16px;
  color: #757576;
}

figure {
  margin: 0 auto;
  display: block;
  text-align: center;
}

body.scroll-off {
  overflow: hidden;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-heading {
  color: #000000;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 0;
}

.section {
  margin-top: 50px;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/*==================== User Dropdown Start ===================*/

.user_dropdown {
  display: inline-block;
}

.user_dropdown > a {
  color: #494949;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.user_dropdown img {
  height: 35px;
  width: auto;
  border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
  display: block;
  left: auto;
  right: 0;
  width: 160px;
  overflow-x: hidden;
  padding-bottom: 0;
  box-shadow: 1px 1px 18px 0px rgba(60, 64, 67, 0.1);
  border: none;
  border-radius: 10px;
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.user_name > div {
  white-space: nowrap;
  max-width: calc(160px - 10px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  color: #494949;
  text-transform: capitalize;
  font-size: 15px;
}

.user_name {
  /* padding: 0 10px; */
  /* border-bottom: 1px solid #e9ecef; */
}

.user_name small {
  color: #a2a2a2;
  text-transform: lowercase;
}

.user_name .user_email {
  margin-top: -18px;
}

.user_dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.user_dropdown ul li {
  display: block;
}

.user_dropdown ul li a {
  color: #494949;
  text-transform: capitalize;
  font-size: 14px;
  padding: 5px 0;
  padding-left: 20px;
  display: block;
  border-bottom: 1px solid #e9ecef;
  text-decoration: none;
}

.user_dropdown ul li a i {
  margin-right: 5px;
}

.user_dropdown ul li a:hover {
  background-color: #e9ecef;
}

/*==================== User Dropdown End ===================*/

/* *** loader css start ****  */

.loader-wrapper {
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
  content: "";
  width: 100px;
  height: 100px;
  border: 5px solid rgba(0, 0, 0, 0.05);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1.5s infinite linear;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* *** loader css end  ****  */

/*==================== Header Start ===================*/

#header {
  height: auto;
  display: flex;
  align-items: center;
  /* z-index: 10; */
  position: relative;
  box-shadow: none;
  background: 0 0 !important;
  background-color: #fff !important;
  padding: 30px 0 0;
}

#header.is-sticky {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  transform: translateY(-100%);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  height: 85px;
  border-bottom: 1px solid #ededed;
  z-index: 9;
  padding: 0;
}

#header.is-sticky.awake {
  transform: translateY(0%);
  -webkit-transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
  height: 65px;
}

#header > .container-fluid > .navbar {
  padding-left: 0;
  padding-right: 0;
}

#header .navbar-brand img {
  height: auto;
  width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
  margin-right: 40px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
  margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link {
  color: #424242;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  font-family: "Roboto";
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #2196f3;
}

/* #header .navbar-expand-lg .navbar-nav .nav-link:hover:before,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link:before {
    color: #c72026;
    transform: scaleX(1);
}

#header .navbar-expand-lg .navbar-nav .nav-link:before {
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background: #c72026;
    transform: scaleX(0);
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
} */

#header .dropdown-toggle::after {
  border: none;
  /* height: 8px;
  width: 11px; */
  /* background-image: url(../img/drop_arrow.png); */
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-top: 3px;
}

#header .extra_nav {
  padding-right: 25px;
  margin-left: auto;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
  margin-right: 10px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item:last-child {
  margin-right: 0px;
}

#header .extra_nav .nav-item:list-child {
  margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn {
  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  border-radius: 10px;

  font-size: 18px;

  font-weight: 500;

  padding: 10px 30px;
}

#header .extra_btn:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

#header .sign_up_btn .extra_btn {
  background-color: #2196f3;
  color: #fff !important;
  border: 0;
}

#header .sign_up_btn .extra_btn:hover {
  background-color: #fff;
  color: #2196f3 !important;
}

#header .login_btn .extra_btn {
  background-color: #fff;
  color: #424242 !important;
  border: 0;
}

#header .login_btn .extra_btn:hover {
  background-color: #2196f3;
  color: #fff !important;
}

#header .extra_btn:before {
  display: none;
}

#header .flag_ico {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
  padding-left: 32px;
  padding-right: 5px;
  width: auto;
  font-weight: 400;
  color: #000;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop:hover {
  background-color: #ebebeb;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
  width: 21px;
  height: auto;
  vertical-align: text-bottom;
}

#header .for_mobile {
  display: none;
}

#header .for_desktop {
  display: block;
}

#header .dropdown-item {
  font-weight: 300;
}

/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
  position: relative;
}

.lang_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 80px;
  background-color: #fff;
  color: rgba(255, 255, 255, 0.6);
  right: 0;
  box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
  font-size: 14px;
}

.lang_country {
  position: relative;
  cursor: pointer;
}

.lang_country {
  position: relative;
  padding: 5px 0px 5px 34px;
  color: #494949;
  border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
  max-width: 19px;
}

.lang_country:last-child {
  border-bottom: 0;
}

.lang_country:hover {
  color: #c72026;
  background-color: #ececec;
}

.langugae_filter:hover .lang_dropdown {
  display: block;
}

.navbar-brand {
  font-size: 0;
}

/*==================== Header End ===================*/

/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
  position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
}

.footer-logsign-link:before {
  background-color: #df1f26;
  left: 0;
}

.footer-logsign-link:after {
  background-color: #ec2027;
  right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
  height: 150px;
  align-items: center;
  padding-left: 50px;
  display: flex;
  flex-wrap: wrap;
  padding-right: 10px;
}

.footer-signup-link a {
  background-color: #df1f26;
  padding-left: 0px;
}

.footer-signin-link a {
  background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
  color: #fff;
  font-size: 36px;
  width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
  color: #fff;
  font-size: 15px;
  width: 100%;
  margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  background-color: #d42027;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 23px;
  transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
  background-color: #fff;
  color: #d42027;
}

/*==================== Footer login Signup Section ===================*/

/*==================== Footer ===================*/

.footer-block figure {
  margin: 0 0 30px;
  display: inline-block;
  max-width: 219px;
}

.cts_no {
  font-size: 15px;
  padding: 0 80px 0 0;
}

.cts_no p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.copyright {
  padding: 20px 0;
  border-top: 1px solid #eeeeee;
  color: #ffffff;
  font-size: 14px;
  margin-top: 30px;
  background: #0d47a1;
  text-align: center;
}

.newsletter-form .form-control {
  height: 45px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  background: transparent;
  border: 0;
  border-radius: 3px;
  padding-right: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.relative-box {
  position: relative;
  top: 7px;
}

.relative-box .subscribe-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #827e7e;
  height: 45px;
  font-size: 20px;
  background: no-repeat;
}

.relative-box .subscribe-btn:hover {
  color: #d42027;
}

footer h6 {
  font-size: 17px;
  color: #000;
  margin: 0 0 27px;
  position: relative;
}

ul.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.footer-links li {
  margin: 3px 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

ul.footer-links li a {
  font-size: 18px;
  font-weight: 400;
  color: #2d76f9;
  font-family: "Roboto";
  text-decoration: none;
}

ul.footer-links li a:hover {
  color: #000000;
}

ul.footer-links.socialize li a {
  position: relative;
  padding-left: 25px;
}

ul.footer-links.socialize li a i {
  position: absolute;
  left: -9px;
  width: 30px;
  text-align: center;
  top: -4px;
  color: #959595;
  font-size: 17px;
}

.footer_wrapper {
  background: rgb(220 239 255 / 50%);
  padding: 55px 0 0px;
  border-top: 1px solid #eeeeee;
}

footer h6 {
  font-size: 16px;
  margin: 30px 0 27px;
  font-weight: 600;
  color: #424242;
}

.subscribe_text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.navbar {
  padding: 0;
}

#top-button {
  display: inline-block;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#top-button.show {
  opacity: 1;
  visibility: visible;
}
.back_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #2196f3;
  display: none;
  border: #2196f3 1px solid;
  z-index: 1;
  border-radius: 4px;
}
.back_top span {
  position: relative;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
}
.back_top span svg {
  width: 22px;
  height: 21px;
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}
.back_top:hover {
  border-color: #2196f3;
  color: #2196f3;
  background-color: #fff;
}
.back_top:hover span {
  color: #2196f3;
}

/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
  padding-right: 25px;
}

.mobiledrop {
  position: absolute;
  right: 0px;
  top: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
  height: 21px;
  width: 21px;
  min-width: 21px;
  margin: 0;
  padding: 0;
  opacity: 1;
  appearance: none;
  border: 2px solid #d0d0d0;
  border-radius: 5px;
  background: transparent;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
  border: 2px solid #1295d6;
  background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
  content: "\f00c";
  height: 100%;
  color: #fff;
  font-family: "Font-awesome-5-pro";
  position: absolute;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.custom_radio [type="radio"]:checked + label,
.custom_radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}
.custom_radio [type="radio"]:checked + label:before,
.custom_radio [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #b5b5b5;
  border-radius: 100%;
  background: #fff;
}
.custom_radio [type="radio"]:checked + label::after,
.custom_radio [type="radio"]:not(:checked) + label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #f87da9;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custom_radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.custom_radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.form-control {
  height: 45px;
  font-size: 16px;
  color: rgb(66 66 66 / 60%);
  font-weight: 400;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid #b1b1b1;
  padding: 15px 15px;
}
.form_wrapper_top .form-select {
  height: 45px;
  font-size: 16px;
  color: rgb(66 66 66 / 60%);
  font-weight: 400;
  background-color: #fff;
  border-radius: 10px;
  padding: 0px 15px;
  background-image: url(../img/drop.png);
  background-size: auto;
  border: 0;
  padding-right: 34px;
}
.form-select {
  height: 45px;
  font-size: 16px;
  color: rgb(66 66 66 / 60%);
  font-weight: 400;
  background-color: #fff;
  border-radius: 6px;
  padding: 0px 15px;
  background-image: url(../img/drop.png);
  background-size: auto;
  border: 1px solid #b1b1b1;
  padding-right: 34px;
}
.form-select:focus {
  box-shadow: none;
}
.form-control:focus {
  box-shadow: none;
}

.btn-primary {
  background-color: #2196f3;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 12px 30px;
  border: 1px solid #2196f3;
}

.btn-primary:hover {
  color: #2196f3;
  background-color: transparent;
  border: 1px solid #2196f3;
}

.custom_select_block .ms-dd .ms-dd-header {
  height: 45px;
  font-size: 16px;
  color: rgb(66 66 66 / 60%);
  font-weight: 400;
  background: transparent;
  border-radius: 6px;
  border: 1px solid #b1b1b1;
  overflow: hidden;
  width: 100%;
}
.custom_select_block .ms-dd .ms-dd-header .option-selected {
  height: 45px;
  padding: 10px 25px;
  width: 100%;
}

.custom_select_block .ms-dd .ms-list-option.option-selected,
.ms-dd .ms-optgroup ul .ms-list-option.option-selected {
  background: #ffffff;
  color: rgb(66 66 66 / 60%);
  font-weight: 500;
}
.custom_select_block .ms-dd {
  width: 100%;
}
.custom_select_block .ms-dd .ms-dd-arrow {
  margin-top: -5px;
  right: 25px;
}

/* footer css start */
.follow_us_block {
  margin-top: 60px;
}
.follow_us_block h3 {
  font-size: 16px;
  font-weight: 600;
  color: #424242;
}
.social_link {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.social_link a {
  color: #2d76f9;
}
.social_link a:hover {
  color: #0d47a1;
}
.footer-block {
  padding-bottom: 40px;
  padding-right: 50px;
}
.footer-block p {
  font-weight: 300;
}
/* footer css end */

/* home page css start */
/* employee section css start */
.section_heading {
  text-align: center;
  margin-bottom: 60px;
}
.section_heading h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2196f3;
}

.employee_crad {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.employe_details {
  padding-right: 55px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.employe_details h5 {
  font-size: 16px;
  font-weight: 700;
  color: #212121;
}
.employe_details p {
  font-size: 15px;
  color: rgb(66 66 66 / 50%);
  font-weight: 400;
}
.middle_img_block {
  position: relative;
}

.middle_img_block::before {
  content: "";
  background-image: url(../img/left_arrow.png);
  height: 63px;
  width: 159px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -145px;
  z-index: -1;
}
.middle_img_block::after {
  content: "";
  background-image: url(../img/right-arrow.png);
  height: 75px;
  width: 196px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  z-index: -1;
  background-repeat: no-repeat;
}
.img_block {
  flex: 1;
  position: relative;
}

.last_img {
  position: absolute;
  left: -90px;
  top: 40px;
}
.right_element::after {
  content: "";
  background-image: url(../img/right-arrow2.png);
  height: 58px;
  width: 202px;
  position: absolute;
  right: -20px;
  z-index: -1;
  background-repeat: no-repeat;
  bottom: 40px;
}
/* employee section css end */

/* For Talent section css start */
.for_talent_section {
  background-color: rgb(220 239 255 / 50%);
}
.right_element_2::after {
  content: "";
  background-image: url(../img/right-arrow2.png);
  height: 58px;
  width: 202px;
  position: absolute;
  top: 50%;
  z-index: -1;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  right: -25px;
}
/* For Talent section css end */

/* form section css start */
.form_section {
  background-color: rgb(220 239 255 / 50%);
}
.form_wrapper_top .custom_select_block .ms-dd {
  width: 100%;
  background: transparent;
  margin: 0 !important;
}
.form_wrapper_top .custom_select_block .ms-dd .ms-dd-header {
  border: 1px solid transparent;
  border-radius: 10px;
}
.form_wrapper_top label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  font-family: "roboto";
  margin-bottom: 5px;
  padding-bottom: 0;
}
.form_wrapper_top .ms-dd .ms-dd-arrow.ms-dd-pointer-down {
  border: 7px solid transparent;
  border-top-color: #2196f3;
}

.custom_select_block .btn-secondary {
  background: #edf7ff;
  border: 1px solid #2196f3;
  padding: 10px 25px;
  color: #2196f3;
  font-weight: 400;
}
.custom_select_block .btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  color: #2196f3;
  background-color: #d9eaff;
  border-color: #2196f3;
}
.custom_select_block .btn-check + .btn:hover {
  color: #2196f3;
  background-color: #d9eaff;
  border-color: #2196f3;
}
.custom_radio_block {
  display: flex;
  align-items: center;
  gap: 15px;
}
.form_wrapper_top .input_block {
  /* padding-right: 100px; */
  margin-bottom: 40px;
}

.range_slider_block {
  flex: 1;
}
.range_slider_block .irs--flat .irs-handle {
  top: 8px;
  width: 21px;
  height: 21px;
  border: 2px solid #d7d7d7;
}
.range_slider_block .irs--flat .irs-line {
  height: 4px;
  top: 17px;
}
.range_slider_block .irs--flat .irs-bar {
  height: 4px;
  background-color: #2098f8;
  top: 17px;
}
.range_slider_block .irs-from,
.irs-to,
.irs-single {
  top: 40px;
}
.range_slider_block .irs-to {
  top: 40px;
}
.range_slider_block .irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  padding: 2px 7px;
  background-color: transparent;
  color: #777777;
  font-size: 13px;
  left: 0 !important;
  right: auto !important;
}
.range_slider_block .irs--flat .irs-to {
  padding: 2px 7px;
  background-color: transparent;
  right: 0 !important;
  left: auto !important;
  color: #777777;
  font-size: 13px;
}
.range_slider_block .irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  display: none;
}
.range_slider_block .irs--flat .irs-to:before {
  display: none;
}
.range_slider_block .irs--flat .irs-line {
  background-color: #2196f345;
}
/* form section css end */

/* top from block css start */
.more_option a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.more_option a img {
  margin-left: 10px;
}
.top_form_bg_block {
  background-color: #0d47a1;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  margin-top: -230px;
}

.top_form_bg_block .form-control {
  color: rgb(255 255 255 / 70%);
  border: 1px solid #4558fc;
  font-weight: 400;
  border-radius: 10px;
}
.top_form_bg_block .form-control:focus {
  background-color: transparent;
}
.top_form_bg_block .form-select {
  color: rgb(255 255 255 / 70%);
  border: 1px solid #4558fc;
  background-color: #0d47a1;
  border-radius: 10px;
}
.top_form_bg_block label {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 10px;
}
.top_form_bg_block .btn-primary {
  font-size: 18px;
  font-weight: 700;
  padding: 8px 30px;
  margin-top: 33px;
}
.top_form_bg_block .btn-primary:hover {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
}
.top_form_bg_block .form-control::placeholder {
  color: rgb(255 255 255 / 70%);
}
.more_option_wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
  /* padding-right: 170px; */
}
.more_option .form-select {
  padding-right: 35px;
  border: 0;
  color: #fff;
}
.text_block {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.top_form_bg_block label a {
  color: #fff;
  padding-left: 5px;
}
.label a:hover {
  color: #2196f3;
}
/* top from block css end */

/* hero section css satrt */
.hero_section {
  background-image: url(../img/herobanner.jpg);
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  padding: 120px 0 340px;
  background-position: center;
}

.herobanner_details {
  max-width: 457px;
  margin: auto 0;
}

.herobanner_details h1 {
  font-size: 60px;
  color: #424242;
  font-weight: 700;
}
.herobanner_details h1 span {
  color: #2196f3;
  display: block;
}
.herobanner_details p {
  font-size: 18px;
  color: #424242;
  margin-top: 20px;
}
/* hero section css end */
/* home page css end */

/* Login Page Start*/
.Telant_login_title {
  color: #424242;
  font-size: 26px;
  font-weight: 600;
}

.select_remendor_Block {
  display: flex;
  justify-content: space-between;
  margin-top: 29px;
}

.Telant_login_title {
  color: #424242;
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 60px;
  margin: 0;
}

.form-group {
  margin-bottom: 25px;
}

.login_InnerHeader .login_Job_Button {
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 12px 30px;
  color: #2196f3;
  background-color: transparent;
  text-decoration: none;
  border: 1px solid #2196f3;
}

.login_InnerHeader .login_Job_Button:hover {
  color: #fff;
  background-color: #2196f3;
  border: 1px solid #2196f3;
}

.login_InnerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.btn_group {
  justify-content: left;
}

.formBlock {
  max-width: 409px;
  height: 100%;
  margin-top: 115px;
}

.Login_Telanat_Button {
  margin-top: 45px;
}

.LoginForgotDis {
  color: #8e8e8e;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
}

.login_pages_block {
  position: relative;
  padding: 50px 0;
}

.login_page_wrapper {
  z-index: 1;
}

.login_right_Box::before {
  position: absolute;
  content: "";
  background-color: #0d47a1;
  width: 35%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.login_right_content img {
  width: 653px;
  height: 739px;
  object-fit: cover;
  border-radius: 20px;
}

.login_right_content {
  padding: 50px 0;
}

.formBlock .forn-label {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}
.main_block_heading h2 {
  font-size: 36px;
  font-weight: 600;
  color: #424242;
}
.main_block_heading {
  text-align: center;
}
/* Login Page End*/

/* header css start */
.left_nav_space {
  padding-left: 100px;
}
/* header css end */

/* sign up first Page Start*/
.sign_up_Right_box {
  position: relative;
  font-family: "Roboto";
}

.sign_up_Right_box::before {
  position: absolute;
  content: "";
  background-color: #0d47a1;
  width: 15%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.CreateAccountTitle {
  color: #424242;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  padding-bottom: 10px;
}

.CreateAccountBox {
  max-width: 454px;
  margin: 85px 0 57px;
}

.CreateAccountDis {
  color: #b9b8b8;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.sign_up_pages_block {
  position: relative;
  padding: 50px 0;
  height: 100%;
}

.sign_up_next_button {
  color: #2196f3;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto";
  display: flex;
  align-items: center;
  float: right;
  text-decoration: none;
  position: relative;
  background-color: #fff;
  padding: 0 0 0 10px;
}

.sign_up_next_box {
  position: relative;
  margin-top: 106px;
}

.sign_up_next_box::before {
  background-color: #2196f3;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0px;
  top: 15px;
  z-index: 0;
}

.sign_up_next_button i {
  font-size: 25px;
  padding-left: 10px;
  display: inline-block;
}

/*sign up first Page End*/

/*sign up last Page End*/
.sign_up_last_box {
  position: relative;
  margin-top: 94px;
}

.sign_up_last_block {
  margin-top: 70px;
}

.login_sign_up_block .ms-dd .ms-dd-header .option-selected {
  color: rgba(66, 66, 66, 0.6);
  font-weight: 400;
}

.login_sign_up_block .ms-dd .ms-dd-arrow.ms-dd-pointer-down {
  border: 5px solid transparent;
  border-top-color: #2196f3;
}

.login_sign_up_block .forn-label .fa-info-circle {
  padding-left: 5px;
}

.login_sign_up_block .forn-label {
  padding-bottom: 7px;
  font-weight: 500;
  color: #000000;
}

.sign_accept_title {
  margin: 0;
  font-size: 14px;
  color: rgba(142, 142, 142, 1);
  font-weight: 700;
}

.sing_conditions_title {
  color: rgba(33, 150, 243, 1);
  text-decoration: none;
}

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
  height: 18px;
  width: 18px;
  min-width: 18px;
  border: 1px solid #2196f3;
  margin-top: 3px;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
  font-size: 12px;
}

.sing_up_conditions_box {
  margin: 5px 0;
}

.sing_up_conditions_block {
  margin-top: 22px;
}

.sign_up_Register_Button {
  margin-top: 34px;
}

.sign_up_Register_Button .btn-primary {
  width: 360px;
}

.sign_up_Proceed img {
  width: 100%;
  height: auto;
}

/*  */
.Manage_profile .upload_img_block {
  padding-bottom: 50px;
}

.avatar-upload {
  position: relative;
  margin: 17px auto 49px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.Employer-sign-up-3 .CreateAccountBox {
  margin: 85px 0 17px;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-preview {
  width: 103px;
  height: 103px;
  position: relative;
  border-radius: 100%;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.upload_btn_label label {
  color: rgba(0, 0, 0, 1);
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatarPreviewImgBox {
  background-color: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: rgba(0, 0, 0, 0.5);
}

.Employer_Sign_up .sign_up_next_box {
  margin-top: 170px;
}

textarea.form-control {
  height: 111px;
  font-size: 16px;
  color: rgb(66 66 66 / 60%);
  font-weight: 400;
  border-radius: 6px;
  border: 1px solid #b1b1b1;
  padding: 10px 25px;
}

.Employer_sign_up_4 .sign_up_last_block {
  margin-top: 43px;
}
.main_wrapper {
  height: 100vh;
}
.login_sign_up_block .proceed_check_label {
  padding-bottom: 7px;
  font-weight: 400;
  color: #444;
}
/*sign up last Page End*/

/* Candidate listing Start */
.Candidate_form_box {
  background-color: #0d47a1;
  padding: 50px;
  border-radius: 10px;
  position: relative;
  margin-top: 0px;
}

.Candidate_listing_block .more_option_wrapper {
  padding-right: 0px;
}

.Candidate_search_btn.btn-primary {
  font-weight: 400;
  padding: 8px 22px;
  border-radius: 10px;
  color: #000000;
  margin-top: 10px;
  background-color: #fff;
}

/* .Candidate_search_btn {
  display: flex;
  justify-content: end;
  align-items: center;
} */

.SendRequestsBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  flex-wrap: wrap;
}

.candidate_title_pages {
  font-size: 20px;
  color: #424242;
  font-weight: 600;
}

.candidatesFoundBlock {
  margin-top: 40px;
}

.candidatesFoundMainBox {
  border: 1px solid #7ec6ff;
  padding: 15px;
  border-radius: 15px;
  display: block;
  text-decoration: none;
  height: 100%;
}
.candidatesFoundMainBox:hover {
  border: 1px solid #0d47a1;
  box-shadow: 0px 43px 138px rgba(0, 0, 0, 0.07),
    0px 9.60461px 30.8241px rgba(0, 0, 0, 0.0417275),
    0px 2.85954px 9.17714px rgba(0, 0, 0, 0.0282725);
}
.condidate_check_title {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.condidate_title_Sub {
  color: #656c73;
  font-size: 12px;
  display: block;
  margin: 0;
}

.CheckShortliststar {
  text-align: center;
  margin: -5px 0;
}

.CheckShortlistBox {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.condidateIconTitle {
  color: rgba(66, 66, 66, 0.5);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.condidateListinIcon {
  display: flex;
  gap: 15px;
  align-items: center;
  padding-top: 20px;
}

.condidateClassifiBox {
  padding-top: 19px;
}

.condidateExperienceBox {
  padding-top: 30px;
}

.condidateRetailtitle {
  font-size: 12px;
  color: #2196f3;
  font-weight: 400;
  margin: 0;
}

.condidateRetailBox {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  gap: 0;
}

.classification_title {
  font-size: 12px;
  color: #000000;
  font-weight: 400;
  margin: 0;
}

.condidateExperienceBox .classification_title {
  padding-bottom: 5px;
}

.classification_Sub_title {
  color: #2196f3;
  font-size: 12px;
  margin: 0;
  font-weight: 700;
}

.totalExperinceDis p {
  color: #424242;
  font-size: 12px;
  margin: 0;
  font-weight: 400;
  padding-top: 14px;
}

.perfectCandititle h3 {
  font-size: 33px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 10px;
}

.perfectCandidateBox {
  position: relative;
}

.perfectCandititle {
  position: absolute;
  margin-top: -230px;
  margin-left: 28px;
}

.perfectCandidateBox img {
  height: 600px;
  object-fit: cover;
  width: 300px;
}

.perfectCandititle .btn-primary:hover {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
}

.SendRequestsBox .btn-primary {
  font-size: 14px;
  font-weight: 700;
}

.more_option a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}
.Candidate_listing_block .form_wrapper_top {
  margin-top: 20px;
  padding: 20px 50px;
  border-radius: 10px;
}

/*  */
.talent_pagination {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.talent_pagination .page-link {
  color: #1c1c1c;
  font-weight: 700;
  padding: 7px 20px;
}
.talent_pagination .page-link:focus {
  box-shadow: none;
}

/* Candidate listing End */
/* verify Enail */
.verify_Email_block {
  padding: 23px;
  background: #ffffff;
  border: 1px solid #f8f9fa;
  box-shadow: 4px 4px 20px rgba(220, 220, 220, 0.692);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 80px auto;
}
.sent_Email_box img {
  width: 110px;
  height: 110px;
  margin: 20px 0 20px;
}
.chengeEmailBox {
  padding-bottom: 15px;
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.Email_box_title {
  font-size: 26px;
  color: #444;
  font-weight: 500;
  padding: 20px 0;
}
.chengeEmailBox a {
  display: block;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 30px 10px;
  border: 1px solid #2196f3;
  background-color: #2196f3;
  color: #fff;
  text-decoration: none;
}
.chengeEmailBox a:hover {
  background-color: #fff;
  border: 1px solid #2196f3;
  color: #2196f3;
}
.EmailDisTitle {
  display: block;
  text-align: center;
  max-width: 500px;
  color: #545454;
  font-weight: 500;
  padding: 20px 0 30px;
}
/*  */

.pagetitle-wrapper {
  text-align: center;
  background: #2196f3;
  color: #fff;
  padding: 37px 0;
}
.pagetitle-wrapper .pages-title {
  color: #fff;
}
.cmsContent .form-control {
  font-size: 15px;
  border: solid 1px #f5f8fa;
  background: #f5f8fa;
  height: 50px;
  border-radius: 6px;
}
.cmsContent {
  padding: 45px 0 50px;
}
.cmsContent .form-group {
  margin: 0 0 30px;
}

/* contact-us page */

/* Contact-us */
.contactus_block h2 {
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 26px;
}
.contactus_block .shortmsg {
  font-size: 16px;
  color: #868686;
}

.contactus_block .form-group label {
  font-size: 15px;
  color: #959595;
  margin: 0 0 2px;
}

.contactus_form textarea {
  height: 120px;
  resize: none;
}

.contactD-bx {
  max-width: 330px;
  padding-left: 70px;
  margin: 0 0 40px;
  font-size: 16px;
}

.contactD-bx span {
  display: block;
  font-size: 15px;
  color: #666;
}

.contactD-bx svg {
  position: absolute;
  left: -37px;
  top: 0;
  width: 20px;
  height: 20px;
}
address {
  color: #666;
  font-size: 15px;
}
.contactD-bx h6 {
  position: relative;
  font-size: 17px;
  margin: 0 0 6px;
}

.contactD_block {
  padding-top: 147px;
}
.text-height {
  resize: none;
  max-height: 150px;
}
textarea.form-control {
  min-height: calc(9.5em + (0.75rem + 2px));
}

.pagetitle-wrapper {
  text-align: center;
  background: #2196f3;
  color: #fff;
  padding: 37px 0;
}
.pagetitle-wrapper .pages-title {
  color: #fff;
  font-weight: 600;
  font-size: 35px;
}
.cmsContent .form-control {
  font-size: 15px;
  border: solid 1px #f5f8fa;
  background: #f5f8fa;
  height: 50px;
  border-radius: 6px;
}
.cmsContent {
  padding: 45px 0 50px;
}
.cmsContent .form-group {
  margin: 0 0 30px;
}
.send-btn {
  min-height: 50px;
  min-width: 170px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 4px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 24px;
  background-color: #2196f3;
  border: 1px solid #2196f3;
  color: #fff !important;
}
.send-btn:hover {
  color: #2196f3 !important;
  background-color: transparent;
  border-color: #2196f3;
}
/* cms heading */
.cmsContent h1,
.cmsContent h2,
.cmsContent h3,
.cmsContent h4,
.cmsContent h5,
.cmsContent h6 {
  margin: 30px 0 10px 0;
  font-size: 20px;
  font-weight: 600;
}
.cmsContent ul,
.cmsContent ol {
  margin: 15px 0;
}
.cmsContent p {
  margin: 0px;
}

/*  */
.pagetitle-wrapper .DashAccordionBox {
  margin-top: 20px;
}
.Freq_wrepp {
  margin-bottom: 50px;
}
/*  */
.faq_section .DashAccordionBox .DashboardBoxFrame {
  box-shadow: none;
  background-color: transparent;
  border: none;
}
.faq_section .DashAccordionBox .accordion-item {
  margin-bottom: 20px;
}

.faq_section .DashAccordionBox .DashboardBoxFrame::before {
  content: none;
}
.faq_section {
  margin-bottom: 40px;
}

.faq_section .DashAccordionBox .accordion-body {
  padding: 10px 30px 20px;
}

/* profile step page css start */
.step_bar ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.step_bar ul::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: #cfcfcf;
  top: 23px;
  left: 0;
  z-index: -1;
}
.step_bar ul li {
  list-style: none;
  position: relative;
  width: 100%;
  z-index: 1;
}
.step_bar ul li a {
  text-decoration: none;
  width: 57px;
  height: 57px;
  border: 1px solid #2196f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.step_bar .active::after {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: #2196f3;
  top: 23px;
  left: 0;
  z-index: -1;
}

/* .last_step{
    
    text-align: right;
}
.last_step a{
    margin-left: auto;
} */

/* profile step page css end */

/* Pricing CSS Start */
.card_title h1 {
  font-size: 36px;
  font-weight: 600;
  color: #424242;
}

.card_title p {
  max-width: 900px;
  margin: 0 auto 25px;
}

.plan-inner {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
}

.entry-title {
  background: #0d47a1;
  height: 140px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.entry-title > h3 {
  background: #2196f3;
  font-size: 24px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.entry-title .price {
  position: absolute;
  bottom: -25px;
  background: #0d47a1;
  height: 100px;
  width: 100px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 5px solid #fff;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price span {
  font-size: 9px;
  font-weight: 400;
}

.entry-content {
  color: #323232;
  padding: 10px 20px 15px;
}
.entry-content h3 {
  font-size: 20px;
  color: #323232;
  margin-bottom: 18px;
}

.entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.entry-content li {
  padding: 5px 0;
  padding: 5px 0 5px 20px;
  position: relative;
}

.entry-content li:last-child {
  border: none;
}

.entry-content ul li:before {
  content: "\f00c";
  color: #35d900;
  font-family: "Font-awesome-5-pro";
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  left: 0;
}

.pricing_section {
  margin: 70px 0;
}

.plan_card {
  text-decoration: none;
  height: 100%;
  display: flex;
}

.month_validity {
  margin-left: 20px;
  color: #ccc;
  font-weight: 500;
}

.card_title.text-center {
  margin-bottom: 50px;
}

@media (max-width: 767.98px) {
}

/* ======================= FAQ Start ============================= */
.inner-page-section {
  padding: 50px 0;
}

.faq-section {
  min-height: 900px;
  position: relative;
}

.faqimg {
  height: 20vw;
  position: absolute;
  bottom: 150px;
  opacity: 0.5;
  left: 50px;
  z-index: 1;
}

.faq-section:after {
  content: "";
  background: url(../img/setting-bg.png);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -170px;
}

.faq-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 2;
  flex-direction: column;
}

.faq-sidebar {
  /* -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; */
  padding-left: 15px;
  padding-right: 15px;
  /*border-right: 1px solid rgba(98, 79, 181, 0.1)*/
}

.faq-sidebar .theiaStickySidebar {
  padding: 10px;
  background: #fff;
  /* box-shadow: 0 1px 32px -8px rgba(0, 0, 0, 0.1); */
}

.faq-sidebar ul li a:hover {
  color: #2196f3;
}
.faq-content {
  /* -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%; */
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  z-index: 2;
}

.faq-section p {
  font-size: 16px;
  color: #727272;
  margin-bottom: 0;
}

.faq-accord {
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 1px 32px -8px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.faq-accord [data-toggle] {
  cursor: pointer;
  font-weight: 400;
  padding: 20px 15px;
  font-size: 17px;
  color: #333;
  position: relative;
  padding-right: 62px;
}

.faq-accord [data-toggle]:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: normal;
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #fbf1f2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #0099ef;
  font-weight: 400;
}

.faq-accord [data-toggle][aria-expanded="true"]:after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-accord [data-toggle][aria-expanded="true"] {
  border-bottom: 1px solid rgba(98, 79, 181, 0.1);
}

.faq-accord:last-child {
  margin-bottom: 0px;
}

.accord-text {
  padding: 20px 15px;
  font-size: 14px;
  font-weight: 300;
  color: #7b7b7b;
}

.accord-text p {
  font-size: 14px;
  font-weight: 300;
  color: #7b7b7b;
}

.faq-content h4,
.faq-sidebar h4 {
  border-bottom: 1px solid rgba(98, 79, 181, 0.1);
  margin-top: 0px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  color: #282828;
  font-weight: 500;
  font-size: 24px;
}

.faq-content h4 {
  margin-top: 45px;
}

.faq-content h4:first-child {
  margin-top: 0;
}

.faq-sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq-sidebar ul li {
  padding: 8px 25px;
  margin-bottom: 10px;
}

.faq-sidebar ul li a {
  color: #282828;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  display: block;
}

/* .faq-sidebar ul li a:before {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    color: #282828;
    font-weight: 300;
} */

.faq-sidebar ul li.active a:before {
  color: #0099ef;
}

.faq-sidebar ul li a:hover,
.faq-sidebar ul li.active a {
  color: #fff;
}

.faq-sidebar ul li.active a {
  font-weight: 500;
}

.inner-page-head {
  text-align: center;
  background-color: #292c3e;
  padding: 60px 0 48px;
}

h1.main-heading {
  color: #fff;
  font-size: 36px;
  margin: 0;
  font-family: "Myriad Pro-Semibold";
}

/* ======================= FAQ End ============================= */
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/*  */
.Pricing_box {
  background: #ffffff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 40px 24px 30px;
  height: 100%;
}
.pric_heading {
  font-weight: 700;
  font-size: 30px;
  text-align: center;
  color: #191d23;
  margin-bottom: 17px;
}
.pric_status_lock {
  font-size: 16px;
  text-align: center;
  color: #64748b;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.pric_status_lock span {
  display: inline-flex;
}
.nav_right_notification img {
  border-radius: 50%;
  object-fit: contain;
}
.Plan_pric {
  font-weight: 600;
  font-size: 56px;
  color: #191d23;
}
.Plan_block {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #4b5768;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
}
.Plan_block > * {
  display: inline-block;
}
.Start_btn {
  display: inline-flex;
  width: 100%;
  border: 2px solid #2196f3;
  border-radius: 4px;
  justify-content: center;
  height: 44px;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #2196f3;
  margin-bottom: 40px;
}
.pric_planList {
  padding: 0;
  list-style: none;
}
.pric_planList li {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 16px;
  color: #191d23;
  position: relative;
  padding-left: 50px;
}
.add_plan {
  display: inline-flex;
  height: 32px;
  width: 32px;
  background: #e8edfb;
  color: #2196f3;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 17px;
  position: absolute;
  left: 0;
  top: -4px;
}
.remove_plan {
  display: inline-flex;
  height: 32px;
  width: 32px;
  background: #e8edfb;
  color: #2196f3;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 17px;
  position: absolute;
  left: 0;
  top: -4px;
}
.Validity_time {
  font-size: 16px;
  color: #2196f3;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 60px;
}
.Pricing_box.active_plan {
  background: linear-gradient(180deg, #2196f3 0%, #105ccd 100%);
  box-shadow: 0px 10px 25px #ccd9ff;
  border-radius: 12px;
}
.Pricing_box.active_plan .pric_heading,
.Pricing_box.active_plan .pric_status_lock span,
.Pricing_box.active_plan .pric_status_lock,
.Pricing_box.active_plan .pric_planList li,
.Pricing_box.active_plan .Validity_time,
.Pricing_box.active_plan .Plan_pric,
.Pricing_box.active_plan .Plan_block {
  color: #fff;
}
.Pricing_box.active_plan .Start_btn {
  background: #ffffff;
  border-radius: 4px;
  border-color: #fff;
}
.pricing_section {
  background-image: url(../img/pricing-header.png);
  width: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 318px;
  margin-top: 0;
}
.priceing_block #header {
  background-color: #0d47a1 !important;
}

.priceing_block #header .navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
}
.priceing_block #header.is-sticky {
  border-bottom: none;
}
.pric_planList .disable_plan {
  font-weight: 500;
  font-size: 16px;
  color: #a0abbb;
}
.login_InnerHeader img {
  height: 70px;
}
.white_logo {
  display: none;
}
.priceing_block .full_logo {
  display: none;
}
.priceing_block .white_logo {
  display: block;
}

.form_wrapper_top {
  margin-top: 45px;
  display: none;
  padding: 0 57px;
}
.form_wrapper_top.show {
  display: block;
  animation: slide-down 0.3s linear both;
}

/* .slide-down {
  animation: slide-down 0.3s linear both;
}

.slide-up {
  animation: slide-up 0.3s linear both;
} */
.form_wrapper_top .irs > * {
  visibility: hidden !important;
}
.form_wrapper_top.show .irs > * {
  visibility: visible !important;
}
.form_wrapper_top.show .irs :is(.irs-single, .irs-max, .irs-min) {
  visibility: hidden !important;
}

@keyframes slide-down {
  0% {
    visibility: hidden;
    height: 0;
  }
  95% {
    visibility: visible;
    height: 250px;
  }
  100% {
    visibility: visible;
    height: auto;
  }
}
@keyframes slide-up {
  0% {
    visibility: visible;
    height: 100%;
    opacity: 1;
  }
  50% {
    visibility: visible;
    height: 150px;
    opacity: 0.8;
  }

  100% {
    /* visibility: hidden; */
    display: none;
    height: 0;
    opacity: 0.5;
  }
}
.faq-sidebar ul .active {
  margin-bottom: 10px;
  background: #2196f3;
  border-radius: 10px;
  height: 45px;
}
.login_dropdown-menu {
  background-color: white;
  border: 0;
  box-shadow: 0 1px 32px -8px rgba(0, 0, 0, 0.1);
}
.navbar-expand-lg .navbar-nav .login_dropdown-menu {
  top: 480px;
  overflow: hidden;
}
.login_dropdown-menu.show {
  display: none !important;
  top: 48px;
}
.login_dropdown_hover:hover .login_dropdown-menu {
  display: block !important;
}

.login_dropdown-menu li .dropdown-item:focus,
.login_dropdown-menu li .dropdown-item:hover {
  color: #fff !important;
  background-color: #2196f3 !important;
}
.login_btns {
  background-color: #2196f3 !important;
}
.login_btns a {
  color: #fff !important;
}
.login_dropdown_hover:hover .login_dropdown-menu {
  display: block !important;
  left: 0;
  top: 48px;
  padding: 0;
  margin: 0;
  min-width: 110px;
}
#header .navbar-expand-lg .navbar-nav .nav-link.login_btns {
  color: #fff !important;
}
/* .employee_crad_box:last-child .right_element_2::after{
  background-image: none;
} */
.employee_crad:nth-last-child() {
  background-image: none;
}
.sidebar__inner .theiaStickySidebar ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
/* .css-tj5bde-Svg {
  display: none !important;
} */
.dropDown_tags .css-13cymwt-control {
  position: relative;
  padding-right: 20px !important;
  background-image: url(../img/drop.png);
  background-repeat: no-repeat;
  background-position: right 13px center;
}
.css-1u9des2-indicatorSeparator {
  display: none !important;
}
.last-talent-hiw .right_element_2::after {
  content: none;
}

.form-row {
  position: relative;
  padding-right: 170px;
}
.form-group-col {
  max-width: 33.333333%;
}
.form-group-col.form-submit-btn {
  position: absolute;
  right: 0;
  width: 171px;
  max-width: 171px;
}
.text_block a {
  margin-left: 9px;
  color: rgba(255, 255, 255, 0.7);
}
.text_block a:hover {
  color: #fff;
  text-decoration: underline;
}
.nav_right_notification {
  display: flex;
  align-items: center;
}

.thumb-sm.user_dropdown img {
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: 50%;
}
.team_members .row {
  --bs-gutter-y: 1.5rem;
}

.attribues_units_checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 300px;
}
.swal2-shown .nav_dash_wrpRight,
.modal-open .nav_dash_wrpRight {
  padding-right: 15px;
}
.feeSetRadio .form-radio-input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  min-width: 20px;
}
.feeSetRadio .form-radio {
  display: flex;
  flex-wrap: nowrap;
}
.feeSetRadio label {
  padding-left: 10px;
  font-weight: 500;
}
.agent-details-part tbody tr td {
  padding: 14px 5px 11px !important;
}
.agent-details-part {
  height: 462px;
  overflow-y: auto;
}

.agent-details-part::-webkit-scrollbar {
  width: 3px; /* Set the width of the scrollbar */
}

/* Style the scrollbar handle */
.agent-details-part::-webkit-scrollbar-thumb {
  background-color: #aaaaaa; /* Set the color of the scrollbar handle */
  border-radius: 6px; /* Set the border radius of the scrollbar handle */
}

/* Style the scrollbar track on hover */
.agent-details-part::-webkit-scrollbar-track:hover {
  background-color: #ddd; /* Set the background color on hover */
}

/* Style the scrollbar handle on hover */
.agent-details-part::-webkit-scrollbar-thumb:hover {
  background-color: #aaaaaa; /* Set the color of the scrollbar handle on hover */
}

/* Style the scrollbar corner */
.agent-details-part::-webkit-scrollbar-corner {
  background-color: #f1f1f1; /* Set the color of the scrollbar corner */
}

.commission_tab_block .service_manag_title {
  color: #25326b;
  font-size: 16px;
  font-weight: 600;
}
.payment-method-box .sameLine .input-group {
  max-width: 180px;
  width: 180px;
}
/* .stepFiveTable .table-responsive {
  overflow-x: inherit;
} */

.header-active-title {
  color: #25326b;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  width: 390px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.active-label {
  border-radius: 54px;
  border: 1px solid #409261;
  background: #e9ffef;
  padding: 4px 26px;
  color: #409261;
  font-size: 12px;
  font-weight: 400;
  margin-right: 12px;
  position: relative;
}
.active-label::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #409261;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}
.header-active-des {
  color: #030229;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.stepFourFormWidth {
  max-width: 100%;
}
.header-active-mobile {
  margin-bottom: 30px;
}
.header-active-mobile {
  display: none;
}
.one-time-commission-text {
  font-weight: 600;
}

.ckediter-height .ck-content {
  height: 400px;
}
.agreement_lastBtn.btn_flex > * {
  flex: 0;
  text-align: center;
  white-space: nowrap;
}

.btn_flex.add_listingBtns.agreement_lastBtn {
  flex-wrap: wrap;
  justify-content: space-between !important;
  width: 100% !important;
}
.agreement_lastBtn .btn-primary-border {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
}
.flex_divBtn {
  display: flex;
  gap: 15px;
}

/* .no_warp_input {
  width: 100% !important;
}
.no_warp_input .form-control {
  padding: 15px 8px 15px 8px;
  font-size: 12px;
}
.no_warp_input .input-group-text {
  background-color: #e3e3f1;
  flex: 0 0 34px;
  font-size: 16px;
} */

.tab_wrraper .tickets_data_table table {
  width: 100%;
  min-height: 180px;
}
.tab_wrraper .tickets_data_table table .action-btns {
  justify-content: flex-end;
}

.minHeight500 {
  min-height: 500px !important;
}

.wordWrapTd tr td {
  white-space: normal;
}

.company-commision-row {
  justify-content: space-around;
}
.header-active {
  position: relative;
}
.full_content_box {
  background-color: #fff;
  position: absolute;
  width: 100%;
  border-radius: 5px;
  top: 30px;
  padding: 10px;
  z-index: 1023;
  box-shadow: 0px 0px 12.955px 0px rgba(99, 89, 166, 0.03),
    0px 10px 58px 0px rgba(99, 89, 166, 0.07);
  display: none;
}
.full_content_box::before {
  content: "";
  position: absolute;
  top: -6px;
  width: 10px;
  height: 10px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: 0px 0px 12.955px 0px rgba(99, 89, 166, 0.03),
    0px 10px 58px 0px rgba(99, 89, 166, 0.07);
}
.header-active-title:hover .full_content_box {
  display: block;
}
.description_track {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  white-space: break-spaces;
}

.regenerating {
  background: #f5e3b7;
}

.regenerating td {
  color: #000;
}

.regenerating a.view-button {
  pointer-events: none;
  cursor: default;
  color: #8a8aa7;
  background: #dfdff2;
}

.input_track {
  width: 74px;
  height: 36px;
  margin: auto;
  text-align: center;
  background-color: rgba(250, 250, 251, 1);
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 6px;
  color: #25326b;
  font-size: 14px;
  font-weight: 600;
  padding: 0 5px;
}
.input_box {
  text-align: center;
}

.review__img.upload_file_block {
  height: unset;
  text-align: center;
}
.review__img.upload_file_block img {
  min-height: 72px;
  max-width: 72px;
  object-fit: contain;
}
.fileNameTrack {
  font-size: 12px;
  word-break: keep-all;
  width: 120px;
  padding-top: 5px;
}
.btn-primary.delete_btn {
  padding: 0 !important;
}

.custom_select .css-16xfy0z-control {
  height: 50px;
  border-radius: 10px;
}
.css-16xfy0z-control {
  height: 50px;
  border-radius: 10px;
}

.icon_track{
  width: 30px;
  height: 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F3FD;
  border: 1px solid #C8CBDA;

}
.form-content-box {
  padding-top: 40px;
}
.form-static-details{
  border-left: 1px solid #727584;
  padding-left: 10px;
}
.form-email-label{
  color: #727584;
  font-size: 14px;
  font-weight: 400;
}
.form-email-value{
  color: #000;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}
.form-content-items {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-img img {
  width: 300px;
}
.form-right-box .form-group {
  margin-bottom: 20px;
}