body.page-template-page-our_work_update {
  overflow: visible;
}

#our-work-template * {
  box-sizing: border-box;
  background-repeat: no-repeat;
}

/* Banner */
.ow-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ow-banner.banner-video {
	position: relative;
}

.ow-banner.banner-video .vid-wrapper {
	background-color: #eee;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.ow-banner.banner-video .vid-wrapper .video-foreground {
	min-width: 100%;
	min-height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.ow-banner .mobile-bkgrd {
	display: none;
	position: absolute;
	background-size: cover;
	width: 100%;
	height: 100%;
	z-index: -1;

}

@media screen and (max-width: 600px) {
	.ow-banner .vid-wrapper {
		display: none;
	}
	
	.ow-banner .mobile-bkgrd {
		display: block;
	}
}

.ow-banner.banner-image {
  background-size: cover;
  background-position: 50% 30%;
}

.ow-banner .inner {
  min-height: 60vh;
  width: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.ow-banner h1 {
  color: #fff;
  font-family: 'futura-pt-bold';
  font-size: 48px;
  line-height: 58px;
  max-width: 1100px;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .ow-banner h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

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

  .ow-banner .inner {
    padding: 15px;
    min-height: 300px;
  }

  .ow-banner h1 {
    font-size: 28px;
    line-height: 34px;
  }
}


/* Content Block */
.ow-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 90px 15px;
}

.ow-content article {
  max-width: 760px;
  margin: auto;
  text-align: center;
  font-size: 20px;
}

.ow-content article h2 {
  font-family: 'futura-pt-bold';
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

.ow-content article p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
}

.ow-content .scrolldown {
  margin-top: 30px;
  transition: all .3s ease-in-out;
  animation-name: bounce-3;
  animation-timing-function: ease;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.bounce-3 {
  animation-name: bounce-3;
  animation-timing-function: ease;
}
@keyframes bounce-3 {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-30px); }
  55%  { transform: translateY(4px); }
  65%  { transform: translateY(0px); }
  100% { transform: translateY(0); }
}

.bounce-5 {
  animation-name: bounce-5;
  animation-timing-function: ease;
}
@keyframes bounce-5 {
  0%   { transform: scale(1,1)    translateY(0); }
  10%  { transform: scale(1.1,.9) translateY(0); }
  30%  { transform: scale(.9,1.1) translateY(-100px); }
  50%  { transform: scale(1,1)    translateY(0); }
  57%  { transform: scale(1,1)    translateY(7px); }
  64%  { transform: scale(1,1)    translateY(0); }
  100% { transform: scale(1,1)    translateY(0); }
}

/* Collage */
.collage {
  max-width: 100vw;
  overflow: hidden;
  min-height: 900px;
  padding: 30px 15px 200px;
}

.collage .img-wrap {
  width: 100%;
  position: absolute;
  z-index: 0;
  display: flex;
  transform: translateY(-100px);
}

.collage .img-wrap > div {
  flex-basis: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  overflow-y: visible;
}

.collage .img-wrap span {
  display: block;
}

.collage .img-wrap .left {
  display: flex;
  flex-direction: column;
  transform: translateY(600px);
}

.collage .img-wrap .img1 img{
  transform: translateX(-70%) rotate(15deg) translateY(0px);
}

