ul {
  margin: 0;
  padding: 0;
  display: block;
}

li {
  list-style: none;
}

a,
a:hover,
a:focus,
button,
button:focus {
  outline: none !important;
  text-decoration: none;
  color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  transition: all 0.35s ease;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  -ms-transition: all 0.35s ease;
}

.mainContent {
  padding: 50px 15px;
  position: relative;
}

.page-title {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.page-title::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.32);
  z-index: -1;
}
.page-title .inner-cont {
  text-align: center;
  width: 100%;
}
.page-title .inner-cont .title {
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  line-height: normal;
  margin: 15px auto;
  margin-top: 0;
  text-transform: capitalize;
}
.page-title .inner-cont ul li {
  display: inline-block;
  padding: 0 15px;
  color: #0ba1f5;
}
.page-title .inner-cont ul li a {
  color: #fff;
  position: relative;
}
.page-title .inner-cont ul li a svg {
  width: 6px;
  fill: #fff;
  position: absolute;
  right: -20px;
  top: 5px;
}

.blog-page .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.blog-page .row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.blog-page .g-4,
.blog-page .gy-4 {
  --bs-gutter-y: 1.5rem;
}
.blog-page .blog-item img {
  width: 100%;
}
.blog-page .blog-item .text-block {
  padding: 30px;
  background-color: #f9f9f9;
}
.blog-page .blog-item .text-block h4 {
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 500;
}
.blog-page .blog-item .text-block p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 30px;
}
.blog-page .blog-item .text-block .read_more {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #00193c;
  text-transform: capitalize;
}
@media screen and (max-width: 560px) {
  .blog-page .blog-item .text-block {
    padding: 15px;
  }
}

