/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');


/* ----- Common ----- */
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Links */
a {
  color: #488320;
}

a:hover,
a:focus {
  color: #9bdc70;
  text-decoration: none;
}


/* Text & Headings */
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Schibsted Grotesk", sans-serif;
  font-weight: bold;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3.25rem;
}

h3 {
  font-size: 2rem;
}

.node--type-article .article-main ul {
  padding-left: 2rem;
  margin: unset;
  list-style: unset;
}

hr {
  margin: 0;
  opacity: 1;
  color: #ccc;
}

.section {
  background-color: #f4f4f4;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section.node--unpublished {
  background-color: #ed6;
}

.page-node-1428 .section {
  padding-top: 4.5rem;
}

.page-node-1429 .section {
  padding-top: 4rem;
}

.section.page-intro {
  padding-bottom: 0;
}

section.node--type-article {
  background-color: #fff;
  padding-top: 2.5rem;
}

section.node--type-article .ref-link {
  text-decoration: none;
  font-weight: bold;
  padding-left: 2px;
}

section.node--type-video-article {
  background-color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

section.node--type-press {
  background-color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 0;
}

/* Image */
.img-fluid-custom img {
  max-width: 100%;
  height: auto;
}

/* max 1199px */
@media screen and (max-width:1199px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .path-frontpage .section,
  .page-node-42 .section,
  .page-node-43 .section,
  .page-node-44 .section,
  .page-node-332 .section,
  .page-node-1426 .section,
  .page-node-1449 .section {
    padding-top: 6rem;
  }
  .page-node-1429 .section {
    padding-top: 5rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

/* 375px */
@media screen and (max-width:375px) {
  h3 {
    font-size: 1.125rem;
  }
}

/* ------------------
    # Navbar
------------------- */

.navbar {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  padding: 1.75rem 0;
  background-color: #00000099;
  z-index: 99;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.node--type-article .navbar,
.node--type-generic-page .navbar,
.node--type-press .navbar,
.node--type-portfolio .navbar {
  background-color: #000000dd;
}

.sticky {
  position: fixed;
  padding: 0.75rem 0;
  backdrop-filter: blur(20px);
  z-index: 1000;
}

.node--type-article .sticky.navbar,
.node--type-generic-page .sticky.navbar,
.node--type-press .sticky.navbar,
.node--type-portfolio .sticky.navbar {
  background-color: #00000099;
}

.navbar .navbar-brand {
  max-width: 16.5rem;
}

.navbar .navbar-nav .nav-item {
  padding-left: 2.25rem;
}

.navbar .navbar-nav .nav-item .nav-link {
  padding: 1rem 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.navbar .navbar-nav .nav-item .btn.btn-secondary {
  border-radius: 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.5rem 1.125rem;
  border: 2px solid #488320;
  background-color: #ffffff1a;
  position: relative;
  z-index: 2;
}

.navbar .navbar-nav .nav-item .btn.btn-secondary:active {
  transform: scale(0.99);
  transition: .1s;
}

.navbar .navbar-nav .nav-item .btn.btn-secondary:active,
.navbar .navbar-nav .nav-item .btn.btn-secondary:focus {
  box-shadow: rgba(130, 138, 145, 0.5) 0px 0px 0px 4px;
}

.navbar .navbar-nav .nav-item .nav-link::before,
.navbar .navbar-nav .nav-item .btn.btn-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  z-index: -1;
  background-color: #7fc045;
  opacity: 0;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.navbar .navbar-nav .nav-item .nav-link.active::before {
  width: 100%;
  opacity: 1;
}

.navbar .navbar-nav .nav-item .btn.btn-secondary::before {
  height: 100%;
}

.navbar .navbar-nav .nav-item .nav-link:hover:before,
.navbar .navbar-nav .nav-item .btn.btn-secondary:hover:before {
  width: 100%;
  opacity: 1;
}

.navbar .navbar-toggler {
  border: 0;
  outline: 0;
  padding: 0;
}

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

.navbar .navbar-toggler .bar {
  width: 1.5rem;
  height: 3px;
  margin: 0.25rem 0;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.navbar .navbar-toggler .bar:nth-child(2) {
  width: 1.125rem;
  margin-left: auto;
}

.node--type-landing-page .navbar .navbar-toggler {
  display: none;
}


/* toggle animation css */
.rotate-down {
  transform: rotate(45deg) translate(7px, 3px);
}

.rotate-up {
  transform: rotate(-45deg) translate(7px, -3px);
}

.hide-bar {
  opacity: 0;
}


/* 1199px */
@media screen and (max-width:1199px) {
  .navbar .navbar-brand {
    max-width: 13.5rem;
  }

  .navbar .navbar-nav .nav-item {
    padding-left: 1.5rem;
  }

  .navbar .navbar-nav .nav-item .btn.btn-secondary,
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }

  .navbar .navbar-nav .nav-item .btn.btn-secondary {
    padding: 0.5rem 1rem;
  }
}

/* 991px */
@media screen and (max-width: 991px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar.opend-nav {
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border-bottom: 2px solid #fff;
  }

  .navbar .navbar-brand {
    max-width: 10rem;
  }

  .navbar .navbar-nav {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .navbar .navbar-nav .nav-item {
    padding-left: 0.5rem;
    width: 100%;
    border-top: 1px solid #fff;
  }

  .navbar .navbar-nav .nav-item:last-child {
    padding-left: 0;
  }

  .navbar .navbar-nav .nav-item .nav-link::before {
    display: none;
  }

  .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #488320;
  }

  .navbar .navbar-nav .nav-item .btn.btn-secondary {
    margin-top: 1.5rem;
  }
}

/* 767px */
@media screen and (max-width:767px) {
  .navbar .navbar-nav .nav-item .btn.btn-secondary,
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 0.875rem;
  }
}

/* ---------------------
    # Hero Section
-----------------------*/

.hero-section {
  position: relative;
  background-color: #3b3b3b;
  background-size: cover;
  background-position: center;
  padding-top: 7.5rem;
  min-height: 93vh;
  z-index: 2;
}

.hero-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  z-index: -1;
}

.hero-section h1 {
  color: #fff;
  font-size: 5rem;
  line-height: 1.25;
  max-width: 900px;
  padding-bottom: 1.25rem;
}

.hero-section p {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.8;
  padding-bottom: 2.5rem;
  max-width: 590px;
  letter-spacing: 1px;
}


/* primary btn */
.btn.btn-primary {
  font-size: 1.125rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: 2px solid #7fc045;
  border-radius: 0;
  background-color: #488320;
  position: relative;
  z-index: 2;
}

.btn.btn-primary:active {
  transform: scale(0.99);
  transition: .1s;
}

.btn.btn-primary:active,
.btn.btn-primary:focus {
  color: #fff;
  border: 2px solid #7fc045;
  background-color: #7fc045;
  box-shadow: rgba(130, 138, 145, 0.5) 0px 0px 0px 4px;
}

.btn.btn-primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #7fc045;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
  z-index: -1;
}

.btn.btn-primary:hover:before {
  width: 100%;
}

.btn.btn-primary .arrow-icon {
  max-width: 1rem;
  margin-left: 0.75rem;
  transform: rotate(45deg);
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.btn.btn-primary:hover .arrow-icon {
  transform: rotate(0);
}

/* Hero refresh link */
.hero-refresh {
  position: absolute;
  bottom:-50px;
  right: 5vw;
  font-size: 13px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-refresh .btn.btn-primary {
  font-size: 1rem;
  padding: 0.1rem 0.4rem 0.4rem 0.4rem;
}

.hero-refresh .btn.btn-primary:focus {
  box-shadow: none;
  border: 2px solid #7fc045;
  background-color: #488320;
}

.hero-refresh .btn.btn-primary img {
  max-width: 0.5rem;
  transform: rotate(45deg);
}

.hero-refresh .subject span {
  font-weight: bold;
}

.hero-refresh .date {
  display: inline-block;
  margin-right: 0.5rem;
}

.hero-refresh a {
  font-weight: bold;
  letter-spacing: 0.03rem;
  text-decoration: underline;
}

.hero-refresh a span {
  color: #9bdc70;
}

.hero-refresh a:hover {
  color: #7fc045;
  text-decoration: none;
}

.hero-refresh a.disabled {
  opacity: 0.5;
  cursor: wait;
}

.hero-refresh .ajax-progress.ajax-progress-throbber {
  position: absolute;
  right:-25px;
}

/* max 1199px */
@media screen and (max-width:1199px) {
  .hero-section {
    padding-top: 6.75rem;
  }

  .hero-section h1 {
    font-size: 4rem;
    padding-bottom: 1rem;
  }

  .hero-section p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .btn.btn-primary {
    font-size: 1rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {
  .hero-section {
    padding-top: 4.5rem;
  }

  .hero-section h1 {
    font-size: 3.5rem
  }

  .hero-section p {
    font-size: 1rem;
    max-width: 29rem;
    padding-bottom: 2rem;
  }

  .btn.btn-primary {
    padding: 0.625rem 1.25rem;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .hero-section h1 {
    font-size: 3rem;
    padding-bottom: 0.5rem;
    line-height: 1.25;
  }

  .hero-section p {
    line-height: 1.5;
    max-width: 100%;
    padding-bottom: 1.75rem;
  }

  .btn.btn-primary {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }

  .btn.btn-primary .arrow-icon {
    max-width: 0.875rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .hero-section h1 {
    font-size: 2.5rem
  }

  .hero-section p {
    padding-bottom: 1.25rem;
  }

  .hero-refresh {
    font-size: 12px;
    right: 1rem;
  }
}

/* 375 */
@media screen and (max-width:480px) {
  .hero-section {
    min-height: 59vh;
  }
}

/* ----------------------
    # Feature Section
------------------------*/

.feature-section p {
  color: #555;
  font-size: 1.25rem;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 55rem;
  padding-top: 1.75rem;
}

.feature-section .feature-card {
  height: 100%;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.12);
}

.feature-section .feature-card .card-img {
  padding: 1.5rem 1.5rem 0;
  overflow: hidden;
}

.feature-section .feature-card .card-img img {
  max-width: 100%;
  height: auto;
}

.feature-section .feature-card .card-body {
  padding: 1.375rem 1.8rem 2rem;
}

.feature-card .card-body h2 {
  font-size: 2.75rem;
}

.feature-card .card-body p {
  color: #707070;
  line-height: 1.65;
  padding-top: 0.75rem;
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .feature-section p {
    font-size: 1.125rem;
    padding-top: 1rem;
  }

  .feature-section .feature-card .card-body {
    padding: 1.25rem;
  }

  .feature-card .card-body h2 {
    font-size: 2rem;
  }

  .feature-card .card-body p {
    padding-top: 0.25rem;
    line-height: 1.6;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .feature-section p {
    font-size: 1rem
  }

  .feature-section .feature-card .card-body {
    padding: 1.25rem 1rem 1.5rem 1rem;
  }

  /*.feature-card .card-body p {*/
  /*  font-size: 15px;*/
  /*}*/
}

/* max 767px */
@media screen and (max-width:767px) {
  .feature-section p {
    font-size: 1.05rem;
  }

  .feature-section .feature-card {
    margin: 0 1rem;
  }

  .feature-card .card-body h2 {
    font-size: 1.75rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .feature-section .feature-card {
    margin: 0;
  }

  .feature-card .card-body h2 {
    font-size: 1.5rem;
  }
}

/* --------------------------
    # Testimonial Section
----------------------------*/

.testimonial-section {
  background-image: url(../../images/testimonial-section-bg.jpg);
  background-size: cover;
  background-position: center;
  /* hack so the named anchor has more padding on top when linked to */
  padding-top: 12rem;
  margin-top: -6rem;
}

.testimonial-section .testimonial-box {
  background-color: #fff;
  border-top: 18px solid #333;
}

.testimonial-section .testimonial-box .swiper-wrapper {
  cursor: grab;
  align-items: center;
}

.testimonial-section .testimonial-box .swiper-wrapper:active {
  cursor: grabbing;
}

.testimonial-section .testimonial-box .testimonial-content {
  max-width: 56rem;
  padding: 3rem 0;
  margin: auto;
  text-align: center;
}

.testimonial-section .testimonial-box .testimonial-content p {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-section .testimonial-box .testimonial-content .client-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5rem;
}

.testimonial-box .testimonial-content .client-info img {
  border-radius: 100px;
  height: 11rem;
  max-width: 11rem;
  margin-bottom: 1rem;
  object-fit: cover;
}

.testimonial-box .node--view-mode-teaser {
  border-bottom: none;
}

.testimonial-box .testimonial-content .client-info .client-name {
  font-size: 1.25rem;
  font-weight: bold;
}

.testimonial-box .testimonial-content .client-info .client-role {
  color: #3b3b3b;
  font-size: 1rem;
  padding-top: 0.5rem;
  max-width: 20rem;
}

.section .swiper-pagination {
  position: relative;
  padding-top: 3rem;
}

.section .swiper-pagination .swiper-pagination-bullet {
  width: 1.125rem;
  height: 1.125rem;
  opacity: 1;
  margin: 0 .5rem;
  background-color: transparent;
  border: 2px solid #9bdc70;
}

.section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #488320;
}

/* max 1199px */
@media screen and (max-width:1199px) {
  .testimonial-section .testimonial-box .testimonial-content {
    max-width: 48rem;
  }

  .testimonial-section .testimonial-box .testimonial-content p {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .testimonial-box .testimonial-content .client-info img {
    max-width: 4rem;
  }

  .testimonial-section .swiper-pagination {
    padding-top: 2.5rem;
  }

  .section .swiper-pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 .375rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {
  .testimonial-section .testimonial-box .testimonial-content {
    max-width: 39rem;
    padding: 2rem;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .testimonial-section .testimonial-box .testimonial-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .section .swiper-pagination {
    padding-top: 2rem;
  }

  .testimonial-section .testimonial-box .testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
  }

  .testimonial-section .testimonial-box .testimonial-content .client-info {
    padding-top: 2rem;
  }

  .testimonial-box .testimonial-content .client-info img {
    max-width: 3.5rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .testimonial-section .testimonial-box {
    border-top: 4px solid #333;
  }

  .testimonial-section .testimonial-box .testimonial-content p {
    font-size: 1rem;
  }

  .testimonial-section .swiper-pagination,
  .testimonial-section .testimonial-box .testimonial-content .client-info {
    padding-top: 1.5rem;
  }

  .testimonial-box .testimonial-content .client-info img {
    max-width: 2.5rem;
  }

  .testimonial-box .testimonial-content .client-info .client-name {
    font-size: 0.95rem;
  }

  .testimonial-box .testimonial-content .client-info .client-role {
    font-size: 0.9rem;
  }
}


/* Mobile */

@media screen and (max-width:480px) {
  .testimonial-section .testimonial-box .testimonial-content {
    padding: 1.5rem 0.5rem;
  }

  .testimonial-section .testimonial-box .testimonial-content p {
    font-size: 0.875rem;
  }

  .testimonial-box .testimonial-content .client-info img {
    max-width: 2.25rem;
  }

  .section .swiper-pagination {
    padding-top: 1.25rem;
  }

  .section .swiper-pagination .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
    margin: 0 0.25rem;
  }

}

/* -----------------------
    # Client Section
-------------------------*/

.client-section {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.client-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 860px;
  background-color: #3b3b3b;
  transform: translateY(-50%) translateX(-50%) rotate(-9deg);
  z-index: -1;
}

.section .section-head {
  text-align: center;
  padding-bottom: 4rem;
}

.client-cards-wrap .client-card {
  height: 100%;
  padding: 1.5rem 1.5rem 2rem;
  background-color: #fff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.122);
}


.client-cards-wrap .client-card .card-img {
  display: block;
  position: relative;
  border: 1px solid #000;
}

.client-cards-wrap .client-card .card-img img {
  max-width: 100%;
  height: auto;
}

.client-cards-wrap .client-card .card-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffad;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.client-cards-wrap .client-card .card-img:hover:before {
  opacity: 1;
}

.client-cards-wrap .client-card .card-img .arrow-circle {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #488320;
  border: 2px solid #9bdc70;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.client-cards-wrap .client-card .card-img:hover .arrow-circle {
  transform: translate(-50%, -50%) scale(1);
}

.client-cards-wrap .client-card .card-img .arrow-circle img {
  width: 1.75rem;
}


.client-cards-wrap .client-card .card-body {
  padding: 1.5rem 0 .5rem 0;
}

.client-cards-wrap .client-card .card-body .client-logo {
  display: none; /* remove from display */
  width: 6.25rem;
  min-height: 2.75rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.client-cards-wrap .client-card .card-body .client-logo.lg {
  width: 10rem;
}

.client-cards-wrap .client-card .card-body h3 {
  padding-top: 1rem;
}

.client-cards-wrap .client-card .card-body h3>a {
  color: #000;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.client-cards-wrap .client-card .card-body h3 a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  opacity: 0;
  width: 24px;
  height: 24px;
  background-image: url(../../images/arrow-upright-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.client-cards-wrap .client-card .card-body h3 a:hover:after {
  right: -40px;
  opacity: 1;
}

.client-cards-wrap .client-card .card-body p {
  color: #3b3b3b;
  font-size: 1.125rem;
  padding-top: 0.5rem;
  line-height: 1.7;
}

.load-more-btn,
.client-section .section-cta {
  padding-top: 4rem;
  text-align: center;
}


/* < 992px */
@media screen and (min-width:992px) {
  .client-cards-wrap .row>* {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 2rem;
  }
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .client-section::before {
    height: 800px;
  }

  .section .section-head {
    padding-bottom: 3rem;
  }

  .client-cards-wrap .client-card {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .client-cards-wrap .client-card .card-body p {
    font-size: 1rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {

  .load-more-btn,
  .client-section .section-cta {
    padding-top: 3rem;
  }

  .client-section .client-cards-wrap .client-card {
    padding: 1rem 1.125rem;
  }

  .client-cards-wrap .client-card .card-body .client-logo {
    width: 4rem;
    min-height: 1.5rem;
  }

  .client-cards-wrap .client-card .card-body p {
    font-size: 15px;
  }

  .client-cards-wrap .client-card .card-body h3 a::after {
    top: 6px;
    width: 18px;
    height: 18px;
  }

  .client-cards-wrap .client-card .card-body h3 a:hover:after {
    right: -32px;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .client-section::before {
    height: 1900px;
    width: 160%;
  }

  .section .section-head {
    padding-bottom: 2.5rem;
  }

  .client-cards-wrap .client-card {
    margin: 0 1rem;
  }

  .client-cards-wrap .client-card .card-body .client-logo.lg {
    width: 6rem;
  }

  .client-cards-wrap .client-card .card-body h3 a::after {
    top: 5px;
    width: 1rem;
    height: 1rem;
  }

  .client-cards-wrap .client-card .card-body h3 a:hover:after {
    right: -1.5rem;
  }

  .client-cards-wrap .client-card .card-body p {
    font-size: 15px;
  }

  .load-more-btn,
  .client-section .section-cta {
    padding-top: 2.5rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .client-section::before {
    height: 1840px;
  }

  .section .section-head {
    padding-bottom: 2rem;
  }

  .client-cards-wrap .client-card {
    margin: 0;
    padding: 1rem;
  }

  .load-more-btn,
  .client-section .section-cta {
    padding-top: 2rem;
  }
}

/* max 375px */
@media screen and (max-width:480px) {
  .client-section::before {
    height: 1600px;
    width: 200%;
  }

  .client-cards-wrap .client-card .card-body h3 a::after {
    width: 0.875rem;
    height: 0.875rem;
  }
}

/* -----------------------
    # About Section
-------------------------*/
.about-section {
  border-top: 1px solid #ddd;
}

.about-section .about-img {
  padding-right: 4.5rem;
}

.about-section .about-img img {
  max-width: 100%;
  height: auto;
}

.about-section .about-text h2 {
  line-height: 1.3;
}

.about-section .about-text h2 span {
  color: #333;
}

.about-section .about-text p {
  color: #3b3b3b;
  font-size: 1.125rem;
  line-height: 30px;
  padding-top: 1rem;
}

.about-section .about-text .btn.btn-primary {
  margin-top: 3rem;
}


/* min 1399px */
@media screen and (min-width:1399px) {
  .about-section .about-text {
    padding: 0 1rem;
  }
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .about-section .about-img {
    padding-right: 0;
  }

  .about-section .about-text p {
    font-size: 1rem;
    padding-top: 0.75rem;
  }

  .about-section .about-text .btn.btn-primary {
    margin-top: 2rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {
  .about-section .about-text {
    padding-top: 3rem;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .about-section .about-text {
    padding-top: 2.5rem;
  }

  .about-section .about-text p {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 0.5rem;
  }
}


/* max 575px */
@media screen and (max-width:767px) {
  .about-section .about-text {
    padding-top: 2rem;
  }

  .about-section .about-text .btn.btn-primary {
    margin-top: 1.5rem;
  }
}

/* -----------------------
    # Insights Section
-------------------------*/

.insight-cards-section {
  background-color: #f5f5f5;
}

.insight-cards-wrap .insight-card {
  background-color: #ffffff;
  box-shadow: 0 0 16px 0.64px rgba(17, 17, 17, 0.12);
}

.insight-cards-wrap .insight-card .card-img-block {
  position: relative;
  display: block;
}

.insight-cards-wrap .insight-card .card-img-block img {
  max-width: 100%;
  height: auto;
}

.insight-cards-wrap .insight-card .card-img-block>img {
  padding: 21px;
}

.insight-cards-wrap .insight-card .card-img-block::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffffad;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.insight-cards-wrap .insight-card .card-img-block:hover:before {
  opacity: 1;
}

.insight-cards-wrap .insight-card .card-img-block .arrow-circle {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #488320;
  border: 2px solid #9bdc70;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.insight-cards-wrap .insight-card .card-img-block:hover .arrow-circle {
  transform: translate(-50%, -50%) scale(1);
}

.insight-cards-wrap .insight-card .card-img-block .arrow-circle img {
  width: 1.75rem;
}

.insight-cards-wrap .insight-card .card-img-block .date {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1.25rem;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  background-color: #eaf1fc;
}

.insight-cards-wrap .insight-card .card-body {
  padding: 2rem 1.5rem;
}

.insight-cards-wrap .insight-card .card-body h3 a {
  font-size: 1.75rem;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: #000;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.insight-cards-wrap .insight-card .card-body h3 a:hover {
  color: #488320;
}

.insight-cards-wrap .insight-card .card-body p {
  color: #707070;
  line-height: 1.65;
  padding-top: 0.75rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.section .readmore-btn {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-left: 1rem;
  position: relative;
  text-decoration: none;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.section .readmore-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #9bdc70;
  transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.section .readmore-btn:hover::before {
  width: 100%;
}

.section .readmore-btn .arrow-icon {
  width: 0.875rem;
  transform: rotate(45deg);
  margin-left: 0.5rem;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.section .readmore-btn:hover .arrow-icon {
  transform: rotate(0);
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .insight-cards-wrap .insight-card .card-img-block .date {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }

  .insight-cards-wrap .insight-card .card-img-block .arrow-circle {
    width: 4rem;
    height: 4rem;
  }

  .insight-cards-wrap .insight-card .card-img-block .arrow-circle img {
    width: 1.25rem;
  }

  .insight-cards-wrap .insight-card .card-body {
    padding: 1.5rem 1rem;
  }

  .insight-cards-wrap .insight-card .card-body h3 a {
    font-size: 1.375rem;
  }

  .insight-cards-wrap .insight-card .card-body p {
    padding-top: 0.5rem;
  }

  .section .readmore-btn {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .section .readmore-btn .arrow-icon {
    width: 0.75rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {
  .insight-cards-wrap .insight-card .card-body p {
    font-size: 15px;
  }

  .section .readmore-btn {
    margin-left: 0;
  }

  .section .readmore-btn::before {
    bottom: -6px;
    left: 0;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .insight-cards-wrap .insight-card {
    margin: 0 1rem;
  }

  .insight-cards-wrap .insight-card .card-body h3 a {
    font-size: 1.25rem;
  }

  .insight-cards-wrap .insight-card .card-body p {
    padding-top: 0.25rem;
  }

  .section .readmore-btn {
    margin-top: 1rem;
    font-size: 0.875rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .insight-cards-wrap .insight-card {
    margin: 0;
  }

  .insight-cards-wrap .insight-card .card-body {
    padding: 1.25rem 1rem;
  }
}

/* 375px */
@media screen and (max-width:480px) {
  .insight-cards-wrap .insight-card .card-img-block .date {
    padding: 0.5rem 0.75rem;
  }

  .insight-cards-wrap .insight-card .card-body h3 a {
    -webkit-line-clamp: 2;
  }
}

/* -----------------------
    # Lets-Talk Section
-------------------------*/

.letstalk-section {
  padding: 8.75rem 0;
}

.letstalk-section h2 {
  font-size: 4rem;
  line-height: 90px;
}

.letstalk-section .cta-cicle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  margin-left: auto;
  background-color: #488320;
  border: 3px solid #9bdc70; /* #7fc045; */
  border-radius: 100px;
  position: relative;
}

.letstalk-section .cta-cicle span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  width: 100%;
  text-align: center;
  transform: translate(-50%, -50%) scale(1);
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.letstalk-section .cta-cicle .arrow-icon {
  opacity: 0;
  transform: scale(0);
  max-width: 3.5rem;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.letstalk-section .cta-cicle:hover .arrow-icon {
  transform: scale(1);
  opacity: 1;
}

.letstalk-section .cta-cicle:hover span {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

/* 1199px */
@media screen and (max-width:1199px) {
  .letstalk-section {
    padding: 6rem 0;
  }

  .letstalk-section h2 {
    font-size: 3.5rem;
    line-height: 1.3;
  }

  .letstalk-section .cta-cicle {
    width: 10rem;
    height: 10rem;
  }

  .letstalk-section .cta-cicle span {
    font-size: 1.5rem;
  }

  .letstalk-section .cta-cicle .arrow-icon {
    max-width: 3rem;
  }
}


/* 991px */
@media screen and (max-width:991px) {
  .letstalk-section {
    padding: 5rem 0;
  }

  .letstalk-section h2 {
    font-size: 2.5rem;
  }

  .letstalk-section .cta-cicle {
    width: 9rem;
    height: 9rem;
  }

  .letstalk-section .cta-cicle span {
    font-size: 1.25rem;
  }

  .letstalk-section .cta-cicle .arrow-icon {
    max-width: 2.5rem;
  }
}

/* 767px */
@media screen and (max-width:767px) {
  .letstalk-section {
    padding: 3.5rem 0;
  }

  .letstalk-section h2 {
    font-size: 1.75rem;
  }

  .letstalk-section .cta-cicle {
    width: 6.75rem;
    height: 6.75rem;
  }

  .letstalk-section .cta-cicle span {
    font-size: 1rem;
  }

  .letstalk-section .cta-cicle .arrow-icon {
    max-width: 2rem;
  }
}

/* 575px */
@media screen and (max-width:575px) {
  .letstalk-section .cta-cicle {
    width: 6rem;
    height: 6rem;
  }

  .letstalk-section .cta-cicle span {
    font-size: 0.875rem;
  }

  .letstalk-section .cta-cicle .arrow-icon {
    max-width: 1.75rem;
  }
}

/* 375px */
@media screen and (max-width:480px) {
  .letstalk-section {
    padding: 2.5rem 0;
  }

  .letstalk-section .row>* {
    width: 100%;
  }

  .letstalk-section h2 {
    text-align: center;
    padding-bottom: 1.5rem;
  }

  .letstalk-section .cta-cicle {
    margin: 0 auto;
    width: 7.5rem;
    height: 7.5rem;
  }
}

/* ------------------
    # Footer
--------------------*/

.footer .footer-row-1 {
  border-top: 4px solid #9bdc70;
  background-color: #222222;
  padding: 6rem 0;
}

.footer .footer-row-1 .logo-img {
  max-width: 18.75rem;
  display: flex;
}

.footer .footer-row-1 .footer-nav {
  max-width: 25rem;
  margin-left: auto;
}

.footer .footer-row-1 .footer-nav ul {
  list-style: square;
  color: #488320;
  columns: 2;
  column-gap: 3rem;
}

.footer .footer-row-1 .footer-nav ul li::marker {
  font-size: 1.5rem;
}

.footer .footer-row-1 .footer-nav ul li a {
  color: #cecece;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: inline-block;
  vertical-align: middle;
  transition: .1s;
}

.footer .footer-row-1 .footer-nav ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.node--type-landing-page .footer .footer-row-1 .footer-nav {
  display: none;
}

.footer .footer-row-2 {
  padding: 1.375rem 0;
  background-color: #000;
}

.footer .footer-row-2 a {
  color: #fff;
  font-size: 0.75rem;
  text-decoration: underline;
}

.footer .footer-row-2 a:hover {
  color: #9bcd70;
  text-decoration: none;
}

.footer .footer-row-2 .copyright-text {
  color: #fff;
  font-size: 0.75rem;
}

.footer .footer-row-2 .copyright-text a {
  margin-left: 0.5rem;
}

.footer .footer-row-2 .company-links {
  text-align: right;
  flex-shrink: 0;
  line-height: 1;
}

.footer .footer-row-2 .social-icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  margin-right: 1.5rem;
  border-right: 1px solid #fff;
}

.footer .footer-row-2 .social-icons a {
  font-size: 0;
  line-height: 1;
  padding: 0.25rem;
}

.footer .footer-row-2 .social-icons a img {
  max-width: 1.125rem;
  filter: brightness(0) invert(70%);
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.footer .footer-row-2 .social-icons a:hover img {
  filter: brightness(0) invert(100%);
}

/* max 1199px */
@media screen and (max-width:1199px) {
  .footer .footer-row-1 {
    padding: 4.5rem 0;
  }

  .footer .footer-row-1 .logo-img {
    max-width: 14rem;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 18rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 4rem;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .footer .footer-row-1 .footer-nav {
    max-width: 13rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 2rem;
  }

  .footer .footer-row-1 .footer-nav ul li::marker {
    font-size: 1.125rem;
  }

  .footer .footer-row-1 .footer-nav ul li a {
    font-size: 1rem;
  }

  .footer .footer-row-2 {
    padding: 1rem 0;
  }

  .footer .footer-row-2 .copyright-text,
  .footer .footer-row-2 .company-links {
    text-align: center;
  }

  .footer .footer-row-2 .copyright-text {
    padding-top: 1rem;
    font-size: 0.75rem;
  }

  .footer .footer-row-2 .copyright-text a {
    margin-left: 0.5rem;
  }

  .footer .footer-row-2 .social-icons {
    order: 1;
    gap: 1rem;
    padding-right: 0;
    margin-right: 0;
    margin-top: 1.25rem;
    border-right: none;
  }
}


/* max 767px */
@media screen and (max-width:767px) {
  .footer .footer-row-1 {
    border-top: 6px solid #488320;
    padding: 3.5rem 0 3rem 0;
  }

  .footer .footer-row-1 .logo-img {
    max-width: 10rem;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 11.5rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 4rem;
  }

  .footer .footer-row-1 .footer-nav ul li a {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .footer .footer-row-2 {
    padding: 0.75rem 0;
  }

  .footer .footer-row-2 .copyright-text,
  .footer .footer-row-2 .company-links {
    text-align: center;
  }

  .footer .footer-row-2 .company-links>a {
    margin: 0 .75rem;
    font-size: 0.75rem;
  }

  .footer .footer-row-2 .copyright-text {
    padding-top: 0.75rem;
    font-size: 0.75rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .footer .footer-row-1 {
    padding: 3rem 0;
    border-top: 4px solid #488320;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 10.5rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 3rem;
  }

  .footer .footer-row-1 .footer-nav ul li::marker {
    font-size: 1rem;
  }
}


/* 375px */
@media screen and (max-width:480px) {
  .footer .footer-row-1 {
    padding: 2.5rem 0 2rem 0;
  }

  .footer .footer-row-1 .logo-img {
    margin: 0 auto;
  }

  .footer .footer-row-1 .row>* {
    width: 100%;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 17.5rem;
    margin: 0 auto;
    padding-top: 2.5rem;
    padding-left: 1rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 3rem;
    columns: 3;
  }
}

/* Inner Page CSS */

.inner-hero-section {
  display: flex;
  align-items: center;
  position: relative;
  background-color: #3b3b3b;
  background-size: cover;
  background-position: center;
  padding-top: 7.5rem;
  min-height: 39rem;
  z-index: 2;
}

/* 2 the point, waterfall, align top */
.page-node-1449 .inner-hero-section {
  background-position: top;
}

.inner-hero-section:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 5%, rgba(0, 0, 0, 0.4) 30.5%, rgba(0, 0, 0, 0) 59%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 5%, rgba(0, 0, 0, 0.4) 30.5%, rgba(0, 0, 0, 0) 59%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 5%, rgba(0, 0, 0, 0.4) 30.5%, rgba(0, 0, 0, 0) 59%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  z-index: -1;
}

.inner-hero-section h1 {
  color: #fff;
  font-size: 4.5rem;
}

.inner-hero-section p {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.8;
  letter-spacing: 1px;
  padding-top: 0.5rem;
  max-width: 37rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.95);
}

/* 1199px */
@media screen and (max-width:1199px) {
  .inner-hero-section {
    padding-top: 6.75rem;
    min-height: 31rem;
  }

  .inner-hero-section h1 {
    font-size: 3.5rem;
  }

  .inner-hero-section p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 30rem;
  }
}


/* 991px */
@media screen and (max-width:991px) {
  .inner-hero-section:before {
    background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 7%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 80%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 7%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 80%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 7%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 80%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  }

  .inner-hero-section {
    padding-top: 4.5rem;
    min-height: 25rem;
  }

  .inner-hero-section h1 {
    font-size: 3rem;
  }

  .inner-hero-section p {
    font-size: 1.1rem;
    max-width: 27rem;
  }
}


/* 767px */
@media screen and (max-width:767px) {
  .inner-hero-section:before {
    background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
    background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
    background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.4) 61%, rgba(0, 0, 0, 0) 100%, rgba(255, 255, 255, 0) 100%, rgba(187, 162, 202, 0) 100%, rgba(219, 143, 109, 0) 100%, rgba(175, 39, 187, 0) 100%, rgba(4, 99, 255, 0) 100%, rgba(4, 99, 255, 0) 100%);
  }

  .inner-hero-section h1 {
    font-size: 2.5rem;
  }

  .inner-hero-section p {
    font-size: 1.05rem;
    max-width: 21rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .inner-hero-section h1 {
    font-size: 2.25rem;
  }

  .inner-hero-section p {
    line-height: 1.5;
    padding-top: 0.25rem;
    max-width: 19rem;
  }
}

/* max 375px */
@media screen and (max-width:375px) {
  .inner-hero-section.services {
    background-position: 40%;
  }

  .inner-hero-section.news {
    background-position: 32%;
  }

  .inner-hero-section p {
    letter-spacing: 0;
  }

  .inner-hero-section.services p {
    max-width: 20rem;
  }
}


/* Service Section */

.services-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 860px;
  background-color: #3b3b3b;
  transform: translateY(-50%) translateX(-50%) rotate(-8deg);
  z-index: -1;
}

.services-section .row {
  margin-top: calc(-1 * 2.5rem);
}

.services-section .service-card {
  height: 100%;
  padding: 2rem 2rem 2.5rem;
  background-color: #fff;
  border-top: 9px solid #333;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.12);
  max-width: 1024px;
  margin: 0 auto;
}

.services-section .service-card h3 {
  font-size: 2.3rem;
  padding-bottom: 1rem;
}

.services-section .service-card p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #3b3b3b;
}

.services-section .service-card .service-list-wrap {
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid #707070;
}

.services-section .service-card .service-list-wrap p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.services-section .service-card .service-list-wrap ul {
  list-style: none;
  padding-top: 1.25rem;
  margin-bottom: 0;
}

.service-card .service-list-wrap ul li {
  font-size: 1.125rem;
  color: #3b3b3b;
  padding-top: 0.75rem;
}

.service-card .service-list-wrap ul li:last-child {
  padding-bottom: 0;
}

.service-card .service-list-wrap ul li img {
  max-width: 1.125rem;
  margin-right: 0.75rem;
}

/* < 1200px */
@media screen and (min-width:1200px) {
  .services-section .row>* {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .services-section {
    padding: 4rem 0;
  }

  .services-section::before {
    height: 1180px;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .services-section::before {
    height: 1800px;
  }

  .services-section .service-card {
    padding: 2rem 1.5rem;
  }

  .services-section .service-card p {
    font-size: 1.125rem;
    line-height: 1.8;
  }

  .services-section .service-card .service-list-wrap {
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .services-section .service-card .service-list-wrap ul {
    padding-top: 1rem;
  }

  .service-card .service-list-wrap ul li {
    font-size: .95rem;
  }

  .service-card .service-list-wrap ul li img {
    max-width: 1rem;
  }
}


/* max 767px */
@media screen and (max-width:767px) {
  .services-section {
    padding: 3rem 0;
  }

  .services-section::before {
    height: 1580px;
  }

  .services-section .service-card {
    padding: 1.5rem 1rem;
  }

  .services-section .service-card h3 {
    padding-bottom: 0.25rem;
  }

  .services-section .service-card p {
    font-size: 1rem;
  }

  .services-section .service-card .service-list-wrap p {
    font-size: 0.95rem;
  }

  .services-section .service-card .service-list-wrap {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
  }

  .services-section .service-card .service-list-wrap ul {
    padding-left: 0;
    padding-top: 0.5rem;
  }

  .service-card .service-list-wrap ul li {
    font-size: 15px;
    padding-bottom: 0.625rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .services-section {
    padding: 2.5rem 0;
  }

  .services-section::before {
    height: 1300px;
    width: 200%;
  }

  .services-section .service-card h3 {
    padding-bottom: 0.5rem;
  }

  .services-section .service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .services-section .service-card .service-list-wrap {
    padding-top: 0.5rem;
  }

  .services-section .service-card .service-list-wrap ul {
    padding-top: 0.75rem;
  }
}

/* max 375px */
@media screen and (max-width:375px) {
  .services-section::before {
    height: 1600px;
  }
}

/* =======================
    Portfolio Page CSS
========================= */

/* Load More Btn */
.load-more-btn {
  text-align: center;
}

.load-more-btn ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.load-more-btn .btn.btn-primary::before {
  width: 100%;
  height: 0;
}

.load-more-btn .btn.btn-primary:hover:before {
  height: 100%;
}

.load-more-btn .btn.btn-primary .arrow-icon {
  transform: rotate(135deg) translateY(3px);
}

.load-more-btn .btn.btn-primary:hover .arrow-icon {
  transform: rotate(135deg) translateY(0) translateX(3px);
}


/* Testimonial-CTA-Section */
.testimonial-cta-section {
  min-height: 37.5rem;
  text-align: center;
  background-color: #f5f5f5;
}

.testimonial-cta-section p:not(:last-child){
  color: #555;
  line-height: 1.9;
  font-size: 1.25rem;
  max-width: 59rem;
  margin: 0 auto;
  padding-top: 1.75rem;
}

.testimonial-cta-section .btn.btn-primary {
  margin-top: 2.5rem;
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .testimonial-cta-section {
    min-height: 31.25rem;
  }

  .testimonial-cta-section p:not(:last-child){
    font-size: 1.125rem;
    max-width: 55rem;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .testimonial-cta-section {
    min-height: 25rem;
  }

  .testimonial-cta-section p:not(:last-child){
    font-size: 1rem;
    max-width: 36rem;
    padding-top: 1rem;
  }

  .testimonial-cta-section .btn.btn-primary {
    margin-top: 2rem;
  }
}


/* max 767px */
@media screen and (max-width:767px) {
  .testimonial-cta-section {
    min-height: 22rem;
  }

  .testimonial-cta-section p:not(:last-child){
    font-size: 0.875rem;
    padding-top: 0.75rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .testimonial-cta-section p:not(:last-child){
    max-width: 32rem;
  }

  .testimonial-cta-section .btn.btn-primary {
    margin-top: 1.5rem;
  }
}


/* 375px */
@media screen and (max-width:480px) {
  .testimonial-cta-section h2 {
    font-size: 1.375rem;
  }

  .testimonial-cta-section .btn.btn-primary {
    margin-top: 1rem;
  }
}

/* =========================
     Insights Page CSS
========================== */

.insight-cards-section.page {
  background-color: #f4f4f4;
  /* border-bottom: 1px solid #000; */
}

.insight-cards-section.page .insight-cards-wrap .insight-card .card-body h3 a {
  -webkit-line-clamp: 2;
}

.insight-cards-section.page .insight-cards-wrap .insight-card .card-body p {
  -webkit-line-clamp: 2;
}

/* < 1200px */
@media screen and (min-width:1200px) {
  .insight-cards-section.page .insight-cards-wrap .insight-card .card-body {
    padding: 1.5rem;
  }
}

/* =====================
     News Page CSS
======================= */

.news-headlines-section {
  border-bottom: 1px solid #000;
}

.section .headline-box {
  padding: 1.5rem 2rem 2rem;
  margin-bottom: 2.5rem;
  background-color: #fff;
  border-top: 6px solid #333;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.12);
}

.section .headline-box:last-child {
  margin-bottom: 0;
}

.section .headline-box .date {
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  background-color: #eaf1fc;
  display: inline-block;
}

.section .headline-box h3 {
  font-size: 1.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #707070;
}

.section .headline-box p {
  color: #333;
  padding: .75rem 0 0 1rem;
}

.section .headline-box h3 a {
  color: #000;
  text-decoration: none;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.section .headline-box h3 a:hover {
  color: #488320;
}

.section .headline-box .readmore-btn {
  margin-top: 1.25rem;
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .section .headline-box {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .section .headline-box .date {
    padding: 0.375rem 0.75rem;
  }

  .section .headline-box h3 {
    font-size: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .section .headline-box .readmore-btn {
    margin-top: 1rem;
  }
}

@media screen and (max-width:991px) {
  .section .headline-box p {
    padding-left: 0
  }
}


/* max 767px */
@media screen and (max-width:767px) {
  .section .headline-box {
    margin-bottom: 1.25rem;
    padding: 1rem 1.5rem 1.25rem;
  }

  .section .headline-box h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .section .headline-box .readmore-btn {
    margin-top: 0.75rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .section .headline-box {
    margin-bottom: 1rem;
    padding: 1rem;
  }

  .section .headline-box .date {
    font-size: 0.75rem;
  }

  .section .headline-box h3 {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

}


/* Max 375px */
@media screen and (max-width:375px) {
  .section .headline-box h3 {
    font-size: 1.125rem;
  }
}

/* =====================
    Clients Page CSS
========================*/

.clients-list-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.clients-list-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 75%;
  background-color: #3b3b3b;
  transform: translateY(-50%) translateX(-50%) rotate(-9deg);
  z-index: -1;
}


.clients-list-section .client-list-box {
  background-color: #fff;
  padding: 1.75rem 2rem 2.5rem;
  margin-bottom: 2.5rem;
  border-top: 6px solid #333;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.08);
}

.clients-list-section .client-list-box:last-child {
  margin-bottom: 0;
}

.clients-list-section .client-list-box h3 {
  padding-bottom: 2.25rem;
}

.clients-list-section .client-list-box ul {
  column-gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
}

.clients-list-section .client-list-box ul li {
  flex: 50%;
  display: flex;
  align-items: center;
  padding: 0.75rem 0.25rem;
  max-width: calc(50% - 0.75rem);
  border-bottom: 1px solid #000;
}

.clients-list-section .client-list-box ul li:nth-child(1),
.clients-list-section .client-list-box ul li:nth-child(2) {
  border-top: 1px solid #000;
}

.client-list-box ul li.client-link-item {
  padding: 0;
}

.client-list-box ul .client-link-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  padding: 0.75rem 0.75rem 0.75rem 0.25rem;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.client-list-box ul .client-link-item .arrow-icon {
  max-width: 0.75rem;
  transform: rotate(45deg);
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.client-list-box ul .client-link-item:hover a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background-color: #f5f5f5;
}

.client-list-box ul .client-link-item:hover .arrow-icon {
  transform: rotate(0);
}


/* max 1199px */
@media screen and (max-width:1199px) {

  .clients-list-section::before {
    height: 82%;
  }

  .clients-list-section .client-list-box {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem 2rem;
  }

  .clients-list-section .client-list-box h3 {
    padding-bottom: 1.75rem;
  }

}


/* max 991px */
@media screen and (max-width:991px) {

  .clients-list-section .client-list-box {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1rem 2rem;
  }

  .clients-list-section .client-list-box h3 {
    padding-bottom: 1.5rem;
  }

  .clients-list-section .client-list-box ul li {
    font-size: 15px;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .clients-list-section::before {
    height: 87%;
    width: 300%;
  }

  .clients-list-section .client-list-box ul li {
    padding: 0.5rem 0.25rem;
    flex: 100%;
    max-width: 100%;
  }

  .client-list-box ul li.client-link-item {
    padding: 0;
  }

  .clients-list-section .client-list-box ul li:nth-child(2) {
    border-top: 0;
  }

  .client-list-box ul .client-link-item a {
    padding: 0.5rem 0.75rem 0.5rem 0.25rem;
  }
}

/* max 575px */
@media screen and (max-width:575px) {
  .clients-list-section::before {
    height: 89%;
    width: 400%;
  }

  .clients-list-section .client-list-box {
    padding: 1.25rem 1rem 1.5rem;
  }

  .clients-list-section .client-list-box h3 {
    padding-bottom: 1.25rem;
  }

  .client-list-box ul .client-link-item:hover a {
    padding-left: 1rem;
    padding-right: 1.25rem;
  }
}


/* max 375px */
@media screen and (max-width:375px) {
  .clients-list-section .client-list-box {
    margin-bottom: 1.25rem;
    padding: 1rem 1rem 1.25rem;
  }

  .clients-list-section .client-list-box h3 {
    padding-bottom: 1rem;
  }
}

/* =====================
    About Page CSS
========================*/

.about-company h2 {
  max-width: 58rem;
}

.about-company .para-wrap {
  margin-top: 2.5rem;
  column-gap: 6rem;
  column-count: 2;
  text-align: justify;
}

.about-company .para-wrap p {
  font-size: 1.5rem;
  line-height: 1.6;
  padding-bottom: 1rem;
}


/* Company Stats */
.company-stats {
  background-color: #f5f5f5;
}

.company-stats .stats-box {
  background-color: #fff;
  padding: 1.5rem 1rem;
  min-height: 100%;
  border-top: 8px solid #333;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.02);
}

.company-stats .stats-box .value {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  font-family: "Schibsted Grotesk", sans-serif;
}

.company-stats .stats-box h5 {
  font-size: 1.25rem;
  padding-top: 0.75rem;
}

.company-stats .stats-box p {
  font-size: 1rem;
  color: #707070;
  padding-top: 0.5rem;
}


/* Featured Client */
.featured-clients {
  background-color: #fff;
  border-bottom: 1px solid #000;
}

.featured-clients .clients-logo-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.featured-clients .clients-logo-wrapper .client-logo {
  flex: calc(25% - 1.5rem);
}

/* max 1199px */
@media screen and (max-width:1199px) {
  .about-company .para-wrap p {
    font-size: 1.25rem;
  }

  .company-stats .stats-box .value {
    font-size: 2.25rem;
  }

  .company-stats .stats-box h5 {
    font-size: 1.125rem;
  }

  .company-stats .stats-box p {
    font-size: 0.875rem;
  }
}

/* max 991px */
@media screen and (max-width:991px) {
  .about-company .para-wrap {
    column-count: 1;
    row-gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .about-company .para-wrap p {
    font-size: 1.125rem;
  }

  .company-stats .stats-box p {
    font-size: 0.875rem;
  }

  .featured-clients .clients-logo-wrapper {
    gap: 1rem;
  }

  .featured-clients .clients-logo-wrapper .client-logo {
    flex: calc(25% - 1rem);
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .about-company .para-wrap {
    row-gap: 0.5rem;
    margin-top: 1rem;
  }

  .about-company .para-wrap p {
    font-size: 1rem;
  }

  .company-stats .stats-box {
    padding: 1rem 1rem 1.25rem;
  }

  .company-stats .stats-box .value {
    font-size: 2rem;
  }

  .company-stats .stats-box h5 {
    padding-top: 0.5rem;
  }

  .featured-clients .clients-logo-wrapper .client-logo {
    flex: calc(33.33% - 1rem);
    border: 1px solid #ccc;
  }

  .featured-clients .clients-logo-wrapper .client-logo:last-child {
    display: none;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .company-stats .stats-box {
    padding: 1rem;
  }

  .company-stats .stats-box .value {
    font-size: 1.75rem;
  }

  .company-stats .stats-box h5 {
    font-size: 1rem;
  }
}

/* max 480px */
@media screen and (max-width:480px) {
  .about-company h2 {
    line-height: 1.4;
  }

  .about-company .para-wrap {
    row-gap: 0.25rem;
    margin-top: 0.75rem;
  }

  .company-stats .row>* {
    width: 100%;
  }

  .featured-clients .clients-logo-wrapper .client-logo {
    flex: calc(50% - 1rem);
  }

  .featured-clients .clients-logo-wrapper .client-logo:last-child {
    display: block;
  }
}

/* ==================
    Contact Page
=====================*/

.contact-form-section.contact-form-top {
  padding-bottom: 1.5rem;
}

.contact-form-section.contact-form-bottom {
  padding-top: 0;
}

.contact-form-section .form-intro,
.contact-form-section .form-main {
  padding: 0 2rem;
  margin-top: -0.5rem;
}

.contact-form-section .form-intro p {
  font-size: 1.25rem;
  color: #3b3b3b;
  padding-top: 1rem;
}

.contact-form-section .form-main .row {
  row-gap: 2rem;
}

.contact-form-section .form-main .form-label {
  color: #3b3b3b;
}

.contact-form-section .form-main .form-label .required {
  color: #ff0000;
}

.contact-form-section .form-main .form-control {
  border: 1px solid #707070;
  border-radius: 0;
  padding: 0.75rem;
}

.contact-form-section .form-main .form-control:focus {
  border-color: #488320;
  box-shadow: 0 0 0 0.25rem rgba(155, 220, 112, 0.25);
}

.contact-form-section .form-main .btn.btn-primary {
  margin-top: 2.5rem;
  width: 100%;
}

.contact-form-section .form-main .btn.btn-primary:focus {
  box-shadow: rgba(130, 138, 145, 0.5) 0px 0px 0px 4px;
}

.contact-form-section .mb-3 {
  margin-bottom: 0 !important;
}


/* Connect Section */
.connect-section.section {
  background-color: #f5f5f5;
  padding-top: 1rem;
}

.connect-section .connect-box {
  background-color: #fff;
  padding: 1.5rem;
  border-top: 8px solid #333;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.12);
  min-height: 100%;
}

.connect-section .connect-box h5 {
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}

.connect-section .connect-box p {
  color: #3b3b3b;
  line-height: 1.6;
}

.connect-section .connect-box a {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.connect-section .connect-box a:hover {
  text-decoration: none;
  color: #7fc045;
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .contact-form-section .form-intro,
  .contact-form-section .form-main {
    padding: 0;
    margin-top: -0.5rem;
  }

  .contact-form-section .form-intro {
    padding-bottom: 0;
  }

  .contact-form-section .form-intro p {
    font-size: 1.125rem;
    padding-top: 0.5rem;
    padding-right: 2rem;
  }

  .contact-form-section .form-main .row {
    row-gap: 1.5rem;
  }

  .contact-form-section .form-main .btn.btn-primary {
    margin-top: 2rem;
  }

  .connect-section .connect-box {
    padding: 1.25rem 1rem 1rem;
  }

  .connect-section .connect-box h5 {
    font-size: 1.125rem;
  }

  .connect-section .connect-box p {
    font-size: 0.875rem;
  }

  .connect-section .connect-box a {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .contact-form-section .form-intro {
    padding-bottom: 1.5rem;
  }

  .contact-form-section .form-intro p {
    padding-right: 0;
    font-size: 1rem;
  }

  .contact-form-section .form-main .row {
    row-gap: 1.25rem;
  }
}


/* max 767px */
@media screen and (max-width:767px) {
  .contact-form-section .form-main {
    margin-top: 0;
  }

  .contact-form-section .form-main .row {
    row-gap: 1rem;
  }

  .contact-form-section .form-main .form-control {
    padding: 0.625rem;
  }

  .contact-form-section .form-main .btn.btn-primary {
    margin-top: 1.5rem;
  }

  .connect-section .connect-box {
    padding: 1rem;
    border-top: 4px solid #3572de;
  }

  .connect-section .connect-box a {
    margin-top: 1rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {

  .contact-form-section .form-main .form-label,
  .contact-form-section .form-main .form-control,
  .contact-form-section .form-intro p {
    font-size: 0.875rem;
  }

  .connect-section .connect-box h5 {
    font-size: 1rem;
  }

  .connect-section .connect-box a {
    margin-top: 0.75rem;
  }
}

/* 375px */
@media screen and (max-width:480px) {
  .contact-form-section .form-intro p {
    padding-right: 1rem;
  }

  .connect-section .row>* {
    width: 100%;
  }
}

/* =====================
    Generic Page CSS
=======================*/

.generic-section {
  border-bottom: 1px solid #000;
}

.generic-section h1 {
  font-size: 4.5rem;
  text-align: center;
}

.generic-section .article-main {
  padding-top: 1.75rem;
}

.generic-section .article-main .last-updated {
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 1.25rem;
}

.generic-section .article-main h4 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.generic-section .article-main .content-wrap p>a {
  text-decoration: underline;
}

/* max 1199px */
@media screen and (max-width:1199px) {
  .generic-section h1 {
    font-size: 3.5rem;
  }

  .generic-section .article-main {
    padding-top: 2.25rem;
  }

  .generic-section .article-main h4 {
    padding-bottom: 0.5rem;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .generic-section h1 {
    font-size: 3rem;
  }

  .generic-section .article-main {
    padding-top: 2rem;
  }

  .generic-section .article-main .last-updated {
    padding-bottom: 1rem;
  }

  .generic-section .article-main h4 {
    padding-bottom: 0.5rem;
  }
}

/* max 767px */
@media screen and (max-width:767px) {
  .generic-section h1 {
    font-size: 2.5rem;
  }

  .generic-section .article-main {
    padding-top: 2rem;
  }

  .generic-section .article-main .last-updated {
    font-size: 1rem;
  }

  .generic-section .article-main h4 {
    font-size: 1.25rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .generic-section h1 {
    font-size: 2.25rem;
  }
}

/* max 375px */
@media screen and (max-width:375px) {
  .generic-section h1 {
    font-size: 2.25rem;
  }

  .generic-section .article-main .last-updated {
    font-size: 15px;
  }

  .generic-section .article-main h4 {
    font-size: 1.125rem;
  }
}

/*=======================
    Article Pages CSS
========================= */

.article {
  margin-top: 9rem;
}

.article ol li a {
  word-wrap: break-word;
}

.node--type-portfolio .article {
  margin-top: 6rem;
}

@media screen and (max-width:991px) {
  .node--type-portfolio .article {
    margin-top: 4rem;
  }
}

/* Article Header */
.article .article-header {
  text-align: center;
}

.article .article-header img {
  border: 6px solid #000000;
  border-radius: 2px;
}

.node--type-press .article .article-header img {
  border: 2px solid #000000;
  border-radius: 1px;
}

.article .article-header h1 {
  padding: 2.5rem 0 2rem 0;
}

/* Specific for Insight */
.insight-section .article-header h1 {
  font-size: 3rem;
}

.article .article-header .date {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  background-color: #eaf1fc;
  display: inline-block;
}

/* Article Main */
.article .article-main .content-wrap {
  margin-top: 3rem;
}

/* List Content */
.article .article-main .content-wrap.list-content {
  padding: 1.5rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.article .article-main .content-wrap.list-content.references {
  border-bottom: 0;
}

.article .article-main .content-wrap.list-content ol {
  list-style: decimal;
  padding-left: 2rem;
  padding-top: 1rem;
}

.article .article-main .content-wrap.list-content ul {
  list-style: square;
  padding-left: 2.5rem;
  padding-top: 1rem;
}

.article .article-main .content-wrap.list-content ol li,
.article .article-main .content-wrap.list-content ul li {
  color: #3b3b3b;
  font-size: 1.125rem;
  line-height: 1.6;
  padding-bottom: 0.25rem;
}

.article .article-main .content-wrap.list-content ol li {
  font-style: italic;
}

.article .article-main .content-wrap.list-content ol li:last-child {
  padding-bottom: 0;
}

.article .article-main .content-wrap.list-content ul li::marker {
  color: #488320;
  font-size: 1.5rem;
}

.article .article-main .content-wrap.list-content li a {
  color: #3b3b3b;
  text-decoration: underline;
  transition: .2s;
}

.article .article-main .content-wrap.list-content li a:hover {
  color: #7fc045;
}

/* Headings */
.article .article-main .content-wrap h2 {
  font-size: 2.5rem;
}

.article .article-main .content-wrap h3 {
  padding-top: 2rem;
  font-size: 1.5rem;
}

.article .article-main .content-wrap h4 {
  padding-top: 1.5rem;
}

.article .article-main .content-wrap.list-content h3 {
  padding-top: 0;
}

/* Paragraphs */
.article .article-main .content-wrap p {
  font-size: 1.125rem;
  line-height: 1.7;
  padding-top: 1rem;
}

.article .article-main .content-wrap h3+p {
  padding-top: 0.5rem;
}

.article .article-main .content-wrap h4+p {
  padding-top: 0.5rem;
}

.article .article-main .content-wrap p:first-child {
  padding-top: 0;
}

.article .article-main .content-wrap p a {
  transition: .3s;
}

.article .article-main .content-wrap p a:hover {
  color: #7fc045;
}

/*=======================
    Video Article Pages CSS
========================= */

.article .video-container {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 56.25%; /* Aspect ratio for 16:9 videos */
}

.article .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* Post Share Block */
.article .article-main.news-main {
  padding-bottom: 3rem;
}


/* Post Share Block */
.insight-section .post-share-block {
  padding-top: 4rem;
  border-top: 1px solid #000;
}

.insight-section .post-share-block h2 {
  text-align: center;
  font-size: 2.5rem;
}

.insight-section .post-share-block .social-icons-wrap {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  padding-top: 2.5rem;
}

.post-share-block .social-icons-wrap .social-icon {
  border: 2px solid #a4e56a;
  border-radius: 2px;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebf8e2;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.post-share-block .social-icons-wrap .social-icon:hover {
  background-color: #488320;
}

.post-share-block .social-icons-wrap .social-icon svg {
  fill: #488320;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
  height: 24px;
  width: 24px;
}

.post-share-block .social-icons-wrap .social-icon:hover svg {
  fill: #fff;
}

/* Explore More Section */
.explore-more-section {
  border-bottom: 1px solid #000;
}

.explore-more-section .container {
  background-color: #fff;
  border-top: 1px solid #000;
}

.node--type-portfolio .explore-more-section .container {
  border-top: none;
}

.explore-more-section .headline-box {
  margin-bottom: 0;
  height: 100%;
}


/* max 1199px */
@media screen and (max-width:1199px) {
  .article {
    margin-top: 7.5rem;
  }

  .article .article-header h1 {
    padding: 1.75rem 0 2rem 0;
  }

  .insight-section .article-header h1 {
    font-size: 2.5rem;
  }

  .article .article-main .content-wrap {
    margin-top: 2.25rem;
  }

  .insight-section .post-share-block h2,
  .article .article-main .content-wrap h2 {
    font-size: 2.25rem;
  }

  .article .article-main .content-wrap h3 {
    padding-top: 1.5rem;
  }

  .article .article-main .content-wrap p {
    padding-top: 0.75rem;
  }

  .article .article-main .content-wrap.list-content ul li {
    padding-bottom: 0;
  }

  .insight-section .post-share-block {
    padding-top: 2.5rem;
  }

  .post-share-block .social-icons-wrap .social-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}


/* max 991px */
@media screen and (max-width:991px) {
  .article {
    margin-top: 5.5rem;
  }

  .article .article-header .date {
    font-size: 1rem;
  }

  .article .article-main .content-wrap {
    margin-top: 2rem;
  }

  .article .post-share-block h2,
  .article .article-main .content-wrap h2 {
    font-size: 2rem;
  }

  .insight-section .article-header h1 {
    font-size: 2.25rem;
  }

  .article .article-main .content-wrap h3+p {
    padding-top: 0.25rem;
  }

  .article .article-main .content-wrap h4+p {
    padding-top: 0.25rem;
  }

  .article .article-main .content-wrap.list-content ul {
    padding-top: 0.75rem;
  }

  .insight-section .post-share-block .social-icons-wrap {
    padding-top: 2rem;
  }
}


/* max 767px */
@media screen and (max-width:767px) {
  .article .article-header h1 {
    padding: 1.25rem 0 1.5rem 0;
  }

  .insight-section .article-header h1 {
    font-size: 2rem;
  }

  .article .article-header .date {
    font-size: 0.875rem;
  }

  .article .post-share-block h2,
  .article .article-main .content-wrap h2 {
    font-size: 1.75rem;
  }

  .article .article-main .content-wrap h3 {
    font-size: 1.25rem;
    padding-top: 1rem;
  }

  .article .article-main .content-wrap h4 {
    font-size: 1.125rem;
    padding-top: 1rem;
  }

  .article .article-main .content-wrap p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .article .article-main .content-wrap.list-content ul {
    padding-top: 0.25rem;
  }

  .article .article-main .content-wrap.list-content ol li,
  .article .article-main .content-wrap.list-content ul li {
    font-size: 1rem;
  }

  .insight-section .post-share-block .social-icons-wrap {
    column-gap: 1.5rem;
  }

  .post-share-block .social-icons-wrap .social-icon {
    width: 3rem;
    height: 3rem;
  }

  .post-share-block .social-icons-wrap .social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}


/* max 575px */
@media screen and (max-width:575px) {
  .article {
    margin-top: 5rem;
  }

  .article ol li {
    font-size: 0.9375rem;
  }

  .news-section .article-header h1 {
    padding: 1.25rem 0.75rem 1.5rem;
  }

  .article .article-header .date {
    font-size: 0.875rem;
  }

  .article .article-main .content-wrap {
    margin-top: 2rem;
  }

  .article .post-share-block h2,
  .article .article-main .content-wrap h2 {
    font-size: 1.75rem;
  }

  .article .article-main .content-wrap p {
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 0.5rem;
  }

  .explore-more-section .container {
    max-width: calc(576px - 1rem);
  }

  .article .article-main .content-wrap.list-content {
    padding: 1.25rem 0;
  }

  .insight-section .post-share-block {
    padding-top: 1.5rem;
  }

  .post-share-block .social-icons-wrap .social-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .post-share-block .social-icons-wrap .social-icon svg {
    width: 1rem;
    height: 1rem;
  }
}

/* max 375px */
@media screen and (max-width:375px) {
  .article {
    margin-top: 4.5rem;
  }

  .article .article-header h1 {
    padding: 1.25rem 0;
  }

  .insight-section .article-header h1 {
    font-size: 1.75rem;
  }

  .article .article-main .content-wrap {
    margin-top: 1.5rem;
  }

  .article .post-share-block h2,
  .article .article-main .content-wrap h2 {
    font-size: 1.375rem;
  }

  .article .article-main .content-wrap h3 {
    font-size: 1.125rem;
  }

  .article .article-main .content-wrap h4 {
    font-size: 1rem;
  }

  .article .article-main .content-wrap p {
    font-size: 0.9375rem;
  }

  .explore-more-section .container {
    max-width: calc(375px - 1rem);
  }

  .article .article-main .content-wrap.list-content ol li,
  .article .article-main .content-wrap.list-content ul li {
    font-size: 15px;
  }

  .insight-section .post-share-block .social-icons-wrap {
    padding-top: 1.5rem;
  }
}

/* ----------------------
    Portfolio Page CSS
------------------------ */
.portfolio-section .article-header {
  max-width: 73rem;
  margin: 0 auto;
}

.portfolio-section .article-header h1 {
  padding: 1rem 0 2rem 0;
}

.portfolio-section .article-header .title {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 0 3rem 0;
}

.portfolio-section .article-header .portfolio-img img {
  width: 100%;
  cursor: grab;
  border: 1px solid #000;
}

.portfolio-section .article-header .portfolio-img img:active {
  cursor: grabbing;
}

/* Article Main */
.portfolio-section .article-main {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid #000;
}

.portfolio-section .article-main .content-wrap:first-child {
  margin-top: 0;
}

/* Portfolio Blocks */
.portfolio-section ul {
  list-style: none;
}

.portfolio-section .portfolio-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 10rem;
}

.portfolio-section .portfolio-info-blocks h6 {
  font-size: 1.25rem;
  font-weight: 700;
}

.portfolio-section .portfolio-info-blocks p {
  font-size: 1.25rem;
  padding-top: 0.375rem;
}

.portfolio-section .portfolio-info-blocks p>a {
  color: #000;
  text-decoration: underline;
  transition: 0.2s;
}

.portfolio-section .portfolio-info-blocks p>a:hover {
  color: #7fc045;
  text-decoration: none;
}

.portfolio-section .portfolio-info-blocks ul {
  padding-left: 1.5rem;
  padding-top: 0.5rem;
}

.portfolio-section .portfolio-info-blocks ul li {
  font-size: 1.25rem;
  position: relative;
}

.portfolio-section .portfolio-info-blocks {
  top: 8.5rem;
}

.portfolio-section .portfolio-info-blocks ul li::before {
  content: "-";
  position: absolute;
  left: -1.5rem;
}

/* Main content CheckList */
.portfolio-section .content-wrap ul.check-list {
  padding-left: 2rem;
  padding-top: 1rem;
}

.portfolio-section .content-wrap ul.check-list li {
  font-size: 1.125rem;
  line-height: 1.6;
  position: relative;
  padding-bottom: 0.5rem;
}

.portfolio-section .content-wrap ul.check-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2rem;
  transform: translateY(80%);
  width: 1.125rem;
  height: 0.75rem;
  background-image: url(../../images/check-icon-primary.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* Media Queries */
@media screen and (max-width:1199px) {
  .portfolio-section .article-header .title {
    font-size: 1.25rem;
  }

  .portfolio-section .article-header h1 {
    padding: 1rem 0 3.5rem 0;
  }

  .portfolio-section .article-main {
    margin-top: 4rem;
    padding-top: 4rem;
  }

  .article .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }

  .portfolio-section .portfolio-info-blocks h6,
  .portfolio-section .portfolio-info-blocks p,
  .portfolio-section .portfolio-info-blocks ul li {
    font-size: 1.125rem;
  }
}

@media screen and (max-width:991px) {
  .portfolio-section .article-header h1 {
    padding: 0.5rem 0 2.5rem 0;
  }

  .portfolio-section .swiper-pagination {
    padding-top: 2.5rem;
  }

  .portfolio-section .portfolio-info-blocks {
    padding-bottom: 4.5rem;
    position: static;
  }

  .portfolio-section .article-main {
    margin-top: 3rem;
  }
}

@media screen and (max-width:767px) {
  .portfolio-section .article-header .title {
    font-size: 1.125rem;
  }

  .portfolio-section .swiper-pagination {
    padding-top: 2rem;
  }

  .article .swiper-pagination .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
  }

  .portfolio-section .portfolio-info-blocks {
    padding-bottom: 2.5rem;
  }

  .portfolio-section .article-main {
    margin-top: 2.5rem;
    padding-top: 3rem;
  }

  .portfolio-section .portfolio-info-blocks h6 {
    font-size: 1.1rem;
  }

  .portfolio-section .portfolio-info-blocks p,
  .portfolio-section .portfolio-info-blocks ul li,
  .portfolio-section .content-wrap ul.check-list li {
    font-size: 1rem;
  }

  .portfolio-section .content-wrap ul.check-list {
    padding-top: 0.75rem;
  }
}

@media screen and (max-width:575px) {
  .portfolio-section .article-header .title {
    font-size: 1rem;
  }

  .portfolio-section .article-header h1 {
    padding: 0.5rem 0 1.5rem 0;
  }

  .portfolio-section .article-main {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

@media screen and (max-width:375px) {
  .portfolio-section .swiper-pagination {
    padding-top: 1.25rem;
  }

  .portfolio-section .portfolio-info-blocks {
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .portfolio-section .portfolio-info-blocks h6,
  .portfolio-section .portfolio-info-blocks p,
  .portfolio-section .portfolio-info-blocks ul li,
  .portfolio-section .content-wrap ul.check-list li {
    font-size: 15px;
  }

  .portfolio-section .portfolio-info-blocks ul {
    padding-left: 1.25rem;
  }

  .portfolio-section .portfolio-info-blocks ul li::before {
    left: -1.25rem;
  }

  .portfolio-section .content-wrap ul.check-list li {
    padding-bottom: 0.25rem;
  }
}

/* ================================================== */

/* ---------------------------------
  Overwrited NEW & UPDATED CSS
/* ---------------------------------*/

body.toolbar-horizontal.toolbar-fixed.user-logged-in nav.tabs {
  margin-bottom: 0;
}

/* View-Edit-Delete-Revision Tabs-Header CSS */
body.toolbar-horizontal.toolbar-fixed.user-logged-in nav.tabs .nav-tabs.primary,
body.page-user-login nav.tabs .nav-tabs.primary,
body.page-user-password nav.tabs .nav-tabs.primary {
  position: fixed;
  top: 79px;
  left: 0;
  right: 0;
  background-color: #eee;
  z-index: 1001;
}


/* State when the Admin second nav is hidden */
body.toolbar-horizontal.toolbar-fixed.user-logged-in:not(.toolbar-tray-open) nav.tabs .nav-tabs.primary {
  top: 39px;
}


/* Specific for Login-Page Pimary-Tabs-Header CSS */
body.page-user-login nav.tabs .nav-tabs.primary,
body.page-user-password nav.tabs .nav-tabs.primary {
  top: 121px;
}

/* CSS for preventing toolbar-menu to break */
.toolbar-menu-administration .toolbar-menu.claro-toolbar-menu {
  overflow-y: hidden;
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
}

/* CSS To make contextual trigger above the Primary-tab */
.contextual {
  z-index: 1005;
}

/* Node image styling */
.node .field--type-image {
  float: none;
  margin-right: 0;
}

/* Header space issue */
.node__content {
  margin-top: 0;
}

/* Client card image styling */
.client-cards-wrap .client-card .card-img img {
  width: 100%;
}

/* Insight card styling */
.insight-cards-wrap .insight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.insight-cards-wrap .insight-card .card-img-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.insight-cards-wrap .insight-card .card-body {
  display: flex;
  flex-direction: column;
}

.insight-cards-wrap .insight-card .card-body p {
  margin-bottom: 2rem;
}

.insight-cards-wrap .insight-card .card-body .readmore-btn {
  margin-top: auto;
  max-width: fit-content;
}

/* Contact form button styling */
.contact-form-section .form-main .btn.btn-primary {
  padding: 0.75rem 1.5rem;
  border: 2px solid #7fc045;
  background-image: url('https://i.ibb.co/wz7gLmt/arrow-upright-icon-white-1.png');
  background-repeat: no-repeat;
  background-position: 65% 55%;
  background-size: 14px;
  transition: cubic-bezier(0.19, 1, 0.22, 1) .5s;
}

.contact-form-section .form-main .btn.btn-primary:hover {
  background-color: #7fc045;
  background-position: 66% 55%;
}

/* reCAPTCHA styling */
.contact-form-section .g-recaptcha {
  margin-top: 1.5rem;
}


/* Article content styling */
.article .article-main .content-wrap hr {
  margin: 2rem 0;
}

.article .article-main .content-wrap h2 {
  margin: 2.5rem 0 1rem 0;
}

.article .article-main .content-wrap h3 {
  margin: 2.25rem 0 0.75rem 0;
  padding: 0;
}

.article .article-main .content-wrap h6 {
  word-break: break-word;
  padding-bottom: 0.5rem;
  font-weight: 600;
}

.article .article-main .content-wrap h3+p {
  padding-top: 0;
  margin-top: 1rem;
}

.article .article-main .content-wrap p {
  margin-top: 1.25rem;
  padding-top: 0;
}

.article .article-main .content-wrap ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.75rem;
}

.article .article-main .content-wrap ul li {
  font-size: 1.125rem;
}

.portfolio-section .article-main .content-wrap h2:first-child {
  margin-top: 0;
}


/* Login Page CSS */
.block-system .content .user-login-form,
.block-system .content .user-pass {
  max-width: 600px;
  margin: 280px auto 160px;
  padding: 0 1rem;
}

/* --------- ADMIN HEADER CSS ---------- */

body.toolbar-horizontal.toolbar-fixed.user-logged-in .header {
  margin-top: 42px;
}

body.toolbar-horizontal.toolbar-fixed.user-logged-in .header>.navbar {
  top: 121px;
}


/* State when the Admin second nav is hidden */

body.toolbar-horizontal.toolbar-fixed.user-logged-in:not(.toolbar-tray-open) .header {
  margin-top: 0;
}

body.toolbar-horizontal.toolbar-fixed.user-logged-in:not(.toolbar-tray-open) .header>.navbar {
  top: 81px;
}

/* ----------------------------
  Overwrited Responsive CSS
/* -------------------------- */

@media screen and (max-width: 1399px) {
  .contact-form-section .form-main .btn.btn-primary {
    background-position: 67% 55%;
  }

  .contact-form-section .form-main .btn.btn-primary:hover {
    background-position: 68% 55%;
  }
}

@media screen and (max-width: 1199px) {
  .testimonial-box .testimonial-content .client-info img {
    max-width: 8rem;
    height: 8rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 3.5rem;
  }
}

@media screen and (max-width: 991px) {

  body.page-user-login nav.tabs .nav-tabs.primary,
  body.page-user-password nav.tabs .nav-tabs.primary {
    top: 71px;
  }

  .article .article-main .content-wrap h2 {
    margin: 2rem 0 0.75rem 0;
  }

  .article .article-main .content-wrap h3 {
    margin: 1.75rem 0 0.5rem 0;
  }

  .article .article-main .content-wrap h3+p {
    margin-top: 0.5rem;
  }

  .article .article-main .content-wrap p {
    margin-top: 0.75rem;
  }

  .insight-cards-wrap .insight-card .card-body p {
    margin-bottom: 1.25rem;
  }

  .contact-form-section .form-main .btn.btn-primary {
    background-position: 72% 55%;
  }

  .contact-form-section .form-main .btn.btn-primary:hover {
    background-position: 73% 55%;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 17rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .article .article-main .content-wrap ul li {
    font-size: 1rem;
  }

  .article .article-main .content-wrap hr {
    margin: 1.5rem 0;
  }

  .testimonial-box .testimonial-content .client-info img {
    max-width: 7rem;
    height: 7rem;
  }

  .insight-cards-wrap .insight-card .card-body p {
    margin-bottom: 1rem;
  }

  .contact-form-section .form-main .btn.btn-primary {
    background-position: 63% 55%;
  }

  .contact-form-section .form-main .btn.btn-primary:hover {
    background-position: 64% 55%;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 14rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 2rem;
  }
}

@media screen and (max-width: 575px) {
  .article .article-main .content-wrap h2 {
    margin: 1.75rem 0 0.5rem 0;
  }

  .article .article-main .content-wrap h3 {
    margin: 1.5rem 0 0.375rem 0;
  }

  .article .article-main .content-wrap h3+p {
    margin-top: 0.375rem;
  }

  .article .article-main .content-wrap p {
    margin-top: 0.5rem;
  }

  .article .article-main .content-wrap ul li,
  .article .article-main .content-wrap h6 {
    font-size: 15px;
  }

  .testimonial-box .testimonial-content .client-info img {
    max-width: 5rem;
    height: 5rem;
  }

  .contact-form-section .form-main .btn.btn-primary {
    background-image: none;
  }

  .footer .footer-row-1 .footer-nav {
    max-width: 14rem;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .footer .footer-row-1 .footer-nav {
    max-width: 100%;
  }

  .footer .footer-row-1 .footer-nav ul {
    column-gap: 2rem;
  }
}

/* --- New Updated Stage CSS --- */

/* Row spacing issue */
.client-cards-wrap .row,
.insight-cards-wrap .row {
  margin-top: 0;
}

/* read news link alignment css */
.explore-more-section .headline-box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.explore-more-section .headline-box .date {
  max-width: fit-content;
}

.explore-more-section .headline-box h3 {
  margin-bottom: 1.5rem;
}

.explore-more-section .headline-box .readmore-btn {
  margin-top: auto;
  max-width: fit-content;
}

/* Responsive css */
@media screen and (max-width:1199px) {
  .explore-more-section .headline-box h3 {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width:767px) {
  .explore-more-section .headline-box h3 {
    margin-bottom: 1rem;
  }
}

@media screen and (max-width:575px) {
  .explore-more-section .headline-box h3 {
    margin-bottom: 0.75rem;
  }
}

/* Footer Copyright Text alignment  */

.footer .footer-row-2 .row {
  align-items: center;
}


/* ------------------------------- */
/* Status Message All Updated CSS */
/* ------------------------------- */

.simple-status-messages {
  width: 560px;
  top: calc(100% / 6);
  right: 50%;
  transform: translateX(50%);
}

.simple-status-messages .status-messages {
  padding: 60px 32px 60px 60px;
  background-position-y: center;
  background-position-x: 32px;
  background-size: 20px;
  border: none;
  border-radius: 0;
  border-top: 6px solid;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.12);
}

.simple-status-messages .messages--status {
  border-color: #77b259 ;
}

.simple-status-messages .messages--info {
  border-color: #77b259 ;
}

.simple-status-messages .messages--webform {
  border-color: #77b259 ;
}

.simple-status-messages .messages--warning {
  border-color: #e09600 ;
}

.simple-status-messages .messages--error {
  border-color: #e62600 ;
}

.simple-status-messages .status-message-close {
  top: 2px;
  right: 16px;
}

.simple-status-messages .status-message-close span {
  font-size: 24px;
  opacity: 0.5;
}

.simple-status-messages .status-message-close span:hover,
.simple-status-messages .status-message-close span:focus,
.simple-status-messages .status-message-close span:active {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .simple-status-messages {
    width: calc(100% - 32px);
    position: fixed;
  }
}

@media screen and (max-width: 575px) {
  .simple-status-messages .status-messages  {
    padding: 48px 24px 48px 52px;
    background-position-x: 24px;
    background-size: 18px;
  }
}

/* PROJECT DETAILS SLIDER */

.portfolio-section .project-details-slider {
  margin-top: 2rem;
}

.portfolio-section .project-details-slider .swiper {
  overflow-y: visible;
  overflow-x: clip;
  cursor: grab;
}

/* Box */
.portfolio-section .project-details-box {
  min-height: 17rem;
  padding: 4.5rem 1.5rem 1.5rem;
  background-color: #fff;
  border-top: 6px solid #333;
  box-shadow: 0px 0px 16px 0.64px rgba(17, 17, 17, 0.12);
}

.portfolio-section .project-details-box .tag {
  right: 0;
  top: 1.5rem;
  position: absolute;
  color: #333;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  max-width: fit-content;
  background-color: #eaf1fc;
}

.portfolio-section .project-details-slider .project-details-box .title {
  font-size: 1.5rem;
}

.portfolio-section .project-details-slider .project-details-box .desc {
  color: #333;
  padding-top: 1rem;
  margin-top: 0;
}


@media screen and (min-width:768px) {

  /* Pagination */
  .project-details-slider .project-details-pagination {
    padding-top: 2.5rem;
  }

  .project-details-slider .project-details-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
    margin: 0 .375rem;
  }
}

@media screen and (max-width:767px) {
  .portfolio-section .project-details-box {
    padding: 4rem 1.5rem 1.5rem
  }

  .project-details-slider .project-details-box .tag {
    top: 1.5rem;
    padding: 0.5rem 1rem;
  }

  .portfolio-section .project-details-slider .project-details-box .title {
    font-size: 1.25rem;
  }

  .portfolio-section .project-details-slider .project-details-box .desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    padding-top: 0.75rem;
  }
}

@media screen and (max-width:575px) {
  .portfolio-section .project-details-slider {
    margin-top: 1rem;
  }

  .portfolio-section .project-details-box {
    min-height: 15rem;
    padding: 4rem 1rem 1rem;
  }

  .project-details-slider .project-details-box .tag {
    font-size: 0.75rem;
  }

  .portfolio-section .project-details-slider .project-details-box .title {
    font-size: 1.125rem;
  }
}
