@import "tailwindcss";

/* 🔒 إخفاء مؤشر الماوس في كل الموقع */
/* إخفاء المؤشر في كل الموقع */

:root {
  --body-background: #fff7f4;
  --primary-color: #24403f;
  --text-color: #000000;
  --accent-color: #b1946a;
  --secondry-color: #ffffff;
  --transparent-color: #ffffff80;
  --transparent-secondry-color: #00000080;
  --light-Background: #24403f;
  --light-accent-color: #feefe9;
  --default-font: "Cairo", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--body-background);
}
html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

/* إظهار المؤشر في الأماكن المهمة */
a,
button,
input,
textarea,
select {
  cursor: pointer !important;
}

css Copy .wow {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wow.animated {
  visibility: visible;
  opacity: 1;
}
/* تحسينات للعروض المماثلة */
.line-clamp-2 {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.similar-offers-sidebar {
  position: sticky;
  top: 100px;
}

/* تحسين الظلال والتأثيرات */
.shadow-custom {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.shadow-custom:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* تحسين الأزرار */
.btn-quick-add {
  transition: all 0.3s ease;
}

.btn-quick-add:hover {
  transform: scale(1.05);
}

/************************************/
/**** 	    04. Hero css		 ****/
/************************************/

.hero {
  padding: 120px 0;
  background:
    url("/images/half-circle-img.png") no-repeat bottom right 30px,
    var(--primary-color);
  position: relative;
}

.hero::before {
  position: absolute;
  content: "";
  background: url("/images/half-shape.png") no-repeat bottom left;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 30px;
  background-size: 20% auto;
}

.hero-content {
  padding-right: 150px;
  position: relative;
  z-index: 1;
}

.hero-content .section-title h3 {
  color: var(--secondry-color);
}

.hero-content .section-title h1 {
  color: var(--accent-color);
}

.hero-body {
  margin-bottom: 35px;
}

.hero-body p {
  font-size: 18px;
  font-weight: 400;
  color: var(--transparent-color);
}

.hero-footer {
  display: flex;
  align-items: center;
}

.hero-footer .btn-default {
  margin-right: 40px;
}

.hero-footer .btn-default::after {
  background: var(--secondry-color);
}

.hero-footer .btn-default:hover::after {
  width: 106%;
  opacity: 1;
  background-color: var(--primary-color);
}

.hero-footer .btn-fault:hover::after {
  width: 100%;
  opacity: 1;
  background-color: #ffffff;
}

.hero-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: flex-end;
  background: url("/images/white-dots-img.png") no-repeat center center;
  background-size: 65% auto;
}

.hero-images .hero-image-2 {
  margin-bottom: 110px;
}

.hero-images .hero-image-1 figure,
.hero-images .hero-image-2 figure,
.hero-images .hero-image-1 img,
.hero-images .hero-image-2 img {
  border-radius: 999px;
  aspect-ratio: 1/1.7;
  object-fit: cover;
}

.about-us-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background-image: url(/images/about-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.about-us {
  padding: 50px 0;
}

.about-us-image .about-us-image-2 img,
.about-us-image .about-us-image-1 img {
  border-radius: 999px;
  aspect-ratio: 1/1.7;
  object-fit: cover;
}

.about-us-image .about-us-image-1 {
  margin-top: 180px;
}

.about-us-image .about-us-image-2 {
  position: relative;
}

.about-img {
  position: relative;
}

.about-img .about-video {
  position: absolute;
  bottom: 0;
  right: 0;
}

.about-video img {
  filter: brightness(50%);
  border-radius: 999px;
}

.about-video a {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  p {
    font-size: 16px;
  }

  #magic-cursor {
    display: none !important;
  }

  .slicknav_nav li.highlighted-menu a i {
    display: none;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .section-title h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 38px;
  }

  .hero {
    padding: 60px 0;
    background-size: 30% auto;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .hero-footer .btn-default {
    margin-right: 20px;
  }

  .hero-footer a.video-btn {
    font-size: 18px;
  }

  .hero-images {
    max-width: 600px;
    margin: 0 auto;
  }

  .home-contact-us {
    padding: 50px 15px 25px;
  }

  .home-contact-item.highlighted-box .highlighted-box-title {
    padding: 0 20px;
  }

  .home-contact-item.highlighted-box .highlighted-box-title h2 {
    font-size: 26px;
  }

  .home-contact-item.highlighted-box .appointment-wrap a {
    padding: 15px;
    font-size: 16px;
  }

  .home-contact-item {
    padding: 30px 20px;
  }

  .home-contact-item .contact-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .home-contact-item .contact-content p {
    font-size: 16px;
  }

  .about-us {
    padding: 25px 0;
  }

  .about-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-us-image {
    text-align: center;
    margin-bottom: 30px;
  }

  .about-content .about-content-body p {
    max-width: 100%;
  }

  .about-content {
    padding-left: 0px;
  }

  .medical-services {
    padding: 25px 0 20px;
  }

  .medical-service-content {
    padding: 30px 20px 80px 20px;
  }

  .medical-content h3 {
    font-size: 20px;
  }

  .cta-box {
    padding: 50px 0;
    text-align: center;
  }

  .cta-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .cta-item .icon-box {
    width: 100%;
    margin-right: 0px;
  }

  .cta-content h3 {
    font-size: 38px;
  }

  .cta-content {
    width: calc(80%);
    margin: 0 auto;
  }

  .cta-box .cta-btn {
    text-align: center;
  }

  .how-we-work {
    padding: 50px 0 20px;
  }

  .how-we-work .section-title {
    padding-right: 0px;
  }

  .work-step-item .step-item-content h3 {
    font-size: 20px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .faq-image {
    margin-bottom: 70px;
  }

  .counter-box-1 {
    width: 150px;
    height: 130px;
  }

  .counter-box-2 {
    width: 150px;
    height: 130px;
  }

  .counter-item .counter-content h3 {
    font-size: 36px;
  }

  .counter-item .counter-content p {
    font-size: 20px;
  }

  .faqs-content {
    padding-left: 0px;
  }

  .faq-accordion .accordion-item .accordion-button {
    font-size: 20px;
  }

  .faq-accordion .accordion-item .accordion-collapse .accordion-body p {
    max-width: 100%;
  }

  .clients-testimonials {
    padding: 50px 0 25px;
  }

  .testimonial-item {
    padding: 30px;
  }

  .author-content .author-title h3 {
    font-size: 20px;
  }

  .testimonial-slider .swiper-pagination {
    margin-top: 20px;
  }

  .recent-post {
    padding: 25px 0 20px;
  }

  .post-item-body h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .post-item .btn-readmore a {
    font-size: 16px;
  }

  .home-contact-form {
    padding: 50px 15px 0;
  }

  .contact-appointment {
    padding: 40px 15px;
  }

  .contact-appointment .appointment-content h3 {
    font-size: 26px;
  }

  .contact-form {
    padding: 40px 30px;
  }

  .main-footer {
    padding: 60px 0 20px;
  }

  .about-footer {
    margin-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-content {
    margin-bottom: 20px;
  }

  .footer-social-links ul {
    text-align: center;
  }

  .footer-social-links ul li a {
    font-size: 20px;
  }

  .footer-quick-links h2,
  .footer-contact-details h2,
  .footer-newsletter h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .footer-contact-box {
    padding-right: 0px;
  }

  .subpage-header {
    padding: 100px 0 50px;
    background-size: 20% auto;
  }

  .subpage-header::before {
    width: 220px;
  }

  .subpage-header-box h1 {
    font-size: 38px;
    margin-bottom: 5px;
  }

  .subpage-header-box ol li {
    font-size: 16px;
  }

  .page-about {
    padding: 50px 0;
  }

  .page-about-content {
    margin-bottom: 30px;
  }

  .page-services-item-content {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .about-page-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .we-improving {
    padding: 50px 0;
  }

  .improving-img {
    margin-bottom: 20px;
  }

  .improving-content {
    margin-left: 0;
  }

  .improving-body p {
    margin-bottom: 30px;
  }

  .top-services {
    padding: 50px 0 0px;
  }

  .services-item {
    padding: 20px;
  }

  .services-item .services-content h3 {
    font-size: 20px;
  }

  .services-item .services-content {
    margin-bottom: 15px;
  }

  .health-services {
    padding: 25px 0 50px;
  }

  .health-services-content {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .health-services-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .health-services-content p {
    margin-bottom: 20px;
  }

  .health-services-content ul {
    padding: 0;
  }

  .health-services-content ul li:before {
    font-size: 18px;
  }

  .health-service-item {
    padding: 20px;
  }

  .health-info-content h3 {
    font-size: 20px;
  }

  .meet-our-team {
    padding: 50px 0 20px;
  }

  .team-content h2 {
    font-size: 20px;
  }

  .our-services {
    padding: 50px 0 0px;
  }

  .our-services-item {
    padding: 20px;
  }

  .services-item-content {
    margin-bottom: 20px;
  }

  .services-item-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .services-item-content ul li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .services-item-content ul li:before {
    font-size: 18px;
  }

  .service-specialist {
    padding: 25px 0 0px;
  }

  .specialist-item {
    padding: 15px;
  }

  .specialist-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .specialist-content i {
    font-size: 24px;
  }

  .meet-our-team.service-team {
    padding: 25px 0 0;
  }

  .our-culture {
    padding: 25px 0;
  }

  .download-apps {
    padding: 25px 0 50px;
  }

  .download-apps .section-title {
    margin-bottom: 20px;
  }

  .download-apps-body {
    margin-bottom: 30px;
  }

  .services-single {
    padding: 50px 0 25px;
  }

  .services-single-content {
    margin-right: 0px;
  }

  .services-video-icon a i {
    font-size: 16px;
    width: 44px;
    height: 44px;
  }

  .health-care-plan-content ul li {
    width: 100%;
    font-size: 18px;
    margin-bottom: 15px;
    margin-right: 0;
  }

  .service-featured-image,
  .health-care-plans {
    margin-bottom: 30px;
  }

  .medical-service {
    padding: 30px 20px;
  }

  .medical-service-title h2 {
    font-size: 26px;
  }

  .medical-service-list .service-item {
    padding: 10px;
  }

  .service-item .service-icon img {
    width: 35px;
  }

  .service-item .service-title h3 {
    font-size: 22px;
  }

  .working-step {
    padding: 25px 0 50px;
  }

  .working-process-item {
    padding: 30px;
  }

  .working-process-item .icon-box {
    margin-bottom: 20px;
  }

  .working-process-item .icon-box img {
    width: 35px;
  }

  .working-process-content h3 {
    font-size: 20px;
  }

  .working-process-step {
    position: absolute;
    right: 10px;
    bottom: 5px;
  }

  .working-process-step h2 {
    font-size: 26px;
  }

  .recent-post.our-blog {
    padding: 50px 0;
  }

  .post-pagination {
    margin-top: 8px;
  }

  .post-single-meta ul li {
    font-size: 18px;
  }

  .page-post-single {
    padding: 50px 0 25px;
  }

  .post-entry h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .tag-links {
    margin-bottom: 10px;
  }

  .post-social-sharing {
    text-align: left;
  }

  .post-entry blockquote p {
    font-size: 22px;
  }

  .post-entry blockquote {
    padding: 30px;
  }

  .meet-our-team.our-team {
    padding: 50px 0 20px;
  }

  .member-details {
    padding: 50px 0 25px;
  }

  .member-info {
    padding: 30px;
  }

  .member-info .member-title {
    margin-bottom: 20px;
  }

  .member-info .member-title h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .member-info .member-title h2 {
    font-size: 36px;
  }

  .member-info .member-about-data {
    margin-bottom: 20px;
  }

  .member-info .member-social-icon ul li a i {
    font-size: 20px;
  }

  .member-about-details {
    padding: 25px 0 50px;
  }

  .about-member .member-social-icon ul li a i {
    font-size: 20px;
  }

  .education-item .education-content h3 {
    font-size: 20px;
  }

  .awards-item .awards-content h3 {
    font-size: 16px;
  }

  .skillbar .skill-data .title {
    font-size: 16px;
  }

  .skillbar .skill-progress {
    height: 20px;
  }

  .skillbar .skill-progress .count-bar {
    font-size: 16px;
  }

  .team-sidebar {
    margin: 60px 0 0 0;
  }

  .opening-hour-box {
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .opening-hour-box .icon-box {
    margin-bottom: 20px;
  }

  .opening-hour-title {
    margin-bottom: 30px;
  }

  .opening-hour-title h3 {
    font-size: 26px;
  }

  .opening-hour-content ul {
    text-align: left;
  }

  .contact-information {
    max-width: 700px;
    margin-bottom: 25px;
  }

  .contact-item {
    padding: 30px 0;
  }

  .contact-info-content h3 {
    font-size: 20px;
  }

  .page-contact-form {
    padding: 25px 0 50px;
  }

  .contact-us-form {
    padding: 30px;
  }

  .appointment-booking {
    padding: 50px 0 25px;
  }

  .appointment-booking .contact-form {
    padding: 30px;
  }

  .quick-contacts {
    padding: 30px;
  }

  .quick-contacts-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .meet-our-team.appointment-our-team {
    padding: 25px 0 20px;
  }

  .faqs-page {
    padding: 50px 0 25px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-heading h2 {
    font-size: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .navbar-brand img {
    max-width: 140px;
  }

  .section-row {
    margin-bottom: 30px;
  }

  .section-title h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .section-title h1,
  .section-title h2 {
    font-size: 28px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .hero::before {
    background-size: 40% auto;
  }

  .hero-images {
    padding-bottom: 0;
    background-size: 70% auto;
    justify-content: space-between;
  }

  .hero-images .hero-image-1,
  .hero-images .hero-image-2 {
    width: 47%;
  }

  .home-contact-item.highlighted-box .highlighted-box-title {
    padding: 30px;
  }

  .home-contact-item.highlighted-box .highlighted-box-title h2 {
    font-size: 22px;
  }

  .home-contact-item {
    padding: 30px;
  }

  .home-contact-item.box-border::before {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    left: 50%;
    bottom: 0;
    right: 50%;
    height: 1px;
    width: 90%;
    background: var(--transparent-color);
    transform: translateX(-50%);
  }

  .about-content-item .about-content-body {
    margin-bottom: 20px;
  }

  .about-content-item .about-content-footer ul {
    margin: 0 0 20px 0;
  }

  .about-content-item .about-content-footer ul li {
    font-size: 16px;
  }

  .about-us-image {
    justify-content: space-between;
  }

  .about-us-image .about-us-image-1,
  .about-us-image .about-us-image-2 {
    width: 45%;
  }

  .about-us-image .about-us-image-1 {
    margin-top: 100px;
  }

  .about-img .about-video {
    text-align: end;
    width: 52%;
  }

  .about-img .about-video .btn-video {
    font-size: 16px;
  }

  .about-img {
    margin-bottom: 30px;
  }

  .medical-services .row .col-lg-4:first-child {
    display: block;
  }

  .medical-services .medical-service-heading {
    margin-bottom: 40px;
  }

  .cta-content {
    width: calc(100%);
    margin: 0 auto;
  }

  .cta-content h3 {
    font-size: 28px;
  }

  .counter-box-1 {
    width: 120px;
    height: 110px;
  }

  .counter-box-2 {
    height: 110px;
  }

  .counter-item .counter-content h3 {
    font-size: 28px;
  }

  .author-content .author-title h3 {
    font-size: 18px;
  }

  .post-item-body h2 {
    font-size: 18px;
  }

  .contact-appointment {
    padding: 25px;
  }

  .contact-appointment .appointment-content h3 {
    font-size: 22px;
  }

  .contact-form {
    padding: 25px;
  }

  .about-footer {
    text-align: left;
  }

  .footer-social-links ul {
    text-align: left;
  }

  .footer-contact-box .footer-info-box {
    padding-left: 28px;
  }

  .footer-info-box .icon-box i {
    font-size: 18px;
  }

  .footer-newsletter {
    margin-top: 30px;
  }

  .footer-copyright {
    margin-top: 30px;
  }

  .subpage-header {
    padding: 80px 0 50px;
    background-size: 35% auto;
  }

  .subpage-header::before {
    background: url(/images/half-circle-img.png) no-repeat 80% 100%;
    background-size: 60% auto;
  }

  .subpage-header-box h1 {
    font-size: 28px;
  }

  .page-about-image {
    justify-content: space-between;
  }

  .page-about-image-1 {
    margin-top: 100px;
    width: 48%;
  }

  .page-about-image-2 {
    width: 48%;
    margin-bottom: 100px;
  }

  .services-item .services-content h3 {
    font-size: 18px;
  }

  .health-services-content h2 {
    font-size: 18px;
  }

  .health-services-content ul li {
    margin-bottom: 15px;
    font-size: 16px;
  }

  .health-service-item .icon-box {
    margin-right: 10px;
  }

  .health-info-content {
    width: calc(100% - 50px);
  }

  .health-info-content h3 {
    font-size: 18px;
  }

  .team-content h2 {
    font-size: 18px;
  }

  .services-item-content h3 {
    font-size: 18px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .specialist-content h3 {
    font-size: 18px;
  }

  .culture-image-gallery {
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
  }

  .culture-image-gallery .caulture-img {
    width: 48%;
    margin-bottom: 10px;
  }

  .culture-image-gallery .caulture-img:last-child {
    margin-bottom: 0;
  }

  .download-apps-img {
    margin-bottom: 30px;
  }

  .download-apps-footer .download-apps-image {
    margin-right: 30px;
  }

  .service-video {
    margin-bottom: 20px;
  }

  .health-care-plan-content ul li {
    font-size: 16px;
  }

  .services-sidebar {
    margin-top: 40px;
  }

  .medical-service-title h2 {
    font-size: 22px;
  }

  .service-item .service-title h3 {
    font-size: 20px;
  }

  .working-step {
    padding: 25px 0 30px;
  }

  .working-process-item {
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }

  .working-process-step h2 {
    font-size: 22px;
  }

  .post-single-meta ul li {
    font-size: 16px;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h2 {
    font-size: 28px;
  }

  .post-entry {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .post-entry blockquote {
    padding: 20px;
  }

  .post-entry blockquote p {
    background: url(/images/icon-blockquote.svg) no-repeat 0px 0px;
    font-size: 20px;
    padding-left: 0px;
    padding-top: 50px;
  }

  .member-info {
    padding: 20px;
  }

  .member-info .member-title h2 {
    font-size: 28px;
  }

  .member-service .about-service-content ul li {
    font-size: 16px;
    width: calc(100%);
    margin: 0 0 15px 0;
  }

  .member-education .education-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .education-item .education-icon {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .award-list .awards-item {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .award-list .awards-item:last-child {
    margin-bottom: 0;
  }

  .opening-hour-title h3 {
    font-size: 22px;
  }

  .opening-hour-content ul li {
    font-size: 16px;
  }

  .google-map-iframe {
    height: 300px;
  }

  .google-map-iframe iframe {
    height: 300px;
  }

  .contact-information {
    max-width: 350px;
    margin-bottom: 25px;
  }

  .contact-item {
    padding: 20px 0;
  }

  .contact-item .icon-box i {
    font-size: 26px;
  }

  .contact-info-content h3 {
    font-size: 18px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .appointment-booking .contact-form {
    padding: 20px;
  }

  .quick-contacts {
    padding: 20px;
  }

  .quick-contacts-content h3 {
    font-size: 24px;
  }

  .error-page-heading {
    margin-bottom: 20px;
  }

  .error-page-heading h2 {
    font-size: 28px;
  }
}

/**general **/
.service_buttom {
  margin-left: 5px;
}

a,
button,
.nav-link {
  cursor: pointer !important;
}

.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  z-index: 9999;
}

/*************************************/
/****   15. About us Page css     ****/
/*************************************/

.subpage-header {
  padding: 150px 0 100px;
  background: var(--primary-color) url("/images/half-shape.png") no-repeat 6%
    100%;
  background-size: 19% auto;
  position: relative;
}

.subpage-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: url("/images/half-circle-img.png") no-repeat 50% 100%;
  background-size: 70% auto;
  opacity: 1;
}

.subpage-header-box {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.subpage-header-box h1 {
  font-family: var(--accent-font);
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.subpage-header-box ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-header-box ol li {
  font-size: 18px;
  font-weight: 400;
  margin-right: 10px;
  color: var(--secondry-color);
  text-transform: capitalize;
}

.subpage-header-box ol li:last-child {
  margin-right: 0;
}

.subpage-header-box ol li:last-child:after {
  display: none;
}

.subpage-header-box ol li a {
  color: inherit;
}

.btn-default,
.btn-default-pure {
  display: flex;
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  border-radius: 100px;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 0;
  border: none;
  outline: 0;
  box-shadow: none;
  transition: 0.2s transform;
  background: transparent;
  border: 2px solid var(--accent-color);
  align-items: center;
  justify-content: center;
  padding: 10px 45px 10px 25px;
}

.btn-default-pure {
  padding: 10px 25px 10px 25px;
}

.btn-default::after {
  content: "";
  position: absolute;
  width: 0;
  height: 104%;
  top: 50%;
  left: 50%;
  background: var(--primary-color);
  opacity: 0;
  z-index: -1;
  transform: translateX(-51%) translateY(-51%);
  transition: all 0.4s ease-out;
  border-radius: 5px;
}

.btn-default:hover::after {
  width: 106%;
  opacity: 1;
}
