body {
  margin: 0;
  font-family: "aktiv-grotesk",sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 300;
  background-attachment: fixed;
  background-image: url("images/dotbg.svg");
}
.aktiv{
  font-family: "aktiv-grotesk",sans-serif!important;
}

.strict-x {
  overflow-x: hidden !important;
}
.row{
  margin:0 -20px;
  display: flex;
}
.col-1{
  flex-basis: 8.33%;
  padding:0 20px;
}
.col-11{
  flex-basis: 91.666%;
  padding:0 15px;
}

div, p, h1, h2, h3, h4, h5 {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, button {
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
}
.line{
  width:80%;
  height:2px;
  background: #1d1c1c;
}

p {
  font-weight: 400;
}
a{
  font-family: "aktiv-grotesk",sans-serif;
}

.center-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top-menu {
  position: fixed;
  transition: all 0.3s ease;
  left: 0;
  right: 0;
  padding: 20px;
  top: 0;
  z-index: 5;
  display: flex;
}
.top-menu .left {
  flex-basis: 150px;
}
.top-menu .right {
  flex-basis: calc(100% - 150px);
  text-align: right;
}
.top-menu .right a {
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
  animation-delay: 0.9s;
  animation: faderight 0.3s ease 1;
  transform: translateX(0px);
  position: relative;
}
.top-menu .right a::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: all 0.7s cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: center;
}
.top-menu .right a:hover::after {
  transform: scaleX(0.8);
}
.top-menu .right a.active {
  color: #fc6854;
}
.top-menu .right a.active::after {
  background-color: #fc6854;
}

@keyframes faderight {
  0% {
    transform: translateX(20px);
  }
}
.mob-menu {
  display: none;
}

.mobile-drawer {
  position: fixed;
  transform: translate3d(100%, 1px, 1px);
  top: 0;
  right: 0;
  background: white;
  background-image: url("images/dotbg.svg");
  z-index: 10;
  height: 100%;
  width: 200px;
  font-family: "futura-pt", sans-serif;
  padding: 25px;
  border-left: 1px solid #dbdbdb;
  transition: all 0.3s ease;
}
.mobile-drawer ul {
  list-style: none;
  margin-top: 40px;
  -moz-padding-start: 0;
  -webkit-padding-start: 0;
}
.mobile-drawer ul li {
  padding: 7px 0;
}
.mobile-drawer ul a {
  color: #1d1c1c;
  text-decoration: none;
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.mobile-drawer ul a.active {
  color: #ff286f;
}
.mobile-drawer button {
  color: black;
  background: white;
  height: 50px;
  width: 50px;
  border: 1px solid #dbdbdb;
  border-radius: 50%;
  float: right;
  transform: scale(0.8);
  transform-origin: top-right;
}

.mobile-drawer.active {
  transform: translate3d(0, 1px, 1px);
}

.fp-controlArrow.fp-next {
  height: 68px;
  width: 68px;
  background: url("images/arrow-right.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  background-position: center;
}

.fp-controlArrow.fp-prev {
  height: 68px;
  width: 68px;
  background: url("images/arrow-left.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  border: 0;
  background-position: center;
}

.top-menu.active a {
  opacity: 0;
  transform: translateX(20px);
  display: none;
}

.top-menu.active #Reckonsys {
  display: none;
}

.top-menu.active .mob-menu {
  display: inline-block;
  opacity: 1;
  transform: translateX(0px);
}

.top-menu.active #svg-menu-icon {
  fill: black;
}

.cto-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: url("images/reckon.jpg");
  will-change: transform;
  transform: translate3d(10px);
  background-repeat: no-repeat;
  transition: transform 0.9s ease;
  background-size: cover;
  position: relative;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
}
.cto-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-245deg, rgba(0, 0, 0, 0.95) 0%, rgba(87, 14, 103, 0.89) 51%, rgba(211, 28, 74, 0.88) 100%);
  opacity: 0.9;
}
.cto-wrapper .overlay{

}

.hero-text {
  color: #fff;
  position: relative;
  padding: 20px;
  z-index: 1;
  text-align: left;
  transform: translate(500px);
  transition: all 0.9s ease;
  opacity: 0;
  max-width: 1000px;
}
.hero-text h1 {
  font-size: 94px;
  line-height: 1;
  margin: 10px 0;
  transition: all 0.9s ease;
}
.hero-text h1 span {
  font-size: 54px;
  font-weight: 400;
}
.hero-text p {
  font-size: 20px;
  max-width: 600px;
  opacity: 0.5;
  line-height: 1.6;
  transform: translate(500px);
  transition: all 1.2s ease;
  opacity: 0;
}

