@charset "UTF-8";
.navy-blue {
  background-color: #12317C !important;
}

.primary-blue {
  background-color: #1A73E8 !important;
}

.light-blue {
  background-color: #4A92F2 !important;
}

.dark-green {
  background-color: #155920 !important;
}

.forest-green {
  background-color: #2C883A !important;
}

.light-green {
  background-color: #54BA64 !important;
}

.night-purple {
  background-color: #3E0C77 !important;
}

.dark-purple {
  background-color: #6A38A2 !important;
}

.light-purple {
  background-color: #8B54CB !important;
}

.black {
  background-color: black !important;
}

@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Regular.woff2") format("woff2"), url("../fonts/EuclidCircularB-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Medium.woff2") format("woff2"), url("../fonts/EuclidCircularB-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Bold.woff2") format("woff2"), url("../fonts/EuclidCircularB-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Light.woff2") format("woff2"), url("../fonts/EuclidCircularB-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/EuclidCircularB-Italic.woff2") format("woff2"), url("../fonts/EuclidCircularB-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
.hide {
  display: none;
}

.fade-in-on-scroll {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.fade-in-on-scroll.visible {
  opacity: 1;
}

/*
- Fade In
- Fade Up
- Fade In Down
- Fade In Left
- Fade In Right
- Scale In
- Rotate In
- Slide Up
- Slide Down
- Slide Left
- Slide Right
*/
.animate-delay-0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.animate-delay-100 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.animate-delay-200 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.animate-delay-300 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.animate-delay-400 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.animate-delay-500 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.animate-duration-300 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

.animate-duration-600 {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}

.animate-duration-900 {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
}

.animate-duration-1200 {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}

@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-fade-in {
  opacity: 0;
  -webkit-animation: fade-in 0.6s ease-out forwards;
          animation: fade-in 0.6s ease-out forwards;
}

@-webkit-keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-fade-in-up {
  opacity: 0;
  -webkit-animation: fade-in-up 0.6s ease-out forwards;
          animation: fade-in-up 0.6s ease-out forwards;
}

@-webkit-keyframes fade-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fade-in-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-fade-in-down {
  opacity: 0;
  -webkit-animation: fade-in-down 0.6s ease-out forwards;
          animation: fade-in-down 0.6s ease-out forwards;
}

@-webkit-keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animate-fade-in-left {
  opacity: 0;
  -webkit-animation: fade-in-left 0.6s ease-out forwards;
          animation: fade-in-left 0.6s ease-out forwards;
}

@-webkit-keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animate-fade-in-right {
  opacity: 0;
  -webkit-animation: fade-in-right 0.6s ease-out forwards;
          animation: fade-in-right 0.6s ease-out forwards;
}

@-webkit-keyframes scale-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.animate-scale-in {
  opacity: 0;
  -webkit-animation: scale-in 0.6s ease-out forwards;
          animation: scale-in 0.6s ease-out forwards;
}

@-webkit-keyframes rotate-in {
  from {
    opacity: 0;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes rotate-in {
  from {
    opacity: 0;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  to {
    opacity: 1;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.animate-rotate-in {
  opacity: 0;
  -webkit-animation: rotate-in 0.6s ease-out forwards;
          animation: rotate-in 0.6s ease-out forwards;
}

@-webkit-keyframes slide-up {
  from {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide-up {
  from {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-slide-up {
  -webkit-animation: slide-up 0.6s ease-out forwards;
          animation: slide-up 0.6s ease-out forwards;
}

@-webkit-keyframes slide-down {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.animate-slide-down {
  -webkit-animation: slide-down 0.6s ease-out forwards;
          animation: slide-down 0.6s ease-out forwards;
}

@-webkit-keyframes slide-left {
  from {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-left {
  from {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animate-slide-left {
  -webkit-animation: slide-left 0.6s ease-out forwards;
          animation: slide-left 0.6s ease-out forwards;
}

@-webkit-keyframes slide-right {
  from {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-right {
  from {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.animate-slide-right {
  -webkit-animation: slide-right 0.6s ease-out forwards;
          animation: slide-right 0.6s ease-out forwards;
}

.image-hover-base, .hover-rotate-slight, .hover-shift-right, .hover-shift-left, .hover-shift-down, .hover-shift-up, .hover-subtle-scale, .hover-zoom-in, .hover-zoom-out {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

@-webkit-keyframes hover-zoom-out {
  to {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes hover-zoom-out {
  to {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.hover-zoom-out {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.hover-zoom-out:hover {
  -webkit-animation: hover-zoom-out 0.3s ease-out forwards;
          animation: hover-zoom-out 0.3s ease-out forwards;
}

@-webkit-keyframes hover-zoom-in {
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes hover-zoom-in {
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.hover-zoom-in:hover {
  -webkit-animation: hover-zoom-in 0.3s ease-out forwards;
          animation: hover-zoom-in 0.3s ease-out forwards;
}

@-webkit-keyframes hover-subtle-scale {
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes hover-subtle-scale {
  to {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.hover-subtle-scale:hover {
  -webkit-animation: hover-subtle-scale 0.3s ease-out forwards;
          animation: hover-subtle-scale 0.3s ease-out forwards;
}

@-webkit-keyframes hover-shift-up {
  to {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}

@keyframes hover-shift-up {
  to {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}
.hover-shift-up:hover {
  -webkit-animation: hover-shift-up 0.3s ease-out forwards;
          animation: hover-shift-up 0.3s ease-out forwards;
}

@-webkit-keyframes hover-shift-down {
  to {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}

@keyframes hover-shift-down {
  to {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
}
.hover-shift-down:hover {
  -webkit-animation: hover-shift-down 0.3s ease-out forwards;
          animation: hover-shift-down 0.3s ease-out forwards;
}

@-webkit-keyframes hover-shift-left {
  to {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
}

@keyframes hover-shift-left {
  to {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
  }
}
.hover-shift-left:hover {
  -webkit-animation: hover-shift-left 0.3s ease-out forwards;
          animation: hover-shift-left 0.3s ease-out forwards;
}

@-webkit-keyframes hover-shift-right {
  to {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}

@keyframes hover-shift-right {
  to {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
  }
}
.hover-shift-right:hover {
  -webkit-animation: hover-shift-right 0.3s ease-out forwards;
          animation: hover-shift-right 0.3s ease-out forwards;
}

@-webkit-keyframes hover-rotate-slight {
  to {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}

@keyframes hover-rotate-slight {
  to {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
}
.hover-rotate-slight:hover {
  -webkit-animation: hover-rotate-slight 0.3s ease-out forwards;
          animation: hover-rotate-slight 0.3s ease-out forwards;
}

.fact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.fact .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.fact .top .int {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#1A73E8));
  background: linear-gradient(180deg, #ffffff 0%, #1A73E8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 82px;
  font-weight: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fact .top .int .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
}
.fact .top .int .number .digit-container {
  position: relative;
  display: inline-block;
  width: 0.6em;
  height: 1.2em;
  text-align: center;
  overflow: hidden;
}
.fact .top .int .number .digit-container .digit {
  position: absolute;
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.fact .top .int .number .digit-container .digit.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.fact .top .subheading {
  font-size: 16px;
  font-weight: 500;
  color: #565656;
}
.fact .description {
  font-size: 14px;
  font-weight: 400;
  color: #565656;
  line-height: 1.6em;
}

a {
  color: #1A73E8;
  text-decoration: none;
}
a:hover {
  color: #FF683F;
  text-decoration: underline;
}

.general-inpage-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 10px;
  color: #1A73E8;
  background-color: white;
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.general-inpage-button:hover {
  color: white;
  background-color: #1A73E8;
}

.wp-block-button .wp-block-button__link,
.wp-block-button .wp-element-button {
  background-color: #1A73E8;
}
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-element-button:hover {
  background-color: #FF683F;
  color: white;
  text-decoration: none;
}
.wp-block-button.white-button .wp-block-button__link,
.wp-block-button.white-button .wp-element-button {
  background-color: white;
  color: #1A73E8;
}
.wp-block-button.white-button .wp-block-button__link:hover,
.wp-block-button.white-button .wp-element-button:hover {
  background-color: #12317C;
  color: white;
  text-decoration: none;
}

.primary-button {
  padding: 14px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  background-color: white;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
  z-index: 1;
  text-decoration: none !important;
  cursor: pointer;
}
.primary-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: width 0.8s ease-in-out;
  transition: width 0.8s ease-in-out;
  z-index: -1;
}
.primary-button.primary-blue {
  color: #1A73E8;
}
.primary-button.primary-blue::before {
  background-color: #12317C;
}
.primary-button.primary-blue .arrow svg path {
  stroke: white;
}
.primary-button:hover {
  background-color: transparent;
  color: white;
}
.primary-button:hover::before {
  width: 300%;
}
.primary-button:hover .arrow {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  width: 21px;
}
.primary-button .arrow {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  width: 0;
  -webkit-transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, width 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, width 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.primary-button .arrow svg path {
  -webkit-transition: stroke 0.5s ease-in-out;
  transition: stroke 0.5s ease-in-out;
}

.new-primary-button {
  padding: 14px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  color: #1A73E8;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  text-decoration: none !important;
  cursor: pointer;
}
.new-primary-button::before {
  width: 2%;
  height: 2%;
  content: "";
  display: block;
  opacity: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
  background-color: #1A73E8;
}
.new-primary-button .label {
  position: relative;
  z-index: 1;
}
.new-primary-button .arrow {
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}
.new-primary-button .arrow .line {
  width: 23px;
  height: 2px;
  position: absolute;
  top: 6px;
  right: -4px;
  display: block;
  background-color: #999;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.new-primary-button:hover {
  color: white;
}
.new-primary-button:hover::before {
  width: 600px;
  height: 600px;
  opacity: 1;
}
.new-primary-button:hover .arrow {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-color: white;
}
.new-primary-button:hover .arrow .line {
  background-color: white;
}

.duel-arrow-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.duel-arrow-button .label {
  height: 50px;
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  background-color: #1A73E8;
  font-weight: 500;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .duel-arrow-button .label {
    height: auto;
    padding: 10px 20px;
    font-size: 14px;
  }
}
.duel-arrow-button .initial-arrow {
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #1A73E8;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .duel-arrow-button .initial-arrow {
    display: none;
  }
}
.duel-arrow-button .active-arrow {
  width: 0;
  height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.duel-arrow-button.white-button .label {
  background-color: white;
  color: #1A73E8;
}
.duel-arrow-button.white-button .initial-arrow {
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: white;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .duel-arrow-button.white-button .initial-arrow {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40px;
    height: 40px;
  }
}
.duel-arrow-button.white-button .initial-arrow svg path {
  stroke: #1A73E8;
}
.duel-arrow-button.white-button .active-arrow {
  width: 0;
  height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .duel-arrow-button.white-button .active-arrow {
    display: none;
  }
}
.duel-arrow-button:hover .label {
  background-color: transparent;
  color: #1A73E8;
}
.duel-arrow-button:hover .initial-arrow {
  width: 0px;
  height: 0px;
}
.duel-arrow-button:hover .active-arrow {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .duel-arrow-button:hover .active-arrow {
    display: none;
  }
}
.duel-arrow-button.white-button:hover .label {
  color: white;
}

.arrow-left-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.arrow-left-button .label {
  height: 50px;
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  background-color: #1A73E8;
  font-weight: 500;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .arrow-left-button .label {
    height: initial;
    padding: 10px 20px;
    font-size: 14px;
  }
}
.arrow-left-button .active-arrow {
  width: 0;
  height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.arrow-left-button.mini-button {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.arrow-left-button.mini-button .label {
  padding: 0;
  background-color: transparent;
  color: #12317C;
  height: 30px;
  font-size: 16px;
}
.arrow-left-button.mini-button .active-arrow svg {
  width: 14px;
  height: 14px;
}
.arrow-left-button.white-button .label {
  background-color: white;
  color: #1A73E8;
}
.arrow-left-button.white-button .active-arrow {
  width: 0;
  height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.arrow-left-button:hover .label, .arrow-left-button.active .label {
  background-color: transparent;
  color: #1A73E8;
}
.arrow-left-button:hover .active-arrow, .arrow-left-button.active .active-arrow {
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .arrow-left-button:hover .active-arrow, .arrow-left-button.active .active-arrow {
    display: none;
  }
}
.arrow-left-button.mini-button:hover .label {
  color: #1A73E8;
}
.arrow-left-button.mini-button:hover .active-arrow {
  width: 30px !important;
  height: 30px !important;
}
.arrow-left-button.mini-button.active .active-arrow {
  width: 30px !important;
  height: 30px !important;
}
.arrow-left-button.white-button:hover .label {
  color: white;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Euclid Circular B", sans-serif;
  font-weight: 400;
  background-color: #fff;
  color: #12317C;
}

.skip-link {
  position: absolute;
  top: -40px; /* Move off-screen */
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0; /* Bring into view when focused */
}

input, select, button {
  font-family: "Euclid Circular B", sans-serif;
}

main {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.thin-container {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1220px) {
  .thin-container {
    max-width: initial;
    padding: 0 30px;
  }
}

.extra-thin-container {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .extra-thin-container {
    max-width: initial;
    padding: 0 30px;
  }
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
header .thin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .thin-container h1 {
  font-weight: 700;
  margin: 0;
  font-size: 2.5rem;
}
header .thin-container p {
  font-weight: 300;
  font-size: 1.2rem;
  margin: 5px 0;
}
header .thin-container .site-branding {
  background-color: white;
  border-radius: 20px;
  padding: 2px 17px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .thin-container .site-branding .logo {
  width: 175px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
}
header .thin-container .site-branding .logo .light {
  opacity: 0;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .thin-container .site-branding .logo .dark {
  opacity: 1;
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .thin-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header .thin-container ul li {
  margin: 0;
  padding: 0;
}
header .thin-container nav {
  opacity: 1;
  background-color: white;
  border-radius: 20px;
  padding: 5px 6px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .thin-container nav .hamburger {
  display: none;
}
header .thin-container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
header .thin-container nav ul li a {
  padding: 10px 18px;
  display: block;
  border-radius: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #12317C;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .thin-container nav ul li a:hover {
  color: white;
  background-color: #12317C;
}
header .thin-container nav ul li.current-menu-item a {
  color: white;
  background-color: #12317C;
}
header .thin-container nav ul li .sub-menu {
  width: 1200px;
  height: 1200px;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-50%) translateY(-1300px);
          transform: translateX(-50%) translateY(-1300px);
  background-color: #1A73E8;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
header .thin-container nav ul li .sub-menu .menu-contents {
  width: 850px;
  position: absolute;
  top: 700px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
header .thin-container nav ul li .sub-menu .menu-contents a {
  max-height: 30px;
  color: white !important;
}
header .thin-container nav ul li:hover .sub-menu {
  -webkit-transform: translateX(-50%) translateY(-410px);
          transform: translateX(-50%) translateY(-410px);
}
header .thin-container nav ul#global-header-menu .mobile {
  display: none;
}
@media screen and (max-width: 1120px) {
  header .thin-container .ctas {
    display: none;
  }
}
header .thin-container .ctas ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
header .thin-container .ctas ul li a {
  padding: 10px 18px;
  display: block;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  color: white;
  background-color: #1A73E8;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
header .thin-container .ctas ul li a:hover {
  color: white;
  background-color: #12317C;
}
@media screen and (max-width: 1230px) {
  header .thin-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1120px) {
  header .thin-container nav {
    scale: 1;
    background-color: #efefef;
  }
  header .thin-container nav .hamburger {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: transparent;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    position: relative;
    z-index: 3;
  }
  header .thin-container nav .hamburger .open-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 18px;
    height: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
  header .thin-container nav .hamburger .open-icon span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: #1A73E8;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  header .thin-container nav .hamburger .close-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 18px;
    height: 18px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  header .thin-container nav .hamburger .close-icon span {
    width: 100%;
    height: 2px;
    display: block;
    background-color: white;
    position: absolute;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  header .thin-container nav .hamburger .close-icon span:first-child {
    -webkit-transform: rotate(0deg) translateY(-5px);
            transform: rotate(0deg) translateY(-5px);
  }
  header .thin-container nav .hamburger .close-icon span:last-child {
    -webkit-transform: rotate(0deg) translateY(5px);
            transform: rotate(0deg) translateY(5px);
  }
  header .thin-container nav .hamburger.close .open-icon {
    opacity: 0;
  }
  header .thin-container nav .hamburger.close .close-icon {
    opacity: 1;
  }
  header .thin-container nav .hamburger.close .close-icon span:first-child {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }
  header .thin-container nav .hamburger.close .close-icon span:last-child {
    -webkit-transform: rotate(-45deg) translateY(0);
            transform: rotate(-45deg) translateY(0);
  }
  header .thin-container nav ul {
    display: none;
  }
  header .thin-container nav ul#global-header-menu .mobile {
    display: block;
  }
  header .thin-container nav:hover {
    scale: 1.1;
    background-color: #12317C;
  }
  header .thin-container nav .menu-global-header-container {
    position: absolute;
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    overflow: hidden;
    top: -1200px;
    right: -1200px;
    z-index: -3;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    background-color: #12317C;
    opacity: 0;
  }
  header .thin-container nav .menu-global-header-container.active {
    opacity: 1;
    z-index: 1;
    top: -400px;
    right: -400px;
  }
  header .thin-container nav .menu-global-header-container.active ul {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 0;
    width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  header .thin-container nav .menu-global-header-container.active ul li a {
    padding: 0 18px;
    color: white;
  }
  header .thin-container nav .menu-global-header-container.active ul li a:hover {
    color: #1A73E8;
  }
}

footer {
  position: relative;
  z-index: 2;
}
footer .thin-container {
  padding-top: 150px;
}
footer .thin-container .branding-and-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
footer .thin-container .branding-and-menu .branding {
  position: relative;
}
footer .thin-container .branding-and-menu .branding .large-cloud {
  position: absolute;
  top: -190px;
  left: -610px;
  z-index: 1;
}
footer .thin-container .branding-and-menu .branding .logo {
  position: relative;
  z-index: 2;
}
footer .thin-container .branding-and-menu .branding .socials {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}
footer .thin-container .branding-and-menu .branding .socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #efefef;
}
footer .thin-container .branding-and-menu .branding .socials a svg {
  height: 14px;
  fill: #12317C;
}
footer .thin-container .branding-and-menu .branding .socials a svg path {
  fill: #12317C;
}
footer .thin-container .branding-and-menu .branding .socials a:hover {
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
footer .thin-container .branding-and-menu .branding .socials a:hover svg {
  fill: white;
}
footer .thin-container .branding-and-menu .branding .socials a:hover svg path {
  fill: white;
}
@-webkit-keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
footer .thin-container .branding-and-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  z-index: 2;
}
footer .thin-container .branding-and-menu .menu .card {
  min-width: 250px;
  margin-bottom: 30px;
}
footer .thin-container .branding-and-menu .menu .card h2 {
  margin: 0 0 20px 0;
  font-size: 24px;
}
footer .thin-container .branding-and-menu .menu .card h2 a {
  display: block;
  color: #1A73E8;
}
footer .thin-container .branding-and-menu .menu .card h2 a:hover {
  color: #12317C;
  text-decoration: none !important;
}
footer .thin-container .branding-and-menu .menu .card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
footer .thin-container .branding-and-menu .menu .card ul li a {
  color: #565656;
}
footer .thin-container .branding-and-menu .menu .card ul li a:hover {
  color: #1A73E8;
  text-decoration: none !important;
}
footer .thin-container .legal-and-badges {
  padding: 20px 0;
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .thin-container .legal-and-badges .legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
footer .thin-container .legal-and-badges .legal .legal-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
footer .thin-container .legal-and-badges .legal .legal-menu a {
  font-size: 14px;
  color: #565656;
}
footer .thin-container .legal-and-badges .legal .copyright {
  font-size: 14px;
  color: #565656;
}
footer .thin-container .legal-and-badges .badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1220px) {
  footer .thin-container {
    width: auto;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  footer .thin-container .branding-and-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  footer .thin-container .branding-and-menu .branding .socials {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .thin-container .branding-and-menu .menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
  footer .thin-container .branding-and-menu .menu .card {
    width: auto;
    min-width: 30%;
  }
  footer .thin-container .legal-and-badges {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  footer .thin-container .legal-and-badges .legal {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .thin-container .legal-and-badges .badges {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  footer .thin-container .branding-and-menu .menu .card {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  footer .thin-container .branding-and-menu .branding .logo {
    width: 100%;
    height: auto;
  }
  footer .thin-container .branding-and-menu .socials {
    margin-top: 30px;
  }
}

.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #12317C;
  mix-blend-mode: difference;
}
@media screen and (max-width: 768px) {
  .custom-cursor {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.blend-difference {
  mix-blend-mode: difference;
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1A73E8;
}

h2 {
  margin: 0 0 40px 0;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.2em;
  color: #12317C;
}
h2 span {
  color: #1A73E8;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
  }
}

p, li {
  line-height: 1.6;
  font-size: 16px;
  color: #565656;
}

.statement {
  font-size: 20px;
  color: #12317C;
}
.statement.white {
  color: white;
}

.post-navigation,
.pagination {
  margin: 20px 0;
}
.post-navigation a,
.pagination a {
  color: #1A73E8;
  padding: 5px 10px;
  border: 1px solid #1A73E8;
  border-radius: 3px;
}
.post-navigation a:hover,
.pagination a:hover {
  background-color: #54BA64;
  color: #fff;
  border-color: #54BA64;
}

.simple-slider {
  overflow: hidden;
}
.simple-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.simple-slider .slider-track img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.highlight-text-on-scroll span {
  opacity: 0.3;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  display: inline;
}
.highlight-text-on-scroll span.highlighted {
  opacity: 1;
}

.carousel-container {
  padding: 120px 0;
  background-color: #f5f5f5;
}
.carousel-container .thin-container {
  max-width: 1200px;
  margin: 0 auto;
}
.carousel-container .thin-container .intro {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.carousel-container .thin-container .intro .copy-block h2 {
  margin-bottom: 0;
  line-height: 1.1em;
}
.carousel-container .thin-container .intro .copy-block p {
  color: #565656;
}
.carousel-container .thin-container .intro .cta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.carousel-container .carousel-cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.carousel-container .carousel-cards .carousel-card {
  width: 300px;
  padding: 40px;
  background-color: #12317C;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.carousel-container .carousel-cards .carousel-card.active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  background-color: #1A73E8;
}
.carousel-container .carousel-cards .carousel-card h3 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1em;
  color: white;
}
.carousel-container .carousel-cards .carousel-card p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.4;
  color: white;
}
.carousel-container .carousel-cards .carousel-card a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.carousel-container .carousel-cards .carousel-card img, .carousel-container .carousel-cards .carousel-card video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.carousel-container .carousel-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.carousel-container .carousel-pagination .pagination-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.carousel-container .carousel-pagination .pagination-dot:hover:not(.active) {
  width: 30px;
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.carousel-container .carousel-pagination .pagination-dot.active {
  width: 30px;
  background-color: #1A73E8;
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@media screen and (max-width: 1220px) {
  .carousel-container {
    padding: 40px 30px;
  }
  .carousel-container .thin-container {
    width: auto;
  }
  .carousel-container .thin-container .carousel-cards .carousel-card {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-container .thin-container {
    padding: 0;
  }
  .carousel-container .thin-container .carousel-cards .carousel-card {
    width: 200px;
  }
  .carousel-container .thin-container .carousel-cards .carousel-card h3 {
    font-size: 22px;
  }
}

.testimonials .thin-container {
  position: relative;
}
.testimonials .bubbles {
  height: 790px;
  position: relative;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}
.testimonials .bubbles .bubble {
  background-color: #1A73E8;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.testimonials .bubbles .bubble.animate {
  opacity: 0;
  visibility: hidden;
  -webkit-animation: fadeInBubble 0.75s ease-in-out forwards;
          animation: fadeInBubble 0.75s ease-in-out forwards;
}
.testimonials .bubbles .bubble.bubble-1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.testimonials .bubbles .bubble.bubble-2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.testimonials .bubbles .bubble.bubble-3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.testimonials .bubbles .bubble.bubble-4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.testimonials .bubbles .bubble.bubble-5 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.testimonials .bubbles .bubble.bubble-6 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.testimonials .bubbles .bubble.bubble-7 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.testimonials .bubbles .bubble.bubble-8 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.testimonials .bubbles .bubble.bubble-9 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.testimonials .bubbles .bubble.bubble-10 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.testimonials .bubbles .bubble.bubble-11 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.testimonials .bubbles .bubble.bubble-12 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.testimonials .bubbles .bubble.bubble-13 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.testimonials .bubbles .bubble.bubble-14 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.testimonials .bubbles .bubble img, .testimonials .bubbles .bubble video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .bubbles .bubble span {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: white;
}
.testimonials .bubbles .bubble-1 {
  width: 148px;
  height: 148px;
  top: 155px;
  left: 0;
}
.testimonials .bubbles .bubble-2 {
  width: 148px;
  height: 148px;
  top: 337px;
  left: 0;
}
.testimonials .bubbles .bubble-3 {
  width: 148px;
  height: 148px;
  top: 540px;
  left: 0;
}
.testimonials .bubbles .bubble-4 {
  width: 266px;
  height: 266px;
  top: 27px;
  left: 188px;
}
.testimonials .bubbles .bubble-5 {
  width: 148px;
  height: 148px;
  top: 327px;
  left: 200px;
}
.testimonials .bubbles .bubble-6 {
  width: 266px;
  height: 266px;
  top: 520px;
  left: 188px;
}
.testimonials .bubbles .bubble-7 {
  width: 138px;
  height: 138px;
  top: 100px;
  left: 497px;
}
.testimonials .bubbles .bubble-8 {
  width: 266px;
  height: 266px;
  top: 277px;
  left: 402px;
}
.testimonials .bubbles .bubble-9 {
  width: 138px;
  height: 138px;
  top: 573px;
  left: 497px;
}
.testimonials .bubbles .bubble-10 {
  width: 138px;
  height: 138px;
  top: 0;
  left: 660px;
}
.testimonials .bubbles .bubble-11 {
  width: 200px;
  height: 200px;
  top: 181px;
  left: 682px;
}
.testimonials .bubbles .bubble-12 {
  width: 200px;
  height: 200px;
  top: 448px;
  left: 672px;
}
.testimonials .bubbles .bubble-13 {
  width: 138px;
  height: 138px;
  top: 45px;
  left: 831px;
}
.testimonials .bubbles .bubble-14 {
  width: 100px;
  height: 100px;
  top: 85px;
  left: 1003px;
}
@-webkit-keyframes fadeInBubble {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeInBubble {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.testimonials .testimonial-slider {
  width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  top: 200px;
  right: 0;
}
.testimonials .testimonial-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.testimonials .testimonial-slider .slider-track .slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.testimonials .testimonial-slider .slider-track .slide .logo {
  margin-bottom: 20px;
}
.testimonials .testimonial-slider .slider-track .slide .logo img {
  max-height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.testimonials .testimonial-slider .slider-track .slide blockquote {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-style: italic;
  color: #565656;
  line-height: 1.5;
  max-width: 600px;
}
.testimonials .testimonial-slider .slider-track .slide blockquote p {
  margin: 0;
}
.testimonials .testimonial-slider .slider-track .slide .who .name {
  font-size: 16px;
  font-weight: 600;
  color: #12317C;
}
.testimonials .testimonial-slider .slider-track .slide .who .title-and-company {
  display: block;
  font-size: 14px;
  color: #565656;
}
.testimonials .testimonial-slider .slider-track .slide .who .title-and-company .title {
  display: block;
}
.testimonials .testimonial-slider .slider-track .slide .who .title-and-company .company {
  display: block;
}
.testimonials .testimonial-slider .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 40px;
  display: none;
}
.testimonials .testimonial-slider .pagination .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.testimonials .testimonial-slider .pagination .dot.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.testimonials .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
  width: 30px;
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.testimonials .testimonial-slider .pagination .dot.active {
  width: 30px;
  background-color: #1A73E8;
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
.testimonials .testimonial-slider .nav-arrows {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  gap: 10px;
}
.testimonials .testimonial-slider .nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.testimonials .testimonial-slider .nav-arrows button .arrow-icon {
  width: 14px;
  height: 14px;
  position: absolute;
}
.testimonials .testimonial-slider .nav-arrows button .arrow-icon path {
  stroke: #999;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.testimonials .testimonial-slider .nav-arrows button:hover {
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.testimonials .testimonial-slider .nav-arrows button:hover .arrow-icon path {
  -webkit-animation: arrowColorTransition 0.6s ease-in-out forwards;
          animation: arrowColorTransition 0.6s ease-in-out forwards;
}
@keyframes colorTransition {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@-webkit-keyframes arrowColorTransition {
  0% {
    stroke: #999;
  }
  50% {
    stroke: white;
  }
  100% {
    stroke: white;
  }
}
@keyframes arrowColorTransition {
  0% {
    stroke: #999;
  }
  50% {
    stroke: white;
  }
  100% {
    stroke: white;
  }
}
.testimonials .testimonial-slider .nav-arrows button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.testimonials .testimonial-slider .nav-arrows button.disabled .arrow-icon {
  -webkit-animation: none;
          animation: none;
}
.testimonials .testimonial-slider .nav-arrows .prev-arrow .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonials .testimonial-slider .nav-arrows .next-arrow .arrow-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (max-width: 1240px) {
  .testimonials .thin-container {
    width: 100%;
  }
  .testimonials .testimonial-slider {
    width: 525px;
    right: 20px;
  }
}
@media screen and (max-width: 1120px) {
  .testimonials .bubbles {
    zoom: 0.9;
  }
}
@media screen and (max-width: 1060px) {
  .testimonials .thin-container {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .testimonials .bubbles {
    margin-bottom: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    -webkit-transform: initial;
            transform: initial;
  }
  .testimonials .bubbles .bubble {
    width: 100px !important;
    height: 100px !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
  }
  .testimonials .bubbles .bubble span {
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    text-align: center;
  }
  .testimonials .testimonial-slider {
    width: auto;
    max-width: 525px;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
  .testimonials .testimonial-slider .nav-arrows {
    width: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 991px) {
  .testimonials .testimonial-slider .slide {
    margin-top: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .testimonials .testimonial-slider .slide .logo {
    text-align: center;
  }
  .testimonials .testimonial-slider .slide .logo img {
    max-height: initial;
    max-width: 130px;
  }
  .testimonials .testimonial-slider .slide blockquote {
    text-align: center;
  }
  .testimonials .testimonial-slider .slide .who {
    text-align: center;
  }
}

.client-logos {
  padding: 75px 0;
  text-align: center;
}
.client-logos .logo-track-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100px;
}
.client-logos .logo-track-wrapper::before, .client-logos .logo-track-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 1;
}
.client-logos .logo-track-wrapper::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#f8f8f8), to(transparent));
  background: linear-gradient(to right, #f8f8f8, transparent);
}
.client-logos .logo-track-wrapper::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#f8f8f8), to(transparent));
  background: linear-gradient(to left, #f8f8f8, transparent);
}
.client-logos .logo-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scroll 60s linear infinite;
          animation: scroll 60s linear infinite;
  will-change: transform;
}
.client-logos .logo-track img {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.client-logos .logo-track img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.multi-image-copy-block {
  padding: 100px 0 80px 0;
}
.multi-image-copy-block .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.multi-image-copy-block .thin-container.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.multi-image-copy-block .thin-container .copy-block {
  width: 40%;
}
.multi-image-copy-block .thin-container .facts {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.multi-image-copy-block .thin-container .facts .fact {
  width: 45%;
}
.multi-image-copy-block .thin-container .examples {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.multi-image-copy-block .thin-container .examples img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.multi-image-copy-block .thin-container .examples .top {
  width: 100%;
  height: 280px;
}
.multi-image-copy-block .thin-container .examples .top img, .multi-image-copy-block .thin-container .examples .top video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.multi-image-copy-block .thin-container .examples .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.multi-image-copy-block .thin-container .examples .bottom img, .multi-image-copy-block .thin-container .examples .bottom video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.multi-image-copy-block .thin-container .examples .bottom .left {
  width: 50%;
  height: 200px;
}
.multi-image-copy-block .thin-container .examples .bottom .right {
  width: 50%;
  height: 200px;
}
@media screen and (max-width: 1024px) {
  .multi-image-copy-block {
    padding: 50px 0;
  }
  .multi-image-copy-block .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .multi-image-copy-block .thin-container .copy-block, .multi-image-copy-block .thin-container .facts, .multi-image-copy-block .thin-container .examples {
    width: 100%;
  }
  .multi-image-copy-block .thin-container .facts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .multi-image-copy-block .thin-container .facts .fact {
    width: 80%;
    margin-bottom: 20px;
  }
  .multi-image-copy-block .thin-container .examples .top, .multi-image-copy-block .thin-container .examples .bottom {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .multi-image-copy-block .thin-container .examples .top {
    height: auto;
  }
  .multi-image-copy-block .thin-container .examples .top, .multi-image-copy-block .thin-container .examples .bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .multi-image-copy-block .thin-container .examples .top .left, .multi-image-copy-block .thin-container .examples .top .right, .multi-image-copy-block .thin-container .examples .bottom .left, .multi-image-copy-block .thin-container .examples .bottom .right {
    width: 100%;
    height: auto;
  }
}

.dual-copy-block .thin-container {
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}
.dual-copy-block .thin-container .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(45% - 10px);
          flex: 0 0 calc(45% - 10px); /* 50% width minus half the gap */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.dual-copy-block .thin-container .col.thumbnail-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.dual-copy-block .thin-container .col.thumbnail-top .thumbnail {
  margin-bottom: 20px;
}
.dual-copy-block .thin-container .col.thumbnail-top .ctas {
  margin-bottom: 0;
}
.dual-copy-block .thin-container .col .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.dual-copy-block .thin-container .col .contents .eyebrow {
  margin: 20px 0 0 0;
}
.dual-copy-block .thin-container .col .contents h2 {
  margin: 0;
}
.dual-copy-block .thin-container .col .contents .ctas {
  margin-bottom: 20px;
}
.dual-copy-block .thin-container .col .thumbnail {
  width: 100%;
  height: 335px;
  border-radius: 20px;
  overflow: hidden;
}
.dual-copy-block .thin-container .col .thumbnail img, .dual-copy-block .thin-container .col .thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1250px) {
  .dual-copy-block .thin-container {
    padding-left: 30px;
    padding-right: 30px;
    gap: 40px;
  }
  .dual-copy-block .thin-container .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 20px);
            flex: 0 0 calc(50% - 20px);
  }
}
@media screen and (max-width: 991px) {
  .dual-copy-block .thin-container {
    gap: 30px;
  }
  .dual-copy-block .thin-container .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .dual-copy-block .thin-container {
    gap: 30px;
  }
  .dual-copy-block .thin-container .col {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
  .dual-copy-block .thin-container .col .thumbnail {
    height: auto;
  }
}

.vertical-tabbing {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.vertical-tabbing::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.vertical-tabbing.scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 2;
}
.vertical-tabbing .thin-container {
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.vertical-tabbing .thin-container .tab-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30%;
  gap: 20px;
  max-width: 300px;
  border-radius: 5px;
}
.vertical-tabbing .thin-container .tab-categories h2 {
  margin: 0;
  font-weight: 300;
  color: #ccc;
}
.vertical-tabbing .thin-container .tab-categories .tab-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.vertical-tabbing .thin-container .tab-categories .tab-category .label {
  min-height: 30px;
  font-size: 18px;
  font-weight: 500;
  color: #1A73E8;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.vertical-tabbing .thin-container .tab-categories .tab-category.active, .vertical-tabbing .thin-container .tab-categories .tab-category:hover {
  opacity: 1;
}
.vertical-tabbing .thin-container .tab-categories .tab-category.active .label, .vertical-tabbing .thin-container .tab-categories .tab-category:hover .label {
  opacity: 1;
  color: #12317C;
}
.vertical-tabbing .thin-container .tab-categories .tab-category.active .active-arrow, .vertical-tabbing .thin-container .tab-categories .tab-category:hover .active-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.vertical-tabbing .thin-container .tab-list {
  width: 70%;
  height: 100%;
  overflow-y: hidden;
}
.vertical-tabbing .thin-container .tab-list::-webkit-scrollbar {
  display: none;
}
.vertical-tabbing .thin-container .tab-list .tab-item {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper {
  padding: 40px;
  width: 100%;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info {
  width: 70%;
  margin: 0 auto;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info h3 {
  margin: 0;
  font-size: 44px;
  font-weight: 300;
  color: #12317C;
  line-height: 1.2em;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info p {
  color: #565656;
  font-size: 16px;
  line-height: 1.6em;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info .duel-arrow-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #1A73E8;
  text-decoration: none;
  margin-top: 20px;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info .duel-arrow-button:hover {
  color: #135cbc;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info a {
  height: 50px;
  padding: 0 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  background-color: #1A73E8;
  font-weight: 500;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info a:hover {
  background-color: white;
  color: #1A73E8;
  text-decoration: none;
}
.vertical-tabbing .thin-container .tab-list .tab-item.active {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .vertical-tabbing.scroll-sticky {
    position: initial;
    top: 0;
    height: initial;
    z-index: 2;
  }
  .vertical-tabbing .thin-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .vertical-tabbing .thin-container .tab-categories {
    width: 100%;
    height: 64px;
    overflow: hidden;
    margin: 0 auto;
    max-width: none;
    padding: 0;
    background-color: #021951;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .vertical-tabbing .thin-container .tab-categories h2 {
    padding: 0 30px;
    opacity: 1;
    height: 63px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
    margin: 0;
  }
  .vertical-tabbing .thin-container .tab-categories h2 .down-arrow {
    display: block;
    width: 10px;
    height: 20px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .vertical-tabbing .thin-container .tab-categories h2 .down-arrow svg {
    width: 100%;
    height: 100%;
  }
  .vertical-tabbing .thin-container .tab-categories .tab-category {
    display: none;
    margin-left: 30px;
    margin-right: 30px;
  }
  .vertical-tabbing .thin-container .tab-categories .tab-category:last-child {
    margin-bottom: 30px;
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories {
    height: auto;
    overflow: visible;
    background-color: #efefef;
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories h2 {
    color: #1A73E8;
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories h2 .down-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories h2 .down-arrow svg path {
    fill: #FF683F;
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories .tab-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories .tab-category .label {
    color: #12317C;
  }
  .vertical-tabbing .thin-container .tab-categories.show-categories .tab-category:last-child {
    margin-bottom: 20px;
  }
  .vertical-tabbing .thin-container .tab-list {
    width: 100%;
    height: initial;
    min-height: initial;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    overflow-x: auto;
    overflow-y: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .vertical-tabbing .thin-container .tab-list::-webkit-scrollbar {
    display: none;
  }
  .vertical-tabbing .thin-container .tab-list .tab-item {
    min-width: 100%;
    height: initial;
    min-height: initial;
    scroll-snap-align: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .vertical-tabbing .thin-container .tab-list .tab-item.active {
    scroll-snap-stop: always;
  }
  .vertical-tabbing .thin-container .tab-list .tab-item .wrapper {
    padding: 0;
  }
  .vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info {
    width: 100%;
    padding: 0;
  }
  .vertical-tabbing .thin-container .tab-list .tab-item .wrapper .tab-info h3 {
    font-size: 28px;
  }
}

.skyscrapper-image-w-copy-section {
  padding-bottom: 40px;
}
.skyscrapper-image-w-copy-section .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.skyscrapper-image-w-copy-section .thin-container .thumbnail {
  width: 540px;
  height: 790px;
  border-radius: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.skyscrapper-image-w-copy-section .thin-container .thumbnail img, .skyscrapper-image-w-copy-section .thin-container .thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1180px) {
  .skyscrapper-image-w-copy-section .thin-container {
    gap: 40px;
  }
  .skyscrapper-image-w-copy-section .thin-container .thumbnail {
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .skyscrapper-image-w-copy-section .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .skyscrapper-image-w-copy-section .thin-container .thumbnail {
    width: 100%;
    height: 580px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .skyscrapper-image-w-copy-section .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .skyscrapper-image-w-copy-section .thin-container .thumbnail {
    height: auto;
  }
}

.top-case-study-image-w-copy-section {
  padding-top: 60px;
  padding-bottom: 40px;
}
.top-case-study-image-w-copy-section .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.top-case-study-image-w-copy-section .thin-container .modal-copy {
  display: none;
  visibility: hidden;
}
.top-case-study-image-w-copy-section .thin-container .thumbnail {
  width: 540px;
  height: 790px;
  border-radius: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.top-case-study-image-w-copy-section .thin-container .thumbnail img, .top-case-study-image-w-copy-section .thin-container .thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1180px) {
  .top-case-study-image-w-copy-section .thin-container {
    gap: 40px;
  }
  .top-case-study-image-w-copy-section .thin-container .thumbnail {
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .top-case-study-image-w-copy-section .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .top-case-study-image-w-copy-section .thin-container .thumbnail {
    width: 100%;
    height: 240px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-case-study-image-w-copy-section .thin-container .thumbnail {
    height: auto;
  }
}

.case-study-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.case-study-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 90vw;
  max-height: 50vh;
  padding: 100px 30px 80px 30px;
  position: relative;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  -webkit-animation: modalFadeIn 0.3s;
          animation: modalFadeIn 0.3s;
  overflow-y: auto;
}
.case-study-modal-content .case-study-modal-body .hs-form-iframe {
  height: 100% !important;
  min-height: 400px !important;
}

@-webkit-keyframes modalFadeIn {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes modalFadeIn {
  from {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.case-study-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.case-study-modal-close:hover {
  color: #e74c3c;
}

.faqs {
  width: 1420px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 20px;
  position: relative;
}
.faqs .thin-container {
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.faqs .thin-container .copy-block {
  width: 45%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faqs .thin-container .copy-block h2 {
  margin: 0;
}
.faqs .thin-container .list-of-questions {
  width: 45%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.faqs .thin-container .list-of-questions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faqs .thin-container .list-of-questions ul li {
  padding: 0;
}
.faqs .thin-container .list-of-questions ul li a {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  gap: 20px;
  border-bottom: 1px solid #ccc;
}
.faqs .thin-container .list-of-questions ul li a .label {
  font-size: 20px;
  font-weight: 500;
  color: #12317C;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.faqs .thin-container .list-of-questions ul li a .icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #1A73E8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.faqs .thin-container .list-of-questions ul li a .icon svg {
  width: 12px;
}
.faqs .thin-container .list-of-questions ul li a:hover .label {
  color: #1A73E8;
}
.faqs .thin-container .list-of-questions ul li a:hover .icon {
  background-color: #FF683F;
}
.faqs .thin-container .list-of-questions ul li .description {
  display: none;
}
.faqs .faq-content-modal {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -50%;
  z-index: 3;
  -webkit-transform: translateY(-50%) translateX(50%);
          transform: translateY(-50%) translateX(50%);
  background-color: #12317C;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  opacity: 0;
}
.faqs .faq-content-modal.animate {
  -webkit-animation: zoomOutModal 1s forwards;
          animation: zoomOutModal 1s forwards;
}
@-webkit-keyframes zoomOutModal {
  0% {
    width: 100px;
    height: 100px;
    opacity: 0;
    right: -50%;
  }
  100% {
    width: 1700px;
    height: 1700px;
    opacity: 1;
    right: 0;
  }
}
@keyframes zoomOutModal {
  0% {
    width: 100px;
    height: 100px;
    opacity: 0;
    right: -50%;
  }
  100% {
    width: 1700px;
    height: 1700px;
    opacity: 1;
    right: 0;
  }
}
.faqs .faq-content-modal.animate-close {
  -webkit-animation: zoomDownModal 1s forwards;
          animation: zoomDownModal 1s forwards;
}
@-webkit-keyframes zoomDownModal {
  0% {
    width: 1700px;
    height: 1700px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
@keyframes zoomDownModal {
  0% {
    width: 1700px;
    height: 1700px;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}
.faqs .faq-content-modal .close-button {
  width: 93px;
  height: 93px;
  border-radius: 50%;
  background-color: #FF683F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 33%;
  left: 0;
  -webkit-transform: translateY(-33%);
          transform: translateY(-33%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 3;
}
.faqs .faq-content-modal .close-button .icon {
  margin-top: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.faqs .faq-content-modal .close-button:hover {
  background-color: #1A73E8;
}
.faqs .faq-content-modal .close-button:hover .icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faqs .faq-content-modal .contents {
  width: 540px;
  position: absolute;
  top: 50%;
  left: 150px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.faqs .faq-content-modal .contents .heading {
  color: #1A73E8;
  font-size: 36px;
}
.faqs .faq-content-modal .contents .description {
  font-weight: 500;
  color: white;
  line-height: 1.6em;
}
.faqs .faq-content-modal .contents .description p {
  font-weight: 500;
  line-height: 1.6em;
  color: white;
}
@media screen and (max-width: 1440px) {
  .faqs {
    width: 100%;
  }
  .faqs .thin-container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .faqs {
    width: 100%;
    position: relative;
  }
  .faqs .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .faqs .thin-container .copy-block {
    margin-bottom: 30px;
  }
  .faqs .thin-container .copy-block, .faqs .thin-container .list-of-questions {
    width: 100%;
  }
  .faqs .thin-container .list-of-questions ul li a {
    padding: 9px 0;
  }
  .faqs .thin-container .list-of-questions ul li a .label {
    font-size: 18px;
  }
  .faqs .thin-container .list-of-questions ul li a .icon {
    width: 30px;
    height: 30px;
  }
  .faqs .thin-container .list-of-questions ul li a .icon svg {
    width: 16px;
  }
  .faqs .faq-content-modal {
    width: 100px;
    height: 100px;
    border-radius: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
    overflow-y: auto;
  }
  .faqs .faq-content-modal.animate {
    -webkit-animation: zoomOutModal 1s forwards;
            animation: zoomOutModal 1s forwards;
  }
  @-webkit-keyframes zoomOutModal {
    0% {
      width: 100px;
      height: 100vh;
      opacity: 0;
      right: -100%;
    }
    100% {
      width: 100%;
      height: 100vh;
      opacity: 1;
      right: 0;
    }
  }
  @keyframes zoomOutModal {
    0% {
      width: 100px;
      height: 100vh;
      opacity: 0;
      right: -100%;
    }
    100% {
      width: 100%;
      height: 100vh;
      opacity: 1;
      right: 0;
    }
  }
  .faqs .faq-content-modal.animate-close {
    -webkit-animation: zoomDownModal 1s forwards;
            animation: zoomDownModal 1s forwards;
  }
  @-webkit-keyframes zoomDownModal {
    0% {
      width: 100%;
      height: 100vh;
      opacity: 1;
    }
    100% {
      width: 100px;
      height: 100vh;
      opacity: 0;
    }
  }
  @keyframes zoomDownModal {
    0% {
      width: 100%;
      height: 100vh;
      opacity: 1;
    }
    100% {
      width: 100px;
      height: 100vh;
      opacity: 0;
    }
  }
  .faqs .faq-content-modal .close-button {
    width: 93px;
    height: 93px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 144px;
    left: 40px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    zoom: 0.7;
  }
  .faqs .faq-content-modal .close-button .icon {
    margin-top: 4px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .faqs .faq-content-modal .close-button:hover .icon {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .faqs .faq-content-modal .contents {
    width: 80%;
    margin: 0 auto;
    padding-top: 190px;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .faqs .faq-content-modal .contents .heading {
    font-size: 24px;
  }
}

.awards {
  padding-bottom: 60px;
}
.awards .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.awards .thin-container h2 {
  display: none;
}
.awards .thin-container img {
  height: 70px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.agencies-section .scroll-card {
  width: 100vw;
  height: 100vh;
  padding: 90px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: sticky;
  top: 0;
  z-index: 1;
  -webkit-transform: translateY(0vh);
          transform: translateY(0vh);
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.agencies-section .scroll-card .wrapper {
  border-radius: 20px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: inherit;
  -webkit-transition: -webkit-transform 0.3s ease-in-Out;
  transition: -webkit-transform 0.3s ease-in-Out;
  transition: transform 0.3s ease-in-Out;
  transition: transform 0.3s ease-in-Out, -webkit-transform 0.3s ease-in-Out;
  -webkit-transform: scale(1) rotate(5deg);
          transform: scale(1) rotate(5deg);
  position: relative;
  overflow: hidden;
}
.agencies-section .scroll-card.animate .wrapper {
  -webkit-transform: scale(0.95) rotate(0deg);
          transform: scale(0.95) rotate(0deg);
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper {
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(91deg, rgba(0, 0, 0, 0), #000000);
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .copy-block {
  width: 25%;
  margin: 40px 120px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .copy-block h2 {
  margin: 0;
  font-size: 52px;
  color: white;
  text-align: right;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .copy-block h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-align: right;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .copy-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .copy-block ul li {
  color: white;
  text-align: right;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .copy-block .ctas a {
  font-size: 16px;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .logo-animated {
  width: 130%;
  position: absolute;
  left: 0;
  bottom: -90px;
}
.agencies-section .scroll-card.agency-the-creative-momentum .wrapper .logo-animated svg {
  width: 170%;
}
.agencies-section .scroll-card.agency-primary-360 {
  z-index: 2;
  -webkit-transform: translateY(10vh);
          transform: translateY(10vh);
}
.agencies-section .scroll-card.agency-primary-360 .wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .copy-block {
  width: 25%;
  margin: 40px 40px 40px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .copy-block h2 {
  margin: 0;
  font-size: 52px;
  color: white;
  text-align: left;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .copy-block h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-align: left;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .copy-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .copy-block ul li {
  color: white;
  text-align: left;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .copy-block .ctas a {
  font-size: 16px;
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .logo-animated {
  height: 110%;
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.agencies-section .scroll-card.agency-primary-360 .wrapper .logo-animated svg {
  height: 100%;
}
.agencies-section .scroll-card.agency-idea-marketing-group {
  z-index: 3;
  -webkit-transform: translateY(20vh);
          transform: translateY(20vh);
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .copy-block {
  width: 25%;
  margin: 40px 120px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .copy-block h2 {
  margin: 0;
  font-size: 52px;
  color: white;
  text-align: right;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .copy-block h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: white;
  text-align: right;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .copy-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .copy-block ul li {
  color: white;
  text-align: right;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .copy-block .ctas a {
  font-size: 16px;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .logo-animated {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.agencies-section .scroll-card.agency-idea-marketing-group .wrapper .logo-animated svg {
  width: 110%;
}
@media screen and (max-width: 1024px) {
  .agencies-section .scroll-card {
    height: 60vh;
    padding: 0;
  }
  .agencies-section .scroll-card .wrapper, .agencies-section .scroll-card .wrapper.content-left, .agencies-section .scroll-card .wrapper.content-right {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .agencies-section .scroll-card .wrapper .copy-block, .agencies-section .scroll-card .wrapper.content-left .copy-block, .agencies-section .scroll-card .wrapper.content-right .copy-block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    margin: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .agencies-section .scroll-card .wrapper .copy-block h2, .agencies-section .scroll-card .wrapper.content-left .copy-block h2, .agencies-section .scroll-card .wrapper.content-right .copy-block h2 {
    font-size: 36px;
    text-align: left;
  }
  .agencies-section .scroll-card .wrapper .copy-block h3, .agencies-section .scroll-card .wrapper.content-left .copy-block h3, .agencies-section .scroll-card .wrapper.content-right .copy-block h3 {
    font-size: 20px;
    text-align: left;
  }
  .agencies-section .scroll-card .wrapper .copy-block ul li, .agencies-section .scroll-card .wrapper.content-left .copy-block ul li, .agencies-section .scroll-card .wrapper.content-right .copy-block ul li {
    font-size: 16px;
    text-align: left;
  }
  .agencies-section .scroll-card .wrapper .logo-animated, .agencies-section .scroll-card .wrapper.content-left .logo-animated, .agencies-section .scroll-card .wrapper.content-right .logo-animated {
    display: none;
  }
}

.quick-promo-banner {
  padding: 120px 0;
}
.quick-promo-banner .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
  border-radius: 20px;
  background-color: #FF683F;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.quick-promo-banner .thin-container .photo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
  height: 450px;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
}
.quick-promo-banner .thin-container .photo:before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(99.38%, rgba(0, 0, 0, 0.6)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 99.38%);
}
.quick-promo-banner .thin-container .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.quick-promo-banner .thin-container .copy-block {
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
.quick-promo-banner .thin-container .copy-block .eyebrow {
  font-weight: 500;
  color: white;
}
.quick-promo-banner .thin-container .copy-block h2 {
  margin-bottom: 0;
  font-size: 52px;
  color: white;
}
.quick-promo-banner .thin-container .copy-block .description p {
  color: white;
}
@media screen and (max-width: 1240px) {
  .quick-promo-banner {
    padding-left: 30px;
    padding-right: 30px;
  }
  .quick-promo-banner .thin-container {
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .quick-promo-banner {
    padding: 60px 30px;
  }
  .quick-promo-banner .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    position: relative;
  }
  .quick-promo-banner .thin-container .photo {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 20px;
    overflow: hidden;
  }
  .quick-promo-banner .thin-container .photo::after {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(47.54%, rgba(0, 0, 0, 0)), color-stop(90%, #000));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.54%, #000 90%);
    z-index: 1;
  }
  .quick-promo-banner .thin-container .copy-block {
    width: auto;
    padding: 80px 80px 40px 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    position: relative;
    z-index: 1;
  }
}

.project-spotlight {
  /* Pause animation on hover */
  /* Hide scrollbar for aesthetics */
}
.project-spotlight .thin-container {
  position: relative;
}
.project-spotlight .thin-container h2 {
  position: absolute;
  top: -21px;
  left: 0;
  z-index: 2;
  font-size: 91px;
  color: white;
  line-height: 1em;
}
.project-spotlight .slider-container {
  width: 100%;
  overflow: hidden;
}
.project-spotlight .slider-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  margin: 0;
  -webkit-animation: scroll 20s linear infinite;
          animation: scroll 20s linear infinite; /* Duration will be adjusted in JS */
}
.project-spotlight .slider-show a {
  width: 600px;
  height: 430px;
  overflow: hidden;
  display: block;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}
.project-spotlight .slider-show a .thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.project-spotlight .slider-show a .thumbnail img, .project-spotlight .slider-show a .thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-spotlight .slider-show a .label {
  width: 80%;
  display: block;
  padding: 40px 0 60px 40px;
  font-size: 24px;
  font-weight: 500;
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: translateY(300px);
          transform: translateY(300px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-spotlight .slider-show a::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-spotlight .slider-show a:hover .label {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.project-spotlight .slider-show:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.project-spotlight .slider-show::-webkit-scrollbar {
  display: none;
}
.project-spotlight .slider-show {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
@media screen and (max-width: 991px) {
  .project-spotlight .thin-container h2 {
    top: -13px;
    left: 20px;
    font-size: 60px;
  }
  .project-spotlight .slider-show a {
    height: 320px;
  }
}

.latest-news-section .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.latest-news-section .thin-container .copy-block {
  width: 45%;
}
.latest-news-section .thin-container .copy-block h2 {
  margin: 0;
  font-size: 52px;
}
.latest-news-section .thin-container .industry-news-posts {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.latest-news-section .thin-container .industry-news-posts article {
  width: 48%;
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.latest-news-section .thin-container .industry-news-posts article .featured-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.latest-news-section .thin-container .industry-news-posts article .featured-image a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
.latest-news-section .thin-container .industry-news-posts article .featured-image a:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(99.38%, rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 99.38%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.latest-news-section .thin-container .industry-news-posts article .featured-image a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-news-section .thin-container .industry-news-posts article .post-title {
  margin: 0;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.latest-news-section .thin-container .industry-news-posts article .post-title a {
  color: white;
  text-decoration: none;
}
.latest-news-section .thin-container .industry-news-posts article:first-child {
  width: 100%;
  height: 350px;
}
.latest-news-section .thin-container .industry-news-posts article:first-child .post-title {
  font-size: 22px;
}
.latest-news-section .thin-container .industry-news-posts article:hover .post-title {
  -webkit-transform: translateY(450px);
          transform: translateY(450px);
}
.latest-news-section .thin-container .industry-news-posts article:hover .featured-image a::before {
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .latest-news-section .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .latest-news-section .thin-container .copy-block {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .latest-news-section .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .latest-news-section .thin-container .industry-news-posts {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .latest-news-section .thin-container .industry-news-posts article {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }
  .latest-news-section .thin-container .industry-news-posts article:first-child {
    height: 250px;
  }
}

.mission {
  padding: 120px 120px 80px 120px;
}
.mission .extra-thin-container {
  max-width: 800px;
  margin: 0 auto;
}
.mission p {
  color: #444;
  font-size: 20px;
  font-weight: 500;
  line-height: 2em;
  text-align: center;
}
.mission .cta {
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .mission {
    padding: 40px 30px;
  }
  .mission .extra-thin-container {
    width: auto;
  }
  .mission p {
    font-size: 16px;
  }
}

.earth .thin-container {
  position: relative;
}
.earth .thin-container .copy-block {
  width: 480px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  padding-top: 130px;
}
.earth .thin-container .copy-block .eyebrow {
  color: #1A73E8;
}
.earth .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
  color: white;
}
.earth .thin-container .copy-block .description p {
  font-size: 14px;
  color: white;
}
.earth .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .earth .thin-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .earth .thin-container .copy-block {
    width: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 30px 0 30px;
  }
  .earth .thin-container .copy-block h2 {
    font-size: 36px;
  }
}

.trust-fuels-growth-traffic-follows {
  padding: 95px 40px;
  background-color: #12317C;
}
.trust-fuels-growth-traffic-follows .heading h2 {
  color: white;
}
.trust-fuels-growth-traffic-follows .heading p {
  color: white;
}
.trust-fuels-growth-traffic-follows .tabbed-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(4, 23, 67, 0.5);
  border-radius: 20px;
  padding: 10px 0;
  position: relative;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: white;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs a.tab {
  padding: 8px 20px;
  border-radius: 20px;
  display: block;
  color: #0FECF5;
  text-decoration: none;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs a.tab.active {
  color: #1A73E8;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs a.tab.active.active-hovered {
  color: #0FECF5;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs a.tab.not-active {
  color: #0FECF5;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabs a.tab:hover {
  color: #1A73E8;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content {
  padding: 40px 0;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container {
  position: relative;
  width: 33%;
  height: 600px;
  overflow: hidden;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container .icon {
  position: absolute;
  left: 0;
  opacity: 0;
  width: 33px;
  height: 33px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container .icon.animate {
  -webkit-animation: fadeInMove 5s ease-in-out infinite;
          animation: fadeInMove 5s ease-in-out infinite;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container .icon.path-top {
  top: 10%;
  -webkit-animation: fadeInMoveTop 5s ease-in-out infinite;
          animation: fadeInMoveTop 5s ease-in-out infinite;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container .icon.path-bottom {
  bottom: 10%;
  -webkit-animation: fadeInMoveBottom 5s ease-in-out infinite;
          animation: fadeInMoveBottom 5s ease-in-out infinite;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container .icon.path-middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: fadeInMove 5s ease-in-out infinite;
          animation: fadeInMove 5s ease-in-out infinite;
}
@-webkit-keyframes fadeInMove {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  10% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}
@keyframes fadeInMove {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  10% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}
@-webkit-keyframes fadeInMoveTop {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(0);
            transform: translateX(0%) translateY(0);
  }
  10% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50vw) translateY(40vh);
            transform: translateX(50vw) translateY(40vh);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100vw) translateY(0);
            transform: translateX(100vw) translateY(0);
  }
}
@keyframes fadeInMoveTop {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(0);
            transform: translateX(0%) translateY(0);
  }
  10% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50vw) translateY(40vh);
            transform: translateX(50vw) translateY(40vh);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100vw) translateY(0);
            transform: translateX(100vw) translateY(0);
  }
}
@-webkit-keyframes fadeInMoveBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(0);
            transform: translateX(0%) translateY(0);
  }
  10% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50vw) translateY(-40vh);
            transform: translateX(50vw) translateY(-40vh);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100vw) translateY(0);
            transform: translateX(100vw) translateY(0);
  }
}
@keyframes fadeInMoveBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0%) translateY(0);
            transform: translateX(0%) translateY(0);
  }
  10% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
    -webkit-transform: translateX(50vw) translateY(-40vh);
            transform: translateX(50vw) translateY(-40vh);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100vw) translateY(0);
            transform: translateX(100vw) translateY(0);
  }
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats {
  width: 600px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .hearts-container {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 0;
  right: -301px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .graphic {
  width: 600px;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .graphic svg {
  width: 600px;
  height: 600px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .simple-slider {
  width: 450px;
  height: 240px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .simple-slider .slider-track {
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .simple-slider .slider-track.active {
  opacity: 1;
  visibility: visible;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .simple-slider .slider-track img {
  width: 450px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .thumbnails {
  width: 450px;
  height: 240px;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  overflow: hidden;
  background-color: white;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .thumbnails .thumbnail {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .thumbnails .thumbnail.active {
  opacity: 1;
  visibility: visible;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .thumbnails .thumbnail img, .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .thumbnails .thumbnail video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat {
  padding: 17px 28px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1A73E8;
  background-color: #fff;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat.active {
  opacity: 1;
  visibility: visible;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat strong {
  font-size: 24px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat span {
  font-size: 18px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat.stat-one {
  top: 80px;
  left: auto;
  right: -60px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat.stat-two {
  top: 390px;
  left: -80px;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic .copy {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 400px;
  padding-left: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic .copy.active {
  opacity: 1;
  visibility: visible;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic .copy h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  color: white;
}
.trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic .copy p {
  font-size: 14px;
  color: white;
}
@media screen and (max-width: 1490px) {
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content {
    zoom: 0.8;
  }
}
@media screen and (max-width: 1200px) {
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content {
    zoom: 0.7;
  }
}
@media screen and (max-width: 1180px) {
  .trust-fuels-growth-traffic-follows {
    padding: 40px 30px;
  }
  .trust-fuels-growth-traffic-follows .heading h2 {
    margin-bottom: 15px;
  }
  .trust-fuels-growth-traffic-follows .thin-container .tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .trust-fuels-growth-traffic-follows .thin-container .tabs .background {
    display: none;
  }
  .trust-fuels-growth-traffic-follows .thin-container .tabs .tab:hover, .trust-fuels-growth-traffic-follows .thin-container .tabs .tab.active {
    color: white !important;
  }
}
@media screen and (max-width: 1024px) {
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content {
    padding-bottom: 0;
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .icon-container {
    display: none;
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat.stat-one {
    top: 80px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .stats .stat.stat-two {
    top: 450px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic {
    width: 100%;
    min-height: 200px;
    position: relative;
    bottom: 0;
    left: 0;
  }
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic .copy {
    width: 100%;
    top: 0;
    bottom: auto;
    padding: 0;
    text-align: center;
  }
}
@media screen and (max-width: 520px) {
  .trust-fuels-growth-traffic-follows .tabbed-container .tabbed-content .tab-content .traffic {
    min-height: 290px;
  }
}

.large-featured-projects {
  height: 850px;
}
.large-featured-projects .thin-container {
  background-color: #021951;
  max-width: 100%;
  height: 100%;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin: 40px;
  border-radius: 40px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.large-featured-projects .thin-container:hover {
  margin: 0;
  border-radius: 0;
}
.large-featured-projects .thin-container .copy-block {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 450px;
}
.large-featured-projects .thin-container .copy-block h2 {
  margin: 0 0 10px 0;
  color: #1A73E8;
}
.large-featured-projects .thin-container .copy-block .description, .large-featured-projects .thin-container .copy-block .description p {
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.large-featured-projects .thin-container .copy-block .ctas {
  margin-top: 25px;
}
.large-featured-projects .projects {
  width: 50%;
  height: 80%;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 20px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.large-featured-projects .projects > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.large-featured-projects .projects > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.large-featured-projects .projects > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.large-featured-projects .projects > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.large-featured-projects .projects .project {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0.8;
  position: relative;
}
.large-featured-projects .projects .project:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 1;
  z-index: 1;
}
.large-featured-projects .projects .project .case-study-link {
  width: 100%;
  height: 100%;
  display: block;
  color: white;
  text-decoration: none;
  position: relative;
}
.large-featured-projects .projects .project .case-study-link .case-study-title {
  display: none;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.large-featured-projects .projects .project .case-study-link .case-study-title span {
  padding-inline: 30px;
  display: block;
  font-size: 20px;
}
.large-featured-projects .projects .project .case-study-link img, .large-featured-projects .projects .project .case-study-link video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 1100px) {
  .large-featured-projects {
    height: auto;
  }
  .large-featured-projects .thin-container {
    padding: 0 20px;
    margin: 20px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .large-featured-projects .thin-container .copy-block {
    width: 100%;
    padding: 60px 30px 30px 30px;
  }
  .large-featured-projects .thin-container .copy-block h2 {
    text-align: center;
  }
  .large-featured-projects .thin-container .copy-block .description, .large-featured-projects .thin-container .copy-block .description p {
    text-align: center;
  }
  .large-featured-projects .thin-container .copy-block .ctas {
    margin-top: 25px;
    text-align: center;
  }
  .large-featured-projects .projects {
    height: auto;
    position: relative;
    padding-bottom: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .large-featured-projects .projects .project {
    min-width: 280px;
    height: 180px;
  }
}
@media screen and (max-width: 991px) {
  .large-featured-projects .projects {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.our-process-multi {
  padding: 75px 0;
}
.our-process-multi .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-process-multi .thin-container .copy-block {
  width: 330px;
}
.our-process-multi .thin-container .copy-block h2 {
  margin: 0 0 10px 0;
}
.our-process-multi .thin-container .copy-block .description, .our-process-multi .thin-container .copy-block .description p {
  font-size: 14px;
  font-weight: 500;
  color: #565656;
}
.our-process-multi .thin-container .copy-block .tab-heading {
  margin: 30px 0 35px 0;
  font-size: 20px;
  font-weight: 500;
  color: #565656;
}
.our-process-multi .thin-container .copy-block .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.our-process-multi .thin-container .copy-block .tabs a.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #12317C;
  text-decoration: none;
}
.our-process-multi .thin-container .copy-block .tabs a.tab .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-process-multi .thin-container .copy-block .tabs a.tab .icon svg path {
  stroke: #12317C;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.our-process-multi .thin-container .copy-block .tabs a.tab.active, .our-process-multi .thin-container .copy-block .tabs a.tab:hover {
  color: #1A73E8;
}
.our-process-multi .thin-container .copy-block .tabs a.tab.active .icon svg path, .our-process-multi .thin-container .copy-block .tabs a.tab:hover .icon svg path {
  stroke: #1A73E8;
}
.our-process-multi .thin-container .large-graph {
  width: 640px;
  height: 640px;
  position: relative;
}
.our-process-multi .thin-container .large-graph .graph-section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.our-process-multi .thin-container .large-graph .graph-section.active {
  opacity: 1;
  visibility: visible;
}
.our-process-multi .thin-container .large-graph .graph-section .graph-hover-content {
  width: 180px;
  position: absolute;
  top: 50%;
  left: -190px;
  -webkit-transform: translateY(-50%) translateX(-20px);
          transform: translateY(-50%) translateX(-20px);
  font-size: 14px;
  color: #565656;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.our-process-multi .thin-container .large-graph .graph-section .graph-hover-content.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
}
.our-process-multi .thin-container .large-graph .graph-section .large-growing-circle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 0;
  background-color: white;
  -webkit-transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: context-menu;
}
.our-process-multi .thin-container .large-graph .graph-section .large-growing-circle:hover {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.our-process-multi .thin-container .large-graph .graph-section .large-growing-circle.greyed-out {
  border-color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .large-growing-circle.greyed-out h3 {
  color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .large-growing-circle h3 {
  margin: 20px 0 0;
  text-align: center;
  opacity: 0;
  -webkit-animation: circleLabelFadeIn 2s ease-in-out forwards;
          animation: circleLabelFadeIn 2s ease-in-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@-webkit-keyframes circleLabelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circleLabelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.our-process-multi .thin-container .large-graph .graph-section .play {
  opacity: 1;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-1 {
  width: 200px;
  height: 200px;
  bottom: 0;
  border: 18px solid #FEA666;
  -webkit-animation: growCircleOneLg 3s ease-in-out forwards;
          animation: growCircleOneLg 3s ease-in-out forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-1 h3 {
  color: #FEA666;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-1.greyed-out {
  border-color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-1.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleOneLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 600px;
    height: 600px;
  }
}
@keyframes growCircleOneLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 600px;
    height: 600px;
  }
}
.our-process-multi .thin-container .large-graph .graph-section .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  border: 18px solid #FF683F;
  -webkit-animation: growCircleTwoLg 3s ease-in-out forwards;
          animation: growCircleTwoLg 3s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-2 h3 {
  color: #FF683F;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-2.greyed-out {
  border-color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-2.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleTwoLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 498px;
    height: 498px;
  }
}
@keyframes growCircleTwoLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 498px;
    height: 498px;
  }
}
.our-process-multi .thin-container .large-graph .graph-section .circle-3 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  border: 18px solid #0FECF5;
  -webkit-animation: growCircleThreeLg 3s ease-in-out forwards;
          animation: growCircleThreeLg 3s ease-in-out forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-3 h3 {
  margin: 30px 0 0;
  color: #0FECF5;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-3.greyed-out {
  border-color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-3.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleThreeLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 365px;
    height: 365px;
  }
}
@keyframes growCircleThreeLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 365px;
    height: 365px;
  }
}
.our-process-multi .thin-container .large-graph .graph-section .circle-4 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  border: 18px solid #12317C;
  -webkit-animation: growCircleFourLg 3s ease-in-out forwards;
          animation: growCircleFourLg 3s ease-in-out forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-4 h3 {
  color: #12317C;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-4.greyed-out {
  border-color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-4.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleFourLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 260px;
    height: 260px;
  }
}
@keyframes growCircleFourLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 260px;
    height: 260px;
  }
}
.our-process-multi .thin-container .large-graph .graph-section .circle-5 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  border: 18px solid #1A73E8;
  -webkit-animation: growCircleFiveLg 3s ease-in-out forwards;
          animation: growCircleFiveLg 3s ease-in-out forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-5 h3 {
  color: #1A73E8;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-5.greyed-out {
  border-color: #999;
}
.our-process-multi .thin-container .large-graph .graph-section .circle-5.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleFiveLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 152px;
    height: 152px;
  }
}
@keyframes growCircleFiveLg {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 152px;
    height: 152px;
  }
}
@media screen and (max-width: 1220px) {
  .our-process-multi .thin-container {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 1140px) {
  .our-process-multi {
    padding: 40px 0;
  }
  .our-process-multi .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .our-process-multi .thin-container .copy-block {
    width: auto;
    text-align: center;
  }
  .our-process-multi .thin-container .copy-block .tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .our-process-multi .thin-container .large-graph .graph-section .graph-hover-content {
    width: 90%;
    padding: 20px 40px;
    top: auto !important;
    bottom: -50px !important;
    left: auto !important;
    text-align: center;
    -webkit-transform: initial;
            transform: initial;
    z-index: 4;
    border-radius: 20px;
    background-color: white;
    -webkit-box-shadow: 0 0 10px #ccc;
            box-shadow: 0 0 10px #ccc;
  }
}
@media screen and (max-width: 780px) {
  .our-process-multi .thin-container .copy-block .tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .our-process-multi .thin-container .large-graph {
    zoom: 0.9;
  }
}
@media screen and (max-width: 580px) {
  .our-process-multi .thin-container .large-graph {
    zoom: 0.8;
  }
}
@media screen and (max-width: 510px) {
  .our-process-multi .thin-container .large-graph {
    zoom: 0.68;
  }
}
@media screen and (max-width: 450px) {
  .our-process-multi .thin-container .large-graph {
    zoom: 0.58;
  }
}

.hbspt-form input.hs-input label,
.hbspt-form textarea.hs-input label,
.hbspt-form select.hs-input label,
.hbspt-form .hs-fieldtype-text label,
.hbspt-form .hs-fieldtype-select label,
.hbspt-form .hs-fieldtype-textarea label {
  font-family: "Euclid Circular B", sans-serif !important;
  font-weight: 500 !important;
}
.hbspt-form input.hs-input .input .hs-input,
.hbspt-form input.hs-input .input .hs-input.hs-fieldtype-textarea,
.hbspt-form input.hs-input .input .hs-input.is-placeholder,
.hbspt-form textarea.hs-input .input .hs-input,
.hbspt-form textarea.hs-input .input .hs-input.hs-fieldtype-textarea,
.hbspt-form textarea.hs-input .input .hs-input.is-placeholder,
.hbspt-form select.hs-input .input .hs-input,
.hbspt-form select.hs-input .input .hs-input.hs-fieldtype-textarea,
.hbspt-form select.hs-input .input .hs-input.is-placeholder,
.hbspt-form .hs-fieldtype-text .input .hs-input,
.hbspt-form .hs-fieldtype-text .input .hs-input.hs-fieldtype-textarea,
.hbspt-form .hs-fieldtype-text .input .hs-input.is-placeholder,
.hbspt-form .hs-fieldtype-select .input .hs-input,
.hbspt-form .hs-fieldtype-select .input .hs-input.hs-fieldtype-textarea,
.hbspt-form .hs-fieldtype-select .input .hs-input.is-placeholder,
.hbspt-form .hs-fieldtype-textarea .input .hs-input,
.hbspt-form .hs-fieldtype-textarea .input .hs-input.hs-fieldtype-textarea,
.hbspt-form .hs-fieldtype-textarea .input .hs-input.is-placeholder {
  border: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px !important;
  padding: 15px 15px !important;
  min-height: auto !important;
}
.hbspt-form input.hs-input .input .hs-input.error,
.hbspt-form input.hs-input .input .hs-input.hs-fieldtype-textarea.error,
.hbspt-form input.hs-input .input .hs-input.is-placeholder.error,
.hbspt-form textarea.hs-input .input .hs-input.error,
.hbspt-form textarea.hs-input .input .hs-input.hs-fieldtype-textarea.error,
.hbspt-form textarea.hs-input .input .hs-input.is-placeholder.error,
.hbspt-form select.hs-input .input .hs-input.error,
.hbspt-form select.hs-input .input .hs-input.hs-fieldtype-textarea.error,
.hbspt-form select.hs-input .input .hs-input.is-placeholder.error,
.hbspt-form .hs-fieldtype-text .input .hs-input.error,
.hbspt-form .hs-fieldtype-text .input .hs-input.hs-fieldtype-textarea.error,
.hbspt-form .hs-fieldtype-text .input .hs-input.is-placeholder.error,
.hbspt-form .hs-fieldtype-select .input .hs-input.error,
.hbspt-form .hs-fieldtype-select .input .hs-input.hs-fieldtype-textarea.error,
.hbspt-form .hs-fieldtype-select .input .hs-input.is-placeholder.error,
.hbspt-form .hs-fieldtype-textarea .input .hs-input.error,
.hbspt-form .hs-fieldtype-textarea .input .hs-input.hs-fieldtype-textarea.error,
.hbspt-form .hs-fieldtype-textarea .input .hs-input.is-placeholder.error {
  border-color: #FF683F;
}
.hbspt-form .inputs-list {
  margin: 5px 0 0 0 !important;
  padding: 0 !important;
}
.hbspt-form .inputs-list .hs-error-msg {
  color: #fff !important;
  background-color: #FF683F !important;
  padding: 4px 6px !important;
  border-radius: 6px !important;
}
.hbspt-form .hs-button,
.hbspt-form .hs-button.primary,
.hbspt-form button,
.hbspt-form button[type=button],
.hbspt-form input[type=submit] {
  padding: 20px 25px !important;
  font-family: "Euclid Circular B", sans-serif !important;
  font-size: 16px !important;
  font-weight: 500;
  background-color: #1A73E8;
  border: 0 !important;
  border-radius: 8px !important;
  text-shadow: initial !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.hbspt-form .hs-button:hover, .hbspt-form .hs-button:active, .hbspt-form .hs-button:focus,
.hbspt-form .hs-button.primary:hover,
.hbspt-form .hs-button.primary:active,
.hbspt-form .hs-button.primary:focus,
.hbspt-form button:hover,
.hbspt-form button:active,
.hbspt-form button:focus,
.hbspt-form button[type=button]:hover,
.hbspt-form button[type=button]:active,
.hbspt-form button[type=button]:focus,
.hbspt-form input[type=submit]:hover,
.hbspt-form input[type=submit]:active,
.hbspt-form input[type=submit]:focus {
  background-color: #FF683F;
  color: #021951 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.page-template-template-what-we-do {
  background-color: #081c4c;
  overflow-x: hidden;
}
.page-template-template-what-we-do .hero {
  height: 750px;
  position: relative;
}
.page-template-template-what-we-do .hero canvas {
  height: 750px;
  position: absolute;
  background-color: transparent;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 0;
  cursor: -webkit-grab;
  cursor: grab;
}
.page-template-template-what-we-do .hero canvas:focus, .page-template-template-what-we-do .hero canvas:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.page-template-template-what-we-do .hero .copy-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-template-what-we-do .hero .copy-container .copy-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-template-template-what-we-do .hero .copy-container .copy-block .eyebrow {
  font-size: 18px;
  color: #1A73E8;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.page-template-template-what-we-do .hero .copy-container .copy-block h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2em;
  color: white;
  text-align: center;
}
.page-template-template-what-we-do .hero .copy-container .copy-block .description {
  max-width: 800px;
}
.page-template-template-what-we-do .hero .copy-container .copy-block .description p {
  color: white;
  text-align: center;
}
.page-template-template-what-we-do .hero .copy-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 20px auto 0 auto;
}
.page-template-template-what-we-do .hero .copy-container .copy-block .ctas a {
  pointer-events: auto;
}
.page-template-template-what-we-do .services-section {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.page-template-template-what-we-do .services-section .gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(34.79%, rgba(8, 28, 76, 0)), to(#081C4C));
  background: linear-gradient(180deg, rgba(8, 28, 76, 0) 34.79%, #081C4C 100%);
}
.page-template-template-what-we-do .services-section .animation {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-template-what-we-do .services-section.scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 2;
}
.page-template-template-what-we-do .services-section .thin-container {
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30%;
  gap: 20px;
  max-width: 300px;
  border-radius: 5px;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories h2 {
  margin: 0;
  font-size: 92px;
  font-weight: 300;
  color: white;
  opacity: 0.1;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories h2 .active-label {
  display: none;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories h2 .down-arrow {
  display: none;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories .service-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories .service-category .label {
  min-height: 30px;
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories .service-category.active, .page-template-template-what-we-do .services-section .thin-container .services-categories .service-category:hover {
  opacity: 1;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories .service-category.active .label, .page-template-template-what-we-do .services-section .thin-container .services-categories .service-category:hover .label {
  opacity: 1;
  color: white;
}
.page-template-template-what-we-do .services-section .thin-container .services-categories .service-category.active .active-arrow, .page-template-template-what-we-do .services-section .thin-container .services-categories .service-category:hover .active-arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-template-template-what-we-do .services-section .thin-container .services-list {
  width: 70%;
  height: 100%;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.page-template-template-what-we-do .services-section .thin-container .services-list::-webkit-scrollbar {
  display: none;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper {
  padding: 40px;
  width: 100%;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info {
  width: 70%;
  margin: 0 auto;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info .lottie-container {
  width: 200px;
  height: 200px;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info h3 {
  margin: 0;
  font-size: 44px;
  font-weight: 300;
  color: white;
  line-height: 1.2em;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info p {
  color: white;
  font-size: 16px;
  line-height: 1.6em;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info .duel-arrow-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #1A73E8;
  text-decoration: none;
  margin-top: 20px;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info .duel-arrow-button:hover {
  color: #135cbc;
}
.page-template-template-what-we-do .services-section .thin-container .services-list .service-item.active {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .page-template-template-what-we-do .hero {
    height: 600px;
  }
  .page-template-template-what-we-do .hero canvas {
    width: 100%;
    height: auto;
    top: auto;
    bottom: 0;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  .page-template-template-what-we-do .hero .copy-container {
    width: 90%;
    padding: 0 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page-template-template-what-we-do .hero .copy-container .copy-block h2 {
    font-size: 36px;
  }
  .page-template-template-what-we-do .hero .copy-container .copy-block .description p {
    font-size: 16px;
  }
  .page-template-template-what-we-do .services-section.scroll-sticky {
    position: relative;
    height: initial;
  }
  .page-template-template-what-we-do .services-section .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px;
    padding-left: 0;
    padding-right: 0;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories {
    width: 90%;
    height: 64px;
    overflow: hidden;
    margin: 0 auto;
    max-width: none;
    padding: 0;
    background-color: #021951;
    border-radius: 5px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories h2 {
    padding: 0 30px;
    opacity: 1;
    height: 63px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories h2 .default-label {
    display: none;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories h2 .active-label {
    display: block;
    color: white;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories h2 .down-arrow {
    display: block;
    width: 10px;
    height: 20px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories h2 .down-arrow svg {
    width: 100%;
    height: 100%;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories .service-category {
    display: none;
    margin-left: 30px;
    margin-right: 30px;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories .service-category:last-child {
    margin-bottom: 30px;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories {
    height: auto;
    overflow: visible;
    background-color: white;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories h2 .active-label {
    color: #1A73E8;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories h2 .down-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories h2 .down-arrow svg path {
    fill: #FF683F;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories .service-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories .service-category .label {
    color: #12317C;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-categories.show-categories .service-category:last-child {
    margin-bottom: 20px;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list {
    width: 100%;
    height: 550px;
    min-height: 550px;
    -ms-scroll-snap-type: y mandatory;
        scroll-snap-type: y mandatory;
    overflow-y: auto;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item {
    height: 550px;
    min-height: 550px;
    padding: 0;
    opacity: 0.5;
    scroll-snap-align: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item.active {
    scroll-snap-stop: always;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper {
    width: 100%;
    padding-top: 0;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info {
    width: 100%;
    text-align: center;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info .lottie-container {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info h3 {
    font-size: 28px;
  }
  .page-template-template-what-we-do .services-section .thin-container .services-list .service-item .wrapper .shareable-info p {
    font-size: 14px;
  }
}

.page-template-template-services .hero {
  padding-top: 140px;
}
.page-template-template-services .hero .thin-container {
  position: relative;
}
.page-template-template-services .hero .symbol {
  position: fixed;
  top: 0;
  right: -5%;
  opacity: 0.06;
  z-index: -1;
  mix-blend-mode: difference;
}
.page-template-template-services .hero .symbol svg {
  zoom: 5;
}
.page-template-template-services .hero .family-tree {
  margin-bottom: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.page-template-template-services .hero .family-tree a {
  text-decoration: none !important;
}
.page-template-template-services .hero .family-tree .icon svg {
  width: 16px;
}
.page-template-template-services .hero .family-tree .icon svg path {
  stroke: #565656;
}
.page-template-template-services .hero .family-tree span {
  display: block;
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.page-template-template-services .hero .family-tree span.parent {
  background-color: #1A73E8;
}
.page-template-template-services .hero .family-tree span.child {
  background-color: #12317C;
}
.page-template-template-services .hero .copy-block {
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-services .hero .copy-block .heading-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.page-template-template-services .hero .copy-block .heading-description .heading {
  width: 50%;
  margin: 0 0 30px 0;
}
.page-template-template-services .hero .copy-block .heading-description .heading h2 {
  margin: 0;
  padding: 0;
  font-size: 64px;
  line-height: 1em;
}
.page-template-template-services .hero .copy-block .heading-description .description {
  width: 40%;
}
.page-template-template-services .hero .copy-block .heading-description .description p {
  font-size: 14px;
  color: #565656;
}
.page-template-template-services .hero .thumbnail {
  height: 600px;
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-animation: fadeIn 1s forwards;
          animation: fadeIn 1s forwards;
}
.page-template-template-services .hero .thumbnail .badge-banner {
  width: 420px;
  background-color: white;
  border-radius: 20px;
  padding: 15px 20px;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-services .hero .thumbnail .badge-banner .badge .badge-asset {
  width: 70px;
}
.page-template-template-services .hero .thumbnail .badge-banner .badge-contents p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4em;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
.page-template-template-services .hero .thumbnail .main-asset {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.page-template-template-services .hero .thumbnail spline-viewer {
  width: 100vw;
  height: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}
.page-template-template-services .general-big-idea-call-out {
  margin-top: 60px;
  margin-bottom: 40px;
}
.page-template-template-services .general-big-idea-call-out .thin-container {
  background-color: #12317C;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
.page-template-template-services .general-big-idea-call-out .thin-container .animated-dots {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.page-template-template-services .general-big-idea-call-out .thin-container .animated-dots .dots {
  width: 1480px;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page-template-template-services .general-big-idea-call-out .thin-container .animated-dots.animate .dots {
  -webkit-animation: zoomOutChangeBorder 3s forwards;
          animation: zoomOutChangeBorder 3s forwards;
}
.page-template-template-services .general-big-idea-call-out .thin-container .animated-dots.animate .dots .dot {
  -webkit-animation: bgNoneBorderYes 3s forwards;
          animation: bgNoneBorderYes 3s forwards;
}
.page-template-template-services .general-big-idea-call-out .thin-container .animated-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1A73E8;
}
@-webkit-keyframes bgNoneBorderYes {
  0% {
    width: 10px;
    height: 10px;
    background-color: #1A73E8;
  }
  30% {
    width: 40px;
    height: 40px;
    background-color: #FEA666;
  }
  50% {
    width: 80px;
    height: 80px;
    background-color: #FF683F;
  }
  75% {
    width: 260px;
    height: 260px;
    background-color: #1A73E8;
    opacity: 1;
  }
  100% {
    width: 320px;
    height: 320px;
    background-color: #1A73E8;
    opacity: 0.2;
  }
}
@keyframes bgNoneBorderYes {
  0% {
    width: 10px;
    height: 10px;
    background-color: #1A73E8;
  }
  30% {
    width: 40px;
    height: 40px;
    background-color: #FEA666;
  }
  50% {
    width: 80px;
    height: 80px;
    background-color: #FF683F;
  }
  75% {
    width: 260px;
    height: 260px;
    background-color: #1A73E8;
    opacity: 1;
  }
  100% {
    width: 320px;
    height: 320px;
    background-color: #1A73E8;
    opacity: 0.2;
  }
}
@-webkit-keyframes zoomOutChangeBorder {
  0% {
    gap: 20px;
  }
  100% {
    gap: 60px;
  }
}
@keyframes zoomOutChangeBorder {
  0% {
    gap: 20px;
  }
  100% {
    gap: 60px;
  }
}
.page-template-template-services .general-big-idea-call-out .thin-container .copy-block {
  padding: 80px 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.page-template-template-services .general-big-idea-call-out .thin-container .copy-block h2, .page-template-template-services .general-big-idea-call-out .thin-container .copy-block .description {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px); /* 50% width minus half the gap */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-template-template-services .general-big-idea-call-out .thin-container .copy-block h2, .page-template-template-services .general-big-idea-call-out .thin-container .copy-block .description, .page-template-template-services .general-big-idea-call-out .thin-container .copy-block .description p {
  margin: 0;
  color: white;
}
.page-template-template-services .general-big-idea-call-out .thin-container .copy-block .description, .page-template-template-services .general-big-idea-call-out .thin-container .copy-block .description p {
  font-size: 12px;
  line-height: 1.6em;
}
.page-template-template-services .steps-section {
  padding: 100px 0;
}
.page-template-template-services .steps-section .thin-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-services .steps-section .thin-container .copy-block {
  width: 40%;
}
.page-template-template-services .steps-section .thin-container .copy-block .description p span {
  font-size: 20px;
  color: #12317C;
}
.page-template-template-services .steps-section .thin-container .graph {
  width: 636px;
  height: 636px;
  position: relative;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  opacity: 1;
  background-color: white;
  -webkit-transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, border-color 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: context-menu;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle:hover {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle.greyed-out {
  border-color: #999;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle.greyed-out h3 {
  color: #999;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle h3 {
  width: 220px;
  margin: 20px auto 0 auto;
  text-align: center;
  opacity: 0;
  -webkit-animation: circleLabelFadeIn 2s ease-in-out forwards;
          animation: circleLabelFadeIn 2s ease-in-out forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle .bubble {
  width: 350px;
  height: 350px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #efefef;
  border-radius: 50%;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0; /* Hidden by default */
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle .bubble.visible {
  opacity: 1;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle .bubble.circle-1-bubble {
  background-color: #FF683F;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle .bubble.circle-2-bubble {
  background-color: #12317C;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle .bubble.circle-3-bubble {
  background-color: #1A73E8;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .growing-circle .bubble .bubble-content {
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  color: white;
}
@keyframes circleLabelFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .play {
  opacity: 1;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-1 {
  width: 200px;
  height: 200px;
  bottom: 0;
  border: 18px solid #FF683F;
  -webkit-animation: growCircleOne 3s ease-in-out forwards;
          animation: growCircleOne 3s ease-in-out forwards;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-1 h3 {
  color: #FF683F;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-1.greyed-out {
  border-color: #999;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-1.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleOne {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 581px;
    height: 581px;
  }
}
@keyframes growCircleOne {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 581px;
    height: 581px;
  }
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  border: 18px solid #12317C;
  -webkit-animation: growCircleTwo 3s ease-in-out forwards;
          animation: growCircleTwo 3s ease-in-out forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-2 h3 {
  color: #12317C;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-2.greyed-out {
  border-color: #999;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-2.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleTwo {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 441px;
    height: 441px;
  }
}
@keyframes growCircleTwo {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 441px;
    height: 441px;
  }
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-3 {
  width: 200px;
  height: 200px;
  bottom: -18px;
  border: 18px solid #1A73E8;
  -webkit-animation: growCircleThree 3s ease-in-out forwards;
          animation: growCircleThree 3s ease-in-out forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-3 h3 {
  width: 220px;
  margin: 40px auto 0 auto;
  color: #1A73E8;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-3.greyed-out {
  border-color: #999;
}
.page-template-template-services .steps-section .thin-container .graph .graph-section .circle-3.greyed-out h3 {
  color: #999;
}
@-webkit-keyframes growCircleThree {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 305px;
    height: 305px;
  }
}
@keyframes growCircleThree {
  0% {
    width: 200px;
    height: 200px;
  }
  100% {
    width: 305px;
    height: 305px;
  }
}
.page-template-template-services .skills-content-block {
  padding-bottom: 120px;
}
.page-template-template-services .skills-content-block .thin-container {
  width: 960px;
}
.page-template-template-services .skills-content-block .thin-container .thumbnail {
  width: 100%;
  height: 477px;
  background-color: #1A73E8;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-template-template-services .skills-content-block .thin-container .thumbnail::after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(47.54%, rgba(0, 0, 0, 0)), color-stop(90%, #000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 47.54%, #000 90%);
  z-index: 1;
}
.page-template-template-services .skills-content-block .thin-container .thumbnail img, .page-template-template-services .skills-content-block .thin-container .thumbnail video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-template-services .skills-content-block .thin-container .thumbnail .heading {
  width: 770px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-template-template-services .skills-content-block .thin-container .thumbnail .heading h2 {
  margin: 0 0 40px 0;
  width: 50%;
  color: white;
}
.page-template-template-services .skills-content-block .thin-container .contents {
  width: 770px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
.page-template-template-services .skills-content-block .thin-container .contents .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
.page-template-template-services .skills-content-block .thin-container .contents .cols .description {
  width: 65%;
}
.page-template-template-services .skills-content-block .thin-container .contents .cols .description p:first-child {
  margin-top: 0;
}
.page-template-template-services .the-cloudmellow-difference .thin-container {
  padding-top: 0px;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents {
  position: relative;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents h2 {
  width: 380px;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .lottie-container {
  position: relative;
  z-index: 3;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .description {
  width: 380px;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference {
  width: 600px;
  padding: 40px;
  -webkit-transform: translateY(-140px);
          transform: translateY(-140px);
  border-radius: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(#FFF));
  background: linear-gradient(180deg, #F0F0F0 0%, #FFF 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 10px);
          flex: 0 0 calc(50% - 10px); /* 50% width minus half the gap */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col.adaptability h3 {
  color: #1A73E8;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col.data-driven h3 {
  color: #FF683F;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col p {
  font-size: 14px;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .border {
  width: 100%;
  height: 25px;
  border: 1px dashed #999;
  border-top: 0;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service {
  width: 60%;
  text-align: center;
}
.page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service p {
  font-size: 14px;
}
.page-template-template-services .additional-services {
  padding: 75px 0 50px 0;
}
.page-template-template-services .additional-services .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-services .additional-services .thin-container .services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-services .additional-services .thin-container .services .service {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  background-color: #1A73E8;
  color: white;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  position: relative;
  overflow: hidden;
}
.page-template-template-services .additional-services .thin-container .services .service .icon {
  width: 120px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-template-template-services .additional-services .thin-container .services .service .icon .lottie-container {
  width: 70px;
}
.page-template-template-services .additional-services .thin-container .services .service .label {
  display: block;
  padding-right: 40px;
  font-size: 20px;
  white-space: nowrap;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  opacity: 0;
}
.page-template-template-services .additional-services .thin-container .services .service:hover {
  width: auto;
  min-width: 120px;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.page-template-template-services .additional-services .thin-container .services .service:hover .label {
  opacity: 1;
}
@media screen and (max-width: 1240px) {
  .page-template-template-services .general-big-idea-call-out {
    padding: 30px;
  }
  .page-template-template-services .general-big-idea-call-out .thin-container {
    width: 100%;
  }
  .page-template-template-services .general-big-idea-call-out .thin-container .copy-block h2 {
    font-size: 48px;
  }
}
@media screen and (max-width: 1180px) {
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents {
    position: relative;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents h2 {
    width: 380px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .lottie-container {
    position: relative;
    z-index: 3;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .description {
    width: 380px;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference {
    width: 600px;
    padding: 40px;
    -webkit-transform: translateY(-140px);
            transform: translateY(-140px);
    border-radius: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(#FFF));
    background: linear-gradient(180deg, #F0F0F0 0%, #FFF 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px); /* 50% width minus half the gap */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col.adaptability h3 {
    color: #1A73E8;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col.data-driven h3 {
    color: #FF683F;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col p {
    font-size: 14px;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .border {
    width: 100%;
    height: 25px;
    border: 1px dashed #999;
    border-top: 0;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service {
    width: 60%;
    text-align: center;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1040px) {
  .page-template-template-services .hero {
    padding-top: 100px;
  }
  .page-template-template-services .hero .family-tree {
    margin-bottom: 100px;
  }
  .page-template-template-services .hero .copy-block .heading-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .page-template-template-services .hero .copy-block .heading-description .heading, .page-template-template-services .hero .copy-block .heading-description .description {
    width: 100%;
  }
  .page-template-template-services .hero .copy-block .heading-description .heading {
    margin-bottom: 0;
  }
  .page-template-template-services .hero .copy-block .heading-description .heading h2 {
    font-size: 48px;
  }
  .page-template-template-services .hero .thumbnail {
    height: 300px;
  }
  .page-template-template-services .hero .thumbnail.spline-animation {
    width: 100%;
    height: auto;
  }
  .page-template-template-services .hero .thumbnail.spline-animation spline-viewer {
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px;
    zoom: 0.4;
  }
  .page-template-template-services .steps-section {
    padding: 40px 0;
  }
  .page-template-template-services .steps-section .thin-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .page-template-template-services .steps-section .thin-container .copy-block {
    width: 100%;
    text-align: center;
  }
  .page-template-template-services .steps-section .thin-container .copy-block .description {
    text-align: center;
  }
  .page-template-template-services .steps-section .thin-container .copy-block .description p {
    text-align: center;
  }
  .page-template-template-services .steps-section .thin-container .copy-block .description p span {
    font-size: 20px;
    color: #12317C;
  }
  .page-template-template-services .steps-section .thin-container .graph {
    width: 636px;
    height: 636px;
    position: relative;
  }
}
@media screen and (max-width: 1024px) {
  .page-template-template-services .steps-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-template-template-services .steps-section .copy-block, .page-template-template-services .steps-section .graph {
    width: 100%;
  }
  .page-template-template-services .general-big-idea-call-out {
    margin: 0;
  }
  .page-template-template-services .general-big-idea-call-out .thin-container {
    height: auto;
    padding: 30px;
  }
  .page-template-template-services .general-big-idea-call-out .thin-container .copy-block {
    height: auto;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-template-template-services .general-big-idea-call-out .thin-container .copy-block h2 {
    font-size: 32px;
  }
  .page-template-template-services .general-big-idea-call-out .thin-container .copy-block h2, .page-template-template-services .general-big-idea-call-out .thin-container .copy-block .description {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-template-template-services .skills-content-block {
    padding-bottom: 80px;
  }
  .page-template-template-services .skills-content-block .thin-container {
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-template-template-services .skills-content-block .thin-container .thumbnail {
    width: 100%;
    height: 300px;
  }
  .page-template-template-services .skills-content-block .thin-container .thumbnail .heading {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .page-template-template-services .skills-content-block .thin-container .thumbnail .heading h2 {
    margin: 0 0 40px 0;
    width: 100%;
    color: white;
  }
  .page-template-template-services .skills-content-block .thin-container .contents {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 40px;
  }
  .page-template-template-services .skills-content-block .thin-container .contents .cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 60px;
  }
  .page-template-template-services .skills-content-block .thin-container .contents .cols .description {
    width: 65%;
  }
  .page-template-template-services .skills-content-block .thin-container .contents .cols .description p:first-child {
    margin-top: 0;
  }
  .page-template-template-services .additional-services {
    padding: 40px 0 30px 0;
  }
  .page-template-template-services .additional-services .thin-container h2 {
    font-size: 28px;
  }
  .page-template-template-services .additional-services .thin-container .services {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .page-template-template-services .additional-services .thin-container .services .service {
    width: 100%;
    height: 120px;
    overflow: hidden;
  }
  .page-template-template-services .additional-services .thin-container .services .service .icon {
    width: 120px;
    height: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .page-template-template-services .additional-services .thin-container .services .service .icon .lottie-container {
    width: 70px;
  }
  .page-template-template-services .additional-services .thin-container .services .service .label {
    display: block;
    padding-right: 40px;
    font-size: 18px;
    white-space: initial;
    opacity: 1;
  }
  .page-template-template-services .additional-services .thin-container .services .service:hover {
    width: 100%;
    min-width: 100%;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .page-template-template-services .additional-services .thin-container .services .service:hover .label {
    opacity: 1;
  }
}
@media screen and (max-width: 991px) {
  .page-template-template-services .hero .thumbnail.spline-animation {
    width: 100%;
    height: 450px;
  }
  .page-template-template-services .hero .thumbnail.spline-animation spline-viewer {
    zoom: 0.4;
  }
  .page-template-template-services .skills-content-block {
    padding-bottom: 100px;
  }
  .page-template-template-services .skills-content-block .thin-container .thumbnail {
    width: 100%;
    height: 450px;
  }
  .page-template-template-services .skills-content-block .thin-container .thumbnail .heading {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .page-template-template-services .skills-content-block .thin-container .thumbnail .heading h2 {
    margin: 0 0 40px 0;
    width: 100%;
    font-size: 32px;
    color: white;
  }
  .page-template-template-services .skills-content-block .thin-container .contents {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-top: 30px;
  }
  .page-template-template-services .skills-content-block .thin-container .contents .cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .page-template-template-services .skills-content-block .thin-container .contents .cols .description {
    width: 100%;
  }
  .page-template-template-services .skills-content-block .thin-container .contents .cols .description p:first-child {
    margin-top: 0;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container {
    padding-top: 0px;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents {
    position: relative;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents h2 {
    width: 100%;
    position: relative;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .lottie-container {
    position: relative;
    z-index: 3;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0 40px 0;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .description {
    width: 100%;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 30px;
    -webkit-transform: initial;
            transform: initial;
    border-radius: 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(#F0F0F0), to(#FFF));
    background: linear-gradient(180deg, #F0F0F0 0%, #FFF 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 10px);
            flex: 0 0 calc(50% - 10px); /* 50% width minus half the gap */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col.adaptability h3 {
    color: #1A73E8;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col.data-driven h3 {
    color: #FF683F;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col p {
    font-size: 14px;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .border {
    width: 100%;
    height: 25px;
    border: 1px dashed #999;
    border-top: 0;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service {
    width: 60%;
    text-align: center;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-services .steps-section .thin-container .graph {
    zoom: 0.8;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .cols .col {
    width: 100%;
  }
  .page-template-template-services .the-cloudmellow-difference .thin-container .contents .bottom .difference .white-glove-service {
    width: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 500px) {
  .page-template-template-services .steps-section .thin-container .graph {
    zoom: 0.6;
  }
}

.post-type-archive-industry-news {
  background-color: #FF683F;
}
.post-type-archive-industry-news footer.footer {
  mix-blend-mode: multiply;
}
.post-type-archive-industry-news .hero .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.post-type-archive-industry-news .hero .thin-container .copy-block {
  position: relative;
}
.post-type-archive-industry-news .hero .thin-container .copy-block h2 {
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 110px;
  line-height: 1em;
  color: #4d1709;
}
.post-type-archive-industry-news .hero .thin-container .featured-post {
  width: 100vw;
  height: 550px;
  display: block;
  -webkit-transform: translateX(550px);
          transform: translateX(550px);
  padding: 35px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .thumbnail .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(247deg, rgba(0, 0, 0, 0) 1.18%, rgba(0, 0, 0, 0.7) 98.47%);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block {
  width: 60%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .title, .post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .meta {
  opacity: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .title {
  margin-bottom: 15px;
  display: block;
  font-size: 48px;
  line-height: 1.2em;
  color: white;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: white;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .read-more {
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  gap: 0;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .read-more .label {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
  color: white;
  height: 30px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .read-more .active-arrow {
  width: 0;
  height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .read-more .active-arrow svg {
  width: 14px;
  height: 14px;
}
.post-type-archive-industry-news .hero .thin-container .featured-post:hover .thumbnail .overlay {
  opacity: 0;
}
.post-type-archive-industry-news .hero .thin-container .featured-post:hover .featured-copy-block .meta {
  height: 1px;
  overflow: hidden;
}
.post-type-archive-industry-news .hero .thin-container .featured-post:hover .read-more {
  margin-top: 0;
  gap: 15px;
}
.post-type-archive-industry-news .hero .thin-container .featured-post:hover .read-more .active-arrow {
  width: 30px;
  height: 30px;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search {
  padding: 15px 0;
  position: relative;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search label {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input {
  width: 100%;
  padding: 13px 30px 13px 60px;
  background-color: transparent;
  font-size: 22px;
  font-weight: 500;
  color: #4d1709;
  background-color: #f2947a;
  border-radius: 5px;
  border: 0;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-webkit-input-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-moz-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input:-ms-input-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-ms-input-placeholder {
  font-size: 24px;
  font-weight: 500;
  color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::placeholder {
  font-size: 24px;
  font-weight: 500;
  color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search input:focus, .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input:active {
  border: 0;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search .search-button {
  display: inline-block;
  padding: 7px 16px;
  background-color: #f2947a;
  border: 2px solid #4d1709;
  -webkit-box-shadow: 4px 4px 0 0 #4d1709;
          box-shadow: 4px 4px 0 0 #4d1709;
  color: #4d1709;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.3s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, background-color 0.3s ease-out;
  transition: transform 0.2s ease-out, background-color 0.3s ease-out, -webkit-transform 0.2s ease-out;
  position: absolute;
  top: 20px;
  right: 13px;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-search .search-button:hover, .post-type-archive-industry-news .industry-news .news-filter-controls .news-search .search-button:active, .post-type-archive-industry-news .industry-news .news-filter-controls .news-search .search-button:focus {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  color: #FF683F;
  -webkit-box-shadow: 0 0 0 0 #4d1709;
          box-shadow: 0 0 0 0 #4d1709;
  background-color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters {
  margin-bottom: 20px;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select {
  position: relative;
  width: 50%;
  background-color: #4d1709;
  border-radius: 5px;
  color: #FF683F;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select select {
  width: 100%;
  padding: 13px 30px;
  background: transparent;
  border: none;
  color: #FF683F;
  font-size: 24px;
  font-weight: 500;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select select option {
  background-color: #4d1709;
  color: #FF683F;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select select:focus {
  outline: none;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select::after {
  content: "↓";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #FF683F;
  font-size: 22px;
  pointer-events: none;
}
.post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select:hover {
  background-color: #5e1f0b;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item {
  min-width: 300px;
  height: 300px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 40px) / 4);
          flex: 1 1 calc((100% - 40px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 35px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc((100% - 20px) / 2);
            flex: 1 1 calc((100% - 20px) / 2);
  }
}
@media (max-width: 480px) {
  .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .thumbnail {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .thumbnail .overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: hard-light;
  background-color: #2b0b02;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .title, .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .title {
  display: block;
  margin-bottom: 15px;
  display: block;
  font-size: 24px;
  line-height: 1.4em;
  color: white;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta .north-meta {
  position: absolute;
  top: 0;
  left: 0;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta .north-meta .categories, .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta .north-meta .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta .north-meta .categories span, .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .meta .north-meta .tags span {
  padding: 3px 5px;
  display: inline-block;
  border-radius: 4px;
  background-color: #000;
  text-transform: capitalize;
  font-size: 10px;
  color: white;
  opacity: 0.5;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .read-more {
  margin-top: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  gap: 0;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .read-more .label {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
  color: white;
  height: 30px;
  font-size: 16px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .read-more .active-arrow {
  width: 0;
  height: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .read-more .active-arrow svg {
  width: 14px;
  height: 14px;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item:hover .thumbnail img {
  zoom: 3;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item:hover .thumbnail .overlay {
  mix-blend-mode: normal;
  background: linear-gradient(247deg, rgba(36, 10, 3, 0) 0.98%, #240A03 78.7%);
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item:hover .copy-block .meta {
  height: 1px;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item:hover .read-more {
  margin-top: 0;
  gap: 15px;
}
.post-type-archive-industry-news .industry-news .news-content .news-posts .news-item:hover .read-more .active-arrow {
  width: 30px;
  height: 30px;
}
.post-type-archive-industry-news .industry-news .news-content .pagination {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers {
  display: inline-block;
  padding: 7px 16px;
  background-color: #f2947a;
  border: 2px solid #4d1709;
  -webkit-box-shadow: 4px 4px 0 0 #4d1709;
          box-shadow: 4px 4px 0 0 #4d1709;
  color: #4d1709;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.3s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, background-color 0.3s ease-out;
  transition: transform 0.2s ease-out, background-color 0.3s ease-out, -webkit-transform 0.2s ease-out;
}
.post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers:hover, .post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers:active, .post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers:focus, .post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers.current {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  color: #FF683F;
  -webkit-box-shadow: 0 0 0 0 #4d1709;
          box-shadow: 0 0 0 0 #4d1709;
  background-color: #4d1709;
}
.post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers.dots {
  -webkit-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  color: #4d1709;
  padding: 7px 8px;
  border: 0;
  -webkit-box-shadow: initial;
          box-shadow: initial;
  background-color: transparent;
}
.post-type-archive-industry-news .call-out {
  padding: 100px 0 75px 0;
  font-size: 150px;
  font-weight: 600;
  line-height: 1em;
  color: #4d1709;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .post-type-archive-industry-news .hero {
    padding-top: 150px;
  }
  .post-type-archive-industry-news .hero .thin-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .post-type-archive-industry-news .hero .thin-container .copy-block h2 {
    position: relative;
    font-size: 48px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post {
    -webkit-transform: none;
            transform: none;
    height: 450px;
    padding: 25px;
    border-top-left-radius: 20px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block {
    width: 100%;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .title {
    width: 90%;
    font-size: 36px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select {
    width: 100%;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-filters form .custom-select select {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .post-type-archive-industry-news .hero .thin-container .copy-block h2 {
    font-size: 48px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post {
    height: 350px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .title {
    font-size: 28px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input {
    font-size: 18px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-webkit-input-placeholder {
    font-size: 18px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-moz-placeholder {
    font-size: 18px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input:-ms-input-placeholder {
    font-size: 18px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-ms-input-placeholder {
    font-size: 18px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::placeholder {
    font-size: 18px;
  }
  .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item {
    padding: 25px;
  }
  .post-type-archive-industry-news .industry-news .news-content .news-posts .news-item .copy-block .title {
    font-size: 20px;
  }
  .post-type-archive-industry-news .call-out {
    padding: 50px 0 35px 0;
    font-size: 72px;
  }
}
@media screen and (max-width: 480px) {
  .post-type-archive-industry-news .hero .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post {
    height: 300px;
    padding: 20px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .title {
    font-size: 24px;
  }
  .post-type-archive-industry-news .hero .thin-container .featured-post .featured-copy-block .read-more .label {
    font-size: 14px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input {
    font-size: 16px;
    padding: 10px 20px 10px 50px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-moz-placeholder {
    font-size: 16px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input:-ms-input-placeholder {
    font-size: 16px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::-ms-input-placeholder {
    font-size: 16px;
  }
  .post-type-archive-industry-news .industry-news .news-filter-controls .news-search input::placeholder {
    font-size: 16px;
  }
  .post-type-archive-industry-news .industry-news .news-content .pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .post-type-archive-industry-news .industry-news .news-content .pagination .page-numbers {
    padding: 5px 12px;
    font-size: 14px;
  }
  .post-type-archive-industry-news .call-out {
    padding: 30px 0 25px 0;
    font-size: 48px;
  }
}

.single-industry-news .fade-in-scroll-up {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.single-industry-news .fade-in-scroll-up.in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-industry-news .hero {
  padding-top: 220px;
  padding-bottom: 40px;
  background-color: #12317C;
}
.single-industry-news .hero .thin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 20px;
}
.single-industry-news .hero .thin-container .copy-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.single-industry-news .hero .thin-container .copy-block h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2em;
  color: white;
}
.single-industry-news .hero .thin-container .copy-block .meta {
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 5px;
  font-size: 12px;
  color: white;
}
.single-industry-news .hero .thin-container .copy-block .meta a {
  color: white;
}
.single-industry-news .hero .thin-container .copy-block .meta .industry-news-categories {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.single-industry-news .hero .thin-container .copy-block .meta .industry-news-categories .category-label {
  background-color: #021951;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
}
.single-industry-news .featured-image {
  position: relative;
}
.single-industry-news .featured-image::before {
  width: 100%;
  height: 50%;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #12317C;
}
.single-industry-news .featured-image img {
  width: 100vw;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  position: relative;
  z-index: 1;
}
.single-industry-news .industry-news .news-content {
  margin: 0 auto;
  max-width: 800px;
}
.single-industry-news .industry-news .news-content .breadcrumbs {
  margin: 30px 0;
  font-size: 14px;
  color: #565656;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.single-industry-news .industry-news .news-content .breadcrumbs .icon {
  width: 14px;
  height: 14px;
}
.single-industry-news .industry-news .news-content .breadcrumbs .icon svg {
  width: 14px;
  height: 14px;
  stroke: #565656;
}
.single-industry-news .industry-news .news-content .breadcrumbs .icon svg path {
  stroke: #565656;
}
.single-industry-news .industry-news .news-content .breadcrumbs a {
  color: #565656;
  text-decoration: none;
}
.single-industry-news .industry-news .news-content .breadcrumbs a:hover {
  text-decoration: underline;
}
.single-industry-news .industry-news .news-content .breadcrumbs .separator {
  color: #aaa;
}
.single-industry-news .industry-news .news-content .breadcrumbs .current {
  color: #565656;
}
.single-industry-news .industry-news .news-content .post-content {
  color: #565656;
  font-size: 18px;
  line-height: 1.6em;
  padding: 50px 0;
}
.single-industry-news .industry-news .news-content .post-content p {
  margin-bottom: 20px;
}
.single-industry-news .industry-news .news-content .post-content h1, .single-industry-news .industry-news .news-content .post-content h2, .single-industry-news .industry-news .news-content .post-content h3, .single-industry-news .industry-news .news-content .post-content h4, .single-industry-news .industry-news .news-content .post-content h5, .single-industry-news .industry-news .news-content .post-content h6 {
  color: #12317C;
  margin-bottom: 15px;
  line-height: 1.2em;
}
.single-industry-news .industry-news .news-content .post-content img {
  border-radius: 20px;
}
.single-industry-news .industry-news .news-content .post-content a {
  color: #1A73E8;
  text-decoration: underline;
}
.single-industry-news .industry-news .news-content .post-content a:hover {
  color: #FF683F;
}
.single-industry-news .post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 40px 0;
  margin-left: auto;
  margin-right: auto;
}
.single-industry-news .post-navigation .prev-post, .single-industry-news .post-navigation .next-post {
  width: 50%;
}
.single-industry-news .post-navigation .prev-post .nav-button, .single-industry-news .post-navigation .next-post .nav-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 40px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
}
.single-industry-news .post-navigation .prev-post .nav-button .label, .single-industry-news .post-navigation .next-post .nav-button .label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #12317C;
}
.single-industry-news .post-navigation .prev-post .nav-button .title, .single-industry-news .post-navigation .next-post .nav-button .title {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  color: #1A73E8;
}
.single-industry-news .post-navigation .prev-post .nav-button .arrow, .single-industry-news .post-navigation .next-post .nav-button .arrow {
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: #FF683F;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.single-industry-news .post-navigation .prev-post .nav-button:hover, .single-industry-news .post-navigation .prev-post .nav-button:active, .single-industry-news .post-navigation .prev-post .nav-button:focus, .single-industry-news .post-navigation .next-post .nav-button:hover, .single-industry-news .post-navigation .next-post .nav-button:active, .single-industry-news .post-navigation .next-post .nav-button:focus {
  color: #12317C;
  background-color: #efefef;
}
.single-industry-news .post-navigation .prev-post .nav-button:hover .arrow, .single-industry-news .post-navigation .prev-post .nav-button:active .arrow, .single-industry-news .post-navigation .prev-post .nav-button:focus .arrow, .single-industry-news .post-navigation .next-post .nav-button:hover .arrow, .single-industry-news .post-navigation .next-post .nav-button:active .arrow, .single-industry-news .post-navigation .next-post .nav-button:focus .arrow {
  width: 50px;
  height: 50px;
}
.single-industry-news .post-navigation .prev-post {
  text-align: left;
}
.single-industry-news .post-navigation .prev-post .nav-button .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single-industry-news .post-navigation .next-post {
  text-align: right;
}
.single-industry-news .share-post {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}
.single-industry-news .share-post h3 {
  font-size: 24px;
  color: #12317C;
  margin-bottom: 20px;
}
.single-industry-news .share-post .share-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.single-industry-news .share-post .share-links .copy-link-wrapper {
  position: relative;
}
.single-industry-news .share-post .share-links .copy-link-wrapper .copy-message {
  width: 150px;
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #12317C;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.single-industry-news .share-post .share-links .copy-link-wrapper .copy-message.show {
  opacity: 1;
  visibility: visible;
}
.single-industry-news .share-post .share-links a, .single-industry-news .share-post .share-links button {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #efefef;
  border: 0;
}
.single-industry-news .share-post .share-links a svg, .single-industry-news .share-post .share-links button svg {
  height: 14px;
  fill: #12317C;
}
.single-industry-news .share-post .share-links a svg path, .single-industry-news .share-post .share-links button svg path {
  fill: #12317C;
}
.single-industry-news .share-post .share-links a.copy-link svg, .single-industry-news .share-post .share-links button.copy-link svg {
  height: 14px;
  fill: transparent;
}
.single-industry-news .share-post .share-links a.copy-link svg path, .single-industry-news .share-post .share-links button.copy-link svg path {
  stroke: #12317C;
  fill: transparent;
}
.single-industry-news .share-post .share-links a:hover, .single-industry-news .share-post .share-links button:hover {
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.single-industry-news .share-post .share-links a:hover svg, .single-industry-news .share-post .share-links button:hover svg {
  fill: white;
}
.single-industry-news .share-post .share-links a:hover svg path, .single-industry-news .share-post .share-links button:hover svg path {
  fill: white;
}
.single-industry-news .share-post .share-links a:hover.copy-link svg, .single-industry-news .share-post .share-links button:hover.copy-link svg {
  height: 14px;
  fill: transparent;
}
.single-industry-news .share-post .share-links a:hover.copy-link svg path, .single-industry-news .share-post .share-links button:hover.copy-link svg path {
  stroke: white;
  fill: transparent;
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@media screen and (max-width: 1220px) {
  .single-industry-news .hero {
    padding-top: 180px;
  }
  .single-industry-news .hero .thin-container .copy-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .single-industry-news .hero .thin-container .copy-block h2 {
    font-size: 48px;
  }
  .single-industry-news .featured-image img {
    height: 400px;
  }
  .single-industry-news .post-navigation {
    max-width: 800px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .single-industry-news .hero {
    padding-top: 150px;
    padding-bottom: 30px;
  }
  .single-industry-news .hero .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .single-industry-news .featured-image img {
    height: 300px;
  }
  .single-industry-news .industry-news .news-content {
    padding: 0 20px;
  }
  .single-industry-news .industry-news .news-content .breadcrumbs {
    margin: 20px 0;
    font-size: 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .single-industry-news .industry-news .news-content .post-content {
    font-size: 16px;
    padding: 30px 0;
  }
  .single-industry-news .post-navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .single-industry-news .post-navigation .prev-post, .single-industry-news .post-navigation .next-post {
    width: 100%;
  }
  .single-industry-news .post-navigation .prev-post .nav-button, .single-industry-news .post-navigation .next-post .nav-button {
    padding: 20px;
  }
  .single-industry-news .post-navigation .prev-post .nav-button .title, .single-industry-news .post-navigation .next-post .nav-button .title {
    font-size: 18px;
  }
  .single-industry-news .post-navigation .prev-post .nav-button .arrow, .single-industry-news .post-navigation .next-post .nav-button .arrow {
    width: 40px;
    height: 40px;
  }
  .single-industry-news .share-post {
    padding: 0 20px;
  }
  .single-industry-news .share-post h3 {
    font-size: 20px;
  }
  .single-industry-news .share-post .share-links .copy-link-wrapper .copy-message {
    left: 50%;
    top: -40px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .single-industry-news .hero {
    padding-top: 120px;
  }
  .single-industry-news .hero .thin-container .copy-block h2 {
    font-size: 28px;
  }
  .single-industry-news .hero .thin-container .copy-block .meta {
    font-size: 11px;
  }
  .single-industry-news .featured-image img {
    height: 250px;
  }
  .single-industry-news .industry-news .news-content .post-content {
    font-size: 15px;
  }
  .single-industry-news .industry-news .news-content .post-content h1 {
    font-size: 28px;
  }
  .single-industry-news .industry-news .news-content .post-content h2 {
    font-size: 24px;
  }
  .single-industry-news .industry-news .news-content .post-content h3 {
    font-size: 20px;
  }
  .single-industry-news .industry-news .news-content .post-content h4 {
    font-size: 18px;
  }
}

.single-case-study h2 {
  margin: 0 0 20px;
  font-size: 48px;
}
.single-case-study h3 {
  margin: 0 0 20px;
  font-size: 36px;
  font-weight: 400;
}
.single-case-study h4 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
}
.single-case-study h5 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 500;
}
.single-case-study .rounded-image img {
  border-radius: 20px;
}
.single-case-study .rounded-corners {
  border-radius: 20px;
  overflow: hidden;
}
.single-case-study .dropshadow-image img {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.single-case-study .pills-dark {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-case-study .pills-dark li {
  background-color: #12317C;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.single-case-study .rounded-card {
  border-radius: 20px;
  padding: 40px;
}
.single-case-study .rounded-card h3 {
  font-size: 24px;
}
.single-case-study .hero {
  min-height: 550px;
  padding-top: 150px;
}
.single-case-study .hero .wp-block-button {
  margin-bottom: 40px;
}
.single-case-study .hero .wp-block-button .wp-element-button {
  padding: 0;
  font-size: 16px;
  border-radius: 50px;
  background: transparent;
  color: #ccc;
}
.single-case-study .hero .wp-block-button .wp-element-button:hover {
  color: #1A73E8;
}
.single-case-study .hero h2 {
  margin: 0 0 20px;
  font-size: 64px;
  color: white;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .single-case-study .hero h2 {
    font-size: 40px;
  }
}
.single-case-study .hero h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  color: #1A73E8;
  overflow-wrap: anywhere;
}
.single-case-study .hero h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #999;
}
.single-case-study .hero p {
  color: white;
}
.single-case-study .hero .company-details {
  margin-top: 40px;
  margin-bottom: 20px;
}
.single-case-study .hero .company-details .wp-block-column {
  border-top: 1px solid #666;
}
.single-case-study .hero .company-details .wp-block-column a, .single-case-study .hero .company-details .wp-block-column a:hover {
  color: #eee;
}
.single-case-study .hero .taxonomy-case-study-category a, .single-case-study .hero .taxonomy-case-study-category a:hover {
  cursor: text;
  text-decoration: none;
}
.single-case-study .main-image {
  opacity: 0;
  margin-top: -150px;
  position: relative;
  z-index: 1;
}
.single-case-study .main-image img {
  border-radius: 20px;
}
.single-case-study .dynamic-table-of-contents {
  position: fixed;
  top: 120px;
  right: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  min-width: 200px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.single-case-study .dynamic-table-of-contents.minimized {
  max-width: 60px;
  min-width: 60px;
  padding: 15px;
}
.single-case-study .dynamic-table-of-contents.minimized .toc-header {
  padding: 0;
  margin: 0;
  border-bottom: 0;
}
.single-case-study .dynamic-table-of-contents.minimized .toc-header h4 {
  display: none;
}
.single-case-study .dynamic-table-of-contents.minimized .toc-content {
  display: none;
}
.single-case-study .dynamic-table-of-contents.minimized .toc-toggle {
  margin: 0 auto;
}
.single-case-study .dynamic-table-of-contents .toc-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.single-case-study .dynamic-table-of-contents .toc-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #021951;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-case-study .dynamic-table-of-contents .toc-toggle {
  background: #1A73E8;
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.single-case-study .dynamic-table-of-contents .toc-toggle:hover {
  background: #135cbc;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.single-case-study .dynamic-table-of-contents .toc-content {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.single-case-study .dynamic-table-of-contents .toc-content li {
  margin-bottom: 5px;
}
.single-case-study .dynamic-table-of-contents .toc-content li.toc-level-2 {
  padding-left: 0;
}
.single-case-study .dynamic-table-of-contents .toc-content li.toc-level-3 {
  padding-left: 15px;
}
.single-case-study .dynamic-table-of-contents .toc-content li.toc-level-4 {
  padding-left: 30px;
}
.single-case-study .dynamic-table-of-contents .toc-content li.toc-level-5, .single-case-study .dynamic-table-of-contents .toc-content li.toc-level-6 {
  padding-left: 45px;
}
.single-case-study .dynamic-table-of-contents .toc-content li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.4;
}
.single-case-study .dynamic-table-of-contents .toc-content li a:hover {
  background-color: rgba(26, 115, 232, 0.1);
  color: #1A73E8;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.single-case-study .dynamic-table-of-contents .toc-content li a.active {
  background-color: #1A73E8;
  color: white;
  font-weight: 600;
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
  -webkit-box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
          box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}
@media (max-width: 1024px) {
  .single-case-study .dynamic-table-of-contents {
    right: 10px;
    max-width: 250px;
    min-width: 180px;
    padding: 15px;
  }
  .single-case-study .dynamic-table-of-contents.minimized {
    max-width: 50px;
    min-width: 50px;
    padding: 12px;
  }
}
@media (max-width: 768px) {
  .single-case-study .dynamic-table-of-contents {
    position: relative;
    top: auto;
    right: auto;
    margin: 20px 0;
    max-width: 100%;
    min-width: auto;
  }
  .single-case-study .dynamic-table-of-contents.minimized {
    max-width: 60px;
    min-width: 60px;
    margin: 20px auto;
  }
  .single-case-study .dynamic-table-of-contents .toc-header h4 {
    font-size: 18px;
  }
  .single-case-study .dynamic-table-of-contents .toc-content li a {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .single-case-study .dynamic-table-of-contents {
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
  }
  .single-case-study .dynamic-table-of-contents.minimized {
    margin: 15px auto;
    padding: 12px;
  }
  .single-case-study .dynamic-table-of-contents .toc-content li.toc-level-3 {
    padding-left: 10px;
  }
  .single-case-study .dynamic-table-of-contents .toc-content li.toc-level-4 {
    padding-left: 20px;
  }
  .single-case-study .dynamic-table-of-contents .toc-content li.toc-level-5, .single-case-study .dynamic-table-of-contents .toc-content li.toc-level-6 {
    padding-left: 30px;
  }
}
.single-case-study .overview {
  padding-top: 80px;
  padding-bottom: 80px;
}
.single-case-study .challenge .gb-layout-column-wrap {
  border-radius: 20px;
  padding: 80px;
  background-color: #eee;
  background-image: linear-gradient(177deg, rgb(247, 247, 247), rgb(255, 255, 255));
}
.single-case-study .challenge .gb-layout-column-wrap .heading-before {
  background-color: #565656;
}
.single-case-study .challenge .gb-layout-column-wrap .heading-after {
  background-color: #1A73E8;
}
.single-case-study .challenge .gb-layout-column-wrap .heading-before,
.single-case-study .challenge .gb-layout-column-wrap .heading-after {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 5px;
  color: white;
}
.single-case-study .challenge .gb-layout-column-wrap .facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.single-case-study .challenge .gb-layout-column-wrap .facts-list li {
  list-style: none;
  padding: 10px 20px;
  background-color: white;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #333;
}
.single-case-study .key-pain-points {
  padding: 80px 0 0 0;
}
.single-case-study .key-pain-points .pain-points {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.single-case-study .key-pain-points .pain-points li {
  list-style: none;
  position: relative;
  padding: 8px 18px;
  margin-bottom: 4px;
  border-radius: 5px;
  background-image: linear-gradient(135deg, rgb(249, 218, 227), rgb(255, 240, 245));
  font-size: 14px;
  color: #530101;
}
.single-case-study .solutions {
  padding: 0;
}
.single-case-study .solutions .design-process .wp-block-group {
  padding: 5px 0;
  gap: 20px;
}
.single-case-study .solutions .design-process .wp-block-group h4 {
  margin-bottom: 0;
  font-size: 24px;
}
.single-case-study .solutions .design-process .wp-block-group p {
  margin: 0;
}
.single-case-study .phase {
  padding-left: 40px;
  border-left: 1px solid #1A73E8;
}
.single-case-study .phase .phase-number {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1A73E8;
  margin-bottom: 10px;
}
.single-case-study .phase h3 {
  font-size: 24px;
}
.single-case-study .approach {
  padding: 80px 0;
}
.single-case-study .results .gb-layout-column-wrap {
  padding: 80px;
  background-color: #021951;
  border-radius: 20px;
}
.single-case-study .results .gb-layout-column-wrap h2, .single-case-study .results .gb-layout-column-wrap h3 {
  color: #1A73E8;
}
.single-case-study .results .gb-layout-column-wrap h3 {
  margin-bottom: 0;
  background: linear-gradient(135deg, rgb(153, 206, 255), #1A73E8, #021951);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.single-case-study .results .gb-layout-column-wrap p {
  color: white;
}
.single-case-study .testimonial {
  padding: 80px 0;
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.single-case-study .testimonial.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-case-study .slide-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.single-case-study .slide-up.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-case-study .animated-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(#6a11cb), to(#2575fc));
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
  background-size: 600% 600%;
  -webkit-animation: gradientShift 15s cubic-bezier(0.23, 1, 0.32, 1) infinite alternate;
          animation: gradientShift 15s cubic-bezier(0.23, 1, 0.32, 1) infinite alternate;
  position: relative;
}
@-webkit-keyframes gradientShift {
  0% {
    background-position: 0% 20%;
  }
  20% {
    background-position: 40% 60%;
  }
  40% {
    background-position: 80% 30%;
  }
  60% {
    background-position: 60% 80%;
  }
  80% {
    background-position: 20% 70%;
  }
  100% {
    background-position: 100% 40%;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 20%;
  }
  20% {
    background-position: 40% 60%;
  }
  40% {
    background-position: 80% 30%;
  }
  60% {
    background-position: 60% 80%;
  }
  80% {
    background-position: 20% 70%;
  }
  100% {
    background-position: 100% 40%;
  }
}
.single-case-study .footer-cta {
  padding-bottom: 120px;
}
@media screen and (max-width: 1240px) {
  .single-case-study .wp-block-genesis-blocks-gb-columns .gb-layout-column-wrap {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .single-case-study .animated-gradient {
    padding: 0 !important;
  }
  .single-case-study .animated-gradient h4 {
    font-size: 32px !important;
  }
  .single-case-study .animated-gradient .gb-layout-column-wrap {
    padding: 40px !important;
  }
  .single-case-study .animated-gradient .gb-layout-column-wrap h3 {
    font-size: 32px !important;
  }
  .single-case-study .animated-gradient .gb-layout-column-wrap .wp-block-group h4 {
    font-size: 20px !important;
  }
}

.home .hero {
  padding: 210px 40px 40px 40px;
  background-color: #1A73E8;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
.home .hero.primary-blue {
  background-color: #1A73E8;
}
.home .hero.primary-blue .services-and-work .tab-content .content h2 span {
  color: #12317C;
}
.home .hero.navy-blue {
  background-color: #12317C;
}
.home .hero.navy-blue .services-and-work .tab-content .content h2 span {
  color: #1A73E8;
}
.home .hero.forest-green {
  background-color: #2C883A;
}
.home .hero.forest-green .services-and-work .tab-content .content h2 span {
  color: #92F8BC;
}
.home .hero.light-green {
  background-color: #54BA64;
}
.home .hero.light-green .services-and-work .tab-content .content h2 span {
  color: #2C883A;
}
.home .hero.coral-orange {
  background-color: #FF683F;
}
.home .hero.coral-orange .services-and-work .tab-content .content h2 span {
  color: #FEA666;
}
.home .hero.bright-orange {
  background-color: #FEA666;
}
.home .hero.bright-orange .services-and-work .tab-content .content h2 span {
  color: #FF683F;
}
.home .hero.black {
  background-color: #000000;
}
.home .hero.black .services-and-work .tab-content .content h2 span {
  color: #8B54CB;
}
.home .hero .services-and-work {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 85px;
}
.home .hero .services-and-work .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(18, 49, 124, 0.1);
  border-radius: 20px;
  position: relative;
}
.home .hero .services-and-work .tabs .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: white;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
.home .hero .services-and-work .tabs .tab {
  padding: 10px 20px;
  display: block;
  border-radius: 20px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background-color: transparent !important;
}
.home .hero .services-and-work .tabs .tab.active {
  color: #1A73E8;
}
.home .hero .services-and-work .tabs .tab.active.active-hovered {
  color: white !important;
}
.home .hero .services-and-work .tabs .tab.not-active {
  color: white !important;
}
.home .hero .services-and-work .tabs .tab:hover {
  color: #1A73E8;
}
.home .hero .services-and-work .tab-content {
  width: 100%;
}
.home .hero .services-and-work .tab-content .content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 85px;
  position: relative;
}
.home .hero .services-and-work .tab-content .content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .hero .services-and-work .tab-content .content h2 {
  margin: 0;
  font-size: 80px;
  font-weight: 600;
  text-align: center;
  color: white;
  line-height: 1.1em;
}
.home .hero .services-and-work .tab-content .content h2 span {
  color: #12317C;
}
.home .hero .services-and-work .tab-content .content .mouse-icon {
  width: 100%;
  height: 63px;
  position: absolute;
  top: 270px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home .hero .services-and-work .tab-content .content .mouse-icon svg {
  width: 34px;
  height: 63px;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas {
  height: 830px;
  padding-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .asset {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .asset::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60.91%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.91%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .asset video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .asset img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .content-block {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .content-block h3 {
  width: 40%;
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  color: white;
  line-height: 1.2em;
  position: relative;
}
.home .hero .services-and-work .tab-content .content .work-and-ctas .content-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1220px) {
  .home .hero .services-and-work .tab-content .content .work-and-ctas .content-block {
    width: 95%;
  }
}
@media screen and (max-width: 1024px) {
  .home .hero {
    padding: 150px 30px 30px 30px;
  }
  .home .hero .services-and-work {
    gap: 40px;
  }
  .home .hero .services-and-work .tabs .background {
    display: none;
  }
  .home .hero .services-and-work .tabs .tab {
    text-align: center;
  }
  .home .hero .services-and-work .tabs .tab.primary-blue.active {
    color: #12317C !important;
  }
  .home .hero .services-and-work .tabs .tab.navy-blue.active {
    color: #1A73E8 !important;
  }
  .home .hero .services-and-work .tabs .tab.forest-green.active {
    color: #92F8BC !important;
  }
  .home .hero .services-and-work .tabs .tab.light-green.active {
    color: #2C883A !important;
  }
  .home .hero .services-and-work .tabs .tab.coral-orange.active {
    color: #FEA666 !important;
  }
  .home .hero .services-and-work .tabs .tab.bright-orange.active {
    color: #FF683F !important;
  }
  .home .hero .services-and-work .tabs .tab.black.active {
    color: #8B54CB !important;
  }
  .home .hero .services-and-work .tabs .tab.primary-blue.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.primary-blue.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.navy-blue.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.navy-blue.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.forest-green.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.forest-green.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.light-green.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.light-green.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.coral-orange.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.coral-orange.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.bright-orange.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.bright-orange.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.black.active-hovered {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.black.active-hovered.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab.not-active {
    color: white !important;
  }
  .home .hero .services-and-work .tabs .tab:hover {
    color: white !important;
  }
  .home .hero .services-and-work .tab-content .content {
    gap: 40px;
  }
  .home .hero .services-and-work .tab-content .content h2 {
    font-size: 62px;
  }
}
@media screen and (max-width: 850px) {
  .home .hero .services-and-work .tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .home .hero .services-and-work .tab-content .content {
    gap: 20px;
  }
  .home .hero .services-and-work .tab-content .content h2 {
    font-size: 38px;
  }
  .home .hero .services-and-work .tab-content .content .work-and-ctas {
    height: auto;
  }
  .home .hero .services-and-work .tab-content .content .work-and-ctas .asset {
    position: relative !important;
    -webkit-transform: scale(1) !important;
            transform: scale(1) !important;
  }
  .home .hero .services-and-work .tab-content .content .work-and-ctas .content-block {
    padding-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 20px;
  }
  .home .hero .services-and-work .tab-content .content .work-and-ctas .content-block h3, .home .hero .services-and-work .tab-content .content .work-and-ctas .content-block .ctas {
    width: auto;
    text-align: center;
  }
  .home .hero .services-and-work .tab-content .content .work-and-ctas .content-block h3 {
    font-size: 23px;
  }
  .home .hero .services-and-work .tab-content .content .work-and-ctas .content-block .ctas {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-template-template-work {
  padding-top: 150px;
}
.page-template-template-work .work-filters {
  margin-bottom: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-template-template-work .work-filters .filter-buttons {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1rem;
}
.page-template-template-work .work-filters .filter-btn {
  color: #999;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  white-space: nowrap;
  font-size: 14px;
}
.page-template-template-work .work-filters .filter-btn:hover {
  color: #1A73E8;
}
.page-template-template-work .work-filters .filter-btn.active {
  color: #1A73E8;
}
.page-template-template-work .work-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}
.page-template-template-work .work-grid .case-study-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-template-template-work .work-grid .case-study-card:nth-child(3n+1) {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}
.page-template-template-work .work-grid .case-study-card.hide {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  pointer-events: none;
}
.page-template-template-work .work-grid .case-study-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.page-template-template-work .work-grid .case-study-card:hover .card-overlay {
  opacity: 0.7;
}
.page-template-template-work .work-grid .case-study-card:hover .card-content {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-template-template-work .work-grid .case-study-card .card-link {
  display: block;
  height: 100%;
  text-decoration: none;
}
.page-template-template-work .work-grid .case-study-card .card-image {
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-template-template-work .work-grid .case-study-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.page-template-template-work .work-grid .case-study-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-template-template-work .work-grid .case-study-card .card-content h2 {
  color: white;
  font-size: 1.5rem;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.page-template-template-work .work-grid .case-study-card .card-content .card-categories {
  margin-top: 0.5rem;
}
.page-template-template-work .work-grid .case-study-card .card-content .category-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 1024px) {
  .page-template-template-work .work-filters {
    padding: 0 1.5rem;
  }
  .page-template-template-work .work-filters .filter-buttons {
    gap: 0.4rem;
  }
  .page-template-template-work .work-filters .filter-btn {
    padding: 0.4rem 0.8rem;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-work .work-filters {
    padding: 0 1rem;
    margin-bottom: 1.5rem;
  }
  .page-template-template-work .work-filters .filter-buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    gap: 0.3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .page-template-template-work .work-filters .filter-buttons::-webkit-scrollbar {
    display: none;
  }
  .page-template-template-work .work-filters .filter-btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    font-size: 12px;
    min-width: auto;
  }
  .page-template-template-work .work-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  .page-template-template-work .work-grid .case-study-card:nth-child(3n+1) {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
  .page-template-template-work .work-grid .case-study-card .card-image {
    min-height: 250px;
  }
  .page-template-template-work .work-grid .case-study-card .card-content h2 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .page-template-template-work .work-filters {
    padding: 0 0.75rem;
  }
  .page-template-template-work .work-filters .filter-buttons {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
  .page-template-template-work .work-filters .filter-btn {
    padding: 0.35rem 0.6rem;
    font-size: 11px;
    border-radius: 20px;
  }
  .page-template-template-work .work-grid {
    padding: 0.75rem;
    gap: 0.75rem;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .page-template-template-work .work-grid .case-study-card .card-content {
    padding: 1.5rem;
  }
  .page-template-template-work .work-grid .case-study-card .card-content h2 {
    font-size: 1.1rem;
  }
  .page-template-template-work .work-grid .case-study-card .card-content .category-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}
@media screen and (max-width: 320px) {
  .page-template-template-work .work-filters {
    padding: 0 0.5rem;
  }
  .page-template-template-work .work-filters .filter-btn {
    padding: 0.3rem 0.5rem;
    font-size: 10px;
  }
}

.page-template-template-about-us {
  height: 100vh;
}
.page-template-template-about-us .hero .thin-container {
  height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-about-us .hero .thin-container .copy-block {
  width: 45%;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-about-us .hero .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
}
.page-template-template-about-us .hero .thin-container .copy-block .description p {
  font-size: 14px;
  color: #565656;
}
.page-template-template-about-us .hero .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-about-us .hero .thin-container .clouds {
  width: 45%;
  height: 100%;
  position: relative;
}
.page-template-template-about-us .hero .thin-container .clouds:hover {
  -webkit-transform: translate3d(200);
          transform: translate3d(200);
}
.page-template-template-about-us .hero .thin-container .clouds .term {
  width: 220px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 500;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 30px;
  background-color: #12317C;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-animation: fadeInTerm 1s forwards;
          animation: fadeInTerm 1s forwards;
}
.page-template-template-about-us .hero .thin-container .clouds .term-1 {
  top: 200px;
  left: 200px;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.page-template-template-about-us .hero .thin-container .clouds .term-2 {
  top: 380px;
  left: -70px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page-template-template-about-us .hero .thin-container .clouds .term-3 {
  top: 630px;
  left: -70px;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.page-template-template-about-us .hero .thin-container .clouds .term-4 {
  top: 540px;
  left: 310px;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
@-webkit-keyframes fadeInTerm {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInTerm {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.page-template-template-about-us .hero .thin-container .clouds .cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(76.71% 74.73% at 39.19% 33.81%, #D2E5FF 50.39%, #A2C6F6 100%);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: upAndDown 10s infinite;
          animation: upAndDown 10s infinite;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-1 {
  width: 100px;
  height: 100px;
  bottom: 30px;
  left: -260px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-2 {
  width: 250px;
  height: 250px;
  bottom: 60px;
  left: -160px;
  z-index: 1;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-3 {
  width: 440px;
  height: 440px;
  bottom: 180px;
  left: -40px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-4 {
  width: 440px;
  height: 440px;
  bottom: -30px;
  left: 10px;
  z-index: 1;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-5 {
  width: 204px;
  height: 204px;
  bottom: 360px;
  left: 340px;
  z-index: -1;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-6 {
  width: 250px;
  height: 250px;
  bottom: 170px;
  left: 350px;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-7 {
  width: 75px;
  height: 75px;
  bottom: 510px;
  left: 553px;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.page-template-template-about-us .hero .thin-container .clouds .cloud-8 {
  width: 150px;
  height: 150px;
  bottom: 360px;
  left: 580px;
}
@-webkit-keyframes upAndDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes upAndDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.page-template-template-about-us .awards {
  padding-top: 30px;
}
.page-template-template-about-us .team {
  position: relative;
}
.page-template-template-about-us .team .copy-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-template-template-about-us .team .copy-block .eyebrow {
  text-align: center;
}
.page-template-template-about-us .team .copy-block h2 {
  font-size: 52px;
  line-height: 1em;
  text-align: center;
}
.page-template-template-about-us .team .copy-block .description {
  text-align: center;
}
.page-template-template-about-us .team .thin-container .profiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.page-template-template-about-us .team .thin-container .profiles .profile.open-bio {
  cursor: pointer;
}
.page-template-template-about-us .team .thin-container .profiles .profile .wrapper {
  width: 240px;
  height: 350px;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.page-template-template-about-us .team .thin-container .profiles .profile .wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-about-us .team .thin-container .profiles .profile .tag {
  padding: 20px 0;
}
.page-template-template-about-us .team .thin-container .profiles .profile .tag .label {
  white-space: nowrap;
  font-weight: 600;
}
.page-template-template-about-us .team .thin-container .profiles .profile .tag .position {
  font-size: 12px;
}
.page-template-template-about-us .team .thin-container .profiles .profile:hover .tag {
  opacity: 1;
}
.page-template-template-about-us .team .thin-container .profiles .profile .bio {
  display: none;
}
.page-template-template-about-us .gallery-section {
  padding: 40px 0 0 0;
  background-color: transparent;
}
.page-template-template-about-us .gallery-section .thin-container .carousel-cards .carousel-card {
  width: 600px;
  height: 520px;
  position: relative;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: transparent !important;
}
.page-template-template-about-us .profile-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
}
.page-template-template-about-us .profile-modal .profile-modal-content {
  background-color: white;
  padding: 60px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .page-template-template-about-us .profile-modal .profile-modal-content {
    padding: 15px;
  }
}
.page-template-template-about-us .profile-modal .profile-modal-content .close-button {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
.page-template-template-about-us .profile-modal .profile-modal-content .close-button:hover {
  color: #000;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-image img {
  width: 200px;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info h2 {
  margin: 0;
  font-size: 24px;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info .position {
  color: #666;
  margin: 0;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info .linkedin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #1A73E8;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info .linkedin svg {
  width: 14px;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info .linkedin svg path {
  fill: white;
}
.page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info .linkedin:hover {
  text-decoration: none;
  background-color: #12317C;
}
.page-template-template-about-us .profile-modal .profile-modal-content .bio {
  line-height: 1.6;
}
@media screen and (max-width: 1220px) {
  .page-template-template-about-us .team {
    padding-bottom: 40px;
  }
  .page-template-template-about-us .gallery-section {
    padding: 0 30px;
  }
  .page-template-template-about-us .gallery-section .thin-container {
    width: auto;
  }
  .page-template-template-about-us .gallery-section .thin-container .carousel-cards .carousel-card {
    width: 380px;
  }
}
@media screen and (max-width: 991px) {
  .page-template-template-about-us .hero {
    padding-top: 150px;
  }
  .page-template-template-about-us .hero .thin-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-template-template-about-us .hero .thin-container .copy-block {
    width: 100%;
    padding-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .page-template-template-about-us .hero .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .page-template-template-about-us .hero .thin-container .clouds {
    height: 750px;
    zoom: 0.8;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-1 {
    top: 90px;
    left: 200px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-2 {
    top: 230px;
    left: -70px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-3 {
    top: 470px;
    left: -70px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-4 {
    top: 360px;
    left: 310px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-1 {
    bottom: 300px;
    left: -190px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-2 {
    bottom: 60px;
    left: -160px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-3 {
    bottom: 280px;
    left: -40px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-4 {
    bottom: 70px;
    left: 10px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-5 {
    bottom: 420px;
    left: 340px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-6 {
    bottom: 260px;
    left: 350px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-7 {
    bottom: 510px;
    left: 553px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-8 {
    bottom: 360px;
    left: 580px;
  }
  .page-template-template-about-us .testimonials {
    padding-top: 75px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-about-us .hero .thin-container .clouds {
    zoom: 0.6;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-1 {
    left: 50px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-2 {
    left: -120px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-3 {
    left: -80px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .term-4 {
    left: 140px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-3 {
    left: -110px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-4 {
    left: -59px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-5 {
    left: 270px;
  }
  .page-template-template-about-us .hero .thin-container .clouds .cloud-6 {
    left: 290px;
  }
  .page-template-template-about-us .team .thin-container .profiles .profile,
  .page-template-template-about-us .team .thin-container .profiles .profile.central {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-template-template-about-us .team .thin-container .profiles .profile .wrapper,
  .page-template-template-about-us .team .thin-container .profiles .profile.central .wrapper {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page-template-template-about-us .team .thin-container .profiles .profile .wrapper img,
  .page-template-template-about-us .team .thin-container .profiles .profile.central .wrapper img {
    border-radius: 10px;
  }
  .page-template-template-about-us .gallery-section .thin-container {
    padding: 0;
  }
  .page-template-template-about-us .gallery-section .thin-container .carousel-cards .carousel-card {
    width: 310px;
  }
  .page-template-template-about-us .gallery-section .thin-container .carousel-cards .carousel-card h3 {
    font-size: 22px;
  }
  .page-template-template-about-us .profile-modal .profile-modal-content {
    padding: 50px 20px;
  }
  .page-template-template-about-us .profile-modal .profile-modal-content .top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-template-template-about-us .profile-modal .profile-modal-content .top .modal-image img {
    width: 100%;
    max-height: 200px;
  }
  .page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info h2 {
    font-size: 20px;
  }
  .page-template-template-about-us .profile-modal .profile-modal-content .top .modal-info .position {
    font-size: 14px;
  }
}

.page-template-template-agencies {
  height: 100vh;
}
.page-template-template-agencies .hero {
  padding-top: 100px;
  background-color: #12317C;
  position: relative;
}
.page-template-template-agencies .hero::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  mix-blend-mode: color-burn;
  background: -webkit-gradient(linear, right top, left top, color-stop(-2.49%, rgba(26, 115, 232, 0)), to(#12317C));
  background: linear-gradient(270deg, rgba(26, 115, 232, 0) -2.49%, #12317C 100%);
  z-index: 1;
}
.page-template-template-agencies .hero .logo-wall {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}
.page-template-template-agencies .hero .logo-wall .logo {
  width: 120px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  -webkit-animation: fadeLogoIn 1s forwards;
          animation: fadeLogoIn 1s forwards;
}
.page-template-template-agencies .hero .logo-wall .logo svg {
  width: 50%;
  opacity: 0.8;
}
.page-template-template-agencies .hero .logo-wall .logo svg path {
  fill: #1A73E8;
}
@-webkit-keyframes fadeLogoIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeLogoIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-template-template-agencies .hero .thin-container {
  height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.page-template-template-agencies .hero .thin-container .copy-block {
  width: 45%;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-agencies .hero .thin-container .copy-block .eyebrow {
  color: white;
}
.page-template-template-agencies .hero .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
  color: white;
}
.page-template-template-agencies .hero .thin-container .copy-block .description p {
  font-size: 14px;
  color: white;
}
.page-template-template-agencies .hero .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-agencies .awards {
  margin-top: 60px;
}
.page-template-template-agencies .agencies-section {
  margin-bottom: 150px;
}
@media screen and (max-width: 991px) {
  .page-template-template-agencies .hero .thin-container {
    height: auto;
    padding: 80px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .page-template-template-agencies .hero .thin-container .copy-block {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 20px;
  }
  .page-template-template-agencies .hero .thin-container .copy-block h2 {
    font-size: 36px;
  }
}

.page-template-template-careers .hero {
  position: relative;
}
.page-template-template-careers .hero .thin-container {
  height: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.page-template-template-careers .hero .thin-container .copy-block {
  width: 45%;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-careers .hero .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
}
.page-template-template-careers .hero .thin-container .copy-block .description p {
  font-size: 14px;
  color: #565656;
}
.page-template-template-careers .hero .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-careers .hero .photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.page-template-template-careers .hero .photo::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: radial-gradient(120.98% 95.02% at 80.36% 4.98%, rgba(255, 255, 255, 0) 0%, #FFF 69.41%);
  z-index: 1;
}
.page-template-template-careers .hero .photo img, .page-template-template-careers .hero .photo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-careers .positions-intro {
  position: relative;
}
.page-template-template-careers .positions-intro .thin-container .copy-block {
  width: 75%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-template-template-careers .positions-intro .thin-container .copy-block .eyebrow {
  text-align: center;
}
.page-template-template-careers .positions-intro .thin-container .copy-block h2 {
  margin: 0;
  font-size: 52px;
  text-align: center;
}
.page-template-template-careers .positions-intro .thin-container .copy-block .description {
  text-align: center;
}
.page-template-template-careers .positions-intro .thin-container .copy-block .description p {
  text-align: center;
}
.page-template-template-careers .positions {
  padding: 50px 0;
}
.page-template-template-careers .positions .thin-container {
  max-width: 1200px;
  margin: 0 auto;
}
.page-template-template-careers .positions .thin-container .job-listings {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper {
  width: 95%;
  height: 450px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  overflow: hidden;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .featured-image a {
  width: 100%;
  height: 100%;
  display: block;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .featured-image a img, .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .featured-image a video {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 40px;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .meta .item {
  padding: 5px 10px;
  font-size: 12px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid white;
  opacity: 0.6;
  border-radius: 10px;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1em;
  color: white;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy .excerpt {
  opacity: 0;
  height: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy a {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper:hover .contents .copy .excerpt {
  height: initial;
  opacity: 0.7;
}
.page-template-template-careers .quick-promo-banner .thin-container {
  background-color: #1A73E8;
}
@media screen and (max-width: 1024px) {
  .page-template-template-careers .hero {
    padding-top: 60px;
  }
  .page-template-template-careers .hero .thin-container {
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 40px 20px;
  }
  .page-template-template-careers .hero .thin-container .copy-block {
    width: 100%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 20px;
  }
  .page-template-template-careers .hero .thin-container .copy-block h2 {
    font-size: 42px;
    text-align: center;
  }
  .page-template-template-careers .positions-intro .thin-container .copy-block {
    width: 90%;
    padding: 0 20px;
  }
  .page-template-template-careers .positions-intro .thin-container .copy-block h2 {
    font-size: 42px;
  }
  .page-template-template-careers .positions {
    padding: 30px 0;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-careers .hero .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .page-template-template-careers .hero .thin-container .copy-block .ctas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .page-template-template-careers .hero .thin-container .copy-block .ctas a {
    width: 100%;
    text-align: center;
  }
  .page-template-template-careers .positions-intro .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .page-template-template-careers .positions .thin-container {
    padding: 0 20px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper {
    height: 400px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .page-template-template-careers .hero .thin-container .copy-block h2 {
    font-size: 32px;
  }
  .page-template-template-careers .hero .thin-container .copy-block .description p {
    font-size: 13px;
  }
  .page-template-template-careers .positions-intro .thin-container .copy-block h2 {
    font-size: 32px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper {
    height: 350px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents {
    gap: 20px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .meta .item {
    font-size: 11px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy h3 {
    font-size: 20px;
  }
  .page-template-template-careers .positions .thin-container .job-listings .job-card .wrapper .contents .copy .excerpt {
    font-size: 13px;
  }
}

.page-template-template-contact {
  background-color: #E7F5FF;
}
.page-template-template-contact .hero {
  width: 50%;
  padding-top: 150px;
  padding-bottom: 40px;
}
.page-template-template-contact .contact-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-contact .contact-us .form {
  width: 48%;
  border-radius: 20px;
  background-color: #fff;
}
.page-template-template-contact .contact-us .form .wrapper {
  padding: 40px;
}
.page-template-template-contact .contact-us .form .wrapper .heading {
  margin-bottom: 40px;
  font-size: 20px;
}
.page-template-template-contact .contact-us .form .wrapper .gform_title {
  display: none;
}
.page-template-template-contact .contact-us .form .wrapper .disclaimer {
  margin-top: 40px;
  font-size: 14px;
  color: #565656;
}
.page-template-template-contact .contact-us .banner-and-contact {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-contact .contact-us .banner-and-contact .banner {
  height: 60%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .heading {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .heading h3 {
  margin: 0;
  padding: 40px;
  font-size: 32px;
  font-weight: 400;
  color: #1A73E8;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .image img, .page-template-template-contact .contact-us .banner-and-contact .banner .image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .image::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(47.62%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 47.62%);
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .slider-track .slide {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .slider-track .slide .icon {
  width: 20px;
  height: 20px;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
  color: white;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 0px 40px;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .pagination .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .pagination .dot.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
  width: 30px;
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .pagination .dot.active {
  width: 30px;
  background-color: #1A73E8;
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  gap: 10px;
  z-index: 2;
  display: none;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button .arrow-icon {
  width: 14px;
  height: 14px;
  position: absolute;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button .arrow-icon path {
  stroke: #999;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button:hover {
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button:hover .arrow-icon path {
  -webkit-animation: arrowColorTransition 0.6s ease-in-out forwards;
          animation: arrowColorTransition 0.6s ease-in-out forwards;
}
@keyframes colorTransition {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@keyframes arrowColorTransition {
  0% {
    stroke: #999;
  }
  50% {
    stroke: white;
  }
  100% {
    stroke: white;
  }
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows button.disabled .arrow-icon {
  -webkit-animation: none;
          animation: none;
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows .prev-arrow .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .nav-arrows .next-arrow .arrow-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-template-template-contact .contact-us .banner-and-contact .contact {
  height: 38%;
  border-radius: 20px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-template-template-contact .contact-us .banner-and-contact .contact .wrapper {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .heading {
  font-size: 20px;
}
.page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .contact-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .contact-method .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .contact-method .icon svg path {
  fill: #12317C;
}
.page-template-template-contact .client-logos {
  padding-bottom: 0;
}
.page-template-template-contact .client-logos .logo-track-wrapper::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#E7F5FF), to(transparent));
  background: linear-gradient(to right, #E7F5FF, transparent);
}
.page-template-template-contact .client-logos .logo-track-wrapper::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#E7F5FF), to(transparent));
  background: linear-gradient(to left, #E7F5FF, transparent);
}
.page-template-template-contact .earth {
  margin-bottom: 60px;
}
.page-template-template-contact .earth .copy-block {
  height: 100%;
}
.page-template-template-contact .earth .copy-block .intro h2 {
  color: #12317C;
}
.page-template-template-contact .earth .copy-block .intro .description {
  color: #565656;
}
.page-template-template-contact .earth .copy-block .intro .description p {
  color: #565656;
}
.page-template-template-contact .earth .copy-block .locations-list .location-item .location-title h3 {
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
}
.page-template-template-contact .earth .copy-block .locations-list .location-item .location-details {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .page-template-template-contact .hero {
    width: 100%;
    padding-top: 120px;
    text-align: center;
  }
  .page-template-template-contact .contact-us {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 0 0;
  }
  .page-template-template-contact .contact-us .form {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-template-template-contact .contact-us .banner-and-contact {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    gap: 30px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner {
    height: 500px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner .heading h3 {
    font-size: 28px;
    padding: 30px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .contact {
    height: auto;
    padding: 30px 0;
  }
  .page-template-template-contact .earth .copy-block .locations-list .location-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .page-template-template-contact .earth .copy-block .locations-list .location-item .location-details {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-contact .hero {
    padding-bottom: 30px;
  }
  .page-template-template-contact .contact-us .form .wrapper {
    padding: 30px 20px;
  }
  .page-template-template-contact .contact-us .form .wrapper .heading {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner {
    height: 400px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner .heading h3 {
    font-size: 24px;
    padding: 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 30px 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .contact .wrapper {
    padding: 20px;
    font-size: 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .heading {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .page-template-template-contact .contact-us {
    gap: 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact {
    gap: 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner {
    height: 350px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner .heading h3 {
    font-size: 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
    font-size: 14px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .banner .testimonial-slider .pagination {
    padding: 0 20px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .contact .wrapper {
    font-size: 16px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .contact-method {
    gap: 10px;
  }
  .page-template-template-contact .contact-us .banner-and-contact .contact .wrapper .contact-method .icon svg {
    width: 20px;
    height: 20px;
  }
  .page-template-template-contact .earth {
    margin-bottom: 40px;
  }
  .page-template-template-contact .earth .copy-block .intro h2 {
    font-size: 24px;
  }
  .page-template-template-contact .earth .copy-block .locations-list .location-item {
    gap: 15px;
  }
  .page-template-template-contact .earth .copy-block .locations-list .location-item .location-title h3 {
    font-size: 18px;
  }
  .page-template-template-contact .earth .copy-block .locations-list .location-item .location-details {
    font-size: 13px;
  }
}

.page-template-template-support {
  background-color: #E7F5FF;
}
.page-template-template-support .hero {
  width: 50%;
  padding-top: 150px;
  padding-bottom: 40px;
}
.page-template-template-support .support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-support .support .form {
  width: 55%;
  border-radius: 20px;
  background-color: #fff;
}
.page-template-template-support .support .form .wrapper {
  padding: 40px;
}
.page-template-template-support .support .form .wrapper .heading {
  margin-bottom: 10px;
  font-size: 20px;
}
.page-template-template-support .support .form .wrapper .description {
  margin-bottom: 40px;
  font-size: 14px;
  color: #565656;
}
.page-template-template-support .support .form .wrapper .gform_title {
  display: none;
}
.page-template-template-support .support .form .wrapper .disclaimer {
  margin-top: 40px;
  font-size: 14px;
  color: #565656;
}
.page-template-template-support .support .banner-and-contact {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-support .support .banner-and-contact .banner {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-template-template-support .support .banner-and-contact .banner .heading {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-template-template-support .support .banner-and-contact .banner .heading h3 {
  margin: 0;
  padding: 40px;
  font-size: 32px;
  font-weight: 400;
  color: #1A73E8;
}
.page-template-template-support .support .banner-and-contact .banner .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-template-support .support .banner-and-contact .banner .image img, .page-template-template-support .support .banner-and-contact .banner .image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-support .support .banner-and-contact .banner .image::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(47.62%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 47.62%);
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide .icon {
  width: 20px;
  height: 20px;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
  color: white;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 0px 40px;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
  width: 30px;
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot.active {
  width: 30px;
  background-color: #1A73E8;
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  gap: 10px;
  z-index: 2;
  display: none;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button .arrow-icon {
  width: 14px;
  height: 14px;
  position: absolute;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button .arrow-icon path {
  stroke: #999;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button:hover {
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button:hover .arrow-icon path {
  -webkit-animation: arrowColorTransition 0.6s ease-in-out forwards;
          animation: arrowColorTransition 0.6s ease-in-out forwards;
}
@keyframes colorTransition {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@keyframes arrowColorTransition {
  0% {
    stroke: #999;
  }
  50% {
    stroke: white;
  }
  100% {
    stroke: white;
  }
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows button.disabled .arrow-icon {
  -webkit-animation: none;
          animation: none;
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows .prev-arrow .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-template-template-support .support .banner-and-contact .banner .testimonial-slider .nav-arrows .next-arrow .arrow-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (max-width: 1024px) {
  .page-template-template-support .hero {
    width: 100%;
    padding-top: 120px;
    text-align: center;
  }
  .page-template-template-support .support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 0 0;
  }
  .page-template-template-support .support .form {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-template-template-support .support .form .wrapper {
    padding: 30px;
  }
  .page-template-template-support .support .banner-and-contact {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .page-template-template-support .support .banner-and-contact .banner {
    height: 500px;
  }
  .page-template-template-support .support .banner-and-contact .banner .heading h3 {
    padding: 30px;
    font-size: 28px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-support .hero {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .page-template-template-support .support {
    gap: 20px;
  }
  .page-template-template-support .support .form .wrapper {
    padding: 25px;
  }
  .page-template-template-support .support .form .wrapper .heading {
    font-size: 18px;
  }
  .page-template-template-support .support .form .wrapper .description {
    font-size: 13px;
    margin-bottom: 30px;
  }
  .page-template-template-support .support .banner-and-contact .banner {
    height: 400px;
  }
  .page-template-template-support .support .banner-and-contact .banner .heading h3 {
    padding: 25px;
    font-size: 24px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 25px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
    font-size: 14px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination {
    padding: 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .page-template-template-support .support .form .wrapper {
    padding: 20px;
  }
  .page-template-template-support .support .form .wrapper .heading {
    font-size: 16px;
  }
  .page-template-template-support .support .form .wrapper .description,
  .page-template-template-support .support .form .wrapper .disclaimer {
    font-size: 12px;
  }
  .page-template-template-support .support .banner-and-contact .banner .heading h3 {
    padding: 20px;
    font-size: 20px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 20px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
    font-size: 13px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .slider-track .slide .icon {
    width: 16px;
    height: 16px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination {
    padding: 0 20px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot {
    width: 8px;
    height: 8px;
  }
  .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot.active, .page-template-template-support .support .banner-and-contact .banner .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
    width: 24px;
  }
}

.single-job-opportunity .hero {
  position: relative;
}
.single-job-opportunity .hero .thin-container {
  height: 375px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.single-job-opportunity .hero .thin-container .family-tree {
  margin-bottom: 20px;
}
.single-job-opportunity .hero .thin-container .family-tree a {
  text-decoration: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.single-job-opportunity .hero .thin-container .family-tree a .icon svg {
  width: 16px;
}
.single-job-opportunity .hero .thin-container .family-tree a .icon svg path {
  stroke: #565656;
}
.single-job-opportunity .hero .thin-container .family-tree a span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #444;
}
.single-job-opportunity .hero .thin-container .copy-block {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.single-job-opportunity .hero .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
}
.single-job-opportunity .hero .thin-container .copy-block .description p {
  font-size: 14px;
  color: #565656;
}
.single-job-opportunity .hero .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.single-job-opportunity .hero .photo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.single-job-opportunity .hero .photo::before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: radial-gradient(120.98% 95.02% at 80.36% 4.98%, rgba(255, 255, 255, 0) 0%, #FFF 69.41%);
  z-index: 1;
}
.single-job-opportunity .hero .photo img, .single-job-opportunity .hero .photo video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-job-opportunity .ascii-container {
  margin: 0 0 50px 0;
  width: 100%;
  height: 350px;
  background: #12317C;
  color: #0f0;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 18px;
  white-space: pre;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
}
.single-job-opportunity .instructions {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 10px 0;
  font-size: 14px;
}
.single-job-opportunity .job-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-job-opportunity .job-content .sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.single-job-opportunity .job-content .sidebar .job-meta {
  list-style: none;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  background-color: #efefef;
  border-radius: 20px;
}
.single-job-opportunity .job-content .sidebar .job-meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.single-job-opportunity .job-content .sidebar .job-meta li .meta-label {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  font-weight: 500;
}
.single-job-opportunity .job-content .sidebar .job-meta li .meta-value {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}
.single-job-opportunity .job-content .main-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.single-job-opportunity .job-content .main-content .job-description {
  font-size: 16px;
  line-height: 1.6em;
  color: #333;
}
.single-job-opportunity .job-content .main-content .job-description h2 {
  margin: 0;
  font-size: 32px;
}
.single-job-opportunity .job-content .main-content .job-description h3 {
  margin: 0;
  font-size: 26px;
}
.single-job-opportunity .job-content .main-content .job-description h4 {
  margin: 0;
  font-size: 22px;
}
.single-job-opportunity .job-content .main-content .job-description h5 {
  margin: 0;
  font-size: 20px;
}
.single-job-opportunity .job-content .main-content .job-description h6 {
  margin: 0;
  font-size: 18px;
}
.single-job-opportunity .job-content .main-content .job-description p {
  margin: 0 0 15px;
}
.single-job-opportunity .positions {
  padding: 50px 0;
}
.single-job-opportunity .positions .thin-container {
  max-width: 1200px;
  margin: 0 auto;
}
.single-job-opportunity .positions .thin-container .job-listings {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper {
  width: 95%;
  height: 450px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  overflow: hidden;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .featured-image a {
  width: 100%;
  height: 100%;
  display: block;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .featured-image a img, .single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .featured-image a video {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  gap: 40px;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .meta .item {
  padding: 5px 10px;
  font-size: 12px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid white;
  opacity: 0.6;
  border-radius: 10px;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .copy h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1em;
  color: white;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .copy .excerpt {
  opacity: 0;
  height: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4em;
  color: white;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .copy a {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper:hover .contents .copy .excerpt {
  height: initial;
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .single-job-opportunity .hero {
    padding-top: 100px;
  }
  .single-job-opportunity .hero .thin-container {
    height: auto;
    padding: 20px;
  }
  .single-job-opportunity .hero .thin-container .copy-block h2 {
    font-size: 42px;
  }
  .single-job-opportunity .job-content {
    padding: 20px;
    gap: 30px;
  }
  .single-job-opportunity .job-content .sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .single-job-opportunity .job-content .main-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .single-job-opportunity .positions .thin-container .job-listings .job-card {
    width: 50%;
  }
  .single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .single-job-opportunity .hero .thin-container .family-tree {
    margin-bottom: 15px;
  }
  .single-job-opportunity .hero .thin-container .copy-block h2 {
    font-size: 36px;
  }
  .single-job-opportunity .hero .thin-container .copy-block .ctas {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .single-job-opportunity .hero .thin-container .copy-block .ctas a {
    width: 100%;
    text-align: center;
  }
  .single-job-opportunity .ascii-container {
    display: none;
  }
  .single-job-opportunity .job-content .job-description h2 {
    font-size: 28px;
  }
  .single-job-opportunity .job-content .job-description h3 {
    font-size: 24px;
  }
  .single-job-opportunity .job-content .job-description h4 {
    font-size: 20px;
  }
  .single-job-opportunity .job-content .job-description h5 {
    font-size: 18px;
  }
  .single-job-opportunity .job-content .job-description h6 {
    font-size: 16px;
  }
  .single-job-opportunity .positions {
    padding: 30px 0;
  }
  .single-job-opportunity .positions .thin-container .job-listings .job-card {
    width: 100%;
    margin-bottom: 20px;
  }
  .single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper {
    width: 100%;
    height: 350px;
  }
  .single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents {
    padding: 15px;
    gap: 20px;
  }
  .single-job-opportunity .positions .thin-container .job-listings .job-card .wrapper .contents .copy h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .single-job-opportunity .hero .thin-container .copy-block h2 {
    font-size: 32px;
  }
  .single-job-opportunity .hero .thin-container .copy-block .description p {
    font-size: 13px;
  }
  .single-job-opportunity .ascii-container {
    height: 200px;
    font-size: 10px;
    line-height: 14px;
    margin-bottom: 30px;
  }
  .single-job-opportunity .job-content {
    gap: 20px;
  }
  .single-job-opportunity .job-content .sidebar .job-meta {
    padding: 20px;
  }
  .single-job-opportunity .job-content .sidebar .job-meta li .meta-label {
    font-size: 11px;
  }
  .single-job-opportunity .job-content .sidebar .job-meta li .meta-value {
    font-size: 13px;
  }
  .single-job-opportunity .job-content .main-content .job-description {
    font-size: 14px;
  }
}

.page-template-template-digital-marketing-location-based-landing-page {
  height: 100vh;
}
.page-template-template-digital-marketing-location-based-landing-page .hero {
  background-color: #12317C;
  position: relative;
}
.page-template-template-digital-marketing-location-based-landing-page .hero::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  mix-blend-mode: color-burn;
  background: -webkit-gradient(linear, right top, left top, color-stop(-2.49%, rgba(26, 115, 232, 0)), to(#12317C));
  background: linear-gradient(270deg, rgba(26, 115, 232, 0) -2.49%, #12317C 100%);
  z-index: 1;
}
.page-template-template-digital-marketing-location-based-landing-page .hero .thin-container {
  height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.page-template-template-digital-marketing-location-based-landing-page .hero .thin-container .copy-block {
  width: 45%;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-digital-marketing-location-based-landing-page .hero .thin-container .copy-block .eyebrow {
  color: white;
}
.page-template-template-digital-marketing-location-based-landing-page .hero .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
  color: white;
}
.page-template-template-digital-marketing-location-based-landing-page .hero .thin-container .copy-block .description p {
  font-size: 14px;
  color: white;
}
.page-template-template-digital-marketing-location-based-landing-page .hero .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-digital-marketing-location-based-landing-page .awards {
  margin-top: 60px;
}
.page-template-template-digital-marketing-location-based-landing-page .agencies-section {
  margin-bottom: 150px;
}
.page-template-template-digital-marketing-location-based-landing-page .latest-news-section {
  margin-bottom: 60px;
}

.page-template-template-lp-similar-to-home .hero {
  background-color: #12317C;
  position: relative;
}
.page-template-template-lp-similar-to-home .hero::before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  mix-blend-mode: color-burn;
  background: -webkit-gradient(linear, right top, left top, color-stop(-2.49%, rgba(26, 115, 232, 0)), to(#12317C));
  background: linear-gradient(270deg, rgba(26, 115, 232, 0) -2.49%, #12317C 100%);
  z-index: 1;
}
.page-template-template-lp-similar-to-home .hero .thin-container {
  height: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.page-template-template-lp-similar-to-home .hero .thin-container .copy-block {
  width: 45%;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.page-template-template-lp-similar-to-home .hero .thin-container .copy-block .eyebrow {
  color: white;
}
.page-template-template-lp-similar-to-home .hero .thin-container .copy-block h2 {
  margin: 0 0 0 0;
  padding: 0;
  font-size: 52px;
  line-height: 1em;
  color: white;
}
.page-template-template-lp-similar-to-home .hero .thin-container .copy-block .description p {
  font-size: 14px;
  color: white;
}
.page-template-template-lp-similar-to-home .hero .thin-container .copy-block .ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.page-template-template-lp-similar-to-home .skyscrapper-image-w-copy-section {
  padding-top: 40px;
}

.page-template-template-ada-scan {
  background-color: #E7F5FF;
}
.page-template-template-ada-scan .hero {
  width: 50%;
  padding-top: 150px;
  padding-bottom: 40px;
}
.page-template-template-ada-scan .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-ada-scan .body .copy-block {
  width: 55%;
  margin-bottom: 40px;
  font-size: 16px;
}
.page-template-template-ada-scan .body .banner-and-contact {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-template-template-ada-scan .body .banner-and-contact .banner {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .heading {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .heading h3 {
  margin: 0;
  padding: 40px;
  font-size: 32px;
  font-weight: 400;
  color: #1A73E8;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .image img, .page-template-template-ada-scan .body .banner-and-contact .banner .image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .image::before {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(47.62%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 47.62%);
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide .icon {
  width: 20px;
  height: 20px;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
  color: white;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 0px 40px;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 15px;
  cursor: pointer;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
  width: 30px;
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot.active {
  width: 30px;
  background-color: #1A73E8;
}
@keyframes colorTransition {
  0% {
    background-color: #ccc;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: flex;
  gap: 10px;
  z-index: 2;
  display: none;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button .arrow-icon {
  width: 14px;
  height: 14px;
  position: absolute;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button .arrow-icon path {
  stroke: #999;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button:hover {
  -webkit-animation: colorTransition 0.6s ease-in-out forwards;
          animation: colorTransition 0.6s ease-in-out forwards;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button:hover .arrow-icon path {
  -webkit-animation: arrowColorTransition 0.6s ease-in-out forwards;
          animation: arrowColorTransition 0.6s ease-in-out forwards;
}
@keyframes colorTransition {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: #FF683F;
  }
  100% {
    background-color: #1A73E8;
  }
}
@keyframes arrowColorTransition {
  0% {
    stroke: #999;
  }
  50% {
    stroke: white;
  }
  100% {
    stroke: white;
  }
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows button.disabled .arrow-icon {
  -webkit-animation: none;
          animation: none;
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows .prev-arrow .arrow-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .nav-arrows .next-arrow .arrow-icon {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (max-width: 1024px) {
  .page-template-template-ada-scan .hero {
    width: 100%;
    padding-top: 120px;
    text-align: center;
  }
  .page-template-template-ada-scan .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 0;
  }
  .page-template-template-ada-scan .body .copy-block {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-template-template-ada-scan .body .banner-and-contact {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner {
    height: 500px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .heading h3 {
    padding: 30px;
    font-size: 28px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page-template-template-ada-scan .hero {
    padding-bottom: 30px;
  }
  .page-template-template-ada-scan .body {
    gap: 30px;
  }
  .page-template-template-ada-scan .body .copy-block {
    font-size: 15px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner {
    height: 400px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .heading h3 {
    padding: 25px;
    font-size: 24px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 25px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
    font-size: 14px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide .icon {
    width: 18px;
    height: 18px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination {
    padding: 0 25px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot {
    width: 8px;
    height: 8px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot.active, .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
    width: 24px;
  }
}
@media screen and (max-width: 480px) {
  .page-template-template-ada-scan .body {
    gap: 20px;
  }
  .page-template-template-ada-scan .body .copy-block {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner {
    height: 350px;
    border-radius: 10px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .heading h3 {
    padding: 20px;
    font-size: 20px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide {
    padding: 20px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide .statement {
    font-size: 13px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .slider-track .slide .icon {
    width: 16px;
    height: 16px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination {
    padding: 0 20px;
    gap: 8px;
  }
  .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot.active, .page-template-template-ada-scan .body .banner-and-contact .banner .testimonial-slider .pagination .dot:hover:not(.active):not(.disabled) {
    width: 20px;
  }
}

.page-template-template-niche-lp .site-main .wp-block-image {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.page-template-template-niche-lp .site-main .wp-block-image img {
  border-radius: 20px;
}
.page-template-template-niche-lp .site-main .wp-block-image.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.page-template-template-niche-lp .site-main .hero {
  margin: 0 auto;
  padding-top: 150px;
}
.page-template-template-niche-lp .site-main .hero .gb-container-inside {
  max-width: 1220px;
  margin: 0 auto;
}
.page-template-template-niche-lp .site-main .hero .wp-block-image img {
  border-radius: 20px;
}
.page-template-template-niche-lp .site-main .intro-images {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.page-template-template-niche-lp .site-main .conversion-form {
  max-width: 1220px;
  padding: 0 30px;
  margin: 0 auto;
  border-radius: 20px;
}
.page-template-template-niche-lp .site-main .testimonial-block {
  padding: 0 30px;
}
.page-template-template-niche-lp .site-main .testimonial-block .wp-block-image {
  opacity: 0.8;
}
.page-template-template-niche-lp .site-main .wp-block-embed iframe {
  margin: 0 auto;
  max-width: initial;
  width: 100%;
  height: 460px;
}
.page-template-template-niche-lp .site-main .feed {
  margin-top: 6%;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column {
  padding: 6%;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column:first-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column:last-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column .wp-block-query .wp-block-post .wp-block-group {
  padding: 0 !important;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column .wp-block-query .wp-block-post .wp-block-group .wp-block-post-featured-image img {
  border-radius: 20px;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column .wp-block-query .wp-block-post .wp-block-group .wp-block-post-title {
  margin-bottom: 5px;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column .wp-block-query .wp-block-post .wp-block-group .wp-block-post-title a {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column .wp-block-query .wp-block-post .wp-block-group .wp-block-post-excerpt__excerpt {
  color: white;
  opacity: 0.8;
}
.page-template-template-niche-lp .site-main .feed .wp-block-column.news-col .wp-block-post .wp-block-group .wp-block-post-excerpt__excerpt {
  color: #FF683F;
  opacity: 0.8;
}
@media screen and (max-width: 781px) {
  .page-template-template-niche-lp .site-main .wp-block-image img {
    border-radius: 10px;
  }
  .page-template-template-niche-lp .site-main .hero {
    padding-top: 111px !important;
  }
  .page-template-template-niche-lp .site-main .testimonial-block .wp-block-image {
    display: none;
  }
  .page-template-template-niche-lp .site-main .wp-block-embed iframe {
    margin: 0 auto;
    max-width: initial;
    width: 100%;
    height: auto;
  }
  .page-template-template-niche-lp .site-main .feed .wp-block-column {
    padding: 8%;
  }
}

.archive.tax-industry-category section, .archive.tax-case-study-category section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.archive.tax-industry-category .hero, .archive.tax-case-study-category .hero {
  padding-top: 150px;
  padding-bottom: 40px;
  background-color: #1A73E8;
}
.archive.tax-industry-category .hero h2, .archive.tax-case-study-category .hero h2 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
}
.archive.tax-industry-category article, .archive.tax-case-study-category article {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.archive.tax-industry-category article:hover, .archive.tax-case-study-category article:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.archive.tax-industry-category article .thumbnail, .archive.tax-case-study-category article .thumbnail {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
}
.archive.tax-industry-category article .thumbnail .overlay, .archive.tax-case-study-category article .thumbnail .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.archive.tax-industry-category article .thumbnail img, .archive.tax-case-study-category article .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.archive.tax-industry-category article:hover .thumbnail .overlay, .archive.tax-case-study-category article:hover .thumbnail .overlay {
  opacity: 1;
}
.archive.tax-industry-category article:hover .thumbnail img, .archive.tax-case-study-category article:hover .thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.archive.tax-industry-category article .content-wrap, .archive.tax-case-study-category article .content-wrap {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.archive.tax-industry-category article h3, .archive.tax-case-study-category article h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
}
.archive.tax-industry-category article h3 a, .archive.tax-case-study-category article h3 a {
  text-decoration: none;
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.archive.tax-industry-category article h3 a:hover, .archive.tax-case-study-category article h3 a:hover {
  color: #1A73E8;
}
.archive.tax-industry-category article p, .archive.tax-case-study-category article p {
  margin: 0 0 1rem 0;
  color: #555;
  line-height: 1.6;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.archive.tax-industry-category article p:has(small), .archive.tax-case-study-category article p:has(small) {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}
.archive.tax-industry-category article small, .archive.tax-case-study-category article small {
  color: #777;
  font-size: 0.875rem;
}
.archive.tax-industry-category .pagination, .archive.tax-case-study-category .pagination {
  grid-column: 1/-1;
  margin-top: 2rem;
  text-align: center;
}
.archive.tax-industry-category .pagination .nav-links, .archive.tax-case-study-category .pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.archive.tax-industry-category .pagination .page-numbers, .archive.tax-case-study-category .pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.archive.tax-industry-category .pagination .page-numbers.current, .archive.tax-industry-category .pagination .page-numbers:hover, .archive.tax-case-study-category .pagination .page-numbers.current, .archive.tax-case-study-category .pagination .page-numbers:hover {
  background-color: #0073aa;
  color: #fff;
  border-color: #0073aa;
}
.archive.tax-industry-category .pagination .page-numbers.dots, .archive.tax-case-study-category .pagination .page-numbers.dots {
  border: none;
  padding: 0.5rem 0;
}
.archive.tax-industry-category p:only-child, .archive.tax-case-study-category p:only-child {
  grid-column: 1/-1;
  text-align: center;
  font-size: 1.2rem;
}

.page-template-template-legal main.site-main {
  max-width: 780px;
  padding: 150px 0;
}
.page-template-template-legal main.site-main h2 {
  margin: 30px 0;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .page-template-template-legal main.site-main {
    padding: 100px 20px;
  }
  .page-template-template-legal main.site-main h2 {
    font-size: 28px;
  }
  .page-template-template-legal main.site-main h3 {
    font-size: 24px;
  }
  .page-template-template-legal main.site-main h4 {
    font-size: 20px;
  }
  .page-template-template-legal main.site-main h5 {
    font-size: 18px;
  }
}