/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  position: relative;

}

.extra-margin {
  margin: 0;
}

.region-content {
  padding: 0;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  font-display: swap;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #012970;
}

h2 {
  color: #444444;
  font-size: 30px;
}

/*--------------------------------------------------------------
Section feature 
--------------------------------------------------------------*/
.paragraph--type--feature-section {
  margin: 5rem auto 12rem auto;

  @media (max-width:1024px) {
    margin: 5rem auto;
  }

  .field--name-field-feature-main-heading {
    margin: 3rem auto;

    h3 {
      color: #012970;
      font-weight: 700;
      font-size: clamp(1.7rem, 2vw, 2rem);
      margin-bottom: 1.2rem;
      text-align: center;
    }
  }

  .feature-section__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;

    .field--name-field-feature-image img {
      aspect-ratio: 16 / 9;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .field--name-field-feature-center-cards,
    .field--name-field-feature-right-cards {
      .field--item {
        margin-bottom: 1rem;

        .potential-feature {
          display: flex;
          gap: .5rem;
        }

        .value-icon i {
          font-size: 44px;
          line-height: 44px;
          color: #0245bc;
          margin-right: 15px;
        }

        .field--name-field-stat-body {
          margin: 0;

          h4 {
            font-size: clamp(1.11rem, 1.2vw, 1.3rem);
            font-weight: 700;
            margin: 0 0 10px 0;
            color: #012970;
          }

          p {
            font-size: 15px;
            color: #848484;
          }
        }
      }

    }
  }
}

/*--------------------------------------------------------------
Potention section 
--------------------------------------------------------------*/
.paragraph--type--potential-features {
  margin: 6rem auto 12rem auto;

  @media (max-width: 1024px) {
    margin: 5rem auto;
  }

  .field--name-field-potential-main-heading {
    text-align: center;
    margin-bottom: 3rem;

    h3 {
      font-size: clamp(1.1rem, 1.3vw, 1.3rem);
      letter-spacing: 1px;
      font-weight: 700;
      margin: 0;
      color: #4154f1;
      text-transform: uppercase;
    }

    h2 {
      margin: 10px 0 0 0;
      padding: 0;
      font-size: clamp(1.5rem, 2vw, 2rem);
      line-height: 42px;
      font-weight: 700;
      color: #012970;
    }
  }

  .potential-feature-image-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    gap: 1rem;
  }

  .field--name-field-potential-image img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .potential-feature-text {
    display: flex;
    justify-content: space-between;
    gap: 1rem;

    @media (max-width: 1024px) {
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
    }

    .field--name-field-potential-center-item,
    .field--name-field-potential-right-item {
      @media (max-width:1024px) {
        width: 100%;
      }

      .field--item {
        margin-bottom: 1rem;

        .potential-feature {
          display: flex;
          gap: .5rem;
          align-items: center;
          padding: 24px 20px;
          box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
          transition: 0.3s;
          height: 100%;
          cursor: pointer;

          &:hover {
            .value-icon i {
              background: #4154f1;
              color: #fff;
            }
          }
        }

        .value-icon i {
          line-height: 0;
          background: #ecf3ff;
          padding: 4px;
          margin-right: 10px;
          font-size: 24px;
          border-radius: 3px;
          transition: 0.3s;
        }

        .value-content .field--name-field-stat-body {
          margin: 0;

          h3 {
            font-size: 18px;
            color: #012970;
            font-weight: 700;
            margin: 0;

          }
        }
      }

    }
  }
}


/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #012970;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;


  @media (max-width: 992px) {
    .breadcrumbs {
      margin-top: 57px;
    }
  }

  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
  }

  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
  }

  .breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
  }

  .breadcrumbs ol a:hover {
    text-decoration: underline;
  }

  .breadcrumbs ol li+li {
    padding-left: 10px;
  }

  .breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6 !important;
    content: "/";
  }
}