.hero-btn {
  background-image: linear-gradient(262deg, rgba(255, 120, 65, 0.43) 0%, #FB0389 100%);
  background-color: transparent;
  border: 1px solid #FC6854;
  box-shadow: 2px 4px 4px 0 rgba(224, 16, 74, 0.23);
  border-radius: 99px;
  font-size: 15px;
  text-transform: uppercase;
  padding: 15px 40px;
  color: white;
  font-weight: 600;
  margin: 20px 0;
  transform: translate(500px);
  transition: all 1.1s ease;
  opacity: 0;
}
.hero-btn svg {
  margin-left: 20px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.hero-btn:hover {
  background-image: linear-gradient(-262deg, #FF7A43 0%, #FB0389 100%);
  border: 1px solid #FC6854;
  box-shadow: 10px 4px 9px 0 rgba(224, 16, 74, 0.52);
  border-radius: 99px;
}
.hero-btn:hover svg {
  transform: translateX(10px);
}

.slide-counter {
  font-size: 12px;
  font-weight: 600;
  display: none;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1.5s ease;
}
.slide-counter .dash {
  width: 100px;
  display: inline-block;
  height: 2px;
  background: white;
  vertical-align: middle;
}

.career-wrapper {
  background-image: url("images/cto.jpg");
}

.agimatu {
  background-image: url("images/agimatu.jpg");
}

.career-wrapper .overlay {
  background-image: linear-gradient(245deg, rgba(0, 0, 0, 0.95) 0%, rgba(87, 14, 103, 0.89) 51%, rgba(211, 28, 74, 0.88) 100%);
}

.slide.active .hero-text h1, .slide.active .hero-text p {
  transform: translateX(0);
  opacity: 1;
}

.slide.active .hero-text {
  opacity: 1;
  transform: translateX(0);
}

.goal-wrapper {
  overflow: hidden;
  max-width: 100vw;
}

#section2 {
  overflow-x: hidden;
}

.red-circle {
  position: absolute;
  right: 0;
  top: calc(50% - 341.5px);
  opacity: 0.3;
  width: 640px;
  overflow-x: visible;
}
.red-circle svg {
  position: absolute;
  left: 0;
  right: -150px;
  width: 100%;
  transform-origin: 50% 50%;
}

.special-quote {
  display: flex;
  position: relative;
  z-index: 1;
}
.special-quote .left {
  flex-basis: 320px;
  text-align: right;
  position: relative;
  padding: 20px;
}
.special-quote .left .title {
  font-size: 41px;
  margin: 0;
  color: #343131;
}
.special-quote .left .subtitle {
  font-size: 24px;
  margin: 0;
  margin-top:10px;
  line-height: 1.2;
  font-weight: 400;
  color: #DE2C67;
  font-style: italic;
  font-family: "aktiv-grotesk",sans-serif!important;
}
.special-quote .left .pattern {
  position: absolute;
}
.special-quote .left .text {
  position: relative;
  z-index: 1;
}
.special-quote .right {
  flex-basis: calc(100% - 300px);
  text-align: left;
  padding: 20px 20px 20px 40px;
}
.special-quote .right .quote-text {
  font-size: 27px;
  position: relative;
  line-height: 1.6;
  margin: 0;
  color: #4A4A4A;
  margin-bottom: 40px;
  max-width: 600px;
}
.special-quote .right .quote-text:after {
  content: "";
  height: 2px;
  width: 100px;
  background: #DE2C67;
  display: inline-block;
  position: absolute;
  bottom: -30px;
  left: 0;
}
.special-quote .right .more-link {
  margin-top: 40px;
}
.goal-title{
  margin-top:0;
  font-size:23px;
}

.more-link {
  display: inline-block;
  padding: 5px 20px 5px 35px;
  border-left: 5px solid #DE2C67;
  color: black;
  text-decoration: none;
  margin: 10px 0;
  font-size: 18px;
  font-family: Futura, sans-serif;
  font-weight: 600;
}
.more-link svg {
  margin-left: 20px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.more-link:hover {
  color: #DE2C67;
}
.more-link:hover svg {
  transform: translateX(20px);
}

.service-wrapper {
  height: 100vh;
  display: flex;
  overflow: hidden;
}
.service-wrapper .left {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-wrapper .right {
  flex-basis: 40%;
  background: url("images/servicebg.jpg");
  background-position: center;
  background-size: cover;
  z-index: 4;
  will-change: transform;
}
.service-wrapper .right .more-link {
  padding: 20px 20px;
  background: white;
  position: absolute;
  bottom: 20px;
  left: -20px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 635px;
  margin: 0 auto;
}
.service-list .service-list-item {
  flex-basis: 50%;
  padding: 10px 10px;
}
.service-list h2 {
  margin: 10px 0;
  font-size: 18px;
}
.service-list p {
  color: #656668;
  line-height: 1.4;
  font-size: 15px;
}

.polygon {
  position: absolute;
  opacity: 0.3;
}

h1 .more-link {
  margin-left: 30px;
  vertical-align: middle;
}

.portfolio-wrapper {
  display: flex;
  margin: 20px auto;
  overflow-y: visible;
}
.portfolio-wrapper .image-side {
  flex-basis: 40%;
}
.portfolio-wrapper .image-side img {
  width: 100%;
}
.portfolio-wrapper .content-side {
  max-width: 700px;
  margin: 7vh auto;
  position: relative;
  display: flex;
}
.portfolio-wrapper .content-side .pattern {
  position: absolute;
}
.portfolio-wrapper .content-side .left {
  flex-basis: 52%;
  position: relative;
  z-index: 2;
}
.portfolio-wrapper .content-side .left p {
  color: #DE2C67;
  font-size: 15px;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 600;
}
.portfolio-wrapper .content-side .left h1 {
  font-size: 41px;
  line-height: 1.1;
  max-width: 300px;
}
.portfolio-wrapper .content-side .left a {
  margin-top: 40px;
}
.portfolio-wrapper .content-side .right {
  flex-basis: 48%;
  position: relative;
  z-index: 3;
}
.portfolio-wrapper .content-side .right p {
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.6;
  margin-top: 75px;
}

.portfolio-wrapper.reverse {
  flex-direction: row-reverse;
}

.text-overlay {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0.6;
}

.text-overlay.left {
  height: 100%;
  position: absolute;
  right: auto;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-wrapper.client-wrapper .right {
  background: url("images/clientbg.jpg");
  background-size: cover;
}

.client-content-wrapper {
  max-width: 650px;
  margin: 5px auto;
  padding: 20px;
}

.client-lists {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  opacity: 0.7;
}
.client-lists .client-list-item {
  flex-basis: 33%;
  padding-right: 10px;
}
.client-lists .client-list-item img {
  width: 100%;
}

.footer-question {
  display: flex;
  padding: 20px;
}
.footer-question .left {
  flex-basis: 60%;
}
.footer-question .left h1 {
  font-size: 43px;
  margin: 0;
}
.footer-question .right {
  flex-basis: 40%;
  text-align: right;
}

#section7 .footer-wrapper .top {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#section7 .footer-wrapper .bottom {
  height: 40vh;
}

footer {
  background-image: linear-gradient(262deg, #E01414 0%, #E6479D 100%);
  height: 40vh;
  color: white;
}
footer .center-container {
  padding: 0 20px;
}
footer .main {
  padding: 10vh 0;
  display: flex;
}
footer .main .col:first-child {
  flex-basis: 200px;
}
footer .main .col:nth-child(2) {
  flex-basis: calc(100% - 350px );
}
footer .main .col:nth-child(2) a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  padding: 7px 20px;
  display: inline-block;
  font-weight: 600;
  display: inline-block;
}
footer .main .col:nth-child(3) {
  flex-basis: 150px;
  text-align: right;
}
footer .main .col:nth-child(3) a {
  margin: 0 5px;
}
footer .sub {
  display: flex;
}
footer .sub .left {
  flex-basis: 50%;
  text-align: left;
}
footer .sub .right {
  flex-basis: 50%;
  text-align: right;
}
footer .sub .right{
  position: relative;
}
footer .sub .right:before{
  content: "A Member of";
  font-size: 10px;
  position: absolute;
  bottom: calc(100% + 3px);
  color: white;
  width: 100%;
  left: 0;
}


.splash {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1) translateY(0%);
  transition: all 2s ease;
  opacity: 1;
}
.splash .logo {
  animation: rotate3d 0.7s ease-in-out infinite;
  transform-style: preserve-3d;
}

.splash.remove {
  transform: scale(1.3) translateY(-100%);
  opacity: 0;
}

@keyframes rotate3d {
  0% {
    transform: scale(3) translate3d(1px, 2px, 10px) rotateY(0deg);
  }
  100% {
    transform: scale(3) translate3d(1px, 2px, 10px) rotateY(360deg);
  }
}
.testi-wrapper {
  position: relative;
}
.testi-wrapper .navigator {
  position: absolute;
  bottom: -15px;
  z-index: 2;
  left: calc(40% - 160px);
}
.testi-wrapper .navigator .prev, .testi-wrapper .navigator .next {
  height: 80px;
  width: 80px;
  background: white;
  border: 1px solid #dbdbdb;
  display: inline-block;
  margin: 0;
  padding: 30px 20px;
}
.testi-wrapper .navigator .next {
  position: relative;
  margin-left: -5px;
}
.testi-wrapper .testi {
  display: none;
  animation: fadein 1.8s ease 1;
}
.testi-wrapper .testi .left {
  flex-basis: 40%;
  position: relative;
}
.testi-wrapper .testi .left .image-container {
  max-width: 400px;
}
.testi-wrapper .testi .left img {
  width: 100%;
}
.testi-wrapper .testi .right {
  flex-basis: 60%;
  padding: 30px;
}
.testi-wrapper .testi .right .quote {
  font-size: 20px;
  line-height: 1.8;
  color: #4A4A4A;
  position: relative;
}
.testi-wrapper .testi .right .quote:after {
  content: "";
  background: url("images/quote.svg");
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0px;
  left: 50px;
  height: 400px;
  width: 400px;
  z-index: 1;
}
.testi-wrapper .testi .right h4 {
  margin-bottom: 0;
  font-size: 20px;
  color: #E01414;
}
.testi-wrapper .testi .right h5 {
  margin-top: 0;
  opacity: 0.4;
}
.testi-wrapper .testi.active {
  display: flex;
}

/* animations*/
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#section1 .pattern {
  transform: scale(0);
  transition: all 1s ease;
}
#section1 .title {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1.2s ease;
}
#section1 .subtitle {
  transform: translateX(-300px);
  opacity: 0;
  transition: all 1.3s ease;
}
#section1 .quote-text {
  transform: translateX(400px);
  opacity: 0;
  transition: all 1.3s ease;
}
#section1 .more-link {
  transform: translateY(200px);
  opacity: 0;
  transition: all 1.5s ease;
}
#section1 .red-circle {
  transform: translateX(-200px);
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.3s;
}