.page-navigation {
  padding: 15px 0;
  border-top: 1px solid #f9f9f9;
}
.page-navigation .breadcrumb {
  padding: 0;
  margin: 0;
  background-color: transparent;
}
.page-navigation .breadcrumb .breadcrumb-item {
  font-size: 15px;
  color: #282828;
  font-weight: 400;
  line-height: normal;
}
.page-navigation .breadcrumb .breadcrumb-item::before {
  color: #ebebeb;
}
.page-navigation .breadcrumb .breadcrumb-item a {
  font-size: inherit;
  color: currentColor;
}
.page-navigation .breadcrumb .breadcrumb-item.active {
  color: #0ba1f5;
  overflow: hidden;
  word-break: break-all;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
@media (max-width: 766px) {
  .page-navigation .breadcrumb .breadcrumb-item.active {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .page-navigation .breadcrumb .breadcrumb-item.active {
    width: 200px;
  }
}

.blog-header {
  background-image: url("../images/blog-banner.jpg");
  padding: 0;
}
.blog-header .blog-page-title {
  position: relative;
  padding: 50px 0;
  text-align: left;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  color: white;
}
.blog-header .blog-page-title .title {
  font-size: 30px;
  color: #282828;
  font-weight: 600;
  margin: 0;
  color: white;
}
.blog-header .blog-page-title .title:has(+ p, + ul) {
  margin-bottom: 16px;
}
@media (max-width: 991px) {
  .blog-header .blog-page-title .title {
    max-width: 100%;
    font-size: 28px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .blog-header .blog-page-title .title {
    font-size: 24px;
  }
}
.blog-header .blog-page-title .blog-header-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.blog-header .blog-page-title .blog-header-details .blog-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
}
@media (max-width: 575px) {
  .blog-header .blog-page-title .blog-header-details .blog-header-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.blog-header .blog-page-title .blog-header-details .blog-category a,
.blog-header .blog-page-title .blog-header-details .blog-category span {
  display: block;
  border: 1px solid #0ba1f5;
  color: #0ba1f5;
  padding: 12px 30px;
  border-radius: 50px;
  line-height: normal;
  font-size: 14px;
}
.blog-header .blog-page-title .blog-header-details .post-date {
  border-left: 1px solid #d7d7d7;
  padding-left: 50px;
  margin-left: 50px;
}
@media (max-width: 766px) {
  .blog-header .blog-page-title .blog-header-details .post-date {
    padding-left: 30px;
    margin-left: 30px;
  }
}
@media (max-width: 575px) {
  .blog-header .blog-page-title .blog-header-details .post-date {
    border: none;
    padding: 0;
    margin: 0;
  }
}
.blog-header .blog-page-title .blog-header-details .social-post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-header .blog-page-title .blog-header-details .social-post-share i {
  color: white;
}
.blog-header .blog-page-title .blog-header-details .social-post-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.blog-header .blog-page-title .blog-header-details .social-post-share ul li {
  padding: 0;
}
.blog-header .blog-page-title .blog-header-details .social-post-share ul li::before {
  display: none;
}
.blog-header .blog-page-title .blog-header-details .social-post-share ul li a {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  color: #282828;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.blog-header .blog-page-title .blog-header-details .social-post-share ul li a:hover {
  background-color: #0ba1f5;
  color: #ffffff;
  border-color: #0ba1f5;
}
@media (max-width: 575px) {
  .blog-header .blog-page-title .blog-header-details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}
@media (max-width: 1024px) {
  .blog-header .blog-page-title {
    padding: 30px 0;
  }
}
@media (max-width: 575px) {
  .blog-header .blog-page-title {
    text-align: center;
  }
}

.blog-single-details .sidebar {
  position: sticky;
  top: 50px;
  max-width: 280px;
}
.blog-single-details .sidebar .tab_pill {
  font-size: 15px;
}
.blog-single-details .sidebar .tab_pill {
  --pill-padding-x: 0;
  --pill-padding-y: 15px;
  position: relative;
  padding: var(--pill-padding-y) var(--pill-padding-x);
  padding-right: 1.25rem;
  border-bottom: 1px solid rgba(217, 217, 217, 0.75);
  overflow: hidden;
  cursor: pointer;
}
.blog-single-details .sidebar .tab_pill::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #282828;
  bottom: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog-single-details .sidebar .tab_pill .tab_pill_text {
  font-size: 15px;
  line-height: 26px;
  font-weight: 400;
  text-transform: capitalize;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog-single-details .sidebar .tab_pill:hover .tab_pill_text {
  color: #0ba1f5;
}
.blog-single-details .sidebar .active-scroll-spy .tab_pill_text {
  color: #0ba1f5;
}
.blog-single-details .sidebar .active-scroll-spy .tab_pill {
  text-shadow: 0 0 0.2px #000;
}
.blog-single-details .sidebar .active-scroll-spy .tab_pill::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.blog-single-details .sidebar > :first-child .tab_pill {
  padding-top: 0;
}
@media (max-width: 1024px) {
  .blog-single-details .sidebar {
    display: none;
  }
}
.blog-single-details .content-wrapper {
  padding-bottom: 50px;
}
.blog-single-details .content-wrapper .sp-title {
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  margin: 0;
}
.blog-single-details .content-wrapper .sp-title:has(+ p, + ul, figure) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper p {
  font-size: 15px;
  line-height: 30px;
  color: #282828;
  margin: 0;
}
.blog-single-details .content-wrapper p:has(+ p) {
  margin-bottom: 16px;
}
.blog-single-details .content-wrapper p:has(+ ul, + h2, + h3, + h4, + h5, + h6) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper figure {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
}
.blog-single-details .content-wrapper figure img {
  width: 100%;
}
.blog-single-details .content-wrapper .title-block .title {
  font-size: 40px;
}
.blog-single-details .content-wrapper .arrow-btns {
  top: 8px;
}
.blog-single-details .content-wrapper .line {
  width: 100%;
  height: 1px;
  background-color: rgba(217, 217, 217, 0.5);
  margin: 30px auto;
}
.blog-single-details .content-wrapper .sub-title {
  font-size: 18px;
  color: #0ba1f5;
  font-weight: 600;
  margin-bottom: 50px;
  display: block;
}
@media (max-width: 1024px) {
  .blog-single-details .content-wrapper .sub-title {
    margin-bottom: 30px;
  }
}
.blog-single-details .content-wrapper .ht-title {
  font-size: 50px;
  line-height: 65px;
  color: #282828;
  font-weight: 600;
  margin-bottom: 0;
}
.blog-single-details .content-wrapper .ht-title:has(+ p, + ul) {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .blog-single-details .content-wrapper .ht-title {
    font-size: 35px;
    line-height: 45px;
    max-width: 75%;
    margin: 0 auto;
  }
}
@media (max-width: 766px) {
  .blog-single-details .content-wrapper .ht-title {
    max-width: 100%;
  }
}
.blog-single-details .content-wrapper h2 {
  font-size: 20px;
  line-height: normal;
  color: #00193c;
  font-weight: 600;
  margin-bottom: 0;
}
.blog-single-details .content-wrapper h2:has(+ p, + ul, + h3, + h4, + h5, + h6) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper h3 {
  font-size: 18px;
  line-height: normal;
  color: #0ba1f5;
  font-weight: 600;
  margin-bottom: 0;
}
.blog-single-details .content-wrapper h3:has(+ p, + ul, + h4) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper h4 {
  font-size: 16px;
  line-height: normal;
  color: #282828;
  font-weight: 600;
  margin-bottom: 0;
}
.blog-single-details .content-wrapper h4:has(+ p, + ul) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper h5 {
  font-weight: 600;
  font-size: 16px;
  color: #282828;
}
.blog-single-details .content-wrapper h5:has(+ p, + ul) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper p a {
  color: #0ba1f5;
}
.blog-single-details .content-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.blog-single-details .content-wrapper ul:has(+ p, + h2, + h3, + h4, + h5, + h6) {
  margin-bottom: 30px;
}
.blog-single-details .content-wrapper ul li {
  position: relative;
  font-size: 15px;
  color: #282828;
  padding-left: 30px;
}
@media (max-width: 1024px) {
  .blog-single-details .content-wrapper ul li b,
  .blog-single-details .content-wrapper ul li strong {
    display: block;
  }
}
.blog-single-details .content-wrapper ul li::before {
  position: absolute;
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNiIgaGVpZ2h0PSI2IiB2aWV3Qm94PSIwIDAgNiA2IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNMy43MjU0NiA1LjU2NjE2QzMuNjMzMjUgNS42NjU2NCAzLjQ4MzcgNS42NjU2MyAzLjM5MTQ4IDUuNTY2MTZDMy4yOTkyNiA1LjQ2NjQzIDMuMjk5MzcgNS4zMDQ2NCAzLjM5MTQ4IDUuMjA0ODNMNS4xOTMyNCAzLjI1NTYyTDAuMjAzOTc5IDMuMjU1NjJDMC4wOTExMjQ5IDMuMjU1NTYgLTAuMDAwMTIyMjEzIDMuMTQwODUgLTAuMDAwMTIyMjIxIDIuOTk5NzZDLTEuNTg5NDZlLTA1IDIuODU4NzcgMC4wOTExOTA2IDIuNzQ0OTMgMC4yMDM5NzkgMi43NDQ4N0w1LjE5NDIxIDIuNzQ0ODdMMy4zOTE0OCAwLjc5NTY1NUMzLjI5OTIgMC42OTU4NiAzLjI5OTIgMC41MzQxMjEgMy4zOTE0OCAwLjQzNDMyN0MzLjQ4Mzc1IDAuMzM0NTc5IDMuNjMzMiAwLjMzNDU2OCAzLjcyNTQ2IDAuNDM0MzI2TDUuOTMwNTQgMi44MTkwOUM2LjAyMjgxIDIuOTE4ODggNi4wMjI4IDMuMDgwNjIgNS45MzA1NCAzLjE4MDQyTDMuNzI1NDYgNS41NjYxNloiIGZpbGw9IndoaXRlIiBzdHlsZT0iZmlsbDp3aGl0ZTtmaWxsLW9wYWNpdHk6MTsiLz4KPC9zdmc+Cg==");
  width: 18px;
  height: 18px;
  background-color: #333;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 50%;
  border-radius: 100%;
  display: inline-block;
  left: 0;
  top: 6px;
}
.blog-single-details .content-wrapper .slider-section {
  padding: 0;
}
@media (max-width: 991px) {
  .blog-single-details .content-wrapper {
    gap: 30px;
  }
}
.blog-single-details .line {
  width: 100%;
  height: 1px;
  background-color: rgba(217, 217, 217, 0.5);
  margin: 30px auto;
}
.blog-single-details .post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid rgba(217, 217, 217, 0.5);
  border-bottom: 1px solid rgba(217, 217, 217, 0.5);
  padding: 30px 0;
}
.blog-single-details .post-share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.blog-single-details .post-share ul li {
  padding: 0;
}
.blog-single-details .post-share ul li::before {
  display: none;
}
.blog-single-details .post-share ul li a {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  color: #696969;
  border: 1px solid #696969;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
.blog-single-details .post-share ul li a:hover {
  background-color: #0ba1f5;
  color: #ffffff;
  border-color: #0ba1f5;
}
.blog-single-details .post-share .back-to-blog a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.blog-single-details .post-share .back-to-blog a img {
  width: 24px;
}
.blog-single-details .tags {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.blog-single-details .tags a {
  background: #f3f3f3;
  border-radius: 50px;
  color: #666;
  display: block;
  text-decoration: none;
  line-height: normal;
  padding: 10px 20px;
  font-weight: normal;
  font-size: 14px;
}

.blog-section {
  padding: 80px 0;
  width: 100%;
  background-color: #f9f9f9;
}
.blog-section img {
  width: 100%;
}
.blog-section h3 {
  font-size: 30px;
  color: #000000;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 50px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog-section h3 {
    font-size: 26px;
  }
}
.blog-section .blog-slider .blog-item .text-block {
  padding: 30px;
  background-color: #ffffff;
}
.blog-section .blog-slider .blog-item .text-block h4 {
  color: #000000;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 500;
}
.blog-section .blog-slider .blog-item .text-block p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 30px;
}
.blog-section .blog-slider .blog-item .text-block .read_more {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #00193c;
  text-transform: capitalize;
}
@media screen and (max-width: 560px) {
  .blog-section .blog-slider .blog-item .text-block {
    padding: 15px;
  }
}
.blog-section .blog-slider .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.blog-section .blog-slider .owl-nav [class*=owl-] {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background: #ffffff;
  position: absolute;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -webkit-box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) !important;
          box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15) !important;
}
.blog-section .blog-slider .owl-nav [class*=owl-].owl-prev {
  left: -23px;
}
.blog-section .blog-slider .owl-nav [class*=owl-].owl-next {
  right: -23px;
}
.blog-section .blog-slider .owl-nav [class*=owl-] img {
  max-width: 18px;
  width: 100%;
}
.blog-section .blog-slider .owl-nav [class*=owl-]:hover {
  background: #000000;
}
.blog-section .blog-slider .owl-nav [class*=owl-]:hover img {
  -webkit-filter: invert(1);
          filter: invert(1);
}