/*VARIABLES*/
@import url("variables.css");

/*GENERAL STYLES*/
html {
  scroll-behavior: smooth;
}
body {
  height: 100vh !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: var(--primary-font-size);
  line-height: var(--primary-line-height);
  font-weight: var(--font-regular);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
img {
  max-width: 100%;
}
.font-regular {
  font-weight: var(--font-regular);
}
.font-medium {
  font-weight: var(--font-medium);
}
.font-bold {
  font-weight: var(--font-bold);
}
.font-primary {
  font-size: var(--primary-font-size);
}
.font-md {
  font-size: var(--font-md);
}
.font-sm {
  font-size: var(--font-sm);
}
.font-xs {
  font-size: var(--font-xs);
}
.font-xxs {
  font-size: var(--font-xxs);
}
h1 {
  font-size: var(--h1);
  letter-spacing: -1px;
  line-height: 1.4em;
}
h2 {
  font-size: var(--h2);
  letter-spacing: -1px;
}
h2 span {
  background: url(../images/green-line.svg) no-repeat center bottom;
  padding-bottom: 14px;
  background-size: contain;
}
h3 {
  font-size: var(--h3);
}
h4 {
  font-size: var(--h4);
  line-height: 1.8333333333333333em;
}
h5 {
  font-size: var(--h5);
  opacity: 0.48;
  margin-bottom: 1rem;
}
.primary-color {
  color: var(--primary-color);
}
.primary-color-bg {
  background: var(--primary-color);
}
.dark-gray-bg {
  background: var(--dark-gray);
}
.blue {
  color: var(--blue);
}
.orange {
  color: var(--orange);
}
.green {
  color: var(--green);
}
.light-green-bg {
  background: var(--light-green);
}
.red {
  color: var(--red);
}
.white {
  color: var(--white) !important;
}
.white-bg {
  background: var(--white);
}
.black {
  color: var(--black) !important;
}
.light-blue-bg {
  background: var(--light-blue);
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0;
}
a {
  color: var(--blue);
  text-decoration: none;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.hover-underline:hover {
  text-decoration: underline !important;
}
.hover-blue:hover {
  color: var(--blue);
}
.btn {
  border-radius: 20px;
  font-family: "Circular Std Book";
  font-size: 18px;
  height: 40px;
  line-height: 43px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  margin: 0 auto;
  white-space: nowrap;
}

.vd-strt-hrng {
  margin: 0;
}
.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border-color: #ebedf4;
}
.btn-secondary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-secondary.blue {
  color: var(--blue);
  border-color: var(--blue);
}
.btn-secondary.blue:hover {
  color: var(--white);
  background: var(--blue);
}
.rounded-10 {
  border-radius: 10px;
}
.z-index-1 {
  z-index: 1;
}
.form-control {
  border-radius: var(--input-border-radius);
  border: var(--input-border);
  font-size: var(--font-xs);
  height: 42px;
  padding: 0 24px;
  line-height: 42px;
}
.max-w-750 {
  max-width: 750px;
}
.max-w-620 {
  max-width: 620px;
}
.max-w-546 {
  max-width: 546px;
}
.max-w-400 {
  max-width: 400px;
}
.max-w-257 {
  max-width: 257px;
}
.max-w-84 {
  max-width: 84%;
}
.line-height-n {
  line-height: normal;
}
.play {
  /* background: url(../images/play-btn.svg) no-repeat center right; */
  padding-right: 55px;
  padding-top: 13px;
  padding-bottom: 13px;
  white-space: nowrap;
}

.opacity-h:hover {
  opacity: 0.7;
}
.img-wrapper {
  height: 411px;
  overflow: hidden;
}

/*PRELOADER*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #fff;
  display: none;
}
.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.loading-txt {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-animation: flickerAnimation 2s infinite;
  -moz-animation: flickerAnimation 2s infinite;
  -o-animation: flickerAnimation 2s infinite;
  animation: flickerAnimation 2s infinite;
}
@keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loaded .preloader-inner {
  top: 55%;
  opacity: 0;
}
.loaded .loading-txt {
  display: none;
}
.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -ms-transition: all 1.1s cubic-bezier(0.57, 0.01, 0.59, 0.995) 0.2s;
  -webkit-transition: all 1.1s cubic-bezier(0.57, 0.01, 0.59, 0.995) 0.2s;
  -moz-transition: all 1.1s cubic-bezier(0.57, 0.01, 0.59, 0.995) 0.2s;
  -o-transition: all 1.1s cubic-bezier(0.57, 0.01, 0.59, 0.995) 0.2s;
  transition: all 1.1s cubic-bezier(0.57, 0.01, 0.59, 0.995) 0.2s;
}

/* HEADER */
header {
  top: 0;
  left: 0;
  background: var(--white);
  box-shadow: var(--header-shadow);
  z-index: 2;
}
.logo-01-hire,
.logo-01-hire-ft {
  display: inline-block;
  background: url(../images/logo.svg) no-repeat left center;
  background-size: 36px;
  padding-left: 44px;
  line-height: 36px;
  font-weight: var(--font-bold);
  letter-spacing: 3px;
  text-decoration: none;
}

.logo-01-hire-ft {
  background: url(../images/footer-logoo.svg) no-repeat left center;
}

nav ul li {
  margin-left: 40px;
}
nav ul li a {
  font-size: var(--font-sm);
  color: var(--primary-color);
  font-weight: var(--font-medium);
  position: relative;
}
nav ul li a:hover {
  color: var(--blue);
}

nav ul li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
}

