/* 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  :)  */
.card {
  --bs-card-spacer-y: 1em;
  --bs-card-spacer-x: 1em;
  --bs-card-title-spacer-y: 0.5em;
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0.375rem;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(0.375rem - 1px);
  --bs-card-cap-padding-y: 0.5em;
  --bs-card-cap-padding-x: 1em;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #FFF;
  --bs-card-img-overlay-padding: 1em;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius); }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: var(--bs-card-inner-border-radius);
      border-top-right-radius: var(--bs-card-inner-border-radius); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: var(--bs-card-inner-border-radius);
      border-bottom-left-radius: var(--bs-card-inner-border-radius); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color); }

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y); }

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x); }

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  margin-bottom: 0;
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0; }

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color); }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius); }

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0; }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg); }

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x)); }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius); }

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin); }

@media (min-width: 641px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

#sec-post {
  padding-top: 230px; }
  #sec-post .gradient-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    height: 727px;
    width: 100%;
    background: linear-gradient(197deg, #334D5B 0%, #406B83 32%, #6296B2 64%, #6795AD 100%);
    background-repeat: no-repeat;
    background-position: 0 0; }
  #sec-post .round-wave {
    position: absolute;
    inset: 0;
    top: unset;
    width: 100% !important; }
  #sec-post h2 {
    font-size: 30px; }
    @media screen and (min-width: 1025px) {
      #sec-post h2 {
        font-size: 35px; } }
  #sec-post .entry-meta span {
    font-weight: 500; }
  #sec-post .btn.btn-primary:hover {
    color: #F66868; }
  #sec-post .feature-img {
    width: 100% !important;
    max-height: 735px; }
    #sec-post .feature-img picture,
    #sec-post .feature-img img {
      max-width: 100% !important;
      width: 100% !important;
      object-fit: cover;
      overflow: hidden;
      height: 100% !important;
      max-height: 100% !important; }
  #sec-post hr {
    margin: 0;
    border: 0;
    border-top: 1px solid #CBCBCB;
    margin: 50px 0; }
  #sec-post ol li {
    margin-bottom: 10px;
    line-height: 1.8; }
  @media screen and (max-width: 1025px) {
    #sec-post {
      padding-bottom: 30px; }
      #sec-post .gradient-bg {
        height: 16%; } }
  @media screen and (min-width: 769px) {
    #sec-post {
      padding-top: 320px; } }
  @media screen and (min-width: 1025px) {
    #sec-post .post-title {
      padding: 0 25px; }
    #sec-post hr {
      margin: 110px 0; } }

#sec-related .h4 {
  color: #52BAB7; }

#sec-related .carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -75px;
  display: flex; }
  #sec-related .carousel .owl-nav button {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background-color: #3D6C88;
    border-radius: 50%; }
    #sec-related .carousel .owl-nav button:hover {
      background-color: #52BAB7; }
    #sec-related .carousel .owl-nav button i {
      font-size: 20px;
      font-weight: 400; }

#sec-related .carousel .owl-dots {
  margin-top: 70px; }
  #sec-related .carousel .owl-dots button {
    margin-right: 16px; }
    #sec-related .carousel .owl-dots button span {
      margin: 0;
      width: 20px;
      height: 20px;
      background-color: #FFF;
      border: 1px solid #9F9F9F; }
    #sec-related .carousel .owl-dots button.active span {
      background-color: #E5E5E5; }
    #sec-related .carousel .owl-dots button:last-of-type {
      margin-right: 0; }

#sec-related .card {
  border: none; }
  #sec-related .card .img-wrap {
    max-height: 536px;
    overflow: hidden; }
    #sec-related .card .img-wrap picture, #sec-related .card .img-wrap img {
      border-radius: 5px;
      object-fit: cover;
      object-position: center;
      width: 100%;
      height: 100% !important;
      max-height: 100% !important;
      max-width: 100% !important; }
  #sec-related .card .card-text {
    text-align: left; }
  #sec-related .card .card-body h4 {
    line-height: 1.1; }
    #sec-related .card .card-body h4 a {
      font-size: 23px;
      letter-spacing: 0.18px;
      color: #334D5C;
      font-weight: 700;
      line-height: 1.5; }
      #sec-related .card .card-body h4 a:hover {
        color: #F66868; }
  #sec-related .card .card-body .card-cta {
    padding-bottom: 24px;
    border-bottom: 1px solid #8FB9B9;
    text-align: left; }
  #sec-related .card .card-body .btn {
    color: #334D5C; }
    #sec-related .card .card-body .btn:hover {
      color: #F66868; }
    #sec-related .card .card-body .btn::after {
      font-weight: 600;
      top: 2px; }
  #sec-related .card .card-title {
    margin-top: 0;
    text-align: start; }
  #sec-related .card .posted-on {
    margin-bottom: 0.75em;
    display: block; }
    #sec-related .card .posted-on i {
      font-size: 13px; }
  #sec-related .card .card-footer .btn {
    margin-top: 0; }

@media screen and (min-width: 1025px) {
  #sec-related .img-wrap {
    height: 314px; }
  #sec-related .carousel .owl-nav {
    top: -80px; } }

.entry-meta {
  font-size: 16px;
  margin-top: 0.5em; }

/* Social Share buttons */
.share-btns {
  list-style: none;
  margin: 0;
  padding: 0; }
  .share-btns li {
    display: block;
    cursor: pointer;
    position: relative;
    top: 0;
    transition: 0.2s all linear;
    margin-right: 15px;
    line-height: 1;
    padding: 0;
    margin-bottom: 0; }
    .share-btns li:last-child {
      margin-right: 0; }
    .share-btns li i {
      color: #52BAB7;
      font-size: 30px;
      border-radius: 5px; }
    .share-btns li::before {
      display: none; }
    .share-btns li:hover {
      top: -3px; }
