@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.font-display,
body {
  font-family: 'Roboto', sans-serif !important;
}

:root {

  --resume-primary-color: #282B8F;
  --resume-secondary-color: #316DFF;
  --resume-text-color: #000000;
  --resume-bg-color: #F9F8FD;
  --resume-white-color: #ffffff;

}

.container {
  max-width: 1280px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-padding {
  margin-bottom: 70px;
}

section.ats-info-sec.pb-70,
.py-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

section.brands-section.py-70.pt-0 {
  padding-top: 70px !important;
}

.sec-bg {
  background-color: #F7F9FC;
}

.next-lavel-bg {
  background-color: #f3f4ff;
}

.hero-redius {
  border-radius: 20px;
}

h1 {
  font-weight: 600;
  font-size: 54px;
}

h2 {
  font-size: 52px;
  margin-bottom: 40px;
}

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

p {
  font-size: 16px;
  line-height: 25px;
}

button,
a {
  transition: 0.3s ease;
}

.resume-btn {
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  padding: 15px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
  border: 1px solid transparent;
  transition: 0.3s;
  display: inline-block;
}

a.resume-btn:hover {
  background: transparent;
  color: var(--resume-primary-color);
  border: 1px solid var(--resume-primary-color);
}

.resume-tp-btn {
  background-color: transparent;
  border: 1px solid var(--resume-primary-color);
  padding: 15px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: 0.3s;
  color: var(--resume-primary-color);
}

.resume-tp-btn:hover {
  background-color: var(--resume-primary-color);
  color: var(--resume-white-color);
}

img {
  max-width: 100%;
  height: auto;
}

.highlight {
  color: var(--resume-primary-color);
}

/*====================header-css=====================*/
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

header a.navbar-brand img {
  max-width: 127px;
  height: 50px;
}

header .navbar {
  padding: 15px 0;
  background-color: var(--resume-white-color);
}

header .navbar .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

header .home-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  font-weight: 700;
  font-size: 20px;
}

header .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

header .navbar-nav .nav-link,
header .nav-link {
  font-size: 16px;
  color: var(--resume-text-color) !important;
  font-weight: 400;
  opacity: 1 !important;
  -webkit-text-fill-color: currentColor;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link:focus-visible {
  color: var(--resume-primary-color) !important;
}

header .navbar .dropdown-toggle::after {
  display: none;
}

header .navbar-toggler {
  border: 1px solid rgba(40, 43, 143, 0.2) !important;
  border-radius: 8px;
  padding: 8px 10px;
}

header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(49, 109, 255, 0.2);
}

header .navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2840,43,143,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-dropdown-icon {
  max-width: 24px;
  margin-left: 5px;
  transition: 0.3s;
}

/* Rotate on hover */
/* header .nav-item.dropdown:hover .custom-dropdown-icon {
  transform: rotate(180deg);
} */
a.nav-link.sign-iin:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background-color: #00000030;
  left: -30px;
  top: 0;
  bottom: 0;
  margin: auto;
}

a.nav-link.sign-iin {
  position: relative;
}

@media (min-width:992px) {
  header .home-menu {
    display: flex !important;
  }

  header .navbar-toggler {
    display: none;
  }
}

/*===================hero-section==============================*/
.hero-title span {
  color: var(--resume-primary-color);
}

.hero-desc {
  font-size: 18px;
  color: var(--resume-text-color);
}

section.hero-section.sec-padding .banner-section {
  background-image: url(../images/hero-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.hero-list {
  list-style: disc;
  padding: 0;
  margin: 20px 0;
}

.hero-list li {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--resume-text-color);
  margin-left: 20px;
}

.hero-list li img {
  margin-right: 10px;
}

.hero-btns {
  gap: 20px;
}

.banner-section {
  padding: 35px 50px;
}

.stats-card {
  padding: 28px 20px;
  border-radius: 16px;
}

section.rct-sec.sec-padding .col-lg-6:nth-child(2) {
  margin-top: 70px;
}

section.rct-sec.sec-padding .col-lg-6:nth-child(3) {
  margin-top: -20px;
}

.margin-card {
  margin-top: 80px;
}

.stats-card-icon {
  margin-bottom: 10px;
}

.resume-box .col-md-6:nth-child(2) {
  margin-top: -15px;
}

.stats-card p {
  color: rgba(69, 69, 69, 0.91);
  font-weight: 600;
  font-size: 13px;
  line-height: 130%;
}

.stats-card p {
  color: rgba(69, 69, 69, 0.91);
  font-weight: 600;
}

/*================resume-tabing section==============================*/
.resume-adv-sec {
  background: var(--resume-primary-color);
}

/* TAB WRAPPER */
.resume-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* TAB */
.resume-tab {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 2px solid transparent;
  width: 100%;
  text-align: left;
  transition: 0.3s;
}

/* INNER */
.tab-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tab-text h5 {
  font-size: 18px;
  font-weight: 500;
  color: #03054B;
}

.tab-text p {
  font-size: 16px;
  color: #1E2532;
  margin-top: 5px;
  display: none;
}

.resume-box .tab-text h5 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 15px;
}

.resume-box .tab-text {
  line-height: 150%;
}

.resume-tab.active {
  border-color: var(--resume-secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: #F0F1FD;
}

.resume-tab.active .tab-text p {
  display: block;
}

/* ARROW */
.tab-arrow {
  font-size: 18px;
  transition: 0.3s;
}

.resume-tab.active .tab-arrow {
  transform: rotate(180deg);
}

/* RIGHT BOX */
.resume-box {
  background: #e9eef7;
  padding: 30px;
  border-radius: 15px;
}

.tab-text {
  position: relative;
  padding-left: 50px;
}

.tab-text-img {
  position: absolute;
  left: 0;
  top: -6px;
}

.tab-text-img img {
  max-width: 36px;
}


/*==============================brand-section====================*/
.stats-tittle-iconn {
  position: relative;
  padding-left: 70px;
}

.stats-tittle-iconn::before {
  content: "";
  background: url('../images/rct-icon.svg') no-repeat;
  background-size: contain;
  width: 100%;
  height: 54px;
  position: absolute;
  top: 10px;
  max-width: 54px;
  left: 0;
}

/* TEXT */
.brand__text {
  font-size: 16px;
  color: #666;
}

/* CAROUSEL */
.brand__item {
  text-align: center;
}

.landing-template-preview-wrap {
  border: 0px solid #e4e7ef !important;
  background: none !important;
  padding: 0px !important;
  box-shadow: 0px 4px 4px 0px #00000040;
  margin: 10px;
}

.resume-tab .tab-text {
  max-width: 95%;
}

.col-lg-5.beyond__cards-secction.position-relative {
  position: static !important;
}

.brand__item img {
  max-height: 30px;
  opacity: 0.7;
  transition: 0.3s;
  margin: auto;
}

.brand__item img:hover {
  opacity: 1;
}

.brand__cta {
  background: rgba(234, 246, 255, 1);
  padding: 17px 30px;
  border-radius: 14px;
}

.brand__cta-title {
  font-weight: 500;
  font-size: 28px;
  color: var(--resume-text-color);
}

.brand__cta-text {
  font-size: 18px;
  color: var(--resume-text-color);
}

/*===========================template-slider-section======================*/
.templates__slider {
  position: relative;
}

.templates__card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
  transform: scale(0.85);
}

.templates__card h3 {
  margin-bottom: 18px;
}

.templates__card img {
  width: 100%;
  border-radius: 12px;
}

.owl-item.center .templates__card {
  transform: scale(1);
}

.templates__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  padding: 10px 18px;
  border-radius: 6px;
  opacity: 0;
  transition: 0.3s;
}

/* SHOW BUTTON ONLY CENTER */
.owl-item.center .templates__btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ARROWS */
.templates .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--resume-primary-color) !important;
  color: var(--resume-white-color) !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.templates .owl-nav .owl-prev {
  left: 50px;
}

