* {
    box-sizing: border-box;
}

:root {
    --dark: #000000;
    --nav-outline: #d8d7d7;
    --white-smoke: #fff;
    --transparent: #0000;
    --black: #181818;
    --main-font: "Montserrat", sans-serif;
    --green: #428921;
    --orange: #f55733;
    --grey: #a0a0a0;
    --yellow: #f5c433;
    --white-grey: #cfcfcf;
	--grey-bg: #fcfcfc;
    --award-z-index: 10;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #252775;
  overflow-x: hidden;
  padding:0;
  margin:0;
}



   header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #ebebeb;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
	  transition: all 0.3s ease;
  z-index: 1000;
      
    }

header.scrolled {
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo img {transition: all 0.3s ease; width:230px;}
	
   header.scrolled .logo img{
     width:200px;
	 transition: all 0.3s ease;
    }

    .nav-desktop {
      display: flex;
      gap: 2rem;
    }

    .nav-desktop a {
      text-decoration: none;
      font-weight: bold;
      color: black;
    }

    .cta-button {
         background: #428921;
    color: white;
    padding: 1.0rem 2rem;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 25px;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: black;
      border-radius: 2px;
      transition: 0.3s;
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile overlay nav */
    .nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 0;
      width: 100%;
      background: white;
      overflow: hidden;
      transition: height 0.4s ease;
      z-index: 999;
      display: flex;
      justify-content: center;
      align-items: center;
	      flex-direction: column;
    }
	
	.nav-overlay a img {
    margin: 0 auto 65px;
    width: 80%;
    display: block;
}

    .nav-overlay.open {
      height: 100%;
    }

    .nav-links {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 1.5rem;
      font-weight: bold;
      color: black;
    }

    .nav-links .cta-button {
      margin-top: 2rem;
    }
	
	

    /* Responsive */
    @media (max-width: 768px) {
      .nav-desktop,
      .cta-button {
        display: none;
      }

      .hamburger {
        display: flex;
      }
	  .logo img {transition: all 0.3s ease; width:200px;}
	
   header.scrolled .logo img{
     width:190px;
	 transition: all 0.3s ease;
    }
	
    }


.width-full {
    border-radius: 2.5rem;
    width: 100%;
}

.width-full.height-full {
    object-fit: cover;
    border-radius: 0;
    height: 100%;
}
 
 .text-small.line-height-medium {
    color: var(--grey);
    line-height: 1.5;
}

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

.title-wrap.title-wrap-large {
    width: 100%;
    max-width: 800px;
}


.text-small-xs {
    font-family: var(--main-font);
    color: var(--grey);
    font-size: .875rem;
    font-weight: 200;
    line-height: 1;
    text-decoration: none;
}
.text-small-xs.padding-top-small {
    padding-top: 3px;
}

.hero-title-wrap  h2 {
    font-family: var(--main-font);
    color: var(--dark);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-size: 52px;
    font-weight: 700;
    line-height:60px;
}

.hero-title-wrap  h2 span { color: var(--green);}

.hero-title-wrap p {font-family: var(--main-font);
    color: var(--dark);
	font-size: 18px;
	line-height:28px;
    font-weight: 500;
	max-width:900px;
	margin:0 auto;
	padding:25px 0 50px;
	}
	
.hero-title-wrap img {
    border-radius: 45px;
}


.space-small {
    height: 12px;
}
.space-medium { height: 45px;}



.container {
    width: 100%;
    margin-top: 0;
    padding: 6rem 6vw;
    display: block;
    position: relative;
}

.home-section {
  
	 /*   height: 100vh;*/
}
 
.hero-title-wrap{    background-color: #ebebeb;
        justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
    display: flex;
	
    flex-direction: column;
    position: sticky;
    top: 0;
    overflow: hidden; padding:60px 0 60px 0;}



	.hero-overlay-img{    background-position: top center;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
    width: 670px;
    height: 700px;
    margin-inline: auto;
    overflow: hidden;}
	
	.hero-overlay-img img {    height: 100%;
    width: 100%;
    margin: 0 auto;
    background-position: center center;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;}



.about-section {
    z-index: 1;
    background-color: var(--white-smoke);
    position: relative;
}

.section-title-subheading {
    font-family: var(--main-font);
    color: var(--dark);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
}
.section-title {
    font-family: var(--main-font);
    color: var(--dark);
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -3px;
    font-size: 52px;
    font-weight: 800;
    line-height: 58px;
}

.service-grid-1 {    transform: translate3d(170%, 0px, 0px);
    opacity: 0;
}
.service-grid-2 { transform: translate3d(100%, 0px, 0px);
    opacity: 0;}
.service-grid-3 {transform: translate3d(-100%, 0px, 0px);  opacity: 0;}
.service-grid-4 {transform: translate3d(-170%, 0px, 0px); opacity: 0;}

.section-title span {color: var(--green);}

.about-wrap {
    height: auto;
    display: flex;
}
.about-innerwrap-left {
    z-index: 1;
    width: 15%;
    position: relative;
}
.about-story-wrap {
    width: 19.5vw;
    position: absolute;
    inset: 50% auto auto 0%;
}
.about-innerwrap-middle {
    width: 65%;
    position: relative;
}
.about-innerwrap-right {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 20%;
    padding-left: 30px;
    display: flex;
}
.text-medium {
    font-family: var(--main-font);
    color: var(--dark);
       font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
}
.text-medium.line-height-small {
    line-height: 1.6;
}

.about-circle-wrap {
   
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    text-decoration: none;
    display: flex
;
    position: absolute;
    inset: 0% auto auto 0%;
}
.about-image-wrap {
    background-color: var(--nav-outline);
    background-image: url(../images/about_1.jpg);
    background-position: 50%;
    background-size: cover;
    border-radius: 2.5rem;
    height: 400px;
    overflow: visible;
}

.about-icon-image { 
transform:translate3d(0px, 0px, 0px) scale3d(5, 5, 5) rotateX(0deg) rotateY(0deg) rotateZ(360deg) skew(0deg, 0deg);
opacity:0;
transform-style:preserve-3d;
will-change:transform;
}

.about-sticky-corner-left-top {
    width: 40px;
    height: 40px;
    position: absolute;
    inset: auto auto 30vh 0%;
    overflow: hidden;
    transform: rotate(90deg);
}
.about-sticky-corner-left-bottom {
    width: 40px;
    height: 40px;
    position: absolute;
    inset: auto auto 0 15%;
    overflow: hidden;
    transform: rotate(90deg);
}
    .about-sticky-corner-left-bottom {
        background-color: var(--transparent);
        inset: auto auto 0 15%;
        transform: rotate(90deg);
    }
	.about-sticky-block-left-bottom {
    background-color: var(--white-smoke);
    border-top-right-radius: 2.5rem;
    width: 15%;
    height: 30vh;
    position: absolute;
    inset: auto auto 0% 0%;
}
	.w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

.about-number-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.about-number-text {
  font-family: var(--main-font);
  font-size: 3rem;
  font-weight: 700;
  line-height: .7;
      color: #333;
}

.about-number-wrap-top {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.about-number-icon {
  font-family: var(--main-font);
  color: var(--green);
  font-size: 2rem;
  font-weight: 600;
  line-height: .5;
}

.service-grid {
  
    display: flex;         overflow: hidden;
}

.service-grid-wrap  {
   
    position: relative;
	    width: 23%;
    margin: 0 1%;
    
}

.service-grid-con { background: #1a1a1a;
    padding: 35px 20px 35px; border-radius: 20px; transition: all 0.3s ease;}
	
	
	.service-grid-con:hover {background: #9cc945; transition: all 0.3s ease;     cursor: pointer;}
	
	.service-grid-con:hover img {
    width: 70%;
	padding: 30px 0 30px;
    margin: 0 auto;
    display: block;
	transition: all 0.3s ease;
}

.service-grid-con:hover  .service-tag {
    position: relative;
    opacity: 1;
    bottom: 0;
	transition: all 0.3s ease;
}

.service-grid-con:hover  .service-tag ul{
  
transition: all 0.3s ease;
}

.service-grid-con  .service-tag ul{
   padding: 15px 0 0 20px;
    margin: 0;
transition: all 0.3s ease;
}
	
.service-grid-con img	{
        width: 80%;
    padding: 80px 0 80px;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.service-title{
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    margin: 25px 0 0;
}

.service-tag {
    position: absolute;
    opacity: 0;
    font-size: 16px;
    color: #fff;
    line-height: 34px;
	    font-weight: 500;
    padding: 0;
    margin: 0; bottom:0;
	transition: all 0.3s ease;
}
.service_num {    position: absolute;
    top: 25px;
    left: 25px;
    color: #cfcfcf;
    font-size: 24px;
    font-weight: 600;}

.container.flex-h {
  display: flex;
}
.approach-section {
  background-color: var(--grey-bg);
  position: relative;
}

.main-sticky-title {
  width: 100%;
  position: sticky;
  top: 8rem;
}

.main-sticky-content {
  border-left: 1px none var(--grey);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 50%;
  padding-top: 15vw;
  display: flex;
  position: relative;
}

.approach-step {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
  display: flex;
}

.approach-title {
     font-family: var(--main-font);
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.approach-step-right {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.approach-step-right a {
    text-decoration: none;
}

.approach-number {
  color: var(--orange);
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: .85;
}

.approach-step-wrap {
  border-left: 1px solid var(--white-grey);
  justify-content: center;
  width: 100%;
  padding-bottom: 6vw;
  display: flex;
  position: relative;
}

.timeline-circle {
  border: 1px solid var(--grey);
  background-color: #fcfcfc;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2vw;
  height: 2vw;
  display: flex;
  position: absolute;
  inset: 0 auto auto -1vw;
}

.timeline-circle-dot {
  background-color: var(--grey);
  border-radius: 50%;
  width: .4vw;
  height: .4vw;
}

.main-sticky-wrapper {
  width: 50%;
}

.approach-image-wrap {
  width: 85%;
  height: 350px;
  position: relative;
}

.approach-image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 2.5rem;
  width: 100%;
  height: 100%;
}

.approach-sticky-block-right-bottom {
  background-color: #fcfcfc;
  border-radius: 2.5rem 0 0;
  width: 10vw;
  height: 6vw;
  position: absolute;
  inset: auto 0% 0% auto;
}

.approach-sticky-corner-left-bottom {
  width: 40px;
  height: 40px;
  position: absolute;
  inset: auto 10vw 0% auto;
  overflow: hidden;
}

.approach-sticky-corner-right-top {
  width: 40px;
  height: 40px;
  position: absolute;
  inset: auto 0% 6vw auto;
  overflow: hidden;
}


.testimonials-section {
  background-color: var(--white-smoke);
  position: relative;
}

.testimonials-vertical-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: space-between;
  width: 33.33%;
  display: flex;
}

.testimonial-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--white-grey);
  background-color: var(--white-smoke);
  border-radius: 2.5rem;
  flex-flow: column;
  width: 100%;
  padding: 1.5rem 1.5rem 1.2rem;
  display: flex;
}

.testimonial-wrap-star {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.testimonial-wrap-reviewer {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.reviewer-image {
  object-fit: cover;
  border-radius: 50%;
  width: 3.5rem;
  max-width: none;
  height: 3.5rem;
  overflow: hidden;
}

.reviewer-info {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  display: flex;
}

.testimonial-outwrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-height: 550px;
  display: flex;
  overflow: clip;
}

.testimonial-star-icon {
  color: var(--yellow);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.testimonials-vertical-wrapper.upslider { animation: marquee 15s linear infinite;}

.testimonials-vertical-wrapper.downslider { animation: marqueedown 15s linear infinite;}

@keyframes marquee {
  0%   { transform: translateY(0%); }
  100% { transform: translateY(-100%); }
}


@keyframes marqueedown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(0%); }
}


.blog-section {
  background-color: var(--grey-bg);
  position: relative;
}

.blog-tabs-wrap {
  flex-flow: column;
  display: flex;
}

.blog-item {  opacity: 0;
transform: translateY(50px) scale(0.95);}

.blog-tabs-menu {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.tab-button {
  background-color: var(--black);
  color: var(--white-smoke);
  border-radius: 2.5rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25rem;
  transition: all .2s;
  display: flex;
}

.tab-button:hover {
  background-color: var(--orange);
}

.tab-button.w--current {
  background-color: var(--orange);
  font-family: var(--main-font);
  border-radius: 2.5rem;
}

.blog-collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  width: 100%;
  text-decoration: none;
  display: flex;
    transition: all .5s ease-out;
}

.blog-link:hover .blog-thumbnail-image img {
    transform: translate3d(0px, 0px, 0px) scale3d(1.3, 1.3, 1) rotateX(0deg) rotateY(0deg) rotateZ(7deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
	  transition: all .5s ease-out;
}

.blog-link .blog-thumbnail-image img {transition: all .5s ease-out;}

.blog-link:hover .blog-title{    color: var(--green);}

.blog-thumbnail-image {
  border-radius: 2.5rem;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.blog-content {
  grid-column-gap: .5rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.blog-content-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.text-small-xs {
  font-family: var(--main-font);
  color: var(--grey);
  font-size: .875rem;
  font-weight: 200;
  line-height: 1;
  text-decoration: none;
}

.text-small-xs.blog-type {
  border: 1px solid var(--white-grey);
  color: var(--grey);
  border-radius: 2.5rem;
  flex: 0 auto;
  padding: 6px 12px;
  display: inline-block;
}

.text-small-xs.padding-top-small {
  padding-top: 3px;
}

.blog-date-wrap {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-medium {
  color: var(--grey);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
}

.blog-title {
  font-family: var(--main-font);
  color: var(--dark);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
}

.next {
  font-family: var(--main-font);
  color: var(--grey);
  font-size: 1.25rem;
  line-height: 1;
}

.pagination {
  margin-top: 2rem;
}

.previous {
  font-family: var(--main-font);
  color: var(--grey);
  font-size: 1.25rem;
  line-height: 1;
}

.blog-template-content-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-hero-image {
  border-radius: 0;
  width: 100%;
  height: 30vw;
  overflow: hidden;
}

.content-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.content-section.animate {
  opacity: 1;
  transform: translateY(0);
}


.footer-section {
  background-color: var(--white-grey);
  padding: 4rem 6vw 2.5rem;
  position: relative;
}

.footer-top {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.footer-nav {
  grid-column-gap: 2rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-nav-link {
  font-family: var(--main-font);
  color: var(--dark);
  font-size: 17px;
    font-weight: 500;
  text-decoration: none;
  transition: all .2s;
}

.footer-nav-link:hover {
  color: var(--green);
}

.footer-logo-image {
  width: 14vw;
}

.footer-bottom {
  border-top: 1px solid var(--dark);
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
}

.footer-bottom-right {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-bottom-right a.footer-nav-link {
  font-size: 15px;
font-weight: 500;}

.footer-copyright-link {
  color: var(--grey);
  transition: all .2s;
}

.footer-copyright-link:hover {
  color: var(--green);
}

.cta-flex {   justify-content: space-between;
    align-items: center;
    display: flex;}
	
	.cta-btn {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.cta-btn a {    background: var(--green);
    padding: 20px 50px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    font-size: 21px;
    border-radius: 10px;}


.title-wrap { opacity: 0;
transform: translateY(50px) scale(0.95);}

@media screen and (min-width: 1440px) {
  
	    .title-wrap.title-wrap-large {
        width: 100%;
        max-width: 850px;
    }
	    .section-title-subheading {
        text-transform: capitalize;
    }
	    .about-innerwrap-right {
        grid-column-gap: 50px;
        grid-row-gap: 50px;
        padding-left: 40px;
    }
	.about-story-wrap {
        top: 45%;
    }
	.text-medium.line-height-small, .text-medium.line-height-medium {
        color: var(--dark);
    }
	    .text-medium.line-height-small {
        color: var(--dark);
    }
	    .about-circle-wrap {
        width: 120px;
        height: 120px;
        inset: 0% auto auto 0%;
    }
	    .about-image-wrap {
        background-image: url(../images/about_1.jpg);
        height: 500px;
    }
	    .about-sticky-corner-left-top {
        background-color: var(--transparent);
        inset: auto auto 30vh 0;
        transform: rotate(90deg);
    }
	

}


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

.blog-thumbnail-image {
    height: 250px;
}
}




@media screen and (max-width: 991px) {
	
	.service-grid {
    display: flex;
    flex-wrap: wrap;
}
	
	.service-grid-wrap {
    position: relative;
    width: 48%;
    margin: 10px 1%;
}
    .container {
        padding-top: 6rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
	
	.blog-collection-list {
        grid-template-columns: 1fr;
    }
	    .blog-thumbnail-image {
        height: 45vw;
    }
	    .footer-top {
        flex-flow: row;
        align-items: flex-start;
    }
	    .footer-logo {
        width: 35%;
    }
	    .footer-nav {
        grid-column-gap: 2rem;
        grid-row-gap: 1.5rem;
        flex-flow: wrap;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }
	    .footer-bottom {
        flex-flow: row;
        align-items: flex-start;
    }
	    .footer-bottom-left {
        width: 50%;
    }
	    .footer-bottom-right {
        flex-flow: wrap;
        width: 50%;
    }
	.section-title, .hero-title-wrap h2 {
        font-size: 2rem;
        line-height: 1.1;
    }
	.cta-flex {
    justify-content: space-between;
    align-items: center;
    display: block;
}
.cta-btn {
    padding: 20px 0 0 0;
}

 .about-wrap {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: column;
  }

  .about-innerwrap-left {
    width: 100%;
    display: flex;
  }

  .about-innerwrap-middle {
    order: -1;
    width: 100%;
  }

  .about-innerwrap-right {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 0;
  }

  .about-sticky-block-left-bottom {
    width: 18vw;
    height: 18vh;
  }

  .about-sticky-corner-left-bottom {
    left: 18vw;
  }

  .about-sticky-corner-left-top {
    bottom: 18vh;
  }

  .about-story-wrap {
    width: 100%;
    position: relative;
  }

  .about-circle-wrap {
    width: 15vw;
    height: 15vw;
    display: flex;
    position: absolute;
    inset: -150% auto auto 0%;
  }

  .about-icon-wrap {
    width: 10vw;
    height: 10vw;
  }

  .about-number-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .about-number-text {
    font-size: 3.5rem;
  }

}

@media screen and (max-width: 768px) {
	
	.hero-overlay-img {
	width:90%;
        height: 300px;
    }

.hero-overlay-img  img {border-radius:15px;}	
	    .footer-bottom {
                flex-flow: column;
        align-items: flex-start;
        display: flex;
    }
	
	      .footer-top {
        flex-flow: unset;
        align-items: unset;
        display: block;
    }
	    .footer-logo {
        width: 100%;
    }
	    .footer-nav {
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }
	   .footer-bottom-left {
        width: 100%;
		        order: 2;
    }
	    .footer-bottom-right {
                    flex-flow: wrap;
        width: 100%;
        display: flex;
        order: 1;
        padding: 0 0 15px;
        justify-content: flex-start;
    }
	.footer-logo-image {
    width: 27vw;
    padding: 0 0 20px;
}
.footer-nav-link {	
    font-size: 16px;
}
	
}


@media screen and (max-width: 479px) {
	
	  .about-innerwrap-right {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .about-sticky-block-left-bottom {
    width: 27vw;
    height: 10vh;
  }

  .about-sticky-corner-left-bottom {
    left: 27vw;
  }

  .about-sticky-corner-left-top {
    bottom: 10vh;
  }

  .about-circle-wrap {
    width: 25vw;
    height: 25vw;
    top: -78%;
  }
  
  .about-icon-image {width:100%;}

  .about-icon-wrap {
    width: 14vw;
    height: 14vw;
  }

  .about-number-wrap {
    justify-content: flex-start;
    align-items: center;
  }

  .about-number-text {
    font-size: 3rem;
  }
	
	.service-grid-wrap {

    width: 98%;
    margin: 10px 1%;
}


  .approach-image-wrap {
    width: 100%;
    height: 350px;
  }

  .approach-sticky-block-right-bottom {
    width: 25vw;
    height: 25vw;
  }

  .approach-sticky-corner-left-bottom {
    right: 25vw;
  }

  .approach-sticky-corner-right-top {
    bottom: 25vw;
  }
  
	.approach-title {font-size:1.25rem;}
	
	.timeline-circle {display:none;}
	
	.approach-step-wrap { border-left-style: none;
    padding-bottom: 8vw;}
	
	.container.flex-h.flex-v { flex-flow: column;
    padding-top: 3rem;
    padding-bottom: 3rem;}
	
	.main-sticky-wrapper {width:100%;}
	
	.main-sticky-content, .approach-step {width:100%;}
	
	.testimonials-vertical-wrapper {width:100%;}
	
	.testimonials-vertical-wrapper.hide-in-portrait, .testimonials-vertical-wrapper.hide-in-tablet {display:none;}
	
	    .blog-content-top {
        grid-column-gap: .5rem;
        grid-row-gap: .5rem;
        justify-content: flex-start;
        align-items: center;
    }
	
	.cta-btn a {
    padding: 15px 35px;
    font-size: 18px;
}
    .container {
        padding: 3rem 1rem 3rem;
    }
	.section-title, .hero-title-wrap h2 {
        margin-left: 0;
        font-size: 1.5rem;
    }
	.hero-title-wrap p {font-size: 16px;
    line-height: 26px;}
	
	.hero-title-wrap {padding:50px 0px;}
	    .blog-title {
        font-size: 1.25rem;
    }
	
	.hero-overlay-img {
    height: 300px;
	
	}
	.blog-thumbnail-image {
        height: 55vw;
    }
	    .footer-nav {
        grid-row-gap: 1rem;
		}
	.footer-bottom-right {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1rem;
	}
	.footer-bottom-right a.footer-nav-link {
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    display: block;

}
	.footer-section {
    padding: 2.5rem 6vw 2.5rem;
	}
	
	.footer-logo-image {
        width: 60%;
        padding: 0 0 20px;
    }
}