/*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;


  i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
  }

  &:hover {
    background: #6776f4;
    color: #fff;
  }

  &.active {
    visibility: visible;
    opacity: 1;
  }
}

/*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
#toolbar-administration {
  .toolbar-bar {
    z-index: 999;
  }
}

#header.header-scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 997;
}


.header-hero-combined {
  background: url("../images/home-background.png") no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  width: 100%;

  .field--name-body h2 {
    font-size: clamp(2rem, 2vh, 2.5rem);
    letter-spacing: 0;
    font-weight: 700;
    color: #012970;
    font-family: "Nunito", sans-serif;
    margin: 0;
  }

  .field--name-field-logo-img {
    img {
      width: auto;
      height: 45px;
      max-width: 100%;
      object-fit: contain;
      aspect-ratio: auto;
      vertical-align: unset;
    }
  }

  /* NAVBAR BASE  */

  .navbar {
    padding: 0;
  }

  ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
    align-items: center;
  }

  li {
    position: relative;
  }

  .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 30px;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #013289;
    white-space: nowrap;
    transition: color 0.3s ease;
  }


  .nav-link.active {
    color: #4154f1;
    position: relative;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: inherit;
  }
}

/* Mobile */
.navbar.navbar-mobile {
  position: fixed;
  inset: 0;
  background: rgba(1, 22, 61, 0.9);


  ul {
    flex-direction: column;
    background: #fff;
    margin: 60px 15px;
    padding: 20px;
    border-radius: 8px;
  }
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #012970;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 700px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }

  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }

  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }

  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #4154f1;
  }

  .navbar-mobile .dropdown>.dropdown-active {
    display: block;
  }
}

/* Navigation header menues mobile*/
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;


  .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }

  a,
  a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
  }

  a:hover,
  .active,
  li:hover>a {
    color: #4154f1;
  }

  .getstarted,
  .getstarted:focus {
    margin: 15px;
  }

  .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  .dropdown ul li {
    min-width: 200px;
  }

  .dropdown ul a {
    padding: 10px 20px;
  }

  .dropdown ul a i {
    font-size: 12px;
  }

  .dropdown ul a:hover,
  .dropdown ul .active:hover,
  .dropdown ul li:hover>a {
    color: #4154f1;
  }

  .dropdown>.dropdown-active {
    display: block;
  }
}

/*--------------------------------------------------------------
  # Counts & stat section
  --------------------------------------------------------------*/
.paragraph--type--stat-section {
  margin: 5rem auto 12rem auto;

  @media (max-width:776px) {
    margin: 5rem auto;
  }

  .field--name-field-stats-main-heading {
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    letter-spacing: 1px;
    font-weight: 700;
    color: #4154f1;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;

    @media (max-width:776px) {
      margin-bottom: 2rem;
    }
  }

  .field--name-field-stats-section-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }


  .paragraph--type--stat-item {
    display: flex;
    padding: 1.5rem 3rem;
    width: 100%;
    background: #fff;
    box-shadow: 0px 0 1.8rem rgba(1, 41, 112, 0.08);
    gap: 1rem;
    height: 100%;

    @media (max-width:776px) {
      text-align: center;
      justify-content: center;

    }

    .value-icon {
      font-size: 2.8rem;

      .bi-emoji-smile {
        color: #4e73df;
      }

      .bi-people {
        color: #e83e8c;
      }

      .bi-journal-text {
        color: #fd7e14;
      }

      .bi-headset {
        color: #28a745;
      }
    }

    .field--name-field-stat-body {
      text-align: center;

      h2 {
        font-size: 2.2rem;
        display: block;
        font-weight: 600;
        color: #0b198f;
      }

      p {
        font-size: 1rem;
        font-weight: 400;
      }
    }
  }

  :nth-child(1) {
    .value-icon i {
      color: #4e73df;
    }
  }

  :nth-child(2) {
    .value-icon i {
      color: #fd7e14;
    }
  }

  :nth-child(3) {
    .value-icon i {
      color: #28a745;
    }
  }

  :nth-child(4) {
    .value-icon i {
      color: #e83e8c;
    }
  }

}