.templates .owl-nav .owl-next {
  right: 50px;
}

.templates__slider button.owl-prev span,
.templates__slider button.owl-next span {
  font-size: 30px;
  line-height: 30px;
}

.templates__slider button.owl-prev span,
.templates__slider button.owl-next span {
  font-size: 30px;
  line-height: 25px;
  padding: 0px;
}

/*===================end-section============================*/
.beyond__card {
  background: #f3f4ff;
  padding: 20px;
  height: 100%;
  border-radius: 16px;
  transition: 0.3s;
  position: relative;
}

.beyond__card a.beyond__link {
  position: absolute;
  bottom: 20px;
}

.beyond__badge img {
  width: 20px;
  margin: 0;
}

.beyond__card:hover {
  transform: translateY(-5px);
}

.beyond__card--primary {
  background: #f3f4ff;
}

.beyond__card--wide {
  background: #eaf1ff;
}

.beyond__card--side {
  background: #e9f3ee;
}

.beyond__badge {
  font-size: 14px;
  color: #5660E8;
  padding: 4px 8px;
  border-radius: 6px;
  display: flex;
  width: fit-content;
  font-weight: 600;
  margin-bottom: 15px;
  background: rgba(228, 227, 253, 1);
}

.beyond__card-title {
  font-weight: 500;
  margin-bottom: 15px;
  color: #0F141E;
  font-size: 28px;
}

.beyond__cards-secction img {
  position: absolute;
  right: 0;
  bottom: 0;
}

img.beyond-img-way.way-imgg {
  position: relative;
  bottom: -20px;
  right: -67px;
}

.beyond .col-lg-4.col-md-6 .beyond__card a.beyond__link {
  display: none;
}

.beyond__link {
  font-size: 18px;
  color: #1A91F0;
  font-weight: 400;
  display: flex;
}

.blog__header .beyond__link {
  font-size: 16px;
  color: var(--resume-primary-color);
  font-weight: 500;
  display: flex;
}

a.beyond__link img {
  max-width: 24px;
}

p.beyond__card-text {
  margin-bottom: 30px;
}

.beyond__avatars {
  display: flex;
  margin-top: 10px;
}

/*===========================resume-example-tabing-sec===========*/
/*===========================resume-example-tabing-sec====================*/
.res-pro-sec {
  background: var(--resume-primary-color);
  color: #fff;
  position: relative;
}

.res-pro-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 40px;
  align-items: center;
  justify-content: center;
}

.res-tab-btn {
  padding: 6px 20px;
  border-radius: 20px;
  background: #171A61;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.res-tab-btn.active {
  background: #fff;
  color: #000;
}

/* TAB */
.res-tab-pane {
  display: none;
}

.res-tab-pane.active {
  display: block;
}

/* CONTENT */
.res-content h2 {
  font-size: 42px;
  font-weight: 600;
}

/* STACKED IMAGE */
.res-img-stack {
  position: relative;
  min-height: 320px;
}

.res-img-stack img {
  position: absolute;
  border-radius: 10px;
  max-width: 535px;
}

.res-rating .rating-text {
  font-size: 24px;
  color: #1E2532;
}

.img-back {
  left: 20px;
  z-index: 1;
}

.img-mid {
  left: 60px;
  transform: rotate(-3deg);
  z-index: 2;
}

.img-front {
  left: 100px;
  z-index: 3;
}

.res-nav {
  position: absolute;
  right: 190px;
  bottom: 20px;
}

.res-prev,
.res-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  margin-left: 10px;
}

/*============================end-section==========================*/
/*=============================review-section==========================*/
.res-review-sec {
  background: var(--resume-primary-color);
  padding-top: 185px;
}

.res-testimonial-content {
  text-align: left;
  background: #fff;
  padding: 30px 26px 40px;
  border-radius: 20px;
}

.res-testimonial-card {
  padding: 30px 0px 0px;
}

.res-testimonial-content p {
  min-height: 140px;
  position: relative;
}

.res-avatar {
  position: relative;
  top: -60px;
  text-align: center;
}

.add-margin {
  margin-top: -130px;
}

.res-avatar img {
  max-width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: auto;
  background-color: #fff;
}

/* CONTENT */
.res-testimonial-content {
  text-align: left;
}

.res-testimonial-content .stars {
  color: #282B8F;
  font-size: 24px;
  margin-bottom: 10px;
}

.res-quote {
  font-size: 14px;
  margin-bottom: 15px;
}

.res-testimonial-content strong,
.res-testimonial-content h6 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 18px;
  text-transform: uppercase;
  color: #1E2532;
}

.res-testimonial-content span {
  font-size: 14px;
  color: #666;
  display: block;
}

.time {
  font-size: 12px;
  margin-top: 5px;
}

/* DOTS */
.res-testimonial-carousel .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.res-testimonial-carousel .owl-dot {
  border: none;
  background: transparent;
  padding: 0;
  margin-right: 10px;
}

.res-testimonial-carousel .owl-dot span {
  width: 15px;
  height: 15px;
  background: #ccc;
  display: block;
  border-radius: 50%;
}

.res-testimonial-carousel .owl-dot:last-child {
  margin-right: 0;
}

.res-testimonial-carousel .owl-dot.active span {
  background: #1c2b8f;
}

.res-review-content h2 {
  font-size: 36px;
  font-weight: 600;
}

.res-revies-content {
  background-color: #EAF6FF;
  padding: 50px;
  border-radius: 20px;
}

/* RATING */
.res-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.res-rating .stars {
  color: #1c2b8f;
}

.based {
  font-size: 14px;
  color: #333;
}

/*================blog-section===========================*/
.blog__featured {
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  position: relative;
}

.blog__featured--purple {
  background: #EDD7DF;
}

.blog__featured-bottom img {
  max-width: 150px;
  width: 100%;
}

.blog__featured-bottom a img {
  max-width: 40px;
}

.blog__featured--orange {
  background: rgba(255, 235, 228, 1);
}

.blog__badge {
  font-size: 13px;
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  padding: 4px 8px;
  border-radius: 5px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.blog__badge--orange {
  background: rgba(173, 11, 5, 0.56);
}

.blog__featured-title {
  font-weight: 500;
  margin-bottom: 10px;
  color: #1E2532;
  font-size: 30px;
}

.blog__featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog__arrow {
  width: 40px;
  height: 40px;
  font-size: 30px;
  border-radius: 50%;
  border: none;
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  font-family: monospace;
}

img.blog__icon {
  margin-bottom: 10px;
}

.blog__card {
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  transition: 0.3s;
}

.blog__card:hover {
  transform: translateY(-5px);
}

.blog__meta {
  font-size: 13px;
  display: block;
  color: var(--resume-text-color);
}

.blog__meta a {

  color: #5B5B5B;

}

.blog__text {
  font-size: 18px;
  margin-top: 10px;
  color: rgba(30, 37, 50, 1);
  font-weight: 500;
}

/*========================resume-cta-section====================*/
/* SECTION */
.resume-hero {
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
}

/* TEXT */
.resume-hero__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
}

.resume-hero__desc {
  font-size: 16px;
  color: var(--resume-white-color);
  margin: 20px 0;
}

a.resume-btn.resume-btn-cta {
  display: inline-block;
  border: 1px solid var(--resume-white-color);
}

a.resume-btn.resume-btn-cta:hover {
  background-color: var(--resume-white-color);
  color: var(--resume-primary-color);
}

.resume-hero__stars {
  color: rgba(0, 182, 122, 1);
  font-size: 40px;
}

.resume-hero__score {
  font-size: 16px;
}

.resume-hero__rating {
  margin-top: 30px;
}

.resume-hero__score span {
  font-size: 12px;
}

.resume-hero__img-wrap {
  text-align: center;
}

/*=========================faq-section=========================*/
.res-faq-sec {
  background: #f5f7fb;
}

