/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.75px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 1.5px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -9.25px;
}
.hamburger-inner::after {
  bottom: -9.25px;
}

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 60px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 60px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 60px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 60px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 60px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 60px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-6px, -7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}
.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -18.5px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -18.5px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -9.25px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 0.75px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 9.25px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 18.5px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9.25px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -18.5px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 0.75px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 9.25px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 18.5px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9.25px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18.5px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden;
}
.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic .hamburger-inner::after {
  top: 9.25px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -60px;
  top: -60px;
  transform: translate3d(60px, 60px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -60px;
  top: -60px;
  transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden;
}
.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r .hamburger-inner::after {
  top: 9.25px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}
.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}
.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -60px;
  top: 60px;
  transform: translate3d(60px, -60px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -60px;
  top: 60px;
  transform: translate3d(-60px, -60px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 0.75px;
}
.hamburger--slider .hamburger-inner::before {
  top: 9.25px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 18.5px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-4.2857142857px, -7.75px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -18.5px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 0.75px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 9.25px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 18.5px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 9.25px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(4.2857142857px, -7.75px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18.5px, 0) rotate(90deg);
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 0.75px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 9.25px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 18.5px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9.25px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9.25px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -18.5px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -9.25px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

:root {
  --container-max-width: 100%;
  --container-padding: 20px;
  --gap: 20px;
  --c-white: #fff;
}
@media screen and (min-width: 1024px) {
  :root {
    --container-max-width: 1200px;
  }
}

.container {
  width: min(100% - 2 * var(--container-padding), var(--container-max-width));
  margin-inline: auto;
}

.grid {
  --columns-total: 6;
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(var(--columns-total), 1fr);
}

@media screen and (min-width: 768px) {
  .grid {
    --columns-total: 12;
  }
}
@media screen and (min-width: 768px) {
  .grid {
    row-gap: 40px;
  }
}
.grid > * {
  --span: 6;
  --offset: 0;
  --columns: calc(var(--span) + var(--offset));
  --grid-width: calc((100% - (var(--gap) * (var(--columns) - 1))) / var(--columns) * var(--columns-total));
  grid-column-start: auto;
  grid-column-end: span var(--columns);
  margin-left: calc((var(--grid-width) / var(--columns-total) + var(--gap)) * var(--offset));
}

@media screen and (min-width: 768px) {
  .grid > * {
    --span: 12;
  }
}
@media screen and (min-width: 375px) {
  .m-1 {
    --span: 1;
  }
  .m-2 {
    --span: 2;
  }
  .m-3 {
    --span: 3;
  }
  .m-4 {
    --span: 4;
  }
  .m-5 {
    --span: 5;
  }
  .m-6 {
    --span: 6;
  }
}
@media screen and (min-width: 480px) {
  .ml-1 {
    --span: 1;
  }
  .ml-2 {
    --span: 2;
  }
  .ml-3 {
    --span: 3;
  }
  .ml-4 {
    --span: 4;
  }
  .ml-5 {
    --span: 5;
  }
  .ml-6 {
    --span: 6;
  }
}
@media screen and (min-width: 640px) {
  .ts-1 {
    --span: 1;
  }
  .ts-2 {
    --span: 2;
  }
  .ts-3 {
    --span: 3;
  }
  .ts-4 {
    --span: 4;
  }
  .ts-5 {
    --span: 5;
  }
  .ts-6 {
    --span: 6;
  }
}
@media screen and (min-width: 768px) {
  .t-1 {
    --span: 1;
  }
  .t-2 {
    --span: 2;
  }
  .t-3 {
    --span: 3;
  }
  .t-4 {
    --span: 4;
  }
  .t-5 {
    --span: 5;
  }
  .t-6 {
    --span: 6;
  }
  .t-7 {
    --span: 7;
  }
  .t-8 {
    --span: 8;
  }
  .t-9 {
    --span: 9;
  }
  .t-10 {
    --span: 10;
  }
  .t-11 {
    --span: 11;
  }
  .t-12 {
    --span: 12;
  }
}
@media screen and (min-width: 991px) {
  .tx-1 {
    --span: 1;
  }
  .tx-2 {
    --span: 2;
  }
  .tx-3 {
    --span: 3;
  }
  .tx-4 {
    --span: 4;
  }
  .tx-5 {
    --span: 5;
  }
  .tx-6 {
    --span: 6;
  }
  .tx-7 {
    --span: 7;
  }
  .tx-8 {
    --span: 8;
  }
  .tx-9 {
    --span: 9;
  }
  .tx-10 {
    --span: 10;
  }
  .tx-11 {
    --span: 11;
  }
  .tx-12 {
    --span: 12;
  }
}
@media screen and (min-width: 1024px) {
  .tl-1 {
    --span: 1;
  }
  .tl-2 {
    --span: 2;
  }
  .tl-3 {
    --span: 3;
  }
  .tl-4 {
    --span: 4;
  }
  .tl-5 {
    --span: 5;
  }
  .tl-6 {
    --span: 6;
  }
  .tl-7 {
    --span: 7;
  }
  .tl-8 {
    --span: 8;
  }
  .tl-9 {
    --span: 9;
  }
  .tl-10 {
    --span: 10;
  }
  .tl-11 {
    --span: 11;
  }
  .tl-12 {
    --span: 12;
  }
}
@media screen and (min-width: 1140px) {
  .ds-1 {
    --span: 1;
  }
  .ds-2 {
    --span: 2;
  }
  .ds-3 {
    --span: 3;
  }
  .ds-4 {
    --span: 4;
  }
  .ds-5 {
    --span: 5;
  }
  .ds-6 {
    --span: 6;
  }
  .ds-7 {
    --span: 7;
  }
  .ds-8 {
    --span: 8;
  }
  .ds-9 {
    --span: 9;
  }
  .ds-10 {
    --span: 10;
  }
  .ds-11 {
    --span: 11;
  }
  .ds-12 {
    --span: 12;
  }
}
@media screen and (min-width: 1280px) {
  .d-1 {
    --span: 1;
  }
  .d-2 {
    --span: 2;
  }
  .d-3 {
    --span: 3;
  }
  .d-4 {
    --span: 4;
  }
  .d-5 {
    --span: 5;
  }
  .d-6 {
    --span: 6;
  }
  .d-7 {
    --span: 7;
  }
  .d-8 {
    --span: 8;
  }
  .d-9 {
    --span: 9;
  }
  .d-10 {
    --span: 10;
  }
  .d-11 {
    --span: 11;
  }
  .d-12 {
    --span: 12;
  }
}
@media screen and (min-width: 1366px) {
  .dl-1 {
    --span: 1;
  }
  .dl-2 {
    --span: 2;
  }
  .dl-3 {
    --span: 3;
  }
  .dl-4 {
    --span: 4;
  }
  .dl-5 {
    --span: 5;
  }
  .dl-6 {
    --span: 6;
  }
  .dl-7 {
    --span: 7;
  }
  .dl-8 {
    --span: 8;
  }
  .dl-9 {
    --span: 9;
  }
  .dl-10 {
    --span: 10;
  }
  .dl-11 {
    --span: 11;
  }
  .dl-12 {
    --span: 12;
  }
}
@media screen and (min-width: 1921px) {
  .dlx-1 {
    --span: 1;
  }
  .dlx-2 {
    --span: 2;
  }
  .dlx-3 {
    --span: 3;
  }
  .dlx-4 {
    --span: 4;
  }
  .dlx-5 {
    --span: 5;
  }
  .dlx-6 {
    --span: 6;
  }
  .dlx-7 {
    --span: 7;
  }
  .dlx-8 {
    --span: 8;
  }
  .dlx-9 {
    --span: 9;
  }
  .dlx-10 {
    --span: 10;
  }
  .dlx-11 {
    --span: 11;
  }
  .dlx-12 {
    --span: 12;
  }
}
@media screen and (min-width: 375px) {
  .m-o-0 {
    --offset: 0;
  }
  .m-o-1 {
    --offset: 1;
  }
  .m-o-2 {
    --offset: 2;
  }
  .m-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 480px) {
  .ml-o-0 {
    --offset: 0;
  }
  .ml-o-1 {
    --offset: 1;
  }
  .ml-o-2 {
    --offset: 2;
  }
  .ml-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 640px) {
  .ts-o-0 {
    --offset: 0;
  }
  .ts-o-1 {
    --offset: 1;
  }
  .ts-o-2 {
    --offset: 2;
  }
  .ts-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 768px) {
  .t-o-0 {
    --offset: 0;
  }
  .t-o-1 {
    --offset: 1;
  }
  .t-o-2 {
    --offset: 2;
  }
  .t-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 991px) {
  .tx-o-0 {
    --offset: 0;
  }
  .tx-o-1 {
    --offset: 1;
  }
  .tx-o-2 {
    --offset: 2;
  }
  .tx-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 1024px) {
  .tl-o-0 {
    --offset: 0;
  }
  .tl-o-1 {
    --offset: 1;
  }
  .tl-o-2 {
    --offset: 2;
  }
  .tl-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 1140px) {
  .ds-o-0 {
    --offset: 0;
  }
  .ds-o-1 {
    --offset: 1;
  }
  .ds-o-2 {
    --offset: 2;
  }
  .ds-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 1280px) {
  .d-o-0 {
    --offset: 0;
  }
  .d-o-1 {
    --offset: 1;
  }
  .d-o-2 {
    --offset: 2;
  }
  .d-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 1366px) {
  .dl-o-0 {
    --offset: 0;
  }
  .dl-o-1 {
    --offset: 1;
  }
  .dl-o-2 {
    --offset: 2;
  }
  .dl-o-3 {
    --offset: 3;
  }
}
@media screen and (min-width: 1921px) {
  .dlx-o-0 {
    --offset: 0;
  }
  .dlx-o-1 {
    --offset: 1;
  }
  .dlx-o-2 {
    --offset: 2;
  }
  .dlx-o-3 {
    --offset: 3;
  }
}
body,
html {
  scroll-behavior: smooth;
  background: none;
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus {
  outline: none;
}

svg {
  transition: 0.34s;
}

a, a:before, a:after, input, select, textarea, button {
  transition: color 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), background 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), border 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html, body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

ul, ol {
  list-style-position: outside;
}

ul {
  list-style: none;
}

ol {
  list-style: decimal;
}

a {
  text-decoration: none;
}

strong,
b {
  color: inherit;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

a img {
  border: none;
}

img, video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

video {
  outline: none;
}

header, footer, section, article, aside, main, nav, svg {
  display: block;
}

svg {
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
svg path {
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

table {
  border-collapse: collapse;
}

input, textarea, select, button {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
}

input[type=text], input[type=email], textarea, select {
  width: 100%;
}

input[type=submit] {
  cursor: pointer;
}

select, button {
  cursor: pointer;
}

textarea {
  display: block;
  overflow: auto;
  resize: vertical;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 50px white inset !important;
}

input[type=checkbox]:focus {
  outline: 0;
}

@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-SemiBold.woff2") format("woff2"), url("../../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Bold.woff2") format("woff2"), url("../../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Regular.woff2") format("woff2"), url("../../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Thin.woff2") format("woff2"), url("../../fonts/Gilroy-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Medium.woff2") format("woff2"), url("../../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Black.woff2") format("woff2"), url("../../fonts/Gilroy-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Light.woff2") format("woff2"), url("../../fonts/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gilroy";
  color: #001533;
  -webkit-font-smoothing: subpixel-antialiased;
  outline: none !important;
}

body {
  overflow-x: hidden;
  width: 100%;
}

.wrapper {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.contrast {
  background-color: #F7F8FB;
}

.navybg {
  background-color: #001533;
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
  }
}
.btn a,
.btn button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 15px 29px 13px 29px;
  border-radius: 60px;
  background-color: #006aff;
  overflow: hidden;
  z-index: 1;
  transition: 0;
}
@media (max-width: 767px) {
  .btn a,
  .btn button {
    width: 100%;
  }
}
.btn a #circle,
.btn button #circle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
}
.btn a svg,
.btn button svg {
  margin-bottom: 0 !important;
  height: 18px !important;
  max-height: 18px !important;
  min-height: 18px !important;
}
.btn.white a,
.btn.white button {
  background: #fff;
  border: 1px solid #EEF0F6;
  color: #006aff;
}
.btn.white #circle {
  background-color: #006aff;
}
.btn.light a,
.btn.light button {
  background: linear-gradient(180deg, #FFF 50%, #DAE9FF 100%);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  color: #006aff;
}
.btn.light #circle {
  background-color: #006aff;
}
.btn.border a,
.btn.border button {
  border: 1px solid #006aff;
}
.btn.transparent a,
.btn.transparent button {
  background: transparent;
}

.btn-simple {
  position: relative !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  display: flex !important;
}
.btn-simple a,
.btn-simple button {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background-color: transparent !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  color: #006aff;
}
@media (max-width: 1024px) {
  .btn-simple a,
  .btn-simple button {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .btn-simple a,
  .btn-simple button {
    font-size: 14px;
  }
}
.btn-simple a svg,
.btn-simple a img,
.btn-simple button svg,
.btn-simple button img {
  margin-left: 12.2px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-bottom: 0 !important;
  height: 18px !important;
  max-height: 18px !important;
  min-height: 18px !important;
}
.btn-simple a svg *,
.btn-simple button svg * {
  fill: #006aff;
}
.btn-simple a:before,
.btn-simple button:before {
  content: "";
  width: 0%;
  height: 1px;
  background-color: #006aff;
  opacity: 0;
  position: absolute;
  left: auto;
  right: 0;
  margin: auto;
  bottom: -4px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.btn-simple a:hover:before,
.btn-simple button:hover:before {
  width: 100%;
  opacity: 1;
  right: auto;
  left: 0;
}
.btn-simple a:hover svg,
.btn-simple a:hover img,
.btn-simple button:hover svg,
.btn-simple button:hover img {
  transform: translateX(5px) rotate(-15deg);
}
.btn-simple.light a {
  color: #fff !important;
}
.btn-simple.light a:before {
  background-color: #fff;
}
.btn-simple.light a svg * {
  fill: #fff;
}

.sm {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sm a {
  position: relative;
  display: flex;
  align-items: center;
}
.sm a:not(:last-child) {
  margin-bottom: 20px;
}
.sm a svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  min-width: 18px;
  min-height: 18px;
}
.sm a svg * {
  fill: #001533;
}
.sm a span {
  margin-left: 17px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
  .sm a span {
    font-size: 14px;
    margin-left: 12px;
  }
}
.sm a:hover svg {
  transform: translateX(3px) scale(1.1, 1.1);
}
.sm a:hover span {
  color: #006aff;
}

.smallctacontact {
  position: relative;
  width: 100%;
  margin-top: 40px;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .smallctacontact {
    margin-top: 20px;
  }
}
.smallctacontact.aligndown .wp-block-group__inner-container {
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.smallctacontact.aligndown .wp-block-group__inner-container p {
  text-align: center;
}
.smallctacontact .wp-block-group__inner-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 37px 30px;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .smallctacontact .wp-block-group__inner-container {
    padding: 20px;
  }
}
@media (max-width: 499px) {
  .smallctacontact .wp-block-group__inner-container {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}
.smallctacontact .wp-block-group__inner-container p strong {
  color: inherit;
}
@media (max-width: 499px) {
  .smallctacontact .wp-block-group__inner-container p {
    text-align: center;
  }
}

.mouseScroll {
  position: absolute;
  bottom: 46px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1024px) {
  .mouseScroll {
    left: 0;
    right: 0;
    margin: auto;
  }
}
.mouseScroll-ico {
  position: relative;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mouseScroll-ico svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  min-width: 18px;
  min-height: 18px;
  transition: 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mouseScroll-ico svg.one-ico {
  transform: translateY(9px);
}
.mouseScroll-ico svg.two-ico {
  transform: translateY(-35px);
  opacity: 0;
}
.mouseScroll h3 {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mouseScroll h3 strong {
  opacity: 0.6;
  color: #fff;
  font-weight: normal;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mouseScroll:hover .mouseScroll-ico {
  border-color: rgb(255, 255, 255);
  transform: scale(1.115, 1.115);
}
.mouseScroll:hover .mouseScroll-ico .one-ico {
  transform: translateY(35px);
  opacity: 0;
}
.mouseScroll:hover .mouseScroll-ico .two-ico {
  opacity: 1;
  transform: translateY(-9px);
}
.mouseScroll:hover strong {
  opacity: 1;
}

.dragmebruh {
  color: #006aff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  fill: rgba(0, 106, 255, 0.05);
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
  transform: translate(-50%, -50%);
  display: none;
  visibility: hidden;
}
.dragmebruh.active {
  display: flex;
  visibility: visible;
}

.load-more .solutioncard:nth-child(n+7) {
  display: none;
}
.load-more .solutioncard.show-all {
  display: flex !important;
}
.load-more .wp-block-image:nth-child(n+11) {
  display: none !important;
}
@media (max-width: 1249px) {
  .load-more .wp-block-image:nth-child(n+11) {
    display: flex;
  }
}
@media (max-width: 1249px) {
  .load-more .wp-block-image:nth-child(n+9) {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .load-more .wp-block-image:nth-child(n+7) {
    display: none !important;
  }
}
.load-more .wp-block-image.show-all {
  display: flex !important;
}
.load-more-cta.out-of-business {
  display: none;
}

@media (max-width: 767px) {
  .load-more-hideonphone {
    display: none !important;
  }
}

.swipernav {
  position: relative;
  display: flex;
  align-items: center;
}
.swipernav-i {
  position: relative;
  cursor: pointer;
  transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.swipernav-i svg {
  width: 50px;
  height: 50px;
  min-width: 50px;
  max-width: 50px;
  min-height: 50px;
  max-height: 50px;
}
.swipernav-i.swipernav-prev:hover {
  transform: scale(1.1, 1.1) translateX(-5px);
}
.swipernav-i.swipernav-next:hover {
  transform: scale(1.1, 1.1) translateX(5px);
}
.swipernav-i:hover svg * {
  stroke: #006aff;
}
.swipernav-i:not(:last-child) {
  margin-right: 20px;
}

.intro_classic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 1149px) {
  .intro_classic {
    align-items: center;
    justify-content: center;
  }
}
.intro_classic h6 {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #006aff;
  margin-bottom: 20px;
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1024px;
}
@media (max-width: 1149px) {
  .intro_classic h6 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
.intro_classic h1,
.intro_classic h2,
.intro_classic h3,
.intro_classic h4 {
  width: 100%;
  max-width: 1024px;
  font-weight: bold;
  text-align: left;
}
@media (max-width: 1149px) {
  .intro_classic h1,
  .intro_classic h2,
  .intro_classic h3,
  .intro_classic h4 {
    text-align: center;
  }
}
.intro_classic p {
  width: 100%;
  max-width: 692px;
  text-align: left;
  margin: 30px 0 0 0;
}
@media (max-width: 1149px) {
  .intro_classic p {
    text-align: center;
    margin-top: 20px;
  }
}

.title_desc {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 1149px) {
  .title_desc {
    align-items: center;
    justify-content: center;
  }
}
.title_desc .wp-block-group__inner-container {
  width: 100%;
}
@media (max-width: 1149px) {
  .title_desc h6 {
    text-align: center;
  }
}
.title_desc h1,
.title_desc h2,
.title_desc h3,
.title_desc h4 {
  width: 100%;
  max-width: 490px;
  font-weight: bold;
}
@media (max-width: 1149px) {
  .title_desc h1,
  .title_desc h2,
  .title_desc h3,
  .title_desc h4 {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .title_desc h1,
  .title_desc h2,
  .title_desc h3,
  .title_desc h4 {
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
.title_desc p {
  width: 100%;
  max-width: 490px;
  margin-left: auto;
  line-height: 1.67;
}
.title_desc p.bigger {
  max-width: 590px;
}
@media (max-width: 1149px) {
  .title_desc p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
  }
}
@media (max-width: 767px) {
  .title_desc p {
    max-width: 590px;
  }
}
.title_desc.bigger h1,
.title_desc.bigger h2,
.title_desc.bigger h3,
.title_desc.bigger h4 {
  max-width: 550px;
}
.title_desc.bigger p {
  max-width: 590px;
}

.intro_title_desc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.intro_title_desc h6 {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #006aff;
  margin-bottom: 20px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1024px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.intro_title_desc h1,
.intro_title_desc h2,
.intro_title_desc h3,
.intro_title_desc h4 {
  width: 100%;
  max-width: 1024px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}
.intro_title_desc p {
  width: 100%;
  max-width: 692px;
  text-align: center;
  margin: 30px auto 0 auto;
}

h6 {
  color: #006aff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 20px;
}
h6.forceblue {
  color: #006aff !important;
}

.rightalignment {
  width: 100%;
  max-width: 590px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .rightalignment {
    max-width: 720px;
    margin-right: auto;
  }
}

ul.classic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.classic.has-white-color li {
  color: #fff;
}
ul.classic.has-white-color li:before {
  background-color: #fff;
}
ul.classic li {
  position: relative;
  display: flex;
  align-items: flex-start;
}
ul.classic li:before {
  content: "";
  width: 5px;
  min-width: 5px;
  max-width: 5px;
  height: 5px;
  min-height: 5px;
  max-height: 5px;
  margin-right: 10px;
  background-color: #001533;
  border-radius: 50%;
  margin-top: 10px;
}
@media (max-width: 767px) {
  ul.classic li:before {
    margin-top: 8px;
  }
}
ul.classic.light li {
  color: #fff;
}
ul.classic.light li:before {
  background-color: #fff;
}
ul.checklist {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.checklist li {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-left: 20px;
}
ul.checklist li:before {
  content: "";
  width: 5.5px;
  height: 1.5px;
  background-color: #001533;
  position: absolute;
  left: 0;
  top: 14px;
  transform: rotate(45deg);
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
  ul.checklist li:before {
    top: 12px;
  }
}
ul.checklist li:after {
  content: "";
  width: 10px;
  height: 1.5px;
  background-color: #001533;
  position: absolute;
  left: 2px;
  top: 12px;
  transform: rotate(-51deg);
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
  ul.checklist li:after {
    top: 10px;
  }
}
ul.checklist.light li {
  color: #fff;
}
ul.checklist.light li:before, ul.checklist.light li:after {
  background-color: #fff;
}

.fullcircle {
  border-radius: 50% !important;
}
.fullcircle * {
  border-radius: 50% !important;
}

.sectionLabel {
  font-weight: 500 !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: normal !important;
  color: #b8c3cc !important;
  border-radius: 60px;
  border: 1px solid #667480;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 16px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .hideonmobile {
    display: none !important;
  }
}

.hidebothversions {
  display: none !important;
}

.swiper-pagination {
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #b8c3cc;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #006aff;
}

.meetings-iframe-container,
.calendly-inline-widget {
  width: 100%;
}

.mx760 {
  width: 100%;
  max-width: 760px;
}

.mx800-auto {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feedbackpage-form {
  display: none;
}

.p100 {
  padding-top: 100px;
}
@media (max-width: 1024px) {
  .p100 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .p100 {
    padding-top: 60px;
  }
}

.p1015 {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .p1015 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .p1015 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pb150 {
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .pb150 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .pb150 {
    padding-bottom: 60px;
  }
}

.p15 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .p15 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .p15 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.pt15 {
  padding-top: 150px;
}
@media (max-width: 1024px) {
  .pt15 {
    padding-top: 90px;
  }
}
@media (max-width: 767px) {
  .pt15 {
    padding-top: 60px;
  }
}

.p015 {
  padding-top: 0px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .p015 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .p015 {
    padding-bottom: 60px;
  }
}

.p010 {
  padding-top: 0px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .p010 {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .p010 {
    padding-bottom: 60px;
  }
}

.p1525 {
  padding-top: 150px;
  padding-bottom: 250px;
}
@media (max-width: 1024px) {
  .p1525 {
    padding-top: 90px;
    padding-bottom: 160px;
  }
}
@media (max-width: 767px) {
  .p1525 {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.p1520 {
  padding-top: 150px;
  padding-bottom: 250px;
}
@media (max-width: 1024px) {
  .p1520 {
    padding-top: 90px;
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  .p1520 {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.p510 {
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (max-width: 1024px) {
  .p510 {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .p510 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p10 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1024px) {
  .p10 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .p10 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.mt0 {
  margin-top: 0 !important;
}

.mt010 {
  margin-top: 10px !important;
}

.mt10 {
  margin-bottom: 10px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mto50 {
  margin-top: 50px !important;
}

.mt50 {
  margin-top: 100px !important;
}
@media (max-width: 767px) {
  .mt50 {
    margin-top: 60px !important;
  }
}

.mt75 {
  margin-top: 75px !important;
}
@media (max-width: 767px) {
  .mt75 {
    margin-top: 30px !important;
  }
}

.mt100 {
  margin-top: 150px !important;
}
@media (max-width: 767px) {
  .mt100 {
    margin-top: 60px !important;
  }
}

.mt150 {
  margin-top: 150px !important;
}
@media (max-width: 1024px) {
  .mt150 {
    margin-top: 90px !important;
  }
}
@media (max-width: 767px) {
  .mt150 {
    margin-top: 60px !important;
  }
}

.mb150 {
  margin-bottom: 150px !important;
}
@media (max-width: 1024px) {
  .mb150 {
    margin-bottom: 90px !important;
  }
}
@media (max-width: 767px) {
  .mb150 {
    margin-bottom: 60px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media (max-width: 767px) {
  .mb100 {
    margin-bottom: 60px !important;
  }
}

.mb20 {
  margin-bottom: 30px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.negative-mt150 {
  margin-top: -150px;
}
@media (max-width: 1024px) {
  .negative-mt150 {
    margin-top: -90px;
  }
}

.negative-mt50 {
  margin-top: -50px !important;
}

.f78 {
  font-size: 78px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f78 {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .f78 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .f78 {
    font-size: 34px;
    line-height: 1.3;
  }
}

.f70 {
  font-size: 70px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f70 {
    font-size: 60px;
  }
}
@media (max-width: 1024px) {
  .f70 {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  .f70 {
    font-size: 30px;
    line-height: 1.3;
  }
}

.f60 {
  font-size: 60px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f60 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .f60 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .f60 {
    font-size: 28px;
    line-height: 1.3;
  }
}

.f56 {
  font-size: 56px;
  line-height: normal;
}
@media (max-width: 1439px) {
  .f56 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .f56 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .f56 {
    font-size: 28px;
    line-height: 1.3;
  }
}

.f48 {
  font-size: 48px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f48 {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .f48 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .f48 {
    font-size: 28px;
  }
}

.f40 {
  font-size: 40px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f40 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .f40 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .f40 {
    font-size: 26px;
  }
}

.f36 {
  font-size: 36px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f36 {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .f36 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .f36 {
    font-size: 24px;
    line-height: 1.2;
  }
}

.f32 {
  font-size: 32px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f32 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .f32 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .f32 {
    font-size: 24px;
  }
}

.f30 {
  font-size: 30px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f30 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  .f30 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .f30 {
    font-size: 24px;
  }
}

.f28 {
  font-size: 28px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f28 {
    font-size: 26px;
  }
}
@media (max-width: 1024px) {
  .f28 {
    font-size: 23px;
  }
}
@media (max-width: 767px) {
  .f28 {
    font-size: 21px;
  }
}

.f26 {
  font-size: 26px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f26 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  .f26 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .f26 {
    font-size: 20px;
  }
}

.f24 {
  font-size: 24px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f24 {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .f24 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .f24 {
    font-size: 18px;
  }
}
@media (max-width: 399px) {
  .f24 {
    font-size: 16px;
  }
}

.f23 {
  font-size: 23px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f23 {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .f23 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .f23 {
    font-size: 18px;
  }
}
@media (max-width: 399px) {
  .f23 {
    font-size: 16px;
  }
}

.f22 {
  font-size: 22px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f22 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .f22 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .f22 {
    font-size: 16px;
  }
}

.f21 {
  font-size: 21px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f21 {
    font-size: 19px;
  }
}
@media (max-width: 1024px) {
  .f21 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .f21 {
    font-size: 16px;
  }
}

.f20 {
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 1439px) {
  .f20 {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .f20 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .f20 {
    font-size: 16px;
  }
}

.f18 {
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .f18 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .f18 {
    font-size: 14px;
  }
}

.f17 {
  font-size: 17px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .f17 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .f17 {
    font-size: 14px;
  }
}

.f16 {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .f16 {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .f16 {
    font-size: 14px;
  }
}

.f15 {
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .f15 {
    font-size: 14px;
  }
}

.f14 {
  font-size: 14px;
  line-height: 1.3;
}

.f12 {
  font-size: 12px;
}
.f12.i {
  font-style: italic;
}

.newsletter {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.newsletter h2 {
  font-weight: bold;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .newsletter h2 {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .newsletter h2 {
    margin-bottom: 20px;
  }
}
.newsletter .gform_wrapper {
  position: relative;
  width: 100%;
}
@media (max-width: 1024px) {
  .newsletter .gform_wrapper {
    width: 100%;
  }
}
.newsletter .gform_wrapper label {
  display: none;
}
.newsletter .gform_wrapper form {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .newsletter .gform_wrapper form {
    flex-direction: column;
    align-items: center;
  }
}
.newsletter .gform_wrapper form .gform-body {
  position: relative;
  width: calc(100% - 213px);
}
@media (max-width: 767px) {
  .newsletter .gform_wrapper form .gform-body {
    width: 100%;
  }
}
.newsletter .gform_wrapper form .gform-body .gform_fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 10px;
}
@media (max-width: 767px) {
  .newsletter .gform_wrapper form .gform-body .gform_fields {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-html,
.newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-turnstile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% + 213px);
  grid-column-start: 1;
  grid-column-end: 4;
}
@media (max-width: 767px) {
  .newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-html,
  .newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-turnstile {
    grid-column-start: auto;
    grid-column-end: auto;
    width: 100%;
  }
}
.newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-html p,
.newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-turnstile p {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
.newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-html p a,
.newsletter .gform_wrapper form .gform-body .gform_fields .gfield--type-turnstile p a {
  color: #006aff;
}
.newsletter .gform_wrapper form .gform_footer {
  position: relative;
  width: 203px;
}
@media (max-width: 767px) {
  .newsletter .gform_wrapper form .gform_footer {
    width: 100%;
    margin-top: 20px;
  }
}

form input {
  width: 100%;
  border-radius: 60px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  border: none;
  color: #006aff;
  background-color: #fff;
  padding: 14px 30px 14px 29px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  border: 1px solid #fff;
}
form input[type=submit] {
  background-color: #006aff;
  color: #fff;
  text-align: center;
  border: none;
}
form input[type=submit]:hover {
  background-color: #fff;
  color: #006aff;
}
form input:hover {
  border-color: #006aff;
}
form ::-moz-placeholder {
  font-weight: 500;
  color: #667480;
}
form ::placeholder {
  font-weight: 500;
  color: #667480;
}

.content h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.53;
  letter-spacing: 1.2px;
  color: #001533;
  margin-bottom: 25px;
}
@media (max-width: 1024px) {
  .content h2 {
    margin-bottom: 15px;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .content h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
.content h2:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .content h2:not(:first-child) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .content h2:not(:first-child) {
    margin-top: 25px;
  }
}
.content h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.53;
  letter-spacing: 1.2px;
  color: #001533;
  margin-bottom: 10px;
}
@media (max-width: 1024px) {
  .content h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .content h3 {
    font-size: 20px;
  }
}
.content h3:not(:first-child) {
  margin-top: 35px;
}
@media (max-width: 1024px) {
  .content h3:not(:first-child) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .content h3:not(:first-child) {
    margin-top: 15px;
  }
}
.content p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: #001533;
}
@media (max-width: 1024px) {
  .content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .content p {
    font-size: 14px;
  }
}
.content p:empty {
  display: none;
}
.content p:first-child img {
  margin-top: 0;
}
.content p:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .content p:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .content p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.content blockquote,
.content em {
  font-size: 16px;
  line-height: 1.33;
  text-align: left;
  color: #001533;
}
@media (max-width: 1024px) {
  .content blockquote,
  .content em {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .content blockquote,
  .content em {
    font-size: 14px;
  }
}
.content blockquote:not(:last-child),
.content em:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .content blockquote:not(:last-child),
  .content em:not(:last-child) {
    margin-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .content blockquote:not(:last-child),
  .content em:not(:last-child) {
    margin-bottom: 20px;
  }
}
.content hr {
  margin: 20px 0;
}
.content a {
  color: #001533;
  text-decoration: underline;
  white-space: pre-wrap; /* CSS3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.content a:hover {
  color: #006aff;
}
.content ol {
  list-style-position: inside;
  counter-reset: item;
}
.content ol li {
  display: block;
}
.content ol li:before {
  content: counter(item) ". ";
  counter-increment: item;
  color: #006aff;
}
.content ul,
.content ol {
  position: relative;
  margin-top: 10px;
  margin-bottom: 40px;
  word-wrap: break-word;
}
.content ul li {
  padding-left: 15px;
}
.content ul li:before {
  content: "";
  width: 6px;
  min-width: 6px;
  max-width: 6px;
  height: 6px;
  min-height: 6px;
  max-height: 6px;
  border-radius: 50%;
  background-color: #006aff;
  position: absolute;
  left: 0;
  top: 7px;
}
.content ul li ul li:before {
  background-color: transparent !important;
  border: 1px solid #006aff !important;
}
.content ul li ul li ul li:before {
  background-color: transparent !important;
  border: 1px solid #006aff !important;
  border-radius: 0 !important;
}
.content li {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.33;
  text-align: left;
  color: #001533;
}
@media (max-width: 1024px) {
  .content li {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .content li {
    font-size: 14px;
  }
}
.content li:not(:last-child) {
  margin-bottom: 25px;
}
.content table {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-collapse: collapse;
}
.content table * {
  border: 1px solid #d9d9d9;
}
.content table th {
  text-align: left;
}
.content table tr,
.content table td,
.content table th {
  padding: 10px;
}
.content img {
  margin: 40px 0;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .content img {
    margin: 20px 0;
  }
}
.content strong,
.content b {
  font-weight: bold;
}
.content * img {
  width: 100%;
}
.content div {
  width: 100% !important;
}
.content .is-layout-flex {
  position: relative;
  align-items: stretch;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .content .is-layout-flex {
    position: relative;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .content .is-layout-flex {
    margin: 20px 0;
  }
}
.content .is-layout-flex figure,
.content .is-layout-flex img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .content .is-layout-flex figure,
  .content .is-layout-flex img {
    width: 100% !important;
    height: auto !important;
  }
}
.content .wp-block-gallery.has-nested-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1149px) {
  .content .wp-block-gallery.has-nested-images {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .content .wp-block-gallery.has-nested-images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .content .wp-block-gallery.has-nested-images {
    grid-gap: 10px;
  }
}
@media (max-width: 329px) {
  .content .wp-block-gallery.has-nested-images {
    grid-template-columns: 1fr;
  }
}
.content .wp-block-gallery.has-nested-images figure {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}
.content .wp-block-gallery.has-nested-images figure img {
  transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
  width: 100%;
  height: 100%;
  margin: 0 !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content .wp-block-gallery.has-nested-images figure:hover img {
  transform: scale(1.1, 1.1);
}
.content .is-vertically-aligned-center {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content .wp-block-media-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
  margin: 40px 0;
}
@media (max-width: 1024px) {
  .content .wp-block-media-text {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
@media (max-width: 767px) {
  .content .wp-block-media-text {
    margin: 20px 0;
  }
}
.content .wp-block-media-text figure,
.content .wp-block-media-text img {
  margin: 0;
}
.content .wp-block-media-text__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header {
  position: fixed;
  top: 0;
  background-color: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  z-index: 99999999999999;
  box-shadow: 0px 0px 22px -10px rgba(0, 106, 255, 0.14);
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-bottom: 1px solid rgba(238, 240, 246, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media (max-width: 1024px) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header.nofixedheader {
  position: sticky;
}
.header.nofixedheader .header-logo svg * {
  fill: revert-layer !important;
}
.header .header-logo-2 {
  position: relative;
}
.header .header-logo-2 span {
  transition: all 0.3s ease;
}
.header .header-logo-2 span.active-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.header.active, .header.nofixedheader {
  background-color: #fff;
  transform: translateY(0);
  opacity: 1;
}
.header.active nav li.menu-item-has-children a svg *, .header.nofixedheader nav li.menu-item-has-children a svg * {
  fill: #001533;
}
.header.active nav li a, .header.nofixedheader nav li a {
  color: #001533;
}
.header.active nav li a:before, .header.active nav li a:after, .header.nofixedheader nav li a:before, .header.nofixedheader nav li a:after {
  background-color: #006aff;
}
.header.active nav li a:hover, .header.nofixedheader nav li a:hover {
  color: #006aff;
}
.header.active .hamburger-inner,
.header.active .hamburger-inner::before,
.header.active .hamburger-inner::after, .header.nofixedheader .hamburger-inner,
.header.nofixedheader .hamburger-inner::before,
.header.nofixedheader .hamburger-inner::after {
  background-color: #001533;
}
@media (max-width: 1024px) {
  .header.active .header-hamburger.is-active .hamburger-inner:before,
  .header.active .header-hamburger.is-active .hamburger-inner:after, .header.nofixedheader .header-hamburger.is-active .hamburger-inner:before,
  .header.nofixedheader .header-hamburger.is-active .hamburger-inner:after {
    background-color: #001533 !important;
  }
}
.header.hidden {
  transform: translateY(-100px);
  opacity: 0;
}
.header.nofloat {
  position: sticky;
  top: 0;
  background-color: #006aff;
  border-bottom: 1px solid rgba(238, 240, 246, 0.2);
}
.header.nofloat .header-logo svg * {
  fill: #fff;
}
.header.nofloat .header-nav a {
  color: #fff;
}
.header.nofloat .header-nav .menu-item-has-children a svg * {
  fill: #fff !important;
}
@media (max-width: 1024px) {
  .header.nofloat .header-nav .menu-item-has-children a svg * {
    fill: #001533 !important;
  }
}
.header.nofloat .header-cta a {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.header.nofloat .hamburger-inner,
.header.nofloat .hamburger-inner::before,
.header.nofloat .hamburger-inner::after {
  background-color: #fff !important;
}
.header-logo {
  position: relative;
  width: 176px;
  height: auto;
}
@media (max-width: 1199px) {
  .header-logo {
    width: 160px;
  }
}
@media (max-width: 1024px) {
  .header-logo {
    z-index: 16;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 106px;
  }
}
.header-logo.is-white svg * {
  fill: #fff;
}
.header-logo.is-open svg * {
  fill: revert-layer !important;
}
.header-logo svg {
  width: 100%;
  height: auto;
}
.header-nav {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1360px) {
  .header-nav {
    position: initial;
  }
}
@media (max-width: 1024px) {
  .header-nav {
    visibility: hidden;
    pointer-events: none;
    width: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 0;
    will-change: transform;
    transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: block;
    flex-direction: column;
    transform: translateY(-100%);
    padding: 68px 0 150px 0;
    background-color: #fff;
    z-index: 14;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    height: 100vh;
  }
  .header-nav.-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header-nav ul {
    flex-direction: column;
    width: 100%;
  }
}
.header-nav ul li {
  position: relative;
}
@media (max-width: 1600px) {
  .header-nav ul li {
    position: initial;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li:last-of-type a {
    border-bottom: 1px solid #EEF0F6;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li.current-menu-item a {
    color: #006aff !important;
  }
}
.header-nav ul li.current-menu-item a:before {
  opacity: 1;
  width: 100%;
}
@media (max-width: 1024px) {
  .header-nav ul li.current-menu-item a:before {
    display: none;
  }
}
.header-nav ul li a {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: #fff;
}
@media (max-width: 1024px) {
  .header-nav ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px !important;
    color: #001533 !important;
    border-top: 1px solid #EEF0F6;
    font-size: 20px;
  }
}
.header-nav ul li a:before {
  content: "";
  width: 0;
  height: 1px;
  background: #FFF;
  box-shadow: 0px 0px 8px 0px #FFF;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -31px;
  filter: none;
  opacity: 0;
  border-radius: 0;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: auto;
}
.header-nav ul li a:hover:before {
  opacity: 1;
  width: 100%;
}
@media (max-width: 1024px) {
  .header-nav ul li a:hover {
    color: #006aff;
  }
}
.header-nav ul li.menu-item-has-children .ui-accordion-header-icon {
  display: none;
}
.header-nav ul li.menu-item-has-children a {
  display: flex;
  align-items: center;
}
.header-nav ul li.menu-item-has-children a svg {
  margin-left: 5px;
}
.header-nav ul li.menu-item-has-children a svg * {
  fill: #fff;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children a svg * {
    fill: #001533 !important;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children a.active-header svg {
    transform: rotate(180deg);
  }
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children a {
    background-image: none !important;
    padding-right: 0;
  }
}
.header-nav ul li.menu-item-has-children a:before {
  content: "";
  width: 24px;
  height: 24px;
  transform: rotate(-45deg) translateY(40px) translateX(-40px);
  border-radius: 4px;
  background: #FFF;
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  z-index: -99999999;
  will-change: transform;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
  filter: none;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children a:before {
    content: none;
    display: none;
  }
}
.header-nav ul li.menu-item-has-children a:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -17px;
  opacity: 0;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children a:after {
    content: none;
    display: none;
  }
}
.header-nav ul li.menu-item-has-children .sub-menu {
  position: absolute;
  width: 991px;
  left: -30px;
  top: 32px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 24% 29% 40%;
  justify-content: space-between;
  padding: 30px;
  grid-gap: 30px 0;
  opacity: 0;
  transform: translateY(60px);
  visibility: hidden;
  pointer-events: none;
  z-index: -99999999;
  will-change: transform;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1600px) {
  .header-nav ul li.menu-item-has-children .sub-menu {
    left: 0;
  }
}
@media (max-width: 1359px) {
  .header-nav ul li.menu-item-has-children .sub-menu {
    left: 0;
    right: 0;
    margin: auto;
    top: 60px;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children .sub-menu {
    position: relative;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 20px 20px 20px;
    transform: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    gap: 0;
    will-change: inherit;
    transition: inherit;
  }
}
.header-nav ul li.menu-item-has-children .sub-menu li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children .sub-menu li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.header-nav ul li.menu-item-has-children .sub-menu li a {
  background-image: none;
  color: #001533;
  padding-right: 0;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children .sub-menu li a {
    border: none;
    padding: 0 !important;
    font-size: 16px;
  }
}
.header-nav ul li.menu-item-has-children .sub-menu li a:before, .header-nav ul li.menu-item-has-children .sub-menu li a:after {
  content: none;
  display: none;
}
.header-nav ul li.menu-item-has-children .sub-menu li a svg path {
  fill: #fff !important;
}
.header-nav ul li.menu-item-has-children .sub-menu li a p {
  color: #667480;
  font-weight: normal;
  margin-top: 6px;
  line-height: normal;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children .sub-menu li a p {
    font-size: 14px;
  }
}
.header-nav ul li.menu-item-has-children .sub-menu li a:hover {
  color: #006aff;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta {
  position: relative;
  display: flex;
  grid-row-start: 1;
  grid-row-end: 5;
  grid-column-start: 3;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 24px;
  margin: 0;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta a:first-of-type {
  display: none;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard video {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container h3 {
  text-align: center;
  color: #FFF;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container p {
  margin-top: 10px;
  text-align: center;
  color: #fff;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #006aff;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a svg {
  margin-left: 12.2px;
  transform: none;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a svg * {
  fill: #fff;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a:before {
  content: "" !important;
  display: block !important;
  width: 0%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  position: absolute;
  left: auto;
  right: 0;
  margin: auto;
  bottom: -4px;
  transform: none;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a:hover:before {
  width: 100%;
  opacity: 1;
  right: auto;
  left: 0;
}
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a:hover svg,
.header-nav ul li.menu-item-has-children .sub-menu li.iscta .menucard-container a:hover img {
  transform: translateX(5px) rotate(-15deg);
}
.header-nav ul li.menu-item-has-children:hover a:before {
  transform: rotate(-45deg) translateY(0) translateX(0);
  opacity: 1;
  visibility: visible;
  z-index: -1;
  pointer-events: auto;
}
@media (min-width: 1025px) {
  .header-nav ul li.menu-item-has-children:hover a svg {
    transform: rotate(180deg);
  }
}
.header-nav ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  z-index: 10000000000000000;
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children a.ui-state-active svg {
    transform: rotate(180deg);
  }
}
.header-nav ul li.menu-item-has-children.smallerdropdown .sub-menu li.iscta {
  grid-row-end: 4;
}
.header-nav ul li.menu-item-has-children.classicdropdown {
  position: relative;
}
.header-nav ul li.menu-item-has-children.classicdropdown .sub-menu {
  width: 170px;
  grid-gap: 0;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 1359px) {
  .header-nav ul li.menu-item-has-children.classicdropdown .sub-menu {
    top: 35px;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children.classicdropdown .sub-menu {
    display: none;
    width: 100%;
    top: 0;
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li.menu-item-has-children.classicdropdown .sub-menu.display-me {
    display: flex;
  }
}
.header-nav ul li:not(:last-child) {
  margin-right: 50px;
}
@media (max-width: 1199px) {
  .header-nav ul li:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 1024px) {
  .header-nav ul li:not(:last-child) {
    margin-right: 0;
  }
}
.header-nav ul .header-cta {
  display: none;
}
@media (max-width: 1024px) {
  .header-nav ul .header-cta {
    display: flex;
  }
}
@media (max-width: 1299px) {
  .header .btn a {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .header .btn {
    display: none;
    width: calc(100% - 40px);
    margin-top: 20px;
  }
  .header .btn a {
    width: 100%;
    font-size: 18px;
  }
}
.header-hamburger {
  position: relative;
  display: none;
}
@media (max-width: 1024px) {
  .header-hamburger {
    display: flex;
    z-index: 16;
  }
}
@media (max-width: 1024px) {
  .header-hamburger.is-active .hamburger-inner {
    background-color: #001533;
  }
  .header-hamburger.is-active .hamburger-inner:before, .header-hamburger.is-active .hamburger-inner:after {
    background-color: #001533 !important;
  }
}

.footer {
  position: relative;
  background: linear-gradient(0deg, rgba(0, 106, 255, 0) 61.12%, rgba(0, 106, 255, 0.2) 100%), var(--Shades-White, #FFF);
  padding-top: 70px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 45px;
  }
}
.footer-main {
  position: relative;
  padding-top: 70px;
  margin-top: 70px;
  border-top: 1px solid #b8c3cc;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer-main {
    padding-top: 35px;
    margin-top: 35px;
    flex-direction: column;
  }
}
.footer-main.no-newsletter {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.footer-main-wpr {
  position: relative;
  width: 177px;
}
@media (max-width: 1024px) {
  .footer-main-wpr {
    width: 150px;
  }
}
@media (max-width: 949px) {
  .footer-main-wpr {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .footer-main-wpr {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer-main-wpr-logo {
  position: relative;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .footer-main-wpr-logo {
    max-width: 177px;
  }
}
.footer-main-wpr-logo svg {
  width: 100%;
  height: auto;
}
.footer-main-wpr-badges {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 27px;
}
@media (max-width: 767px) {
  .footer-main-wpr-badges {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    align-items: center;
  }
}
.footer-main-wpr-badges-i {
  position: relative;
  width: 100%;
  height: auto;
}
.footer-main-wpr-badges-i img {
  width: 100%;
  height: auto;
}
.footer-main-menu {
  position: relative;
  width: 74.5%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .footer-main-menu {
    width: 77%;
  }
}
@media (max-width: 949px) {
  .footer-main-menu {
    width: 76%;
  }
}
@media (max-width: 767px) {
  .footer-main-menu {
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
  }
}
.footer-main-menu-nav {
  position: relative;
  width: calc(100% - 183px);
}
@media (max-width: 1149px) {
  .footer-main-menu-nav {
    width: calc(100% - 143px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer-main-menu-nav {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-main-menu-nav ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0 83px;
}
@media (max-width: 1149px) {
  .footer-main-menu-nav ul {
    gap: 0 40px;
    justify-content: space-between;
    width: 100%;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .footer-main-menu-nav ul {
    flex-direction: column;
    padding-right: 0;
    gap: 0;
    width: 100%;
  }
}
.footer-main-menu-nav ul li {
  position: relative;
}
@media (max-width: 767px) {
  .footer-main-menu-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 21, 51, 0.1);
  }
}
.footer-main-menu-nav ul li.menu-item-has-children {
  position: relative;
  display: flex;
  flex-direction: column;
}
.footer-main-menu-nav ul li.menu-item-has-children .ui-accordion-header-icon {
  display: none;
}
.footer-main-menu-nav ul li.menu-item-has-children a:first-child {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 46px;
}
@media (max-width: 1024px) {
  .footer-main-menu-nav ul li.menu-item-has-children a:first-child {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .footer-main-menu-nav ul li.menu-item-has-children a:first-child {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.footer-main-menu-nav ul li.menu-item-has-children a:first-child.ui-accordion-header-active svg {
  transform: rotate(180deg);
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1149px) {
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu {
    gap: 0;
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu li {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu li:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 1149px) {
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu a {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 170px;
  z-index: 1;
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu a {
    background-image: none;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
  .footer-main-menu-nav ul li.menu-item-has-children .sub-menu a svg {
    display: none;
  }
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu a:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #006aff;
  position: absolute;
  left: 0;
  right: auto;
  will-change: left;
  bottom: -7px;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu a:after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #006aff;
  position: absolute;
  right: 0;
  margin: auto;
  bottom: -7px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu a:hover {
  color: #006aff;
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu a:hover:before {
  opacity: 1;
  left: 5px;
  border-radius: 50%;
}
.footer-main-menu-nav ul li.menu-item-has-children .sub-menu a:hover:after {
  opacity: 1;
  right: calc(100% - 10px);
  border-radius: 50%;
}
.footer-main-menu-items {
  position: relative;
}
.footer-main-menu-items h3 {
  font-weight: bold;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer-main-menu-items h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.footer-bottom {
  position: relative;
  padding-top: 30px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #b8c3cc;
}
@media (max-width: 767px) {
  .footer-bottom {
    padding-top: 20px;
    margin-top: 20px;
    flex-direction: column-reverse;
  }
}
.footer-bottom footer {
  font-size: 14px;
  line-height: 1.5;
}
.footer-bottom-nav {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .footer-bottom-nav {
    margin-bottom: 15px;
  }
}
.footer-bottom-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 399px) {
  .footer-bottom-nav ul {
    flex-direction: column;
  }
}
.footer-bottom-nav ul li:not(:last-of-type) {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .footer-bottom-nav ul li:not(:last-of-type) {
    margin-right: 10px;
  }
}
@media (max-width: 399px) {
  .footer-bottom-nav ul li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.footer-bottom-nav ul li a {
  font-size: 14px;
  line-height: 1.5;
}
.footer-bottom-nav ul li a:hover {
  color: #006aff;
}

.featuredpart {
  position: relative;
}
.featuredpart h2 {
  text-align: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 50px auto;
}
@media (max-width: 767px) {
  .featuredpart h2 {
    margin-bottom: 30px;
  }
}
.featuredpart .wp-block-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 !important;
  grid-gap: 0 !important;
}
@media (max-width: 1249px) {
  .featuredpart .wp-block-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .featuredpart .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.featuredpart .wp-block-gallery.onlyfour {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery.onlyfour {
    grid-template-columns: repeat(2, 1fr);
  }
}
.featuredpart .wp-block-gallery.onlyfour .wp-block-image {
  height: 100%;
  padding: 50px 20px;
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery.onlyfour .wp-block-image {
    border-top: 1px solid #EEF0F6 !important;
    border-right: 1px solid #EEF0F6 !important;
    padding: 24px 20px;
  }
}
@media (max-width: 767px) {
  .featuredpart .wp-block-gallery.onlyfour .wp-block-image {
    padding: 20px 10px;
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery.onlyfour .wp-block-image:nth-of-type(-n+2) {
    border-top: none !important;
  }
}
.featuredpart .wp-block-gallery.onlyfour .wp-block-image:nth-of-type(-n+5) {
  border-top: 1px solid #EEF0F6;
}
.featuredpart .wp-block-gallery.onlyfour .wp-block-image:nth-of-type(-n+4) {
  border-top: none;
}
.featuredpart .wp-block-gallery.onlyfour .wp-block-image:nth-of-type(4n) {
  border-right: none;
}
.featuredpart .wp-block-gallery.onlyfour .wp-block-image:nth-of-type(5n) {
  border-right: 1px solid #EEF0F6;
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery.onlyfour .wp-block-image:nth-of-type(2n) {
    border-right: none !important;
  }
}
.featuredpart .wp-block-gallery.onlyfour .wp-block-image img {
  height: auto !important;
}
.featuredpart .wp-block-gallery .wp-block-image {
  position: relative;
  width: 100% !important;
  height: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #EEF0F6;
  border-right: 1px solid #EEF0F6;
}
.featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+5) {
  border-top: none;
}
@media (max-width: 1249px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+5) {
    border-top: 1px solid #EEF0F6;
  }
}
@media (max-width: 1249px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+4) {
    border-top: none;
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+4) {
    border-top: 1px solid #EEF0F6;
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+3) {
    border-top: none;
  }
}
@media (max-width: 767px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+3) {
    border-top: 1px solid #EEF0F6;
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(-n+2) {
    border-top: none;
  }
}
.featuredpart .wp-block-gallery .wp-block-image:nth-of-type(5n) {
  border-right: none;
}
@media (max-width: 1249px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(5n) {
    border-right: 1px solid #EEF0F6;
  }
}
@media (max-width: 1249px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(4n) {
    border-right: none;
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(4n) {
    border-right: 1px solid #EEF0F6;
  }
}
@media (max-width: 1024px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(3n) {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(3n) {
    border-right: 1px solid #EEF0F6;
  }
}
@media (max-width: 767px) {
  .featuredpart .wp-block-gallery .wp-block-image:nth-of-type(2n) {
    border-right: none;
  }
}
.featuredpart .wp-block-gallery .wp-block-image img {
  flex: inherit !important;
  width: auto !important;
  height: 183px !important;
  -o-object-fit: inherit !important;
     object-fit: inherit !important;
  -o-object-position: inherit !important;
     object-position: inherit !important;
}
@media (max-width: 767px) {
  .featuredpart .wp-block-gallery .wp-block-image img {
    height: 125px !important;
  }
}
@media (max-width: 329px) {
  .featuredpart .wp-block-gallery .wp-block-image img {
    height: auto !important;
  }
}
.featuredpart .wp-block-gallery.saveimgcontain img {
  flex: 0 !important;
  width: auto !important;
  height: 100px !important;
}

.testimonials {
  position: relative;
  overflow-x: hidden;
}
.testimonials.centertitle h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .testimonials-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.testimonials-header h2 {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 500px;
}
@media (max-width: 767px) {
  .testimonials-header h2 {
    text-align: center;
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  .testimonials-header .swipernav {
    margin-top: 20px;
  }
}
.testimonials-main {
  position: relative;
  margin-top: 75px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
@media (max-width: 1024px) {
  .testimonials-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .testimonials-main {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}
.testimonials-main-i {
  position: relative;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #F2F7FF;
  height: auto;
  padding: 30px;
}
@media (max-width: 767px) {
  .testimonials-main-i {
    padding: 20px;
    align-items: center;
    justify-content: center;
  }
}
.testimonials-main-i-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .testimonials-main-i-img {
    width: 100px;
    height: 100px;
  }
}
.testimonials-main-i-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .testimonials-main-i h4,
  .testimonials-main-i span {
    text-align: center;
  }
}
.testimonials-main-i-content {
  position: relative;
  margin-top: 15px;
}
.testimonials-main-i-content * {
  font-weight: 500;
}
.testimonials-main-i-content p {
  transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
  .testimonials-main-i-content p {
    text-align: center;
  }
}
.testimonials-main-i-content p:not(:last-of-type) {
  margin-bottom: 15px;
}
.testimonials-main-i-content p strong {
  font-weight: bold;
}
.testimonials-main-i-rm {
  margin-top: auto;
}
.testimonials-main-i-rm button {
  margin-top: 15px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .testimonials-main-i-rm button {
    text-align: center;
  }
}
.testimonials-main-i-rm.buddyout {
  display: none !important;
}

.servicestabs {
  position: relative;
}
.servicestabs .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.servicestabs .intro_title_desc {
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .servicestabs h2 {
    text-align: center;
  }
}
.servicestabs-main {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 70px;
}
.servicestabs-main.center-items {
  align-items: center;
}
@media (max-width: 1024px) {
  .servicestabs-main {
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .servicestabs-main {
    flex-direction: column;
    margin-top: 30px;
  }
}
.servicestabs-main-content {
  position: relative;
  width: 39%;
}
@media (max-width: 1024px) {
  .servicestabs-main-content {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .servicestabs-main-content {
    width: 100%;
  }
}
.servicestabs-main-content-item {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item {
    display: flex;
    flex-direction: column;
  }
}
.servicestabs-main-content-item h3 {
  position: relative;
  line-height: 1.7;
  margin-bottom: 5px;
  color: #001533;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item h3 {
    order: -1;
    padding-right: 29px;
  }
  .servicestabs-main-content-item h3:before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-image: url("../svg/arrow-down-accordion.svg");
    background-position: 50% 50%;
    background-size: 24px;
    background-repeat: no-repeat;
    transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
.servicestabs-main-content-item h3:hover {
  color: #006aff;
}
.servicestabs-main-content-item img {
  display: none;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item img {
    order: 0;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    border-radius: 24px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 399px) {
  .servicestabs-main-content-item img {
    max-height: 300px;
  }
}
.servicestabs-main-content-item p {
  line-height: 1.67;
  text-align: left;
  color: #667480;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  display: none;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
  .servicestabs-main-content-item p {
    order: 1;
  }
}
.servicestabs-main-content-item .btn-simple {
  margin-top: 20px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0 !important;
  position: absolute !important;
  visibility: hidden !important;
  display: none !important;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item .btn-simple {
    order: 2;
  }
}
.servicestabs-main-content-item .progressbar {
  width: 100%;
  height: 2px;
  background-color: #D9D9D9;
  margin-top: 20px;
  border-radius: 5px;
  opacity: 0;
  position: absolute;
  visibility: hidden;
  display: none;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item .progressbar {
    display: none !important;
  }
}
.servicestabs-main-content-item .progressbar span {
  position: relative;
  display: flex;
  height: 2px;
  width: 0%;
  background: #006aff;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgb(0, 106, 255) 42%);
}
.servicestabs-main-content-item:not(:last-child) {
  margin-bottom: 20px;
}
.servicestabs-main-content-item.active h3 {
  pointer-events: none;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item.active h3:before {
    transform: rotate(180deg);
  }
}
@media (max-width: 767px) {
  .servicestabs-main-content-item.active img {
    display: block;
  }
}
.servicestabs-main-content-item.active p,
.servicestabs-main-content-item.active .btn-simple,
.servicestabs-main-content-item.active .progressbar {
  opacity: 1 !important;
  position: relative !important;
  visibility: visible !important;
  display: flex !important;
}
.servicestabs-main-content-item.active.no-progressbar .progressbar {
  display: none !important;
}
@media (max-width: 767px) {
  .servicestabs-main-content-item.active .progressbar {
    display: none !important;
  }
}
.servicestabs-main-images {
  position: relative;
  width: 57.6666%;
  height: 500px;
  border-radius: 24px;
}
@media (max-width: 1249px) {
  .servicestabs-main-images {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .servicestabs-main-images {
    height: auto;
  }
}
@media (max-width: 767px) {
  .servicestabs-main-images {
    width: 100%;
    display: none;
  }
}
.servicestabs-main-images-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.servicestabs-main-images-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
}

.ctasection {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1820px;
  margin: 0 auto;
  border-radius: 24px;
  padding-top: 0;
  z-index: 1;
}
@media (max-width: 1449px) {
  .ctasection {
    width: calc(100% - 40px);
    max-width: none;
  }
}
.ctasection.smaller {
  max-width: inherit;
  width: 100%;
}
.ctasection.smaller .wp-block-cover__inner-container {
  min-height: 300px;
  height: 100%;
  padding-top: 35px;
  padding-bottom: 35px;
}
.ctasection.smaller .art {
  height: 300px;
}
.ctasection .wp-block-cover__background {
  border-radius: 24px;
}
.ctasection .wp-block-group__inner-container {
  border-radius: 24px;
}
.ctasection .wp-block-cover {
  position: relative;
  min-height: auto;
  height: auto;
  padding: 0;
}
.ctasection .wp-block-cover:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 21, 51, 0.6) 0%, rgba(0, 21, 51, 0.6) 100%);
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.ctasection .wp-block-cover__inner-container {
  position: relative;
  min-height: 600px;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .ctasection .wp-block-cover__inner-container {
    padding: 60px 20px;
    min-height: auto !important;
  }
}
@media (max-width: 767px) {
  .ctasection .wp-block-cover__inner-container {
    min-height: auto !important;
    padding: 40px 20px;
  }
}
.ctasection .wp-block-cover__inner-container h2 {
  width: 100%;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px auto;
}
@media (max-width: 1024px) {
  .ctasection .wp-block-cover__inner-container h2 {
    font-size: 22px !important;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .ctasection .wp-block-cover__inner-container h2 {
    font-size: 18px !important;
    margin-bottom: 0;
  }
}
.ctasection .wp-block-cover__inner-container p {
  width: 100%;
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
  margin: 0 auto 30px auto;
}
@media (max-width: 1024px) {
  .ctasection .wp-block-cover__inner-container p {
    margin-bottom: 0;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .ctasection .wp-block-cover__inner-container p {
    font-size: 16px;
    margin-top: 10px;
  }
}
.ctasection .wp-block-cover__inner-container .wp-block-buttons {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: auto;
  height: auto;
}
@media (max-width: 767px) {
  .ctasection .wp-block-cover__inner-container .wp-block-buttons {
    margin-top: 20px;
  }
}
.ctasection .wp-block-cover__inner-container .wp-block-buttons .wp-block-button {
  width: -moz-fit-content;
  width: fit-content;
}
.ctasection video,
.ctasection img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.ctasection img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ctasection .art {
  position: absolute;
  left: 35px;
  bottom: -30px;
  width: auto;
  height: 500px;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .ctasection .art {
    display: none;
  }
}
.ctasection .art img,
.ctasection .art svg {
  width: auto;
  height: 100%;
}

.socialmediapart {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 65px;
}
@media (max-width: 767px) {
  .socialmediapart {
    margin-top: 40px;
  }
}
.socialmediapart h4 {
  color: #fff;
  font-weight: normal;
  text-align: center;
}
.socialmediapart-main {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .socialmediapart-main {
    gap: 10px;
  }
}
.socialmediapart-main-i {
  position: relative;
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .socialmediapart-main-i {
    width: 30px;
    height: 30px;
  }
}
.socialmediapart-main-i svg,
.socialmediapart-main-i img {
  width: 100%;
  height: 100%;
}
.socialmediapart-main-i svg rect {
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.socialmediapart-main-i:hover svg {
  transform: scale(1.1, 1.1);
}
.socialmediapart-main-i:hover svg rect {
  stroke: #006aff;
}

.draggableitems {
  position: relative;
  overflow-x: hidden;
}
.draggableitems-header {
  position: relative;
}
.draggableitems-header .intro_title_desc {
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1149px) {
  .draggableitems-header .intro_title_desc {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.draggableitems-header .intro_title_desc h6 {
  text-align: left;
  margin-left: 0;
}
@media (max-width: 1149px) {
  .draggableitems-header .intro_title_desc h6 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.draggableitems-header p {
  max-width: 590px;
}
@media (max-width: 767px) {
  .draggableitems-header li {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .draggableitems-header ul,
  .draggableitems-header li,
  .draggableitems-header span {
    text-align: center;
  }
}
.draggableitems-header-ctas {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1149px) {
  .draggableitems-header-ctas {
    align-items: center;
    justify-content: center;
    max-width: inherit;
  }
}
@media (max-width: 767px) {
  .draggableitems-header-ctas {
    flex-direction: column;
  }
}
.draggableitems-dragme {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .draggableitems-dragme {
    margin-top: 50px;
  }
}
.draggableitems-dragme:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #006aff;
  position: absolute;
  left: 0;
  top: 78px;
  z-index: -1;
}
@media (max-width: 1439px) {
  .draggableitems-dragme:before {
    top: 73px;
  }
}
@media (max-width: 1024px) {
  .draggableitems-dragme:before {
    top: 58px;
  }
}
@media (max-width: 767px) {
  .draggableitems-dragme:before {
    top: 55.5px;
  }
}
.draggableitems-dragme-i {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 285px;
}
.draggableitems-dragme-i h2 {
  position: relative;
  color: #006aff;
  width: 100%;
  max-width: 285px;
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .draggableitems-dragme-i h2 {
    padding-bottom: 40px;
  }
}
.draggableitems-dragme-i h2:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  border-radius: 50%;
  background-color: #006aff;
}
.draggableitems-dragme-i h3 {
  width: 100%;
  max-width: 285px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.draggableitems-dragme-i p {
  width: 100%;
  max-width: 285px;
  text-align: center;
}
.draggableitems.hideocontent .draggableitems-header {
  display: none;
}
.draggableitems.hideocontent .draggableitems-dragme {
  margin-top: 0;
}

.casestudies {
  position: relative;
}
.casestudies-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.casestudies-header h2 {
  text-align: center;
  width: 100%;
  max-width: 780px;
  margin: 0 auto 30px auto;
}
.casestudies-main {
  position: relative;
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px 20px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .casestudies-main {
    grid-gap: 60px 20px;
  }
}
@media (max-width: 767px) {
  .casestudies-main {
    margin-top: 50px;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
}

.case-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
}
.case-card:nth-child(even) {
  top: 100px;
}
@media (max-width: 767px) {
  .case-card:nth-child(even) {
    top: 0;
  }
}
.case-card-featured {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 20px;
  border-radius: 24px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  overflow: hidden;
}
@media (max-width: 767px) {
  .case-card-featured {
    height: auto;
    min-height: 220px;
  }
}
.case-card-featured img,
.case-card-featured video {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 767px) {
  .case-card-featured img,
  .case-card-featured video {
    height: auto;
    min-height: 220px;
  }
}
.case-card-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
  gap: 26px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.case-card-info-i {
  position: relative;
  color: #667480;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.case-card-info-i:not(:last-of-type):after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #667480;
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.case-card-title {
  font-weight: bold;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.case-card-description {
  margin-top: 10px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #667480;
}
.case-card:hover .case-card-featured {
  transform: translateY(5px);
}
.case-card:hover .case-card-featured img {
  transform: scale(1.5, 1.5);
}
.case-card:hover .case-card-info {
  transform: translateX(5px);
}
.case-card:hover .case-card-title,
.case-card:hover .case-card-description {
  transform: translateX(5px);
  color: #006aff;
}

.whoweare {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1820px;
  margin: 0 auto;
  border-radius: 24px;
  padding-top: 0;
  z-index: 1;
}
@media (max-width: 1449px) {
  .whoweare {
    width: calc(100% - 40px);
    max-width: none;
  }
}
@media (max-width: 1024px) {
  .whoweare {
    width: 100%;
  }
}
.whoweare .wp-block-group__inner-container {
  border-radius: 24px;
}
.whoweare-cover {
  position: relative;
  min-height: auto;
  height: auto;
  padding: 0 !important;
}
.whoweare-cover:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 21, 51, 0.6) 0%, rgba(0, 21, 51, 0.6) 100%);
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.whoweare-cover video {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.whoweare-cover .wp-block-cover__inner-container {
  position: relative;
  padding-top: 50px;
  padding-bottom: 175px;
}
@media (max-width: 1199px) {
  .whoweare-cover .wp-block-cover__inner-container .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.whoweare-cover .wp-block-cover__inner-container h2 {
  width: 100%;
  text-align: left;
  max-width: 490px;
}
@media (max-width: 1199px) {
  .whoweare-cover .wp-block-cover__inner-container h2 {
    text-align: center;
    max-width: 720px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .whoweare-cover .wp-block-cover__inner-container h2 {
    margin-bottom: 20px;
  }
}
.whoweare-cover .wp-block-cover__inner-container p.alignright {
  width: 100%;
  max-width: 590px;
  margin-left: auto;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .whoweare-cover .wp-block-cover__inner-container p.alignright {
    margin-right: auto;
    text-align: center;
    max-width: 720px;
  }
}
.whoweare-cover .wp-block-cover__inner-container .wp-block-buttons {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
  width: 100%;
  max-width: 590px;
  height: auto;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .whoweare-cover .wp-block-cover__inner-container .wp-block-buttons {
    margin-right: auto;
    max-width: 720px;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .whoweare-cover .wp-block-cover__inner-container .wp-block-buttons {
    flex-direction: column;
    max-width: inherit;
    margin-top: 20px;
  }
}
.whoweare-cover .wp-block-cover__inner-container .wp-block-buttons .wp-block-button {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .whoweare-cover .wp-block-cover__inner-container .wp-block-buttons .wp-block-button.btn {
    width: 100%;
  }
}

.slidervalues {
  position: relative;
  margin-top: -90px;
  z-index: 1;
}
@media (max-width: 767px) {
  .slidervalues {
    margin-top: -125px;
  }
}
.slidervalues .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .slidervalues .wrapper {
    flex-direction: column;
  }
}
.slidervalues .swipernav {
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .slidervalues .swipernav {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 20px;
    padding-top: 0;
  }
}
.slidervalues .swipernav-i {
  margin: 0;
}
.slidervalues .swipernav-i svg {
  border-radius: 50%;
  background: linear-gradient(180deg, #FFF 50%, #DAE9FF 100%);
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
}
.slidervalues-main {
  position: relative;
  width: calc(100% - 70px);
  clip-path: inset(-100vw -100vw -100vw 0);
}
@media (max-width: 767px) {
  .slidervalues-main {
    width: 100%;
  }
}
.slidervalues-main-i {
  position: relative;
  border-radius: 16px;
  background-color: #006aff;
  padding: 30px;
  height: auto;
  opacity: 1;
}
@media (max-width: 767px) {
  .slidervalues-main-i {
    padding: 20px;
  }
}
.slidervalues-main-i h3 {
  color: #fff;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .slidervalues-main-i h3 {
    font-size: 18px;
  }
}
.slidervalues-main-i p {
  color: #fff;
  line-height: 1.6;
  font-weight: 400;
}

:root {
  --color-bg1: rgb(108, 0, 162);
  --color-bg2: rgb(0, 17, 82);
  --color1: 18, 113, 255;
  --color2: 221, 74, 255;
  --color3: 100, 220, 255;
  --color4: 200, 50, 50;
  --color5: 180, 180, 50;
  --color-interactive: 140, 100, 255;
  --circle-size: 80%;
  --blending: hard-light;
}

.hero {
  position: relative;
  width: 100%;
  height: 780px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1024px) {
  .hero {
    height: auto !important;
  }
}
.hero svg#art {
  display: none;
}
.hero:before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.hero .christmaslights {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: url(#goo);
  z-index: -2;
}
.hero .christmaslights .w1, .hero .christmaslights .w2, .hero .christmaslights .w3, .hero .christmaslights .w4, .hero .christmaslights .w5 {
  position: absolute;
  width: var(--circle-size);
  height: var(--circle-size);
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  border-radius: 50%;
  opacity: 1;
  will-change: transform;
}
.hero .christmaslights .w1 {
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
}
.hero .christmaslights .w2 {
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
}
.hero .christmaslights .w3 {
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
}
.hero .christmaslights .w4 {
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
}
.hero .christmaslights .w5 {
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
}
.hero .christmaslights .interactive {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  top: -50%;
  left: -50%;
  opacity: 0.7;
}
.hero.makestatic .christmaslights {
  display: none;
}
.hero-art {
  position: absolute;
  width: 100%;
  max-width: 880px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1449px) {
  .hero-art {
    max-width: 550px;
  }
}
@media (max-width: 1024px) {
  .hero-art {
    max-width: 400px;
    right: 0;
    left: 0;
  }
}
.hero-featuredimg {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 600px;
  width: 47%;
  padding-left: 70px;
  border-top-left-radius: 24px;
}
@media (max-width: 1149px) {
  .hero-featuredimg {
    width: 45%;
    padding-left: 40px;
    height: 500px;
  }
}
@media (max-width: 1024px) {
  .hero-featuredimg {
    width: calc(100% - 40px);
    left: 0;
    margin: auto;
    position: relative;
    height: auto;
    padding-left: 0;
    padding-top: 15px;
    border-top-right-radius: 24px;
  }
}
.hero-featuredimg:before {
  content: "";
  width: 70px;
  height: calc(100% - 50px);
  position: absolute;
  left: 0;
  bottom: 0;
  border-top-left-radius: 24px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1149px) {
  .hero-featuredimg:before {
    width: 40px;
  }
}
@media (max-width: 1024px) {
  .hero-featuredimg:before {
    right: 0;
    bottom: auto;
    top: 0;
    width: calc(100% - 58px);
    margin: auto;
    height: 15px;
    border-top-right-radius: 24px;
  }
}
.hero-featuredimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-top-left-radius: 24px;
}
@media (max-width: 1024px) {
  .hero-featuredimg img {
    border-top-right-radius: 24px;
    height: auto;
  }
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 590px;
}
.hero-content h1 {
  margin-bottom: 5px !important;
}
.hero-content p {
  color: #fff;
}
@media (max-width: 1024px) {
  .hero-content p {
    text-align: center;
  }
}
.hero .wp-block-group__inner-container {
  width: 100%;
  height: auto;
}
.hero .wp-block-group__inner-container .wrapper {
  height: 100%;
  padding-top: 266px;
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper {
    padding-top: 130px;
    padding-bottom: 170px;
  }
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.hero .wp-block-group__inner-container .wrapper h6 {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper h6 {
    text-align: center;
    margin-bottom: 10px;
  }
}
.hero .wp-block-group__inner-container .wrapper h1,
.hero .wp-block-group__inner-container .wrapper h2 {
  width: 100%;
  max-width: 590px;
  color: #fff;
  margin-bottom: 50px;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper h1,
  .hero .wp-block-group__inner-container .wrapper h2 {
    text-align: center;
    max-width: 720px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .hero .wp-block-group__inner-container .wrapper h1,
  .hero .wp-block-group__inner-container .wrapper h2 {
    margin-bottom: 20px;
  }
}
.hero .wp-block-group__inner-container .wrapper h1 *,
.hero .wp-block-group__inner-container .wrapper h2 * {
  color: #fff;
}
.hero .wp-block-group__inner-container .wrapper h1 strong,
.hero .wp-block-group__inner-container .wrapper h1 b,
.hero .wp-block-group__inner-container .wrapper h2 strong,
.hero .wp-block-group__inner-container .wrapper h2 b {
  font-weight: bold;
}
.hero .wp-block-group__inner-container .wrapper p.f20 {
  color: #fff;
  line-height: 1.6;
  width: 100%;
  max-width: 590px;
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper p.f20 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
  }
}
.hero .wp-block-group__inner-container .wrapper a {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper a {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .hero .wp-block-group__inner-container .wrapper a {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .hero .wp-block-group__inner-container .wrapper .wp-block-buttons {
    align-items: center;
    justify-content: center;
  }
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type {
    flex-direction: column;
  }
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-content {
  position: relative;
  width: 49.1%;
  height: 100%;
}
@media (max-width: 1024px) {
  .hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-content {
    width: 100%;
  }
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features {
  position: relative;
  width: 34.1%;
  overflow: hidden;
  height: auto;
}
@media (max-width: 1024px) {
  .hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features {
    width: 100%;
    overflow: visible;
    margin-top: 30px;
  }
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features .wp-block-group__inner-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features .wp-block-group__inner-container .wp-block-list {
  position: relative;
  width: 100%;
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features .wp-block-group__inner-container .wp-block-list li {
  position: relative;
  height: auto;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  color: #fff;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
  .hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features .wp-block-group__inner-container .wp-block-list li {
    height: auto;
    min-height: inherit;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features .wp-block-group__inner-container .wp-block-list li {
    font-size: 14px;
  }
}
.hero.has-features .wrapper > .wp-block-group__inner-container:first-of-type .hero-features .wp-block-group__inner-container .wp-block-list li.swiper-slide-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.2);
}
.hero.is-cases .wp-block-group__inner-container .wrapper h1,
.hero.is-cases .wp-block-group__inner-container .wrapper h2 {
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .hero.is-cases .wp-block-group__inner-container .wrapper h1,
  .hero.is-cases .wp-block-group__inner-container .wrapper h2 {
    margin-bottom: 15px;
  }
}
.hero.is-case {
  height: 780px !important;
  background: linear-gradient(40deg, rgb(108, 0, 162) 0%, rgb(0, 17, 82) 100%);
}
@media (max-width: 1024px) {
  .hero.is-case {
    height: auto !important;
  }
}
.hero.is-case .wrapper {
  padding-top: 266px !important;
}
@media (max-width: 1024px) {
  .hero.is-case .wrapper {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
  }
}
.hero.hastwocols {
  height: auto;
  min-height: 750px;
}
@media (max-width: 1024px) {
  .hero.hastwocols {
    min-height: inherit;
  }
}
.hero.hastwocols .hastwocols-wrapper {
  padding-top: 0 !important;
}
@media (max-width: 1024px) {
  .hero.hastwocols .hastwocols-wrapper {
    padding-top: 120px !important;
  }
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper {
    padding-top: 90px !important;
  }
}
.hero.hastwocols .hastwocols-wrapper .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero.hastwocols .hastwocols-wrapper-content {
  position: relative;
  width: 45%;
}
@media (max-width: 1024px) {
  .hero.hastwocols .hastwocols-wrapper-content {
    width: 100%;
    margin-bottom: 30px;
  }
}
.hero.hastwocols .hastwocols-wrapper-content .wp-block-group__inner-container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .hero.hastwocols .hastwocols-wrapper-content .wp-block-group__inner-container {
    justify-content: center;
    align-items: center;
  }
}
.hero.hastwocols .hastwocols-wrapper-content h1 {
  margin-bottom: 0;
}
.hero.hastwocols .hastwocols-wrapper-form {
  position: relative;
  width: 47%;
  height: 100%;
  padding-top: 126px;
  padding-bottom: 138px;
}
.hero.hastwocols .hastwocols-wrapper-form .wp-block-group__inner-container {
  flex-direction: column;
}
@media (max-width: 1024px) {
  .hero.hastwocols .hastwocols-wrapper-form {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gf_browser_chrome,
.hero.hastwocols .hastwocols-wrapper-form form,
.hero.hastwocols .hastwocols-wrapper-form .gform-body {
  width: 100%;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_heading {
  display: none;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_submission_error {
  display: none;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_confirmation_message {
  color: #fff;
  height: 480px;
}
@media (max-width: 1024px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_confirmation_message {
    height: auto;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px 20px;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .addlabels {
  display: none !important;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields.addlabelstoform label {
  display: flex !important;
  width: 100%;
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields.addlabelstoform label .gfield_required_text {
  font-size: 0;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields.addlabelstoform label .gfield_required_text:after {
  content: "*";
  font-size: 16px;
  color: #fff;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-html {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-bottom: -20px;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-html {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-html h2 {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-html h2 {
    max-width: inherit;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-html h2 {
    text-align: center;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .fullwidth {
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .fullwidth {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-textarea,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent {
  position: relative;
  grid-column-start: 1;
  grid-column-end: 3;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-textarea,
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent {
  border: none;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent legend {
  display: none;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent input {
  position: relative;
  padding: 0;
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 4px;
  cursor: pointer;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent input:before {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 55%;
  transform: rotate(45deg);
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent input:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 6px;
  top: 43%;
  transform: rotate(-50deg);
  animation: 0.45s ease 0s normal forwards 1 fadein;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent input:checked:before {
  width: 5px;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent input:checked:after {
  width: 10px;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield--type-consent .ginput_container_consent label {
  font-size: 14px;
  color: #fff;
  display: block;
  transform: translateY(2.5px);
  margin-left: 5px;
  cursor: pointer;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield.gfield_error .validation_message {
  color: #fff;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield label {
  display: none;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield input,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield textarea,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield select {
  width: 100%;
  background-color: transparent;
  border-radius: 8px;
  border: 1px solid rgba(184, 195, 204, 0.5);
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield input,
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield textarea,
  .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield select {
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield input:hover, .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield input:focus, .hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield input:active,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield textarea:hover,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield textarea:focus,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield textarea:active,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield select:hover,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield select:focus,
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield select:active {
  border-color: #fff;
  color: #fff;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield textarea {
  min-height: 100px;
  height: 100px;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield select {
  height: 100%;
  min-height: 50px;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield ::placeholder {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_fields .gfield .ginput_container_select {
  height: 100%;
}
.hero.hastwocols .hastwocols-wrapper-form .gform_footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_footer {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.hero.hastwocols .hastwocols-wrapper-form .gform_footer input {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(180deg, #FFF 50%, #DAE9FF 100%);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
  color: #006aff;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  min-width: 150px;
}
@media (max-width: 767px) {
  .hero.hastwocols .hastwocols-wrapper-form .gform_footer input {
    width: 100%;
  }
}
.hero.isfr .wp-block-group__inner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .hero.isfr .wp-block-group__inner-container {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .hero.isfr .hastwocols-wrapper {
    padding-top: 80px !important;
    padding-bottom: 100px !important;
  }
}
@media (max-width: 767px) {
  .hero.isfr .hastwocols-wrapper-content {
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .hero.isfr .hastwocols-wrapper-content * {
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .hero.isfr .hastwocols-wrapper-form .meetings-iframe-container, .hero.isfr .hastwocols-wrapper-form .calendly-inline-widget {
    height: 600px !important;
  }
}

.breakcards {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-gap: 20px !important;
}
@media (max-width: 767px) {
  .breakcards {
    grid-template-columns: 1fr !important;
  }
}
.breakcards .wp-block-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: auto;
  padding: 0;
  border-radius: 24px;
  z-index: 1;
}
.breakcards .wp-block-cover img,
.breakcards .wp-block-cover video {
  border-radius: 24px;
}
.breakcards .wp-block-cover:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(0, 106, 255, 0.5);
}
.breakcards .wp-block-cover:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 106, 255, 0) 0%, #006aff 100%);
}
.breakcards .wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 50px;
  border-radius: 24px;
  z-index: 3;
}
@media (max-width: 1024px) {
  .breakcards .wp-block-cover .wp-block-cover__inner-container {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .breakcards .wp-block-cover .wp-block-cover__inner-container {
    padding: 30px 20px;
  }
}
.breakcards .wp-block-cover .wp-block-cover__inner-container h2 {
  line-height: normal;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .breakcards .wp-block-cover .wp-block-cover__inner-container h2 {
    font-size: 24px !important;
  }
}
.breakcards.servicecards h2 {
  margin-bottom: 10px;
}
.breakcards.servicecards p {
  color: #fff;
}
.breakcards.servicecards .btn {
  margin-top: 20px;
}

.team {
  position: relative;
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 767px) {
  .team {
    margin-top: 30px;
  }
}
.team-department {
  position: relative;
  width: 100%;
  margin-bottom: 150px;
}
@media (max-width: 1024px) {
  .team-department {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .team-department {
    margin-bottom: 50px;
  }
}
.team-department h3 {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .team-department h3 {
    font-size: 18px;
    font-weight: bold;
    color: #006aff;
    text-align: center;
  }
}
.team-department-main {
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 22px;
}
@media (max-width: 1024px) {
  .team-department-main {
    grid-gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .team-department-main {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-top: 10px;
  }
}
.team-department-main-i {
  position: relative;
}
.team-department-main-i img {
  background-color: #F7F8FB;
  border-radius: 24px;
  height: 385px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .team-department-main-i img {
    height: auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .team-department-main-i img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }
}
.team-department-main-i h4 {
  text-transform: uppercase;
  line-height: 1.7;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .team-department-main-i h4 {
    font-size: 16px;
  }
}
.team-department-main-i p {
  font-size: 18px;
  color: #667480;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .team-department-main-i p {
    font-size: 14px;
  }
}
.team-department-main-i h4,
.team-department-main-i p {
  padding: 0 30px;
}
@media (max-width: 1024px) {
  .team-department-main-i h4,
  .team-department-main-i p {
    padding: 0 20px;
  }
}

.latestarticles {
  position: relative;
}
@media (max-width: 767px) {
  .latestarticles h6 {
    text-align: center;
  }
}
.latestarticles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .latestarticles-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .latestarticles-header h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
.latestarticles-header a {
  font-weight: normal;
}
.latestarticles-main {
  position: relative;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .latestarticles-main {
    margin-top: 30px;
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
}

.articlecard {
  position: relative;
  box-sizing: border-box;
  min-width: 100%;
}
.articlecard-category {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.articlecard-category a {
  font-size: 14px;
  font-weight: normal;
  color: #667480;
  border-radius: 60px;
  border: 1px solid #EEF0F6;
  background: #fff;
  padding: 6px 12px;
}
@media (max-width: 767px) {
  .articlecard-category a {
    padding: 4px 8px;
    font-size: 13px;
  }
}
.articlecard-category a:hover {
  color: #006aff;
  border-color: #006aff;
}
.articlecard-featured {
  position: relative;
  display: flex;
  width: 100%;
  height: 287px;
  overflow: hidden;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .articlecard-featured {
    height: auto;
  }
}
.articlecard-featured img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
  transition: 8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.articlecard-featured:hover img {
  transform: scale(1.5, 1.5);
}
.articlecard-content {
  position: relative;
  width: 100%;
  padding: 30px 30px 0 30px;
  height: calc(100% - 287px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .articlecard-content {
    padding: 20px 10px 0 10px;
    height: auto !important;
  }
}
.articlecard-content-title {
  font-weight: bold;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.articlecard-content-title:hover {
  color: #006aff;
}
.articlecard-content-tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.articlecard-content-tags a {
  font-size: 12px;
  font-weight: normal;
  color: #006aff;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.articlecard-content-tags a:before {
  content: "#";
  color: #006aff;
}
.articlecard-content-tags a:hover {
  color: #667480;
}
.articlecard-content-tags a:hover:before {
  color: #667480;
}
.articlecard-content .f16 {
  line-height: 1.6;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}
.articlecard-content .f16:empty {
  display: none;
}
.articlecard-content .f16 p:empty {
  display: none;
}
.articlecard-content .f16 #urban-overlay {
  display: none;
}
.articlecard-content-cta {
  display: flex;
  width: 100%;
  margin-top: auto;
}
@media (max-width: 767px) {
  .articlecard-content-cta {
    margin-top: 0;
  }
}
.articlecard-content-cta svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  min-width: 24px;
  min-height: 24px;
}
.articlecard-content-cta svg * {
  fill: #006aff;
}
.articlecard-content-cta:hover svg {
  transform: translateX(5px) scale(1.5, 1.5);
}

.faq {
  position: relative;
}
.faq.contrast {
  background-color: #F7F8FB;
}
.faq.contrast .faq-main-i {
  background-color: #fff;
}
.faq .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .faq h2 {
    text-align: center;
  }
}
.faq-main {
  position: relative;
  width: 100%;
  max-width: 996px;
  margin: 64px auto 0 auto;
}
@media (max-width: 1024px) {
  .faq-main {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .faq-main {
    margin-top: 30px;
  }
}
.faq-main-i {
  position: relative;
  background-color: #F7F8FB;
  border-radius: 24px;
}
.faq-main-i:not(:first-of-type) {
  margin-top: 20px;
}
.faq-main-i-header {
  position: relative;
  padding: 21px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: pointer;
  z-index: 1;
}
.faq-main-i-header .ui-accordion-header-icon {
  display: none;
}
.faq-main-i-header:before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 106, 255, 0.1);
  border-radius: 24px;
  opacity: 0;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
  .faq-main-i-header:before {
    display: none;
    content: none;
  }
}
.faq-main-i-header:hover button svg {
  transform: rotate(180deg);
}
.faq-main-i-header:hover:before {
  width: 100%;
  opacity: 1;
}
.faq-main-i-header.ui-accordion-header-active:before {
  opacity: 0 !important;
}
.faq-main-i-header.ui-accordion-header-active button svg {
  transform: rotate(180deg);
}
.faq-main-i-content {
  position: relative;
  padding: 0 30px 21px 30px;
}
.faq-main-i-content p {
  color: #667480;
  line-height: 1.5;
  width: 100%;
  max-width: 865px;
}
.faq-cta {
  position: relative;
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq-cta h3 {
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
.faq-cta .btn {
  width: -moz-fit-content;
  width: fit-content;
}

.multiptable {
  position: relative;
}
.multiptable.tableheadersmaller .multiptable-header-i {
  padding: 16px 20px;
}
@media (max-width: 1024px) {
  .multiptable {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.multiptable-header {
  position: relative;
  display: grid;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border: 1px solid #EEF0F6;
}
@media (max-width: 1024px) {
  .multiptable-header {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.multiptable-header-i {
  position: relative;
  background-color: #F7F8FB;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 1249px) {
  .multiptable-header-i {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .multiptable-header-i {
    min-width: 200px;
    width: 100%;
  }
}
.multiptable-header-i:not(:last-of-type) {
  border-right: 1px solid #EEF0F6;
}
.multiptable-header-i:first-of-type {
  border-top-left-radius: 24px;
}
.multiptable-header-i:last-of-type {
  border-top-right-radius: 24px;
}
.multiptable-header-i.pckgs {
  align-items: center;
  justify-content: flex-start;
}
.multiptable-header-i.pckgs span {
  text-align: center;
}
.multiptable-header-i.pckgs h4 {
  text-align: center;
}
.multiptable-header-i.pckgs .tabledesc {
  margin-top: 10px;
  color: #667480;
  line-height: 1.6;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .multiptable-header-i.pckgs .tabledesc {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.2;
  }
}
.multiptable-content {
  position: relative;
  border-bottom: 1px solid #F7F8FB;
  border-left: 1px solid #F7F8FB;
  border-right: 1px solid #F7F8FB;
}
@media (max-width: 1024px) {
  .multiptable-content {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.multiptable-content-category {
  position: relative;
  width: 100%;
  background-color: #F7F8FB;
  padding: 15px 30px;
}
@media (max-width: 1249px) {
  .multiptable-content-category {
    padding: 15px 20px;
  }
}
.multiptable-content-category h5 {
  color: #667480;
  font-weight: 300;
}
.multiptable-content-i {
  position: relative;
  display: grid;
}
@media (max-width: 1024px) {
  .multiptable-content-i {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.multiptable-content-i:not(:last-of-type) {
  border-bottom: 1px solid #F7F8FB;
}
.multiptable-content-i-feature {
  position: relative;
  padding: 19px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #F7F8FB;
}
@media (max-width: 1249px) {
  .multiptable-content-i-feature {
    padding: 15px 20px;
  }
}
@media (max-width: 1024px) {
  .multiptable-content-i-feature {
    min-width: 200px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .multiptable-content-i-feature h4 {
    font-size: 14px;
  }
}
.multiptable-content-i-feature-content {
  margin-top: 5px;
}
.multiptable-content-i-feature-content * {
  font-size: 14px;
  color: #667480;
}
@media (max-width: 1024px) {
  .multiptable-content-i-feature-content * {
    font-size: 12px;
  }
}
.multiptable-content-i-feature-content *:empty {
  display: none;
}
.multiptable-content-i-feature-content li {
  position: relative;
  padding-left: 24px;
  color: #001533;
}
.multiptable-content-i-feature-content li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #001533;
  position: absolute;
  left: 10px;
  top: 6px;
}
.multiptable-content-i-feature-content li:not(:last-of-type) {
  margin-bottom: 3px;
}
.multiptable-content-i-package {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .multiptable-content-i-package {
    min-width: 200px;
    width: 100%;
  }
}
.multiptable-content-i-package:not(:last-of-type) {
  border-right: 1px solid #F7F8FB;
}
.multiptable-footer {
  position: relative;
  display: grid;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .multiptable-footer {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.multiptable-footer-i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
@media (max-width: 1024px) {
  .multiptable-footer-i {
    min-width: 200px;
    width: 100%;
  }
}
.multiptable-footer-i .btn {
  width: 100%;
}
@media (max-width: 1024px) {
  .multiptable-footer-i .btn {
    height: 100%;
  }
}
.multiptable-footer-i .btn a {
  width: 100%;
}
@media (max-width: 1249px) {
  .multiptable-footer-i .btn a {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .multiptable-footer-i .btn a {
    height: 100%;
  }
}

.simpletable {
  position: relative;
  width: 100%;
  border: 1px solid #EEF0F6;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
@media (max-width: 1024px) {
  .simpletable {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.simpletable-header {
  position: relative;
  display: grid;
  width: 100%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 1px solid #EEF0F6;
}
@media (max-width: 1024px) {
  .simpletable-header {
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 1200px;
  }
}
.simpletable-header-i {
  position: relative;
  padding: 8px 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 50px;
}
@media (max-width: 1024px) {
  .simpletable-header-i {
    min-width: 200px;
    width: 100%;
  }
}
.simpletable-header-i:first-of-type {
  border-top-left-radius: 24px;
}
.simpletable-header-i:last-of-type {
  border-top-right-radius: 24px;
}
.simpletable-header-i:not(:last-of-type) {
  border-right: 1px solid #EEF0F6;
}
.simpletable-content {
  position: relative;
}
@media (max-width: 1024px) {
  .simpletable-content {
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 1200px;
  }
}
.simpletable-content-item {
  position: relative;
  display: grid;
}
.simpletable-content-item:not(:last-of-type) {
  border-bottom: 1px solid #EEF0F6;
}
.simpletable-content-item-sub {
  position: relative;
  padding: 8px 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 50px;
}
.simpletable-content-item-sub h4 {
  width: 100%;
  text-align: left;
  max-width: 120px;
}
.simpletable-content-item-sub:not(:last-of-type) {
  border-right: 1px solid #EEF0F6;
}

.companies-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.companies-slider.specialtitle h2 {
  font-weight: normal !important;
  font-size: 20px !important;
}
@media (max-width: 1024px) {
  .companies-slider.specialtitle h2 {
    font-size: 18px !important;
  }
}
@media (max-width: 767px) {
  .companies-slider.specialtitle h2 {
    font-size: 14px !important;
  }
}
.companies-slider.lesspacing .companies-slider-main {
  margin-top: 75px !important;
}
@media (max-width: 767px) {
  .companies-slider.lesspacing .companies-slider-main {
    margin-top: 35px !important;
  }
}
.companies-slider:before {
  content: "";
  width: 160px;
  height: 160px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
@media (max-width: 1249px) {
  .companies-slider:before {
    width: 100px;
    height: 60px;
    bottom: -10px;
  }
}
.companies-slider:after {
  content: "";
  width: 160px;
  height: 160px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: 0;
  display: none;
}
@media (max-width: 1249px) {
  .companies-slider:after {
    width: 160px;
    height: 60px;
    bottom: -10px;
  }
}
.companies-slider .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.companies-slider h2 {
  text-align: center !important;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto !important;
}
.companies-slider-main {
  position: relative;
  margin-top: 75px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .companies-slider-main {
    margin-top: 30px !important;
  }
}
.companies-slider-main img {
  width: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media (max-width: 1249px) {
  .companies-slider-main img {
    height: 35px;
  }
}
@media (max-width: 1024px) {
  .companies-slider-main img {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .companies-slider-main img {
    height: 24px;
  }
}
.companies-slider-main .swiper-slide {
  position: relative;
  height: auto;
  max-height: 150px !important;
}
@media (max-width: 1249px) {
  .companies-slider-main .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.companies-slider-main .swiper-slide img {
  width: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media (max-width: 1249px) {
  .companies-slider-main .swiper-slide img {
    height: 35px;
  }
}
@media (max-width: 1024px) {
  .companies-slider-main .swiper-slide img {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .companies-slider-main .swiper-slide img {
    height: 24px;
  }
}
.companies-slider.noanimation .companies-slider-main {
  transform: none !important;
  transition-duration: none !important;
  overflow: hidden;
  width: 100%;
}
.companies-slider.noanimation .companies-slider-main .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .companies-slider.noanimation .companies-slider-main .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid: 20px 10px;
  }
}

.fivestarslider {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #EEF0F6;
  overflow: hidden;
}
.fivestarslider-i {
  position: relative;
  height: auto;
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #EEF0F6;
}
.fivestarslider-i img {
  width: auto;
  height: 224px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .fivestarslider-i img {
    height: 140px;
  }
}

.mapspart {
  position: relative;
  padding-bottom: 0;
  background-color: #fff;
}
.mapspart-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mapspart-header h2 {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mapspart-header-switch {
  position: relative;
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 60px;
  border: 1px solid #EEF0F6;
  background: #F7F8FB;
  padding: 4px;
}
.mapspart-header-switch-bg {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 120px;
  height: 50px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.45s ease all;
}
.mapspart-header-switch-i {
  position: relative;
  width: 120px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.mapspart-header-switch-i button {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.mapspart-mainmap {
  position: relative;
  width: 100%;
  height: 800px;
  display: none;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .mapspart-mainmap {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .mapspart-mainmap {
    height: 400px;
  }
}
.mapspart-mainmap.active {
  display: block;
}

.gform_wrapper .gform_submission_error {
  display: none;
}
.gform_wrapper .gfield.gfield_error .validation_message {
  font-size: 12px;
  color: #001533;
  opacity: 0.5;
  margin-top: 5px;
}
.gform_wrapper .gfield.gfield_error input {
  border-color: rgba(255, 0, 0, 0.4) !important;
}
.gform_wrapper .gform_confirmation_message {
  text-align: center;
}

.gfield--type-honeypot {
  display: none !important;
}

.gform_hidden {
  display: none !important;
}

input[type=radio] {
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}
input[type=radio]:checked {
  background-color: #006aff;
}

.cover-geneva {
  padding-top: 100px;
  padding-bottom: 150px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .cover-geneva {
    padding-top: 148px;
    padding-bottom: 214px;
  }
}
.cover-geneva .inner {
  max-width: 712px;
}
.cover-geneva .heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.cover-geneva h1 {
  color: var(--c-white);
}
.cover-geneva .industry-leading-title {
  margin-bottom: 30px;
  margin-top: 40px;
  color: var(--c-white);
  font-weight: 700;
}
.cover-geneva .industry-leading {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  row-gap: 30px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .cover-geneva .industry-leading {
    gap: 45px;
  }
}
.cover-geneva .industry-leading .logo {
  flex: 0 0 100%;
  max-width: calc(33.333% - 17px);
}
@media screen and (min-width: 768px) {
  .cover-geneva .industry-leading .logo {
    max-width: calc(25% - 19px);
  }
}
@media screen and (min-width: 1024px) {
  .cover-geneva .industry-leading .logo {
    max-width: calc(25% - 34px);
  }
}
.cover-geneva .btn {
  margin-top: 55px;
}

.text-section {
  padding-top: 0;
}
.text-section .grid {
  -moz-column-gap: 54px;
       column-gap: 54px;
}
.text-section h2 {
  margin-bottom: 34px;
}
.text-section h3 {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.text-section p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
  font-weight: 500;
}
.text-section p:last-child {
  margin-bottom: 0;
}

.topthreecases {
  position: relative;
}
.topthreecases h2 {
  text-align: center;
}
.topthreecases-main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 100px 32px;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .topthreecases-main {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    margin-top: 40px;
    margin-bottom: 0;
  }
}
.topthreecases-main .case-card {
  top: 0 !important;
}
@media (max-width: 1149px) {
  .topthreecases-main .case-card-featured {
    height: 260px;
  }
}
@media (max-width: 899px) {
  .topthreecases-main .case-card-featured {
    height: 240px;
  }
}
@media (max-width: 767px) {
  .topthreecases-main .case-card-featured {
    height: auto;
  }
}
.topthreecases-main .case-card:nth-child(3n+2) {
  top: 100px !important;
}
@media (max-width: 1149px) {
  .topthreecases-main .case-card:nth-child(3n+2) {
    top: 0 !important;
  }
}

.pagination {
  position: relative;
  width: 100%;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #F7F8FB;
  padding: 10px;
  border-radius: 60px;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 60px;
  }
}
@media (max-width: 299px) {
  .pagination {
    flex-direction: column;
    border-radius: 30px;
  }
}
.pagination .page-numbers {
  color: #001533;
  font-size: 16px;
}
@media (max-width: 767px) {
  .pagination .page-numbers {
    display: none;
  }
}
.pagination .page-numbers:first-child {
  margin-left: auto;
}
.pagination .page-numbers:last-child {
  margin-right: auto;
}
.pagination .page-numbers.current {
  padding: 4px;
  background-color: #006aff;
  color: #fff;
  border-radius: 3px;
}
.pagination .page-numbers:hover {
  color: #006aff;
}
.pagination .prev {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #006aff;
  padding: 15px 20px;
  border-radius: 60px;
  color: #fff;
  margin-right: auto;
  margin-left: 0 !important;
  text-transform: capitalize;
  font-weight: bold;
}
@media (max-width: 767px) {
  .pagination .prev {
    width: 48%;
    justify-content: center;
  }
}
@media (max-width: 299px) {
  .pagination .prev {
    width: 100%;
  }
}
.pagination .prev svg {
  margin-right: 10px;
  transform: rotate(180deg);
}
.pagination .prev svg * {
  fill: #fff;
}
.pagination .prev:hover {
  transform: translateX(-5px);
  color: #fff;
}
.pagination .prev:hover svg {
  transform: rotate(180deg) translateX(5px);
}
.pagination .next {
  position: relative;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #006aff;
  padding: 15px 20px;
  border-radius: 60px;
  color: #fff;
  margin-left: auto;
  text-transform: capitalize;
  font-weight: bold;
  margin-right: 0 !important;
}
@media (max-width: 767px) {
  .pagination .next {
    width: 48%;
    justify-content: center;
  }
}
@media (max-width: 299px) {
  .pagination .next {
    width: 100%;
  }
}
.pagination .next svg {
  margin-left: 10px;
}
.pagination .next:hover {
  transform: translateX(5px);
  color: #fff;
}
.pagination .next:hover svg {
  transform: translateX(5px);
}

.statictimeline {
  position: relative;
}
.statictimeline-main {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .statictimeline-main {
    flex-direction: column-reverse;
  }
}
.statictimeline-main-con {
  position: sticky;
  top: 100px;
  width: 60%;
}
@media (max-width: 767px) {
  .statictimeline-main-con {
    position: relative;
    top: 0;
    width: 100%;
    margin-bottom: 50px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .statictimeline-main-con * {
    align-items: center;
    text-align: center;
  }
}
.statictimeline-main-img {
  width: 31.5%;
}
@media (max-width: 767px) {
  .statictimeline-main-img {
    width: 100%;
  }
}
.statictimeline-main-img img,
.statictimeline-main-img svg {
  width: 100%;
  height: auto;
}

.simplehero {
  position: relative;
  min-height: inherit;
  padding: 0;
}
@media (max-width: 767px) {
  .simplehero {
    margin-bottom: 50px;
  }
}
.simplehero .wp-block-cover__inner-container {
  padding: 200px 20px 150px 20px;
}
@media (max-width: 1449px) {
  .simplehero .wp-block-cover__inner-container {
    padding: 150px 20px 100px 20px;
  }
}
@media (max-width: 1024px) {
  .simplehero .wp-block-cover__inner-container {
    padding: 130px 20px 70px 20px;
  }
}

.homepage {
  position: relative;
}
.homepage-hero {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.homepage-hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.35);
}
.homepage-hero video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
}
.homepage-hero .wp-block-group__inner-container .wp-block-cover__inner-container,
.homepage-hero .wp-block-group__inner-container {
  position: relative;
  width: 100% !important;
  height: auto !important;
}
.homepage-hero .wp-block-cover {
  padding: 0 !important;
  min-height: auto !important;
}
.homepage-hero-content {
  position: relative;
}
.homepage-hero-content .wp-block-group__inner-container {
  padding-top: 200px;
  padding-bottom: 200px;
  min-height: 100vh !important;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .homepage-hero-content .wp-block-group__inner-container {
    align-items: center;
  }
}
@media (max-width: 767px) {
  .homepage-hero-content .wp-block-group__inner-container {
    padding-top: 150px;
  }
}
.homepage-hero-content h1 {
  width: 100%;
  max-width: 700px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .homepage-hero-content h1 {
    text-align: center;
    margin-bottom: 40px;
  }
}
.homepage-hero-content p {
  width: 100%;
  max-width: 508px;
}
@media (max-width: 1024px) {
  .homepage-hero-content p {
    text-align: center;
  }
}
.homepage-hero-content .wp-block-buttons-is-layout-flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 38px;
}
@media (max-width: 767px) {
  .homepage-hero-content .wp-block-buttons-is-layout-flex {
    flex-direction: column;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
  }
}
.homepage-hero-content .wp-block-buttons-is-layout-flex .wp-block-button {
  position: relative;
}
.homepage-hero-content .wp-block-buttons-is-layout-flex .wp-block-button:not(:last-of-type) {
  margin-right: 20px !important;
}
@media (max-width: 767px) {
  .homepage-hero-content .wp-block-buttons-is-layout-flex .wp-block-button:not(:last-of-type) {
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 767px) {
  .homepage-hero-content .wp-block-buttons-is-layout-flex .btn {
    width: 100%;
  }
  .homepage-hero-content .wp-block-buttons-is-layout-flex .btn a {
    width: 100%;
  }
}
.homepage-hero-content .wp-block-buttons-is-layout-flex .btn-simple a {
  background-color: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  display: flex;
}
.homepage-about {
  position: relative;
  padding-top: 100px;
  margin-bottom: 150px;
}
@media (max-width: 767px) {
  .homepage-about {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.homepage-about .title_desc {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .homepage-about .title_desc {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .homepage-about .title_desc {
    padding-bottom: 60px;
  }
}
.homepage-goals {
  position: relative;
}
@media (max-width: 767px) {
  .homepage-goals {
    overflow-x: hidden;
  }
}
.homepage-goals-main {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px !important;
  margin-top: 75px;
}
@media (max-width: 1024px) {
  .homepage-goals-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .homepage-goals-main {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .homepage .casestudies-main {
    margin-bottom: 0px;
  }
}
.homepage-description {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 767px) {
  .homepage-description {
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.homepage-description-content {
  position: relative;
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .homepage-description-content {
    width: 100%;
    order: 1;
  }
}
.homepage-description-content:first-child .wp-block-group__inner-container {
  margin-left: auto;
  padding-left: 20px;
}
.homepage-description-content:last-child .wp-block-group__inner-container {
  margin-right: auto;
  padding-right: 20px;
}
.homepage-description-content .wp-block-group__inner-container {
  width: 100%;
  max-width: 620px;
}
@media (max-width: 767px) {
  .homepage-description-content .wp-block-group__inner-container {
    max-width: inherit;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.homepage-description-content h6 {
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .homepage-description-content h6 {
    text-align: center;
  }
}
.homepage-description-content h2 {
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .homepage-description-content h2 {
    margin-bottom: 15px;
    text-align: center;
  }
}
.homepage-description-content p {
  line-height: 1.6;
}
@media (max-width: 767px) {
  .homepage-description-content p {
    text-align: center;
  }
}
.homepage-description-content p:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .homepage-description-content p:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .homepage-description-content .wp-block-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .homepage-description-content .wp-block-buttons .wp-block-button {
    width: 100%;
    justify-content: center;
  }
}
.homepage-description-content .wp-block-buttons .wp-block-button:not(:last-child) {
  margin-right: 20px !important;
}
.homepage-description-art {
  position: relative;
  display: flex;
  width: calc(50% - 120px);
  height: auto;
  min-height: auto;
  max-height: 880px;
}
@media (max-width: 1249px) {
  .homepage-description-art {
    width: calc(50% - 80px);
  }
}
@media (max-width: 1024px) {
  .homepage-description-art {
    width: calc(50% - 40px);
    min-height: auto;
    height: auto;
  }
}
@media (max-width: 767px) {
  .homepage-description-art {
    width: 100%;
    order: -1;
  }
}
.homepage-description-art .wp-block-group__inner-container {
  width: 100%;
  height: auto;
}
.homepage-description-art:first-child img,
.homepage-description-art:first-child figure {
  border-bottom-right-radius: 24px;
  border-top-right-radius: 24px;
}
@media (max-width: 767px) {
  .homepage-description-art:first-child img,
  .homepage-description-art:first-child figure {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
.homepage-description-art:last-child img,
.homepage-description-art:last-child figure {
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
}
@media (max-width: 767px) {
  .homepage-description-art:last-child img,
  .homepage-description-art:last-child figure {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
.homepage-description-art img,
.homepage-description-art figure {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.homepage-founder {
  position: relative;
}
.homepage-founder-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 75px;
}
@media (max-width: 1024px) {
  .homepage-founder-main {
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .homepage-founder-main {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
}
.homepage-founder-main-img {
  position: relative;
  width: 35%;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .homepage-founder-main-img {
    height: auto;
  }
}
@media (max-width: 1024px) {
  .homepage-founder-main-img * {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .homepage-founder-main-img * {
    height: auto;
  }
}
@media (max-width: 767px) {
  .homepage-founder-main-img {
    height: auto;
    width: 100%;
  }
}
.homepage-founder-main-img img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .homepage-founder-main-img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
@media (max-width: 767px) {
  .homepage-founder-main-img img {
    height: auto;
  }
}
.homepage-founder-main-con {
  position: relative;
  width: 60%;
}
@media (max-width: 1024px) {
  .homepage-founder-main-con {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .homepage-founder-main-con {
    height: auto;
    width: 100%;
    margin-bottom: 30px !important;
  }
}
.homepage-founder-main-con p {
  font-weight: 500;
}
@media (max-width: 767px) {
  .homepage-founder-main-con p {
    text-align: center;
  }
}
.homepage-founder-main-con p:not(:last-of-type) {
  margin-bottom: 20px;
}
.homepage-whyus {
  position: relative;
  background-color: #001533;
}
@media (max-width: 767px) {
  .homepage-whyus .homepage-goals-main {
    margin-top: 50px;
  }
}
.homepage-whyus h2,
.homepage-whyus p,
.homepage-whyus li,
.homepage-whyus h3 {
  color: #fff;
}
.homepage-whyus p {
  font-weight: 500;
  max-width: 760px;
}
.homepage-whyus li:before {
  background-color: #fff !important;
}
.homepage-whyus .cardblock {
  border-color: #fff !important;
}
.homepage-whyus .flatdesign {
  align-items: stretch;
  height: 100%;
  justify-content: space-between;
}
.homepage-whyus .flatdesign-top h3 {
  min-height: 64px;
}
@media (max-width: 767px) {
  .homepage-whyus .flatdesign-top h3 {
    min-height: 52px;
  }
}
.homepage-whyus .flatdesign-bottom {
  justify-content: flex-start;
}
.homepage-whyus .flatdesign:before {
  content: "";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  top: -23px;
  right: 0;
  left: 0;
  margin: auto;
  position: absolute;
  border: transparent 1em solid;
  border-bottom-color: #fd3;
  border-bottom-width: 1.4em;
  border-top-width: 0;
}
.homepage-whyus .flatdesign:after {
  content: "!";
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -20px;
  right: 0;
  margin: auto;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
.homepage-meeting {
  position: relative;
}
.homepage-meeting-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap !important;
}
.homepage-meeting-main h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
@media (max-width: 767px) {
  .homepage-meeting-main h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .homepage-meeting-main {
    flex-direction: column;
    justify-content: center;
  }
}
.homepage-meeting-main-content {
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .homepage-meeting-main-content {
    width: 100%;
  }
}
.homepage-meeting-main-content .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .homepage-meeting-main-content .wp-block-group__inner-container {
    justify-content: center;
    align-items: center;
  }
}
.homepage-meeting-main-content h6 {
  margin-bottom: -10px;
}
.homepage-meeting-main-content h3,
.homepage-meeting-main-content p {
  color: #fff;
}
@media (max-width: 767px) {
  .homepage-meeting-main-content h3,
  .homepage-meeting-main-content p {
    text-align: center;
  }
}
.homepage-meeting-main-content p {
  font-size: 16px;
}
.homepage-meeting-main-content figure {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .homepage-meeting-main-content figure {
    width: 100px;
    height: 100px;
  }
}
.homepage-meeting-main-content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.homepage-meeting-main-form {
  position: relative;
  width: 45%;
}
@media (max-width: 767px) {
  .homepage-meeting-main-form {
    width: 100%;
  }
}
.homepage .fivestarslider {
  border-top: 1px solid #EEF0F6;
}
.homepage .testimonials h2 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .about .service-description {
    flex-direction: column-reverse;
  }
}
.about .service-description-content p {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .about .service-description-content p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .about .service-description-content p {
    font-size: 14px;
  }
}
.about-rely {
  position: relative;
}
@media (max-width: 1024px) {
  .about-rely .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.about-rely ul {
  position: relative;
}
@media (max-width: 1024px) {
  .about-rely ul {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .about-rely ul {
    margin-top: 30px;
  }
}
.about-rely ul li {
  position: relative;
  background-image: url("../svg/check.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 0% 0%;
  padding-left: 34px;
  line-height: 1.6;
  font-size: 18px;
}
@media (max-width: 767px) {
  .about-rely ul li {
    font-size: 16px;
  }
}
.about-rely ul li:not(:last-child) {
  margin-bottom: 20px;
}
.about-rely ul li a {
  color: #006aff;
}
.about-rely ul li a:hover {
  color: #001533;
}
.about-process {
  position: relative;
}
.about-process .intro_title_desc {
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1149px) {
  .about-process .intro_title_desc {
    align-items: center;
    justify-content: center;
  }
}
.about-process h6,
.about-process h2 {
  text-align: left;
  margin-left: 0;
}
@media (max-width: 1149px) {
  .about-process h6,
  .about-process h2 {
    text-align: center;
    margin-left: auto;
  }
}
.about-process h2 {
  margin-bottom: 0;
}
.about-process .swiper-pagination {
  display: none !important;
}
@media (max-width: 767px) {
  .about-process .swiper-pagination {
    display: block !important;
  }
}
.about-values {
  position: relative;
}
@media (max-width: 1149px) {
  .about-values-header .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1149px) {
  .about-values-header .wp-block-group__inner-container h2,
  .about-values-header .wp-block-group__inner-container h6 {
    text-align: center;
  }
}
.about-values-main {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .about-values-main {
    margin-top: 30px;
  }
}
.about-values-main .wp-block-group__inner-container {
  grid-gap: 25px 20px;
}
@media (max-width: 767px) {
  .about-values-main .wp-block-group__inner-container {
    grid-template-columns: 1fr !important;
    grid-gap: 20px;
  }
}
.about-values-main .wp-block-group__inner-container .wp-block-group {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #006aff;
  padding: 30px;
  border-radius: 24px;
}
.about-values-main .wp-block-group__inner-container .wp-block-group h3 {
  color: #fff;
  margin-bottom: 10px;
}
.about-values-main .wp-block-group__inner-container .wp-block-group p {
  color: #fff;
  line-height: 1.6;
}
.about-team {
  position: relative;
}
@media (max-width: 1149px) {
  .about-team .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1149px) {
  .about-team .wp-block-group__inner-container h2,
  .about-team .wp-block-group__inner-container h6,
  .about-team .wp-block-group__inner-container p.f20 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about .homepage-founder-main {
    margin-top: 0;
  }
}

.service-description {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 1024px) {
  .service-description {
    align-items: stretch;
  }
}
@media (max-width: 767px) {
  .service-description {
    flex-direction: column;
    gap: 50px;
    padding-top: 0;
  }
}
.service-description-content {
  position: relative;
  width: 50%;
  height: 100%;
}
@media (max-width: 767px) {
  .service-description-content {
    width: 100%;
    order: 1;
  }
}
.service-description-content:first-child .wp-block-group__inner-container {
  margin-left: auto;
  padding-left: 20px;
}
.service-description-content:last-child .wp-block-group__inner-container {
  margin-right: auto;
  padding-right: 20px;
}
.service-description-content .wp-block-group__inner-container {
  width: 100%;
  max-width: 620px;
}
@media (max-width: 767px) {
  .service-description-content .wp-block-group__inner-container {
    max-width: inherit;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.service-description-content h2 {
  line-height: normal;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service-description-content h2 {
    margin-bottom: 15px;
    text-align: center;
  }
}
.service-description-content p {
  line-height: 1.6;
}
@media (max-width: 767px) {
  .service-description-content p {
    text-align: center;
  }
}
.service-description-content p:not(:last-of-type) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service-description-content p:not(:last-of-type) {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .service-description-content .smallctacontact {
    margin-top: 30px;
  }
}
.service-description-art {
  position: relative;
  display: flex;
  width: calc(50% - 120px);
  height: auto;
  min-height: 500px;
}
@media (max-width: 1249px) {
  .service-description-art {
    width: calc(50% - 80px);
  }
}
@media (max-width: 1024px) {
  .service-description-art {
    width: calc(50% - 40px);
    min-height: auto;
    height: auto;
  }
}
@media (max-width: 767px) {
  .service-description-art {
    width: 100%;
    order: -1;
  }
}
.service-description-art .wp-block-group__inner-container {
  width: 100%;
  height: auto;
}
.service-description-art:first-child img,
.service-description-art:first-child figure {
  border-bottom-right-radius: 24px;
  border-top-right-radius: 24px;
}
@media (max-width: 767px) {
  .service-description-art:first-child img,
  .service-description-art:first-child figure {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
.service-description-art:last-child img,
.service-description-art:last-child figure {
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
}
@media (max-width: 767px) {
  .service-description-art:last-child img,
  .service-description-art:last-child figure {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
.service-description-art img,
.service-description-art figure {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-solutions {
  position: relative;
  background-color: #F7F8FB;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .service-solutions .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .service-solutions .wp-block-group__inner-container h6,
  .service-solutions .wp-block-group__inner-container h2 {
    text-align: center;
  }
}
.service-solutions-main {
  position: relative;
  margin-top: 50px;
  display: grid !important;
  gap: 0 !important;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px !important;
}
@media (max-width: 1024px) {
  .service-solutions-main {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .service-solutions-main {
    transform: none !important;
  }
}
.service-table {
  position: relative;
}
.service-table .multiptable {
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .service-table .multiptable {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .service-table .multiptable {
    margin-top: 30px;
  }
}
.service-team .btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .service-team .btn {
    margin-top: 20px;
  }
}
@media (max-width: 1149px) {
  .service-team .title_desc .wp-block-buttons {
    max-width: inherit;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.service-team .team-department h3 {
  color: #667480;
}
.service-plans {
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .service-plans .mobileCardsSlider {
    margin-bottom: 50px;
  }
}
.service-plans-main {
  position: relative;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-gap: 20px !important;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .service-plans-main {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.service-plans-main .cardblock h6 {
  margin-top: 60px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .service-plans-main .cardblock h6 {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .service-plans-main .cardblock h6 {
    margin-top: 0;
  }
}
.service-plans-main .cardblock h3 {
  margin-top: 5px;
}
.service-plans-main .cardblock a {
  margin-top: 20px;
}
.service-plans-tableheader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-plans-tableheader .f14 {
  color: #667480;
  text-transform: uppercase;
  text-align: center;
  font-weight: normal;
  margin-bottom: 10px;
}
.service-plans-tableheader .f20 {
  text-transform: uppercase;
  text-align: center;
}
.service-plans .multiptable {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .service-plans .multiptable {
    margin-top: 30px;
  }
}
.service-plans .multiptable.fullfields {
  position: relative;
}
.service-plans .multiptable.fullfields .multiptable-header .pckgs {
  padding: 10px 20px;
  justify-content: center;
}
.service-plans .multiptable.fullfields .multiptable-content-i-feature p {
  color: #001533;
}
.service-plans .multiptable.fullfields .multiptable-header-i.title,
.service-plans .multiptable.fullfields .multiptable-content-i-feature,
.service-plans .multiptable.fullfields .multiptable-footer-i.dummy {
  width: 400px;
  background-color: #fff;
}
@media (max-width: 1249px) {
  .service-plans .multiptable.fullfields .multiptable-header-i.title,
  .service-plans .multiptable.fullfields .multiptable-content-i-feature,
  .service-plans .multiptable.fullfields .multiptable-footer-i.dummy {
    width: 330px;
  }
}
@media (max-width: 1024px) {
  .service-plans .multiptable.fullfields .multiptable-header-i.title,
  .service-plans .multiptable.fullfields .multiptable-content-i-feature,
  .service-plans .multiptable.fullfields .multiptable-footer-i.dummy {
    width: 250px;
  }
}
@media (max-width: 767px) {
  .service-plans .multiptable.fullfields .multiptable-header-i.title,
  .service-plans .multiptable.fullfields .multiptable-content-i-feature,
  .service-plans .multiptable.fullfields .multiptable-footer-i.dummy {
    width: 100%;
  }
}
.service-list {
  position: relative;
  margin-top: 90px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1024px) {
  .service-list {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .service-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
.service-list li {
  position: relative;
  padding-left: 30px;
  background-image: url("../svg/check.svg");
  background-repeat: no-repeat;
  background-position: 0% 2px;
  background-size: 17px;
}

.solution {
  position: relative;
}
.solution-ptypes {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}
.solution-ptypes-main {
  position: relative;
  margin-top: 50px;
  display: grid !important;
  gap: 0 !important;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px !important;
}
@media (max-width: 1024px) {
  .solution-ptypes-main {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .solution-ptypes-main .solutioncard {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.solution-features {
  position: relative;
  background-color: #F7F8FB;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  .solution-features .wp-block-group__inner-container h6,
  .solution-features .wp-block-group__inner-container h2 {
    text-align: center;
  }
}
.solution-features-main {
  position: relative;
  margin-top: 50px;
  display: grid !important;
  gap: 0 !important;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px !important;
}
@media (max-width: 1024px) {
  .solution-features-main {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }
}
.solution-plans {
  position: relative;
  overflow-x: hidden;
}
.solution-plans .intro_title_desc h2 {
  margin-bottom: 0;
}
.solution-plans .service-plans-main {
  margin-bottom: 0;
}

.cases {
  position: relative;
}
.cases-main {
  position: relative;
}
.cases-main-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .cases-main-header {
    margin-bottom: 30px;
  }
}
.cases-main-header h2 {
  text-align: center;
  width: 100%;
  max-width: 720px;
  margin-bottom: 5px;
}
.cases-main-header p {
  text-align: center;
  width: 100%;
  max-width: 720px;
}
.cases-main-header-filters {
  position: relative;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .cases-main-header-filters {
    margin-top: 30px;
  }
}
.cases-main-header-filters form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .cases-main-header-filters form {
    flex-direction: column;
  }
}
.cases-main-header-filters-i {
  position: relative;
}
@media (max-width: 767px) {
  .cases-main-header-filters-i {
    width: 100%;
  }
}
.cases-main-header-filters-i-header {
  position: relative;
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  border: 1px solid #EEF0F6;
  background: #fff;
  padding: 12px 16px 12px 20px;
  gap: 10px;
  cursor: pointer;
  background-color: #fff;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
}
@media (max-width: 767px) {
  .cases-main-header-filters-i-header {
    text-align: center;
  }
}
.cases-main-header-filters-i-header:before {
  content: "";
  width: 0;
  height: 50%;
  background-color: #F7F8FB;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  margin: auto;
  z-index: -1;
  border-radius: 60px;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cases-main-header-filters-i-header svg {
  margin-left: auto;
}
@media (max-width: 767px) {
  .cases-main-header-filters-i-header svg {
    margin-left: inherit;
  }
}
.cases-main-header-filters-i-header:hover svg {
  transform: rotate(180deg);
}
.cases-main-header-filters-i-list {
  position: absolute;
  top: 63px;
  left: 0;
  width: 285px;
  height: 330px;
  border-radius: 16px;
  border: 1px solid #EEF0F6;
  background: #fff;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 20px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform;
  /* Handle */
}
@media (max-width: 767px) {
  .cases-main-header-filters-i-list {
    left: 0;
    right: 0;
    width: 100%;
    height: 250px;
    align-items: center;
  }
}
.cases-main-header-filters-i-list::-webkit-scrollbar {
  width: 4px;
}
.cases-main-header-filters-i-list::-webkit-scrollbar-track {
  border-radius: 10px;
}
.cases-main-header-filters-i-list::-webkit-scrollbar-thumb {
  background: #b8c3cc;
  border-radius: 10px;
}
.cases-main-header-filters-i-list-search {
  border-radius: 16px;
  border: 1px solid #EEF0F6;
  background: #fff;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 9px;
  width: 100%;
}
.cases-main-header-filters-i-list-search svg {
  margin-right: 10px;
}
.cases-main-header-filters-i-list-search input {
  border-radius: 0;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: calc(100% - 25px);
  padding-left: 0;
  border: none !important;
  color: #001533;
  font-weight: normal;
}
.cases-main-header-filters-i-list-option {
  font-size: 16px;
}
@media (max-width: 767px) {
  .cases-main-header-filters-i-list-option {
    text-align: center;
  }
}
.cases-main-header-filters-i-list-option.selected {
  color: #006aff;
}
.cases-main-header-filters-i-list-option:hover {
  color: #006aff;
}
.cases-main-header-filters-i.active .cases-main-header-filters-i-header:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.cases-main-header-filters-i.active .cases-main-header-filters-i-header svg {
  transform: rotate(180deg);
}
.cases-main-header-filters-i.active .cases-main-header-filters-i-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}
@media (max-width: 1024px) {
  .cases-main-header-filters-i:last-of-type .cases-main-header-filters-i-list {
    right: 0;
    left: auto;
  }
}
.cases-main-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: -25px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cases-main-filters {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.cases-main-filters a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  border-radius: 60px;
  background-color: #F7F8FB;
  border: 1px solid #EEF0F6;
  padding: 8px 12px 7px 12px;
  text-transform: capitalize;
}
.cases-main-filters a svg {
  margin-left: 5px;
  width: 14px;
  min-width: 14px;
  max-width: 14px;
  height: auto;
}
.cases-main-filters a svg * {
  stroke: rgba(255, 0, 0, 0.4);
}
.cases-main-filters a:hover {
  background-color: rgba(255, 0, 0, 0.05);
  border-color: rgba(255, 0, 0, 0.05);
}
.cases-main-items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px 20px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .cases-main-items {
    grid-gap: 60px 20px;
  }
}
@media (max-width: 767px) {
  .cases-main-items {
    grid-template-columns: 1fr;
    grid-gap: 50px;
    margin-bottom: 0;
  }
}
.cases-main-items .no-res {
  grid-column-start: 1;
  grid-column-end: 3;
  text-align: center;
}
.cases-main-viewmore {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 150px;
}
@media (max-width: 767px) {
  .cases-main-viewmore {
    margin-top: 30px;
  }
}
.cases-main-viewmore a {
  cursor: pointer;
}

.casestudy {
  position: relative;
}
.casestudy-informations {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding-top: 50px;
}
@media (max-width: 1024px) {
  .casestudy-informations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .casestudy-informations {
    padding-top: 30px;
  }
}
@media (max-width: 549px) {
  .casestudy-informations {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.casestudy-informations-i {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid #EEF0F6;
  background: #fff;
  padding: 10px 20px;
}
@media (max-width: 1024px) {
  .casestudy-informations-i {
    padding: 10px 15px;
  }
}
@media (max-width: 549px) {
  .casestudy-informations-i {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .casestudy-informations-i * {
    text-align: center;
  }
}
.casestudy-about {
  position: relative;
  background-color: #006aff;
  overflow: hidden;
  z-index: 1;
}
.casestudy-about-art {
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  height: calc(100% - 50px);
  width: auto;
  margin-top: auto;
  margin-bottom: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 767px) {
  .casestudy-about-art {
    right: 0;
    left: 0;
    margin: auto auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.casestudy-about-art img {
  width: auto;
  height: 100%;
}
.casestudy-about .wp-block-group__inner-container {
  width: 100%;
}
.casestudy-about-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .casestudy-about-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
  }
}
.casestudy-about-main .wp-block-group {
  width: 50%;
}
@media (max-width: 767px) {
  .casestudy-about-main .wp-block-group {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .casestudy-about-main .wp-block-group .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.casestudy-about-main .wp-block-group h2 {
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .casestudy-about-main .wp-block-group h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .casestudy-about-main .wp-block-group ul li {
    text-align: center;
  }
}
.casestudy-description figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.casestudy-description figure img {
  height: auto;
  max-height: 500px;
}
@media (max-width: 1024px) {
  .casestudy-description figure img {
    height: 100%;
    max-height: inherit;
  }
}
.casestudy-gallery {
  position: relative;
  background-color: #006aff;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .casestudy-gallery {
    padding-bottom: 35px;
  }
}
.casestudy-gallery:before {
  content: "";
  width: 100%;
  height: 264px;
  background-color: #fff;
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .casestudy-gallery:before {
    height: 232px;
  }
}
.casestudy-gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .casestudy-gallery-header {
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .casestudy-gallery-header {
    margin-bottom: 30px;
  }
}
.casestudy-gallery-header h2 {
  color: #fff;
}
@media (max-width: 1024px) {
  .casestudy-gallery-header h2 {
    text-align: center;
    margin-bottom: 20px;
  }
}
.casestudy-gallery-header .swipernav-i svg {
  background: linear-gradient(180deg, #FFF 50%, #DAE9FF 100%);
  border-radius: 50%;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1));
}
.casestudy-gallery-header .swipernav-i svg path {
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.casestudy-gallery-header .swipernav-i:hover svg circle,
.casestudy-gallery-header .swipernav-i:hover svg path {
  stroke: inherit;
}
.casestudy-gallery-slider-i {
  position: relative;
  height: auto;
}
.casestudy-gallery-slider-i img {
  height: 386px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px;
}
@media (max-width: 767px) {
  .casestudy-gallery-slider-i img {
    height: 296px;
  }
}
.casestudy-gallery .swiper-pagination {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .casestudy-gallery .swiper-pagination {
    margin-top: 30px;
  }
}

.simplepage {
  position: relative;
}
.simplepage-hero {
  position: relative;
  background-color: #006aff;
}
.simplepage-hero .wrapper {
  position: relative;
  height: auto;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .simplepage-hero .wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.simplepage-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.simplepage-hero-content h1 {
  color: #fff;
  text-align: left;
  line-height: 1.2;
}
.simplepage-hero-content p {
  margin-top: 10px;
  color: #fff;
}
.simplepage-hero-art {
  position: absolute;
  right: 0;
  top: 40px;
  width: 100%;
  max-width: 590px;
}
@media (max-width: 767px) {
  .simplepage-hero-art {
    top: auto;
    bottom: -40px;
    left: 0;
    margin: auto;
    width: calc(100% - 100px);
    max-width: 270px;
  }
}
@media (max-width: 349px) {
  .simplepage-hero-art {
    width: 100%;
    max-width: calc(100% - 50px);
  }
}
.simplepage-hero-art svg {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .simplepage-content {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.errorpage404 {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.errorpage404 .hero {
  background: linear-gradient(40deg, rgb(108, 0, 162) 0%, rgb(0, 17, 82) 100%);
  height: 100%;
}
@media (max-width: 1024px) {
  .errorpage404 .hero {
    height: 100vh !important;
  }
}
.errorpage404 .hero h1 {
  margin-bottom: 10px !important;
}
.errorpage404 .hero .wp-block-group {
  padding-top: 0;
}
.errorpage404 .hero .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .errorpage404 .hero-art {
    max-width: inherit;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .errorpage404 .hero-art svg {
    width: 100%;
    height: auto;
  }
}

body.error404 .footer {
  display: none;
}

.contactus {
  position: relative;
}
.contactus-team {
  position: relative;
  padding-bottom: 0;
}
.contactus-team-header {
  position: relative;
  width: 100%;
}
.contactus-team-header .wp-block-group__inner-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) {
  .contactus-team-header .wp-block-group__inner-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.contactus-team-header h2 {
  width: 100%;
  max-width: 488px;
  text-align: left;
  line-height: 1.1;
}
@media (max-width: 1024px) {
  .contactus-team-header h2 {
    max-width: inherit;
    text-align: center;
    margin-bottom: 30px;
  }
}
.contactus-team-header p {
  width: 100%;
  max-width: 590px;
}
@media (max-width: 1024px) {
  .contactus-team-header p {
    max-width: inherit;
    text-align: center;
  }
}
.contactus-team .team {
  position: relative;
  z-index: 1;
}
.contactus-team .team:before {
  content: "";
  width: 100%;
  height: calc(50% + 45px);
  background-color: #F7F8FB;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .contactus-team .team:before {
    height: 190px;
  }
}
.contactus-team .team-department {
  margin-bottom: 0;
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.contactus-team .team-department h3 {
  display: none;
}
.contactus-team .team-department-main {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media (max-width: 1024px) {
  .contactus-team .team-department-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .contactus-team .team-department-main {
    grid-template-columns: 1fr;
  }
}
.contactus-team .team-department-main-i img {
  height: 285px;
}
@media (max-width: 1024px) {
  .contactus-team .team-department-main-i img {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .contactus-team .team-department-main-i img {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.contactus-team .team-department-main-i h4,
.contactus-team .team-department-main-i p {
  padding: 0;
}
@media (max-width: 1024px) {
  .contactus-team .team-department-main-i h4,
  .contactus-team .team-department-main-i p {
    text-align: center;
  }
}
.contactus-team-footer {
  position: relative;
  background-color: #F7F8FB;
}
.contactus-team-footer .wp-block-group__inner-container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contactus-team-footer h3 {
  width: 100%;
  text-align: center;
  max-width: 795px;
}
.contactus-team-footer .wp-block-buttons {
  margin-top: 30px;
}
.contactus-call {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.contactus-call:before {
  content: "";
  width: 100%;
  height: 50%;
  background-color: #F7F8FB;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.page-template-web-development-geneva .section_title,
.page-template-web-development-agency .section_title {
  padding-bottom: 64px;
}
.page-template-web-development-geneva .statisticpart.statisticpart-lp .wp-block-column h2,
.page-template-web-development-geneva .statisticpart.statisticpart-lp .wp-block-column h3,
.page-template-web-development-agency .statisticpart.statisticpart-lp .wp-block-column h2,
.page-template-web-development-agency .statisticpart.statisticpart-lp .wp-block-column h3 {
  text-align: center;
}
.page-template-web-development-geneva .header .header-logo-2,
.page-template-web-development-agency .header .header-logo-2 {
  position: relative;
}
.page-template-web-development-geneva .header .header-logo-2 span,
.page-template-web-development-agency .header .header-logo-2 span {
  transition: all 0.3s ease;
}
.page-template-web-development-geneva .header .header-logo-2 span.active-logo,
.page-template-web-development-agency .header .header-logo-2 span.active-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.page-template-web-development-geneva .header.active .header-logo-2 span.default-logo,
.page-template-web-development-agency .header.active .header-logo-2 span.default-logo {
  opacity: 0;
}
.page-template-web-development-geneva .header.active .header-logo-2 span.active-logo,
.page-template-web-development-agency .header.active .header-logo-2 span.active-logo {
  opacity: 1;
}
.page-template-web-development-geneva .homepage-about,
.page-template-web-development-agency .homepage-about {
  margin-bottom: 0;
}
.page-template-web-development-geneva .companies-slider-main,
.page-template-web-development-agency .companies-slider-main {
  margin-top: 0;
}
.page-template-web-development-geneva .companies-slider,
.page-template-web-development-agency .companies-slider {
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .page-template-web-development-geneva .companies-slider,
  .page-template-web-development-agency .companies-slider {
    margin-bottom: 150px;
  }
}
.page-template-web-development-geneva .testimonials-header h2,
.page-template-web-development-agency .testimonials-header h2 {
  max-width: 100%;
}
.page-template-web-development-geneva .draggableitems.draggableitems-bg,
.page-template-web-development-agency .draggableitems.draggableitems-bg {
  background: #F7F8FB;
  padding: 90px 0;
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .page-template-web-development-geneva .draggableitems.draggableitems-bg,
  .page-template-web-development-agency .draggableitems.draggableitems-bg {
    padding: 140px 0;
    margin-bottom: 150px;
  }
}
.page-template-web-development-geneva .draggableitems.draggableitems-bg .draggableitems-dragme,
.page-template-web-development-agency .draggableitems.draggableitems-bg .draggableitems-dragme {
  z-index: 1;
}
.page-template-web-development-geneva .ctasection,
.page-template-web-development-agency .ctasection {
  margin-bottom: 100px;
}
.page-template-web-development-geneva .homepage-goals .ctasection,
.page-template-web-development-agency .homepage-goals .ctasection {
  margin-bottom: 0;
}
.page-template-web-development-geneva .schedule-a-meeting,
.page-template-web-development-agency .schedule-a-meeting {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .page-template-web-development-geneva .schedule-a-meeting,
  .page-template-web-development-agency .schedule-a-meeting {
    padding-bottom: 150px;
  }
}
.page-template-web-development-geneva .schedule-a-meeting .wp-block-group__inner-container,
.page-template-web-development-agency .schedule-a-meeting .wp-block-group__inner-container {
  width: 100%;
}
.page-template-web-development-geneva .schedule-a-meeting .wp-block-group__inner-container h2,
.page-template-web-development-agency .schedule-a-meeting .wp-block-group__inner-container h2 {
  margin-bottom: 30px;
}
.page-template-web-development-geneva .schedule-a-meeting .wp-block-group__inner-container p,
.page-template-web-development-agency .schedule-a-meeting .wp-block-group__inner-container p {
  margin-bottom: 30px;
}
.page-template-web-development-geneva .our-expertise,
.page-template-web-development-agency .our-expertise {
  padding: 90px 0;
  margin-bottom: 90px;
  background: #F7F8FB;
}
.page-template-web-development-geneva .our-expertise h2,
.page-template-web-development-geneva .our-expertise p,
.page-template-web-development-agency .our-expertise h2,
.page-template-web-development-agency .our-expertise p {
  max-width: 600px;
  margin: auto;
}
.page-template-web-development-geneva .our-expertise h2.wp-block-heading,
.page-template-web-development-agency .our-expertise h2.wp-block-heading {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .page-template-web-development-geneva .our-expertise,
  .page-template-web-development-agency .our-expertise {
    padding: 150px 0;
    margin-bottom: 150px;
  }
}
.page-template-web-development-geneva .our-expertise .companies-slider,
.page-template-web-development-agency .our-expertise .companies-slider {
  margin-top: 50px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-template-web-development-geneva .our-expertise .companies-slider,
  .page-template-web-development-agency .our-expertise .companies-slider {
    margin-top: 100px;
  }
}
.page-template-web-development-geneva .footer-main,
.page-template-web-development-agency .footer-main {
  gap: 30px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-template-web-development-geneva .footer-main,
  .page-template-web-development-agency .footer-main {
    gap: 50px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1140px) {
  .page-template-web-development-geneva .footer-main,
  .page-template-web-development-agency .footer-main {
    gap: 100px;
  }
}
.page-template-web-development-geneva .footer-main .footer_contact,
.page-template-web-development-agency .footer-main .footer_contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 16px;
}
.page-template-web-development-geneva .footer-main .footer_contact *,
.page-template-web-development-agency .footer-main .footer_contact * {
  font-size: 20px;
  line-height: 34px;
  font-weight: 700;
  color: #000;
}
.page-template-web-development-geneva .footer-main .footer-main-wpr,
.page-template-web-development-agency .footer-main .footer-main-wpr {
  width: auto;
  flex: 0 0 25%;
  align-items: flex-start;
}
.page-template-web-development-geneva .footer-main .footer-main-wpr-badges,
.page-template-web-development-agency .footer-main .footer-main-wpr-badges {
  flex: 1;
  display: flex;
  margin: 0;
}
.page-template-web-development-geneva .footer-main .footer-main-wpr-badges .badges-container,
.page-template-web-development-agency .footer-main .footer-main-wpr-badges .badges-container {
  display: flex;
  max-width: 453px;
  flex-direction: row;
  row-gap: 33px;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: space-between;
}
.page-template-web-development-geneva .footer-main .footer-main-wpr-badges .footer-main-wpr-badges-i:first-child,
.page-template-web-development-agency .footer-main .footer-main-wpr-badges .footer-main-wpr-badges-i:first-child {
  max-width: 167px;
}
.page-template-web-development-geneva .footer-main .footer-main-wpr-badges .footer-main-wpr-badges-i:last-child,
.page-template-web-development-agency .footer-main .footer-main-wpr-badges .footer-main-wpr-badges-i:last-child {
  max-width: 253px;
}
.page-template-web-development-geneva .footer-main .footer-main-menu,
.page-template-web-development-agency .footer-main .footer-main-menu {
  width: auto;
}
.page-template-web-development-geneva .footer-main .footer-main-menu-items .sm,
.page-template-web-development-agency .footer-main .footer-main-menu-items .sm {
  display: flex;
  flex-direction: row;
  gap: 23px;
  align-items: flex-start;
}
.page-template-web-development-geneva .footer-main .footer-main-menu-items .sm a,
.page-template-web-development-agency .footer-main .footer-main-menu-items .sm a {
  display: block;
  margin: 0;
}
.page-template-web-development-geneva .footer-main-wpr-logo svg,
.page-template-web-development-agency .footer-main-wpr-logo svg {
  max-width: 176px;
}
.page-template-web-development-geneva .homepage-founder-main,
.page-template-web-development-agency .homepage-founder-main {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .page-template-web-development-geneva .homepage-founder-main,
  .page-template-web-development-agency .homepage-founder-main {
    align-items: center;
  }
}
.page-template-web-development-geneva .homepage-founder-main-img,
.page-template-web-development-agency .homepage-founder-main-img {
  width: 25%;
}
@media (max-width: 767px) {
  .page-template-web-development-geneva .homepage-founder-main-img,
  .page-template-web-development-agency .homepage-founder-main-img {
    width: 100%;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
.page-template-web-development-geneva .homepage-founder-main-con,
.page-template-web-development-agency .homepage-founder-main-con {
  width: 70%;
}
@media (max-width: 767px) {
  .page-template-web-development-geneva .homepage-founder-main-con,
  .page-template-web-development-agency .homepage-founder-main-con {
    width: 100%;
  }
  .page-template-web-development-geneva .homepage-founder-main-con *,
  .page-template-web-development-agency .homepage-founder-main-con * {
    text-align: center;
  }
}

.articles {
  position: relative;
}
.articles .hero {
  background: linear-gradient(40deg, rgb(108, 0, 162) 0%, rgb(0, 17, 82) 100%);
}
.articles-main {
  position: relative;
}
.articles-main-header {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.articles-main-header h2 {
  width: 100%;
  max-width: 450px;
  text-align: center;
}
.articles-main-header-items {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .articles-main-header-items {
    margin-top: 20px;
  }
}
.articles-main-header .btn {
  width: -moz-fit-content;
  width: fit-content;
}
.articles-main-header .btn a {
  padding: 15px 20px;
  color: #001533;
  font-size: 14px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .articles-main-header .btn a {
    padding: 8px 10px;
  }
}
.articles-main-header .btn.active a {
  background-color: #006aff;
  color: #fff;
}
.articles-main-items {
  position: relative;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px 20px;
}
@media (max-width: 1024px) {
  .articles-main-items {
    margin-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .articles-main-items {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
}

.articlepage {
  position: relative;
}
.articlepage-hero {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}
.articlepage-hero-featured {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.articlepage-hero-featured img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.articlepage-hero:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
}
.articlepage-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 240px;
  padding-bottom: 260px;
  min-height: 780px;
}
@media (max-width: 1024px) {
  .articlepage-hero-content {
    min-height: auto;
    padding-top: 180px;
    padding-bottom: 240px;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .articlepage-hero-content {
    padding-top: 105px;
    padding-bottom: 140px;
  }
}
.articlepage-hero-content .articlecard-category {
  position: relative;
  left: inherit;
  top: inherit;
  margin-bottom: 10px;
}
.articlepage-hero-content .articlecard-category a:nth-child(n+2) {
  display: none;
}
.articlepage-hero-content h1 {
  color: #fff;
  width: 100%;
  max-width: 610px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .articlepage-hero-content h1 {
    text-align: center;
  }
}
.articlepage-hero-content p {
  margin-top: 30px;
  color: #fff;
  width: 100%;
  max-width: 590px;
}
@media (max-width: 1024px) {
  .articlepage-hero-content p {
    text-align: center;
  }
}
.articlepage-hero-content p:empty {
  display: none;
}
.articlepage-hero-content .urban-overlay,
.articlepage-hero-content #urban-overlay {
  display: none;
}
.articlepage-main {
  position: relative;
}
.articlepage-main .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.articlepage-main-content {
  position: relative;
  width: 66%;
}
@media (max-width: 1024px) {
  .articlepage-main-content {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .articlepage-main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.articlepage-main-content .articlepage-main-sidebar-toc {
  display: none;
}
@media (max-width: 767px) {
  .articlepage-main-content .articlepage-main-sidebar-toc {
    display: flex;
    order: 2;
    margin-bottom: 30px;
  }
}
.articlepage-main-content-info {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid #EEF0F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .articlepage-main-content-info {
    order: 1;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.articlepage-main-content-info-headshot {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .articlepage-main-content-info-headshot {
    width: 50px;
    height: 50px;
  }
}
.articlepage-main-content-info-headshot img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.articlepage-main-content-info-author {
  position: relative;
  width: calc(100% - 74px);
}
@media (max-width: 767px) {
  .articlepage-main-content-info-author {
    width: calc(100% - 64px);
  }
}
.articlepage-main-content-info-author-main {
  position: relative;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .articlepage-main-content-info-author-main {
    flex-direction: column;
    align-items: flex-start;
  }
}
.articlepage-main-content-info-author-main p {
  color: #667480;
}
@media (max-width: 767px) {
  .articlepage-main-content-blocks {
    order: 3;
  }
}
.articlepage-main-sidebar {
  position: sticky;
  top: 100px;
  width: 32%;
}
@media (max-width: 1024px) {
  .articlepage-main-sidebar {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .articlepage-main-sidebar {
    display: none;
  }
}
.articlepage-main-sidebar-toc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}
.articlepage-main-sidebar-toc h4 {
  margin-bottom: 10px;
}
.articlepage-main-sidebar-toc a {
  position: relative;
  font-size: 14px;
  color: #667480;
  padding-left: 10px;
  font-weight: normal;
  line-height: 1.5;
  border-left: 1px solid #EEF0F6;
  z-index: 1;
}
.articlepage-main-sidebar-toc a:not(:last-of-type) {
  padding-bottom: 10px;
}
.articlepage-main-sidebar-toc a:not(:last-of-type).active:before {
  height: calc(100% - 10px);
}
.articlepage-main-sidebar-toc a:before {
  content: "";
  width: 0px;
  height: 0%;
  background-color: #006aff;
  transition: 0.34s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 1;
  position: absolute;
  left: -1px;
  top: 0;
}
.articlepage-main-sidebar-toc a.active {
  color: #006aff;
}
.articlepage-main-sidebar-toc a.active:before {
  width: 1px;
  height: 100%;
}
.articlepage-main-sidebar-toc a:hover {
  color: #006aff;
}
.articlepage-main-sidebar-toc a:hover:before {
  width: 1px;
  height: 100%;
}
.articlepage-main-sidebar .newsletter {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid #EEF0F6;
  background: linear-gradient(0deg, rgba(0, 106, 255, 0) 0%, rgba(0, 106, 255, 0.1) 100%), #FFF;
  padding: 40px 20px;
}
@media (max-width: 1024px) {
  .articlepage-main-sidebar .newsletter {
    padding: 20px;
  }
}
.articlepage-main-sidebar .newsletter h2 {
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .articlepage-main-sidebar .newsletter h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.articlepage-main-sidebar .newsletter .gform_wrapper {
  width: 100%;
}
.articlepage-main-sidebar .newsletter form {
  flex-direction: column;
}
.articlepage-main-sidebar .newsletter form .gform-body,
.articlepage-main-sidebar .newsletter form .gform_footer {
  width: 100%;
}
.articlepage-main-sidebar .newsletter form .gform_fields {
  position: relative;
  width: 100%;
  display: flex !important;
  flex-direction: column !important;
  grid-gap: 0 !important;
  gap: 10px !important;
}
@media (max-width: 1024px) {
  .articlepage-main-sidebar .newsletter form .gform_fields {
    gap: 5px !important;
  }
}
.articlepage-main-sidebar .newsletter form .gform_fields input {
  text-align: center;
}
@media (max-width: 1024px) {
  .articlepage-main-sidebar .newsletter form .gform_fields input {
    padding: 8px 12px;
    font-size: 14px;
  }
}
.articlepage-main-sidebar .newsletter .gfield--type-html {
  width: 100% !important;
}
.articlepage-main-sidebar .newsletter .gfield--type-html p {
  font-size: 12px !important;
}
.articlepage-main-sidebar .newsletter .gfield--type-turnstile {
  width: 100% !important;
}
.articlepage-related {
  position: relative;
}
.articlepage-related-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .articlepage-related-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .articlepage-related-header h2 {
    text-align: center;
    margin-bottom: 30px;
  }
}
.articlepage-related-header a {
  font-weight: normal;
}
.articlepage-related-main {
  position: relative;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
@media (max-width: 767px) {
  .articlepage-related-main {
    margin-top: 30px;
    grid-gap: 30px;
    grid-template-columns: 1fr;
  }
}

.cardblock {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid #EEF0F6;
  background: linear-gradient(56deg, rgba(0, 106, 255, 0) 50.08%, rgba(0, 106, 255, 0.1) 100%), #FFF;
  padding: 30px;
  height: 100%;
  box-shadow: 0px 0px 22px 0px rgba(0, 106, 255, 0);
  transition: 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 1024px) {
  .cardblock {
    padding: 20px;
  }
}
.cardblock .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cardblock figure {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .cardblock figure {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
}
.cardblock figure img {
  width: 100%;
  height: 100%;
}
.cardblock svg {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .cardblock svg {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }
}
.cardblock svg * {
  fill: #006aff;
}
.cardblock h3 {
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cardblock p {
  font-size: 18px;
  line-height: 1.66;
}
@media (max-width: 1024px) {
  .cardblock p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .cardblock p {
    font-size: 14px;
  }
}
.cardblock p:not(:last-of-type) {
  margin-bottom: 15px;
}
.cardblock .wp-block-buttons {
  margin-top: auto;
}
.cardblock a {
  margin-top: 40px;
}
@media (max-width: 1024px) {
  .cardblock a {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .cardblock a {
    margin-top: 10px;
  }
}
.cardblock #coming-soon {
  color: #667480;
  margin-top: 40px;
}
.cardblock.no-link figure {
  margin-bottom: 67px;
}
.cardblock.no-link:hover {
  box-shadow: 0px 0px 22px 0px rgba(0, 106, 255, 0);
  transform: none;
}
.cardblock.is-last {
  background-color: #006aff;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
}
.cardblock.is-last h3,
.cardblock.is-last p {
  text-align: center;
  color: #fff;
}
.cardblock.is-last .wp-block-buttons {
  justify-content: center;
}
.cardblock.is-last a {
  background-color: #fff;
  color: #006aff;
  margin-top: 20px;
}
.cardblock.is-last a #circle {
  background-color: #001533;
}
.cardblock.is-last a:hover {
  color: #fff !important;
}
.cardblock.is-last:hover {
  transform: none;
  box-shadow: 0px 0px 22px 0px rgba(0, 106, 255, 0);
}
.cardblock.flatdesign {
  background: none;
  border-color: #001533;
  box-shadow: none !important;
}
.cardblock.flatdesign:hover {
  transform: none;
}
.cardblock:hover {
  box-shadow: 0px 0px 22px 0px rgba(0, 106, 255, 0.14);
  transform: scale(1.03, 1.03);
}
@media (max-width: 767px) {
  .cardblock ul {
    margin-top: 10px !important;
  }
}

.ctacard {
  position: relative;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
}
.ctacard .wp-block-group__inner-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ctacard h3 {
  margin-bottom: 20px;
}
.ctacard.has-video {
  background: none;
  padding: 0;
}
.ctacard.has-video .wp-block-group__inner-container {
  border-radius: 24px;
}
.ctacard.twocol {
  position: relative;
  display: flex;
  width: 100%;
  grid-column-start: 2;
  grid-column-end: 4;
}
@media (max-width: 1024px) {
  .ctacard.twocol {
    grid-column-start: auto;
    grid-column-end: auto;
  }
}
.ctacard-video {
  min-height: inherit;
  height: 100%;
  width: 100%;
  border-radius: 24px;
  z-index: 1;
  padding: 0;
}
.ctacard-video .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}
@media (max-width: 767px) {
  .ctacard-video .wp-block-cover__inner-container {
    padding: 20px;
  }
}
.ctacard-video .wp-block-cover__inner-container h3 {
  margin-bottom: 5px;
}
.ctacard-video .wp-block-cover__inner-container p {
  text-align: center;
}
.ctacard-video .wp-block-cover__inner-container .wp-block-buttons {
  margin-top: 20px;
}

.servicecard {
  position: relative;
  border: 1px solid #EEF0F6;
  background-color: #fff;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
}
@media (max-width: 767px) {
  .servicecard {
    padding: 20px;
  }
}
.servicecard .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .servicecard .wp-block-group__inner-container {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.servicecard svg,
.servicecard img {
  width: auto;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .servicecard svg,
  .servicecard img {
    height: 40px;
    max-height: 40px;
    min-height: 40px;
    margin-bottom: 20px;
  }
}
.servicecard h3 {
  margin-bottom: 10px;
  line-height: 1.7;
  text-transform: uppercase;
}
.servicecard p a {
  color: #006aff;
}
.servicecard p a:hover {
  color: #001533;
}

.solutioncard {
  position: relative;
  border: 1px solid #EEF0F6;
  background-color: #fff;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
}
@media (max-width: 767px) {
  .solutioncard {
    padding: 20px;
  }
}
.solutioncard .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .solutioncard .wp-block-group__inner-container {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.solutioncard svg,
.solutioncard img {
  width: auto;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .solutioncard svg,
  .solutioncard img {
    height: 40px;
    max-height: 40px;
    min-height: 40px;
    margin-bottom: 20px;
  }
}
.solutioncard h6 {
  margin-bottom: 10px;
}
.solutioncard h3 {
  margin-bottom: 10px;
  line-height: 1.7;
  text-transform: uppercase;
}
.solutioncard p a {
  color: #006aff;
}
.solutioncard p a:hover {
  color: #001533;
}
.solutioncard .wp-block-buttons {
  margin-top: auto;
}
.solutioncard .wp-block-buttons a {
  margin-top: 15px;
}

.statisticpart {
  position: relative;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .statisticpart {
    gap: 20px;
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 767px) {
  .statisticpart {
    gap: 40px;
    flex-direction: column;
  }
}
.statisticpart .wp-block-column {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .statisticpart .wp-block-column {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.statisticpart .wp-block-column h2 {
  font-size: 80px;
  font-weight: bold;
  text-align: left;
  color: #006aff;
  margin-bottom: 34px;
}
@media (max-width: 1024px) {
  .statisticpart .wp-block-column h2 {
    font-size: 64px;
  }
}
@media (max-width: 767px) {
  .statisticpart .wp-block-column h2 {
    margin-bottom: 20px;
    text-align: center;
  }
}
.statisticpart .wp-block-column h3 {
  font-weight: bold;
  line-height: 1.7;
  color: #001533;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .statisticpart .wp-block-column h3 {
    text-align: center;
  }
}
.statisticpart .wp-block-column p {
  margin-top: auto;
}
@media (max-width: 767px) {
  .statisticpart .wp-block-column p {
    text-align: center;
  }
}

.mobileCardsSlider {
  position: relative;
  width: 100%;
}
.mobileCardsSlider .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 20px;
}
.mobileCardsSlider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006aff;
}

@media (max-width: 767px) {
  .cardsmobile {
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    grid-gap: 0 !important;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .cardsmobile .wp-block-group {
    width: 100% !important;
  }
}
.cardsmobile .swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  display: block !important;
}
.cardsmobile .swiper-slide:hover {
  box-shadow: 0px 0px 22px 0px rgba(0, 106, 255, 0);
  transform: none;
}
.cardsmobile .swiper-pagination {
  display: none;
}
@media (max-width: 767px) {
  .cardsmobile .swiper-pagination:first-of-type {
    display: flex;
  }
}
@media (min-width: 768px) {
  .cardsmobile {
    transform: none !important;
  }
}

.no-touch {
  pointer-events: none;
}
@media (max-width: 767px) {
  .no-touch {
    pointer-events: auto;
  }
}