/*--------------------------------------------------------------
  # Portfolio
  --------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  background: white;
  border-radius: 50px;
  padding: 2px 15px;


  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #444444;
    margin: 0 4px 8px 4px;
    transition: 0.3s;
    border-radius: 50px;
    border: 1px solid #fff;
  }

  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #4154f1;
    border-color: #4154f1;
  }

  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }

  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
  }

  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }

  .portfolio .portfolio-wrap img {
    transition: 1s;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid rgba(1, 41, 112, 0.2);
    border-left: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }

  .portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid rgba(1, 41, 112, 0.2);
    border-right: 3px solid rgba(1, 41, 112, 0.2);
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #012970;
    font-weight: 700;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    color: #012970;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
  }

  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    background: #4154f1;
    margin: 10px 2px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .portfolio .portfolio-wrap .portfolio-links a i {
    font-size: 24px;
    line-height: 0;
  }

  .portfolio .portfolio-wrap .portfolio-links a:hover {
    background: #5969f3;
  }

  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
  }

  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
  }

  .portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
  }
}

/*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;


  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }

  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }

  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
  }

  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
  }

  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  }

  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }

  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }

  .portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
  }

  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }

  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .portfolio-details .portfolio-description p {
    padding: 0;
  }
}

/*--------------------------------------------------------------
  # Recent Blog Posts
  --------------------------------------------------------------*/
.recent-blog-posts .post-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  padding: 30px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-blog-posts .post-box .post-img {
  overflow: hidden;
  margin: -30px -30px 15px -30px;
  position: relative;
}

.recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-box .post-date {
  font-size: 16px;
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
  display: block;
  margin-bottom: 10px;
}

.recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #012970;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}

.recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-blog-posts .post-box:hover .post-title {
  color: #4154f1;
}

.recent-blog-posts .post-box:hover .post-img img {
  transform: rotate(6deg) scale(1.2);
}

/*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
.paragraph--type--contact-section {
  margin: 5rem auto 12rem auto;

  @media (max-width: 1024px) {
    margin: 5rem auto;
  }

  .field--name-field-contact-main-heading {
    margin-bottom: clamp(2.5rem, 3vw, 3rem);
    text-align: center;

    h3 {
      font-size: clamp(1.1rem, 1.3vw, 1.3rem);
      letter-spacing: 1px;
      font-weight: 700;
      margin: 0;
      color: #4154f1;
      text-transform: uppercase;
    }
  }

  .contact-section-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.7rem;
  }

  .field--name-field-right-side {
    .paragraph--type--contact-form {
      color: #444444;
      background: #fafbff;
      padding: 1.8rem;

      .field--name-field-contact-form {
        display: flex;
        align-items: center;
      }
    }

    .field--item {
      height: 100%;
    }

    .paragraph--type--contact-form {
      height: 100%;
    }
  }

  .field--name-field-left-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;



    .contact-us {
      color: #444444;
      background: #fafbff;
      padding: 1.8rem;
      height: 100%;

      @media (max-width: 1024px) {
        text-align: center;
      }

      .icon i {
        font-size: 38px;
        line-height: 0;
        color: #4154f1;
      }

      h3 {
        font-size: clamp(1.1rem, 1.3vw, 1.3rem);
        color: #012970;
        font-weight: 700;
        margin: 20px 0 10px 0;
      }

      p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
      }
    }
  }

}

.paragraph--type--contact-form {
  .form-control:focus {
    outline: none;
    border-color: #4f6df5;
    box-shadow: 0 0 0 3px rgba(79, 109, 245, 0.15);
  }
}

/*--------------------------------------------------------------
  # Blog
  --------------------------------------------------------------*/