/* LEFT */
.res-faq-left h2 {
  font-size: 52px;
  font-weight: 600;
}

.res-faq-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  color: var(--resume-text-color);
}

/* ACTIVE BACKGROUND */
.res-faq-accordion .accordion-item.active {
  background: #EAF6FF !important;
}

.res-faq-accordion .accordion-button {
  background: transparent;
  font-weight: 500;
  font-size: 18px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: none;
  color: var(--resume-text-color);
}

.res-faq-accordion .accordion-body {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

/* REMOVE DEFAULT ICON */
.accordion-button::after {
  display: none;
}

/* CUSTOM ICON */
.res-faq-accordion .icon {
  margin-left: auto;
  font-size: 25px;
}

.res-faq-left a {
  color: #282B8F;
}

/*=============================join-box-css=====================*/
.joinbox__wrap {
  background: #EAF6FF;
  border-radius: 20px;
  padding: 45px;
  position: relative;
  overflow: hidden;
}

.joinbox__title span {
  color: var(--resume-primary-color);
}

/* TEXT LINES */
.joinbox__lines {
  margin-top: 15px;
}

.joinbox__line {
  font-size: 18px;
  color: var(--resume-primary-color);
  margin-bottom: 5px;
}

h2.joinbox__title {
  font-weight: 400;
  font-size: 42px;
  max-width: 400px;
}

.joinbox__lines p:last-child {
  opacity: 30%;
}

.joinbox__line.active {
  opacity: 1;
  color: var(--resume-primary-color);
  font-weight: 500;
}

.res-faq-sec .accordion-item {
  padding: 24px !important;
  margin-bottom: 20px;
  border-radius: 12px !important;
  border: 0;
  box-shadow: 0px 0px 8px 0px #00000014;

}

/*=======================fotter-section-css===========================*/
.footer {
  background: #1A1036;
  color: #fff;
  padding: 60px 0 40px;
}

.footer__heading {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer__list li {
  margin-bottom: 8px;
}

.footer__list a {
  font-size: 14px;
  color: #ddd;
  transition: 0.3s;
}

.footer__list a:hover {
  color: #fff;
}

.footer__brand img {
  max-width: 145px;
}

.footer__country img {
  max-width: 30px;
}

/* BOTTOM WRAPPER */
.footer__bottom {
  width: 100%;
}

/* TOP ROW */
.footer__bottom-top {
  justify-content: flex-start;
}

.footer__social {
  margin-left: 0px;
}

.footer__bottom-copy {
  font-size: 13px;
  color: #fff;
}

.footer__bottom-top {
  margin-top: 40px;
  gap: 175px;
}

.resume-footer-p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
}

/*=======================pricing-page-style=============================*/
/* nav.navbar.navbar-expand-lg.next-lavel-bg {
  background: #f3f4ff;
  padding: 10px 0;
} */

.h-pricing-section {
  background-image: url(../images/container_backgroundimage.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 90px;
}

.pricing__card {
  background: var(--resume-white-color);
  border-radius: 6px;
  padding: 40px 24px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

.pricing__card:hover {
  transform: translateY(-5px);
}

.pricing__card--active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing__price {
  font-size: 32px;
  font-weight: 600;
}

.pricing__plan {
  color: #828BA2;
  margin-bottom: 20px;
}

.pricing__list {
  text-align: left;
  margin-bottom: 20px;
  min-height: 200px;
}

.pricing__list li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
}

.pricing__list .highorange span {
  color: #f5a623;
  font-weight: 500;
}

ul.pricing__list li span {
  margin-right: 10px;
}

.pricing__payment-text p {
  font-size: 13px;
  color: #828BA2;
  line-height: 1.6;
}

.pricing__logo img {
  max-height: 30px;
  max-width: 80px;
}

.pricing__logos {
  margin-top: 36px;
}

.pricefaq__title {
  font-size: 28px;
  font-weight: 600;
}

.pricefaq__box {
  background: var(--resume-white-color);
  border-radius: 12px;
  padding: 20px 25px;
  max-width: 660px;
}

.pricefaq__item {
  border-bottom: 1px solid #e5e5e5;
}

.pricefaq__btn {
  width: 100%;
  padding: 10px 0;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h3.pricefaq__title {
  text-align: center;
  font-size: 24px;
}

h3.pricefaq__title br {
  display: none;
}

.pricefaq__icon {
  width: 14px;
  transition: 0.3s;
}

/* ROTATE */
.pricefaq__btn:not(.collapsed) .pricefaq__icon {
  transform: rotate(180deg);
}

/* CONTENT */
.pricefaq__content {
  font-size: 15px;
  color: #828BA2;
  padding-bottom: 15px;
}

.pricefaq__footer p {
  font-size: 16px;
  color: #828BA2;
  max-width: 660px;
}

.pricefaq__footer a {
  color: var(--resume-primary-color);
}

.pricefaq__item:last-child {
  border-bottom: none;
}

.blog-card {
  background: var(--resume-white-color);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

.card-heading h2,
.card-heading p {
  color: #000;
}

.card-heading h2 {
  margin-bottom: 20px;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card h5 {
  font-size: 18px !important;
  margin-bottom: 10px !important;
}

.blog-card a {
  font-size: 14px !important;
  color: rgba(0, 0, 0, 0.6) !important;
}

.nav-link.tabs-button {
  background: #eef2f7;
  color: #000;
  border-radius: 20px;
  font-size: 14px;
  padding: 8px 14px;
  font-weight: 600;
}

.nav-pills .nav-link.tabs-button.active {
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
}

.nav-pills .nav-link.tabs-button:hover {
  background: var(--resume-primary-color);
  color: #fff;
}

/*=============================sandeep-Video-page-css==============================*/
.video-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.video-tabs::-webkit-scrollbar {
  display: none;
}

.video-card {
  background: var(--resume-white-color);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumb {
  position: relative;
}

.video-thumb .play-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.video-thumb .play-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 100%;
  background-color: #fff !important;
  padding: 0 !important;
  width: 32px !important;
  height: 32px !important;
}

.video-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.video-card a {
  font-size: 14px;
}

.newsletter-sec {
  padding: 50px 0;
}

.newsletter-sec .newsletter-content {
  max-width: 750px;
}

.newsletter-sec h2 {
  font-size: 42px;
  font-weight: 600;
}

.newsletter-sec p {
  font-size: 16px;
  color: #555;
}

.newsletter-form {
  max-width: 600px;
  margin: auto;
}

.video-thumb img {
  width: 100%;
}

.newsletter-input {
  height: 55px;
  border-radius: 6px;
  border: 2px solid var(--resume-primary-color);
  padding: 0 15px;
  flex: 1;
  min-width: 250px;
}

/*==============================sandeep Contact Form-page-css==============================*/
.Contact-form-sec .contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.Contact-form-sec .contact-input {
  border: none;
  border-bottom: 2px solid #1E2532;
  padding-left: 0;
  min-height: 50px;
  border-radius: 3px;
}

.Contact-form-sec .contact-input:focus {
  border-color: var(--resume-primary-color);
}

.Contact-form-sec .form-label {
  color: #828BA2;
}

.Contact-form-sec .form-label:hover {
  color: var(--resume-primary-color);
}

.c-form-bottom .small-text {
  color: var(--resume-primary-color);
  display: none;
}

/*===============================Sandeep Login Page Css==============================*/
.auth-title {
  font-weight: 600;
  color: #011632;
}

.auth-input {
  height: 50px;
  border-radius: 6px;
  background: var(--resume-white-color);
  border: none;
}

.auth-description {
  font-size: 20px;
  color: #011632;
}

.auth-top-heading {
  margin-bottom: 40px;
}

.auth-input:focus {
  box-shadow: none;
  border: 1px solid var(--resume-primary-color);
}

/* Links */
.auth-link {
  color: var(--resume-primary-color);
  font-size: 14px;
}

.auth-form-input {
  margin-bottom: 20px;
}

.options-box {
  margin-bottom: 36px;
}

.auth-img img {
  width: 100%;
  border-radius: 15px;
}

.auth-eye {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.auth-eye img {
  max-width: 20px;
  width: 100%;
}

.auth-back {
  font-size: 14px;
  color: var(--resume-primary-color);
}

.auth-back:hover {

  color: var(--resume-text-color);
}

/*=============================main_account-page-css==============================*/
/* SIDEBAR */
.profile-sidebar {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #DEDEDE;
}

.profile-content,
.profile-sidebar {
  color: var(--resume-text-color);
}

.profile-user img {
  max-width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  width: 100%;
}

.profile-menu li {
  list-style: none;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--resume-text-color);
}

.profile-menu li i {
  font-size: 16px;
}

.profile-menu li.active,
.profile-menu li:hover {
  color: var(--resume-primary-color);
  font-weight: 500;
}

.profile-content {
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #dedede;
}

.profile-edit {
  color: #166527;
  font-weight: 500;
  font-size: 18px;
}

.profile-card {
  text-align: center;
}

.profile-img {
  max-width: 120px;
  height: 120px;
  border-radius: 50%;
  width: 100%;
  object-fit: cover;
}

/* DETAILS */
.profile-details {
  padding: 0;
}

.profile-details li {
  list-style: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-details i:hover,
.profile-details li:hover {
  color: var(--resume-primary-color);
}

/* ABOUT */
.profile-about h6 {
  font-weight: 600;
}


/*==============================Edit Details Page Css==============================*/
.profile-close-btn {
  background: var(--resume-white-color);
  width: 100%;
  height: 35px;
  border-radius: 5px;
  max-width: 35px;
  text-align: center;
  line-height: 35px;
  border: 1px solid #dedede;
}

.profile-close-btn:hover {
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  border: none;
}

/* Upload button */
.upload-btn {
  background: var(--resume-primary-color);
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

/* Delete button */
.delete-btn {
  background: transparent;
  border: 1px solid var(--resume-primary-color);
  color: var(--resume-primary-color);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
}

/* Inputs */
.profile-input {
  background: var(--resume-white-color);
  border: none;
  height: 52px;
  margin-top: 5px;
  line-height: 36px;
}

.profile-input:focus {
  box-shadow: none;
  border: 1px solid var(--resume-primary-color);
}

/*================================past_resume-page-css==============================*/
.resume-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.resume-card img {
  width: 100%;
  display: block;
}

/* Hover effect */
.resume-card:hover {
  transform: translateY(-5px);
}

/*================================MemberShip-page-css==============================*/
.plan-card {
  background: var(--resume-white-color);
  padding: 25px 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(0px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--resume-primary-color);
}

.plan-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.plan-card:hover h4 {
  color: var(--resume-primary-color);
}

.plan-list {
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  min-height: 200px;
}

.plan-list li {
  list-style: none;
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
}

.plan-list i {
  color: var(--resume-text-color);
  margin-top: 5px;
}

.active-plan {
  position: relative;
}

.plan-active-badge {
  position: absolute;
  top: -30px;
  right: 0;
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  padding: 10px 20px;
  border-radius: 10px;
  left: 0;
  text-align: center;
  margin: auto;
  max-width: 150px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  font-size: 18px;
  font-weight: 600;
  z-index: 9999;
  transition: 0.3s ease;
}

.plan-card .resume-tp-btn {
  display: inline-block;
}

.active-plan:hover .plan-active-badge {
  background: var(--resume-text-color);
  color: var(--resume-white-color);
  top: -30px !important;
}

/*==============================ATS Template Page Css==============================*/
.blog-card.ats-card img {
  height: auto !important;
  padding: 0 !important;
}

.ats-page .blog-card.ats-card a {
  min-height: auto !important;
}

.blog-card.ats-card a {
  font-size: 18px !important;
  font-weight: 600;
  color: var(--resume-text-color) !important;
  margin-top: 10px;
  display: inline-block;
}

.blog-card.ats-card a:hover {
  color: var(--resume-primary-color);
}

.blog-card.ats-card {
  padding: 15px;
}

.ats_category-btn {
  display: inline-block;
  padding: 8px 10px;
  background: var(--resume-white-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--resume-text-color);
  transition: 0.3s;
}

.ats_category-btn:hover {
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
}

.ats_category-list {
  max-width: 800px;
  margin: auto;
}

.ats_category-sec {
  background-color: #EAF6FF;
}

.ats-info-block ul {
  list-style: disc;
  margin-left: 24px;
}

.gen_resume-card {
  background: #f4f6fb;
  border-radius: 15px;
  overflow: hidden;
  max-width: 320px;
  margin: auto;
}

/* Image */
.gen_resume-img img {
  width: 100%;
  display: block;
}

/* Content */
.gen_resume-content {
  padding: 20px 15px;
}

.gen_resume-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.gen_resume-content p {
  font-size: 14px;
  color: #555;
}

.gen_resume-btn {
  display: block;
  background: var(--resume-primary-color);
  color: var(--resume-white-color);
  padding: 20px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  transition: 0.3s;
}

.gen_resume-btn:hover {
  background: var(--resume-text-color);
  color: var(--resume-white-color);
}

.ats-info-block {
  color: var(--resume-text-color);
}

.ats-faq-sec {
  background-color: var(--resume-white-color);
}

/* Section BG */
.ats_slider-sec {
  background: #2c2c7c;
  color: #fff;
}

/* Desc */
.ats_slider-desc {
  font-size: 15px;
  color: #dcdcdc;
}

/* Slide */
.ats_slide-item {
  padding: 10px;
}

.ats_slide-item img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

/* Hover Animation */
.ats_slide-item:hover img {
  transform: scale(1.05);
}

.ats_slider-wrapper .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #EAF6FF !important;
  color: var(--resume-text-color) !important;
  max-width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  width: 100%;
}

.ats_slider-wrapper .owl-nav button.owl-prev,
.ats_slider-wrapper .owl-nav button.owl-next {
  width: 41px !important;
  height: 41px !important;
  line-height: 32px !important;
}

section#pricing-plans button {
  margin: 4px;
  border: 0;
}

section#pricing-faq button.w-full {
  border: 0;
  background-color: #fff;
  padding: 1.2rem !important;
}

section#pricing-faq .rounded-xl.border.bg-white.px-6.py-3.shadow-sm {
  padding: 0 !important;
  overflow: hidden;
}

p.text-\[42px\] {
  font-size: 33px;
}

#pricing-plans span.absolute.right-6.top-4.rounded-full.font-semibold.uppercase.tracking-wide {
  right: -38px;
  font-size: 9px;
  top: 5px;
  transform: rotate(28deg);
  border-radius: 0;
  width: 130px;
}

section#pricing-faq button.w-full:has(p) {
  background-color: #EAF6FF;
}

.ats_slider-wrapper .owl-nav .owl-prev span,
.ats_slider-wrapper .owl-nav .owl-next span {
  font-size: 34px !important;
}

.collapse.show {
  visibility: visible;
}

.ats_slider-wrapper .owl-nav .owl-prev {
  left: -80px;
}

.ats_slider-wrapper .owl-nav .owl-prev span,
.ats_slider-wrapper .owl-nav .owl-next span {
  font-size: 30px;
  line-height: 30px;
}

.ats_slider-wrapper .owl-nav .owl-next {
  right: -80px;
}

.ats_slider-wrapper {
  max-width: 840px;
  margin: auto;
}

.resume_header .skip-btn {
  background-color: #000;
  background: #282B8F33;
  font-size: 17px;
  padding: 13px 24px;
  border-radius: 4px;
}

.resume_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pic-template {
  font-size: 24px;
  color: #282B8F;
  font-weight: 600;
  text-align: center;
}

/* blog-detail */

/* ── Breadcrumb ── */
.blog-detail .breadcrumb {
  padding: 14px 0px;
  font-size: 16px;
  color: #828BA2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-detail .breadcrumb a {
  color: #828BA2;
  text-decoration: none;
}

.blog-detail .breadcrumb a:hover {
  text-decoration: underline;
}

.blog-detail .breadcrumb .separator {
  color: #828BA2;
  font-size: 22px;
}

.blog-detail .breadcrumb .current {
  color: #333;
}


/* ── Author line ── */
.blog-detail .author-line {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 19px;
  color: #666666;
  margin-bottom: 18px;
}

.blog-detail .author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e07b39, #c0392b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Hero row: title + illustration ── */
.blog-detail .hero-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 55px;
}

