@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

/* font-family: 'Roboto', sans-serif; */
:root {
  --purple: #7e50a7;
  --white: #faf0e6;
  --yellow: #ffae1a;
}

body,
html {
  overflow-x: hidden;
}

/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
  font-size: 16px;
  color: #8f8f8f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
}

b,
strong {
  font-weight: 700;
}

/* p {
  margin: 0 0 22px 0;
} */

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 25px 0;
  padding: 0;
  color: #000;

  font-family: "Poppins";
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.3;
  text-transform: capitalize;
}

h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 49px;
  line-height: 1.3;
  color: #1a1a1a;
}

h3 {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
}

h4 {
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.2;
}

h5 {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: #ecb61e;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: red;
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.7);
  height: 58px;
  padding: 0 16px;
  outline: none !important;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  width: 100%;
  color: #383838;
  height: 130px;
  font-size: 14px;
  outline: none !important;
  border-radius: 30px;
  padding: 20px 160px 20px 35px;
  resize: none;
}

select {
  border: 1px solid rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 0 11px;
  background: url(images/sort-down.svg) no-repeat calc(100% - 16px) center
    transparent;
  background-size: 18px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #eab71e;
  color: #000000;
  height: 58px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding-left: 30px;
  padding-right: 30px;

  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="submit"]:hover {
  background-color: white;
  color: var(--purple);
  border-color: var(--purple);
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #000;
}

::-moz-placeholder {
  opacity: 1;
  color: #000;
}

:-moz-placeholder {
  opacity: 1;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 28px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {

    } */

.form_input_check label input[type="checkbox"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"] + span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked) + span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {

    } */

.form_input_radio label input[type="radio"]:checked + span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  width: 190px;
  display: inline-block;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav > li {
  margin: 0 15px;
  padding: 10px 0;
  position: relative;
}

.navbar-nav > li:last-child {
  margin-right: 0;
}

.navbar-nav > li:first-child {
  margin-left: 0;
}

.navbar-nav > li > a {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  position: relative;
  font-weight: normal;
}

.navbar-nav > li > a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3b61dc;
  /* opacity: 0; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}

.navbar-nav > li.current-menu-item > a,
.navbar-nav > li > a:hover,
.navbar-nav > li.menu-item-has-children:hover > a {
  color: #7e50a7;
}

.navbar-nav > li.current-menu-item > a:after,
.navbar-nav > li > a:hover:after,
.navbar-nav > li.menu-item-has-children:hover > a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  width: 140px;
  padding: 0;
}

.sub-menu > li > a {
  color: #000;
  display: block;
  width: 100%;
  padding: 6px 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.sub-menu > li {
  width: 100%;
  display: block;
}

.sub-menu > li > a:hover,
.sub-menu > li.menu-item-has-children:hover > a,
.sub-menu > li.current-menu-item > a {
  background: #eab71e;
  color: #fff;
}

.navbar-nav > li:last-child > .sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav > li > .sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0 !important;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
}

/* for push-menu end*/

/* _______CUSTOMS______________ */
ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

figure {
  margin-bottom: 0;
}

.cmn-hdr {
  margin-bottom: 50px;
}

.cmn-gap {
  padding: 70px 0;
}
.cmn-gap .text-danger {
  margin-left: 30px;
}

.cmn-gap.cmn-gap-nt {
  padding-top: 0;
}
.login-outr .text-danger{
text-align: left;
}

.cmn-gap.cmn-gap-nb {
  padding-bottom: 0;
}

.ylw-btn {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  padding: 15px 28px;
  background: var(--yellow);
  border-radius: 35px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid transparent;
}

.ylw-btn:hover {
  background: rgb(255, 255, 255);
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  line-height: 1;
  padding: 15px 30px;
  background: var(--purple);
  border-radius: 35px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-transform: capitalize;
  border: 1px solid transparent;
}

.btn:hover img {
  -webkit-filter: invert(36%) sepia(10%) saturate(3217%) hue-rotate(229deg)
    brightness(57%) contrast(88%);
  filter: invert(36%) sepia(10%) saturate(3217%) hue-rotate(229deg)
    brightness(57%) contrast(88%);
}

.btn:hover {
  background: white;
  color: var(--purple);
  border-color: var(--purple);
}

.btn.hdr-btn {
  padding: 11px 20px;
  font-size: 15px;
}

.btn.hdr-btn.hdr-bn2 {
  border: 1px solid #009cc8;
  background: transparent;
  margin-right: 10px;
  color: #009cc8;
}

.btn.hdr-btn.hdr-bn2:hover {
  color: black;
}

.btn.hdr-btn.hdr-bn2 img {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.btn.hdr-btn.hdr-bn2:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

a.btn.hdr-btn img {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

a.btn.hdr-btn:hover img {
  -webkit-filter: invert(36%) sepia(10%) saturate(3217%) hue-rotate(229deg)
    brightness(57%) contrast(88%);
  filter: invert(36%) sepia(10%) saturate(3217%) hue-rotate(229deg)
    brightness(57%) contrast(88%);
}

.btn.hdr-btn span {
  margin-left: 10px;
}

.hdr-rgt {
  margin-left: 30px;
}

.main-head {
  padding: 20px 0;
}

.ban-hdr h1 span {
  background: #7e50a7;
  border-radius: 47px;
  -webkit-transform: rotate(-7.85deg);
  -ms-transform: rotate(-7.85deg);
  transform: rotate(-7.85deg);
  display: inline-block;
  padding: 8px 23px;
  color: white;
  font-weight: 700;
}

.start-btn {
  font-weight: 600;
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffae1a;
  border-radius: 35px;
  padding: 11px 10px 11px 20px;
  color: #ffffff;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid transparent;
}

.start-btn:hover {
  background: white;
  color: #ffae1a;
  border-color: #ffae1a;
}

.start-btn img {
  margin-left: 10px;
  filter: brightness(0) invert(1);
}

.start-btn:hover img {
  filter: none;
}

.m-line {
  width: 25px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.314);
  margin: 0 18px;
}

.profile-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 35px 35px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 35px 35px rgba(65, 114, 239, 0.1);
  border-radius: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;

  padding: 13px 17px 12px 30px;

  max-width: 560px;
  margin: 38px 0 45px;
}

.profile-time p {
  margin-bottom: 0;
  font-size: 15px;
  color: #8f8f8f;
  margin-right: 15px;
}

.profile-time p span {
  color: black;
}

.ban-lft .hide em {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 35px;
  border-bottom: 2px solid #009cc8;

  color: #000000;
}

.ban-lft .hide {
  margin-top: 40px;
}

.important-wrap h3 {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  color: #7e50a7;
}

.cmnt-wrap.profile-popup.prfle-pop2 .toggle-switch-block {
  background: transparent;
  width: auto;
}

.cmnt-wrap.profile-popup.prfle-pop2
  input[type="checkbox"].switch_1:checked:after {
  left: 25px;
}

.cmnt-wrap.profile-popup.prfle-pop2 span {
  font-weight: 400;
  font-size: 30px;
  color: #383838;
}

.cmnt-wrap.profile-popup.prfle-pop2 input[type="checkbox"].switch_1:after {
  height: 53px;
  width: 53px;
}

.cmnt-wrap.profile-popup.prfle-pop2 input[type="checkbox"].switch_1 {
  width: 80px;
  height: 42px;
}

.important-wrap h3::after {
  border: 0.5px dashed rgba(0, 0, 0, 0.119);
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 465px;
}

.important-wrap ul li {
  font-weight: 400;
  font-size: 13px;
  border: 1px solid rgba(0, 0, 0, 0.105);
  border-radius: 25px;
  padding: 7px 18px;
  text-transform: capitalize;
  color: #8f8f8f;
  margin-right: 10px;
  margin-bottom: 10px;
}

.important-wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ban-rgt figure {
  margin-right: -100px;
  position: relative;
}

.ban-rgt {
  position: relative;
}

.banner-sec {
  padding: 40px 0;
}

.ban-chat-rgt .chat-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ban-chat-rgt a {
  display: inline-block;
}

.ban-chat-rgt p {
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0;

  color: #8e8e8e;
}

.ban-chat span {
  background: #00407c;
  height: 50px;
  width: 50px;
  -ms-flex-preferred-size: 50px;
  flex-basis: 50px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ban-chat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 45px 45px rgba(65, 114, 239, 0.15);
  box-shadow: 0px 45px 45px rgba(65, 114, 239, 0.15);
  border-radius: 20px 20px 20px 0;
  padding: 13px 20px;
  max-width: 300px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 140px;
}

.ban-chat-rgt h6 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0px;

  color: #7e50a7;
}

.ban-chat-rgt {
  -ms-flex-preferred-size: calc(100% - 50px);
  flex-basis: calc(100% - 50px);
  width: calc(100% - 50px);
  padding-left: 13px;
}

.logo-outr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo-outr ul li {
  width: calc(100% / 6);
  text-align: center;
}

.logo-outr ul li a {
  /* opacity: 0.2; */
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.logo-outr ul li a:hover {
  opacity: 1;
}

/* ==========banner==================== */

.sec-hdr span {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;

  color: #ffae1a;

  /* background: linear-gradient(180deg, #f67134 0%, #feb730 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block; */
  display: inline-block;
  margin-bottom: 0px;
}

.sec-hdr h2 {
  margin-bottom: 20px;
}

.logo-rgt ul li {
  padding-left: 35px;
  background-image: url(images/tick-blue.svg);
  background-repeat: no-repeat;
  background-position: center left 0px;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
  background-size: 26px;
  margin-bottom: 20px;
}

.logo-rgt ul li:last-child {
  margin-bottom: 0;
}

.logo-rgt ul {
  margin-bottom: 45px;
}

.logo-rgt {
  max-width: 460px;
  margin: auto;
}

.logo-btm {
  padding-top: 90px;
}

.logo-lft {
  position: relative;
}

.cmnt-solo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  -webkit-box-shadow: 0px 45px 45px rgba(55, 99, 255, 0.1);
  box-shadow: 0px 45px 45px rgba(55, 99, 255, 0.1);
  border-radius: 67px;
  padding: 12px;
}

.cmnt-lft span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgb(193, 189, 189);
  border-radius: 100%;
  height: 36px;
  width: 36px;
}

.cmnt-solo h3 {
  font-weight: 700;
  font-size: 30px;
  color: rgb(193, 189, 189);
  margin-bottom: 0px;
  margin-left: 12px;
}

.cmnt-lft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid rgba(0, 0, 0, 0.107);
  padding-right: 10px;
  margin-right: 10px;
}

.cmnt-rgt h5 {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0px;

  color: #000000;
}

.cmnt-rgt h5 span {
  font-size: 13px;
  display: block;
  color: #8e8e8e;
  font-weight: 400;
}

.cmnt-solo.blue h3 {
  color: #009cc8;
}
.cmnt-solo.blue .fa-briefcase {
  color: #009cc8;
}

.cmnt-solo.violet h3 {
  color: #7e50a7;
}

.cmnt-solo.yellow h3 {
  color: #ffae1a;
}

.cmnt-solo.blue .cmnt-lft span {
  background-color: rgba(0, 157, 200, 0.101);
}

.cmnt-solo.violet .cmnt-lft span {
  background-color: rgba(126, 80, 167, 0.103);
}

.cmnt-solo.yellow .cmnt-lft span {
  background-color: rgba(255, 175, 26, 0.106);
}

.cmnt-solo.blue {
  position: absolute;

  left: 50px;
  bottom: 105px;
}

.cmnt-solo.violet {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.cmnt-solo.yellow {
  position: absolute;
  right: -134px;
  bottom: 22%;
}

.cmnt-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #f0f0f0;
  padding: 20px;
  border-radius: 88px;
  height: 135px;
  width: 428px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cmnt-wrap .toggle-switch-block {
  position: static;
}

.logo-sec {
  background: #fbfaff;
}

.candidate-sec .sec-hdr span {
  color: #ffae1a;
  background: none;
  -webkit-text-fill-color: #ffae1a;
}

.candidate-sec .logo-btm {
  padding-top: 0;
}

.ftr-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ftr-nav ul {
  /* display: -webkit-box; */
  /* display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-align: center; */
  /* -ms-flex-align: center; */
  /* align-items: center; */
}

.ftr-nav ul li a {
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #b5bfcc;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  text-wrap: nowrap;
}

.ftr-nav ul li a:hover {
  color: rgb(255, 255, 255);
}

.ftr-nav ul li:not(:last-child) {
  margin-right: 24px;
}

.ftr-logo {
  width: 150px;
}

.footer {
  background: #00407c;
  padding: 35px 0 25px;
}

.ftr-top {
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.201);
}

.ftr-btm-rgt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.ftr-btm-rgt ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ftr-btm-lft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ftr-btm-lft p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 16px;
}

.ftr-btm-lft p a:hover {
  color: #b5bfcc;
}

.ftr-btm-lft p a {
  color: white;
}

.ftr-btm-lft span {
  font-size: 13px;
  display: inline-block;
  color: #b5bfcc;
  margin-left: 15px;
}

.ftr-btm-lft span a {
  color: #b5bfcc;
}

.ftr-btm-lft span a:hover {
  color: white;
}

.ftr-btm-rgt a {
  font-size: 14px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  color: #ffffff;
}

.ftr-btm-rgt a:hover {
  color: #b5bfcc;
}

.ftr-btm-rgt a i {
  margin-right: 8px;
}

.ftr-btm-rgt li:not(:last-child) {
  margin-right: 18px;
}

.ftr-btm {
  padding-top: 20px;
}

.banner-sec.inner-banner .ban-rgt figure {
  text-align: right;
  margin-right: 0;
}

.banner-sec.inner-banner .ban-hdr h1 span {
  -webkit-transform: rotate(-4.85deg);
  -ms-transform: rotate(-4.85deg);
  transform: rotate(-4.85deg);
  margin-top: 20px;
}

.accor-wrap .accordion-button::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  margin-left: 0;
  content: "";
  background-image: url("images/acror-btn.svg");
  background-repeat: no-repeat;
  background-size: 14px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(255, 175, 26, 0.234);
  border-radius: 100%;
  background-position: center;
  margin-right: 20px;
}

.accor-wrap .accordion-button:not(.collapsed)::after {
  background-image: url("images/acror-btn.svg");
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accor-wrap .accordion-button {
  font-weight: 500;
  font-size: 20px;
  color: #1a1a1a;
}

.accor-wrap .accordion-item {
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 40px;
}

.accor-wrap .accordion-button {
  padding: 0px 22px 40px;
}

.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accor-wrap .accordion-button:not(.collapsed) {
  color: #1a1a1a;
  background-color: transparent;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accor-wrap .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accor-wrap .accordion-item.shadow {
  border: 0;
  -webkit-box-shadow: 0px 15px 25px rgba(114, 153, 255, 0.1) !important;
  box-shadow: 0px 15px 25px rgba(114, 153, 255, 0.1) !important;
}

.banner-sec.inner-banner .ban-hdr {
  position: relative;
}

.pic1 {
  position: absolute;
  right: 100px;
  bottom: 52px;
}

.accor-wrap .accordion-body {
  padding: 1rem 1.25rem 40px 80px;
}

/* ======contact-page============= */
.contact-top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  left:-10%;
}

.contact-top ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cont-top-lft span {
  font-weight: 600;
  font-size: 12px;
  color: #b7b7b7;
  display: block;
}

.cont-top-lft a {
  font-weight: 400;
  font-size: 16px;
  color: #383838;
}

.cont-top-lft a:hover {
  color: #7e50a7;
}

.contact-top figure {
  background-color: rgba(126, 80, 167, 0.115);
  width: 52px;
  height: 52px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-top li {
  margin: 0 10px;
}

.contact-top li:first-child {
  text-align: right;
}

.contact-top li figure {
  margin-left: 12px;
}

.contact-top li:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.contact-top li:nth-child(2) figure {
  margin-left: 0;
  margin-right: 12px;
}

.contact-form .form-group .form-control2 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.102);
  height: 45px;
  padding-left: 0;
}

.contact-form .form-group label {
  font-weight: 600;
  font-size: 12px;
  color: #ffae1a;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group textarea {
  padding-left: 0;
  padding-top: 0;
  height: 75px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.102);
  resize: none;
  padding-right: 80px;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
}

.contact-form {
  max-width: 800px;
  margin: 0px auto;
  background: #ffffff;
  -webkit-box-shadow: 0px 65px 65px rgba(87, 167, 202, 0.1);
  box-shadow: 0px 65px 65px rgba(87, 167, 202, 0.1);
  padding: 60px 55px 80px;
  position: relative;
  z-index: 1;
}

.congo p {
  color: #383838;
  margin-top: 20px;
}