.view-blogs {
  margin-top: 4rem;
}

.blog,
.node--type-article {
  padding: 40px 0 20px 0;

  .entry-title {
    font-size: 28px;
    font-weight: bold;
    margin: 1.5rem 0;

    .field--name-title {
      color: #4154f1;
      transition: 0.3s;

      &:hover {
        opacity: 0.6;
      }
    }
  }

  .entry-meta {
    margin: 2rem auto;
    padding: 0;
    color: #4084fd;

    .node__submitted {
      display: flex;
      gap: 2rem;

      .author-detail {
        display: flex;
        gap: 0.5rem;
        align-items: center;

        i {
          font-size: 16px;
          margin-right: 8px;
          line-height: 0;
        }

        a {
          color: #777777;
          font-size: 14px;
          display: inline-block;
          line-height: 1;
        }
      }
    }

  }


  .field--name-body {

    h1,
    h2,
    h3,
    h4 {
      color: #012970;
    }

    h3 {
      font-weight: 600;
    }

    p {
      color: #222222;
      line-height: 1.6;
      margin-bottom: 0;
      font-weight: 500;
      font-size: 20px;
    }
  }

  .node__links {
    margin: 2rem auto;

    ul li {
      -moz-text-align-last: right;
      text-align-last: right;


      a {
        display: inline-block;
        background: #4154f1;
        color: #fff;
        padding: 6px 20px;
        transition: 0.3s;
        font-size: 14px;
        border-radius: 4px;
      }

      a:hover {
        background: #5969f3;
      }
    }
  }

  .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;

    i {
      color: #0d64fd;
      display: inline;
    }

    a {
      color: #013289;
      transition: 0.3s;

      &:hover {
        color: #4154f1;
      }
    }

    .cats {
      list-style: none;
      display: inline;
      padding: 0 20px 0 0;
      font-size: 14px;

      li {
        display: inline-block;
      }
    }

    .tags {
      list-style: none;
      display: inline;
      padding: 0;
      font-size: 14px;

      li {
        display: inline-block;
      }
    }

    li+li::before {
      padding-right: 6px;
      color: #6c757d;
      content: ",";
    }

    .share {
      font-size: 16px;
    }
  }

  .entry-single {
    margin-bottom: 30px;
  }

  .blog-author {
    padding: 1.5rem 2rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);

    img {
      width: 120px;
      margin-right: 20px;
    }

    h4 {
      font-weight: 600;
      font-size: 22px;
      margin-bottom: 0px;
      padding: 0;
      color: #012970;
    }

    .social-links {
      margin: 0 10px 10px 0;

      a {
        color: rgba(1, 41, 112, 0.5);
        margin-right: 5px;
      }
    }

    p {
      font-style: italic;
      color: #b7b7b7;
    }
  }

  .blog-comments {
    margin-bottom: 30px;


    .comments-count {
      font-weight: bold;
    }

    .comment {
      margin-top: 30px;
      position: relative;
    }

    .comment-img {
      margin-right: 14px;
    }

    .comment-img img {
      width: 60px;
    }

    .comment h5 {
      font-size: 16px;
      margin-bottom: 2px;
    }

    .comment h5 a {
      font-weight: bold;
      color: #444444;
      transition: 0.3s;
    }

    .comment h5 a:hover {
      color: #4154f1;
    }

    .comment h5 .reply {
      padding-left: 10px;
      color: #012970;
    }

    .comment h5 .reply i {
      font-size: 20px;
    }

    .comment time {
      display: block;
      font-size: 14px;
      color: #013ca3;
      margin-bottom: 5px;
    }

    .comment.comment-reply {
      padding-left: 40px;
    }

    .reply-form {
      margin-top: 30px;
      padding: 30px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .reply-form h4 {
      font-weight: bold;
      font-size: 22px;
    }

    .reply-form p {
      font-size: 14px;
    }

    .reply-form input {
      border-radius: 4px;
      padding: 10px 10px;
      font-size: 14px;
    }

    .reply-form input:focus {
      box-shadow: none;
      border-color: #a0aaf8;
    }

    .reply-form textarea {
      border-radius: 4px;
      padding: 10px 10px;
      font-size: 14px;
    }

    .reply-form textarea:focus {
      box-shadow: none;
      border-color: #a0aaf8;
    }

    .reply-form .form-group {
      margin-bottom: 25px;
    }

    .reply-form .btn-primary {
      border-radius: 4px;
      padding: 10px 20px;
      border: 0;
      background-color: #012970;
    }

    .reply-form .btn-primary:hover {
      background-color: #013289;
    }
  }

  .blog-pagination {
    color: #024ed5;


    ul {
      display: flex;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    li {
      margin: 0 5px;
      transition: 0.3s;
    }

    li a {
      color: #012970;
      padding: 7px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    li.active,
    li:hover {
      background: #4154f1;
    }

    li.active a,
    li:hover a {
      color: #fff;
    }
  }

  .blog .sidebar {
    padding: 30px;
    margin: 0 0 60px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);


    .sidebar-title {
      font-size: 20px;
      font-weight: 700;
      padding: 0 0 0 0;
      margin: 0 0 15px 0;
      color: #012970;
      position: relative;
    }

    .sidebar-item {
      margin-bottom: 30px;
    }

    .search-form form {
      background: #fff;
      border: 1px solid #ddd;
      padding: 3px 10px;
      position: relative;
    }

    .search-form form input[type=text] {
      border: 0;
      padding: 4px;
      border-radius: 4px;
      width: calc(100% - 40px);
    }

    .search-form form button {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      border: 0;
      background: none;
      font-size: 16px;
      padding: 0 15px;
      margin: -1px;
      background: #4154f1;
      color: #fff;
      transition: 0.3s;
      border-radius: 0 4px 4px 0;
      line-height: 0;
    }

    .search-form form button i {
      line-height: 0;
    }

    .search-form form button:hover {
      background: #5465f2;
    }

    .categories ul {
      list-style: none;
      padding: 0;
    }

    .categories ul li+li {
      padding-top: 10px;
    }

    .categories ul a {
      color: #012970;
      transition: 0.3s;
    }

    .categories ul a:hover {
      color: #4154f1;
    }

    .categories ul a span {
      padding-left: 5px;
      color: #aaaaaa;
      font-size: 14px;
    }

    .recent-posts .post-item+.post-item {
      margin-top: 15px;
    }

    .recent-posts img {
      width: 80px;
      float: left;
    }

    .recent-posts h4 {
      font-size: 15px;
      margin-left: 95px;
      font-weight: bold;
    }

    .recent-posts h4 a {
      color: #012970;
      transition: 0.3s;
    }

    .recent-posts h4 a:hover {
      color: #4154f1;
    }

    .recent-posts time {
      display: block;
      margin-left: 95px;
      font-style: italic;
      font-size: 14px;
      color: #aaaaaa;
    }

    .tags {
      margin-bottom: -10px;
    }

    .tags ul {
      list-style: none;
      padding: 0;
    }

    .tags ul li {
      display: inline-block;
    }

    .tags ul a {
      color: #0257ee;
      font-size: 14px;
      padding: 6px 14px;
      margin: 0 6px 8px 0;
      border: 1px solid #d7e6ff;
      display: inline-block;
      transition: 0.3s;
    }

    .tags ul a:hover {
      color: #fff;
      border: 1px solid #4154f1;
      background: #4154f1;
    }

    .tags ul a span {
      padding-left: 5px;
      color: #a5c5fe;
      font-size: 14px;
    }
  }
}

/*--------------------------------------------------------------
Footer 
--------------------------------------------------------------*/
.footer {
  background: #f6f9ff;
  padding: 0;

  .footer-top {
    background: white url(../images/footer-bg.png) no-repeat right top;
    background-size: contain;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 2.5rem 0;
  }

  .region-footer {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;

    @media (max-width: 1024px) {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);

      @media (max-width: 1024px) {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
      }
    }

    .paragraph--type--footer-logo- {
      a {
        margin-bottom: 15px;

        @media (max-width: 1024px) {
          justify-content: center;
        }
      }

      .field--name-field-ft-img {
        img {
          width: auto;
          height: 45px;
          max-width: 100%;
          object-fit: contain;
          aspect-ratio: auto;
        }
      }

      .field--name-field-ft-name {
        font-size: clamp(1.5rem, 2vh, 2rem);
        font-weight: 700;
        letter-spacing: 1px;
        color: #012970;
        font-family: "Nunito", sans-serif;
        margin-top: 2px;
      }
    }

    .field--name-body {
      font-size: clamp(0.8rem, 0.9vw, 0.9rem);
      line-height: 1.5;
    }

    h4,
    h2 {
      font-size: 16px;
      font-weight: bold;
      color: #012970;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-links {
      margin-bottom: 30px;

      .nav {
        gap: .5rem;
      }

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

      ul i {
        padding-right: 2px;
        color: #d0d4fc;
        font-size: 12px;
        line-height: 0;
      }

      ul li {
        display: flex;
        align-items: center;
      }

      ul li:first-child {
        padding-top: 0;
      }

      ul a {
        color: #013289;
        transition: 0.3s;
        display: inline-block;
        line-height: 1;
      }

      ul a:hover {
        color: #4154f1;
      }
    }

    .footer-contact p {
      line-height: 26px;
    }
  }

  .region-footer-bar {
    .field--name-body {
      color: #012970;
      padding: 20px 0;
      text-align: center;
      font-size: clamp(0.8rem, 1vw, 1rem);
    }
  }
}