#section1.active .pattern {
  transform: scale(1);
}
#section1.active .title {
  transform: translateX(0px);
  opacity: 1;
}
#section1.active .subtitle {
  transform: translateX(0px);
  opacity: 1;
}
#section1.active .quote-text {
  transform: translateX(0);
  opacity: 1;
}
#section1.active .more-link {
  transform: translateY(0px);
  opacity: 1;
}
#section1.active .red-circle {
  transform: translateX(0px);
  opacity: 0.3;
}

#section2 h1 {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 1s ease;
}
#section2 .service-list .service-list-item {
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.3s ease;
}
#section2 .service-list .service-list-item:nth-child(2) {
  transform: translateY(150px);
  opacity: 0;
  transition: all 1.3s ease;
}
#section2 .service-list .service-list-item:nth-child(3) {
  transform: translateY(200px);
  opacity: 0;
  transition: all 1.3s ease;
  transition-delay: 0.1s ease;
}
#section2 .service-list .service-list-item:nth-child(4) {
  transform: translateY(300px);
  opacity: 0;
  transition: all 1.3s ease;
  transition-delay: 0.2s ease;
}
#section2 .more-link {
  transform: translateY(200px);
  opacity: 0;
  transition: all 1.5s ease;
}
#section2 .right {
  position: relative;
}
#section2 .right:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: white;
  transform: scaleY(1);
  transform-origin: 0% 0%;
  transition-delay: 0.5s;
  transition: all 1s ease;
}
#section2 .polygon {
  transform: rotate(145deg);
  transition: all 2s ease;
}

#section2.active h1 {
  transform: translate(0);
  opacity: 1;
}
#section2.active .service-list .service-list-item {
  transform: translateY(0);
  opacity: 1;
}
#section2.active .more-link {
  transform: translate(0px);
  opacity: 1;
}
#section2.active .right:after {
  transform: scaleY(0);
}
#section2.active .polygon {
  transform: rotate(0);
}

#section3 .header, #section5 .header, #section4 .header {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 1.2s ease;
}
#section3 .image-side, #section5 .image-side, #section4 .image-side {
  transform: translateX(-200px);
  opacity: 0;
  transition: all 1.1s ease;
  will-change: transform;
}
#section3 .reverse .image-side, #section5 .reverse .image-side, #section4 .reverse .image-side {
  transform: translateX(200px);
}
#section3 h1, #section5 h1, #section4 h1 {
  transform: translateY(300px);
  opacity: 0;
  transition: all 1.2s ease;
}
#section3 .left p, #section5 .left p, #section4 .left p {
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.2s ease;
}
#section3 .right p, #section5 .right p, #section4 .right p {
  transform: translateY(400px);
  opacity: 0;
  transition: all 1.2s ease;
}
#section3 .left .more-link, #section5 .left .more-link, #section4 .left .more-link {
  transform: translateY(500px);
  opacity: 0;
  transition: all 1.2s ease;
}
#section3 .pattern, #section5 .pattern, #section4 .pattern {
  transform: scale(0.3);
  transition: all 1.2s ease;
  will-change: transform;
  opacity: 0;
}
#section3 .text-overlay, #section5 .text-overlay, #section4 .text-overlay {
  transform: translateY(-400px);
  transition: all 1.2s ease;
  opacity: 0;
}