.congo figure {
  background: #ffffff;
  -webkit-box-shadow: 0px 55px 55px rgba(114, 153, 255, 0.15);
  box-shadow: 0px 55px 55px rgba(114, 153, 255, 0.15);
  height: 135px;
  width: 135px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.submit-inn .sub-btn {
  background-image: url(images/rocket.svg);
  background-position: center;
  background-size: 24px;
  height: 46px;
  font-size: 0;
  padding: 24px;
  background-repeat: no-repeat;
  border-radius: 100%;
  background-color: var(--purple);
}

.submit-inn .sub-btn:hover {
  background-color: white;
  background-image: url(images/rocket2.svg); background-position:center; background-repeat:no-repeat;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.submit-inn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  z-index: 1;
  right: -7px;
  bottom: -20px;
}

.submit-inn::after {
  background-color: rgba(126, 80, 167, 0.1);
  position: absolute;
  content: "";
  height: 72px;
  width: 72px;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.form-wrap {
  position: relative;
}

.mission-sec .sec-hdr span {
  color: #ffae1a;
  background: none;
  -webkit-text-fill-color: #ffae1a;
}

.mission-sec {
  background: #fbfaff;
  position: relative;
  z-index: 1;
}

.count-outr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: -30px;
}

.count-outr .main-count {
  width: calc(100% / 4);
  padding: 30px;
}

.count-outr .main-count .main-wrap {
  text-align: center;
  padding: 35px 15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 45px 35px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 45px 35px rgba(65, 114, 239, 0.1);
}

.count-outr .main-count .counter {
  font-weight: 700;
  font-size: 45px;
  color: #1a1a1a;
  line-height: 1;
}

.counter sub {
  font-weight: 700;
  font-size: 24px;
}

.main-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main-up em {
  font-weight: 700;
  font-size: 45px;
  display: inline-block;
  font-style: normal;
  color: #1a1a1a;
}

.main-count span {
  font-weight: 500;
  font-size: 14px;
  color: #b7b7b7;
}

.main-count figure {
  min-height: 92px;
  width: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.talent-outr {
  max-width: 870px;
  margin: auto;
  position: relative;
}

.pic4 {
  position: absolute;
  left: 20%;
  bottom: 0;
}

.talent-outr span {
  font-weight: 500;
  font-size: 18px;
  color: #009cc8;
  text-transform: uppercase;
}

.banner-sec.inner-banner .hire-para {
  font-size: inherit;
}

.talent-sec {
  background: #f7f5ff;
  z-index: 1;
  position: relative;
}

.pic2 {
  position: absolute;
  right: 17%;
  top: 17%;
  z-index: -1;
  pointer-events: none;
}

.pic3 {
  position: absolute;
  left: 65px;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.talent-outr .btn {
  min-width: 240px;
}

.ban-hdr2 h1 {
  margin-bottom: 45px;
}

.talent-outr2 span {
  font-weight: 500;
  font-size: 18px;
  color: #ffae1a;
}

.hire-inr h3 {
  font-weight: 500;
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.hire-inr p {
  font-size: 14px;
}

.hire-inr figure {
  background: #009cc8;
  height: 88px;
  width: 88px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 35px;
  position: relative;
  z-index: 1;
}

.hire-inr figure::after {
  background-color: rgba(0, 156, 200, 0.1);
  height: 122px;
  width: 122px;
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 100%;
}

.hire-inr {
  padding: 30px 40px 55px;
  /* border: 1px solid rgba(0, 0, 0, 0.102); */
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.hire-inr:hover {
  -webkit-box-shadow: 0px 65px 65px rgba(65, 114, 239, 0.13);
  box-shadow: 0px 65px 65px rgba(65, 114, 239, 0.13);
  border: 0;
}

.h-col {
  padding: 12px;
}

.h-row {
  margin: -12px;
}

.hire-outr .h-row .h-col:nth-child(2) .hire-inr figure {
  background: #ffae1a;
}

.hire-outr .h-row .h-col:nth-child(3) .hire-inr figure {
  background: #00407c;
}

.hire-outr .h-row .h-col:nth-child(4) .hire-inr figure {
  background: #00407c;
}

.hire-outr .h-row .h-col:nth-child(5) .hire-inr figure {
  background: #7e50a7;
}

.hire-outr .h-row .h-col:nth-child(2) .hire-inr figure::after {
  background-color: rgba(255, 174, 26, 0.2);
}

.hire-outr .h-row .h-col:nth-child(3) .hire-inr figure::after {
  background-color: rgba(0, 64, 124, 0.2);
}

.hire-outr .h-row .h-col:nth-child(4) .hire-inr figure::after {
  background-color: rgba(0, 64, 124, 0.2);
}

.hire-outr .h-row .h-col:nth-child(5) .hire-inr figure::after {
  background-color: rgba(126, 80, 167, 0.2);
}

.contact-form .form-group .form-control2:focus {
  color: #212529;
  background-color: #fff;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-bottom: 2px solid #383838;
}

.contact-form .form-group textarea:focus {
  border-bottom: 2px solid #383838;
}

img.pic1.des {
  right: 307px;
}

.employ .toggle-switch-block {
  position: static;
  background: transparent;
}

.employ .toggle-switch-block input[type="checkbox"].switch_1 {
  font-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 31px;
  height: 16px;
  background: #f3eef7;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* opacity: 0.5; */
  border: 1px solid #f3eef7;
}

/* =====privacy======== */
.resp-tabs-list li {
  font-weight: 500;
  font-size: 16px;

  color: #1a1a1a;
  background: transparent !important;
  padding: 25px 20px 25px 0 !important;
}

.resp-tab-active {
  border-bottom: none;
  background-color: transparent !important;
  border-bottom: 1px solid #ffae1a !important;
}

.privacy-sec h3 {
  font-weight: 600;
  font-size: 24px;
  color: #1a1a1a;
}

.resp-tab-content {
  padding: 15px 15px 15px 80px;
}

.banner-sec.inner-banner p em {
  font-size: 18px;
  color: #ffae1a;
  font-style: normal;
  display: inline-block;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
}

.banner-sec.inner-banner p {
  font-size: 18px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: -3px;
  content: "";
  background: url(images/drop-arw.svg) no-repeat center right;
  border: 0;
  background-size: 14px;
  height: 14px;
  width: 14px;
}

.hdr-rgt .dropdown button {
  border: 0;
  background-color: transparent;
  font-weight: 600;
  font-size: 15px;
  color: #1a1a1a;
  padding: 6px;
}

.hdr-rgt .dropdown button:hover img {
  -webkit-filter: none;
  filter: none;
}

.hdr-rgt .dropdown span {
  margin-right: 12px;
  display: inline-block;
}

.profile-outr .upload-pic {
  display: inline-block;
  background-color: rgba(255, 174, 26, 0.2);
  padding: 18px;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.profile-outr .upload-pic::after {
  background-color: rgba(255, 174, 26, 0.1);
  height: 175px;
  width: 175px;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  z-index: -1;
}

.profile-outr .upload-pic::before {
  background-color: rgba(255, 174, 26, 0.1);
  height: 226px;
  width: 226px;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  z-index: -2;
}

.profile-outr {
  text-align: center;
  position: relative;
}

.profile-outr span {
  position: relative;
  z-index: 9;
  color: #383838;
  display: block;
}

.plus {
  background: #ffffff;
  -webkit-box-shadow: 0px 15px 15px rgba(55, 99, 255, 0.1);
  box-shadow: 0px 15px 15px rgba(55, 99, 255, 0.1);
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: -60px;
  top: 0;
}

/* =====custom-switch========= */

/* ===================== */

.plus {
  position: absolute;
  top: 0;
  right: -60px;
  z-index: 3;
}

.up-wrap {
  position: relative;
  display: inline-block;
  margin-top: 50px;
}

.spn-clr {
  color: #8f8f8f;
}

.ban-hdr em {
  font-style: normal;
  -webkit-transform: rotate(4.85deg) !important;
  -ms-transform: rotate(4.85deg) !important;
  transform: rotate(4.85deg) !important;
  display: inline-block;
}

.blk-p {
  color: #1a1a1a;
}

.footer .active-link a {
  color: white;
}

/* =========sing-in================ */
.check-inn {
  display: block;
  position: relative;
  padding-left: 29px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 13px;
  color: #383838;
  font-weight: 400;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.check-inn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-inn .checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 19px;
  width: 19px;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 174, 26, 1);
  border-radius: 4px;
}

.check-inn:hover input ~ .checkmark {
  background-color: rgba(255, 174, 26, 0.3);
  border-color: rgba(255, 174, 26, 0.3);
}

.check-inn input:checked ~ .checkmark {
  background-color: rgba(255, 174, 26, 0.3);
  border-color: rgba(255, 174, 26, 0.3);
}

.check-inn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.check-inn input:checked ~ .checkmark:after {
  display: block;
}

.check-inn .checkmark:after {
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid rgba(255, 174, 26, 1);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.form-input .form-control {
  border: 1px solid rgba(0, 0, 0, 0.106);
  border-radius: 50px;
  height: 55px;
  padding-right: 60px;
}

.form-input .form-control.email {
  background-image: url(images/l1.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 25px;
}

.form-input .form-control.pass {
  background-image: url(images/l2.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 25px;
}

.form-input .form-control.name {
  background-image: url(images/l3.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 25px;
}

.form-input {
  margin-bottom: 16px;
}

.forgot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 25px;
}

.login-outr {
  background: #ffffff;
  -webkit-box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  border-radius: 15px;
  max-width: 530px;
  margin: 0 auto;
  padding: 50px 62px 40px;
}

.forgot a {
  font-size: 13px;
  color: #383838;
}

.forgot a:hover {
  color: #7e50a7;
}

.login-outr h2 {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.sign-up .login-outr h2 {
  margin-bottom: 0px;
}

/* .sign-up .login-outr p {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  color: #1a1a1a;
} */

.form-input .sub-btn, .sub-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  background: var(--purple);
  border-radius: 35px;
  height: 50px;
  width: 100%;
  border: 1px solid transparent;
}

.form-input .sub-btn.sub2, .sub-btn.sub2 {
  background: var(--purple);
  cursor:pointer;
  padding: 5px 15px;
}

.form-input .sub-btn.sub3 {
  background: #009cc8;
}

.form-input .sub-btn.sub2:hover, .sub-btn.sub2:hover {
  background: white;
  color: var(--purple);
  border-color: var(--purple);
  cursor:pointer;
}

.form-input .sub-btn:hover, .sub-btn:hover {
  background: white;
  color: var(--purple);
  border-color: var(--purple);
}

.login-txt {
  font-weight: 400;
  font-size: 13px;
  display: block;
  position: relative;
  color: #383838;
  text-align: center;
  background-color: white;
  padding: 0 24px;
  z-index: 1;
  margin-top: 20px;
}

.login-txt::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.101);
  z-index: -1;
}

.login-txt span {
  background-color: white;
  padding: 0 24px;
}

.social-logo ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 20px 0;
}

.social-logo ul li a {
  background: #ffffff;
  -webkit-box-shadow: 0px 15px 15px rgba(65, 155, 239, 0.15);
  box-shadow: 0px 15px 15px rgba(65, 155, 239, 0.15);
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 10px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.social-logo ul li a:hover {
  background: #e2ccf6;
}

.reset-fig {
  margin-bottom: 35px;
}

.not-acnt p {
  font-size: 13px;
  margin-bottom: 0;
  text-align: center;

  color: #383838;
}

.not-acnt p a {
  font-weight: 600;
  color: rgba(255, 174, 26, 1);
}

.not-acnt p a:hover {
  color: var(--purple);
}

.login-sec {
  padding: 60px 0;
}

.log-wrap {
  text-align: center;
  position: relative;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 80px 0;
  z-index: 1;
}

.log-wrap.log-wrap2 {
  padding: 150px 0;
}

.profile-outr span {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  display: inline-block;
  color: #ffae1a;
}

.profile-outr {
  position: relative;
}

.pic5 {
  position: absolute;
  right: 0;
  top: 0;
}

.pic6 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.profile-outr em {
  display: block;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  position: relative;
  z-index: 2;
  color: #383838;
}

.manual-inr figure {
  background: #ffae1a;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  margin: 0 auto 20px;
}

.manual-inr {
  max-width: 200px;
  margin: 0 auto;
}

.manual-btm-resume {
  border: 1px solid rgba(0, 0, 0, 0.201);
  border-radius: 35px;
  padding: 5px 25px;
  min-height: 50px;
  position: relative;
  min-width: 200px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor:pointer;
  color: #000000;
}

.manual-btm-resume:hover {
  border: 1px solid #ffae1a;
  background-color: #ffffff;
  font-size: 15px;

  color: #ffae1a !important;
}

.customfile_input_resume .customfile_label_resume {
  font-size: 15px;

  color: #1a1a1a;
}

.customfile_input_resume .customfile_label_resume:hover {
  font-size: 15px;

  color: #ffae1a;
}

.customfile_input_resume .customfile_label_resume em {
  font-style: normal;
  font-weight: 400;
  font-size: 8px;

  display: block;
  color: #1a1a1a;
}

.customfile_input_resume .customfile_label_resume em:hover {
  font-style: normal;
  font-weight: 400;
  font-size: 8px;

  display: block;
  color: #ffae1a;
}

.manual-btm-manually {
  border: 1px solid rgba(0, 0, 0, 0.201);
  border-radius: 35px;
  padding: 5px 25px;
  min-height: 50px;
  position: relative;
  min-width: 200px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor:pointer;
  font-size: 15px;
  color: #000000;
}

.manual-btm-manually:hover {
  border: 1px solid #7e50a7;
  background-color: #ffffff;
  font-size: 15px;

  color: #7e50a7 !important;
}

.manual-btm-linkedin {
  border: 1px solid rgba(0, 0, 0, 0.201);
  border-radius: 35px;
  padding: 5px 25px;
  min-height: 50px;
  position: relative;
  min-width: 200px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor:pointer;
  font-size: 15px;
  color: #000000;
}

.manual-btm-linkedin:hover {
  border: 1px solid #0077b5;
  background-color: #ffffff;
  font-size: 15px;

  color: #0077b5 !important;
}

.manual-btm {
  border: 1px solid rgba(0, 0, 0, 0.201);
  border-radius: 35px;
  padding: 5px 25px;
  min-height: 50px;
  position: relative;
  min-width: 200px;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor:pointer;
}

.customfile_input .customfile_label {
  font-size: 15px;

  color: #1a1a1a;
}

.customfile_input .customfile_label em {
  font-style: normal;
  font-weight: 400;
  font-size: 8px;

  display: block;
  color: #1a1a1a;
}

.customfile_inputin {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 0;
  opacity: 0;
  cursor: pointer;
}

.manual-btm span {
  font-weight: 400;
  font-size: 15px;
  display: inline-block;

  color: #1a1a1a;
}

.m-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.m-list-li {
  margin: 0 30px;
}

.m-list-li:nth-child(2) .manual-inr figure {
  background: #7e50a7;
}

.m-list-li:nth-child(3) .manual-inr figure {
  background: #0077b5;
}

.resume-inr figure {
  height: 65px;
  width: 65px;
  margin: auto;
  border-radius: 100%;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 35px 35px rgba(254, 183, 48, 0.15);
  box-shadow: 0px 35px 35px rgba(254, 183, 48, 0.15);
}

.resume-warning {
  border: 1px dashed rgba(0, 0, 0, 0.202);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
}

.resume-warning p {
  font-size: 12px;
  margin-bottom: 0;
  margin-left: 20px;
}

.resume-inr h5 {
  font-weight: 500;
  font-size: 18px;
  text-transform: capitalize;
  text-align: center;
  color: #1a1a1a;
  margin-top: 30px;
}

.resume-sec {
  background: #fbfaff;
}

.resume-inr {
  background: rgba(255, 174, 26, 0.1);
  border: 2px dashed #ffae1a;
  border-radius: 10px;
  padding: 35px 25px;
  margin: 45px 0;
}

/* =======profile-pages=========== */
.skip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f0f0f0;
  border-radius: 35px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 16px;
  color: #383838;
  position: absolute;
  top: 0;
  right: 0;
}

.skip em {
  margin-left: 25px;
}

.skip:hover {
  color: white;
  background: #7e50a7;
}

.skip:hover em {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.profile-banner h1 {
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}

.toggle-switch-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 13px;
  text-align: right;
  color: #383838;
  padding: 0 15px 0 25px;
  height: 55px;
  background: #f0f0f0;
  border-radius: 0px 50px 50px 0px;
  position: absolute;
  right: 0;
  top: 0;
}

.switch_box.box_1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 8px;
}

input[type="checkbox"].switch_1 {
  font-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 31px;
  height: 16px;
  background: transparent;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* opacity: 0.5; */
  border: 1px solid rgb(56 56 56 / 50%);
}

input[type="checkbox"].switch_1:checked {
  background: transparent;
}

input[type="checkbox"].switch_1:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  background: #c9c9c9;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  /* 86a2enw5b */
  /* left: 10px; */
  /* task - 86a2cbkkm right: 10px;*/
  right: 10px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="checkbox"].switch_1:checked:after {
  /* task - 86a2cbkkm*/
  /* 86a2enw5b */
  right: -1px;
  background: #7e50a7;
}

input[type="checkbox"].pswitch_1 {
  font-size: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 31px;
  height: 16px;
  background: transparent;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  /* opacity: 0.5; */
  border: 1px solid rgb(56 56 56 / 50%);
}

input[type="checkbox"].pswitch_1:checked {
  background: transparent;
}

input[type="checkbox"].pswitch_1:after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  background: #c9c9c9;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
/*  left: 10px;*/
  right:10px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="checkbox"].pswitch_1:checked:after {
/*  left: -1px;*/
  right: -1px;
  background: #7e50a7;
}

.disable-form .toggle-switch-block {
  pointer-events: none;
}

.disable-form ~ div.hiden, .disable-form .toggle-switch-block ~ div.hiden {
  display: none !important;
}

.disable-form .toggle-switch-block span {
  color: rgb(166, 166, 166);
  display: none;
}
.disable-form .toggle-switch-block .switch_box {
  display: none;
}

.disable-form .toggle-switch-block:after {
  content: "Hidden To Everyone"; color: #c6c6c6;
}

.profile-popup .toggle-switch-block {
  position: static;
  background: white;
  border-radius: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 180px;
  pointer-events: none;
}

.profile-popup span {
  font-weight: 400;
  font-size: 14px;
  color: #383838;
}

.l-fig {
  text-align: center;
}

.profile-popup input[type="checkbox"].switch_1:after {
  height: 23px;
  width: 23px;
  background: #7e50a7;
/*  left: -1px;*/
  right: -1px;
}

.profile-popup input[type="checkbox"].switch_1 {
  width: 35px;
  height: 18px;
}

.profile-popup input[type="checkbox"].switch_1:checked:after {
  left: 11px;
}

.profile-popup-rgt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.profile-popup-rgt ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 35px;
}

.profile-popup-rgt ul li span {
  display: inline-block;
  margin-left: 20px;
  font-weight: 500;
  font-size: 18px;
  color: #1a1a1a;
}

.profile-popup-rgt ul li:last-child {
  margin-right: 0;
}

.profile-popup-wrap {
  background-color: rgba(126, 80, 167, 0.115);
  border-radius: 4px;
  padding: 27px 23px;
  position: relative;
  border: 1px solid #7e50a7;
}

.profile-popup-rgt h5 {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.cross-btn {
  position: absolute;
  top: 18px;
  right: 18px;
}

.form-points ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-points ul li {
  width: calc(100% / 6);
  position: relative;
  text-align: center;
}

.form-points ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #7e50a7;
  height: 37px;
  width: 37px;
  border-radius: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0px 15px 15px rgba(67, 122, 204, 0.1);
  box-shadow: 0px 15px 15px rgba(67, 122, 204, 0.1);
}

.form-points ul li::after {
  width: 100%;
  background: #e8e8e8;
  height: 1px;
  position: absolute;
  content: "";
  top: 27px;
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
  right: 0;
  z-index: 0;
}

.form-points ul li:last-child::after {
  display: none;
}

.form-points ul li.active::after {
  background: #7e50a7;
}

.form-points ul li.active span {
  color: #7e50a7;
  background: rgba(126, 80, 167, 0.3);
}

.form-points ul li.active.center span {
  color: #ffffff;
  background: #7e50a7;
}

.form-points .point-wrap {
  height: 54px;
  width: 54px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #7e50a7;
  border-radius: 100%;
  position: relative;
  z-index: 9;
  background: white;
}

.form-points .point-wrap:hover {
  height: 54px;
  width: 54px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #7e50a7;
  border-radius: 100%;
  position: relative;
  z-index: 9;
  color: #ffffff;
  background: #7e50a7;
}

.form-points ul li.active .point-wrap {
  border: 1px solid #7e50a7;
}

.form-points ul li.active.center .point-wrap {
  border: 1px solid rgba(229, 220, 237);
  background-color: rgba(229, 220, 237);
}

.form-points h5 {
  font-weight: 500;
  font-size: 14px;
  color: #8f8f8f;
  max-width: 120px;
  margin: 12px auto 0;
  min-height: 40px;
}

.form-points ul li.active.center h5 {
  color: #383838;
}

.up-btn-center {
  text-align: center;
  margin-top: 20px;
}

.manual-btm-btn {
  background: #ffae1a;
  border-radius: 35px;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 220px;
  cursor: pointer;
  padding: 10px 10px;
  border: 1px solid transparent;
}

.manual-btm-btn:hover {
  border-color: #000000;
}

.customfile_inputin2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  font-size: 0;
  opacity: 0;
  z-index: 9;
  cursor: pointer;
}

.customfile_input2 .customfile_label2 {
  font-size: 15px;
  color: #ffffff;
}

input::placeholder {
  opacity: 0.5;
  color: #D3D3D3 !important;
}

.form-group .form-control {
  width: 100%;
  -webkit-filter: none;
  filter: none;
  background: transparent;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #383838;
  height: 55px;
  padding: 0 160px 0 35px;
  border: 1px solid rgba(0, 0, 0, 10%);
  border-radius: 50px;
}

.form-group {
  position: relative;
}

.form-sec .row > *:not(:last-child) .form-group {
  margin-bottom: 20px;
}

.add-more-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  background: var(--purple);
  border-radius: 50px;
  border: 1px solid var(--purple);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 9px 6px 34px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.add-more-btn span {
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  color: #7e50a7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 100%;
  margin-left: 25px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.add-more-btn:hover {
  color: #7e50a7;
  background: #fff;
}

.add-more-btn:hover span {
  color: #fff;
  background: #7e50a7;
}

.form-points {
  margin-bottom: 100px;
}

.add-more-btn-otr {
  margin: 35px 0;
}

.form-group-for-custom-checkbox {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgb(0 0 0 / 10%);
  padding: 0 0px;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
}

.form-group-for-custom-checkbox p {
  margin-bottom: 0;
}

.form-group-for-custom-checkbox .form_input_check label:not(:last-child) {
  margin-right: 0px;
}

.large-dropdown .dropdown-toggle {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgb(0 0 0 / 10%);
  padding: 0 35px;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
  width: 100%;
  background: transparent;
}

.large-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin: 0;
  width: 14px;
  height: 7px;
  position: absolute;
  content: "";
  border: 0;
  background: url(images/drp-btn.svg) no-repeat center;
  background-size: 100% 100%;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.large-dropdown .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  border: 0;
  background: #ffffff;
  -webkit-box-shadow: 0px 65px 65px rgba(65, 114, 239, 0.15);
  box-shadow: 0px 65px 65px rgba(65, 114, 239, 0.15);
  padding: 25px 0;
}

.large-dropdown .dropdown-menu .dropdown-item {
  padding: 3px 20px;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #383838;
}

.large-dropdown .dropdown-menu .dropdown-item:hover {
  color: #ffae1a;
  background: transparent;
}

.new-li a {
  border-radius: 50px;
  background-color: rgba(217, 217, 217, 0.2);
  font-weight: 400;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 6px 24px 6px 14px;
  color: #383838;
  background-image: url(images/cross2.svg);
  background-repeat: no-repeat;
  background-position: center right 8px;
  background-size: 10px;
}

.cmn-drop-lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cmn-drop-lst li {
  margin-right: 8px;
  margin-bottom: 5px;
}

.form-group-for-custom-checkbox
  .form_input_check
  label
  input[type="checkbox"]
  + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/grey-tick.svg) no-repeat center center;
  background-size: 15px;
}

.form-group-for-custom-checkbox
  .form_input_check
  label
  input[type="checkbox"]:checked
  + span::before {
  border: 1px solid #00407c;
  background: #00407c;
}

.form-group-for-custom-checkbox
  .form_input_check
  label
  input[type="checkbox"]
  + span::before {
  border-radius: 3px;
}

/* .custom-check-sec .form_input_check{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
} */
.custom-check-sec .form_input_check label {
  margin: 10px;
}

.custom-lft-txt p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  margin-top: 10px;
}

.custom-check-sec .form_input_check label span {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;

  color: #383838;
}

.custom-check-sec {
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 25px;
  padding: 10px 26px;
  margin-bottom: 45px;
}

.custom-check-sec .form_input_check label {
  padding-left: 27px;
}

.custom-check-sec .form_input_check label input[type="checkbox"] + span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/wht-tick.svg) no-repeat center center;
  background-size: 15px;
}

.custom-check-sec
  .form_input_check
  label
  input[type="checkbox"]:checked
  + span::before {
  border: 1px solid #2d2d2d;
  background: #2d2d2d;
  width: 20px;
  height: 20px;
}

.custom-check-sec
  .form_input_check
  label
  input[type="checkbox"]
  + span::before {
  border-radius: 3px;
}

/****custom range slider****/

.ui-state-default {
  position: relative;
}

.handle-ongoing-text {
  position: absolute;
  /* bottom: -30px; */
  bottom: +20px;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 13px;
  color: #383838;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.handle-ongoing-text span {
  display: inline-block;
  margin-right: 4px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 0;
  background: #7e50a7;
  -webkit-box-shadow: 0px 15px 15px rgba(94, 139, 255, 0.15);
  box-shadow: 0px 15px 15px rgba(94, 139, 255, 0.15);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 5px solid #fff;
}

.ui-widget-content {
  border: 0 !important;
  background: -o-linear-gradient(
    46.3deg,
    rgba(149, 0, 255, 0.169) 38.8%,
    rgba(176, 66, 255, 0.1) 100.61%
  );
  background: linear-gradient(
    43.7deg,
    rgba(149, 0, 255, 0.169) 38.8%,
    rgba(176, 66, 255, 0.1) 100.61%
  );

  border-radius: 25px !important;
}

.ui-slider .ui-slider-range {
  background: #7e50a7;
}

.ui-slider-horizontal {
  height: 5px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -11px;
}

.slider-total-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 55px;
}

.slider-total-left {
  width: 155px;
  font-size: 14px;
  color: #383838;
  margin-bottom: 30px;
}

.slider-total-right {
  -ms-flex-preferred-size: calc(100% - 155px);
  flex-basis: calc(100% - 155px);
  padding-left: 20px;
}

.slide-sec-rgt {
  margin-bottom: 40px;
}

.ui-state-focus,
.ui-state-active {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* .ui-slider-range-min{
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 25px !important;

} */
.ui-slider .ui-slider-range {
  background: #7e50a7;
  position: absolute;
  top: 0;
  height: 5px;
  left: 0;
  border-radius: 25px !important;
}

.ui-slider {
  position: relative;
}

.distance ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 8px;
}

.distance li {
  font-weight: 400;
  font-size: 13px;
  color: #383838;
}

.custom-tool span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.321);
  background: #f0f0f0;
  height: 16px;
  width: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 100%;
}

.large-dropdown.full-large {
  position: relative;
}

.noti-txt {
  font-size: 12px;
}

.tool-info p {
  font-size: 14px;
  margin-bottom: 0;

  color: var(--purple);
}

.del-outr .form-control {
  padding: 0 15px;
}

.gl-frm-outr.pos-r {
  position: relative;
}
.gl-frm-outr.pos-r .custom-tool {
  top: 0;
  right: 20px;
}
.tool-info {
  background: #eee4f8;
  border: 1px solid #7e50a7;
  border-radius: 3px;
  padding: 20px;
  width: 400px;
  position: absolute;
  /* top: 100%; */
  left: 30px !important;
  /* bottom: -54px; */
  right: 0;
  opacity: 0;
  top: 60%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 5;
  pointer-events: none;
}
.tool-info-greet{
  
  position: absolute;
  bottom: -103px !important;
  right: 0% !important;
  
  
}

.tool-info-otr .tool-info {
  left: 0;
  right: auto;
}

.tool-info-otr {
  position: relative;
}

.custom-tool:hover .tool-info {
  opacity: 1;
}

.tool-info-otr:hover .tool-info {
  opacity: 1;
}

/* .whole-btn-wrap .nxt-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  background: #7e50a7;
  border-radius: 35px;
  color: #ffffff;
  height: 50px;
  padding: 0 85px 0 30px;
  background-image: url(images/wht-arrw.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 20px;
  min-width: 155px;
} */

.whole-btn-wrap .nxt-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  background: var(--purple);
  border-radius: 35px;
  color: #ffffff;
  height: 50px;
  padding: 0 60px 0 30px;
  background-image: url(images/wht-arrw.svg);
  background-repeat: no-repeat;
  background-position: center right 28px;
  background-size: 22px;
  min-width: 155px;
  margin-bottom: 6px;
  border: 1px solid transparent;
}

.whole-btn-wrap .nxt-btn:hover {
  background-image: url(images/hvr-rgt-arrw.svg);
  background-repeat: no-repeat;
  background-position: center right 28px;
  background-size: 22px;
}

.resume-outr h4 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;

  color: #1a1a1a;
}

.resume-form .form-group .form-control2 {
  padding: 0 35px;
}

.resume-form .form-group label {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;

  color: #1a1a1a;
}

.import-btn .imp-btn {
  font-weight: 600;
  font-size: 18px;
  height: 50px;
  padding: 12px 24px;

  background: #0077b5;
  border-radius: 35px;
  color: #ffffff;
  border: 1px solid #0077b5;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border: 1px solid transparent;
}

