@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

/*--------------------------------------------------------------
# Root
--------------------------------------------------------------*/

:root {
  --font-poppins: "Poppins", sans-serif;
  --primary-color: #191A1C;
  --secondary-color: #1E1C54;
  --light-green-color: #BED630;
  --white-color: #fff;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
}

.custom-container {
  margin: 0 150px;
  /* 130px space on the left and right */
  padding: 0 10px;
}

@media (max-width: 1600px) {
  .custom-container {
    margin: 0 80px;
    padding: 0 10px;
  }
}

@media (max-width: 1199px) {
  .custom-container {
    margin: 0 70px;
    /* Reduce margin on tablets and medium devices */
  }
}

@media (max-width: 1024px) {
  .custom-container {
    margin: 0 50px;
    /* Reduce margin on tablets and medium devices */
  }
}

@media (max-width: 768px) {
  .custom-container {
    margin: 0 15px;
    /* Reduce margin further on small devices */
  }
}

@media (max-width: 480px) {
  .custom-container {
    margin: 0 15px;
    /* Minimal margin on very small devices */
  }
}

h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 36px;
}

h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 36px;
}

h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
}

a {
  text-decoration: none;
  color: var(--primary-clr);
}

a:hover {
  color: var(--orange-clr);
}

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

.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.pt-50 {
  padding-top: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.py-50 {
  padding: 50px 0;
}
.py-100{
  padding: 100px 0;
}
.pt-100{
  padding-top: 100px;
}
.pb-100{
padding-bottom: 100px;
}

.primary-btn {
  font-size: 15px;
  font-weight: 400;
  padding: 10px 30px;
  color: var(--white-color);
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  border-radius: 25px;
  transition: 0.5s all;
  display: inline-block;
}

.primary-btn:hover {
  /* background: transparent; */
    background: #bed630;
    color: var(--secondary-color);
    border: 1px solid #bed630;
}

p {
  font-size: 15px;
  font-weight: 400;
  color: #595D64;
  margin: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.main-header {
  padding: 0;
  z-index: 99;
}
header.main-header.sticky, header.blog-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0px 10px 40px #00000029;
}
.main-header .logo {
  padding: 0;
  margin: 0;
}
.main-header .logo img {
  max-width: 174px;
  height: auto;
  object-fit: cover;
}

.main-header .nav-menu {
  align-items: center;
  gap: 35px;
}

.nav-menu .nav-item .nav-link {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  padding: 50px 0;
  color: #070707;
  transition: 0.5s all;
  text-transform: capitalize;
}

.nav-menu .nav-item .nav-link:hover {
  color: var(--light-green-color);
}

.nav-menu .nav-item .nav-link.active {
  color: var(--light-green-color);
}

/* header.main-header {
  background-color: transparent;
  z-index: 9999;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
} */

header.main-header .navbar {
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: unset;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  top: 90px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--white-color);
  border: 0;
  border-radius: 3px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu li {
  margin-bottom: 5px;
}

.nav-menu .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
  color: var(--primary-color);
}

.main-header .navbar-toggler {
  background-color: unset;
  border: 0;
  padding: 0;
}

.main-header .navbar-toggler .bars i {
  font-size: 30px;
  color: var(--primary-color);
}

.main-header .btn-close {
  display: none;
}

.main-header .btn-close:focus {
  box-shadow: unset;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-row {
  display: grid;
  grid-template-columns: 1fr 33%;
  gap: 50px;
}

/* .footer-logo {
  text-align: center;
  padding: 50px 0 40px 0;
} */
.inquiry-form{
  z-index: 9999;
}
.inquiry-form button.close {
  border: unset;
  background-color: transparent;
  font-size: 30px;
}
.footer-logo img {
  max-width: 258px;
  height: auto;
  object-fit: cover;
}

.link-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.link-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.link-details ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 45px;
}

.link-details ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  transition: .5s all;
}

.link-details ul li a:hover {
  color: var(--light-green-color);
}

.link-icon ul {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: end;
}