/* MAIN */
main {
  margin: 72px 0 0;
}
.category-links li {
  margin-left: 30px;
}
.category-links li a {
  color: var(--primary-color);
  font-size: var(--font-md);
  font-weight: var(--font-medium);
}
.category-links li a.active,
.category-links li a:hover {
  color: var(--blue);
}
.feature-item .img-wrapper {
  height: 221px;
  border-radius: 10px;
  margin-bottom: 32px;
}
.feature-item .img-wrapper img {
  object-fit: cover;
}
.has-gradient-blue-bg-bottom {
  min-height: 645px;
}
.has-gradient-blue-bg-bottom::after {
  content: "";
  background: transparent linear-gradient(180deg, #d3f1ff 0%, #ffffff 100%) 0%
    0% no-repeat padding-box;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 645px;
  transform: matrix(-1, 0, 0, -1, 0, 0);
}
.has-gradient-blue-bg-bottom.has-line::before {
  content: "";
  opacity: 0.3;
  background: url(../images/yellow-line-employer-dashboard.svg) no-repeat center
    bottom;
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 100%;
  height: 300px;
  z-index: 1;
  background-size: cover;
}

.has-gradient-blue-bg-bottom.has-line2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  /* top: 1140px; */
}
.overflow-hidden {
  overflow: hidden;
}
.has-gradient-blue-bg-top::before {
  content: "";
  background: transparent linear-gradient(180deg, #d3f1ff 0%, #ffffff 100%) 0%
    0% no-repeat padding-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 246px;
}
.check-list li:not(:first-child) {
  margin-left: 20px;
}
.check-list li {
  position: relative;
  padding-left: 20px;
  font-size: var(--font-xxs);
  line-height: normal;
  white-space: nowrap;
}
.check-list li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font: normal normal normal 14px/1 FontAwesome;
}
.blog-detail-img img {
  width: 100%;
  border-radius: 10px;
}
.share-links {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
}
.share-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f3f1f2;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--primary-color);
  text-align: center;
  line-height: 44px;
  font-size: var(--h4);
}
.share-links a:hover {
  background: var(--blue);
  color: var(--white);
}
.pricing-list {
  display: flex;
  justify-content: center;
  margin: 0 7px;
}
.pricing-list li {
  min-width: 28%;
  padding: 0 7px;
}
.pricing-list li > div {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.pricing-list li:hover > div {
  visibility: visible;
  opacity: 1;
}
.pricing-list li > a {
  padding: 24px 24px 70px 24px;
  border: 2px solid #e6e9ed;
  border-radius: 8px;
  display: block;
  min-height: 277px;
  position: relative;
}
.pricing-list li > a.most-popular {
  border-color: var(--green);
}
.pricing-list li > a:hover {
  border: 2px solid var(--blue);
}
.pricing-list li > a .price {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 1.4444444444444444em;
  color: var(--primary-color);
}
.pricing-list li > a .most-popular-h {
  width: calc(100% + 4px);
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  background: var(--green);
  font-size: var(--h5);
  border-radius: 8px 8px 0px 0px;
  position: absolute;
  top: -29px;
  left: -2px;
  font-weight: var(--font-medium);
  padding-top: 3px;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  -o-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}
.pricing-list li > a:hover .most-popular-h {
  background: var(--blue);
}
.border-t {
  border-top: 1px solid #e6e9ed;
}
.logos {
  display: flex;
  flex-wrap: wrap;
}
.logos li {
  margin: 30px 20px 0;
}
.has-map-bg {
  background: url(../images/map.svg) no-repeat right top;
}
.green-bullet-list li {
  background: var(--light-green);
  border-radius: 28px;
  line-height: normal;
  padding: 13px 20px 10px 50px;
  position: relative;
  display: inline-block;
  font-size: var(--font-md);
  margin-top: 10px;
}
.green-bullet-list li::before {
  margin: 1px 0 0 3px;

  content: "";
  background: url(../images/tick-mark.svg) no-repeat left;
  position: absolute;
  left: 10px;
  top: 8px;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font: normal normal normal 14px/26px FontAwesome;
  color: var(--green);
  text-align: center;
}
.red-bullet-list li {
  background: var(--light-red);
}
.red-bullet-list li::before {
  background: url(../images/cross-icon.svg) no-repeat left;
  margin: 1px 0 0 3px;
  color: var(--red);
}
.col-3-pic-wrapper {
  height: 249px;
  display: flex;
  align-items: center;
}
.number {
  background: var(--orange);
  width: 36px;
  height: 36px;
  display: inline-block;
  border-radius: 50%;
  color: var(--white);
  font-weight: var(--font-bold);
  text-align: center;
  line-height: 40px;
  position: relative;
}
.number::before {
  content: "";
  position: absolute;
  width: 104px;
  height: 8px;
  left: -35px;
  top: 14px;
  background: var(--orange);
  border-radius: 5px;
  z-index: -1;
}
.number.green {
  background: var(--green);
}
.number.green::before {
  background: var(--green);
}
.number.blue {
  background: var(--blue);
}
.number.blue::before {
  background: var(--blue);
}
.yellow-line-txt {
  background: url(../images/yellow-line-candidate-side.svg) no-repeat center
    center;
  height: 210px;
}
.point-placement {
  position: absolute;
  top: 119px;
  left: 130px;
}
.point-placement.two {
  left: 365px;
  top: 92px;
}
.point-placement.three {
  left: 660px;
  top: 57px;
}
.point-placement.four {
  left: 934px;
  top: 8px;
}
.home-section-1,
.candidate-section-1 {
  margin: 70px 0 70px;
}
@media (min-width: 991px) {
  .home-section-1 img {
    max-width: none;
  }
}
.home-section-1 .container {
  max-width: 1220px;
}
.candidate-section-1 {
  margin-bottom: 80px;
}
.candidate-section-1 .container {
  max-width: 1300px;
}
.pt-80 {
  padding-top: 80px;
}
.mt-170 {
  margin-top: 170px;
}
.mt-200 {
  margin-top: 200px;
}
.mt-80 {
  margin-top: 80px;
}
.home-green-bul {
  margin-left: 55px;
}
.mt-130 {
  margin-top: 130px;
}
.pt-115 {
  padding-top: 115px;
}
.mt-100 {
  margin-top: 100px;
}
.pb-150 {
  padding-bottom: 150px;
}
.top-40 {
  top: 40px;
}
.pt-100 {
  padding-top: 100px;
}

/* Modal Window */
.modal-xl {
  max-width: 950px;
}
.modal-content {
  border-radius: 15px;
  padding: 50px;
}
.modal-header {
  padding: 0;
  border: 0;
}
.modal-body {
  padding: 40px 0 0;
}
.modal .form-control {
  border: 1px solid #e6e9ed;
  border-radius: 5px;
  padding: 0 15px;
  outline: none;
  box-shadow: none;
}
.modal .form-control:focus {
  border: 1px solid var(--blue);
}
@media (max-width: 991px) {
  .md-hidden {
    display: none;
  }
}

/* FOOTER */
footer {
  font-size: var(--font-sm);
}

.social-media {
  display: flex;
  justify-content: space-evenly;
  justify-items: flex-end;
  height: fit-content;
  width: 135px;
}

.social-media a {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1220px;
  }
}