.import-btn .imp-btn:hover {
  color: #0077b5;
  background: white;
  border-color: #0077b5;
}

.whole-btn-wrap.dual-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.whole-btn-wrap .prev-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  background-color: #ffae1a;
  border-radius: 35px;
  color: #ffffff;
  height: 50px;
  padding: 0 30px 0 55px;
  background-image: url(images/prev.svg);
  background-repeat: no-repeat;
  background-position: center left 28px;
  background-size: 22px;
  min-width: 155px;
  margin-bottom: 6px;
  border: 1px solid transparent;
}

.whole-btn-wrap .prev-btn:hover {
  background-image: url(images/hvr-lft-arrw.svg) !important;
  background-repeat: no-repeat !important;
  background-position: center left 28px !important;
  background-size: 22px !important;
  color: #ffae1a;
  border-color: #ffae1a;
  background: #fff;
  padding-left: 28px !important;
}

.whole-btn-wrap {
  margin-top: 40px;
}

.talnt-btm-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.talnt-btm-wrap .btn,
.talnt-btm-wrap .ylw-btn {
  margin: 0 8px;
}

.talent-outr p {
  max-width: 540px;
  margin: 0 auto 30px;
}

.m-lft h2 {
  font-size: 35px;
}

.m-rgt {
  max-width: 440px;
  padding: 53px 24px;
  background: #ffffff;
  -webkit-box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  border-radius: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 63px;
}
.f-rgt {
  max-width: 440px;
  width: 410px;
  padding: 32px 24px;
  background: #ffffff;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
}

.msn-wrap {
  position: relative;
}

.m-rgt .form-group:not(:last-child) {
  margin-bottom: 14px;
}

.msn-wrap figure {
  text-align: end;
}

/* .pic8{
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
} */

.ban-rgt .m-lft {
  margin-top: 70px;
}

.ban-msn-lft .ban-hdr h1 span {
  margin-top: 0 !important;
}

.ban-msn-lft .ban-hdr {
  background: #ffffff;
  -webkit-box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  border-radius: 15px;
  padding: 55px 80px;
  max-width: 470px;
  margin: auto;
  margin-right: 61px;
}

.ban-msn-lft {
  position: relative;
}

.pic8 {
  position: absolute;
  left: -50px;
  top: 0;
  z-index: -1;
}

.banner-outr.msn-outr {
  position: relative;
}

.process-outr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.process-outr ul li span {
  background: #009cc8;
  height: 88px;
  width: 88px;
  border-radius: 100%;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 600;
  font-size: 30px;
  color: #ffffff;
}

.process-outr ul li:nth-child(2) span {
  background: #ffae1a;
}

.process-outr ul li:nth-child(2) span::before {
  background-color: rgba(255, 174, 26, 0.2);
}

.process-outr ul li:nth-child(3) span {
  background: rgba(0, 64, 124, 1);
}

.process-outr ul li:nth-child(3) span::before {
  background-color: rgba(0, 64, 124, 0.2);
}

.process-outr ul li:nth-child(4) span {
  background: rgba(126, 80, 167, 1);
}

.process-outr ul li:nth-child(4) span::before {
  background-color: rgba(126, 80, 167, 0.2);
}

.process-outr ul li:nth-child(5) span {
  background: rgba(5, 112, 212, 1);
}

.process-outr ul li:nth-child(5) span::before {
  background-color: rgba(5, 112, 212, 0.2);
}

.process-outr ul li span::before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 156, 200, 0.2);
  height: 122px;
  width: 122px;
  border-radius: 100%;
  content: "";
}

.process-outr ul li span::after {
  position: absolute;
  top: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  border-right: 2px dashed #009cc8;
  height: 50px;
  width: 2px;
}

.process-outr ul li:nth-child(2) span::after {
  border-right: 2px dashed #ffae1a;
  top: auto;
  bottom: -50px;
}

.process-outr ul li:nth-child(3) span::after {
  border-right: 2px dashed #00407c;
}

.process-outr ul li:nth-child(4) span::after {
  border-right: 2px dashed #7e50a7;
  top: auto;
  bottom: -50px;
}

.process-outr ul li:nth-child(5) span::after {
  border-right: 2px dashed #0570d4;
}

.process-inr h5 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 5px;

  text-align: center;

  color: #000000;
}

.process-inr p {
  font-size: 14px;
}

.process-inr {
  text-align: center;
  position: relative;
  padding: 100px 0;
}

.process-txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.process-outr ul li {
  width: calc(100% / 5);
}

.process-outr ul li:nth-child(2n) .process-txt {
  top: auto;
  bottom: 0;
}

.process-sec h2 {
  margin-bottom: 65px;
  line-height: 1.1;
}

.process-wrap {
  position: relative;
}

.process-wrap::after {
  position: absolute;
  content: "";
  border-top: 1px dashed rgba(156, 156, 156, 0.5);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  z-index: -1;
}

.studio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.studio h5 {
  font-weight: 500;
  font-size: 14px;
  color: #7e50a7;
  margin-bottom: 0;
  margin-left: 12px;
}

.studio span {
  width: 40px;
}

.studio span img {
  width: 100%;
}

.test-inr p {
  font-size: 14px;
  margin: 25px 0 14px;
  min-height: 155px;
}

.test-inr {
  background: #ffffff;

  border-radius: 15px;
  padding: 40px 34px 25px;
  margin: 0 15px;
}

img.comma {
  width: 75px;
  opacity: 0.2;
}

.test-slider .slick-dots {
  bottom: 0;
  z-index: 9;
}

.test-slider .slick-dots li {
  width: auto;
  height: auto;
}

.test-slider .slick-dots li button {
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: rgba(126, 80, 167, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.test-slider .slick-dots button::before {
  display: none;
}

.test-slider .slick-dots .slick-active button {
  width: 44px;
  background: #7e50a7;
  border-radius: 41px;
}

.test-slider .slick-track {
  padding-bottom: 105px;
}

.test-slide.slick-center .test-inr {
  -webkit-box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.1);
  box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.1);
}

.test-slide.slick-center .test-inr img.comma {
  opacity: 1;
}

.fea-inr h5 {
  margin-bottom: 3px;
}

.fea-inr p {
  font-size: 14px;
}

.fea-inr {
  text-align: center;
}

.fea-inr img {
  -webkit-filter: drop-shadow(0px 35px 35px rgba(114, 153, 255, 0.1));
  filter: drop-shadow(0px 35px 35px rgba(114, 153, 255, 0.1));
}

.f-col {
  padding: 35px;
}

.f-row {
  margin: -35px;
}

.feature-sec {
  background: #fbfaff;
}

.fea-btn-wrap {
  margin-top: 60px;
}

.btn.btn3 {
  padding: 15px 54px;
  background: #00407c;
}

.btn.btn3:hover {
  background: rgb(255, 255, 255);
  color: #00407c;
  border-color: #00407c;
}

.form-submit-btn .submit-btn {
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  padding: 0 45px;
  height: 50px;
  background: #7e50a7;
  border-radius: 50px;
  border: 1px solid #7e50a7;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-transform: capitalize;
}

.form-submit-btn {
  margin-top: 45px;
  text-align: end;
  margin-bottom: 150px;
}

.back-clr {
  background: #fbfaff;
}
.breadcrumb{
  margin-top:10px;
}
.cmn-head {
  /* margin-bottom: 25px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cmn-head h5 {
  font-weight: 500;
  font-size: 18px;
  color: #383838;
}

.feature-outr {
  padding-top: 30px;
}

.main-form-sec h2 {
  font-weight: 700;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 55px;
}

.cmn-form-btm .ftr-btm-lft p {
  margin-bottom: 0;
  color: rgba(9, 43, 86, 1);
  font-size: 16px;
}

.cmn-form-btm .ftr-btm-lft p a {
  color: rgba(9, 43, 86, 1);
}

.cmn-form-btm .ftr-btm-lft p a:hover {
  color: #000;
}

.cmn-form-btm .ftr-btm-lft span {
  color: rgba(143, 143, 143, 1);
  margin-left: 8px;
}

.cmn-form-btm .ftr-btm-lft span a {
  color: rgba(143, 143, 143, 1);
}

.cmn-form-btm .ftr-btm-lft span a:hover {
  color: black;
}

.cmn-form-btm {
  padding: 60px 0;
}

.dropdown.avatar-dropdown .dropdown-menu {
  padding: 20px;
  border: 0;
  background: #ffffff;
  left: 22px !important;
  -webkit-box-shadow: 0px 65px 65px rgba(65, 114, 239, 0.15);
  box-shadow: 0px 65px 65px rgba(65, 114, 239, 0.15);
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mask-btn a {
  font-weight: 500;
  font-size: 14px;
  background: #e4dcf2;
  border-radius: 25px;

  padding: 5px 20px;

  color: var(--purple);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.mask-btn a:hover {
  color: white;
  background: var(--purple);
}

.mask-btn a:hover sub {
  color: var(--purple);
  background: white;
}

.mask-btn em {
  background: #ffffff;
  height: 32px;
  width: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  margin-left: 4px;
}

.mask-btn a sub {
  font-size: 13px;
  background: #7e50a7;
  height: 18px;
  width: 18px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  top: 0;
  right: 10px;
}

/* .mask-btn {
  margin-left: 40px;
} */


.form-sec2 .form-group {
  margin-bottom: 20px;
}

.contact-outr {
  position: relative;
}

.c-desng1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-desng2 {
  position: absolute;
  right: 127px;
  bottom: 116px;
}

.c-desng1 {
  position: absolute;
  left: 49px;
  bottom: -46px;
}

.banner-sec.inner-banner.con-inr .ban-hdr h1 span {
  -webkit-transform: rotate(-4.85deg);
  -ms-transform: rotate(-4.85deg);
  transform: rotate(-4.85deg);
  margin-top: 0;
  padding: 8px 40px;
}

.banner-sec.inner-banner.hire-ban .ban-hdr h1 span {
  -webkit-transform: rotate(-4.85deg);
  -ms-transform: rotate(-4.85deg);
  transform: rotate(-4.85deg);
  margin-top: 0px;
  margin-right: 12px;
  margin-left: 36px;
}

.hire-back {
  position: absolute;
  top: 69px;
  left: 43px;
}

.play-btn::before {
  background: rgba(0, 64, 124, 0.2);
  height: 112px;
  width: 112px;
  position: absolute;
  content: "";
  border-radius: 100%;
  z-index: -1;
}

.play-btn {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  background-color: #00407c;
  border-radius: 100%;
}

.hire-back .hr-pic {
  -webkit-filter: drop-shadow(0px 65px 65px rgba(94, 139, 255, 0.15));
  filter: drop-shadow(0px 65px 65px rgba(94, 139, 255, 0.15));
}

.profile-popup-wrap strong {
  color: #000;
}

.common-form-outr .form-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

.common-form-outr {
  max-width: 650px;
  margin: 0 auto;
}

.common-form-outr .form-hdr h5 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 0;
  color: #1a1a1a;
}

.common-form-outr .form-hdr span, .cmn-form .cmn-head span {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  color: #00c27c;
}

.gl-form label {
  font-weight: 500;
  font-size: 14px;
  color: #383838;
  margin-left: 30px;
  margin-bottom: 10px;
}

.hiden .d-span {
  font-weight: 300;
  font-size: 11px;
  color: #8f8f8f;
  max-width: 150px;
  text-align: center;
  margin-left: auto;
}

.hiden .d-span img {
  margin-right: 5px;
}

.hiden {
  text-align: end;
  margin-top: 4px;
}

.gl-frm-outr {
  margin-bottom: 15px;
}

.hiden.hiden2 {
  position: relative;
}

.in-ap p {
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  margin-bottom: 0;
  text-transform: capitalize;

  color: #7e50a7;
}

.in-ap p strong {
  font-weight: 700;
}

.in-ap {
  background: #eee4f8;
  border: 1px solid #7e50a7;
  border-radius: 3px;
  width: 190px;
  padding: 22px 12px;
  position: absolute;
  right: 130px;
  bottom: 100%;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}

.hiden .d-span img:hover + .in-ap {
  opacity: 1;
}

.form-bulb p {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 0;
  color: #7e50a7;
  text-transform: capitalize;
}

.form-bulb span {
  background: rgba(126, 80, 167, 0.1);
  height: 45px;
  min-width: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-box-shadow: 0px 25px 25px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 25px 25px rgba(65, 114, 239, 0.1);
  margin-right: 8px;
}

.form-bulb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  background: #F9F9FD;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
   }

.form-bulb img {
  width: 25px;
}

.gl-frm-outr label em {
  color: rgba(143, 143, 143, 1);
  font-style: normal;
}

.gl-form.form-sec {
  background: #ffffff;
  -webkit-box-shadow: 0px 35px 35px rgba(114, 153, 255, 0.1);
  box-shadow: 0px 35px 35px rgba(114, 153, 255, 0.1);
  border-radius: 15px;
  padding: 40px 34px;
}

.form-hdr .skip {
  position: static;
  margin-left: 20px;
}

.gl-frm-outr .form_input_check label {
  margin-bottom: 0;
}

.gl-frm-outr .form-group-for-custom-checkbox.scnd-form {
  height: 105px;
  border-radius: 20px;
}

.gl-frm-outr .form-group-for-custom-checkbox.scnd-form label {
  margin-bottom: 10px;
  margin-left: 20px;
}

.gl-frm-outr .slider-total-sec {
  display: block;
}

.gl-frm-outr .slider-total-left {
  font-weight: 500;
  font-size: 14px;
  color: #383838;
  width: 200px;
}

.pic0 {
  position: absolute;
  right: 0;
  top: 0;
}
.warn-txt {
  text-align: left !important;
  margin-bottom: 15px;
  color: #7e51a1 !important;
}
.warn-txt span {
  font-weight: 400;
  font-size: 15px;
  /* text-transform: capitalize; */
  margin-left: 6px;
  /* color: #8f8f8f; */
}

.form-group.for-dropdown-option {
  min-height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgb(0 0 0 / 10%);
  padding: 0 160px 0 35px;
  border-radius: 50px;
}

.for-abs-label.form-group.for-dropdown-option {
  position: relative;
  margin-bottom: 20px;
}

.for-abs-label .hiden {
  position: absolute;
  right: 13px;
  bottom: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
}

.input-dropdown {
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  background: transparent;
  border: 0;
  position: relative;
  padding-right: 20px;
  width: 100%;
  text-align: left;
}

.input-dropdown::after {
  display: inline-block;
  margin: 0;
  width: 15px;
  height: 8px;
  position: absolute;
  content: "";
  border: 0;
  background: url(images/ylw-btn.svg) no-repeat center;
  background-size: 100% 100%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.input-field-dropdown > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.input-field-dropdown > ul > li {
  padding: 0 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  width: 50%;
}

.input-field-dropdown {
  width: 100%;
}

.input-field-dropdown > ul > li:first-child {
  padding-left: 0;
}

.input-field-dropdown > ul > li:last-child {
  padding-right: 0;
  border: 0;
}

.gl-frm-btn .pos-btn {
  font-weight: 500;
  font-size: 18px;
  color: #383838;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f0f0f0;
  border-radius: 35px;
  padding: 6px 9px 6px 33px;
}

.gl-frm-btn .pos-btn span {
  height: 34px;
  width: 34px;
  border-radius: 100%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffae1a;
  margin-left: 17px;
  line-height: 1;
  font-weight: 300;
  font-size: 20px;
}

.form-group-for-custom-checkbox.thrd-form label {
  font-weight: 400;
}

.log-wrap.lg-wrp2 {
  padding: 103px 0;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.login-sec.log-h-sec {
  min-height: calc(100vh - 260px);
}

.login-sec-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.gl-frm-btn .pos-btn:hover {
  background: #f3eef7;
}

.f-up .upload-wrp {
  height: 100px;
  width: 100px;
}

.upload-wrp {
  height: 116px;
  width: 116px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  background: #f8f8f8;
  border: 1px dashed #bababa;
  position: relative;
}

.up-plus {
  position: absolute;
  left: 64%;
  top: 28%;
}

.up-outr-wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.photo-btn {
  font-weight: 600;
  font-size: 15px;
  background: rgba(126, 80, 167, 0.1);
  border: 1px solid #7e50a7;
  border-radius: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 14px 25px;
  margin-left: 20px;
  color: #7e50a7;
}

.photo-btn:hover {
  background-color: var(--purple);
  color: white;
}

.form-group.cus-frm-gp {
  position: relative;
}

.custom-tool {
  position: absolute;
  top: 15px;
  z-index: 2;
  right: 60px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  left: auto;
}

.form-group.cus-frm-gp textarea {
  height: 280px;
}

.skil-hdr h5 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;

  text-transform: capitalize;

  color: #383838;
}

.skil-hdr .custom-tool {
  position: relative;
  top: auto;
  right: 10px;
}

.skil-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.skil-hdr .custom-tool .tool-info {
  background: #eee4f8;
  border: 1px solid #7e50a7;
  border-radius: 3px;
  width: 190px;
  padding: 22px 10px;
  position: absolute;
  right: 40px;
  bottom: 100%;
  top: auto;
  opacity: 0;
  z-index: 9;
  left: auto;
}

.large-dropdown .custom-tool {
  position: absolute;
  top: 50%;
  z-index: 2;
  right: 214px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: auto;
}

.skil-hdr .custom-tool span:hover + .tool-info {
  opacity: 1;
}

.skil-hdr .tool-info p {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
  text-transform: capitalize;

  color: #7e50a7;
}

.sleep-form .form-control,
.sleep-form .form-select {
  padding: 0 25px !important;
}

.f-up h5 {
  font-weight: 500;
  font-size: 15px;

  margin-top: 15px;
  text-align: center;

  color: #383838;
}

.f-up {
  max-width: 105px;
  text-align: center;
}

.resume-sec .cmn-form {
  margin-bottom: 45px;
}

.pic6.pc2 {
  position: absolute;
  left: 0;
  bottom: -80px;
}

.form-group-for-custom-checkbox.thrd-form
  .form_input_check
  label:not(:last-child) {
  margin-right: -1px;
}

.form-group-for-custom-checkbox.thrd-form {
  padding: 0;
  height: auto;
  border: 0;
}

.form-group-for-custom-checkbox.thrd-form label {
  margin-bottom: 15px;
}

.social-login li a em {
  background: #ffffff;
  -webkit-box-shadow: 0px 15px 15px rgba(65, 155, 239, 0.15);
  box-shadow: 0px 15px 15px rgba(65, 155, 239, 0.15);
  height: 42px;
  width: 42px;
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 10px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.social-login li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 50px;
  padding: 7px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;

  color: #383838;
}

.social-login li a:hover {
  color: rgba(0, 0, 0, 0.584);
}

.social-login li:not(:last-child) {
  margin-bottom: 20px;
}

.social-login li a span {
  margin-left: 45px;
  display: inline-block;
}

.form-input ::-webkit-input-placeholder {
  color: #383838;
}

.form-input :-ms-input-placeholder {
  color: #383838;
}

.form-input ::-moz-placeholder {
  color: #383838;
}

.form-input :-moz-placeholder {
  color: #383838;
}

.form-input .form-select {
  border-radius: 50px;
  padding: 0.375rem 2.25rem 0.375rem 0.85rem;
  border: 1px solid rgba(0, 0, 0, 0.118);
}

.form-group ::-webkit-input-placeholder {
  color: #383838;
}

.form-group :-ms-input-placeholder {
  color: #383838;
}

.form-group ::-moz-placeholder {
  color: #383838;
}

.form-group :-moz-placeholder {
  color: #383838;
}

.plan-sec h1 {
  font-size: 50px;
  font-weight: 700;
}

.plan-price p span {
  display: inline-block;
  font-weight: 700;
  font-size: 50px;
  color: #ffae1a;
}

.plan-price p {
  font-size: 18px;
  color: #8f8f8f;
}

.plan-btn {
  font-weight: 500;
  font-size: 18px;
  color: #7e50a7;
  border-radius: 35px;
  background-color: rgba(126, 80, 167, 0.1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 9px 49px;
}

.cancel a {
  font-size: 13px;

  color: #8f8f8f;
}

.cancel {
  margin-top: 10px;
}

.cancel a:hover {
  color: black;
}

.plan-card .toggle-switch-block {
  position: static;
  background: transparent;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.plan-card .toggle-switch-block input[type="checkbox"].switch_1:checked {
  background: rgba(126, 80, 167, 0.2);
}

.plan-card .toggle-switch-block input[type="checkbox"].switch_1 {
  background: rgba(126, 80, 167, 0.2);
  border: 1px solid rgba(126, 80, 167, 0.2);
}

.plan-list li {
  font-size: 14px;
  background-image: url(images/grn-tick.svg);
  background-repeat: no-repeat;
  background-position: top 5px left;
  background-size: 20px;
  padding-left: 25px;
  margin-bottom: 24px;
  color: #8f8f8f;
}

.plan-list li.bold-li {
  background-image: url(images/grn-t2.svg);
}

.plan-list li:last-child {
  margin-bottom: 0;
}

.plan-inr {
  margin-top: 65px;
}

.plan-card figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 30px;
}

.toggle-switch-block span {
  text-transform: capitalize;
}

.form-group.full-large {
  position: relative;
}

.form-group .form-select {
  background-color: transparent;
  border: 1px solid rgb(0 0 0 / 10%);
  height: 55px;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
  padding: 0 35px;
  background-image: url(images/drp-btn.svg);
  background-size: 12px;
  background-position: right 22px center;
}

/* .select2-container--default .select2-selection--multiple {
  min-height: 55px;
  border: 1px solid rgb(0 0 0 / 10%);
  background-color: transparent;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
  padding: 5px 35px;
  background-image: url(images/drp-btn.svg);
  background-size: 12px;
  background-position: right 22px center;
  background-repeat: no-repeat;
}
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
  .select2-selection--multiple {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
} */
.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;

  color: #383838;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  padding: 0 4px;
  position: static;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.select2-container--default
  .select2-selection--multiple
  .select2-selection__choice {
  border-radius: 50px;
  background-color: rgb(244, 243, 247);
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 5px;
  margin-top: 2.5px;
  margin-bottom: 2.5px;
  padding: 0;
  position: relative;
  padding: 4px 13px 4px 14px;
  color: #383838;
  max-width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.form-group.cus-frm-gp .custom-tool {
  top: 60px;
}

/* .form-group .selection{
  background-color: transparent;
  border: 1px solid rgb(0 0 0 / 10%);
  height: 55px;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
  padding: 0 35px;
  background-image: url(images/drp-btn.svg);
background-size: 12px;
background-position: right 22px center;
} */
.plan-card h3 {
  font-weight: 600;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 0;
  text-align: center;
}
@media (max-width: 575px){
  .banner_main{
    padding: 0 !important;
  }
}

.plan-list {
  margin: 40px 0;
  /* min-height: 342.59px; */
  /* min-height: 316.59px; */
  
}

.plan-btm {
  text-align: center;
}

.plan-card {
  padding: 40px 60px;

  border: 1px solid transparent;
  /* 2 */

  border-radius: 15px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.plan-card .plan-btn { border: 0; }

.plan-card:hover {
  border: 1px solid #7e50a7;
  -webkit-box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
  box-shadow: 0px 65px 65px rgba(94, 139, 255, 0.15);
}

.plan-card:hover .plan-btn {
  background-color: #7e50a7;
  color: white;
  border: 0;
}

.plan-outr {
  position: relative;
}

.p-pic {
  position: absolute;
  left: 0;
  top: 100px;
}

.plan-sec {
  margin-bottom: 40px;
}

.payment-sec h1 {
  font-size: 50px;
  font-weight: 700;
}

.main-form-sec .form-group-for-custom-checkbox {
  padding: 0 30px;
}

.main-form-sec
  .form-group-for-custom-checkbox
  .form_input_check
  label:not(:last-child) {
  margin-right: 20px;
}
.main-form-sec
  .form-group-for-custom-checkbox
  .form_input_check
  label{margin-left: 0px;}
.pay-rgt h5 {
  font-weight: 500;
  font-size: 18px;
  color: #383838;
  margin-bottom: 15px;
}

.pay-rgt-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.pay-text p {
  font-size: 15px;
  margin-bottom: 0;
  line-height: 1;
}

.pay-text p span {
  font-weight: 700;
  font-size: 30px;
  color: #ffae1a;
}

.pay-text em {
  font-weight: 400;
  font-size: 12px;
  font-style: normal;
  display: inline-block;
  color: #383838;
}

.pay-text {
  margin-left: 25px;
}

.add-btn em {
  background: #7e50a7;
  height: 33px;
  width: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  margin-left: 30px;
}

.add-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  border: 1px solid #7e50a7;
  -webkit-box-shadow: 0px 15px 15px rgba(94, 139, 255, 0.06);
  box-shadow: 0px 15px 15px rgba(94, 139, 255, 0.06);
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 14px;
  color: #7e50a7;
}

.pay-rgt-btm-hdr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pay-text2 p {
  margin-bottom: 10px;
  line-height: 1;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;

  color: #1a1a1a;
}

.pay-text2 p strong {
  color: rgba(126, 80, 167, 1);
}

.pay-text2 .form_input_check label span {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;

  color: #1a1a1a;
}

.pay-text2 .form_input_check label input[type="checkbox"] + span::before {
  border-radius: 4px;
}

.pay-text2 .form_input_check label {
  padding-left: 32px;
}

.pay-text2 .form_input_check label input[type="checkbox"] + span::after {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.pay-text2 {
  margin-left: 25px;
}

.pay-rgt-btm {
  padding: 35px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.105);
  border-bottom: 1px solid rgba(0, 0, 0, 0.105);
  margin: 34px 0 26px;
}

.pat-total li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

.pat-total li:last-child {
  margin-bottom: 0;
}

.pat-total li p {
  margin: 0;
  font-size: 14px;
}

.pay-rgt h6 {
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  margin-bottom: 25px;
}

.btn .dol {
  display: inline-block;
  margin-right: 15px;
}

.pay-rgt {
  border: 1px solid #7e50a7;
  -webkit-box-shadow: 0px 35px 35px rgba(114, 153, 255, 0.1);
  box-shadow: 0px 35px 35px rgba(114, 153, 255, 0.1);
  border-radius: 15px;
  padding: 30px 32px;
}

.payment-outr {
  margin-top: 30px;
}

.pay-lft h4 {
  position: relative;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 18px;
  color: #383838;

  z-index: 1;
}

.pay-lft h4:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.13);
  position: absolute;
  content: "";
  left: 0;
  z-index: -1;
}

.pay-lft h4 span {
  background-color: #fbfaff;
  display: inline-block;
  padding-right: 10px;
}

.credit-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #ffffff;
  padding: 18px 25px;
  margin-top: 40px;
  margin-bottom: 30px;

  -webkit-box-shadow: 0px 15px 15px rgba(65, 114, 239, 0.1);

  box-shadow: 0px 15px 15px rgba(65, 114, 239, 0.1);
  border-radius: 52px;
}

