/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
/* Include bootstrap form styles for tabs and accordians*/
.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        transition: none; } }

.accordion {
  --bs-accordion-color: #212529;
  --bs-accordion-bg: #fff;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: 0.375rem;
  --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: #212529;
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234e6e7d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #abbdc5;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(87, 122, 139, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: #4e6e7d;
  --bs-accordion-active-bg: #eef2f3; }

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition); }
  @media (prefers-reduced-motion: reduce) {
    .accordion-button {
      transition: none; } }
  .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: var(--bs-accordion-active-bg);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color); }
    .accordion-button:not(.collapsed)::after {
      background-image: var(--bs-accordion-btn-active-icon);
      transform: var(--bs-accordion-btn-icon-transform); }
  .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition); }
    @media (prefers-reduced-motion: reduce) {
      .accordion-button::after {
        transition: none; } }
  .accordion-button:hover {
    z-index: 2; }
  .accordion-button:focus {
    z-index: 3;
    border-color: var(--bs-accordion-btn-focus-border-color);
    outline: 0;
    box-shadow: var(--bs-accordion-btn-focus-box-shadow); }

.accordion-header {
  margin-bottom: 0; }

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color); }
  .accordion-item:first-of-type {
    border-top-left-radius: var(--bs-accordion-border-radius);
    border-top-right-radius: var(--bs-accordion-border-radius); }
    .accordion-item:first-of-type .accordion-button {
      border-top-left-radius: var(--bs-accordion-inner-border-radius);
      border-top-right-radius: var(--bs-accordion-inner-border-radius); }
  .accordion-item:not(:first-of-type) {
    border-top: 0; }
  .accordion-item:last-of-type {
    border-bottom-right-radius: var(--bs-accordion-border-radius);
    border-bottom-left-radius: var(--bs-accordion-border-radius); }
    .accordion-item:last-of-type .accordion-button.collapsed {
      border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
      border-bottom-left-radius: var(--bs-accordion-inner-border-radius); }
    .accordion-item:last-of-type .accordion-collapse {
      border-bottom-right-radius: var(--bs-accordion-border-radius);
      border-bottom-left-radius: var(--bs-accordion-border-radius); }

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x); }

.accordion-flush .accordion-collapse {
  border-width: 0; }

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }
  .accordion-flush .accordion-item:first-child {
    border-top: 0; }
  .accordion-flush .accordion-item:last-child {
    border-bottom: 0; }
  .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 0; }

#hero .row {
  min-height: 100vh; }
  @media screen and (min-width: 1241px) {
    #hero .row {
      min-height: 814px;
      height: 100vh; } }
  #hero .row .banner-content {
    padding-top: 200px;
    padding-bottom: 50px; }
    @media screen and (min-width: 769px) {
      #hero .row .banner-content {
        padding-top: 200px;
        padding-bottom: 75px; } }
    @media screen and (min-width: 1025px) {
      #hero .row .banner-content {
        padding-top: 200px;
        padding-bottom: 75px; } }
    #hero .row .banner-content h1 {
      color: black; }
    #hero .row .banner-content .h6 {
      color: #53646c;
      font-family: "Open Sans", sans-serif; }

#hero .bg-cover {
  position: absolute;
  object-position: center;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover; }
  #hero .bg-cover.top img {
    object-position: top; }

#services .intro-content h2 {
  color: black; }

#services .intro-content p {
  color: #575757; }

#services #service-slider .service-img-wrap {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden; }
  #services #service-slider .service-img-wrap .service-img {
    height: 480px;
    max-height: 480px;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover; }
    @media (min-width: 1025px) {
      #services #service-slider .service-img-wrap .service-img {
        height: 380px;
        max-height: 380px; } }
    @media (min-width: 1241px) {
      #services #service-slider .service-img-wrap .service-img {
        height: 400px;
        max-height: 400px; } }
    @media (min-width: 1393px) {
      #services #service-slider .service-img-wrap .service-img {
        height: 450px;
        max-height: 450px; } }
  #services #service-slider .service-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: transparent linear-gradient(180deg, #adadad45 0%, #121212bc 100%) 0% 0% no-repeat padding-box;
    z-index: 1; }
  #services #service-slider .service-img-wrap .content {
    width: 100%;
    padding: 2rem 5rem 2rem 3rem;
    position: absolute;
    bottom: 0;
    color: #f5eee7;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.98px;
    z-index: 2;
    line-height: 24px; }
    @media (min-width: 769px) {
      #services #service-slider .service-img-wrap .content {
        padding: 0;
        max-width: 200px;
        margin: 2rem 5rem 2rem 3rem; } }
    #services #service-slider .service-img-wrap .content i {
      opacity: 0;
      transition: all 300ms ease-in-out;
      color: #f5eee7; }
  #services #service-slider .service-img-wrap:hover .content i {
    opacity: 1; }