.collage .img-wrap .left .lower {
  padding-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collage .img-wrap .img2 img {
  transform: rotate(-5deg) translateY(-180px);
}

.collage .img-wrap .img3 img{
  transform: rotate(10deg) translate(5px 30px);
  z-index: -1;
}

.collage .img-wrap .right {
  display: flex;
  flex-direction: row;
}

.collage .img-wrap .img4 img {
  transform: rotate(3deg);
}

.collage .img-wrap .right .col:last-of-type {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transform: translateY(300px);
}

.collage .img-wrap .img5 {
  z-index: 3;
}

.collage .img-wrap .img5 img{
  transform: rotate(10deg) translateX(-25%) translateY(0px);
}

.collage .img-wrap .img6 img{
  transform: rotate(-5deg) translateX(-5%) translateY(200px);
  z-index: 2;
}

.collage .text {
  max-width: 1130px;
  margin: auto;
  padding: 30px 15px 150px;
  z-index: 1;
}

.collage .text p {
  transform: translateY(-200px);
}

.collage p,
.collage p > strong {
  font-family: 'futura-pt-bold';
  font-size: 48px;
  line-height: 50px;
  font-weight: bold;
  max-width: 420px;
}

.collage p > strong {
  color: #00a8cb;
}

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

  .collage {
    display: none;
  }
    
  .collage .img-wrap .img4 img {
    transform: rotate(3deg) scale(.7);
  }

  .collage .img-wrap .img5 img{
    transform: rotate(10deg) translateX(-200px) translateY(0px);
  }
  
  .collage .img-wrap .img6 img{
    transform: rotate(-5deg) translateX(-200px) translateY(200px);
    z-index: 2;
  }
  
}

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

  .collage .img-wrap .img1 img{
    transform: translateX(-70%) rotate(15deg) translateY(-100px);
  }
  
  .collage .img-wrap .img2 img {
    transform: rotate(-5deg) translateY(-300px);
  }
  
  .collage .img-wrap .img3 img{
    transform: rotate(10deg) translateY(0);
    z-index: -1;
  }

  .collage .img-wrap .img4 img {
    transform: rotate(3deg) scale(.7) translateX(-200px) translatey(-100px);
  }

  .collage .img-wrap .img5 img{
    transform: rotate(10deg) translateX(-400px) translateY(0px) scale(.7);
  }
  
  .collage .img-wrap .img6 img{
    transform: rotate(-5deg) translateX(-600px) translateY(300px) scale(.7);
    z-index: 2;
  }
  
}

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

  .collage .img-wrap .img1 img{
    transform: translateX(-70%) rotate(15deg) translateY(-100px);
  }
  
  .collage .img-wrap .img2 img {
    transform: rotate(-5deg) translateY(-300px);
  }
  
  .collage .img-wrap .img3 img{
    transform: rotate(10deg) translateY(0);
    z-index: -1;
  }

  .collage .img-wrap .img4 img {
    transform: rotate(3deg) scale(.7) translateX(-200px) translatey(-100px);
  }

  .collage .img-wrap .img5 img{
    transform: rotate(10deg) translateX(-400px) translateY(100px) scale(.7);
  }
  
  .collage .img-wrap .img6 img{
    display: none;
  }

  .collage .text {
    padding: 30px 15px 30px;
  }
  
  .collage .text p {
    transform: translateY(-100px);
  }
  
  .collage p,
  .collage p > strong {
    font-family: 'futura-pt-bold';
    font-size: 40px;
    line-height: 42px;
    font-weight: bold;
    max-width: 420px;
  }
  
  
}

/* Mobile Collage */

.mobile-collage {
  display: none;
  position: relative;
  min-height: 600px;
  max-width: 100vw;
  overflow: hidden;
  padding-top: 60px;
  margin-top: -60px;
  padding-bottom: 120px;
  margin-bottom: -70px;
}

.mobile-collage .mob-img-wrap {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: -1;
}

.mobile-collage .mob-img-wrap>span {
	position: absolute;
}

.mobile-collage .img1 {
	top: -60px;
	left: -190px;
}
.mobile-collage .img2 {
	top: -10px;
	right: -80px;
	z-index: 1;
}
.mobile-collage .img3 {
	bottom: 250px;
	right: 240px;
}
.mobile-collage .img4 {
  bottom: 40px;
  right: -30px;
  z-index: -1;
}
.mobile-collage .img5 {
  bottom: 180px;
  left: 30px;
}