.blog-detail .hero-title {
  font-weight: 600;
  line-height: 1.18;
  color: #000;
  max-width: 560px;
  font-size: 54px !important;
}

/* Illustration placeholder */
.blog-detail .hero-illustration {
  width: 500px;
  min-width: 280px;
  height: auto;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* SVG illustration inside placeholder */
.blog-detail .hero-illustration svg {
  width: 100%;
  height: 100%;
}

/* ── Meta row ── */
.blog-detail .meta-row {
  margin: 40px 0 0px;
  font-size: 16px;
  color: #9FA6BB;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-detail .meta-row .meta-item:nth-child(2) {
  color: #000;
  font-size: 19px;
}

.blog-detail .meta-row .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-detail .meta-row .meta-item svg {
  color: #000;
}

/* ── Two-column layout ── */
.blog-detail .content-layout {
  display: grid;
  grid-template-columns: 17fr 8fr;
  gap: 29px;
  align-items: start;
}

/* ── Sidebar ── */
.blog-detail .sidebar {
  position: sticky;
  top: 24px;
}

.blog-detail .sidebar-box {
  overflow: hidden;
}

.blog-detail .sidebar-search {
  padding: 12px 14px;
  border: 1px solid #dedede;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
}

.blog-detail .sidebar-search input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #999;
  width: 100%;
  background: transparent;
}