#section3.active .header, #section5.active .header, #section4.active .header {
  transform: translate(0);
  opacity: 1;
}
#section3.active .image-side, #section5.active .image-side, #section4.active .image-side {
  transform: translate(0);
  opacity: 1;
}
#section3.active .left p, #section3.active .text-overlay, #section5.active .left p, #section5.active .text-overlay, #section4.active .left p, #section4.active .text-overlay {
  transform: translate(0);
  opacity: 1;
}
#section3.active h1, #section3.active .left .more-link, #section3.active .right p, #section3.active .pattern, #section5.active h1, #section5.active .left .more-link, #section5.active .right p, #section5.active .pattern, #section4.active h1, #section4.active .left .more-link, #section4.active .right p, #section4.active .pattern {
  transform: translate(0) rotate(0);
  opacity: 1;
}
#section3.active .pattern, #section5.active .pattern, #section4.active .pattern {
  transform: scale(1);
  opacity: 1;
}

#section6 h1 {
  transform: translateY(60px);
  transition: all 1.1s ease;
  opacity: 0;
}
#section6 .client-list-item {
  transform: translateY(30px);
  transition-timing-function: ease-out;
  opacity: 0;
}
#section6 .polygon {
  transform: rotate(-145deg);
  transition: all 2s ease;
}
#section6 .right {
  position: relative;
}
#section6 .right:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: white;
  transition: scaleY(1);
  transform-origin: 0% 0%;
  transition: all 1s ease-out;
}

#section6.active h1, #section6.active .client-list-item {
  transform: translate(0) !important;
  opacity: 1;
}
#section6.active .polygon {
  transform: rotate(0deg);
}
#section6.active .right:after {
  transform: scaleY(0);
}

#section0 .slide-counter {
  transform: translateX(30px);
  opacity: 0;
}
#section0 h1 {
  transform: translateX(100px);
  opacity: 0;
}
#section0 p {
  transform: translateX(200px);
  opacity: 0;
}
#section0 .hero-btn {
  transform: translateX(250px);
  opacity: 0;
}

#section0.active .slide-counter, #section0.active h1, #section0.active .hero-btn {
  transform: translateX(0);
  opacity: 1;
}
#section0.active p {
  transform: translateX(0);
  opacity: 0.6;
}

#section7 h1 {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1s ease;
}
#section7 .more-link {
  transform: translateX(100px);
  opacity: 0;
  transition: all 1.3s ease;
}

#section7.active h1, #section7.active .more-link {
  transform: translateX(0);
  opacity: 1;
}

#section8 .testi .left {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.9s ease;
  transition-delay: 0.6s;
}
#section8 .navigator {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 1.3s;
}
#section8 .testi .right h1 {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.5s ease;
  transition-delay: 0.7s;
}
#section8 .testi .right p {
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.6s ease;
  transition-delay: 0.8s;
}
#section8 .testi .right h4 {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.7s ease;
  transition-delay: 0.9s;
}
#section8 .testi .right h5 {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
  transition-delay: 1.2s;
}

#section8.active .testi .left, #section8.active .navigator {
  opacity: 1;
  transform: translateY(0);
}
#section8.active .testi .right h1, #section8.active .testi .right p, #section8.active .testi .right h4, #section8.active .testi .right h5 {
  transform: translateY(0);
  opacity: 1 !important;
}

/*about*/
.pattern-body {
  background-image: url("images/dotbg.svg");
  background-attachment: fixed;
}
.pattern-body .quote-text {
  font-size: 29px !important;
}
.pattern-body .special-quote {
  margin: 0;
}
.pattern-body footer {
  height: auto;
}
.pattern-body #section7 {
  margin-top: -100px;
}

.top-menu.white-theme {
  background: white;
}
.top-menu.white-theme a {
  color: #343131;
}
.top-menu.white-theme a:after{
  background-color: #343434;
}
.top-menu.white-theme a.active {
  color: #DE2C67;
}
.top-menu.white-theme #Reckonsys {
  fill: black;
}

.about-main {
  margin-top: 8vh;
  padding: 30px; 
}
.about-main label{
  font-weight:700;
  letter-spacing: 1px;
  margin:0;
  font-size: 13px;
}
.about-main .line{
  margin: 10px 0;
}