.cvv-part .form-group {
  margin-bottom: 0 !important;
}

.cvv-part {
  margin-bottom: 60px;
}

.cre-pan span {
  display: inline-block;
  margin-right: 24px;
}

.cre-pan { min-width: 100%; width: 100%; }

.cre-lft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cre-lft img {
  margin-right: 16px;
}

.pay-form .form-group .form-control {
  padding: 0 35px;
}

.cvv-part h5 {
  font-weight: 400;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 0;
  margin-left: 15px;
  margin-right: 15px;
}

.cvv-part {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-group.fg2 {
  width: 130px;
}

.form-group.fg2 input {
  text-align: center;
}

.cvv-part span {
  display: inline-block;
  margin: 0 15px;
}

.form-group.cvv .form-control {
  background-image: url(images/cvv.svg);
  background-position: center right 15px;
  background-repeat: no-repeat;
  background-size: 15px;
}

.pay-form .form-group {
  margin-bottom: 30px;
}

.pay-form {
  margin-top: 30px;
}

.pay-lft {
  padding-right: 85px;
}

.unmask-sec h1 {
  font-weight: 700;
  font-size: 36px;

  color: #1a1a1a;
}

.unmask-sec h1 span {
  font-weight: 700;
  /* font-size: 46px; */
  background: #7e50a7;
  /* height: 55px; */
  /* width: 55px; */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* border-radius: 100%; */
  -webkit-text-fill-color: inherit;
  color: #ffffff;

    font-size: 30px;
    border-radius: 35px;
       padding: 4px 17px;
}

.notification p {
  font-weight: 400;
  line-height: 21px;
  color: #8f8f8f;
}

.notification figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #ffae1a;
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 100%;
  position: relative;
}

.notification figure::after {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
  height: 58px;
  width: 58px;
  border-radius: 100%;
  background-color: rgba(255, 174, 26, 0.2);
}

.notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.noti-outr {
  background: rgba(255, 174, 26, 0.1);
  border-radius: 4px;
  padding: 17px 200px 17px 20px;
  margin-top: 17px;
  margin-bottom: 22px;
}

.notification p {
  font-size: 14px;
  padding-left: 40px;
}

div#table_id_length {
  display: none;
}

div#table_id_filter {
  display: none;
}

div#table_id_paginate {
  display: none;
}

div#table_id_info {
  display: none;
}

.unmask-table table.dataTable thead > tr > th.sorting::after,
.unmask-table table.dataTable thead > tr > th.sorting::before {
  /* content: "" !important; */
}

.unmask-table table.dataTable thead > tr > th.sorting.sort2:before {
  /* content: ""; */
  /* background-image: url(images/d1.svg); */
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center right;
  height: 14px;
  width: 14px;
  /* opacity: 1; */
  right: 56px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /* left: 0; */
  color: var(--yellow) !important;
  font-size: 15px;
}

.unmask-table table.dataTable thead > tr > th.sorting.sort2:after {
  /* content: ""; */
  /* background-image: url(images/d2.svg); */
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center right;
  height: 14px;
  width: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 46px;
  /* opacity: 1; */
  color: var(--yellow) !important;
  font-size: 15px;
}

.sort2Action:after,.sort2Action:before{
content: "" !important;
}

table.dataTable.no-footer {
  border-bottom: 0;
}

.unmask-table th {
  font-weight: 500 !important;
  font-size: 14px;
  color: #1a1a1a;
}

.unmask-table .p2 {
  font-size: 11px;
  margin-bottom: 0;
}

.unmask-table .p2 a {
  -webkit-text-decoration-line: underline !important;
  text-decoration-line: underline !important;
  font-size: 10px;
  color: #7e50a7;
}

.unmask-table .p2 a:hover {
  text-decoration: none !important;
}

img.del-pic:hover {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

table.dataTable.row-border tbody th,
table.dataTable.row-border tbody td,
table.dataTable.display tbody th,
table.dataTable.display tbody td {
  border-top: 1px solid #eeebfb;
}

.unmask-table .p1 {
  font-weight: 400;
  font-size: 14px;

  color: #383838;
}

.unmask-table .stdio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.unmask-table .stdio:hover span {
  color: #000;
}

.unmask-table .btn {
  font-size: 14px;
  min-width: 170px;
  padding: 15px 16px;
}

.unmask-table th:nth-child(4) {
  min-width: 110px;
  max-width: 110px;
}

.unmask-table th:nth-child(2) {
  min-width: 78px;
  max-width: 78px;
}

.unmask-table th:nth-child(1) {
  min-width: 15px;
  max-width: 15px;
}

.unmask-table td:first-child {
  text-align: center;
}

.unmask-table td:nth-child(5) {
  padding-right: 30px !important;
}

.stdio img {
  /* width: 35px; */
  width: 38px;
  height: 38px;
}

.unmask-table th:nth-child(3) {
  min-width: 130px;
  max-width: 130px;
}

.unmask-table th:nth-child(5) {
  min-width: 230px;
  max-width: 230px;
}

.stdio span {
  font-weight: 500;
  font-size: 14px;
  margin-left: 8px;
  display: inline-block;

  color: #7e50a7;
}

.unmask-table table.dataTable tbody td {
  font-size: 14px;
  padding: 30px 12px;
}

.unmask-table table.dataTable thead th {
  padding: 18px 12px;
  border-bottom: 0;
  font-weight: 500 !important;
}

.unmask-table table.dataTable thead tr {
  background: #f1f6ff;
}

table.dataTable.stripe > tbody > tr.odd > *,
table.dataTable.display > tbody > tr.odd > * {
  -webkit-box-shadow: none;
  box-shadow: none;
}

table.dataTable.display > tbody > tr.odd > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  -webkit-box-shadow: none;
  box-shadow: none;
}

table.dataTable.display > tbody > tr.even > .sorting_1,
table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.unmask-table tbody tr:nth-child(3n + 1) {
  background: #f6f5f8;
}

.unmask-table tbody tr:nth-child(2),
.unmask-table tbody tr:nth-child(3) {
  background: #ffffff;
}

.unmask-table td:last-child,
.unmask-table th:last-child {
  text-align: center;
}

.unmask-table th:last-child {
  width: 100px !important;
}

.unmask-table tr:hover {
  background-color: none !important;
}

table.dataTable.hover > tbody > tr:hover > *,
table.dataTable.display > tbody > tr:hover > * {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.delete-btn a {
  font-weight: 500;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #979798;
  border-radius: 25px;
  color: #ffffff;
  padding: 11px 22px;
  margin-top: 25px;
}

.delete-btn a em {
  margin-right: 14px;
  display: inline-block;
}

.delete-btn a:hover {
  background: black;
}

.unmask-sec .cmn-form-btm {
  padding-bottom: 0;
}

.unmask-sec .ftr-btm-lft {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preview-sec.prev2-sec .preview-upper {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.preview-sec.prev2-sec .preview_banner_img_list {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.preview-sec.prev2-sec .preview_banner_img_list > li {
  width: auto;
}

.preview-sec.prev2-sec .preview_banner_img_list > li p a {
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}

.preview-sec.prev2-sec .preview_banner_img_list_inner {
  max-width: 100%;
}

.preview-sec.prev2-sec .preview_banner_img_sec_left figure {
  margin: -222px auto 0;
}

.preview-sec.prev2-sec .preview_banner_img_sec_rgt_wrapper {
  padding: 35px 0;
  border-bottom: 0;
}

.preview_banner_img_list.pv2 {
  border-top: 1px solid rgba(0, 0, 0, 0.168);
  padding-top: 25px;
  margin-top: 25px;
}

.preview_banner_img_list.pv2 li:first-child {
  max-width: 230px;
  padding-right: 40px;
  padding-left: 0;
}

.preview_banner_img_list.pv2 li:last-child {
  padding-left: 40px;
  padding-right: 0;
}

.preview_banner_img_list.pv2 li {
  padding: 0 40px;
}

.preview-sec.prev2-sec .add_btn_otr {
  text-align: center;
  margin-top: 24px;
}

.preview-sec.prev2-sec .add_btn span {
  margin-left: 0;
  margin-right: 20px;
}

.preview-sec.prev2-sec .add_btn {
  padding: 8px 24px 8px 11px;
}

.prev-ban-wrap {
  -webkit-box-shadow: 0px 35px 35px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 35px 35px rgba(65, 114, 239, 0.1);
  border-radius: 15px;
}

.preview_banner_img_list.pv1 li:first-child {
  padding-right: 40px;
  padding-left: 0;
}

.preview_banner_img_list.pv1 li:last-child {
  padding-left: 40px;
  padding-right: 0;
}

.preview_banner_img_list.pv1 li {
  padding: 0 40px;
}

.preview-sec.prev2-sec .preview_banner_img_list > li p a:hover {
  color: rgba(0, 0, 0, 0.618);
}

.pv-btm-blck {
  padding: 0 20px 45px;
}

.modal1 {
  display: none;
}

.fancy-modal-body {
  max-width: 540px;
  border-radius: 10px;
}

.modal-wrap a {
  font-weight: 400;
  font-size: 14px;

  color: #7e50a7;
}

.modal-wrap a:hover {
  color: black;
}

.modal-wrap figure {
  margin-bottom: 20px;
}

.modal-wrap p {
  font-size: 14px;
}

.modal-wrap h4 {
  font-size: 24px;
  text-transform: capitalize;

  color: #1a1a1a;
}

.fancy-modal-body1 {
  max-width: 600px;
  border-radius: 20px;
}

.modal-wrap1 figure {
  -webkit-box-shadow: 0px 25px 25px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 25px 25px rgba(65, 114, 239, 0.1);
  background-color: rgba(126, 80, 167, 0.1);
  width: 66px;
  margin: auto;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
}

.modal-wrap1 h4 {
  font-weight: 500;
  font-size: 18px;
  color: #7e50a7;
  margin: 15px 0;
}

.modal-wrap1 p {
  font-weight: 400;
  font-size: 14px;

  color: #383838;
}

.modal-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal-btn-wrap .yes-btn {
  background: #7e50a7;
  border-radius: 35px;
  font-weight: 600;
  font-size: 18px;

  color: #ffffff;
  min-width: 140px;
  padding: 12px 24px;
  margin: 0 5px;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.modal-btn-wrap .yes-btn.no-btn {
  background: #4a2d64;
  margin: 0 5px;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.modal-btn-wrap .yes-btn:hover {
  background: white;
  border-color: var(--purple);
  color: var(--purple);
}

.fancy-modal-body2 {
  width: 1300px;
  border-radius: 6px;
}

.modal-wrap2 .form-control {
  padding: 0 35px;
  height: 45px;
}

.invite-in .inv-btn {
  font-weight: 600;
  font-size: 18px;
  background: #7e50a7;
  border-radius: 35px;
  height: 45px;
  width: 100%;
  color: #ffffff;
}

.modal-form-outr .form-group {
  margin-bottom: 18px;
}

.modal-wrap2 h4 {
  font-weight: 600;
  font-size: 24px;

  color: #1a1a1a;
}

.modal-form-outr {
  -webkit-box-shadow: 0px 35px 35px rgba(114, 153, 255, 0.1);
  box-shadow: 0px 35px 35px rgba(114, 153, 255, 0.1);
  border-radius: 15px;
  padding: 50px 45px;
}

.btn.trans-btn {
  background: #e4dcf2;
  color: #7e50a7;
}

.btn.trans-btn:hover {
  background-color: rgb(255, 255, 255);
  color: var(--purple);
  border-color: var(--purple);
}

.select2-container {
  width: 100% !important;
}

.fancy-modal-body2 button {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
  left: 0;
  margin: auto;
}

.modal-table td a {
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
}

.modal-table td a:hover {
  color: #7e50a7;
}

.modal-td-wrap .disable-btn {
  background-color: rgba(126, 80, 167, 0.1);
  border-radius: 25px;
  font-weight: 400;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: capitalize;
  min-width: 115px;
  padding: 10px 12px;
  color: #7e50a7;
}

.modal-td-wrap .disable-btn.del-btn {
  background-color: rgba(0, 64, 124, 0.1);
  margin-left: 15px;
}

.modal-table th {
  font-weight: 400;
  font-size: 14px;

  text-transform: capitalize;

  color: #383838;
}

.modal-table .table > :not(:last-child) > :last-child > * {
  border-bottom-color: #e9e9e9;
}

.modal-table td {
  vertical-align: middle;
  padding: 1rem;
}

.modal-table {
  max-width: 1080px;
  margin: 115px auto 0;
}

.payment-sec .form-points {
  margin-bottom: 50px;
}

.add-btn:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}

/******19.12.2022 Abhisek*********/
.preview-uppr-left .toggle-switch-block {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  font-weight: 600;
  font-size: 17px;
  text-align: right;
  text-transform: capitalize;
  color: #ffffff;
  background: #7e50a7;
  border-radius: 35px;
  min-width: 280px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 50px;
}

.preview-uppr-left input[type="checkbox"].switch_1:after {
  background: #fff;
}

.preview-uppr-left input[type="checkbox"].switch_1 {
  border: 1px solid #fff;
}

.preview-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 25px;
}

.preview-uppr-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
}

.preview-uppr-left .title h4 {
  font-weight: 600;
  font-size: 18px;
  color: #383838;
  margin: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.preview-uppr-left .title h4:hover .tool-info {
  opacity: 1;
}

.preview-uppr-left .title h4 .tool-info {
  left: 0;
  right: auto;
  z-index: 2;
  pointer-events: none;
}

.preview-uppr-left .title h4 span {
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.3);
  width: 27px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background: #f0f0f0;
  margin-left: 6px;
}

.tool-info-otr > span {
  font-weight: 400;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.3);
  width: 27px;
  height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100%;
  background: #f0f0f0;
  margin-left: 6px;
}

.preview-uppr-left > .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blue_btn {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 25px;
  background: #00407c;
  border: 1px solid #00407c;
  -webkit-box-shadow: 0px 25px 25px rgba(0, 64, 124, 0.15);
  box-shadow: 0px 25px 25px rgba(0, 64, 124, 0.15);
  border-radius: 35px;
  color: #fff;
  min-width: 158px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 1;position: relative;
}

.blue_btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
}

.blue_btn:hover {
  background-color: white;
  color: #00407c;
  border: 1px solid #00407c;
}

.blue_btn img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.blue_btn:hover img {
  /* filter: invert(79%) sepia(70%) saturate(3175%) hue-rotate(196deg) brightness(77%) contrast(102%); */
  -webkit-filter: none;
  filter: none;
}

.preview-banner {
  background: rgb(126 80 167 / 10%);
  border-radius: 15px 15px 0px 0px;
  position: relative;
  z-index: 1;
}

.preview-banner-txt {
  position: absolute;
  left: 0;
  top: 0;
  padding: 25px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.edge_btn {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #7e50a7;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 9px 19px;
  border: 1px solid #7e50a7;
  border-radius: 35px;
  background: transparent;
}

.edge_btn:hover {
  color: #fff;
  background: #7e50a7;
}

.edit_btn11 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-align: right;
  color: #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.edit_btn11:hover {
  color: #000;
  /* -webkit-transform: scale(1.05); */
  /* -ms-transform: scale(1.05); */
  /* transform: scale(1.05); */
}
.preview-banner-txt-rgt:hover{
  border-bottom: 1px solid #000;
}

.edit_btn11 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 5px;
}
/* ===================== */
.preview_banner_img_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.preview_banner_img_sec_rgt {
  width: 71%;
  padding: 0 15px;
}

.preview_banner_img_sec_left {
  width: 29%;
  padding: 0 15px;
}

.defination-sec .title h4 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.defination-sec .title h4 a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5px;
}

.defination-sec .title h4 a:hover img {
  -webkit-filter: brightness(0);
  filter: brightness(0);
}

.defination-sec .title h4 a img {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.defination-sec .title h4 a:nth-child(1) {
  margin-left: 15px;
}

.defination-sec .title h4 a:last-child {
  margin-right: 0px;
}

.defination-sec .title h5 {
  font-weight: 400;
  font-size: 16px;
  color: #8f8f8f;
}

.defination_list h5 {
  font-weight: 400;
  font-size: 16px;
  color: #8f8f8f;
  margin-bottom: 0;
  margin-right: 10px;
}

.defination_list ul li {
  font-weight: 400;
  font-size: 13px;
  color: #383838;
  padding: 6px 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(217 217 217 / 20%);
  border-radius: 50px;
  /* margin: 0 6px; */
}

.work_list_inner_txt p {
  font-size: 14px;
}

.defination_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.defination_list:not(:last-child) {
  margin-bottom: 12px;
}

.defination-sec .title {
  margin-bottom: 15px;
  word-break: break-all;
}

.preview_contact_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.preview_contact_list li span {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(255 174 26 / 20%);
  border-radius: 100%;
  -ms-flex-preferred-size: 44px;
  flex-basis: 44px;
}

.preview_contact_list li:nth-child(2) span {
  background: rgba(126, 80, 167, 0.1);
}

.contact_rgt_side h5 {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}

.contact_rgt_side a {
  font-weight: 300;
  font-size: 16px;
  color: #8f8f8f;
  word-wrap: break-word;
}

.contact_rgt_side a:hover {
  color: #000;
}

.contact_rgt_side {
  -ms-flex-preferred-size: calc(100% - 44px);
  flex-basis: calc(100% - 44px);
  max-width: calc(100% - 44px);
  padding-left: 20px;
}

.preview_contact_list li:not(:last-child) {
  margin-bottom: 15px;
}

.preview_banner_img_sec_left figure {
  width: 250px;
  height: 250px;
  border-radius: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: -200px auto 0;
  position: relative;
  z-index: 1;
}

.about_candidate.abt-can2 {
  padding: 0 35px;
}

.preview_banner_img_sec_left figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;  
}

.preview_banner_img_sec_rgt_wrapper {
  padding: 25px 0;
  /* border-bottom: 1px solid rgb(0 0 0 / 10%); */
}

.preview-uppr-left .title {
  margin-right: 15px;
  margin-bottom: 0;
}

.preview_banner_img_list li h6 {
  
  font-weight: 400;
  font-size: 14px;
  color: #8f8f8f;
  margin-bottom: 6px;
}