.blog-detail .sidebar-search svg {
  color: #374151;
  flex-shrink: 0;
}

.blog-detail .sidebar-categories {
  padding: 20px;
  border: 1px solid #dedede;
  margin-top: 0px;
  border-radius: 4px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: inline-block;
  background-image: url(../images/arrow-down.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 12px !important;
  background-position: 93% 50% !important;
}

.max-w-7xl section.mt-6.rounded-3xl.border.border-slate-200.bg-white.p-5.shadow-sm .flex.flex-wrap.items-end.gap-3 .min-w-\[200px\].flex-1 label.mb-4.block {

  position: relative;
  top: 25px;
}

.resume-hero__stars {
  font-size: 0;
  position: relative;
}

.resume-hero__stars:after {
  content: "★★★★★";
  opacity: 1;
  font-size: 32px;
}

.grid button span.absolute.left-3.top-3.rounded-full {
  z-index: 9;
  transform: rotate(-35deg);
  top: 7px;
  left: 0;
}

header.relative.mb-6.border.bg-white.shadow-sm a.inline-flex.items-center.rounded-xl.border.border-transparent.p-1.transition.hover\:border-slate-200.hover\:bg-slate-50 {
  border: 0 !important;
}

header.relative.mb-6.border.bg-white.shadow-sm a.inline-flex.items-center.rounded-xl.border.border-transparent.p-1.transition.hover\:border-slate-200.hover\:bg-slate-50:hover {

  background-color: #fff;
}

.blog-detail .sidebar-categories h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.blog-detail .category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-detail .category-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #000;
  padding: 6px 0;
  cursor: pointer;
  border-bottom: 0px solid #dedede;
}

.blog-detail .category-list li img {
  margin-right: 5px;
}

.blog-detail .category-list li:last-child {
  border-bottom: none;
}

.blog-detail .category-list li svg {
  color: #888;
  flex-shrink: 0;
}

.blog-detail .category-list li:hover {
  color: #0066cc;
}



.blog-detail .intro-text {
  color: #1E2532;
  line-height: 1.7;
  margin-bottom: 14px;
}

.blog-detail .intro-text+.intro-text {
  margin-top: 0;
}

/* ── Section heading ── */
.blog-detail .section-heading {
  font-size: 24px;
  font-weight: 600;
  color: #1E2532;
  margin: 32px 0 20px;
}

/* ── Finding cards ── */
.blog-detail .finding {
  margin-bottom: 22px;
}

.blog-detail .finding-title {
  font-size: 18px;
  font-weight: 600;
  color: #1E2532;
  margin-bottom: 5px;
}

.blog-detail .finding-body {
  color: #1E2532;
  line-height: 1.65;
}

/* ── Final thoughts ── */
.blog-detail .final-thoughts {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* ── Author card ── */
.blog-detail .author-card {
  margin-top: 52px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid #ebebeb;
}

.blog-detail .author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c49a6c, #a0785a);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG head silhouette */
.blog-detail .author-photo svg {
  width: 100%;
  height: 100%;
}

.blog-detail .author-info {
  flex: 1;
}

.blog-detail .written-by-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 3px;
}

.blog-detail .author-name {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.blog-detail .author-bio {
  color: #1E2532;
  line-height: 1.65;
}

.blog-detail .humanizer-text {
  color: #1E2532;
  margin-top: 8px;
}

.blog-detail .humanizer-text a {
  color: #0057cc;
  text-decoration: none;
}

.blog-detail .humanizer-text a:hover {
  text-decoration: underline;

}

/* about-us */
.hero-heading {
  text-align: center;
}

.showcase-banner {
  background: #eef4fb;
  padding: 36px 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  overflow: hidden;
  min-height: 260px;
}

.showcase-banner .resume-card {
  background: #fff;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  flex-shrink: 0;
}

.resume-right {
  width: 385px;
  height: 502px;
  border-radius: 6px 6px 0 0;
  margin-left: -18px;
  position: relative;
  z-index: 1;
  transform: rotate(2deg) translateY(10px);
  overflow: hidden;
}

.resume-left {
  width: 385px;
  height: 502px;
  border-radius: 6px 6px 0 0;
  margin-right: -18px;
  position: relative;
  z-index: 1;
  transform: rotate(-2deg) translateY(10px);
}



.resume-center {
  width: 548px;
  height: 680px;
  border-radius: 6px 6px 0 0;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}



.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}

.stat-number {
  font-size: 24px;
  color: #1E2532;
  line-height: 100%;
}

.stat-label {
  font-size: 24px;
  color: #1E2532;
  line-height: 100%;
}

.mission-label {
  font-size: 24px;
  color: #828BA2;
  margin-bottom: 50px;
}

.mission-heading {
  font-size: 38px;
  color: #1E2532;
  line-height: 1.35;
  max-width: 600px;
  font-weight: 400;
}

.mission-section .mission-text-col {
  background-color: #F7F9FC;
  border-radius: 0px 200px 0 200px;
  padding: 60px 95px;
}

.mission-image-col {
  width: 433px;
  height: 385px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -15rem;
  justify-content: center;
}

.creativity-heading {
  color: #1E2532;
  line-height: 1.25;
  font-weight: 400;
}

.creativity-body {
  color: #1E2532;
}

.creativity-section .creativity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.slider-section {
  position: relative;
  overflow: hidden;
  padding: 0 0 32px;
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 80px;
}

.slide-img {
  border-radius: 10px;
  overflow: hidden;
  background: #dde4ea;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-track-wrapper button.owl-prev span,
.slider-track-wrapper button.owl-next span {
  font-size: 30px;
  line-height: 30px;
}

.slider-track-wrapper .owl-nav .owl-prev {
  left: 17%;
}

.slider-track-wrapper .owl-nav .owl-next {
  right: 17%;
}

.slider-track-wrapper .owl-dot span {
  width: 15px;
  margin-right: 10px;
  height: 15px;
  background: #ccc;
  display: block;
  border-radius: 50%;
}

.slider-track-wrapper .owl-dot.active span {
  background: #1c2b8f;
}

.slider-track-wrapper .owl-dots {
  text-align: center;
  padding-top: 20px;
}

.feature-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background-color: #F7F9FC;
  border-radius: 24px;
}