#services #service-slider .owl-nav {
  margin: 1rem 0; }
  #services #service-slider .owl-nav button {
    margin: 0 6px;
    background: transparent; }
    #services #service-slider .owl-nav button i {
      color: #567b8b;
      font-size: 16px; }

#services #service-slider .owl-dots button span {
  background: rgba(26, 145, 109, 0.3); }

#services #service-slider .owl-dots button.active span {
  background: rgba(26, 145, 109, 0.6); }

#about-us {
  position: relative;
  padding: 0 0 75px 0; }
  @media (min-width: 1640px) {
    #about-us {
      padding: 100px 0 75px 0; } }
  #about-us .section-title {
    font-family: "Playfair Display", serif;
    padding: 0;
    text-align: center;
    width: 100%;
    /* or fixed width */
    overflow: hidden; }
    #about-us .section-title p {
      color: rgba(26, 145, 109, 0.15);
      line-height: 1.2;
      font-size: clamp(64px, 16vw, 200px);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    @media (min-width: 1241px) {
      #about-us .section-title {
        position: absolute;
        transform: translatex(-50%) translateY(-52%) rotate(-90deg);
        top: 50%;
        width: 100%;
        left: 0%; }
        #about-us .section-title p {
          font-size: clamp(100px, 10vw, 120px);
          line-height: 1.2; } }
    @media (min-width: 1393px) {
      #about-us .section-title p {
        font-size: clamp(100px, 14vw, 165px);
        line-height: 1.2; } }
    @media (min-width: 1536px) {
      #about-us .section-title p {
        font-size: clamp(100px, 11vw, 175px); } }
    @media (min-width: 1640px) {
      #about-us .section-title {
        left: 0%; }
        #about-us .section-title p {
          font-size: clamp(100px, 13vw, 230px);
          line-height: 1.2; } }
    @media (min-width: 1740px) {
      #about-us .section-title {
        left: -3%; } }
    @media (min-width: 1840px) {
      #about-us .section-title {
        left: -6%; } }
  #about-us .img-wrapper {
    position: relative;
    border-radius: 5px;
    overflow: hidden; }
    #about-us .img-wrapper .bottom-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(21, 53, 75, 0.43);
      padding: 1.5rem; }
      #about-us .img-wrapper .bottom-content .h6 {
        color: #fcf7f2;
        margin-bottom: 10px; }
      #about-us .img-wrapper .bottom-content .btn-arrow {
        color: #fcf7f2;
        font-size: 16px;
        letter-spacing: 1.76px;
        font-weight: 600;
        transition: all ease-in-out 300ms;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
        #about-us .img-wrapper .bottom-content .btn-arrow i {
          transition: all ease-in-out 300ms;
          padding-left: 8px;
          font-size: 22px;
          position: relative;
          right: 0; }
        #about-us .img-wrapper .bottom-content .btn-arrow:hover i {
          right: -5px; }
  #about-us .content h3 {
    color: black; }
  #about-us .content .h4 {
    color: #577a8b; }

#testimonials {
  background-color: #fafafa;
  box-shadow: 0px 23px 16px #0000001a;
  padding: 100px 0 100px 0;
  position: relative;
  color: black;
  margin-top: 0; }
  @media (min-width: 641px) {
    #testimonials {
      margin-top: 75px;
      padding: 150px 0 100px 0; } }
  @media (min-width: 1536px) {
    #testimonials {
      margin-top: 150px; } }
  #testimonials i {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -50px;
    color: rgba(0, 0, 0, 0.04);
    font-size: 150px; }
    @media (min-width: 641px) {
      #testimonials i {
        font-size: 330px;
        top: -100px; } }
  #testimonials .h3 {
    color: black; }
  #testimonials .h4 {
    color: black;
    line-height: 1.3; }