.mobile-collage .img1 img {
	transform: rotate(15deg);
}
.mobile-collage .img2 img {
	transform: rotate(-5deg) scale(.7);
}
.mobile-collage .img3 img {
	transform: rotate(-5deg) scale(.7);
}
.mobile-collage .img4 img {
  transform: scale(.75) rotate(10deg);
  transform-origin: bottom right;
}
.mobile-collage .img5 img {
  transform: rotate(-5deg);
}

.mobile-collage .text {
  margin: auto;
  padding: 240px 15px;
}

.mobile-collage.text p {
  
}

.mobile-collage p,
.mobile-collage p > strong {
  font-family: 'futura-pt-bold';
  font-size: 48px;
  line-height: 50px;
  font-weight: bold;
  max-width: 420px;
}

.mobile-collage p > strong {
  color: #00a8cb;
}

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

  .mobile-collage {
    display: flex;
  }
      
}



@media screen and (max-width: 700px ) {
	
	.mobile-collage .text {
	  margin: auto;
	  padding: 240px 30px;
	}
	
	
	.mobile-collage p,
  .mobile-collage p > strong {
    font-size: 42px;
    line-height: 48px;
  }
  
  .mobile-collage .img1 {
		top: -70px;
		left: -175px;
	}
	.mobile-collage .img2 {
		top: -30px;
		right: -60px;
		z-index: 1;
	}
	.mobile-collage .img3 {
		bottom: 180px;
		right: 25%;
	}
	.mobile-collage .img4 {
	  bottom: 90px;
	  right: -40px;
	  z-index: -1;
	}
	.mobile-collage .img5 {
		bottom: 190px;
		left: 30px;
	}
  
  .mobile-collage .img1 img {
		transform: rotate(18deg) scale(.7) translateY(-60px);
	}
	
	.mobile-collage .img4 img {
	  transform: scale(.6) rotate(10deg);
	  transform-origin: bottom right;
	}
  
}

@media screen and (max-width: 450px ) {
	
	
	.mobile-collage .text {
	  margin: auto;
	  padding: 240px 15px 160px;
	}
	
	.mobile-collage p,
  .mobile-collage p > strong {
    font-size: 36px;
    line-height: 38px;
  }
	
	.mobile-collage .img1 {
		top: -70px;
		left: -175px;
	}
	.mobile-collage .img2 {
		top: -30px;
		right: -60px;
		z-index: 1;
	}
	.mobile-collage .img3 {
		bottom: 150px;
		left: 15px;
	}
	.mobile-collage .img4 {
	  bottom: 130px;
	  right: 5px;
	  z-index: -1;
	}

	
	.mobile-collage {
		min-height: 500px
	}

  .mobile-collage .img1 img {
		transform: rotate(18deg) scale(.5);
	}
	
	.mobile-collage .img2 img {
		transform: rotate(-9deg) scale(.7);
	}
	
	.mobile-collage .img4 img {
	  transform: scale(.4) rotate(10deg);
	  transform-origin: bottom right;
	}
	
	.mobile-collage .img5 {
		display: none;
	}
  
}


/* sticky-content */
.sticky-content {
  display: flex;
}


/* sticky-content aside */
.sticky-content aside {
  flex-basis: 550px;
  flex-grow: 0;
  flex-shrink: 1;

}

.sticky-content aside .inner {
  position: sticky;
  top: 0;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
}

.sticky-content aside .section-nav {
  padding: 60px;
  flex-basis: 25vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: all .5s ease-in-out;
}

.sticky-content aside .section-nav.active {
  flex-basis: 50vh;
  margin-right: -30px;
}

.sticky-content aside .section-nav .label {
  font-family: 'futura-pt';
  color: #494444;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.sticky-content aside .section-nav h2 {
  color: #fff;
  font-family: 'futura-pt-bold';
  font-size: 24px;
  line-height: 30px;
}

.sticky-content aside .section-nav:nth-of-type(1) {
  background-color: #fdbb1e;
}
.sticky-content aside .section-nav:nth-of-type(2) {
  background-color: #00a8cb;
}
.sticky-content aside .section-nav:nth-of-type(3) {
  background-color: #f47d30;
}

