/* About Page  */
.inner__banner {
    min-height: 180px;
    background: url("../img/inner-bg.webp") no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .inner__banner h2 {
    font-family: "Poppins", sans-serif !important;
  }

  .vid__btn {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 99;
  }

  .vid__container video {
    width: 100%;
    border-radius: 24px;
  }
  .vid__container i {
    visibility: hidden;
    transition: 0.4s ease;
  }

  .vid__container:hover i {
    visibility: visible;
  }
  #playPauseButton i {
    font-size: 50px;
    color: #017df0;
  }

  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 99;
    transform: 0.3s ease;
  }

  .lightbox iframe {
    width: 80%;
    max-width: 800px;
    height: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .closeButton {
    position: absolute;
    top: 110px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }

  /* About Card */
  .about__card {
    min-height: 288px;
    max-height: 338px;
    overflow: auto;
    transition: 0.3s ease !important;
  }

  .about__card:hover {
    background: #e5fffd;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 10px #00000023;
  }

  .about__card::-webkit-scrollbar {
    width: 5px;
  }

  .about__card::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 30px;
  }
  /* About Card */
  /* About Page  */

  /* Why VennMatch page  */
  .checked__list li {
    font-family: "Tomato Grotesk", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: start;
    margin: 14px 0;
  }
  .checked__list li img {
    transform: translateY(7px);
  }
  /* Why VennMatch page  */

  /* For Candidate Page  */
  .steps__feature .steps {
    transform: translateY(0);
  }

  .steps__feature .steps:before {
    content: "";
    height: calc(100% - 50px);
    width: 2px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    top: 60px;
    position: absolute;
  }

  .steps__feature:last-child .steps:before {
    display: none;
  }
  .steps__feature .steps span:not(.steps__wrapp .steps span) {
    background: var(--grad-color);
  }
  .candidate__img {
    background: url(../img/candidate.webp) no-repeat center/cover;
    border-radius: 20px;
    height: 100%;
  }
  .emp__img {
    background: url(../img/employers.webp) no-repeat center/cover;
    border-radius: 20px;
    height: 100%;
  }
  .for__img {
    display: none;
  }
  /* For Candidate Page  */

  /* Pricings page  */
  .line {
    width: 100%;
    height: 1px;
    background: var(--primary-color);
  }

  .pricing__card {
    /* padding: 10px; */
    border-width: 1px;
    border-radius: 20px;
    border-style: solid;
    overflow: hidden;
    transition: 0.3s ease;
  }

  .pricing__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px #0000002b;
  }

  .pricing__head {
    padding: 1.5rem 1rem 3rem;
    position: relative;
  }

  .pricing__head:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -20px;
    width: 120%;
    height: 100%;
    z-index: 0;
    transform: rotate(-7deg);
    transform-origin: bottom left;
  }

  .pricing__head h4 {
    position: relative;
    text-align: center;
  }

  .pricing__body {
    padding: 10px 20px 0;
    margin-bottom: 14px;
  }

  .pricing__body ul {
    padding-left: 18px;
    list-style: disc;
  }

  .pricing__body ul li {
    margin: 10px 0;
    font-family: "GeneralSans", sans-serif;
    font-weight: 500;
    font-size: 17px;
  }

  .package__price {
    width: 160px;
    height: 80px;
    overflow: hidden;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: end;
    border-radius: 100px 100px 0 0;
  }

  .package__price h5 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .package__price h5:before {
    /* content: ""; */
    position: absolute;
    width: 100%;
    height: 120px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -95px;
    z-index: 0;
    border-radius: 100%;
  }

  .pricing__footer {
    position: relative;
    overflow: hidden;
    padding: 1rem 1rem 1.5rem;
  }

  .pricing__footer:before {
    content: "";
    position: absolute;
    bottom: -70px;
    left: 0;
    transform-origin: bottom left;
    width: 105%;
    height: 120%;
    transform: rotate(-7deg);
  }

  .pricing__footer .theme__btn {
    position: relative;
    margin: auto;
    display: block;
    background: #fff;
    transition: 0.3s ease;
  }

  .card__primary .pricing__footer .theme__btn:hover {
    color: #fff;
    background: var(--primary-color);
    border: 1px solid #fff;
  }
  .card__primary {
    border-color: var(--primary-color);
  }
  .card__primary .pricing__head:before {
    background: var(--primary-color);
  }
  .card__primary .package__price {
    background: var(--primary-color);
  }
  .card__primary h5:before {
    background: var(--primary-color);
  }
  .card__primary .pricing__footer:before {
    background: var(--primary-color);
  }
  .card__primary .pricing__footer .theme__btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }
  /* ************ */
  .card__blue .pricing__footer .theme__btn:hover {
    color: #fff;
    background: #15b2df;
    border: 1px solid #fff;
  }
  .card__blue {
    border-color: #15b2df;
  }
  .card__blue .pricing__head:before {
    background: #15b2df;
  }
  .card__blue .package__price {
    background: #15b2df;
  }
  .card__blue h5:before {
    background: #15b2df;
  }
  .card__blue .pricing__footer:before {
    background: #15b2df;
  }
  .card__blue .pricing__footer .theme__btn {
    border: 1px solid #15b2df;
    color: #15b2df;
  }
  /* ************ */
  .card__dark .pricing__footer .theme__btn:hover {
    color: #fff;
    background: #06162d;
    border: 1px solid #fff;
  }
  .card__dark {
    border-color: #06162d;
  }
  .card__dark .pricing__head:before {
    background: #06162d;
  }
  .card__dark .package__price {
    background: #06162d;
  }
  .card__dark h5:before {
    background: #06162d;
  }
  .card__dark .pricing__footer:before {
    background: #06162d;
  }
  .card__dark .pricing__footer .theme__btn {
    border: 1px solid #06162d;
    color: #06162d;
  }
  /* Pricings page  */

  /* Blogs Page  */
  .filter__items {
    display: block;
    position: absolute;
    top: 20px;
    width: 100.7%;
    left: -1px;
    background: rgb(242, 242, 242);
    z-index: 9;
    border: 1px solid var(--primary-color);
    border-top: 0px;
    padding-bottom: 10px;
    padding-left: 23px !important;

    border-radius: 0px 0px 30px 30px;
    padding-top: 30px !important;
  }
  .filter__items span {
    width: 10px;
    height: 10px;
    border-radius: 2px;
  }
  .color-p {
    background: #2ed3c8;
  }
  .color-s {
    background: #19b7db;
  }
  .color-d {
    background: #000000;
  }
  .list__line {
    /* border: 1px solid #ddd; */
    padding: 0 !important;
    transform: translateX(-10px);
    margin-bottom: 10px;
    height: 1px;
    background: #ddd;
  }
  .search__filter,
  .form__inner {
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 10px;
    background: #f2f2f2;
    font-family: "GeneralSans", sans-serif;
    cursor: pointer;
  }
  .filter__wrapp {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    cursor: pointer;
  }
  .search__filter input::placeholder,
  .form__inner input::placeholder,
  .form__inner input {
    color: #000;
    font-weight: 500;
  }
  .filter__items {
    display: none;
  }
  .filter__items li {
    cursor: pointer;
  }
  .form__inner button {
    border-left: 1px solid var(--primary-color);
    text-align: center;
  }
  .form__inner img {
    filter: opacity(1);
  }

  .paginations__wrapp li a {
    font-family: "Tomato Grotesk", sans-serif;
  }

  .paginations__wrapp li a:hover {
    background: var(--grad-color);
    color: #fff !important;
  }
  /* Blogs Page  */

  /* News Room  */
  .news__room-wrapp .blog__card img {
    transform: scale(1.05);
  }
  .news__room-wrapp .blog__card:hover img {
    transform: scale(1.09);
  }
  .date__label {
    z-index: 1;
    max-width: 60px;
    width: 100%;
    background: var(--grad-color);
    top: 0;
    left: 20px;
    padding: 5px;
    border-radius: 0 0 8px 8px;
    font-family: "Tomato Grotesk", sans-serif;
    padding-top: 1.3rem;
  }
  /* News Room  */

  /* Contact Page  */
  .contact__form-wrap span {
    font-family: "Tomato Grotesk", sans-serif;
    margin-bottom: 5px;
    margin-left: 20px;
  }
  .contact__form-wrap label {
    width: 100%;
  }
  .contact__form-wrap input,
  .contact__form-wrap select,
  .contact__form-wrap textarea {
    font-family: "GeneralSans", sans-serif;
    color: #555;
    width: 100%;
    background: #f5f5f5;
    border: 1px solid transparent;
    padding: 14px 20px;
    border-radius: 30px;
    appearance: none;
    outline: none;
    resize: none;
  }
  .contact__form-wrap input:focus,
  .contact__form-wrap select:focus,
  .contact__form-wrap textarea:focus {
    border: 1px solid var(--primary-color);
  }
  .contact__form-wrap .search__filter {
    border-color: transparent;
    background: whitesmoke;
  }
  .contact__form-wrap .filter__items {
    border-color: transparent;
  }
  .contact__form-wrap .search__filter input::placeholder {
    text-indent: -6px;
  }

  .contact__form-wrap .search__filter input::placeholder {
    color: #555 !important;
    font-weight: 400;
    padding: 14px 16px;
  }

  .contact__form-wrap .filter__items {
    padding-top: 24px !important;
  }
  /* .contact__form-wrap img {
    position: absolute;
    top: 24px;.filter__items
    right: 15px;
  } */
  .contact__form-wrap button {
    width: 100%;
  }

  .contact-details {
    min-height: 500px;
    background: url(../img/map.webp) no-repeat center/cover;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 3rem 0;
    font-family: "GeneralSans", sans-serif;
  }
  .contact-details .bg-gradient {
    max-width: 390px;
  }
  /* Contact Page  */

  @media (max-width: 991px) {
    .filter__items {
      width: 100.4%;
    }
    .about__card {
      max-height: 100%;
      min-height: 100%;
    }
    .overview .row {
      flex-direction: column-reverse;
    }
    .candidate__img {
      background: unset;
    }
    .emp__img {
      background: unset;
    }
    .for__img {
      display: block;
      margin-bottom: 1rem;
      border-radius: 20px;
      margin: 0 auto 1rem;
    }
    .pricings .image__container,
    .pricings .image__container + .line {
      display: none;
    }

    .pricings .row .col-md-4 {
      width: 50% !important;
    }

    .pricings .row {
      justify-content: center !important;
    }
    .about__cards-wrapp .col-md-4 {
      width: 50%;
    }
  }
  @media (max-width: 767px) {
    .pricings .row .col-md-4 {
      width: 100% !important;
    }
    .about__cards-wrapp .col-md-4 {
      width: 100%;
    }
  }
  @media (max-width: 575px) {
    .contact-details {
      min-height: 470px;
      align-items: center;
    }
    .inner__banner {
      min-height: 100px;
    }
    .contact-details iframe {
      position: relative !important;
      height: 300px !important;
    }

    .contact-details {
      flex-direction: column-reverse;
      gap: 20px;
      padding: 1rem 0;
    }
    .contact-details {
      background: unset;
    }
  }