#process {
  position: relative; }
  #process .section-title {
    font-family: "Playfair Display", serif;
    padding: 0;
    width: 100%;
    /* or fixed width */
    overflow: hidden; }
    #process .section-title p {
      color: rgba(26, 145, 109, 0.15);
      line-height: 0.9;
      font-size: clamp(64px, 21vw, 200px);
      overflow: hidden;
      text-overflow: ellipsis; }
      @media (min-width: 641px) {
        #process .section-title p {
          line-height: 0.9;
          font-size: clamp(55px, 16vw, 175px);
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          text-align: center; } }
      @media (min-width: 1025px) {
        #process .section-title p {
          font-size: clamp(55px, 13vw, 175px); } }
      @media (min-width: 1241px) {
        #process .section-title p {
          font-size: clamp(55px, 11vw, 160px); } }
      @media (min-width: 1393px) {
        #process .section-title p {
          font-size: clamp(55px, 15vw, 175px); } }
  #process #process-slider .owl-stage {
    display: flex; }
  #process #process-slider .item {
    height: 100%;
    padding: 2rem 0.5rem; }
    @media (min-width: 641px) {
      #process #process-slider .item {
        padding: 2rem 0.5rem; } }
    #process #process-slider .item .process-card {
      height: 100%;
      display: flex;
      flex-direction: column;
      width: 100%;
      background-color: white;
      box-shadow: 0px 13px 16px #00000024;
      padding: 3rem 2rem; }
      #process #process-slider .item .process-card i {
        color: #b9ddd2;
        font-size: 80px; }
      #process #process-slider .item .process-card h4 {
        color: black;
        margin-bottom: 12px; }
      #process #process-slider .item .process-card .h5 {
        margin-bottom: 16px;
        font-size: clamp(1.4375rem, calc( 23px + (30 - 23) * (( 100vw - 320px ) / (1920 - 320))), 1.875rem); }
      #process #process-slider .item .process-card p {
        font-size: 16px;
        line-height: 1.6; }
        #process #process-slider .item .process-card p:first-of-type {
          margin-bottom: 1rem; }
  #process #process-slider .owl-nav {
    margin-bottom: 1rem; }
    #process #process-slider .owl-nav button {
      background: transparent; }
      #process #process-slider .owl-nav button i {
        color: #567b8b;
        font-size: 16px; }
  #process #process-slider .owl-dots button span {
    background: rgba(26, 145, 109, 0.3); }
  #process #process-slider .owl-dots button.active span {
    background: rgba(26, 145, 109, 0.6); }
  #process .bottom-content .h6 {
    color: black; }
  #process .bottom-content .btn-arrow {
    font-size: 16px;
    letter-spacing: 1.76px;
    font-weight: 600;
    color: #1a916d;
    transition: all ease-in-out 300ms;
    display: flex;
    justify-content: center;
    align-items: center; }
    #process .bottom-content .btn-arrow i {
      transition: all ease-in-out 300ms;
      padding-left: 8px;
      font-size: 28px;
      position: relative;
      right: 0; }
    #process .bottom-content .btn-arrow:hover i {
      right: -10px; }