/*--------------------------------------------------------------
Tabs css
--------------------------------------------------------------*/
.paragraph--type--tabs {
  margin: 5rem auto 12rem auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  @media (max-width: 1096px) {
    margin: 5rem auto;
  }

  .field--name-field-tab-main-heading {
    color: #012970;
    font-weight: 700;
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 10px;
  }

  .tab-nav {
    display: flex;
    gap: 1.3rem;
    border-bottom: 1px solid #e5e7eb;
  }

  .tab-btn {
    background: none;
    border: none;
    padding: 10px 0;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
  }

  .tab-btn.active {
    color: #0b198f;
    border-bottom: 2px solid #0b198f;
  }

  .tab-panel {
    display: none;
  }

  .tab-panel.active {
    display: block;
  }

  .tab-content {
    padding: 1.5rem 0;

    .tab-icons i {
      font-size: 1.2rem;
      margin-right: 8px;
      color: #4154f1;
    }

    h4 {
      margin: 0;

      p {
        font-size: 1.1rem;
        margin: 0;
        font-weight: 700;
        color: #012970;
      }
    }
  }

  .tabs-image {
    .field--name-field-tabs-image img {
      aspect-ratio: 16 / 9;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

/* User login form*/
#user-login-form {
  max-width: 420px;
  margin: 10rem auto 12rem auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  .form-item {
    margin-bottom: 20px;
  }

  label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #1f2d3d;
  }

  input[type="text"],
  input[type="password"] {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    border: 1px solid #dce1e7;
    border-radius: 6px;
    font-size: 15px;
  }

  input:focus {
    outline: none;
    border-color: #4f6df5;
    box-shadow: 0 0 0 3px rgba(79, 109, 245, 0.15);
  }

  .form-actions {
    margin-top: 25px;
  }

  input[type="submit"] {
    width: 100%;
    height: 46px;
    background: #4f6df5;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;

    &:hover {
      background: #3c56d4;
    }
  }
}