/* sticky-content article */

.sticky-content article {
  flex-basis: 640px;
  flex-grow: 2;
  flex-shrink: 2;
  padding: 60px 15px 60px 60px;
}

.sticky-content article .section-content {
  width: 100%;
  max-width: 640px;
  margin: auto;
  margin-bottom: 150px;
}

.sticky-content article .section-content h3 {
  font-family: 'futura-pt-bold';
  font-size: 28px;
  line-height: 36px;
  margin-bottom: 30px;
}

.sticky-content article .section-content .content * {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 30px;
}

.sticky-content article .section-content .content {
  margin-bottom: 60px;
}


.sticky-content article .linksheading {
  font-family: 'futura-pt';
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 500;
}

.sticky-content article .link-block {
  width: 100%;
  max-width: 100%;
  transform: scale(1);
  transition: all .4s ease-in-out;
}

.sticky-content article .link-block:hover {
  transform: scale(1.03);
}

.sticky-content article .link-block .imgwrap {
  box-shadow: none;
  transition: all .4s ease-in-out;
}

.sticky-content article .link-block:hover .imgwrap {
  box-shadow: -1px 1px 10px -3px rgba(0,0,0,0.4) ;
}

.sticky-content article .link-block:hover img {
  opacity: 1;
}

.sticky-content article .link-block a {
  display: flex;
  margin-bottom: 30px;
  text-decoration: none;
  width: 100%;
}

.sticky-content article .link-block .imgwrap {
  width: 160px;
  height: 100px;
  flex-basis: 160px;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}

.sticky-content article .link-block .imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sticky-content article .link-block .textwrap {
  padding-left: 30px;
}

.sticky-content article .link-label {
  text-transform: uppercase;
  font-family: 'futura-pt-bold';
  font-size: 12px;
  line-height: 20px;
  color: #b0aba8;
}


.sticky-content article .link-title {
  font-family: 'futura-pt-bold';
  font-size: 18px;
  line-height: 26px;
  color: #494444;
}

.sticky-content .section-heading {
  display: none;
  padding: 30px 15px;
  margin:0 -15px 30px;
}

.sticky-content .section-heading .label {
  font-family: 'futura-pt';
  color: #494444;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.sticky-content .section-heading h2 {
  color: #fff;
  font-family: 'futura-pt-bold';
  font-size: 24px;
  line-height: 30px;
}

#stickyhead-0 {
  background-color: #fdbb1e;
}
#stickyhead-1 {
  background-color: #00a8cb;
}
#stickyhead-2 {
  background-color: #f47d30;
}

@media screen and (max-width: 900px) {
  .sticky-content aside {
    display: none;
  
  }

  .sticky-content .section-heading {
    display: block;
  }

  .sticky-content article {
    padding-bottom: 0;
    padding: 0 15px;
  }
}

@media screen and (max-width: 500px) {
	.sticky-content article .link-block a {
		flex-direction: column;
	  margin-bottom: 45px;
	}
	
	.sticky-content article .link-block .textwrap {
	  padding-left: 0px;
	  padding-top: 5px;
	}
}

/* SVG MAP Section */

.map-container {
  padding: 100px 15px;
  max-width: 1100px;
  margin: auto;
}

.map-container h2 {
  font-family: 'futura-pt-bold';
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 60px;
  text-align: center;
}

.map-container h3 {
  font-family: 'futura-pt-bold';
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 60px;
  text-align: center;
}

.svg-wrap {
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
  padding: 0 15px;
}