.preview_banner_img_list {
  border-top: 1px solid rgb(0 0 0 / 10%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -10px;
  padding-top: 30px;
}

.defination-sec .title h4 em {
  margin-right: 10px;
  display: inline-block;
}

.preview_banner_img_list > li {
  width: calc(100% / 5);
  border-right: 1px solid rgb(0 0 0 / 10%);
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preview_banner_img_list > li:last-child {
  border: 0;
}

.preview_banner_img_list_inner {
  font-weight: 400;
  font-size: 18px;
  color: #383838;
  max-width: 185px;
  margin: auto;
}

.tick_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /* justify-content: center; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.tick_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 5px;
}

.tick_list li span {
  display: inline-block;
  margin-right: 5px;
}

.preffered_block_right ul li {
  font-weight: 400;
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #383838;
  background: #ffffff;
  border-radius: 50px;
  padding: 5px 16px;
  margin: 0 7px;
}

.preffered_block_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -7px;
}

.preffered_block {
  margin: 31px 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px;
  background: rgba(255, 174, 26, 0.1);
  border: 1px solid #ffae1a;
  border-radius: 10px;
}

.preffered_block_left {
  margin-right: 75px;
}

.title h4 {
  font-weight: 600;
  padding-top: 33px;
}

.title {
  margin-bottom: 10px;
}
.preview-upper {
  margin-top: 20px !important; 
}
.skills_list li {
  font-size: 13px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #383838;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 13px;
  border-radius: 50px;
  margin: 5px;
  background: rgba(126, 80, 167, 0.2);
}

.skills_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px;
  max-width: 350px;
}

.skills_list_block > .row > * {
  padding: 0 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.skills_list_block > .row {
  margin: 0 -30px;
}

.skills_list_block > .row > *:nth-child(2) .skills_list li {
  background: rgba(0, 157, 200, 0.2);
}

.skills_list_block > .row > *:nth-child(3) .skills_list li {
  background: rgba(45, 107, 165, 0.2);
}

.skills_list_block > .row > *:last-child {
  border: 0;
}

.skills_list_inner {
  padding: 10px 0;
}

.skills_list_block {
  padding: 10px 0;
}

.work_list_inner h6 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #8f8f8f;
  margin-bottom: 5px;
}

.work_list_inner h5 {
  font-weight: 600;
  font-size: 16px;
  color: #383838;
  margin-bottom: 0;
}

.work_list_inner h5 span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  margin-top: 8px;
}

.work_list_inner_txt h5 {
  font-weight: 600;
  font-size: 16px;
  color: #383838;
  margin-bottom: 5px;
}

.work_list_inner p {
  font-size: 14px;
}

.work_list_inner_txt {
  padding: 30px 30px;
  background: rgba(126, 80, 167, 0.05);
  border-radius: 15px;
  margin-top: 15px;
}

.work_list li {
  padding-left: 50px;
  position: relative;
}

.work_list li:not(:last-child) {
  padding-bottom: 30px;
}

.work_list li::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #7e50a7;
  position: absolute;
  left: 0;
  top: 12px;
}

.work_list li::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #7e50a7;
  border-radius: 100%;
  left: -5px;
  top: 7px;
  z-index: 2;
}

.list_style {
  position: absolute;
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #7e50a7;
  opacity: 0.2;
  border-radius: 100%;
  left: -12px;
  top: 0px;
  z-index: 1;
}

.work_list li:last-child::before {
  display: none;
}

.work_block_each {
  margin-bottom: 25px;
}

.work_block_each .title {
  margin-bottom: 25px;
}

.reference_block_inner .preview_contact_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -5px -17px;
}

a.blured_txt {
  pointer-events: none;
}

.reference_block_inner .preview_contact_list li {
  padding: 5px 17px;
  margin-bottom: 0;
}

.reference_block_inner > h5 {
  font-weight: 600;
  font-size: 16px;
  color: #383838;
  margin-bottom: 20px;
}

.blured_txt:not(.image_blur) {
  -webkit-filter: blur(7px);
  filter: blur(7px);
  visibility: hidden;
  position: relative;
  font-size: 15px !important;
  /* width: 100%; */
}

.blured_txt:not(.image_blur):after {
/*  content: "Hidden";*/
  content: attr(data-content);
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
}

.blured_txt.image_blur {
  -webkit-filter: blur(7px);
  filter: blur(7px);
}

.preview-wrap.preview-wrap-final {
  background: #fbfaff;
}

.preview_banner_total {
  background: #ffffff;
  -webkit-box-shadow: 0px 35px 35px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 35px 35px rgba(65, 114, 239, 0.1);
  border-radius: 15px;
}

.preview_banner_total .preview_banner_btm {
  padding: 0 25px 30px;
}

.request_btn {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 25px 6px 10px;
  background: #ffae1a;
  border: 1px solid #ffae1a;
  border-radius: 35px;
}

.request_btn:hover {
  background: white;
  color: #ffae1a;
  border: 1px solid #ffae1a;
}

.request_btn span img {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.request_btn:hover span img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.request_btn:hover span {
  background: #ffae1a;
}

.request_btn span {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  border-radius: 100%;
  margin-right: 25px;
}

.request_btn span img {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.request_btn_otr {
  text-align: center;
  margin-top: 15px;
  margin-bottom: -20px;
  position: relative;
}

.preview-wrap-final .preview_banner_img_btm {
  padding-top: 15px;
}

input.position_submit_btn {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  height: 45px;
  padding: 0 25px;
  background: #ffae1a;
  border-radius: 35px;
  border: 1px solid transparent;
}

input.position_submit_btn:hover {
  background: white;
  border-color: #ffae1a;
  color: #ffae1a;
}

.position_form .form-group label {
  font-weight: 400;
  font-size: 14px;
  color: #8f8f8f;
  display: block;
  margin-bottom: 5px;
  text-align: left;
}

.position_form .form-group .form-control {
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 16px;
  padding: 0 25px;
  height: 50px;
}

.position_form .form-group .form-control::-webkit-input-placeholder {
  color: #383838;
}

.position_form .form-group .form-control:-ms-input-placeholder {
  color: #383838;
}

.position_form .form-group .form-control::-moz-placeholder {
  color: #383838;
}

.position_form .form-group .form-control:-moz-placeholder {
  color: #383838;
}

.position_form .form-group textarea {
  font-weight: 400;
  font-size: 14px;
  color: #383838;
  border: 1px solid rgb(0 0 0 / 10%);
  border-radius: 16px;
  padding: 15px 25px;
  height: 120px;
  resize: none;
}

.position_form .form-group::-webkit-input-placeholder {
  color: #383838;
}

.position_form .form-group:-ms-input-placeholder {
  color: #383838;
}

.position_form .form-group::-moz-placeholder {
  color: #383838;
}

.position_form .form-group:-moz-placeholder {
  color: #383838;
}

.position_form .form-group {
  padding-bottom: 25px;
}

.position_form {
  padding: 25px 25px 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 25px 25px rgba(65, 114, 239, 0.1);
  box-shadow: 0px 25px 25px rgba(65, 114, 239, 0.1);
  border-radius: 15px;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9;
  min-width: 435px;
  display: none;
}

.position_form.active {
  display: block;
}

.add_btn {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6px 6px 6px 22px;
  background: #7e50a7;
  border: 1px solid #7e50a7;
  border-radius: 35px;
  text-transform: capitalize;
}

.add_btn:hover {
  background: white;
  color: var(--purple);
  border: 1px solid var(--purple);
}

.add_btn:hover span {
  color: #fff;
  background: #7e50a7;
}

.add_btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.add_btn span {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #ffffff;
  border-radius: 100%;
  margin-left: 25px;
  font-weight: 300;
  font-size: 20px;
  color: #7e50a7;
}

.employer_note_block .title h5 {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.add_note_list_item_head > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -7px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.add_note_list_item_head > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: 11px;
  color: #7e50a7;
  padding: 0 7px;
}

.add_note_list_item_head > ul > li > span {
  display: inline-block;
  margin-right: 8px;
}

.add_note_list_item_head {
  margin-bottom: 9px;
}

.add_note_list_item_ftr h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7e50a7;word-break: break-all;
}

.add_note_list_item_ftr h6 span {
  width: 18px;
  height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 8px;
  border-radius: 100%;
  flex: 0 0 18px;
}

.add_note_list_item_content {
  margin-bottom: 15px;
}

.add_note_list > li.active .add_note_list_item {
  background: #fff;
}

.add_note_list_item {
  padding: 20px 25px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.add_note_list > li:not(:last-child) {
  margin-bottom: 10px;
}

.add_note_list > li:hover .add_note_list_item {
  background: #fff;
}

.add_note_list {
  margin-top: 40px;
  max-height: 1200px;
  overflow: auto;
}

.employer_note_block {
  padding: 30px 20px;
  background: #f7f5ff;
  border-radius: 15px;
  font-size: 14px;
  height: 100%;
}

/***feature**********/
.loop_sec_each {
  padding: 70px 0;
}

.loop_txt .sec-hdr h3 {
  font-size: 35px;
  /* max-width: 455px; */
}

.loop_txt .sec-hdr {
  margin-bottom: 15px;
}

.back_img {
  /* max-width: 415px; */
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.for_candidate .loop_sec_each:nth-child(even) .back_img {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-left: 0;
}

.loop_fig.loop_fig_right {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.front_img.front_img_right {
  left: auto;
  right: 0;
}

.loop_fig {
  position: relative;
  /* max-width: 600px; */
}

.for_candidate .loop_fig {
  margin-left: auto;
}

.loop_fig figure {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loop_fig figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.front_img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  -webkit-filter: drop-shadow(0px 65px 65px rgba(94, 139, 255, 0.15));
  filter: drop-shadow(0px 65px 65px rgba(94, 139, 255, 0.15));
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.front_img.small_img2 {
  /* max-width: 400px; */
  right: 0;
  left: auto;
}

.row.loop_row > * {
  padding: 0 20px;
}

.loop_row {
  margin: 0 -20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.lp-sec2 {
  margin: 70px 0;
}

.front_img.small_img3 {
  top: 148px;
  left: 74px;
}

.front_img.sml_max_width {
  top: -45px;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.loop_sec_each:nth-child(even) .loop_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.loop_sec_each:nth-child(even) .loop_fig {
  margin-right: 0;
  margin-left: auto;
}

.loop_sec_each:nth-child(odd) {
  background: #fbfaff;
}

.loop_fig.diff_loop_fig .back_img {
  margin: 0 auto 0 0;
}

.loop_fig.diff_loop_fig .front_img {
  left: auto;
  right: 0;
}

.back_img.bck2-img {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.diff_front_img {
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

/* .sml_max_width {
  max-width: 465px;
} */

.loop_ftr_sec {
  background: #f7f5ff;
  position: relative;
}

.sed_neck_img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 300px;
  z-index: 1;
  max-width: 1320px;
}

.loop_ftr_wrap {
  max-width: 865px;
  margin: auto;
  position: relative;
  z-index: 5;
}

.loop-sec .nav-tabs .nav-link {
  border-radius: 35px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #7e50a7;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 45px;
}

.loop-sec .nav-tabs {
  border-bottom: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid #7e50a7;
  border-radius: 35px;
}

.loop-sec .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #fff;
  background: #7e50a7;
  border-color: #7e50a7;
}

.loop_sec_main_hdr.sec-hdr {
  text-align: center;
}

.loop-sec .nav-tabs-otr {
  text-align: center;
  margin: 10px 0 30px;
}

.plan-sec .form-points {
  margin-bottom: 50px;
}

.preview-sec.prev2-sec .about_candidate h4 {
  font-size: 18px;
}

.form-points.form-points2 li {
  width: calc(100% / 5);
}

.b-para {
  font-size: 14px;
}

.mobile-li {
  display: none;
}

.profile-popup-rgt p {
  font-size: 15px;
  padding-left: 35px;
}

.resume-form .form-control {
  padding: 0 35px;
}

.resume-warning img {
  min-width: 24px;
}

.pay-form .form-group .form-control:focus {
  background: rgba(126, 80, 167, 0.05);
  border: 1px solid #7e50a7;
  border-radius: 52px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.skills_list_block h4 {
  text-transform: capitalize;
}

.sub-drop a {
  font-weight: 400;
  font-size: 13px;
  color: #8f8f8f;
}

.hdr-rgt .dropdown-item .download-btn {
  font-weight: 400;
  font-size: 16px;
  color: #1a1a1a;
}
.hdr-rgt .dropdown-item .download-btn:hover {
  color: var(--purple);
}
.hdr-rgt .dropdown-menu {
  width: 260px;
}

.hdr-rgt .dropdown-item {
  padding: 0;
}

.hdr-rgt .dropdown-menu li:not(:last-child) {
  margin-bottom: 15px;
}

.hdr-rgt .dropdown-item .download-btn img {
  margin-right: 14px;
}

.hdr-rgt .dropdown-item .download-btn em img {
  margin-right: 0;
}

.sub-drop li:not(:last-child) {
  margin-bottom: 4px !important;
}

.sub-drop {
  border-top: 1px solid rgba(143, 143, 143, 0.2);
  margin-left: 40px;
  margin-top: 10px;
  padding-top: 10px;
}

.loop-sec .sec-hdr span {
  color: #ffae1a;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
}

.hdr-rgt .dropdown-item button:hover {
  color: #7e50a7;
}

.sub-drop a:hover {
  color: #000;
}

.large-dropdown .dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
  box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.form-group-for-custom-checkbox label {
  font-weight: 400;
  margin-bottom: 0;
}

.contact-sec {
  min-height: calc(100vh - 518px);
}

.ban-up {
  margin-top: 102px;
}

 .ban-up.ban-up2 {
  margin-top: 73px;
} 

.main-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 99;
  background-color: white;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.main-head.fixed {
  -webkit-box-shadow: 0 5px 5px rgb(0 0 0 / 5%);
  box-shadow: 0 5px 5px rgb(0 0 0 / 5%);
}

.toggle-switch-block.twb input[type="checkbox"].switch_1:after {
  background: var(--purple);
}

.hiden.show-check {
  opacity: 1;
}

.hiden.show {
 display: block !important;
/* display: unset; */
opacity: 1;
}

.hiden {
/*  display: none;*/
  display: none !important;
  position: relative;
}

.hiden.hiden2 {
  position: relative;
  opacity: 1;
}

span.select2-selection.select2-selection--multiple {
  display: flex;
  flex-direction: column-reverse;
  border: 0;
}

span.select2-search.select2-search--inline {
  max-height: 55px;
  min-height: 55px;
  border: 1px solid rgb(0 0 0 / 10%);
  background-color: transparent;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
  padding: 5px 35px;
  background-image: url(images/drp-btn.svg);
  background-size: 12px;
  background-position: right 22px center;
  background-repeat: no-repeat;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 10px;
  margin-left: 0;
  width: 100% !important;
  padding: 0;
  max-width: 100%;
  resize: none;
  font-size: 15px;
  height: 35px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
  border-radius: 0;
}

/* .select2-search.select2-search--inline:focus{

} */

.select2-container--default.select2-container--focus
  .select2-selection--multiple
  .select2-search.select2-search--inline:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.input-daterange {
  display: flex;
  align-items: center;
}
.input-daterange .form-control {
  border: 0;
  padding: 0 10px !important;
  text-align: start;
  border: 0;
  background: url(images/ylw-btn.svg) no-repeat center;
  background-size: 12px;
  background-position: center right 20px;
  height: 100% !important;
  box-shadow: inherit;
}
.input-daterange .form-control.input1 {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.modal-note label {
  font-weight: 500;
  font-size: 14px;
  color: #383838;
  margin-bottom: 10px;
}
.modal-note .form-control {
  padding: 0 12px;
}
.modal-note textarea {
  padding: 12px;
  border-radius: 20px;
}
.mobile-v {
  display: none;
}
.tab-v {
  display: none;
}
.unmask-mob-wrap h4{
  font-weight: 500 !important;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.unmask-mobile {
  position: relative;
}
.preview-upper.pv-ax {
  max-width: 650px;
  margin: auto;
  justify-content: flex-end;
}
.breadcrumb a{
  color: #000;
  font-size: 13px;
}
.breadcrumb a:hover{
  color: var(--purple);
}
.breadcrumb-item.active {
  color: var(--purple);

}
.breadcrumb-item{
  font-size: 13px;
}
.breadcrumb-item+.breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "|");
}
.ht_center_div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.ht_center_div > *{
  width: 100%;
}
.height_ofunmask{
  min-height: calc(100vh - 170px);
  /* display: flex; */
  /* align-items: center; */
}
.height_ofunmask_inr{
  width: 100%
}
.form-input .form-control.password_sm{
  outline: none;
  box-shadow: inherit;
}


input[type="checkbox"].case_slide_change.switch_1:after{
  left: -1px;
  right: inherit;
}
input[type="checkbox"].case_slide_change.switch_1:checked:after{
  left: inherit;
  right: -1px;
}

.form-group .upload_btn{
  position: relative;
  font-weight: 500;
  font-size: 15px;
  margin-top: 15px;
  text-align: center;
  color: #383838;
  display: inline-block;
}
.form-group .upload_btn input[type="file"]{
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  left: 0;
  top: 0;
}
.pass_chk_toggler{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-block;
  font-size: 18px;
  color: #d0d0d0 !important;
}
.pass_chk_toggler:after{
  position: absolute;
  content: "\f070";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 25%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%,-50%);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_ipp_passwordd{
  position: relative;
}
.form-input .form-control.pass_chk{
  padding-right: 60px;
}
.pass_chk_toggler.active:after{
  content: "\f06e";
}

.photo-btn.upld{
  position: relative;
}
.photo-btn.upld input[type="file"]{
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.form-group.new_uploaded_frm.f-up{
  max-width: 100%;
}
.form-group.new_uploaded_frm.f-up .upload-wrp{
  margin: 0 auto;
}
.upload_btn.nw_upldd{
  color: #7e50a7;
  background: rgba(126, 80, 167, 0.1);
  border: 1px solid #7e50a7;
  border-radius: 35px;
  padding: 6px 14px;
}
.upload_btn.nw_upldd:hover{
  background: #7e50a7;
  color: #fff;
}
.message_snt_sec{
  display: table;
  margin: 0 auto;
  margin-top: 18px;
  font-size: 15px;
  color: #7e50a7;
  font-weight: 500;
}

ol.edit-personal li.active, ol.edit-personal li:hover {
    font-weight: 500;
    font-size: 14px;
    background: var(--purple);
    border-radius: 25px;
    padding: 5px 20px;
    color: #fff !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*position: relative;*/
}
ol.edit-personal li a { color: var(--purple); }
ol.edit-personal li a:hover, ol.edit-personal li:hover a {
  color: #fff !important;
}

ol.edit-personal li {
    font-weight: 500;
    font-size: 14px;
    background: #e4dcf2;
    border-radius: 25px;
    padding: 5px 20px;
    margin: 0 5px 0 0;
    color: var(--purple);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /*position: relative;*/
}

.profile-btn {
    right: 0;
    float: right;
    /*padding: 35px 0 0 0;*/
}

.profile-btn a {
    font-weight: 600;
    font-size: 18px;
    background: var(--purple);
    border-radius: 25px;
    padding: 0px 45px;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
}

.request_close {
    text-align: end;
}

.request_close button.close {
    padding: 0;
    margin: 0;
    color: var(--purple);
    position: absolute;
    right: 17px;
    top: 15px;
    background: transparent;
    border: 0;
    height: auto;
    width: auto;
    font-size: 30px;
    line-height: 1;
}

.number_of_emp { display: flex; }
.number_of_emp label { float: left; line-height: 4;}
.number_of_emp .form-group { width: 20%; margin-left: 15px; }
.number_of_emp .form-control { width: 100% !important; padding: 0 30px 0 35px; }


/* ========== responsive css =========== */
@media (min-width: 1200px) {
  .container {
    max-width: 1230px;
  }
}

@media (min-width: 1025px) {
  /* navbar*/
  .navbar-nav .clickD {
    display: none;
  }

  .navbar-nav li.menu-item-has-children:hover > .sub-menu {
    display: block;
  }

  /*
    ::-webkit-scrollbar {
        width: 8px;
      }


      ::-webkit-scrollbar-track {
        background: white;
        border-radius: 0px;
      }


      ::-webkit-scrollbar-thumb {
        background: #42266d;
        border-radius: 4px;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.5);
      }



      * {
        scrollbar-width: thin;
        scrollbar-color: #42266d white;
      } */
  /* //scrollbar */
}

@media (max-width: 1499px) {
  .ban-rgt figure {
    margin-right: 0;
  }

  .cmnt-solo.yellow {
    right: -40px;
    bottom: 35%;
  }
}

/***Abhisek***/
@media (max-width: 1399px) {
  .sed_neck_img {
    max-height: 250px;
    max-width: 1100px;
  }

  /*Abhisek**/
}

@media (max-width: 1299px) {
  .cmnt-solo.yellow {
    right: 0;
    bottom: 39%;
  }
}

@media (max-width: 1199px) {
  .hiden .d-span {
    max-width: 135px;
  }
  .for-abs-label .hiden {
    right: 8px;
  }
  img.pic1.des {
    right: 100px;
    width: 21px;
  }

  h1 {
    font-size: 45px;
  }

  .ban-rgt figure {
    margin-right: 0;
  }

  /* .banner-outr > .row > * {
    width: 100%;
  } */
  .cmnt-solo.yellow {
    right: auto;
    bottom: 27%;
    left: 37%;
  }

  .ban-lft {
    margin-bottom: 20px;
  }

  .logo-outr ul li {
    width: calc(100% / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
  }

  .logo-outr ul {
    margin: -10px;
  }

  .cmnt-wrap {
    padding: 10px;
    border-radius: 50px;
    height: 100px;
    width: 300px;
  }

  h2 {
    font-size: 35px;
  }

  .profile-time {
    padding: 17px 14px 15px 27px;
    max-width: 527px;
    margin: 25px 0 25px;
  }

  .start-btn {
    font-size: 14px;
    padding: 9px 17px;
  }

  .important-wrap h3::after {
    width: 295px;
  }

  .cmnt-solo.blue {
    left: 8px;
    bottom: 6px;
  }

  .cmnt-solo h3 {
    font-size: 22px;
  }

  .cmn-gap {
    padding: 48px 0;
  }

  .toggle-switch-block {
    padding: 0 12px;
  }

  .profile-popup-wrap {
    padding: 17px;
  }

  .profile-popup .toggle-switch-block {
    width: 146px;
  }

  .profile-banner h1 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
  }

  .pic0 {
    right: 0;
    top: 0;
    width: 10%;
  }

  .large-dropdown .custom-tool {
    right: 60px;
  }

  .tool-info {
    padding: 15px;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }

  .tool-info p {
    font-size: 12px;
  }

  .import-btn .imp-btn {
    font-size: 14px;
    width: 100%;
    padding: 12px 15px;
  }

  .preffered_block {
    margin: 33px 0;
    padding: 16px;
  }

  .preffered_block_left {
    margin-right: 0;
    width: 100%;
    margin-bottom: 14px;
  }

  .preview_banner_img_sec_rgt_wrapper .row > * {
    width: 100%;
  }

  .preview_contact_sec {
    margin-top: 30px;
  }

  .tick_list {
    display: block;
  }

  .request_btn {
    font-size: 14px;
    padding: 6px 15px 6px 10px;
  }

  .add_btn {
    font-size: 14px;
  }

  .preview_banner_img_list.pv2 li {
    padding: 0 14px;
  }

  .preview_banner_img_list.pv2 li:first-child {
    max-width: 172px;
    padding-right: 9px;
    padding-left: 0;
  }

  img.ban-dsng {
    width: 80px !important;
  }

  .accor-wrap .accordion-button {
    font-size: 17px;
  }

  .accor-wrap .accordion-button {
    padding: 0px 22px 18px;
  }

  .accor-wrap .accordion-item {
    margin-bottom: 18px;
  }

  /********Abhisek*********/
  .loop_txt .sec-hdr h3 {
    font-size: 30px;
  }

  .loop_sec_each {
    padding: 50px 0;
  }

  .lp-sec2 {
    margin: 0 0 50px 0;
  }

  .sed_neck_img {
    max-height: 200px;
    max-width: 950px;
  }

  .hire-back {
    top: 70px;
    left: 50px;
    max-width: 350px;
  }

  .process-inr h5 {
    font-size: 16px;
  }

  .ban-msn-lft .ban-hdr {
    padding: 25px 40px;
  }

  .ban-rgt > figure {
    max-width: 250px;
    margin-left: auto;
  }
  .ban-rgt > figure.figg1 {
    max-width: 100%;
  }
  .ban-rgt .m-lft {
    margin-top: 30px;
  }

  .banner-sec.inner-banner p {
    font-size: 16px;
  }

  .plan-card {
    padding: 40px 25px;
  }

  .btn {
    font-size: 14px;
    padding: 9px 20px;
  }

  .pay-text2 p {
    font-size: 13px;
  }

  .pay-rgt {
    padding: 30px 15px;
  }

  .pay-lft {
    padding-right: 35px;
  }

  .resp-tab-content {
    padding: 15px;
  }

  .preview_banner_img_sec_left figure {
    width: 150px;
    height: 150px;
    margin: -150px auto 0;
  }

  .dataTable.no-footer {
    min-width: 1000px;
  }

  .dataTables_wrapper {
    overflow: auto;
  }
  a.ylw-btn {
    font-size: 14px;
    padding: 9px 35px;
}
  /********Abhisek*********/
  .unmask-table.neww .p2{
    max-width: 200px;
  }
  .unmask-table.neww .responsive-table{
    overflow-x: auto;
  }
  .preview_contact_list.wrpn{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -20px;
  }
  .preview_contact_list.wrpn > li{
    margin-right: 20px;
    margin-bottom: 15px;
  }
  .preview_contact_list.wrpn > li:last-child{
    margin-right: 0;
  }
  .unmask-table th:nth-child(5){
      min-width: 150px;
      max-width: 150px;
  }
  .unmask-table td:nth-child(5){
    padding-right: 20px !important;
  }
  .upload_btn.nw_upldd{
    padding: 6px 11px;
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  /* navbar*/
  .navbar-nav .clickD {
    position: absolute;
    right: 0;
    top: 17px;
    width: 20px;
    height: 20px;
    background: url(images/sort-down.svg) center center no-repeat;
    display: block;
    background-size: 10px;
    cursor: pointer;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu > li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu > li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu > li.menu-item-has-children > a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav > li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:after,
  .navbar-nav > li.menu-item-has-children > a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav > li.current-menu-item > a:after,
  .navbar-nav > li > a:hover:after,
  .navbar-nav > li.menu-item-has-children:hover > a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
}

@media (max-width: 991px) {
  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: 20px;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .dropdown-toggle::after{
    display: none;
  }
  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    -webkit-transform: rotate(45deg) translate(42px, -28px);
    -ms-transform: rotate(45deg) translate(42px, -28px);
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    -webkit-transform: rotate(-45deg) translate(42px, 28px);
    -ms-transform: rotate(-45deg) translate(42px, 28px);
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px !important;
    -webkit-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    transform: rotate(0) !important;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg) !important;
    -ms-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
  }

  .sub-menu,
  .navbar-nav > li > .sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav > li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav > li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav li.menu-item-has-children > a {
    padding-right: 30px !important;
  }

  .navbar-nav > li > a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
  }

  .sub-menu > li > a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu > li > a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 80px;
  }

  .navbar-nav > li > a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: #fff;
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    -webkit-transition: inherit !important;
    -o-transition: inherit !important;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
    z-index: 100;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    -webkit-transition: -webkit-transform 0.2s ease-in-out !important;
    transition: -webkit-transform 0.2s ease-in-out !important;
    -o-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    -o-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden !important;
  }

  /* push nav end */

  /* .hdr-rgt {
    margin-left: auto;
  } */

  h1 {
    font-size: 38px;
  }

  .ban-hdr h1 span {
    padding: 8px 15px;
  }

  .profile-time {
    max-width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .ban-rgt > figure {
    margin-top: 10px;
  }

  .ban-rgt figure > img {
    width: 100%;
  }

  .cmnt-solo.yellow {
    right: 0;
    bottom: 20%;
    left: auto;
  }

  .cmnt-wrap.profile-popup.prfle-pop2 span {
    font-size: 18px;
  }

  .cmnt-wrap.profile-popup.prfle-pop2 input[type="checkbox"].switch_1:after {
    height: 40px;
    width: 40px;
  }

  .cmnt-wrap.profile-popup.prfle-pop2 input[type="checkbox"].switch_1 {
    width: 64px;
    height: 35px;
  }

  .navbar-brand {
    width: 150px;
  }

  .btn.hdr-btn {
    padding: 11px 12px;
    font-size: 14px;
  }

  .form-group-for-custom-checkbox p {
    margin-bottom: 10px;
  }

  .main-form-sec .form-group-for-custom-checkbox {
    padding: 7px 30px;
  }

  .pic6 {
    position: absolute;
    left: 0;
    bottom: -45px;
    width: 16%;
  }

  .m-list-li {
    margin: 12px 30px;
  }

  .import-btn .imp-btn {
    margin-top: 20px;
  }

  .preview_banner_img_sec_left {
    width: 100%;
    padding: 0 15px;

}
.preview_banner_img_sec_left.pev2{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
  .preview_banner_img_sec_left figure {
    width: 200px;
    height: 200px;
    margin: 25px auto 0;
    position: relative;
    z-index: 2;
  }

  .preview_banner_img_sec_rgt {
    width: 100%;
    padding: 0 15px;
  }

  .employer_note_block {
    height: auto;
    margin-top: 30px;
  }

  input.position_submit_btn {
    font-size: 14px;
    height: 42px;
    padding: 0px 19px;
  }

  .position_form {
    padding: 25px 16px 27px;

    z-index: 9;
    min-width: 346px;
    display: none;
  }

  .login-outr h2 {
    font-size: 26px;
  }

  .congo p {
    margin-top: 10px;
    font-size: 14px;
  }

  .form-input .sub-btn {
    font-weight: 600;
    font-size: 15px;
    height: 40px;
  }

  .login-outr {
    max-width: 403px;
    padding: 35px 28px 20px;
  }

  .congo figure {
    height: 100px;
    width: 100px;
  }

  .congo figure img {
    width: 50px;
  }

  .contact-sec {
    min-height: calc(100vh - 460px);
  }

  .pic6.pc2 {
    bottom: 0;
    width: 30px;
  }

  .pic1 {
    right: 10px;
    bottom: 52px;
  }

  /**********Abhisek***/
  .loop_txt {
    margin-bottom: 10px;
  }
  @media (max-width: 575px){
    .new_bnr_pdg{
      padding: 0 0 0 0 !important;
    }
  }

  

  .for_next_tab_content .loop_txt {
    margin-bottom: 0;
    margin-top: 50px;
  }

  .loop_sec_each:nth-child(even) .loop_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .for_candidate .loop_fig {
    margin-top: 50px;
  }

  .loop_txt .sec-hdr h3 br {
    display: none;
  }

  .sed_neck_img {
    max-height: 150px;
    max-width: calc(100% - 15px);
  }

  .ban-hdr2 h1 {
    margin-bottom: 15px;
  }

  .hire-back-img {
    width: 100%;
  }

  .ban-rgt {
    text-align: center;
  }

  .hire-back {
    left: 50%;
    max-width: none;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .process-outr ul li span {
    height: 60px;
    width: 60px;
    font-size: 20px;
  }

  .process-outr ul li span::before {
    height: 85px;
    width: 85px;
  }

  .process-inr h5 {
    font-size: 13px;
  }

  .process-inr {
    padding: 75px 0;
  }

  .test-inr {
    padding: 40px 15px 25px;
  }

  .test-inr p {
    min-height: 255px;
  }

  .studio h5 {
    font-size: 12px;
  }

  .test-slider .slick-track {
    padding-bottom: 85px;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .pic3 {
    left: 15px;
  }

  .pic2 {
    right: 15px;
  }

  h5 {
    font-size: 16px;
  }

  .banner-outr.msn-outr .ban-rgt {
    margin-top: 100px;
  }

  .pic8 {
    left: 0;
  }

  .ban-msn-lft .ban-hdr {
    margin: 50px auto 0;
  }

  .m-lft h2 {
    font-size: 28px;
  }

  .m-rgt {
    padding: 30px 15px;
  }

  .plan-btn {
    font-size: 14px;
    padding: 9px 30px;
  }

  .plan-list li {
    font-size: 13px;
    background-size: 16px;
  }

  .plan-inr {
    margin-top: 25px;
  }

  .plan-price p span {
    font-size: 40px;
  }

  .pay-lft {
    padding-right: 0;
  }

  .payment-sec .form-points {
    margin-bottom: 15px;
  }

  .solution-we-offer-tab-section .row > *:first-child {
    display: none;
  }

  .solution-we-offer-tab-section .row > *:last-child {
    width: 100%;
  }

  h2.resp-accordion {
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
    background: transparent !important;
    padding: 10px 15px !important;
    border: 0;
  }

  h2.resp-tab-active {
    border-bottom: 1px solid #ffae1a !important;
  }

  h2.resp-accordion:first-child {
    border-top: 0;
  }

  .privacy-sec.cmn-gap {
    padding-top: 0;
  }

  .resp-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #000;
  }

  h2.resp-tab-active span.resp-arrow {
    border-bottom: 12px solid #000;
  }

  .preview-sec.prev2-sec .preview_banner_img_sec_left figure {
    margin: -60px 0 0;
  }

  .preview_banner_img_sec {
    margin: 0;
  }

  .preview-sec.prev2-sec .preview_banner_img_list {
    margin: 0;
    padding-bottom: 10px;
  }

  .preview_banner_img_list_inner {
    font-size: 15px;
  }

  .preview-sec.prev2-sec .preview_banner_img_list > li p a {
    font-size: 15px;
  }

  .preview_banner_img_list.pv2 {
    padding-top: 10px;
  }

  .defination-sec .title {
    margin-bottom: 0;padding: 0 15px;
  }

  .about_candidate.abt-can2 {
    padding: 0;
  }

  .preffered_block_right ul li {
    margin: 7px;
  }

  .noti-outr {
    padding: 17px 20px;
  }

  .sleep-form .form-select {
    padding: 0 30px 0 15px !important;
    font-size: 14px;
  }

  .sleep-form .form-control {
    font-size: 14px;
    padding: 0 15px !important;
  }

  .gl-form.form-sec {
    padding: 25px 15px;
  }

  .login-sec.log-h-sec {
    min-height: calc(100vh - 240px);
  }

  .contact-form {
    padding: 35px 20px 50px;
  }
  h2.resp-accordion {
    display: block;
  }
  .tab-v {
    display: block;
  }
  .desktop-v2 {
    display: none;
  }
  .employ .toggle-switch-block {
    justify-content: center;
  }
  .request_btn_otr {
    margin-bottom: 20px;
}
.defination_list {
  margin-top: 20px;
}
.preview-banner-txt.ht .preview-banner-txt-rgt{
    margin-top: -17px;
}

.form-input .form-control.password_sm{
  font-size: 14px;
}

.hire-back.nnww{
  width: 70%;
}
.hire-back.nnww .hr-pic{
  max-width: 100%;
  width: 100%;
}

.profile-time.nw_pf{
  max-width: max-content;
  width: auto;
}
.profile-time.nw_pf p{
  margin-right: 15px;
}

}

@media (max-width: 767px) {
  .profile-btn a{height: 45px;font-size: 14px;}
  .f-rgt.m-rgt.m-rgt-w {
    max-width: auto !important;
    width: auto !important;
  }
  .form-group .form-control{padding: 0 20px;}
  .front_img_mob{
    max-width: auto !important;
    width: auto !important;
  }
  .m-rgt.m-rgt-w{width: auto !important;}
  /* images alignment for wordpress 
  content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .logo-rgt {
    margin-top: 0px;
  }

  .ftr-hdr {
    display: block;
  }

  .ftr-nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .logo-lft {
    margin-top: 20px;
  }

  .logo-btm {
    padding-top: 32px;
  }

  .profile-time {
    flex-wrap: wrap;
    padding: 10px 14px 10px 27px;
  }
  .start-btn img {
    margin-left: 5px;

    width: 22px;
  }
  .profile-time p {
    margin-bottom: 0;
    font-size: 11px;
    margin: 10px 0;
  }
  .start-btn {
    font-size: 12px;
    padding: 5px 12px;
  }
  figure.l-fig {
    margin-top: 25px;
  }

  .hdr-rgt .dropdown button {
    padding: 10px;
  }

  .profile-popup-rgt p {
    font-size: 14px;
    margin-top: 18px;
  }

  .skip {
    padding: 8px 12px;
    position: static;
    font-size: 14px;
  }

  .common-form-outr .form-hdr h5 {
    font-size: 20px;
  }

  .whole-btn-wrap .nxt-btn {
    font-size: 15px;
    height: 45px;
    background-size: 18px;
    min-width: 124px;
  }

  .whole-btn-wrap .prev-btn {
    font-size: 15px;
    height: 45px;
    background-size: 18px;
    min-width: 124px;
  }

  .form-points ul {
    margin: -10px;
  }

  .form-points ul li {
    padding: 10px;
  }

  .form-points ul li::after {
    display: none;
  }

  .form-points h5 {
    font-size: 11px;
  }

  .form_input_check label {
    padding-left: 28px;

    font-size: 12px !important;
  }

  .form_input_check label input[type="checkbox"] + span::before {
    width: 18px;
    height: 18px;
  }

  .form-group-for-custom-checkbox
    .form_input_check
    label
    input[type="checkbox"]
    + span::after {
    width: 18px;
    height: 18px;
  }

  .profile-banner h1 {
    font-size: 32px;
  }

  .dropdown.avatar-dropdown .dropdown-menu {
    padding: 8px;

    right: 10px;
    left: auto !important;
  }

  .hdr-rgt .dropdown button {
    padding: 0;
    font-size: 12px;
  }

  .dropdown-item {
    padding: 0;
  }

  .pic6 {
    left: 0;
    bottom: 0;
    width: 7%;
  }

  .warn-txt span {
    font-size: 13px;
  }

  .form-points {
    margin-bottom: 40px;
  }

  .gl-frm-btn .pos-btn {
    font-size: 15px;

    padding: 6px 12px;
  }

  .gl-frm-btn .pos-btn span {
    height: 30px;
    width: 30px;
  }

 
  .photo-btn {
    margin-bottom: 12px;
    padding: 8px 24px;
  }
  .up-outr-wrp {
    display: inline-flex;
}
.upload-wrp {
  height: 116px;
  width: 116px;
}
.yr-field {
  max-width: 82px;
}


  

  .m-list-li {
    margin: 32px 30px;
  }

  .profile-outr span {
    font-size: 14px;
  }

  .main-form-sec h2 {
    font-size: 30px;

    margin-bottom: 33px;
  }

  .mask-btn a {
    font-size: 13px;
    padding: 5px 5px;
    border-radius: 50%;
}
.main-head .header-list .middle-icon-one .dropdown button .avatar-img{
  height: 40px !important;width: 40px !important;
}
  .form-group.cus-frm-gp textarea {
    height: 196px;
  }

  .form-points {
    margin-bottom: 60px;
  }

  .f-up h5 {
    font-size: 15px;
    text-align: start;
  }

  .preview-uppr-left .toggle-switch-block {
/* task 86a1hv19h  */
    font-size: 12px;
    /* task 86a1hv19h  */
    min-width: 252px;
    height: 45px;
  }

  .blue_btn {
    /* task 86a1hv19h  */
    font-size: 12px;
    /* task 86a1hv19h  */
    padding: 10px 25px;
    min-width: 135px;
  }

  .preview-uppr-rgt {
    margin-top: 0px;
  }

  .preview_banner_img_list > li {
    width: 100%;
    border-right: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .preview_banner_img_list_inner {
    font-size: 16px;
    max-width: 100%;
    margin: 10px 0;
  }

  .preffered_block_right ul li {
    margin: 0 7px 7px;
  }

  .defination_list h5 {
    font-size: 15px;

    margin-right: 10px;
    margin-bottom: 10px;
    width: 100%;
  }

  img.pic1.des {
    right: 6px;
    width: 21px;
  }

  .social-login li a {
    font-size: 15px;
  }

  .bn-md2 {
    display: none;
  }

  .process-outr ul li span::after {
    top: -35px;
    height: 35px;
  }

  .process-outr ul li:nth-child(4) span::after {
    bottom: -35px;
  }

  .process-outr ul li:nth-child(2) span::after {
    bottom: -35px;
  }

  .hire-back-img {
    width: 100%;
}

  .ban-rgt {
    text-align: center;
  }

  .banner-sec.inner-banner p {
    font-size: 14px;
  }

  .f-col {
    padding: 15px;
  }

  .f-row {
    margin: -15px;
  }

  .test-slide.slick-center .test-inr {
    -webkit-box-shadow: 0px 10px 17px rgb(94 139 255 / 10%);
    box-shadow: 0px 10px 17px rgb(94 139 255 / 10%);
  }

  .pic3 {
    max-width: 50px;
  }

  .banner-sec.inner-banner.hire-ban .ban-hdr h1 span {
    margin-right: 10px;
    margin-left: 10px;
  }

  .m-rgt {
    left: 0;
    position: static;
    margin: auto;
    transform: none;
}
  .m-lft {
    margin-bottom: 30px;
  }

  .talnt-btm-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .talnt-btm-wrap > a {
    width: 100%;
  }

  .talnt-btm-wrap > a:first-child {
    margin-bottom: 20px;
  }

  /* .plan-list {
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  } */

  .pay-rgt {
    margin-top: 30px;
  }

  .preview_banner_img_list.pv2 li:last-child {
    padding-left: 0;
  }

  .preview-sec.prev2-sec .preview_banner_img_list > li {
    width: 50%;
    padding: 0 15px;
  }

  .unmask-sec h1 {
    font-size: 28px;
  }

  .ban-up {
    margin-top: 50px !important;
  }

  .ban-up.ban-up3 {
    margin-top: 82px;
  }

  .preview_banner_img_sec_rgt {
    padding: 0;
  }

  .preview_banner_img_sec_left {
    padding: 0 20px;
  }
  .desktop-v {
    display: none;
  }
  .mobile-v {
    display: block;
  }
  .mobile-v.mobile-v-bg {
    right: -70px;
    position: relative;
    object-fit: cover;
  }
  .ban-links-btm {
    margin-top: 60px;
  }
  .cmnt-rgt {
    text-align: left;
  }
  .ftr-nav ul li {
    margin-right: 0 !important;
    width: 50%;
  }
  .check-inn .checkmark {
    top: -1px;

    height: 15px;
    width: 15px;
  }
  .check-inn .checkmark:after {
    left: 4px;
    top: 2px;
    width: 5px;
    height: 9px;
  }
  .check-inn {
    padding-left: 20px;
  }
  .pr-col {
    width: 60%;
  }
  .pr-col2 {
    width: 40%;
  }
  .private-ban-img {
    width: 80px !important;
    margin-left: auto;
  }
  .log-wrap {
    background-image: none !important;
  }
  .log1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 40vw;
  }
  .log2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    z-index: -1;
    margin: auto;
    right: 0;
  }
  .log-wrap.log-wrap2 {
    padding: 50px 0;
  }
  .log1.log12 {
    width: 130px;
  }
  .log-wrap.lg-wrp2 {
    padding: 50px 0;
  }
  img.pic1.des {
    display: none;
  }
  img.ban-dsng {
   margin-left: auto;
}
.con-inr{
  padding-bottom: 0 !important;
}
.c-desng2 {

  right: 0px;

}
.contact-form {
  max-width: 90%;
  margin: auto;
}
.c-desng1 {
  left: 0;
  bottom: -21px;
}
.test-inr p {
  min-height: auto;
}
.slick-dotted.slick-slider {
  margin-bottom: 0px;
  padding-bottom: 40px;
}
.test-slider .slick-track {
  padding-bottom: 0;
}
.hire-back .hr-pic {
  max-width: 345px;
  width: auto;
}
.ban-msn-lft {

  text-align: center;
}
.ban-rgt .m-lft {
  text-align: left;
}
.form-submit-btn {
  margin-top: 0px;
  margin-bottom: 0;

}
.mob-sve{
  margin-top: 24px;
}
.loop_txt {
  padding: 0px 30px;
}


.preview-uppr-left .title {

  margin-bottom: 20px;
}
.logo-col{
  order: -1;
}
.slide-sec-rgt {
  margin-bottom: 25px;
}
.plan-list {
  padding-left: 20px;
}
.logo-outr ul {
  margin: 0;
}
.social-slider .slick-track{
  display: flex;
  align-items: center;
}
.social-slider a img{
  margin: auto;
}
.form-input.sn-up .sub-btn {

  width: 70%;
  padding: 0 12px;

}
.form-input .sub-btn {
  padding: 0 12px;
  font-size: 14px;

}
.login-outr {
  padding: 76px 28px 76px;
}
/* ========= */
.unmask-mobile .del-pic{
  position: absolute;
  right: 20px;
  top: 20px;
}
.unmask-hdr-wrp {
  margin-bottom: 15px;
}
.unmask-collap {
  margin-top: 20px;
}
.unmask-collap {
  display: none;
}
.unmask-mob-wrap {
  box-shadow: 0px 15px 15px rgb(114 153 255 / 10%);
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 30px 20px;
}
.unmask-colap-inr {
  margin-bottom: 20px;
  border-bottom: 1px solid #eeebfb;
  padding-bottom: 20px;
}
.blue_btn img {
  width: 20px;
}
.height_ofunmask{
  min-height: calc(100vh - 220px);
}
.preview-banner-txt.ht .preview-banner-txt-rgt{
    margin-top: 0;
}
.test-inr{
  margin: 20px 15px;
}
.unmask_quoted_sectn h4{
  font-size: 15px;
  margin-bottom: 17px
}
.unmask_quoted_sectn .btn{
  display: table;
  margin-bottom: 10px;
}
.date_part_qt{
  display: table;
}

.skop_text_wrppt{
  text-align: right;
}

.unmask_quoted_sectn_new_row .delte_ico_sc .del-pic{
  position: static;
}
.unmask_quoted_sectn_new_row [class*="col-"].rtt{
  text-align: right;
}
.unmask_quoted_sectn_new_row{
  align-items: center;
}
.unmask_quoted_sectn_new_row .date_part_qt{
  margin-left: auto;
}
.studeio_sec_mbl{
  font-weight: 500;
  font-size: 14px;
  color: #7e50a7;
}
.studeio_sec_mbl .studeo_Sec_cnt{
  margin-left: 7px;
}
.studeio_sec_mbl:hover{
  color: #000;
}
.studeio_sec_mbl .fig_img{
  display: inline; 
}

.studeio_sec_mbl .fig_img img{width: 34px; height: 34px; object-fit: cover;}

.upload_btn.nw_upldd{
  padding: 8px 15px;
  font-size: 15px;
}
.studeio_sec_mbl { display: flex; align-items:center; }
.studeio_sec_mbl .fig_img{width:34px;}
.studeio_sec_mbl .studeo_Sec_cnt{width:calc(100% - 34px); padding-left: 5px;}

}

@media (max-width: 575px) {
  .profile-popup-rgt p {
    font-size: 12px;

    padding: 0;
}
  .gl-frm-outr.pos-r .custom-tool {

    right: 0;
}
  .hire-back .hr-pic {
    max-width: 288px;

}
  /* .input-daterange {
    display: block;
  } */
  .input-daterange .form-control.input1 {
    border-right: 0;
  }
  .ban-hdr {
    margin-top: 43px;
  }
  .accor-wrap .accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;

    background-size: 12px;

    margin-right: 9px;
  }

  .accor-wrap .accordion-body {
    padding: 1rem 1.25rem 25px 58px;
  }

  .pic1 {
    width: 20px;
  }

  .accor-wrap .accordion-button {
    font-size: 15px;
  }

  .sm-dn {
    display: none;
  }

  .log-wrap {
    padding: 40px 0;
  }

  .log-wrap.lg-wrp2 {
    padding: 40px 0 40px;
  }

  .defination_list ul li {
    /* margin: 4px 6px; */
  }

  .hdr-rgt.hdr-rgt2 {
    display: block;margin-left: 20px;
  }

  .important-wrap h3::after {
    width: 194px;
  }

  .sec-hdr span {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0;
  }

  h2 {
    font-size: 26px;
  }

  .cmn-gap {
    padding: 30px 0;
  }

  body {
    font-size: 14px;
  }

  .logo-rgt ul li {
    font-size: 14px;
  }

  .btn {
    font-size: 15px;
    padding: 12px 30px;
  }
  a.ylw-btn {
    font-size: 15px;
    padding: 12px 30px;
}
  .logo-rgt ul li {
    padding-left: 28px;
    background-size: 18px;
  }

  .ban-lft .hide em {
    font-size: 16px;
  }

  h1 {
    font-size: 33px;
  }

  .navbar-nav .mobile-li {
    display: block;
    margin: 10px !important;
  }

  .hdr-rgt {
    display: none;
  }

  .btn.hdr-btn.hdr-bn2 {
    margin: 0;
  }

  .btn.hdr-btn {
    color: white;
  }

  .outr-points {
    padding: 30px 0 25px;
    position: relative;
  }

  .form-points h5 {
    font-size: 11px;
    position: absolute;
    top: 0;
    width: 73px;
    text-align: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    min-height: auto;
    margin: 0;
  }

  .form-points li:nth-child(2n) h5 {
    top: auto;
    bottom: 0;
    margin: 0;
  }

  .form-points ul li span {
    font-size: 14px;

    height: 22px;
    width: 22px;
  }

  .form-points .point-wrap {
    height: 30px;
    width: 30px;
  }

  .common-form-outr .form-hdr span {
    font-size: 12px;
  }

  .gl-form.form-sec {
    padding: 27px 14px;
  }

  .slider-total-sec {
    display: block;
  }

  .slider-total-right {
    padding-left: 0;
  }

  .tool-info {
    width: 170px;
  }
  .tool-info.tool-info-mob {
    right: 0px !important;
    width: 170px;
    left: auto !important;
}
  .form-submit-btn .submit-btn {
    font-size: 15px;
    padding: 0 40px;
    height: 45px;margin-top: 10px;
  }

  .cmn-form-btm {
    padding: 22px 0;
  }

  .input-field-dropdown > ul > li {
    border: 0;
    width: 100%;
  }

  .input-field-dropdown > ul > li:last-child {
    padding-right: 15px;
    border: 0;
  }

  .input-field-dropdown > ul > li:first-child {
    padding-left: 15px;
  }

  .skills_list_block {
    padding: 35px 0;
  }

  .work_list li {
    padding-left: 25px;
    position: relative;
  }

  .work_block_each {
    margin-bottom: 40px;
  }

  .position_form .form-group textarea {
    padding: 12px 14px;
    height: 106px;
    resize: none;
  }

  .position_form .form-group .form-control {
    font-size: 14px;

    padding: 0 14px;
    height: 50px;
  }

  .skills_list_block h4 {
    font-size: 22px;
  }

  .c-desng1 {
    left: 0;
    bottom: -21px;
    width: 218px;
}

  .contact-top ul {
    display: block;
  }

  .contact-top li figure {
    margin-left: 0;
    margin-right: 12px;
  }

  .contact-top li:first-child {
    text-align: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

    margin-bottom: 12px;
  }

  .contact-top ul li {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .contact-top ul {
    margin-bottom: 15px;
  }

  .mb-60 {
    margin-bottom: 18px !important;
  }

  .form-points {
    margin-bottom: 30px;
  }

  /*******Abhisek******/
  .loop_txt .sec-hdr h3 {
    font-size: 25px;
  }

  .loop_ftr_txt p {
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .sed_neck_img {
    max-height: 100px;
  }

  .hire-back {
    top: 85px;
  }

  .play-btn {
    height: 60px;
    width: 60px;
  }

  .play-btn::before {
    height: 90px;
    width: 90px;
  }

  .process-outr ul li span {
    height: 45px;
    width: 45px;
    font-size: 14px;
  }

  .process-outr ul li span::before {
    height: 65px;
    width: 65px;
  }

  .process-sec h2 {
    margin-bottom: 25px;
  }

  .feature-outr {
    padding-top: 0;
  }

  .banner-sec {
    padding: 0 0 40px 0;
  }

  .ylw-btn {
    font-size: 13px;
    padding: 15px 15px;
  }

  .cre-pan {
    font-size: 11px;
  }

  .cre-pan span {
    margin-right: 14px;
  }

  .payment-sec h1 {
    font-size: 40px;
  }

  .form-input .form-control {
    height: 45px;
  }

  .unmask-sec h1 {
    font-size: 24px;
  }

  .unmask-sec h1 span {
    font-size: 26px;
    height: 35px;
    /* width: 35px; */
  }

  .notification p {
    padding-left: 20px;
  }

  .fancy-modal-body {
    padding: 30px 15px;
  }

  .fancy-modal-body1 {
    padding: 30px 15px;
  }

  .modal-btn-wrap .yes-btn {
    font-size: 13px;
    padding: 7px 15px;
  }
  .in-ap {
    right: 0;
  }
  .log2 {
    width: 100%;

  }
  .log2.log21 {
    width: 86%;

  }
  .height_ofunmask {
    min-height: calc(100vh - 182px);
  }
  .preview_contact_list.wrpn > li{
    margin-right: 10px;
  }
  img.masked-img.masked-img-p {all: inherit !important;}
}


@media (max-width: 479px) {
  .front_img_mob{
    max-width: auto !important;
    width: auto !important;
  }
  .profile-time{
    padding: 10px 14px 10px 17px;
  }
  .ban-hdr h1{
    font-size: 29px;
  }
  .log2.log21 {
    width: 100%;
}
.common-form-outr .form-hdr span img{
  width: 14px;
}
  .form-group-for-custom-checkbox.thrd-form
    .form_input_check
    label:not(:last-child) {
    margin-right: -1px;
    display: block;
  }
  .form-group-for-custom-checkbox .form_input_check label:not(:last-child) {
    margin-right: 20px;
    margin-bottom: 5px;
    margin-top: 5px;
}
  .form-points h5 {
    font-size: 8px;
  }

  .important-wrap h3::after {
    display: none;
  }

  .cmnt-solo {
    margin: 12px 0;
  }

  .logo-outr ul li {
    width: calc(100% / 2);
  }

  .cmnt-wrap {
    height: 80px;
    /* width: 235px; */
  }

  .ftr-btm-lft {
    display: block;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .ftr-btm-lft span {
    margin-left: 0;
  }

  .profile-banner h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .hdr-rgt .dropdown span {
    margin-right: 7px;
    display: inline-block;
    width: 25px;
  }

  .navbar-brand {
    width: 110px;
  }

  .gl-frm-outr .form-group-for-custom-checkbox.scnd-form {
    height: auto;
    border-radius: 30px;
    padding: 10px 10px;
  }

  .slider-total-right {
    padding-left: 0;
  }



  .common-form-outr .form-hdr h5 {
    font-size: 15px;

  }
  .skip {
    padding: 8px 7px;
    font-size: 12px;
}
.common-form-outr .form-hdr span {
  font-size: 10px;
}
.form-hdr .skip {

  margin-left: 5px;
}
.skip em {
  margin-left: 12px;
  width: 13px;
}
.common-form-outr .form-hdr{
  margin-bottom: 10px;
}
  .gl-frm-outr .form_input_check label {
    margin-bottom: 10px;
  }

  .form-group-for-custom-checkbox {
    padding: 10px 25px;
  }

  .form-group-for-custom-checkbox .form_input_check label:last-child {
    margin-bottom: 0;
  }
  @media (max-width: 767px){
    .loop_full{
      padding:0 !important;
    }
  }



  /* .select2-search.select2-search--inline {
  display: none;
} */
  .toggle-switch-block {
    font-size: 12px;

    padding: 0 15px 0 15px;
    height: 45px;
  }

  .form-group .form-control {
    font-size: 10px;

    height: 45px;
    padding: 0 128px 0 15px;
  }

  .large-dropdown .dropdown-toggle {
    padding: 0 24px;

    min-height: 45px;
    font-size: 10px;
  }

  .large-dropdown .dropdown-toggle::after {
    right: 8px;
  }

  .profile-popup .toggle-switch-block {
    width: 180px;
  }

  .gl-form label {
    font-size: 13px;

    margin-left: 0;
    margin-bottom: 10px;
  }

  .outr-points {
    padding: 23px 0 17px;
    position: relative;
  }

  textarea {
    padding: 12px 16px;

    height: 110px;
    font-size: 10px;

    padding: 13px 137px 18px 15px;
  }

  .pic0 {
    top: -16px;
    z-index: -1;
    width: 5%;
}

  .pic6 {
    left: 0;
    bottom: 51px;
    width: 7%;
  }

  .warn-txt.text-end {
    margin-bottom: 15px;
  }

  .main-form-sec h2 {
    font-size: 28px;
  }

  .cmn-form-btm .ftr-btm-lft span {
    margin-left: 0;
  }

  .form-group.for-dropdown-option {
    min-height: 45px;

    padding: 0 129px 0 18px;
  }

  .custom-tool {
    top: 46px;
    z-index: 2;
    right: 52px;
  }

  .input-dropdown {
    font-size: 10px;
  }

  .input-field-dropdown > ul > li {
    padding-left: 0 !important;
  }

  .preview-uppr-left .title {
    margin-right: 15px;
    margin-bottom: 40px;
  }

  .preview_banner_img_sec_left figure {
    margin: 18px auto 16px;
  }

  .preview-banner-fig figure {
    height: 80px;
  }

  .preview-banner-txt {
    padding: 16px 3px;
  }

  .edit_btn11 {
    font-size: 14px;
  }

  .position_form {
    min-width: 251px;
    display: none;
  }

  .full-large .custom-tool {
    top: 14px;
    z-index: 2;
    right: 52px;
  }

  .form-input .form-select {
    height: 45px;
  }

  .pic6.pc2 {
    bottom: 0px;
    width: 16px;
  }

  .social-login li a {
    font-size: 13px;
  }

  .social-login li a span {
    margin-left: 5px;
    display: inline-block;
  }

  .social-login li a {
    padding: 7px 10px;
  }

  /***********Abhisek************/
  .loop-sec .nav-tabs .nav-link {
    font-size: 13px;
    padding: 9px 20px;
  }

  .front_img {
    max-width: 250px;
  }

  .back_img {
    max-width: 265px;
  }

  .loop_txt .sec-hdr h3 {
    font-size: 22px;
  }

  .front_img.small_img3 {
    top: 80px;
    left: 0;
  }

  .hire-back {
    top: 65px;
  }

  .pic3 {
    max-width: 35px;
  }

  .banner-outr.msn-outr .ban-rgt {
    margin-top: 45px;
  }

  .credit-card {
    padding: 12px 15px;
  }

  .form-group .form-select {
    height: 45px;padding: 0 20px;
  }

  .cvv-part span {
    margin: 0 5px;
  }

  .pay-form .form-group .form-control {
    padding: 0 10px;
  }

  .cvv-part {
    margin-bottom: 30px;
  }

  .cvv-part h5 {
    margin-left: 8px;
    margin-right: 8px;
  }

  h2.resp-accordion {
    font-size: 14px;
  }

  .login-outr h2 {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .preview-sec.prev2-sec .preview_banner_img_list > li {
    width: 100%;
  }

  .preview_banner_img_sec_left figure {
    width: 130px;
    height: 130px;
  }
  .preview-sec.prev2-sec .add_btn span {
    margin-right: 8px;
}

  .login-outr {
    max-width: 95%;
    /* padding: 25px 10px 15px; */
  }

  .notification {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .notification p {
    padding-left: 0;
    margin-top: 20px;
  }

  .form-select {
    font-size: 10px;
    background-size: 10px;
  }

  .sleep-form .form-select {
    font-size: 10px;
    padding: 0 30px 0 15px !important;
  }

  .sleep-form .form-control {
    font-size: 10px;
    padding: 0 15px !important;
  }

  .select2-container--default .select2-selection--multiple {
    padding: 5px;
    font-size: 11px;
  }

  .custom-check-sec .form_input_check label {
    margin: 10px 0;
  }
  .preview-upper {
    position: relative;
}

.form-group.for-dropdown-option {
  min-height: 45px;
  padding: 0 18px 0 18px;
  display: block;
}

 
.form-group.for-dropdown-option .toggle-switch-block{

  /* position: static;
  justify-content: flex-end;
  border-radius: 50px;
  width: 128px;
  margin-left: auto; */
  height: 46px;
  
}
.input-daterange .form-control{
  padding: 0px 0px !important;
}

.profile-popup-wrap.cutsom-purple-wrap .row{
  padding: 0px !important;
}
.profile-popup-rgt p {
  margin-top: 0px;
  margin-bottom: 8px;
}


.form-group.for-dropdown-option {
  min-height: auto;

}


.input-daterange {
  /* justify-content: center; */
  margin: 15px 0;
}


.height_ofunmask{
  min-height: calc(100vh - 200px);
}
.login-outr{
  padding: 76px 18px 76px;
}
.form-input .form-control.password_sm{
  font-size: 10px;
  padding: 2px 12px;
}
.skip.new{
  padding: 6px 12px;
  font-size: 14px;
}
.studeio_sec_mbl{
  font-size: 13px;
}
.unmask-table .unmask_quoted_sectn_new_row .btn{
  font-size: 13px;
  min-width: 150px;
  padding: 12px 6px;
}

}

@media (max-width: 374px) {
  .hire-back {
    top: 55px;
  }

  .play-btn {
    height: 45px;
    width: 45px;
  }

  .play-btn > img {
    max-width: 15px;
  }

  .play-btn::before {
    height: 70px;
    width: 70px;
  }

  .process-outr ul li span {
    height: 30px;
    width: 30px;
  }

  .process-outr ul li span::before {
    height: 45px;
    width: 45px;
  }

  .process-inr h5 {
    font-size: 11px;
  }

  .ban-msn-lft .ban-hdr {
    padding: 25px 20px;
  }

  .plan-card {
    padding: 20px 10px;
  }

  .plan-list li {
    font-size: 12px;
  }

  .payment-sec h1 {
    font-size: 30px;
  }

  .cre-pan span {
    margin-right: 6px;
  }

  .modal-btn-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .modal-btn-wrap > a {
    margin: 5px 0 !important;
  }
  .for-abs-label .hiden {
    bottom: -20px;
  }
  .profile-time.nw_pf p{
    margin-right: 6px;
  }
}
@media (max-width: 375px) {
  .cmnt-solo {
    position: static !important;
  }
  .hire-back .hr-pic {
    max-width: 210px;
}
.common-form-outr .form-hdr h5 {
  font-size: 13px;
}
.preview_banner_img_sec_left figure {
  width: 85px;
  height: 85px;
}
.add_btn {
  font-size: 12px;
}
.preview-sec.prev2-sec .add_btn_otr {

  margin-top: 8px;
}
.preview-sec.prev2-sec .preview_banner_img_sec_left figure {
  margin: -22px 0 0;
}
.preview-sec.prev2-sec .add_btn {
  padding: 8px 11px 8px 11px;
}
.plan-list {
  padding-left: 10px;
}
}


/* sweetalert2 */
.swal2-title {
  /* color: #956FB6 !important; */
  font-size: 14px !important;
  font-family: "Poppins" !important;
  /* position: absolute; */
font-weight: 400 !important;
font-size: 14px !important;
line-height: 21px !important;
text-align: center !important;

color: #383838 !important;
padding: unset !important;
}

.swal2-default-outline {
  border-radius: 22px !important;

}
div#swal2-html-container{
  /* color: #956FB6 !important; */
  font-size: 14px !important;
  font-family: "Poppins" !important;
  /* position: absolute; */
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 21px !important;
  text-align: center !important;
  padding: 0px 17px !important;
}
/* div#swal2-html-container {
font-family: 'Poppins' !important;

font-weight: 500 !important;
font-size: 18px !important;
line-height: 27px !important;  */
/* identical to box height */

/* text-align: center !important;

color: #7E50A7 !important;
} */

.swal2-icon .swal2-icon-content {

  font-size: 3em !important;
  color: #956FB6 !important;
}

.swal2-icon.swal2-icon-show {
  /* background: #F1EBF5 !important; */
  border: none !important;
}

.swal2-icon .fa {
  margin-bottom: 8px !important;
}

button.swal2-close {
  color: #956FB6 !important;
  font-weight: unset !important;
  font-size: 30px;
  margin-right: 9px;
  width: 1.5em !important;
}

.swal2-icon .swal2-icon-content {
display: block !important;
align-items: center;
font-size: 0px !important;
}
.swal2-icon {
  height: 5em !important;
  width: unset !important;
  margin: 1.5em auto 0em !important;
}
.swal2-html-container {
margin: 0.5em 0.2em 0.2em !important;
}
.swal2-actions {
margin: unset !important;
}
.swal2-popup.swal2-modal.swal2-show {
border-radius: 22px !important;
}
.swal2-styled {
margin: 0em 0.7em !important;
padding: 0.5em 3.1em !important;
}

.swal2-actions {
margin-top: 0.4em !important;
}
.swal2-popup {
padding: 0 0 1.5em !important;
}
.inline-table-modal{
  position: relative !important;
  
}
.inline-table-modal {
  display: inline-table !important;
  margin-top: -27px !important;
}

.send-rew-cut{
  text-align: end;
    padding: 3px 20px;
}

input.position_submit_btn {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  height: 45px;
  padding: 0 25px;
  background: #ffae1a;
  border-radius: 35px;
  border: 1px solid transparent;
}
.upload-wrp img{
  object-fit: cover;
}
.masked-img{
  /* all:unset !important; */
}

.main_img_masked{
  width: 211px;
    height: 211px;
    background: #f2edf6;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    
}
.shake-blue {
  animation: shake 4s;
  -webkit-animation: shake 4s;
}
@keyframes shake {
  0% { height: 49px;}
  5% {  height: 44px;}
  10% {height: 49px}
  15% {height: 44px}
  20% { height: 49px}
  25% {  height: 44px;  }
  30% {  height: 49px; }
  35% {  height: 44px; }
  40% { height: 49px; }
  45% { height: 44px}
  50% {  height: 49px;}
  55% {  height: 44px}
  60% { height: 49px}
  65% {  height: 44px}
  70% {  height: 49px}
  75% {  height: 44px}
  80% {  height: 49px}
  85% {  height: 44px}
  90% {  height: 49px}
  95% {  height: 44px; }
  96% {  height: 49px; }
  100% {  height: 44px; }
}

.shake-blue-publish {
  animation: shake2 4s;
  -webkit-animation: shake2 4s;
}
@keyframes shake2 {
  0% { height: 51px;}
  5% {  height: 47px;}
  10% {height: 51px}
  15% {height: 47px}
  20% { height: 51px}
  25% {  height: 47px;  }
  30% {  height: 51px; }
  35% {  height: 47px; }
  40% { height: 51px; }
  45% { height: 47px}
  50% {  height: 51px;}
  55% {  height: 47px}
  60% { height: 51px}
  65% {  height: 47px}
  70% {  height: 51px}
  75% {  height: 47px}
  80% {  height: 51px}
  85% {  height: 47px}
  90% {  height: 51px}
  95% {  height: 47px; }
  96% {  height: 51px; }
  100% {  height: 47px; }
}

.blink {
  animation: blink 2s;
  -webkit-animation: blink 2s;
}
@keyframes blink {
  0% { opacity: 1;}
  10% { opacity: 0;}
  20% { opacity: 1;}
  30% { opacity: 0;}
  40% { opacity: 1;}
  50% { opacity: 0;}
  60% { opacity: 1;}
  70% { opacity: 0;}
  80% { opacity: 1;}
  90% { opacity: 0;}
  95% { opacity: 1;}
  99% { opacity: 0;}
  100% { opacity: 1;}
  
}


span.menu-dots{position:absolute !important;bottom:176px !important;z-index:9999;left:15px}
@media(max-width:991px){
  span.menu-dots{position:absolute !important;bottom:100px !important;z-index:9999;left:15px}
}

.candidate_grid_ppl_icn.large .clickd_tgl_searches {
    width: 35px;
    height: 35px;
}
.clickd_tgl_searches {
    background: #e2e9f0;
    color: #00396f;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 21px;
    line-height: 1;
}
.clickd_tgl_searches_open:not(.active) {
    display: none;
}
.clickd_tgl_searches_open {
    z-index: 11;
    width: 221px;
    position: absolute;
    top: 100%;
    background: #fff;
    -webkit-box-shadow: 0 3.18954px 19.1373px rgba(94, 139, 255, 0.15);
    box-shadow: 0 3.18954px 19.1373px rgba(94, 139, 255, 0.15);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    padding: 12px 16px;
}
.clickd_tgl_searches_open_head h5 {
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.clickd_tgl_searches_open_ul .form_input_check {
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
}
.clickd_tgl_searches_open_ul .form_input_check label {
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    padding: 8px 3px;
    width: 100%;
    padding-left: 26px;
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"]+span {
    font-size: 11px;
    font-weight: 400;
    color: var(--grey8);
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"] + span:before {
    border: 1px solid var(--purple) !important;
    background: none !important;
}
.form_input_check label input[type="checkbox"]+span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    background: url(images/tick3.svg) no-repeat center center !important;
    background-size: 15px;
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"]:checked + span:after {
    opacity: 1 !important;
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"]:checked+span:after {
    background-image: url(images/gr_border_wttc1.png);
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"] + span:after {
    opacity: 0 !important;
}
.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.form_input_check label input[type="checkbox"]:checked+span:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.form_input_check label input[type="checkbox"]+span::after {
    width: 16px;
    height: 16px;
    background: url(images/gray-arrw-tick.svg) no-repeat center center;
    background-size: 8px;
}
.form_input_check label input[type="checkbox"]+span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    /*background: url(images/tick.svg) no-repeat center center;*/
    background-size: 14px;
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"]+span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 11px;
    background: rgba(217, 217, 217, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 17px;
    height: 17px;
    border: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"]+span {
    font-size: 11px;
    font-weight: 400;
    color: var(--grey8);
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"] + span:after {
    opacity: 0 !important;
}
.clickd_tgl_searches_open_ul .form_input_check label input[type="checkbox"]+span:after {
    position: absolute;
    content: "";
    left: 0;
    top: 11px;
    background: url(images/check.png) no-repeat center center;
    width: 17px;
    height: 17px;
    background-size: 8px;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    opacity: 1;
}

.request_close button.close_req_mask {
    padding: 0;
    margin: 0;
    color: var(--purple) !important;
    position: absolute;
    right: 17px;
    top: 15px;
    background: transparent;
    border: 0;
    height: auto;
    width: auto;
    font-size: 30px;
    line-height: 1;
}


.preview-uppr-rgt {
   /* task 86a1hv19h */
  min-height: 51px;
   /* task 86a1hv19h */
}

.form_input_check label input[type="checkbox"]:checked + span::before {
  border: 1px solid var(--purple) !important;
  background: var(--purple) !important;
}
.main-head .header-list .middle-icon-one .dropdown button .avatar-img{
   width: 50px;
   height: 50px;
   /*overflow: hidden;
   */border-radius: 100%;
   -webkit-border-radius: 100%;
   -moz-border-radius: 100%;
   -ms-border-radius: 100%;
   -o-border-radius: 100%;
}
.main-head .header-list .middle-icon-one .dropdown button .avatar-img img{
  width: 100%;
  height: 100%;
  /*object-fit: contain;
  */border-radius: 50% !important;
  padding: 0;
}


.block-emp-btn {
  background : #fff;
  border: 1px solid #f9595f !important;
  color: #f9595f;
}

.block-emp-btn:hover {
  background : #f9595f;
  border: 1px solid #f9595f !important;
  color: #fff;
}
.disabled-btn {
  pointer-events: none;
}

.block-emp-btn[disabled], .block-emp-btn[disabled]:hover {
  background : #f9595f;
  opacity: 1;
  border: 1px solid #f9595f !important;
  color: #fff;
  pointer-events: none;
}

.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
  background: #7e50a7 !important;
}

.text-grey {
  color: #bfbfbf;
}

.opacity-05 { opacity: 0.7 }

.upload-wrp span.remove-avatar {
  cursor: pointer;
  background: #f9595f;
  border: 1px solid #f9595f !important;
  border-radius: 50%;
  padding: 0 5px;
  position: absolute;
  top: 0; right: 0;
}

.upload-wrp span.remove-avatar img {
  width: 80%;
}


.add-user-primary{
  color: var(--purple);
  font-weight: bold;
}

.appy-code-btn{

  text-align: center;
  border-radius: 35px;
  font-size: 24px;
    font-weight: 700;
  width: 100%;
  border: 1px solid transparent;
  padding: 0;
  background: none;
  color: var(--purple) !important;
  background-color: unset !important;
  padding: 0px !important;
    margin: 0px !important;
    text-align: left !important;
}
.appy-code-btn:hover{

  color:black !important;
  border: none !important;
}
.candidate_grid_ppl_wppt{
  cursor: pointer;
}


.bottom-none-interest-gl .select2-container--default .select2-selection--multiple{
padding-bottom: 0px !important;
}
.bottom-none-interest-gl .select2-container .select2-selection--multiple .select2-selection__rendered{
margin-top: 0px !important;
}
.custom-tool{
  right: unset !important;
  margin-left: 5px;;
}
.back-btn-yellow{

    text-align: center;
    background-color: #ffae1a;
    border-radius: 35px;
    color: #ffffff;
   
    width: fit-content !important;
    top:0 !important;
    left: 0 !important;
    position: absolute;
   
}
.margin-right-25px{
  margin-right: 20px !important;
  margin-left: 0 !important;
}
.clickd_tgl_searches .fa-ellipsis-h{
font: inherit !important;
}
.ellipsis-icon {
  width: 35px !important;
  height: 35px !important;
  fill: #000000 ;
}
.custom-tool-greet{
  position: unset !important;
    margin: 0px !important;
}
.greet-tooltip {
  opacity: 1;
  top: 29px;
  /* position: relative; */
  /* top: 20px; */
  /* left: 28%;  */
}
.tool-info-greet{
  
 
  
  position: relative !important;
  bottom: 139px !important;
  left: 41% !important;
}


#save-search-form input.submit-btn {
  margin-left: -10px;
}
.bold-custom strong{
  font-size: 17px;
}
li.bold-li.bold-custom {
  background-size: 23px;
}
.emp-form span#select2-company_state-container {
  max-height: 55px;
  min-height: 55px;
  border: 1px solid rgb(0 0 0 / 10%);
  background-color: transparent;
  border-radius: 50px;
  font-size: 14px;
  color: #383838;
  padding: 5px 35px;
  background-image: url(images/drp-btn.svg);
  background-size: 12px;
  background-position: right 22px center;
  background-repeat: no-repeat;
  line-height: 41px;
}
.emp-form .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none !important;
}

.emp-form span.select2-selection.select2-selection--single {
  border: none !important;
  height: 55px;
}
.cc-width{
  min-width: 400px !important;
}

.defination-sec .title.row .col-md-7.ps-0{padding-left:12px !important;}

.ic_award_icn, .ic_relevant_inc, .ic_nrelevant_inc, .ic_unmarked_inc {
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

.ic_award_icn path {
    fill: #000;
}

.flag_ico_sec.hover_fav, .flag_ico_sec:hover, .ic_award_icn.hover_fav, .ic_award_icn:hover {
    background: #ffab19;
}

.flag_ico_sec.hover_fav path, .flag_ico_sec:hover path, .ic_award_icn.hover_fav path, .ic_award_icn:hover path {
    fill: #fff;
}

.ic_award_icn, .ic_relevant_inc, .ic_nrelevant_inc, .ic_unmarked_inc {
    background: #e3e2e8;
}

.flag_ico_sec svg, .ic_award_icn svg {
    width: 16px;
    height: 16px;
}


.defination-sec .popup_fav_wrapper ul li {
    margin: 0;
}

.defination-sec .popup_fav_wrapper ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
}

.popup_fav_wrapper ul li.psuggestion_search_wrapper a {
    background: rgba(126, 80, 167, 0.1);
    font-size: 14px;
    font-weight: 400;
    color: var(--purple);
    padding: 7px 13px;
    border-radius: 33px;
    display: inline-block;
    display: -webkit-box;
    line-height: 2.3;
    padding: 0;
}

.defination-sec .popup_fav_wrapper ul li a {
    padding-right: 10px !important;
    gap: 7px;
}

.pending_unmask{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex !important;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap
}
.request_btn_otr- { text-align: center; }
.request_btn_otr- div.position_form {
    display: flex !important;
    text-align: center !important;
}
.request_btn_otr- .pending_unmask_rt {
    display: block !important;
}
.pending_unmask .iconc {
    max-width: 22px;
    -ms-flex-preferred-size: 22px;
    flex-basis: 22px;
}
.pending_unmask_rt {
    max-width: calc(100% - 22px);
    -ms-flex-preferred-size: calc(100% - 22px);
    flex-basis: calc(100% - 22px);
    padding-left: 9px;
}
.pending_unmask_rt h6 {
    font-size: 14px;
    font-weight: 500;
    color: #00407c;
    margin-bottom: 3px;
}
.pending_unmask_rt p {
    font-size: 10px;
    color: rgba(56, 56, 56, 0.5);
    font-weight: 400;
}

.activeRequests{
  background: white !important;
  color: var(--purple) !important;
border: 1px solid var(--purple) !important;
}
.activeRequests:hover,.activeRequests:active{
  background: #e4dcf2 !important;
  /* color: white !important; */
border: 1px solid white !important;
}

/* task - 86a2cbkkm */
/* 86a2enw5b */
.toggle-switch-block > span:first-child { order : 2 !important; }
.toggle-switch-block > div { order : 1 !important; }
.toggle-switch-block > span:last-child { order : 0 !important; }

/* style for task 86a2cbkkm */
.plan-card .toggle-switch-block > span:first-child { order : 0 !important; }
.plan-card .toggle-switch-block > div { order : 1 !important; }
.plan-card .toggle-switch-block > span:last-child { order : 2 !important; }
.plan-card input[type="checkbox"].switch_1:after {
   right: 10px !important;
 }
 .plan-card input[type="checkbox"].switch_1:checked:after {
  right: -1px !important;
  background: #7e50a7;
}
/* style for task 86a2cbkkm */

@media (max-width: 1160px) {
.dropdown.avatar-dropdown .dropdown-menu{left:auto !important; right:0;}

}
.cutsom-purple-wrap{
  background-color: var(--purple);
  color: white;
}
.profile-popup-wrap strong {
  color: white;
}
.profile-popup-wrap .profile-popup {
opacity: 1;
}
.custom-skill-wrap{
  display: inline-flex !important;
    align-items: baseline !important;
}


.common-form-outr .gl-form .short_bio_div{position:relative;}
.common-form-outr .gl-form .short_bio_div > .hiden{position:absolute; right:27px; top:55px;}

.cancel a:hover {
  color: #8f8f8f;
  cursor: auto;
}

.nw_pf-pl-1{
  padding-left: 0px;;
  margin: 10px 0 10px ;
  box-shadow: none !important;
}

.mission-0-text{
  color: #ffae1a !important;
}

.p-and-p h4 {
  font-style: normal;
  font-weight: unset;
  font-size: 21px;

}
.table-o-c a:hover{
color:#EDB61E !important;
}

.table-o-c a {
  color: var(--purple) !important;
}

.color-primary{
  color:var(--purple) !important;
}

.readonly-email{
  background: #f9f9f9 !important;
}
.select2-results__option--selected{
  display:none !important;
}
span.select2-selection.select2-selection--multiple,.select2-container--default.select2-container--focus .select2-selection--multiple {
  display: block;

    min-height: 55px;
    border: 1px solid rgb(0 0 0 / 10%);
    background-color: transparent;
    border-radius: 50px;
    font-size: 14px;
    color: #383838;
    padding: 5px 35px;
    background-image: url(images/drp-btn.svg);
    background-size: 12px;
    background-position: right 22px center;
    background-repeat: no-repeat;
}

span.select2-search.select2-search--inline {
  all: unset !important;
}

h2#swal2-title {
  padding: 0px 20px !important;
}

.tool-info a {
  color: black !important;
  /* border-bottom: 1px solid !important; */
}
.tool-info a:hover {
  border-bottom: 1px solid black!important;
}

.discount_div {
  background: #eadcf7;
  padding: 6px 45px;
  border: 1px solid #cdaaed;
  border-radius: 2px;
  width: 200px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 600;
  color: #7e50a7;
}
span.original_price {
  text-decoration: line-through;
  float: right;
}

button.remove_additional_sec {
    float: right;
    border: 0;
    background: #ce1919;
    height: 34px;
    width: 34px;
    border-radius: 50px;
    text-align: center;
    line-height: 1;
}

.allow-deny-icon:before{
  left: 149px !important;
}
.allow-deny-icon:after{
  left: 158px !important;
}
input.form-control.readonly-email {
  pointer-events: none;
}

th.sort2.allow-deny-icon.sorting {
  min-width: 200px !important;
}
input[value="PRESENT"]{
  pointer-events: none !important;
}
.unmask-table table.dataTable thead > tr > th.sorting_asc:after,.unmask-table table.dataTable thead > tr > th.sorting_desc:before{
  opacity: 1 !important;
}
.unmask-table table.dataTable thead > tr > th.sorting.sort2:after,.unmask-table table.dataTable thead > tr > th.sorting.sort2:before {
  opacity: 0.5;
}
span.select2-dropdown {
  z-index: 9 !important;
}

.defination-sec li {
  margin-bottom: 7px !important;
}

.modal-open {
  overflow: hidden;
}


.no-scroll {
  overflow: hidden;
  height: 100vh !important;
}
.no-scroll .modal {
  /* overflow: hidden;
  height: 100vh !important; */
}

@media (max-width: 991px){
.navbar-collapse .navbar-nav-sidebar {
    margin: 80px 0 0 !important;
    padding: 0 0 40px 0;
}
}
@media (min-width: 992px){
  .navbar-nav-sidebar {
    display: none !important;
  }
}
@media (max-width: 991px){
  /* .no-scroll .modal {
    overflow: none;
    height: 100% !important;
  } */

  .no-scroll {
    overflow: auto;
  }
}
.navbar-nav-sidebar{
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

em.blured_txt.name-blured-box {
  visibility: inherit;
}
em.blured_txt.name-blured-box:after {
  content: inherit;
}

.m-rgt.m-rgt-w {
  max-width: 480px;
  width: 432px;
}

.color_play{
  color:#009CC8 !important;
}

/* play btn animation */
body {
  position: relative;
  /* height: 100vh; */
}

.wrapper {
  z-index: 9;
}

.video-main {
  position: relative;
  display: inline-block;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: rgba(0, 157, 200, 0.101);
  z-index: 999;
}

@keyframes waves {
  0% {
      -webkit-transform: scale(0.2, 0.2);
      transform: scale(0.2, 0.2);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }

  50% {
      opacity: 0.9;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }

  100% {
      -webkit-transform: scale(0.6, 0.6);
      transform: scale(0.6, 0.6);
      opacity: 0;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {
  content: "\f04b";
}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 157, 200, 0.101);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.promo-btn{

    position: absolute;
    right: 16px;
    top: 14px;z-index: 2;

}

.play-icon-animate {
  animation: blink-icon 1s infinite;
  -webkit-animation: blink-icon 1s infinite;
}
@keyframes blink-icon {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
 
}
/* Define the scrollbar track */
::-webkit-scrollbar {
  width: 4px !important; /* Width of the scrollbar */
}

/* Define the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background-color: #BEAECE; /* Color of the scrollbar thumb */
  border-radius: 4px !important; /* Rounded corners for the thumb */
}

/* Define the scrollbar track when the mouse is hovering over it */
::-webkit-scrollbar-thumb:hover {
  background-color: #7e50a7 !important; /* Color of the scrollbar thumb on hover */
}
/* play btn animation */
#contentToPrint .blured_txt {
  visibility:visible !important;
}

@media only screen and (max-width:767px){
.noti-outr{margin-bottom:0;}
.unmask-sec .cmn-form-btm{padding-bottom:20px;}
.preview-wrap .about_candidate{margin-top:2rem!important;}
}
.contact_rgt_side a{
  word-wrap: break-word;
}

.intercom-lightweight-app {
  /* display: none !important;  */
}

.logo-outr ul img {
  width: 140px;
  height: 100% !important;
}
.logo-outr a {
  cursor: default !important; /* Set the cursor to the default arrow */
      pointer-events: none !important; /* Disable pointer events */
}

table#table_id {
  width: 100%;
}
button.select2-selection__clear span {
  position: relative;
  right: 30px;
  font-size: 28px;
  color: #7e51a1;
  font-weight: 500;
  top: 36px;
}
@media only screen and (max-width:767px){
  button.select2-selection__clear span {
      position: relative;
      top: 37px;
      right: 34px;
      font-size: 26px;
      color: #7e51a1;
      font-weight: 500;
  }
}
/* task 86a1gwqft */
.dd-cut {
  position: relative;
  left: 96%;
  /* top: 10px; */
  font-size: 22px;
  color: #7e51a1;
  cursor: pointer;
   padding-top: 4px;
  padding-right: 4px;

}
/* task 86a1gwqft */


.form-hdr .save-later{background:#fff; border-color:var(--purple); color:var(--purple); font-size:14px; padding:10px 16px;}
.form-hdr .save-later img{filter:invert(36%) sepia(10%) saturate(3217%) hue-rotate(229deg) brightness(57%) contrast(88%); max-width:14px;}
.form-hdr .save-later:hover img{filter:none;}
.form-hdr .save-later:hover{background:var(--purple); color:#fff;}
p.bgx-notify-text{
  font-size: 12px;
  color: #7e50a7;
  font-weight: 600;
  padding-top: 4px;
  padding-left: 4px;
}
.swal2-actions{
  z-index: unset !important;
}
span.bgx-linkedin-text{
  font-size: 12px;
  padding-top: 5px;
  padding-left: 5px;
}
.visibility-alert{
  color: #dc3545!important;
  margin-left: 30px;
    font-size: 11px;
}
.edit-profile-back-btn{
  background-position: center left 13px !important;
  min-width: 126px !important;
}
.edit-profile-back-btn:hover{
  color:#ffae1a;
  background-color: white;
  
}

/* 86a37wfq0 */
.home-heading-1{
  font-size: 50px !important; line-height: 1.25 !important;
}
.home-heading-2{
  font-size: 25px !important;
}


/***************** task - 86a5321gm *******************/
.employment-fld{position: relative;}
#app .employment-fld:has(> .error){margin-bottom: 30px;}
#app .employment-fld .error{position: absolute; left: 0; right: 0; bottom: -24px;}

.form-group.new_uploaded_frm.f-up .upload-wrp #preview{position:absolute; left:0; top:0; right:0; bottom:0;}

.industries + span.select2 ul.select2-selection__rendered .select2-selection__choice > button > span{display:block; margin-bottom:-2px;}
.industries + span.select2 ul.select2-selection__rendered .select2-selection__choice > span > span{display:flex; column-gap:5px; flex-wrap:wrap;}
.industries + span.select2 ul.select2-selection__rendered .select2-selection__choice > span > span .primary-label{width:100%;}

#app .employment-fld.invalid-dates:has(> .error){margin-bottom:60px;}
#app .employment-fld.invalid-dates .error{bottom:-54px; width:calc(100% - 180px);}
#app .employment-fld.invalid-dates .error small{display:block;}
@media only screen and (max-width:575px){
#app .employment-fld.invalid-dates .error{width:calc(100% - 130px);}
}

@media only screen and (max-width:455px){
#app .employment-fld.invalid-dates .error{line-height:1.2; bottom:-60px;}
}






/**************************************** 09/05/25 ******************************************/
@media only screen and (max-width:767px){
.main-head .navbar button.navbar-toggler{margin-left:0;}
.navbar-brand{width:140px;}
body:has(:not(.login-sec)){padding-top:32px;}
.login-sec{padding:50px 0 !important;}
.login-outr{padding:32px 24px 24px;}
.log-wrap,
.log-wrap.log-wrap2{padding:40px 0;}

.pv-btm-blck{padding-bottom:32px;}
.ban-up{padding:40px 0;}
.whole-btn-wrap{margin-top:0;}

.banner-outr .col-sm-6 .ban-hdr,
.banner-outr .col-md-4 .ban-hdr{margin-top:0;}
.banner-outr .row .ban-lft{margin-bottom:0;}

.preffered_block{/*margin-top:0 !important;*/ margin-bottom:0 !important;}
.preview-sec.prev2-sec .preview_banner_img_sec_rgt_wrapper{padding:32px 0 16px;}
.title h4{padding-top:0;}
.defination-sec .title.row .col-md-7.ps-0{padding-left:12px !important;}

.defination-sec .popup_fav_wrapper ul li {
    margin: 0;
}

.defination-sec .popup_fav_wrapper ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
}

.popup_fav_wrapper ul li.psuggestion_search_wrapper a {
    background: rgba(126, 80, 167, 0.1);
    font-size: 14px;
    font-weight: 400;
    color: var(--purple);
    padding: 7px 13px;
    border-radius: 33px;
    display: inline-block;
    display: -webkit-box;
    line-height: 2.3;
    padding: 0;
}

.preview-wrap > .container.pt-1 > br{display:none;}
.preview-wrap > .container.pt-1 > .preview-upper{margin-top:0 !important;}
.preview-wrap > .container.pt-1 > .preview-upper .nav-tabs-otr > .d-flex{padding-right:16px;}
.preview-wrap > .container.pt-1 > .preview-banner .preview-banner-txt.ht{padding-left:16px; padding-right:16px;}

.preview-sec.cmn-gap{padding-bottom:0;}
.preview-wrap .work_block .work_block_each:last-child{margin-bottom:24px;}
.preview-wrap .about_candidate{margin-top:16px !important; margin-bottom:32px !important;}

.preview_banner_img_list{padding-top:20px;}
.preview-wrap .skills_list_block .col-md-4 + .col-md-4:not(:last-child) .skills_list_inner{padding:16px 0;}

.main-form-sec .cmn-form .form-sec .gl-form.form-sec{margin-left:0; margin-right:0; margin-top:16px;}
.main-form-sec .cmn-form .form-sec .gl-form.form-sec .col-lg-6{padding-left:0; padding-right:0;}
.main-form-sec .cmn-form .form-sec .cmn-form.row:not(.gl-form){margin-left:0; margin-right:0;}
.main-form-sec .cmn-form .form-sec .cmn-form.row:not(.gl-form) .cmn-head{padding-left:0; padding-right:0;}
.main-form-sec .cmn-form .form-sec .cmn-form.row:not(.gl-form) .col-lg-2 .toggle-switch-block{justify-content:center;}

.custom-check-sec{margin-bottom:24px;}
.resume-sec .cmn-form{margin-bottom:32px;}
.resume-sec form > .cmn-form > .form-sec.gl-form{margin-top:16px;}
textarea{border-radius:18px;}
form span.select2-selection.select2-selection--multiple,
form .select2-container--default.select2-container--focus .select2-selection--multiple{border-radius:18px; padding:16px;}

.contact-sec .contact-outr > .contact-form{max-width:100%; padding:32px 20px;}
.contact-sec .contact-outr > .contact-form .form-group textarea{padding-right:60px;}
.contact-sec .contact-outr > .contact-form .candidate-info{width:100%;}
.contact-sec .contact-outr .contact-top > ul.pt-2{left:0; margin-bottom:0;}
.contact-sec .contact-outr .contact-top > ul.pt-2 > li{margin-left:0; margin-right:0;}

.mt-5{margin-top:32px !important;}
.privacy-sec #parentHorizontalTab .col-md-9 .masthead-splash p{padding-bottom:16px;}
.privacy-sec #parentHorizontalTab .col-md-9 .masthead-splash p:last-child{padding-bottom:0;}
.privacy-sec #parentHorizontalTab .col-md-9 .masthead-splash p + ul{padding-bottom:16px;}
.privacy-sec #parentHorizontalTab .col-md-9 .masthead-splash ul:last-child{padding-bottom:0;}

.privacy-sec #parentHorizontalTab .col-md-9 .resp-tabs-container- p{padding-bottom:16px;}
.privacy-sec #parentHorizontalTab .col-md-9 .resp-tabs-container- p:last-child{padding-bottom:0;}
.privacy-sec #parentHorizontalTab .col-md-9 .resp-tabs-container- p + ul{padding-bottom:16px;}
.privacy-sec #parentHorizontalTab .col-md-9 .resp-tabs-container- ul:last-child{padding-bottom:0;}

.manageaccount-sec > .container{padding-bottom:0 !important;}
.manageaccount-sec .main-body{padding:0 !important;}
.manageaccount-sec .main-body .main-body-upper > .second-h-plan{margin-bottom:24px !important;}
.manageaccount-sec .main-body .main-body-upper > .row{margin-top:0 !important; margin-bottom:0 !important; padding-bottom:0 !important;}
.manageaccount-sec .main-body .accordion-body{padding:20px;}
.manageaccount-sec .main-body .accordion-body .login-sec{margin:0 !important; padding:0 !important;}
.manageaccount-sec .main-body .accordion-body .login-sec-wrap > .container{padding:0;}
.manageaccount-sec .main-body .accordion-body .login-sec-wrap .log-wrap{padding:24px 0;}
.manageaccount-sec .main-body .accordion-body .login-sec-wrap .login-outr{padding:24px 20px;}
.manageaccount-sec .main-body .accordion-body .login-sec-wrap .login-outr h2{margin-bottom:16px; font-size:20px !important;}

.home-heading-1{font-size:32px !important;}

.companyprofileview.preview-sec{padding-bottom:40px;}
.companyprofileview .defination-sec .title.row{padding-bottom:16px;}
.companyprofileview .pv-btm-blck .preffered_block{margin-top:0 !important;}
.companyprofileview .pv-btm-blck .about_candidate{margin-top:32px !important; margin-bottom:0 !important;}

}

.unmasked_div_ic{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap; padding-left: 30%;}
.unmasked_div_ic .iconc{-ms-flex-preferred-size:23px;flex-basis:23px;max-width:23px}
.unmasked_div_ic_rtt{padding-top: 5px;padding-left:9px}
.unmasked_div_ic_rtt h6{font-size:14px;font-weight:500;color:#00c27c;margin-bottom:3px}
.unmasked_div_ic_rtt p{display: none}

.deny_unmask{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 25px;
}
.deny_unmask_rtt{
    /*max-width: calc(100% - 23px);
    -ms-flex-preferred-size: calc(100% - 23px);
    flex-basis: calc(100% - 23px);*/
    padding-left: 9px;
}
.deny_unmask_rtt p {
    display: none;
}
.deny_unmask_rtt h6 {
    font-size: 14px;
    font-weight: 500;
    color: var(--green2);
    margin-bottom: 3px;
}
.deny_unmask_icon{
    font-size: 26px;
}