.feature-col p {
  font-size: 24px;
  color: #1E2532;
  line-height: 1.7;
}

.history-section h2 {
  font-size: 45px;
  font-weight: 400;
  color: #1E2532;
  margin-bottom: 36px;
}

.timeline {
  display: grid;
  gap: 30px;
  position: relative;
  grid-template-columns: 1fr 1fr 1fr;
}

.timeline .timeline-item {
  padding: 30px;
  background-color: #F7F9FC;
  border-radius: 24px;
}

.timeline-year {
  font-size: 30px;
  font-weight: 400;
  color: #1E2532;
  margin-bottom: 40px;
}

.timeline-text {
  font-size: 23px;
  color: #1E2532;
  line-height: 120%;
}

.team-section h2 {
  font-size: 45px;
  font-weight: 400;
  color: #1E2532;
  margin-bottom: 50px;
}

.team-card {
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  gap: 35px;
  margin-bottom: 70px;
}

.team-bio {
  font-size: 24px;
  color: #1E2532;
  margin-bottom: 50px;
}

.team-member-name {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #1E2532;
}

.team-card .slide {
  padding: 0;
}

.team-card .carousel-control-next,
.team-card .carousel-control-prev {
  top: auto;
  bottom: 55px;
  width: 48px;
  border-radius: 100%;
  height: 48px;
  color: #7A8599;
  background-color: #fff !important;
  z-index: 9;
  opacity: 1;
  transition: .4s all;
}

.team-card .carousel-control-next-icon,
.team-card .carousel-control-prev-icon {
  filter: brightness(0.5);
}

.team-card .carousel-control-next-icon,
.team-card .carousel-control-prev-icon {
  width: 1.3rem;
  height: 1.3rem;
}

.team-card .carousel-control-next {
  right: 35px;
}

.team-card .carousel-control-prev {
  left: auto;
  right: 92px;
}

.team-member-role {
  font-size: 19px;
  color: #828BA2;
}

.team-card .team-text-col {
  background-color: #F7F9FC;
  padding: 50px 30px;
  border-radius: 24px;
}

.team-slider-controls {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.reviews__score {
  font-weight: 400;
  text-align: center;
  font-size: 20px;
  margin-bottom: 15px;
  color: #1E2532;
}

.reviews__stars {
  color: var(--resume-primary-color);
  font-size: 20px;
}

.reviews__stars.small {
  font-size: 14px;
}

.reviews__based {
  font-size: 13px;
  color: #656E83;
  margin-top: 16px;
  text-align: center;
}

.reviews__progress-fill {
  transition: width 0.4s ease;
}

.sec-padding.reviews.sec-bg {
  margin-bottom: 0;
}

.reviews__card h6 {
  font-weight: 500;
  margin: 8px 0;
}

.reviews__card p {
  font-size: 16px;
  color: rgba(30, 37, 50, 1);
  font-weight: 400;
  margin-bottom: 10px;
}

.reviews__author {
  font-size: 13px;
  color: #656E83;
}

.reviews__progress {
  flex: 1;
  height: 4px;
  background: #ddd;
  border-radius: 5px;
  position: relative;
}

.reviews__progress-fill {
  width: 25%;
  height: 100%;
  background: #1A91F0;
  display: block;
  position: absolute;
  left: 0;
}

.reviews__stars.small img {
  max-width: 18px;
}

.reviews__card h6 {
  color: rgba(30, 37, 50, 1);
  font-size: 19px;
}

.reviews__nav button.reviews__prev,
.reviews__nav button.reviews__next {
  border: none;
  background: none;
}

.sec-padding.reviews.sec-bg {
  background-color: #EFF2F9;
}

.reviews .reviews__title {
  font-weight: 400;
  color: #1E2532;
  font-size: 52px;
}

.brand-item {
  font-size: 15px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brands-section .brand-box {
  display: flex;
  justify-content: center;
}

.brand-item.forbes {
  font-style: italic;
  font-size: 17px;
}

.brand-item.bloomberg {
  letter-spacing: -0.03em;
}

.brand-item.inc {
  font-size: 18px;
}

/* cover-letter */
.cover-detail .finding img {
  margin-bottom: 30px;
  box-shadow: 4px 4px 14px 0px #00000040;
  width: 100%;
}

.cover-detail .finding-title {
  font-size: 24px;
  margin-bottom: 25px;
  line-height: normal;
}

.cover-detail .finding {
  margin-bottom: 40px;
}

.cover-detail .intro-text {
  margin-bottom: 30px;
}

.cover-detail .sidebar-categories {
  margin-top: 0;
  margin-bottom: 30px;
}

.generate-letter img,
.generate-letter {
  width: 100%;
}

.generate-letter .text_box {
  background-color: #EAF6FF;
  padding: 30px;
  text-align: center;
}

.generate-letter .text_box h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.generate-letter .text_box p {
  font-size: 20px;
}

.generate-letter .generate-btn {
  width: 100%;
  display: block;
  text-align: center;
  background-color: #282B8F;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
}

.cover-hero {
  background-color: #EFF2F9;
}

.cover-hero .breadcrumb {
  margin-bottom: 30px;
  color: #828BA2;
}

.profile-content .row.g-4 {
  margin-top: 35px;
}

.creativity-section .owl-item {
  opacity: 0.5;
}

.creativity-section .owl-item.active.center {
  opacity: 1;
}

.cover-hero .breadcrumb .separator {
  margin: 0 5px;
}

.cover-hero h1 {
  margin-bottom: 15px;
}

.cover-hero .text-box span {
  color: #9FA6BB;
}

.cover-hero .text-box p {
  margin-top: 20px;
}

.ats_slider-sec {
  background: #2c2c7c;
  color: #fff;
}

/* Desc */
.ats_slider-desc {
  font-size: 15px;
  color: #dcdcdc;
}

/* Slide */
.ats_slide-item {
  padding: 10px;
}

.ats_slide-item img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}

/* Hover Animation */
.ats_slide-item:hover img {
  transform: scale(1.05);
}

.ats_slider-wrapper .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #EAF6FF !important;
  color: var(--resume-text-color) !important;
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  width: 100%;
}

.ats_slider-wrapper .owl-nav .owl-prev {
  left: -80px;
}

.ats_slider-wrapper .owl-nav .owl-prev span,
.ats_slider-wrapper .owl-nav .owl-next span {
  font-size: 30px;
  line-height: 30px;
}

.ats_slider-wrapper .owl-nav .owl-next {
  right: -80px;
}

.ats_slider-wrapper {
  max-width: 840px;
  margin: auto;
}