.link-icon ul li {
  width: 43px;
  height: 43px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.link-icon ul li:hover {
  opacity: 0.8;
}

.link-icon ul li a i {
  color: var(--white-color);
}

.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer-contact-box .footer-info-box {
  position: relative;
  padding-left: 40px;
}

.footer-contact-box .footer-info-box p {
  margin: 0;
}

.footer-info-box .icon-box {
  position: absolute;
  top: 10px;
  left: 0;
}

.footer-contact-box .footer-info-box p.sub-title {
  font-size: 13px;
}

.footer-contact-box .footer-info-box p.title {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  transition: .5s all;
}

.footer-contact-box .footer-info-box p.title:hover {
  color: var(--light-green-color);
}

.footer-info-box .icon-box i {
  color: var(--light-green-color);
  font-size: 22px;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.f-contact-sub-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copyright-div {
  padding: 25px 0;
  margin-top: 25px;
  border-top: 1px solid #d9d9d973;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-div .term {
  color: var(--light-green-color);
}

.copyright-div p {
  margin: 0;
}

/*--------------------------------------------------------------
1. Home Page start
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Banner
--------------------------------------------------------------*/
.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner {
  /* min-height: 986px; */
  height: 100vh;
  display: flex !important;
  align-items: center;
  position: relative;
}

/* .banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000075;
} */

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content .title-one {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 30px;
  padding-bottom: 8px;
}

.banner-content span {
  color: var(--secondary-color);
}

.banner-content .title-two {
  font-size: 58px;
  line-height: 64px;
  font-weight: 800;
  color: var(--primary-color);
  padding-bottom: 20px;
}

.banner-content .title-two span {
  color: var(--light-green-color);
}

.banner-content .title-three {
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: var(--primary-color);
  padding-bottom: 5px;
  display: block;
}

.banner-content .primary-btn {
  margin-top: 25px;
}

.banner-content .primary-btn span i {
  color: var(--white-color);
  padding-left: 8px;
}
.banner-content .primary-btn:hover span i{
  color: var(--secondary-color);
}
.banner-slide {
  position: relative;
}

.banner-slide.owl-carousel .owl-dots {
  position: absolute;
  bottom: 80px;
  margin-top: 0 !important;
}

.banner-slide.owl-theme .owl-dots .owl-dot span {
  width: 13px;
  height: 13px;
  margin: 5px 7px;
  background: var(--light-green-color);
  border-radius: 50%;
}

.banner-slide.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary-color);
}

.right-colum {
  position: relative;
  z-index: 1;
}

.right-colum .shape-one {
  z-index: -1;
  position: absolute;
  top: -5%;
  left: 20%;
}

.shape-two {
  position: absolute;
  z-index: -1;
  top: 200px;
  right: -40px;
  overflow: hidden;
}

.right-colum .shape-three {
  position: absolute;
  z-index: -1;
  bottom: -70px;
  right: 0px;
}

.right-colum .shape-one img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.shape-two img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.right-colum .shape-three img {
  max-width: 540px;
  height: auto;
  object-fit: cover;
}

/*--------------------------------------------------------------
# claint Slider
--------------------------------------------------------------*/
.client-section {
  padding: 40px 0;
}

.client-img {
  text-align: center;
  max-width: 150px;
  margin: auto;
}

.client-img img {
  width: 100%;
  object-fit: contain;
  margin: auto;
  cursor: pointer;
  -webkit-filter: grayscale(0);
  filter: grayscale(1);
}