nav.mapnav {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

nav.mapnav button {
  text-transform: uppercase;
  font-family: 'futura-pt';
  font-weight: 400;
  color: #494444;
  opacity: .4;
  font-size: 16px;
  line-height: 24px;
  border-top: 3px solid #494444;
  letter-spacing: 0.01em;
  border-left: none;
  border-right: none;
  border-bottom: none;
  background-color: transparent;
  margin: 0 30px;
  transition: all .2s ease-in-out;
}

nav.mapnav button:hover {
  opacity: 1;
}

nav.mapnav button:focus {
  outline: none;
}

nav.mapnav button.active {
  opacity: 1;
}

#link-strategies.active {
  border-top-color: #fcbb2f;
}
#link-tactics.active {
  border-top-color: #00a8cb;
}
#link-strengths.active {
  border-top-color: #f47d2e;
}

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

  .map-container {
    padding: 0px 15px 100px;
  }

  .map-container h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  
  .map-container h3 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 60px;
  }

}

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

  .map-container h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  
  .map-container h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 60px;
  }

  nav.mapnav {
    flex-direction: column;
  }

  nav.mapnav button {
    margin-bottom: 30px;
  }
}

/* SVG Map Icons */
.svg-trigger path {
  transition: all .2s ease-in-out;
  cursor: pointer;
}

.svg-trigger path#strategies-bkgrd {
  fill:#fff;
  stroke:#fdbb1e;
  stroke-miterlimit:10;
  stroke-width:4px;
}

.svg-trigger path#strategies-icon {
  fill:#fdbb1e
}

.svg-trigger path#strengths-bkgrd {
  fill:#fff;
  stroke:#f47d2e;
  stroke-miterlimit:10;
  stroke-width:4px;
}

.svg-trigger path#strengths-icon {
  fill:#f47d2e;
}

.svg-trigger path#tactics-bkgrd {
  fill:#fff;
  stroke:#00a8cb;
  stroke-miterlimit:10;
  stroke-width:4px;
}

.svg-trigger path#tactics-icon {
  fill:#00a8cb;
}

.svg-trigger.active path#strategies-bkgrd {fill:#fdbb1e;}
.svg-trigger.active path#strengths-bkgrd { fill:#f47d2e;}
.svg-trigger.active path#tactics-bkgrd { fill:#00a8cb;}

.svg-trigger.active path#strategies-icon,
.svg-trigger.active path#strengths-icon,
.svg-trigger.active path#tactics-icon { 
  fill:#fff 
}

.svg-trigger:hover path#strategies-bkgrd {fill:#fdbb1e;}
.svg-trigger:hover path#strengths-bkgrd { fill:#f47d2e;}
.svg-trigger:hover path#tactics-bkgrd { fill:#00a8cb;}

.svg-trigger:hover path#strategies-icon,
.svg-trigger:hover path#strengths-icon,
.svg-trigger:hover path#tactics-icon { 
  fill:#fff 
}

/* SVG MAP Content */

.mapcontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.mapblock {
  width: 100%;
  margin: auto;
  opacity: 0;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.mapblock.active {
  opacity: 1;
  position: static;
  pointer-events: all;
}

.mapblock .titlewrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.mapblock .titlewrap img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.mapblock .titlewrap h4 {
  font-family: 'futura-pt-bold';
  font-size: 28px;
  line-height: 32px;
}

.mapblock .block-icon-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	max-width: 1100px;
	padding-top: 15px;
	margin: auto;
	align-items: flex-start;
	justify-content: center;
}

.mapblock  .block-icon-wrap {
	flex-basis: 200px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 30px;
}