#gallery {
  position: relative; }
  #gallery h3 {
    color: black; }
  #gallery .section-title {
    font-family: "Playfair Display", serif;
    padding: 0;
    width: 100%;
    /* or fixed width */
    overflow: hidden; }
    #gallery .section-title p {
      color: rgba(26, 145, 109, 0.15);
      font-size: clamp(64px, 30vw, 235px);
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 0.9; }
      @media (min-width: 641px) {
        #gallery .section-title p {
          font-size: clamp(55px, 18vw, 175px);
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis; } }
      @media (min-width: 769px) {
        #gallery .section-title p {
          font-size: clamp(55px, 11vw, 145px); } }
      @media (min-width: 1241px) {
        #gallery .section-title p {
          font-size: clamp(55px, 11vw, 175px); } }
      @media (min-width: 1393px) {
        #gallery .section-title p {
          font-size: clamp(55px, 11vw, 175px); } }
      @media (min-width: 1437px) {
        #gallery .section-title p {
          font-size: clamp(55px, 11vw, 190px); } }
      @media (min-width: 1601px) {
        #gallery .section-title p {
          font-size: clamp(55px, 13vw, 200px); } }
  #gallery #gallery-slider {
    position: relative;
    overflow-x: hidden; }
    #gallery #gallery-slider .gallery-img {
      height: 480px;
      max-height: 480px;
      width: 100% !important;
      max-width: 100% !important;
      object-fit: cover;
      border-radius: 5px; }
      @media (min-width: 769px) {
        #gallery #gallery-slider .gallery-img {
          height: 550px;
          max-height: 550px; } }
      @media (min-width: 1025px) {
        #gallery #gallery-slider .gallery-img {
          height: 580px;
          max-height: 580px; } }
      @media (min-width: 1241px) {
        #gallery #gallery-slider .gallery-img {
          height: 550px;
          max-height: 550px; } }
      @media (min-width: 1393px) {
        #gallery #gallery-slider .gallery-img {
          height: 630px;
          max-height: 630px; } }
    #gallery #gallery-slider .owl-nav {
      margin: 1rem 0; }
      #gallery #gallery-slider .owl-nav button {
        margin: 0 6px;
        background: transparent; }
        #gallery #gallery-slider .owl-nav button i {
          color: #567b8b;
          font-size: 16px; }
      @media (min-width: 936px) {
        #gallery #gallery-slider .owl-nav {
          margin: 0;
          position: absolute;
          left: 0;
          right: 0;
          width: 100%;
          top: calc(50% - 50px);
          display: flex;
          justify-content: space-between; } }
  @media (min-width: 936px) and (min-width: 1025px) {
    #gallery #gallery-slider .owl-nav {
      top: calc(50% - 60px); } }
      @media (min-width: 936px) {
          #gallery #gallery-slider .owl-nav button {
            padding: 1.5rem !important;
            border-radius: 0;
            background: rgba(245, 238, 231, 0.62);
            display: flex;
            justify-content: space-between;
            margin: 0; } }
    @media (min-width: 936px) and (min-width: 1025px) {
      #gallery #gallery-slider .owl-nav button {
        width: 100px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center; } }
      @media (min-width: 936px) {
            #gallery #gallery-slider .owl-nav button i {
              color: #000000;
              font-size: 26px; } }
    #gallery #gallery-slider .owl-dots {
      margin-top: 1rem; }
      #gallery #gallery-slider .owl-dots button span {
        background: rgba(26, 145, 109, 0.3); }
      #gallery #gallery-slider .owl-dots button.active span {
        background: rgba(26, 145, 109, 0.6); }
  #gallery .bottom-btn {
    position: relative; }
    @media (min-width: 1241px) {
      #gallery .bottom-btn::before {
        content: "";
        background: rgba(139, 103, 87, 0.05);
        height: 135px;
        width: 100%;
        top: -100px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 0;
        position: absolute; } }

#faqs h3 {
  color: black; }

#faqs .btn-arrow {
  font-size: 16px;
  letter-spacing: 1.76px;
  font-weight: 600;
  color: #1a916d;
  transition: all ease-in-out 300ms;
  display: flex;
  align-items: center; }
  #faqs .btn-arrow i {
    transition: all ease-in-out 300ms;
    padding-left: 8px;
    font-size: 28px;
    position: relative;
    right: 0; }
  #faqs .btn-arrow:hover i {
    right: -10px; }

#faqs .section-title {
  font-family: "Playfair Display", serif;
  padding: 0;
  width: 100%;
  /* or fixed width */
  overflow: hidden; }
  #faqs .section-title p {
    color: rgba(26, 145, 109, 0.15);
    font-size: clamp(64px, 19vw, 200px);
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    line-height: 0.9; }
    @media (min-width: 641px) {
      #faqs .section-title p {
        font-size: clamp(55px, 12vw, 175px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; } }
    @media (min-width: 1393px) {
      #faqs .section-title p {
        font-size: clamp(55px, 15vw, 175px); } }