.client-img img:hover {
  -webkit-filter: grayscale(1);
  filter: grayscale(0);
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us{
  padding: 76px 0 100px;
}
.about-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.about-img {
  width: 480px;
  height: auto;
  margin: auto;
}

.about-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-img-bx {
  position: relative;
}

.experience-container {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 20px;
  left: 170px;
}

.experience-container .big-text {
  font-size: 150px;
  line-height: 160px;
  font-weight: bold;
  color: var(--light-green-color);
}

.experience-container .small-text {
  display: flex;
  flex-direction: column;
}

.experience-container .small-text .plus {
  font-size: 90px;
  font-weight: 800;
  color: var(--light-green-color);
}

.experience-container .small-text .text {
  font-size: 18px;
  color: var(--white-color);
  font-weight: 400;
  white-space: nowrap;
  margin-top: -35px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-content p{
  font-size: 17px;
  color: var(--primary-color);
}

.about-content-bx {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.features-wrap .features {
  display: flex;
  align-items: start;
  gap: 30px;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #dbdbdb;
}

.features-wrap .features:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.features .feature-icon img {
  max-width: 60px;
  height: auto;
  object-fit: cover;
}

.feature-content h3 {
  padding-bottom: 15px;
}
/*--------------------------------------------------------------
#  Panoramic Padel Court
--------------------------------------------------------------*/
.panoramic-padel{
  overflow: hidden;
}
.panoramic-padel-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.pedal-details-bx {
  padding: 70px 50px;
  display: flex;
flex-direction: column;
gap: 25px;
}
.pedal-img img {
  width: 100%;
  min-height: 850px;
  object-fit: cover;
  border-radius:25px;
}
.pedal-details h2 {
  padding-bottom: 15px;
}
.pedal-details p{
  line-height: 28px;
}
.primary-btn.btn-clr-change {
  background: var(--light-green-color);
  color: var(--primary-color);
  border: 1px solid var(--light-green-color);
}
.primary-btn.btn-clr-change:hover {
    background: #1e1c54;
    color: #ffffff;
    border: 1px solid #1e1c54;
}
.specification-bx{
  border: 1px solid var(--primary-color);
  padding: 5px 20px;
  border-radius: 25px;
  width: max-content;
}
.specification-bx p{
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
}
.specification-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

ul.specification-list {
  display: flex;
  gap: 10px;
  padding-left: 0;
  flex-wrap: wrap;
}
ul.specification-list .list-bx{
  max-width: 185px;
}
ul.specification-list .list-bx span{
  font-size: 14px;
  font-weight: 400;
}
ul.specification-list .list-bx p{
  font-size: 14px;
color: #252B33;
white-space: nowrap;
}
.pedal-details-bx .primary-btn {
  width: max-content;
}
/*--------------------------------------------------------------
#  Why Choose
--------------------------------------------------------------*/
.bottom-contact {
  display: none !important;
}
.common-heading {
  text-align: center;
  padding-bottom: 50px;
}
.why-choose-bx {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    /* box-shadow: 0px 10px 40px #00000029; */
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    height: 290px;
}
.why-choose-bx p {
  display: inline-block;
  overflow: hidden !important;
  text-overflow: ellipsis;
  --webkit-line-clamp: 5;
  --webkit-box-orient: vertical;
}
.why-choose-bx img {
  max-width: 50px;
  height: auto;
  object-fit: cover;
}
.choose-btn{
  text-align: center;
  margin-top: 50px;
}
/*--------------------------------------------------------------
#  Your Perfect Game Awaits!
--------------------------------------------------------------*/
section.perfect-game {
  min-height: 636px;
  display: flex;
  align-items: center;
  position: relative;
}
.perfect-game-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}
.perfect-game-bx {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.perfect-game:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000029;
}

.perfect-game-bx .image img{
  max-width: 222px;
  height: auto;
  object-fit: cover;
}

.perfect-game-bx h3 {
  font-size: 25px;
  line-height: 32px;
  font-weight: 500;
  color: var(--white-color);
}

.perfect-game-bx h2 {
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
  color: var(--white-color);
}
.primary-btn.perfect-game-btn {
  background: var(--light-green-color);
  color: var(--primary-color);
  border: 1px solid var(--light-green-color);
  font-weight: 700;
  width: max-content;
}
.primary-btn.perfect-game-btn:hover{
    background: #fff;
    color: #1e1c54;
    border: 1px solid #1e1c54;
}
.primary-btn.perfect-game-btn span{
  padding-left: 10px;
}

/*--------------------------------------------------------------
#  Our Pedal
--------------------------------------------------------------*/
.our-padel-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.our-padel-img-bx {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.our-padel-img-bx .our-padel-img{
  width: 100%;
  height: 200px;
}
.our-padel-img-bx .our-padel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}
.our-padel-img.our-padel-sub-img {
  height: 100px;
}
.our-padel-img.our-padel-sub-img img {
  height: 100%;
}

.our-padel-sub-img-bx {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.our-content-bx {
  background: var(--white-color);
  border: 1px solid #e1e1e1;
  padding: 28px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.our-content-bx h4 {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.our-content-bx p {
  color: #595D64;
}
/*--------------------------------------------------------------
#  Contact Us Section
--------------------------------------------------------------*/
.contact-us{
  position: relative;
}
.contact-details .footer-contact-box {
  background: var(--white-color);
  border-radius: 15px;
  padding: 16px;
}

.contact-details h3 {
  padding-bottom: 20px;
  font-size: 30px;
}

.contact-details .footer-info-box .icon-box i{
  color: #000;
}
.contact-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}

.contact-form {
  background: var(--white-color);
  padding: 100px 70px;
  position: absolute;
  top: -70px;
  box-shadow: 0px 5px 14px #00000029;
}

.contact-form h2 {
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.form-control {
  padding: 10px 15px;
  background-color: var(--white-color);
  border: 1px solid #dcdcdc !important;
  color: #828282;
  box-shadow: none;
  border: none;
  border-radius: 10px;
  font-size: 14px;
}

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

.form-control::placeholder {
  color: #828282;
  text-transform: capitalize;
}

.form-control:focus {
  box-shadow: unset;
  outline: unset;
  border-color: #dcdcdc;
}
.racket-image {
  position: absolute;
  top: -155px;
  right: 50px;
}
.racket-image img{
  max-width: 290px;
  height: auto;
  object-fit: cover;
}


table {
  border-collapse: separate;
  border-spacing: 0;
  border-width: 1px 0 0 1px;
  width: 100%;
}

table,
td,
th {
  border: 1px solid #ededed;
}

.main-new-table tr:first-child {
  background: var(--secondary-color);
  color: var(--white-color);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.main-new-table tr td .btn-get-started {
  margin-top: 0;
}

td,
th {
  padding: 8px;
  border-width: 0 1px 1px 0;
  border-bottom: 0;
  font-size: 14px;
}

td:last-child {
  border-right: 0;
}

.main-new-table tr:nth-child(even) {
  background: #dcdcdc;
}




/* Ensure carousel container adapts to content */
.choose-slide {
  display: block;
  position: relative;
}

/* Ensure each item is properly styled */
.choose-slide .item {
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: center; /* Center content horizontally */
  padding: 10px; /* Adjust padding for consistent spacing */
  box-sizing: border-box; /* Ensure padding is included in height calculations */
}


/* ------------- blog css --------- */
/* ===== MODERN BLOG SECTION ===== */
.modern-blog {
    min-height: 100vh; /* FULL VIEWPORT HEIGHT */
   
    background: #ffffff;
}

.main-header-new {
  background: #fff;
}
/* Blog Card */
.blog-card-modern {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

/* .blog-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
} */



/* Blog Image */
.blog-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-text h2:first-child {
  margin-top: 0 !important;
}


/* Content */
.blog-content {
    padding: 25px;
 
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.single-post .blog-content {
  padding: 0;
    padding-right: 25px;
    padding-bottom: 25px;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-title a {
    color: #1c1c1c;
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--light-green-color); /* AFI green */
}

.blog-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

/* Read More */
.blog-read-more {
    font-weight: 600;
    color: var(--light-green-color);
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
}

.blog-read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 8px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
}

.blog-pagination .current {
    background: var(--light-green-color);
    color: #fff;
}


.breadcrumb-section h1 {
  font-size: 60px;
  margin-bottom: 10px;
  line-height: 70px;
}

.blog-pagination .navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-content .blog-meta {
  display: none;
}
.border-top {
      border-top: 1px solid #d9d9d973;
}
 .breadcrumb-section {
        padding: 50px 0;
        background-color:#212529;
        color:#fff;
    }

    .blog-content h2,  .blog-content h3 {
      margin-bottom: 20px;
      margin-top: 25px;
    }

.blog-image img  {
  width: 100%;
  border-radius: 25px;

}
    /* ===== SINGLE BLOG LAYOUT ===== */
.blog-single-section {
    background: #fff;
}



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

.blog-meta a {
    color: var(--light-green-color);
    text-decoration: none;
    font-weight: 600;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 125px;
    padding: 25px;
    border-radius: 14px;
    background: #f8f9fb;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--light-green-color);
}

.sidebar-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Recent Posts */
.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    font-size: 14px;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
}

.recent-posts a:hover {
    color: var(--light-green-color);
}

/* Breadcrumb */
.breadcrumb-dark {
    background: #1f2327;
    padding: 90px 0;
}

.breadcrumb-nav {
    margin-top: 10px;
}

.breadcrumb-nav a {
    color: var(--light-green-color);
    text-decoration: none;
}

.breadcrumb-nav span {
    color: #fff;
    margin: 0 6px;
}


/* ===== POST NAVIGATION ===== */
.post-navigation-modern {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e6e6e6;
}

.nav-box a {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 50px;
    background: #f4f6f8;
    color: #1c1c1c;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-box a:hover {
    background: var(--light-green-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(124,194,66,0.4);
}

.nav-box.prev a {
    padding-left: 26px;
}

.nav-box.next a {
    padding-right: 26px;
}
@media screen and (max-width:600px) {
  .single-post .blog-content {
    padding: 0 !important;
   }
  .breadcrumb-section h1 {
    font-size: 45px;
    line-height: 55px;
  }
}