.about-main h1 {
  font-size: 53px;
  margin-top:10vh;
  line-height: 1.3;
  letter-spacing: -0.3;
  max-width: 950px;
}
.about-main p{
  max-width: 960px;
  line-height: 1.6;
  font-size: 24px;
  color:#4A4A4A;

}
.about-main h1 .hl {
  display: inline-block;
  background-image: linear-gradient(-262deg, #E01414 0%, #E6479D 100%);
  padding: 0 20px;
  color: white;
}

.about-sathish {
  display: flex;
  margin: 30px auto;
  flex-direction: row-reverse;
}
.about-sathish a{
  display: inline-block;
  margin-top:10px;
}
.about-sathish .content{
  max-width: 600px;
  margin:0 auto;
}
.about-sathish .content h1{
  margin-top:0;
}
.about-sathish .left {
  width: 60%;
}
.about-sathish .left h4 {
  font-size: 24px;
  margin: 0;
}
.about-sathish .left h3 {
  margin: 0;
}
.about-sathish .left p {
  font-size: 18px;
  color: #4A4A4A;
  line-height: 1.7;
  max-width: 580px;
}
.about-sathish .right {
  width: 40%;
}
.about-sathish .right img {
  width: 100%;
  position: relative;
}
.team-quote{
  margin: 100px auto;
}
.team-quote .special-quote .right .quote-text{
  max-width:800px;
  font-size:22px;
}

.team-grid {
  display: flex;
  margin-top: 200px;
}
.team-grid .col {
  flex-basis: 25%;
}
.team-grid .col:nth-child(2), .team-grid .col:nth-child(3),.team-grid .col:nth-child(4) {
  position: relative;
  transform: translateY(-5vw);
}
.team-grid .team-list-item {
  border: 3px solid white;
  position: relative;
  overflow: hidden;
}
.team-grid .team-list-item img {
  width: 100%;
}
.team-grid .team-list-item .overlay {
  background-image: linear-gradient(-180deg, rgba(49, 49, 49, 0) 0%, #000000 100%);
  bottom: 0;
  left: 0;
  width: 100%;
  position: absolute;
  padding: 20px;
  color: white;
  transform: translateY(100%);
  transition: all 0.3s ease;
}
.team-grid .team-list-item .overlay h3 {
  margin: 0;
  font-size:20px;
}
.team-grid .team-list-item .overlay p {
  margin: 0;
  opacity: 0.6;
}
.team-grid .team-list-item .overlay img {
  transition: all 1s ease;
}
.team-grid .team-list-item:hover .overlay {
  transform: translate(0);
}
.team-grid .team-list-item:hover img {
  -webkit-filter: brightness(80%) contrast(120%);
}

.career-hero {
  height:600px;
  margin-bottom: 100px;
  background-image: url("images/career-cover.jpg");
  background-position: top;
  background-size: cover;
  overflow: visible;
}
.career-hero .center-container {
  height: 600px;
  position: relative;
}

.box-link {
  background-image: linear-gradient(-262deg, #E01414 0%, #E6479D 100%);
  color: white;
  text-decoration: none;
  position: absolute;
  bottom: -30px;
  right: 20px;
  padding: 40px 30px;
  font-size: 20px;
  font-weight: 700;
}
.box-link svg {
  vertical-align: middle;
  margin-left: 50px;
}

.row {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
.row .col {
  flex-basis: 33.33%;
  padding: 0 15px;
}

.drive-force {
  margin: 40px 0;
}
.drive-force p {
  line-height: 1.6;
  color: #4A4A4A;
}

.grid-parent {
  display: flex;
}
.grid-parent .left {
  flex-basis: 40vw;
  height: 40vw;
}
.grid-parent .left .image-item {
  height: 100%;
}
.grid-parent .right {
  flex-basis: 60%;
  height: 40vw;
}
.grid-parent .right .top, .grid-parent .right .bottom {
  height: 20vw;
}
.grid-parent .right .top {
  display: flex;
}
.grid-parent .right .top .image-item {
  height: calc(100% - 10px);
}
.grid-parent .right .top .col:first-child {
  flex-basis: 20vw;
}
.grid-parent .right .top .col:nth-child(2) {
  flex-basis: calc(100% - 20vw);
}
.grid-parent .right .bottom {
  display: flex;
  height: 20vw;
}
.grid-parent .right .bottom .col:first-child {
  width: 50%;
}
.grid-parent .right .bottom .col:first-child .image-item {
  height: 100%;
}
.grid-parent .right .bottom .col:last-child {
  height: calc(20vw - 70px);
  width: 50%;
}
.grid-parent .right .bottom .col:last-child .image-item {
  height: 100%;
}

.image-item {
  margin: 5px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.image-item.special-col {
  border: 0;
  background-image: linear-gradient(262deg, #E01414 0%, #E6479D 100%);
  color: white;
  padding: 20px;
  position: relative;
}
.image-item.special-col h4 {
  margin: 0;
  opacity: 0.6;
}
.image-item.special-col h1 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-size: 1.8vw;
  line-height: 1.2;
}

.grid-parent {
  width: 100vw;
}

.jobs {
  margin: 60px auto;
  padding: 30px 0;
}
.jobs .row {
  flex-wrap: wrap;
}
.jobs .col {
  margin: 20px 0;
  flex-basis: 50%;
}
.jobs .col a {
  font-size: 20px;
  color: #E01414;
  font-weight: 600;
  text-decoration: none;
}
.jobs .col p {
  margin: 0;
  font-size: 13px;
  opacity: 0.8;
}

.benefits h1 {
  font-size: 29px;
}
.benefits .row {
  flex-wrap: wrap;
}
.benefits .row .col {
  flex-basis: 25%;
}
.benefits .ans {
  color: #4A4A4A;
  line-height: 1.6;
  font-size: 20px;
  max-width: 900px;
}

.benefit-item {
  margin: 20px auto;
}
.benefit-item p {
  max-width: 400px;
  line-height: 1.6;
  color: #4A4A4A;
}

.carousel-wrapper {
  display: flex;
  width: 300vw;
  transition: all 0.9s ease;
  will-change: transform;
}
.carousel-wrapper .grid-parent {
  flex-basis: 33.33%;
  flex-wrap: nowrap;
}

.carousel {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}
.carousel .carousel-navigation {
  position: absolute;
  bottom: 5px;
  right: 10vw;
  z-index: 2;
}
.carousel .carousel-navigation button {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #dbdbdb;
}
.carousel .carousel-navigation button:focus {
  border-color: #E01414;
}
.carousel.testi-carousel {
  padding-bottom: 50px;
}
.carousel.testi-carousel h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10vh;
}
.carousel.testi-carousel .carousel-navigation {
  width: 100%;
  text-align: center;
  right: 0;
}

.services .sub-heading {
  font-size: 29px;
  line-height: 1.6;
  color: #4A4A4A;
}
.services .row .col {
  flex-basis: 50%;
}
.services .row .col p {
  font-size: 20px;
  line-height: 1.6;
  color: #4A4A4A;
}

.engage-item p {
  color: #4A4A4A;
  line-height: 1.6;
  font-size: 18px;
}
.engage-item ul {
  list-style: none;
  -webkit-padding-start: 0;
  -moz-padding-start: 0;
  margin: 0;
}
.engage-item ul p {
  font-size: 12px;
  color: black;
  font-weight: 600;
}
.engage-item ul li {
  margin: 5px 0;
}
.engage-item ul a {
  text-decoration: none;
  color: #DE2C67;
}

.communication {
  display: flex;
  margin: 80px auto;
}
.communication .left, .communication .right {
  flex-basis: 50%;
}
.communication .left {
  height: 30vw;
  background: url("images/commubg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.communication .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.communication .right .content {
  max-width: 500px;
}
.communication .right .content h2 {
  font-weight: 300;
  font-size: 37px;
  line-height: 1.4;
  font-family: "aktiv-grotesk",sans-serif;
  color: #4A4A4A;
}
.communication .right .content p {
  font-weight: 600;
  font-size: 19px;
}
.communication .right .content p img {
  vertical-align: middle;
  margin-right: 5px;
}

.contact-main {
  margin: 15vh 0;
  padding: 30px;
  display: flex;
}
.contact-main .left {
  flex-basis: 40%;
}
.contact-main .left .content {
  padding-right: 20px;
}
.contact-main .left h1 {
  font-size: 45px;
}
.contact-main .left p {
  font-weight: 400;
  color: #4A4A4A;
  line-height: 1.4;
}
.contact-main .right {
  flex-basis: 60%;
  position: relative;
}
.contact-main .right img {
  width: 100%;
}
.contact-main .marker {
  position: absolute;
  top: 0;
  left: 0;
}

.box-link.short {
  padding: 20px;
}

dl {
  margin: 15px 0;
}
dl dd {
  margin: 0;
}
dl dd a {
  color: #E01414;
  text-decoration: none;
}
dl dt {
  text-transform: uppercase;
  font-size: 12px;
  margin: 5px 0;
  font-weight: 600;
}

.project-grid .top {
  display: flex;
}
.project-grid .top .left {
  flex-basis: 50%;
  height: auto;
}
.project-grid .top .left .portfolio-item-container {
  height: 60vw;
  width: 100%;
}
.project-grid .top .right {
  flex-basis: 50%;
  height: auto;
}
.project-grid .top .right .portfolio-item-container {
  height: 30vw;
  width: 100%;
}
.project-grid .bottom {
  display: flex;
}
.project-grid .bottom .left {
  flex-basis: 40%;
}
.project-grid .bottom .left .portfolio-item-container {
  height: 30vw;
  width: 100%;
}
.project-grid .bottom .right {
  flex-basis: 60%;
}
.project-grid .bottom .right .portfolio-item-container {
  height: 30vw;
  width: 100%;
}

.portfolio-item-container {
  border: 5px solid white;
  background-color: #1d1c1c;
  position: relative;
  overflow: hidden;
}
.portfolio-item-container .image-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=0ef06f88dab75b74252e22465ad9c99d&auto=format&fit=crop&w=1950&q=80");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover !important;
  transition-duration: 3s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}
.portfolio-item-container:hover .image-wrapper {
  transform: scale(1.3);
}
.portfolio-item-container:hover .project-detail {
  transform: translate(0);
  opacity: 1;
}
.portfolio-item-container .project-detail {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  width: 80%;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.6s ease;
  padding: 20px;
}
.portfolio-item-container .project-detail h4, .portfolio-item-container .project-detail h3 {
  margin: 0;
}
.portfolio-item-container .project-detail h3 {
  text-transform: uppercase;
  font-size: 23px;
}
.portfolio-item-container .project-detail h4 {
  color: #4A4A4A;
}
.portfolio-item-container .project-detail .more-link {
  border: 0;
  padding: 0;
  font-size: 13px;
}
.portfolio-item-container .project-detail p {
  color: #4A4A4A;
}

.portfolio-detail-wrapper {
  margin: 15vh 0;
}
.portfolio-detail-wrapper h1 {
  font-size: 61px;
}
.portfolio-detail-wrapper h2 {
  font-size: 36px;
}
.portfolio-detail-wrapper p {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
}
.portfolio-detail-wrapper .subtitle {
  font-size: 25px;
  line-height: 1.6;
  color: #4A4A4A;
}
.portfolio-detail-wrapper .intro-row {
  display: flex;
}
.portfolio-detail-wrapper .intro-row .left {
  flex-basis: 67%;
  padding-right: 20px;
}
.portfolio-detail-wrapper .intro-row .right {
  flex-basis: 33%;
  padding: 0 20px;
}
.portfolio-detail-wrapper .intro-row dl {
  margin: 20px 0;
}
.portfolio-detail-wrapper .intro-row dl dt {
  font-size: 16px;
  color: #E01414;
}
.portfolio-detail-wrapper .intro-row dl dd {
  font-size: 18px;
}
.portfolio-detail-wrapper .portfolio-detail-image {
  height: 120vh;
  margin: 40px auto;
  background-size: cover;
  background-position: bottom;
  background-color: grey;
  background-repeat: no-repeat;
}

.tech-row {
  display: flex;
  flex-wrap: wrap;
}
.tech-row .col {
  flex-basis: 25%;
}
.tech-row .col img {
  width: 100%;
  transform: scale(0.9);
}

.next-projects .row .col {
  flex-basis: 50%;
}
.next-projects .row .col .portfolio-item-container {
  min-height: 50vh;
}
.career-quote .right .quote-text{
  font-size:22px;
  max-width: 800px;
}
.career-quote{
  margin: 150px 0;
}

.e-testi-item {
  display: flex;
  flex-basis: 100%;
}
.e-testi-item .testi-comment {
  flex-basis: 60%;
}
.e-testi-item .testi-comment .content {
  max-width: 571px;
  margin: 10px auto;
}
.e-testi-item .testi-comment .content h2 {
  font-size: 32px;
}
.e-testi-item .testi-comment .content h3, .e-testi-item .testi-comment .content h4 {
  margin: 0;
}
.e-testi-item .testi-comment .content h3 {
  color: #E01414;
}
.e-testi-item .testi-comment .content p {
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
}
.e-testi-item .testi-pic {
  flex-basis: 40%;
}
.e-testi-item .testi-pic img {
  width: 100%;
}

@media (max-width: 1200px) {
  .special-quote .right .quote-text {
    font-size: 30px;
  }

  .special-quote {
    padding: 30px;
  }

  .portfolio-wrapper .content-side {
    padding: 20px;
    margin: 0;
  }
  .portfolio-wrapper .content-side .left h1 {
    font-size: 32px !important;
    padding-right: 20px;
  }
  .portfolio-wrapper .content-side .right p {
    font-size: 16px;
  }
  .portfolio-wrapper .more-link {
    font-size: 14px;
  }

  .testi-wrapper {
    padding: 20px;
  }

  .service-wrapper .content-wrapper {
    padding: 20px;
    text-align: center;
  }

  #section7 h1 {
    font-size: 34px;
  }

  .about-main h1 {
    font-size: 34px;
  }
}
@media (max-width: 900px) {
  .top-menu {
    padding: 15px;
  }

  .hero-text h1 {
    font-size: 14vw;
  }
  .hero-text h1 span {
    font-size: 7vw;
  }

  .more-link {
    font-size: 16px;
    padding-left: 20px;
  }

  .hero-text p {
    font-size: 5vw;
  }

  .hero-btn {
    padding: 2vw 5vw;
    font-size: 3vw;
  }

  .special-quote {
    flex-wrap: wrap;
  }
  .special-quote .left, .special-quote .right {
    flex-basis: 100%;
  }
  .special-quote .left {
    text-align: left;
    padding: 0;
  }
  .special-quote .left .title {
    font-size: 32px;
  }
  .special-quote .left .subtitle {
    font-size: 20px;
  }
  .special-quote .right {
    padding: 0;
    margin-top: 20px;
  }
  .special-quote .right .quote-text {
    font-size: 16px !important;
  }

  .service-wrapper {
    flex-direction: column;
  }
  .service-wrapper h1 {
    font-size: 25px;
    text-align: center;
  }
  .service-wrapper .left {
    flex-basis: 100%;
  }
  .service-wrapper .right {
    display: none;
  }
  .service-wrapper .service-list h2 {
    font-size: 16px;
  }
  .service-wrapper .service-list p {
    display: none;
  }
  .service-wrapper .service-list-item {
    text-align: center;
  }

  .portfolio-wrapper {
    flex-direction: column;
  }
  .portfolio-wrapper .image-side img {
    width: 70%;
  }
  .portfolio-wrapper .content-side {
    flex-direction: column;
  }
  .portfolio-wrapper .content-side .left {
    flex-basis: 100%;
    text-align: center;
  }
  .portfolio-wrapper .content-side .left a {
    margin-top: 0;
  }
  .portfolio-wrapper .content-side .right {
    display: none;
  }
  .portfolio-wrapper.reverse {
    flex-direction: column;
  }
  .portfolio-wrapper.reverse .image-side {
    text-align: right;
  }

  .client-lists {
    margin: 0;
  }

  .header {
    text-align: center;
  }

  .testi-wrapper .testi {
    flex-direction: column;
    height: 90vh;
  }
  .testi-wrapper .testi .right {
    padding: 0;
  }
  .testi-wrapper .testi .right .quote {
    font-size: 16px;
    line-height: 1.4;
  }
  .testi-wrapper .testi .right h4, .testi-wrapper .testi .right h5 {
    text-align: right;
  }
  .testi-wrapper .testi .right h1 {
    font-size: 24px;
  }
  .testi-wrapper .testi .left .image-container {
    height: 30vh;
    text-align: center;
  }
  .testi-wrapper .testi .left .image-container img {
    height: 100%;
    width: auto;
  }

  .polygon, .pattern, .red-circle {
    display: none;
  }

  .text-overlay {
    display: none;
  }
  .text-overlay.left {
    display: none;
  }

  .testi-wrapper .navigator .prev, .testi-wrapper .navigator .next {
    height: 50px;
    width: 50px;
    padding: 0;
  }

  .testi-wrapper .navigator .prev, .testi-wrapper .navigator {
    bottom: 0;
    left: auto;
    right: auto;
  }

  .footer-question {
    flex-direction: column;
  }
  .footer-question .left h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .footer-question .right {
    text-align: left;
  }

  #section7 h1 {
    font-size: 30px;
  }

  footer .main {
    padding: 5vh 0;
  }

  footer .main .col:nth-child(2) {
    display: none;
  }

  footer .sub {
    flex-direction: column;
  }
  footer .sub .left, footer .sub .right {
    text-align: center;
    font-size: 14px;
  }
  footer .sub .right{
    margin:20px 0;
    position: relative;
    top:20px;
    flex-basis: 10%;
  }
  .portfolio-wrapper .content-side .left h1{
    max-width: 100%;
  }

  .testi-wrapper .testi .right .quote:after {
    height: 100px;
    width: 100px;
  }

  .fp-controlArrow.fp-prev, .fp-controlArrow.fp-next {
    display: none;
  }

  .top-menu a {
    display: none;
  }
  .top-menu a.mob-menu {
    display: inline-block;
    transform: translateX(0);
    opacity: 1;
  }
  .top-menu #svg-menu-icon {
    fill: white;
  }

  .about-main {
    padding: 20px;
  }
  .about-main h1 {
    font-size: 32px;
  }
  .about-main h1 .hl {
    padding: 0;
  }
  .about-main p{
    font-size:18px;
  }

  .about-sathish {
    flex-direction: column-reverse;
  }
  .about-sathish .left, .about-sathish .right {
    width: 100%;
    padding: 20px;
  }
  .about-sathish h1{
    font-size:26px;
  }
  .about-sathish .left h4{
    font-size:18px;
  }
  .about-sathish .left p {
    font-size: 16px;
  }
  .team-quote{
    margin:0;
  }
  .team-grid {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .e-testi-item .testi-comment .content p{
    font-size:16px;
  }
  .team-grid .col {
    flex-basis: 100%;
  }
  .team-grid .col:nth-child(2), .team-grid .col:nth-child(3) {
    transform: translate(0);
  }
  .team-grid .team-list-item .overlay {
    transform: translate(0);
    padding: 20px;
  }
  .team-grid .team-list-item .overlay p {
    font-size: 12px;
  }

  .e-testi-item {
    flex-direction: column-reverse;
    padding: 20px;
  }

  .carousel.testi-carousel h1 {
    font-size: 28px;
  }
  .e-testi-item .testi-comment{
    flex-basis: auto;
  }
  .e-testi-item{
    flex-basis: auto;
  }
  .e-testi-item .testi-comment{
    flex-basis: auto;
  }
  .e-testi-item .testi-pic{
    flex-basis: auto;
  }
  .about-sathish{
    flex-direction: column;
  }
  .top-menu.active .left a{
    opacity: 1!important;
    display: inline-block;
  }
  .engagement .row .col{
    flex-basis: 100%;
  }

  .testi-carousel {
    margin-bottom: 30px;
    padding-top: 30px;
  }
  .testi-carousel h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 0 !important;
    text-align: left !important;
  }

  footer .sub .left {
    flex-basis: auto;
  }

  .footer-question .left {
    flex-basis: auto;
  }

  .footer-question .right {
    flex-basis: auto;
  }

  .services .sub-heading {
    font-size: 20px;
    line-height: 1.4;
  }

  .services .row {
    flex-wrap: wrap;
  }
  .services .row .col {
    flex-basis: 100%;
  }
  .services .row .col p {
    font-size: 14px;
    line-height: 1.3;
  }

  .row {
    flex-wrap: wrap;
  }
  .row .col {
    flex-basis: 100%;
  }
  .row .col p {
    font-size: 14px;
    line-height: 1.6;
  }

  .engagement {
    padding: 0 20px;
  }
  .engagement h1 {
    font-size: 22px;
  }
  .engagement h4 {
    margin: 10px 0;
  }
  

  .communication {
    flex-direction: column;
  }
  .communication .left, .communication .right {
    flex-basis: auto;
  }
  .communication .right {
    padding: 20px;
  }
  .communication .right .content h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .mobile-small {
    text-align: center;
  }
  .mobile-small img {
    width: 45% !important;
  }

  .project-grid {
    margin-bottom: 40px;
  }
  .project-grid .top {
    flex-wrap: wrap;
  }
  .project-grid .top .left {
    flex-basis: 100%;
  }
  .project-grid .top .right {
    flex-basis: 100%;
  }
  .project-grid .top .right .portfolio-item-container {
    height: 60vw;
  }
  .project-grid .bottom {
    flex-wrap: wrap;
  }
  .project-grid .bottom .left, .project-grid .bottom .right {
    flex-basis: 100%;
  }
  .project-grid .bottom .left .portfolio-item-container, .project-grid .bottom .right .portfolio-item-container {
    height: 60vw;
  }

  .portfolio-item-container .project-detail {
    padding: 10px;
    opacity: 1;
    transform: translate(0);
  }
  .portfolio-item-container .project-detail p {
    display: none;
  }
  .portfolio-item-container .project-detail h3 {
    font-size: 14px;
  }
  .portfolio-item-container .project-detail h4 {
    font-size: 12px;
  }

  .benefits .row .col {
    flex-basis: 100%;
  }

  .box-link {
    padding: 10px;
    font-size: 14px;
  }

  .career-hero {
    height:630px;
    margin-bottom: 50px;
  }
  .career-hero .center-container {
   height:600px;
  }

  .drive-force, .jobs, .benefits {
    padding: 0 20px;
  }

  .carousel-wrapper .grid-parent {
    flex-wrap: wrap;
  }
  .carousel-wrapper .grid-parent .left {
    flex-basis: 100%;
    padding: 10px;
  }
  .carousel-wrapper .grid-parent .right {
    flex-basis: 100%;
    height: auto;
  }
  .carousel-wrapper .grid-parent .right .top, .carousel-wrapper .grid-parent .right .bottom {
    height: 40vw;
  }
  .carousel-wrapper .grid-parent .right .bottom .col:last-child {
    height: auto;
  }

  .contact-main {
    padding: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .contact-main .left, .contact-main .right {
    flex-basis: 100%;
    padding-right: 0;
  }
  .contact-main .left h1 {
    font-size: 24px;
  }

  .portfolio-detail-wrapper {
    padding: 0 20px;
  }
  .portfolio-detail-wrapper h1 {
    font-size: 38px;
  }
  .portfolio-detail-wrapper .left {
    padding-right: 0;
  }
  .portfolio-detail-wrapper .left .subtitle {
    font-size: 18px;
    line-height: 1.4;
  }
  .portfolio-detail-wrapper .intro-row {
    flex-wrap: wrap;
  }
  .portfolio-detail-wrapper .intro-row .left, .portfolio-detail-wrapper .intro-row .right {
    flex-basis: 100%;
  }
  .portfolio-detail-wrapper .intro-row .left {
    padding-right: 0;
  }
  .portfolio-detail-wrapper .intro-row .right {
    padding: 0;
  }
  .portfolio-detail-wrapper .next-projects .row {
    flex-wrap: wrap;
  }
  .portfolio-detail-wrapper .next-projects .row .col {
    flex-basis: 100%;
  }
  .portfolio-detail-wrapper .tech-row .col {
    flex-basis: 50%;
  }

  .portfolio-detail-wrapper .portfolio-detail-image {
    height: 40vh;
  }
}
.engagement .row .col{
  flex-basis: 50%;
}
.engage-item{
  display: flex;
  margin:20px 0;
}
.engage-item .image-side{
  width:16.66%;
}
.engage-item .image-side img{
  width: 100%;
}
.engage-item .content-side{
  width:83.33%;
  max-width: 438px;
}
.engage-item h4{
  margin-top:0;
  text-transform: uppercase;
}
.approach-image{
  background: white;
  height: 100px;
  width:100px;
  border-radius:50%;
  text-align: center;
  margin:0 auto;
  border: 2px solid #787171;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  position: relative;
}
.approach-image:after{
  content: "";
  position: absolute;
  top: 100%;
  height:54px;
  width: 2px;
  border-left:1px dashed #343131;
}
.timeline-holder{
  height: 2px;
  border-bottom:1px dashed #343434;
  bottom: -51px;
  position: relative;
}
.timeline-holder::after{
  content: "";
  position: absolute;
  height: 20px;
  width:20px;
  border-radius: 50%;
  background-image: linear-gradient(49deg, #FF6D31 0%, #FB0389 100%);
  left:0px;
  top:-10px;
}
.timeline-holder:before{
  content: "";
  position: absolute;
  height: 20px;
  width:20px;
  border-radius: 50%;
  background-image: linear-gradient(49deg, #FF6D31 0%, #FB0389 100%);
  right:0px;
  top:-10px;
}
.approach-item h3{
  font-family: "aktiv-grotesk",sans-serif;
  margin-top:80px;
}
.approach-item p{
  color: #444444;
  line-height: 1.6;
}
.approach h1{
  margin-bottom: 50px;
}
.vision-item{
  line-height: 1.6;
}
.vision-item p{
  color:#444444;
  max-width: 320px;
}
.engage-modal{
  margin-top: 100px;
}
p.sub{
  font-size:14px;
  position: relative;
  top:-40px;
}
.contact-main {
  font-family: "aktiv-grotesk",sans-serif!important;
}
.team-linkedin{
  margin-top:10px;
  display: inline-block;
}
.benefits label{
font-weight: 700;
letter-spacing: 1px;
margin: 0;
font-size: 13px;

}
footer a{
  text-decoration: none;
}


@media(max-width:900px){
  .engagement .row .col{
    flex-basis: 100%;
  }
  .engage-item .image-side svg{
    transform: scale(0.5);
    transform-origin: 0% 0%;
  }
  .approach h1,.engage-modal h1s{
    font-size:30px;
  }
  .timeline-holder{
    display: none;
  }
  .approach-image::after{
    content:"";
    display: none;
  }
  .approach-item{
    margin-bottom: 30px;
  }
  .approach-item h3{
    margin-top: 10px;
  }
  .communication .left{
    height: 60vw;
  }
  .communication{
    margin:0 auto;
  }
  p.sub{
    top:-10px;
  }
  .career-hero{
    height: 310px;
  }
  .career-hero .center-container{
    height: 300px;
  }
  .career-quote{
    margin:50px auto;
  }
  .benefits .ans{
    font-size: 16px;
  }
}