.mapblock  .block-icon-wrap .readmore {
  font-family: 'Futura W01 Bold';
  color: #494444;
  font-size: 12px;
  line-height: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.mapblock  .block-icon-wrap .readmore:hover {
  color: #f47d2e;
}

.mapblock  .block-icon-wrap .readmore::before {
  content: "+";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  color: #fff;
  background-color: #f47d2e;
  margin: 0 5px 0 0;
  padding: 1px 2px 3px 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mapblock  .block-icon-wrap .imgwrap {
	border-radius: 50%;
	background-color: #f4f4f3;
	padding: 5px;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.mapblock  .block-icon-wrap .icon-title {
	font-size: 16px;
	line-height: 22px;
	text-align: center;
	font-family: 'Univers LT W02 55 Roman',Arial,sans-serif;
}

.mapblock .content {
  margin-bottom: 0px;
  max-width: 760px;
  margin: auto;
}

.mapblock .content * {
  font-size: 20px;
  line-height: 30px;
}

.mapblock .content li {
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
  margin-left: 0;
  position: relative;
}

.mapblock .content li::before {
  content: "+";
  position: absolute;
  left: -20px;
  font-family: 'futura-pt-bold';
  font-size: 24px;
}

#block-strengths .content li::before {
  content: "+";
  position: absolute;
  left: -20px;
  color: #f47d30;
}

#block-tactics .content li::before {
  content: "+";
  position: absolute;
  left: -20px;
  color: #00a8cb;
}

#block-strategies .content li::before {
  content: "+";
  position: absolute;
  left: -20px;
  color: #fcbb2f;
}

/* Success Container */
.success-container {
  max-width: 1130px;
  padding: 0 15px;
  margin: auto;
}

.success-container h2 {
  font-family: 'futura-pt-bold';
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 40px;
  text-align: center;
}

.success-container .statswrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 60px;
}

.success-container .stat {
  text-align: center;
}

.success-container .stat .number {
  font-family: 'futura-pt-bold';
  color: #00a8cb;
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 10px;
  text-align: center;
}

.success-container .stat .label {
  font-size: 20px;
  line-height: 30px;
  color: #494444;
  text-transform: none;
  letter-spacing: normal;
}

@media screen and (max-width: 900px ) {
  .success-container .statswrap {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 15px;
    margin-bottom: 90px;
  }

  .success-container .stat .number {
    font-size: 48px;
    line-height: 56px;
  }

  .success-container .stat .label {
    font-size: 18px;
    line-height: 22px;
  }
  
}

@media screen and (max-width: 650px ) {
  .success-container .statswrap {
    grid-template-columns: 1fr;
    padding: 0 15px;
    margin-bottom: 60px;
  }

  .success-container h2 {
    font-size: 30px;
    line-height: 36px;
  }
  

  .success-container .stat .number {
    font-size: 72px;
    line-height: 80px;
    margin-bottom: 0px;
  }

  .success-container .stat {
    margin-bottom: 45px;
  }
  
}

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


  
}

/* Statement Block */
.statement-block {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 200px 60px;
}

.statement-block .inner {
  background-color: #fff;
  max-width: 1200px;
  padding: 100px;
  margin: auto;
}

.statement-block h2 {
  font-family: 'futura-pt-bold';
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 60px;
  text-align: center;
}

.statement-block .content * {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.statement-block .content strong {
  color: #00a8cb;
}

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

  .statement-block {
    padding: 160px 30px;
    background-attachment: inherit;
  }


  .statement-block .inner {
    padding: 60px;
  }


  .statement-block h2 {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 40px;

  }

  .statement-block .content * {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  
}

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

  .statement-block {
    padding: 160px 15px;
  }


  .statement-block .inner {
    padding: 30px;
  }


  .statement-block h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 40px;

  }

  .statement-block .content * {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  
}

/* Links Block */

.links-container {
  padding: 100px 15px;
}

.links-container .inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px;
  height: 100%;
}

.links-container * {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.links-container .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.links-container .card .upper{
  padding: 30px;
}

.links-container .card .linkwrap {
  padding: 30px;
  background-color: rgba(0,0,0,0.1);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.links-container .card .linkwrap:hover {
  background-color: rgba(0,0,0,0.2);
}

.links-container .card .linkwrap a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.links-container .card .linkwrap a>img {
  transition: all .3s ease-in-out;
  transform: translateX(0px);
}

.links-container .card .linkwrap:hover a>img {
  transform: translateX(5px);
}

.links-container h4 {
  font-family: 'futura-pt-bold';
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px ) {
  .links-container .inner {
    gap: 30px;
  }
}

@media screen and (max-width: 900px ) {
  .links-container .inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}