@media (min-width: 1025px) {
  #faqs .faqs-box {
    box-shadow: 0px 23px 16px #0000001a;
    background-color: #fafafa; } }

#faqs .faqs-box .accordion-item {
  border: 0;
  border-bottom: 1px solid #bababa;
  background-color: transparent;
  margin: 0;
  border-radius: 0; }
  #faqs .faqs-box .accordion-item .accordion-header button {
    padding: 0;
    font-size: 18px;
    color: #575757;
    border-radius: 0;
    border: 0;
    background-color: transparent;
    padding: 1.25rem 1.5rem 1.25rem 0;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: flex-start; }
    #faqs .faqs-box .accordion-item .accordion-header button i {
      margin-right: 1rem;
      color: #577a8b; }
    #faqs .faqs-box .accordion-item .accordion-header button::after {
      display: none; }
    #faqs .faqs-box .accordion-item .accordion-header button::before {
      content: "\e90f";
      font-family: "standard-icons" !important;
      color: #1a916d;
      font-size: 21px;
      margin-right: 1rem;
      padding-top: 3px; }
  #faqs .faqs-box .accordion-item .accordion-body {
    padding: 0 1.5rem 0 2.5rem; }
    #faqs .faqs-box .accordion-item .accordion-body p {
      color: #575757;
      margin: 0 0 2rem 0;
      font-size: 18px; }

#blogs .intro-content h2 {
  color: black; }

#blogs #blog-slider .owl-stage {
  height: 100%;
  display: flex; }
  #blogs #blog-slider .owl-stage .item {
    height: 100%; }

#blogs #blog-slider .card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 0;
  border-bottom: 2px solid #f0e8e1;
  border-radius: 0;
  margin-bottom: 0 !important; }
  #blogs #blog-slider .card .img-wrap {
    height: 240px;
    overflow: hidden; }
    #blogs #blog-slider .card .img-wrap picture,
    #blogs #blog-slider .card .img-wrap img {
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 250px;
      max-width: 100% !important;
      transition: all 0.2s linear; }
    #blogs #blog-slider .card .img-wrap:hover picture,
    #blogs #blog-slider .card .img-wrap:hover img {
      transform: scale(1.05, 1.05);
      transition: all 0.2s linear; }
  #blogs #blog-slider .card .card-body {
    padding: 1.5rem 1rem 1.5rem 1rem; }
  #blogs #blog-slider .card .card-title {
    margin-top: 0;
    margin-bottom: 1rem; }
    #blogs #blog-slider .card .card-title a {
      font-family: "Playfair Display", serif;
      font-size: 18px;
      color: black; }
      #blogs #blog-slider .card .card-title a:hover {
        color: #577a8b;
        text-decoration: underline; }
  #blogs #blog-slider .card .card-text {
    font-size: 16px;
    line-height: 1.65; }
  #blogs #blog-slider .card .entry-meta {
    margin-bottom: 0.75rem; }
    #blogs #blog-slider .card .entry-meta span {
      font-size: 14px; }
  #blogs #blog-slider .card .read-more {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1.76px;
    color: #1a916d;
    font-weight: 600;
    display: block;
    margin-top: auto;
    padding: 1.5rem 1rem 1.5rem 1rem; }
    #blogs #blog-slider .card .read-more:hover {
      color: #577a8b;
      text-decoration: underline; }

#blogs #blog-slider .owl-nav {
  display: flex;
  justify-content: space-between; }
  #blogs #blog-slider .owl-nav.disabled {
    display: none; }
  #blogs #blog-slider .owl-nav button {
    display: flex;
    align-items: center;
    background: transparent;
    outline: 0;
    box-shadow: none;
    color: #577a8b; }
    #blogs #blog-slider .owl-nav button.disabled {
      color: #577a8b; }
    #blogs #blog-slider .owl-nav button span {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 1.76px; }
    #blogs #blog-slider .owl-nav button i {
      font-size: 23px; }
    #blogs #blog-slider .owl-nav button.owl-prev span {
      margin-left: 0.5rem; }
    #blogs #blog-slider .owl-nav button.owl-next span {
      margin-right: 0.5rem; }