.gbl-fr-l-m {
  margin-left: 50px;
}

.ctrl-btn-area {
  display: flex !important;
}

.s-is-b > h2 {
  margin-bottom: 2rem;
}

.fr-lft-svg {
  position: relative;
}
.fr-lft-svg {
  position: absolute;
  left: -60px;
  /* margin-left: -60px; */
}

.fr-rght-svg {
  margin-right: -60px;
}

.fr-rght-svg2 {
  position: relative;
}
.fr-rght-svg2 {
  position: absolute;
  right: -60px;
  margin-left: 120px;
}

.fr-ylw-ln-svg {
  z-index: 45;
}

.txt-adjst {
  margin: 0 auto;
  width: 42.5%;
}

.hsl-cntr {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hsl-cntr > h4 {
  width: 40%;
}

.p-fr-t-mrgn {
  margin-top: 6%;
  margin-top: 3%;
}

/* .yellow-line-graph-svg2 {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 6110px;
} */

.yellow-line-graph-svg {
  position: absolute;
  width: 220%;
  bottom: -150px;
}

.yellow-line-graph-svg2 {
  position: absolute;
  width: 220%;
  top: 272px;
}

.yellow-line-graph-svg > img,
.yellow-line-graph-svg2 > img {
  width: 100%;
  opacity: 0.6;
}

.fr-cnd-gt-m {
  width: 430px;
  margin-top: -7%;
}

.fr-cnd-gt-m > p {
  width: 470px;
  margin: 8% 0 3% 0 !important;
}

.fr-dwnlds {
  margin-top: 15% !important;
}

.fr-yr-nx-crr-mv {
  width: 93%;
}

.eml-nd-ph-cl {
  width: 92%;
}

.mtchng-yr-spcfc-crtra {
  width: 80%;
  margin-top: 1.5%;
}

.to-incs-d-wid {
  width: 100%;
}
.to-incs-d-wid > img {
  height: 111.5%;
}

.frq-asq {
  margin-bottom: 2.5% !important;
}

.fr-dcrs-ln-p > div > p {
  margin-top: 3px !important;
  width: 97.5% !important;
}

.mk-it-shrt-cntr {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.fr-clpn-img > img {
  /* position: absolute; */
  /* right: -3.5%; */
  /* top: 150px; */
  width: 770px;
  max-width: none !important;
  /* clip: rect(0px, 622px, 483px, 0px); */
}

/* @media only screen and (min-width: 1680px) {
  .fr-clpn-img > img {
    position: absolute;
    right: -0.000000005%;
    margin-right: 14%;
    top: 150px;
    width: 720px;
  }
} */

.fr-txt-img-grid {
  display: grid;
  grid-template-columns: 490px auto;
  grid-column-gap: 50px;
}

.clm-ur-fr-jb {
  z-index: 10;
}

.m-t-15-jbs {
  margin-bottom: 5px !important;
}

.t-t-us-btn {
  margin-top: 32px;
}

.t-rmv-bl-grdnt {
  background: none;
  /* border-top: 1px solid #cccc; */
}

.fr-lft-mrgn-mdvp {
  margin-left: 55px;
}

.abt-blg-n-athr {
  margin-bottom: 20px;
  width: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.abt-blg-n-athr > img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 13px;
}
.abt-blg-n-athr > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blg-authr-nm {
  margin-bottom: 0;
  font-family: "Circular Std Book";
  color: hsl(0, 0%, 50%);
  opacity: unset;
  font-weight: 600;
  white-space: nowrap;
}

.blg-dt {
  margin-bottom: 0 !important;
  font-family: "Circular Std Book";
  height: 20px;
  font-size: var(--h5);
  opacity: 0.48;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.fr-mgn-btm-blg {
  margin-bottom: 170px;
}

.fr-nm-123 {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

/* Making Things Responsive for Mobile */

.burger {
  display: none;
}

.line1,
.line2,
.line3 {
  width: 25px;
  height: 3px;
  background: rgb(212, 212, 212);
  margin: 5px;
  transition: all 0.3s;
}

.line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.line2 {
  opacity: 0;
}
.line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.toggle .line1,
.toggle .line2,
.toggle .line3 {
  width: 25px;
  height: 3px;
  background: rgb(212, 212, 212);
  margin: 5px;
  transition: all 0.3s;
  transform: none;
  opacity: unset;
}

.lg-hide {
  display: none;
}

@media screen and (max-width: 991px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    opacity: 0.95;
    position: absolute;
    right: 0px;
    margin-top: 68px;
    height: calc(100vh - 68px);
    top: 0vh;
    background: var(--primary-color);
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }
  .nav-links > ul {
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    height: 140px;
  }

  /* .ctrl-btn-area {
    position: absolute;
    left: 50%;
    top: 290px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 50%;
    height: 70px;
    transform: none;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  } */
  .ctrl-btn-area {
    display: none !important;
  }
  .res-btn {
    margin: 0 0 0 20% !important;
    padding: 0 !important;
    background: none;
    border: none;
    color: white;
    height: 20px;
  }
  .res-btn:hover {
    background: none;
  }

  nav ul li {
    margin-left: 0;
  }

  .nav-links > ul > li {
    text-align: center;
    margin: 0 0 20px !important;
  }
  .nav-links > ul > li > a {
    color: white !important;
    z-index: 10000;
    width: auto;
    margin: 0 0 10px !important;
  }

  .nav-links > ul > li {
    /* background: rgb(112, 89, 89); */
    height: fit-content;
    width: 100%;
  }

  .nav-links > ul > li > a:hover {
    margin-bottom: 5px;
    transition: 0.2s ease-in-out;
  }

  nav ul li.active a::after {
    content: none;
  }

  .burger {
    display: block;
    position: absolute;
    top: 17px;
    right: 20px;
    cursor: pointer;
  }
  /* section 1 */
  .fr-txt-img-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .fr-clpn-img > img {
    width: 100%;
  }

  .fr-lft-mrgn-mdvp {
    margin: 0;
  }

  .home-green-bul,
  .gbl-fr-l-m {
    margin-left: 0;
    display: inline-block;
  }

  .fr-lft-svg,
  .fr-rght-svg2 {
    display: none;
  }
  .fr-rm-chklst {
    display: none !important;
  }

  .txt-adjst {
    width: 90%;
  }

  .vd-strt-hrng {
    margin: 0 auto;
  }
  .yellow-line-graph-svg {
    display: none;
  }

  .fr-rmvg-scl-mda {
    display: none !important;
  }

  .fr-alngn-ftr {
    display: flex;
    flex-direction: column;
  }

  .fr-alngn-ftr-cpy-rt {
    display: flex;
    justify-content: center;
  }

  .fr-alngn-ftr-ts-prvc {
    display: flex !important;
    justify-content: center !important;
  }

  /* Candidate Page */
  .cndt-fr-rspnsv {
    display: flex;
    flex-direction: column-reverse;
  }

  .fr-cnd-gt-m > p {
    width: 100%;
  }

  .to-incs-d-wid {
    margin-top: 20px !important;
  }

  .fr-cnd-gt-m {
    margin-top: 7%;
  }

  .fr-rmvng-lne-cndt > span {
    background: none !important;
  }

  .cndt-fr-rmvng-chklist,
  .fr-rmvng-ds-img {
    display: none !important;
  }

  /* Blog Page */

  .blg-rmv-blg-lgo {
    display: none;
  }

  .fr-cntrng-blg-tbs {
    display: flex !important;
    justify-content: center !important;
  }

  .category-links > li > a {
    font-size: 13px;
    white-space: nowrap;
  }

  .blg-dnszng-fnt {
    font-size: 22px !important;
    margin: 0;
    white-space: nowrap;
  }

  .fr-dwnszng-fnt-blg-dtl {
    font-size: 24px;
    margin: 0;
  }
  /* Pricing */
  .fr-adjstn-wdth {
    width: 99%;
  }

  .fr-mid-mr-jbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* justify-content: center; */
  }

  .fr-rmvng-prc-btn-pdng {
    padding: 0;
  }

  .fr-adjstn-wdth > h2 > br {
    display: none;
  }

  .fr-adjstn-wdth > h4 {
    max-width: 100%;
    margin-top: 20px !important;
  }

  .fr-dcrs-ln-p {
    margin: 0 !important;
  }

  .fr-adjstn-wdth > h4 > br {
    display: none;
  }

  .fr-ft-cntnt {
    height: fit-content;
  }

  .fr-wdth-n-flx-wrp {
    width: 100%;
    flex-wrap: wrap;
  }

  .pricing-list {
    flex-wrap: wrap;
    margin: 0 !important;
    padding: 0 !important;
  }

  .pricing-list li > a {
    margin-top: 40px;
  }

  .fr-rm-brk-pr > span > br {
    display: none;
  }
  #consent-popup {
    padding: 1rem 2rem !important;
  }

  .ck-cnsnt-txt {
    font-size: 8px !important;
    line-height: 10px !important;
  }

  .home-section-1,
  .candidate-section-1 {
    margin: 30px 0;
    text-align: center;
  }

  .mt-130,
  .mt-200 {
    margin-top: 90px;
  }

  .mt-80,
  .mt-170 {
    margin-top: 40px;
  }

  .col-3-pic-wrapper {
    height: auto;
  }

  .text-center-md {
    text-align: center;
  }

  .pt-115 {
    padding: 0;
  }

  .fr-dwnlds {
    margin-top: 30px !important;
  }

  .mtchng-yr-spcfc-crtra {
    width: 100%;
  }

  .price-section-1,
  .price-section-2,
  .price-section-3 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pricing-list li {
    width: 55%;
  }

  .pricing-list li > div {
    visibility: visible;
    opacity: 1;
  }

  h2 {
    font-size: var(--h2-sm);
  }

  .green-bullet-list li {
    width: 100%;
    text-align: left;
  }

  .lg-hide {
    display: block;
  }

  .green-bullet-list {
    margin-top: 1rem !important;
  }

  .fr-lft-mrgn-mdvp.mb-5 {
    margin-bottom: 1rem !important;
  }

  .pricing-list li > a .most-popular-h {
    top: 0;
  }
  .pricing-list li > a.most-popular {
    padding-top: 50px;
  }

  .price-section-3 {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .fr-dwnlds a,
  .fr-dwnlds-btm a {
    width: 100%;
    display: block;
    margin: 10px;
  }
}

.ctrl-btn-area-active {
  transform: translateX(0%);
}

.nav-active {
  transform: translateX(0%);
}

/* Privacy Policy */

.pp-f-ul > li {
  list-style-type: disc;
  margin-left: 22px;
}

.pp-f-ol > li {
  list-style: lower-roman;
}

.tu-f-nol > li {
  list-style: decimal;
}

/* Blog Details */
.rm-shr-lnks {
  display: none;
}

/* Cookies */

#consent-popup,
.ck-hidden {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border-top: 1px solid #e6e9ed;
  transition: opacity 0.8s ease;
  z-index: 100000;
}

.ck-hidden {
  display: none;
}

.ck-btn-cntnr {
  display: flex;
  justify-content: flex-end;
}

#accept {
  margin-left: 15px;
}

.ck-btn-cntnr > .btn-secondary,
.ck-btn-cntnr > .btn-primary {
  margin: 0;
}

.ck-cnsnt-txt {
  font-size: 14px;
  line-height: 20px;
}

/* .btn-check:focus + .btn-secondary, */
.t-t-us-btn:focus {
  /* color: #fff; */
  background-color: transparent;
  /* border-color: #545b62; */
  box-shadow: none;
}

.fr-mdl-cls:focus {
  outline: none;
}

@media screen and (max-width: 450px) {
  .pricing-list li {
    width: 65%;
  }

  .fr-mid-mr-jbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* justify-content: center; */
  }

  .fr-rmvng-prc-btn-pdng {
    padding: 0;
    justify-content: center !important;
  }

  .fr-rmvng-dt-mrgn {
    margin: 0;
    padding: 0;
  }
}

.fr-rmvng-dt-mrgn {
  margin: 0;
  padding: 0;
}