ul.finding-body {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.blog-card.ats-card {
  padding: 15px;
}

.blog-card {
  background: var(--resume-white-color);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
  height: 100%;
}

.blog-card.ats-card a {
  font-size: 18px;
  font-weight: 600;
  color: var(--resume-text-color);
  margin-top: 10px;
  display: inline-block;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card.ats-card img {
  height: auto;
}


.resume_h2 {
  text-align: center;
  margin-bottom: 40px;
}

.healthcare,
.law {
  background-color: #EAF6FF;
}

.resume_category ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.resume_category ul li:last-child a {
  color: #282B8F;
}

.resume_category {
  margin-bottom: 70px;
}

.resume_category .search-box input {
  border: 2px solid #282B8F;
  border-radius: 4px;
  height: 50px;
  padding: 15px;
  max-width: 400px;
  width: 100%;
  margin-bottom: 40px;
  background-image: url(../images/seach-category.png);
  background-repeat: no-repeat;
  background-position: 4% 50%;
  background-size: 29px;
  padding-left: 52px;
}

.resume-detail .finding img {
  box-shadow: none;
  margin-top: 20px;
}

.templates-slider-prev {
  padding: 12px 12px 17px 10px;
}

.templates-slider-next {
  padding: 12px 9px 17px 10px;
}

.stats-card h5 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #1E2532;
}

main.home-template-root {
  background-color: #fff;
}

.ats-info-block ul,
.ats-info-block p {
  margin-top: 5px;
  margin-bottom: 15px;
}

.ats-info-block h1,
.ats-info-block h2,
.ats-info-block h3,
.ats-info-block h4 {
  margin-bottom: 10px;
  margin-top: 20px;
}

section.res-faq-sec.py-70.ats-faq-sec {
  padding-top: 0;
}

body .max-w-4xl {
  max-width: 48rem;
}

.fixed.flex.items-center.justify-center button.rounded-full.border.text-sm.font-semibold {
  display: none;
}

main.min-h-screen.bg-app.px-4.py-6 {
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

header.relative.mb-6.border.bg-white.shadow-sm {
  border: 0 !important;
  box-shadow: none !important;
  z-index: 9;
}

header .flex.flex-col.gap-4.border-b.border-slate-100.px-5.py-4 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

header nav.flex.flex-wrap.gap-2.px-4.py-3 {
  padding: 0 !important;
}

header a.inline-flex.items-center.gap-3.rounded-xl.border.border-transparent {
  border: 0 !important;
}

.grid section.border.border-slate-200.bg-slate-50.p-4 {
  padding: 10px !important;
}

.grid section .h-full.p-8.md\:p-10 {
  padding: 20px;
}

.rounded-full.border.border-slate-900.bg-slate-900.text-white {
  background-color: #282B8F;
}

section.sec-padding.templates.sec-bg .container {
  max-width: 100% !important;
}

button.btn.btn-primary,
.grid section button.font-semibold.text-slate-900.underline,
button.rounded-lg.bg-rose-500.text-white,
button.rounded-xl.bg-rose-500.text-white,
button.w-full.rounded-xl.bg-amber-500 {
  background-color: #282B8F !important;
  border-color: #282B8F !important;
  box-shadow: none !important;
  color: #fff;
}

.plan-card button.resume-tp-btn {
  padding: 14px !important;
}

.grid section button.font-semibold.text-slate-900.underline {
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
}

.grid span.rounded-full.border.border-slate-200.font-semibold.text-slate-600 {
  border-radius: 6px;
}

.grid button .relative.overflow-hidden.border.border-slate-200.bg-slate-100 {
  height: 372px !important;
}

body .leading-tight {
  line-height: normal !important;
}

button .rounded-2xl.border.shadow-sm.border-transparent div {
  transform: scale(1) !important;
}

button .rounded-2xl.border.p-4.shadow-sm.bg-slate-100.border-transparent.bg-slate-50.p-2 {
  padding: 0 !important;
}

button .grid .p-4,
button .rounded-2xl.p-4 {
  padding: 15px !important;
}

button .grid .grid-cols-\[180px_1fr\],
button .grid .grid-cols-\[165px_1fr\] {
  grid-template-columns: 130px 1fr;
}

section .grid button img.border.border-slate-200.object-cover {
  object-fit: contain;
  height: auto;
}

section.space-y-6 .border.bg-white.p-5.shadow-sm.transition.border-slate-200 {
  padding: 24px !important;
}

header .text-xs {
  font-size: 1rem;
  line-height: 1.25rem;
}

.grid.gap-6 section button.mb-2.flex.w-full.items-center.justify-between.text-left {
  padding: 14px;
  background-color: #123f52;
  color: #fff !important;
  border-radius: 12px;
  border: 0;
}

.ats_slider-wrapper .owl-nav button.owl-prev span,
.ats_slider-wrapper .owl-nav button.owl-next span {
  position: relative;
  top: -2px;
}

.grid.gap-6 section button.text-xs.font-semibold.text-red-600 {
  background-color: #dc2626;
  color: #fff;
  border: 0;
  padding: 10px;
  border-radius: 11px;
}

.max-w-7xl {
  padding-left: 10px;
  padding-right: 10px;
}

.grid.gap-6 section button.mb-2.flex.w-full.items-center.justify-between.text-left span,
.grid.gap-6 section button.mb-2.flex.w-full.items-center.justify-between.text-left h3 {
  color: #fff;
}

.grid button .relative .overflow-hidden.border.border-slate-200.bg-slate-100 {
  height: auto !important;
}

grid button span.absolute.uppercase.tracking-wide.tracking-wide {
  z-index: 9;
  top: 6px;
  left: -2px;
  transform: rotate(-35deg);
}

section#pricing-plans .relative.p-6.text-center {
  overflow: hidden;
}

.ats_slider-wrapper .owl-nav button.owl-prev span {

  left: -1px;
}

.ats_slider-wrapper .owl-nav button.owl-prev span,
.ats_slider-wrapper .owl-nav button.owl-next span {
  right: -1px;
}

.fixed.bottom-4.left-4.right-4 .flex.flex-col.overflow-hidden .rounded-\[22px\].border.border-indigo-200.bg-white.p-2.shadow-sm {
  box-shadow: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.fixed.bottom-4.left-4.right-4 button.rounded-full {
  padding: 0px 10px !important;
  height: 30px;
  border-radius: 5px;
  font-size: 12px;
}

.fixed.bottom-4.left-4.right-4 textarea.w-full.resize-none {
  border-radius: 6px;
  padding: 9px !important;
  height: 58px !important;
  font-size: 14px !important;
}

.fixed.bottom-4.left-4.right-4 .mt-3.flex.flex-wrap.gap-2 {
  margin-top: 10px !important;
}

.fixed.bottom-4.left-4.right-4 .bg-\[linear-gradient\(145deg\,\#2d3191_0\%\,\#3a40aa_100\%\)\] {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.fixed.bottom-4.left-4.right-4 .rounded-\[24px\].px-5.py-4.text-\[16px\].leading-7.shadow-sm.bg-\[\#2d3191\].text-white p {
  font-size: 14px !important;
  line-height: normal;
}

.creativity-section .slide {
  padding: 0px 15px;
}

.creativity-section .slide-img {
  width: 100%;
}

header.relative.mb-6.border.bg-white.shadow-sm .absolute.right-0 button.flex.w-full.rounded-xl.px-3.py-2 {
  border: 0;
  background-color: #fff;
}

.ats_slider-sec .ats_slider-title {
  max-width: 100% !important;
}

.fixed.bottom-4.left-4.right-4 {
  z-index: 999999;
}

.fixed.bottom-4.left-4.right-4 h3.text-2xl.font-semibold {
  display: none;
}

.fixed.bottom-4.left-4.right-4 p.mt-1.text-sm.leading-6 {
  font-size: 10px;
  width: 100%;
  line-height: normal;
}

.fixed.bottom-4.left-4.right-4 .mt-3.rounded-\[18px\].border.border-white\/20 {
  padding: 0px !important;
  margin-top: 10px !important;
  border-radius: 6px;
  border: 0 !important;
  background-color: transparent;
}

.fixed.bottom-4.left-4.right-4 .mt-3.rounded-\[18px\].border.border-white\/20 .min-w-0.flex-1 {
  display: flex;
  gap: 5px;
  align-items: center;
}

.fixed.bottom-4.left-4.right-4 .mt-3.rounded-\[18px\].border.border-white\/20 select {
  margin-top: 0 !important;
  height: 35px;
  border-radius: 6px;
  padding: 7px 15px !important;
}

.fixed.bottom-4.left-4.right-4 .mt-3.rounded-\[18px\].border.border-white\/20 .min-w-0.flex-1 p.text-\[11px\] {
  white-space: nowrap;
  line-height: normal;
  padding-top: 5px;
}

.fixed.bottom-4.left-4.right-4 .mt-3.rounded-\[18px\].border.border-white\/20 .mt-1\.5.flex.flex-wrap.items-center.gap-1\.5 {
  display: none;
}

.fixed.bottom-4.left-4.right-4 .rounded-\[24px\].border.border-slate-200.bg-white.px-5.py-4.text-base.leading-7.text-slate-500.shadow-sm,
.fixed.bottom-4.left-4.right-4 .rounded-\[24px\].px-5.py-4.text-\[16px\].leading-7.shadow-sm.border.border-slate-200.bg-white.text-slate-700 {
  padding: 10px !important;
  border-radius: 6px;
  font-size: 14px;
  line-height: normal;
}

.fixed.bottom-4.left-4.right-4 .rounded-\[24px\].px-5.py-4.text-\[16px\].leading-7.shadow-sm.bg-\[\#2d3191\].text-white {
  padding: 10px !important;
  border-radius: 6px;
}

.fixed.bottom-4.left-4.right-4 .rounded-\[24px\].border.border-slate-200.bg-white.px-5.py-4.text-base.leading-7.text-slate-500.shadow-sm p,
.fixed.bottom-4.left-4.right-4 .rounded-\[24px\].px-5.py-4.text-\[16px\].leading-7.shadow-sm.border.border-slate-200.bg-white.text-slate-700 p {
  font-size: 14px;
  line-height: normal;
}

.fixed.bottom-4.left-4.right-4 .flex.h-\[min\(82vh\,760px\)\] {
  min-height: 95vh;
}

.plan-card .resume-btn {
  padding: 15px;
}

.fixed.inset-0.z-50 {
  z-index: 9999;
}

.fixed.inset-0.z-\[55\] {
  z-index: 99999;
}

.fixed.inset-0.z-50 .grid button span.absolute.left-3.top-3.rounded-full {
  top: -4px;
  left: -38px;
  font-size: 10px;
  background-color: blue;
  color: #fff;
  border-radius: 0;
  width: 100px;
  text-align: center;
}

.grid .relative.overflow-hidden.rounded-\[18px\].border.border-slate-200.bg-slate-100.rounded-\[24px\] {
  height: 470px !important;
}

.fixed.inset-0.z-50 .absolute.right-3.top-3.rounded-full.bg-emerald-600 {
  top: -6px;
  right: -37px;
  transform: rotate(34deg);
  border-radius: 0;
  width: 100px;
  font-size: 10px;
  text-align: center;
}

.fixed.inset-0.z-50 button.rounded-2xl.border.p-3.text-left.transition {
  overflow: hidden;
}

button.rounded-xl,
select.w-full.rounded-xl,
input.w-full.rounded-xl {
  border-radius: 6px !important;
}

.team-card .carousel-control-next:hover,
.team-card .carousel-control-prev:hover {
  background-color: #d7d7d7 !important;
  color: #fff !important;
}

.fixed.inset-0 .mt-4.rounded-xl.border.border-slate-200.bg-slate-50.p-3 .overflow-hidden.rounded-xl.border {
  height: auto !important;
}

.fixed.inset-0 .w-full.max-w-4xl.rounded-2xl.border {
  height: 600px;
  overflow: auto;
}

.fixed.inset-0 .mt-4.rounded-xl.border.border-slate-200.bg-slate-50.p-3 img {
  height: auto !important;
}

.options-box input#remember {
  margin-right: 5px;
}

.auth-box a.auth-back.mb-3.d-inline-block:before {
  content: "<";
  font-family: monospace;
  font-size: 20px;
  margin-right: 4px;
}

.sidebar-categories a {
  align-items: flex-start !important;
}

.sidebar-categories a img {
  margin-top: 5px !important;
}

.flex.h-full.flex-col.gap-3.overflow-y-auto.px-4.py-3\.5 {
  padding-left: 15px !important;
  padding-right: 15px !important;
  background: linear-gradient(135deg, #ffffff, #9294c1);
  backdrop-filter: blur(10px);
}

.fixed.bottom-4.left-4.right-4 .shrink-0.border-t.border-slate-200.bg-white.p-3 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.shrink-0.border-t.border-slate-200.bg-white.p-3 .mb-2\.5.flex.flex-wrap.gap-2 {
  position: absolute;
  bottom: 7px;
  left: 17px;
}

/* new */
button.w-full.rounded-xl.px-4.py-2.text-sm.font-semibold.transition {
  background-color: #282B8F !important;
  border-color: #282B8F !important;
  box-shadow: none !important;
  color: #fff;
}

button.absolute.right-2.top-2.z-10.h-9.w-9.rounded-full.border.border-slate-200.bg-white.text-lg.font-bold.text-slate-700.shadow {
  font-size: 14px;
  font-weight: 500;
}

.grid-cols-\[180px_1fr\] {
  grid-template-columns: 1fr !important;
}

.grid article .rounded-2xl.border.border-slate-200\/80.p-4.shadow-sm.bg-slate-950.min-h-\[160px\] {
  padding: 0 !important;
}

header nav.flex.flex-wrap.gap-2.px-4.py-3 a.rounded-full {
  white-space: nowrap;
  border-radius: 6px !important;
  padding: 9px 15px !important;
}

header.relative.mb-6.border.bg-white.shadow-sm a.inline-flex.items-center.rounded-xl.border.border-transparent.p-1.transition.hover\:border-slate-200.hover\:bg-slate-50 .block.font-display.text-lg {
  font-weight: 600;
  font-size: 16px;
}

.grid article .rounded-2xl.border.border-slate-200.bg-white.p-4.border-teal-200.bg-teal-50 {
  padding: 10px !important;
}

button.rounded-full.border.px-4.py-1\.5.text-sm.font-semibold.border-slate-300.bg-white.text-slate-700 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.rounded-3xl,
rounded-xl,
.rounded-2xl {
  border-radius: 6px !important;
}

.rounded-full {
  border-radius: 6px !important;
}

.grid-cols-\[165px_1fr\] {
  grid-template-columns: 1fr !important;
}

button.fixed.bottom-5.right-5 {
  border-radius: 100% !important;
}

b,
strong {
  font-weight: 700 !important;
}

.fixed.bottom-4.left-4.right-4 .flex.flex-col.overflow-hidden .rounded-\[22px\].border.border-indigo-200.bg-white.p-2.shadow-sm .flex.flex-wrap.items-center.justify-between.gap-2 {
  flex-wrap: nowrap !important;
}

.fixed.bottom-4.left-4.right-4 .rounded-2xl.border.border-slate-200.bg-white.p-1\.5.shadow-sm {
    max-width: 165px;
    height: 32px;
    padding: 4px;
}
.fixed.bottom-4.left-4.right-4 .rounded-2xl.border.border-slate-200.bg-white.p-1\.5.shadow-sm img.h-\[38px\].w-\[190px\].rounded-xl.object-cover {
    height: 22px;
    border-radius: 4px;
}
/* Responsive */
@media (min-width: 1536px) {
  .container {
    max-width: 1280px !important;
  }
}

@media (max-width: 991px) {
  .ats_slider-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .ats_slider-wrapper .owl-nav {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }

  .ats_slider-wrapper .owl-nav button {
    position: static;
    transform: none;
    margin: 0 8px;
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .profile-card {
    text-align: center;
  }

  .profile-details li {
    font-size: 14px;
  }

  .profile-img {
    max-width: 100px;
    height: 100px;
  }

  .ats-info-block h4 {
    font-size: 20px;
  }

}

@media (max-width: 767px) {
  .profile-menu li {
    padding: 5px 0;
    font-size: 14px;
  }

  .profile-user p {
    font-size: 13px;
  }

  .plan-list {
    min-height: auto;
  }

  .gen_resume-btn {
    padding: 16px;
    font-size: 16px;
  }

  .gen_resume-content h4 {
    font-size: 16px;
  }

  h2.joinbox__title {
    font-size: 30px;
  }
}