* {
  box-sizing: border-box;
}
:root {
  --primary: rgb(147, 97, 250);
  --secondary: rgb(250, 97, 124);
  --third: rgb(97, 211, 250);
  --secondaryText: rgb(26, 26, 31);
  --greyText: rgb(140, 140, 143);
  --white: #ffffff;
  --black: #000000;
  --mainFont: "Montserrat";
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--mainFont);
  float: left;
  font-size: 16px;
  line-height: 26px;
}
.wrapper {
  width: 100%;
  display: inline-block;
}
.flexCB {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flexCE {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pageSection {
  padding: 50px 0px;
  position: relative;
}
.showForSmall {
  display: none !important;
}
.showForMedium {
  display: none;
}
.partitionBlock {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.w700 {
  width: 100%;
  max-width: 700px;
}
.w450 {
  width: 100%;
  max-width: 450px;
}
.w350 {
  width: 100%;
  max-width: 350px;
  float: left;
}
.w350Rem {
  width: calc(100% - 350px);
  float: left;
  padding: 0px 20px;
}
.halfBlock {
  width: calc(50% - 25px);
}
h2 {
  font-size: 47px;
  line-height: 55px;
  margin: 0px 0px 20px 0px;
  font-weight: 600;
}
.primaryText {
  color: var(--primary);
}
.secondaryText {
  color: var(--secondary);
}
.responsive {
  width: 100%;
}
.textWhite {
  color: var(--white);
}
.greyText {
  color: var(--greyText);
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
.mB50 {
  margin-bottom: 50px;
}
input {
  font-family: var(--font);
}
input:focus {
  outline: 0;
}
.slick-slide {
  height: auto;
}
.overflowOut {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* CONTAINERS */
.container {
  width: 100%;
  max-width: 1150px;
  padding: 0px 15px;
  margin: 0 auto;
}
.container--md {
  max-width: 1230px;
}
.container--lg {
  max-width: 1330px;
}
.container:after {
  content: "";
  display: table;
  clear: both;
}
/* CONTAINERS END */

/* BUTTONS */
.btn {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--white);
  transition: 0.3s linear;
}
.btn.btn--primaryH {
  font-size: 14px;
  font-weight: 600;
}
.btn.btn--primaryH:hover {
  background: var(--third);
  color: var(--white);
  transition: 0.3s linear;
  border-color: var(--third);
}
.btn--primary {
  background: var(--third);
  border-color: var(--third);
  color: var(--black);
  font-weight: 600;
}
/* BUTTONS END */

/* PAGE HEADER */
.pageHeader {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0px;
  background: var(--black);
  padding: 30px 0px;
  z-index: 5;
}
.logoHolder {
  margin: 0px 50px 0px 0px;
  width: 125px;
  min-width: 125px;
  height: auto;
}
.logoIn {
  width: 100%;
}
.pageNav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pageNav__list {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: flex;
}
.pageNav__list__item {
  margin: 15px;
}
.pageNav__list__item__link {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s linear;
}
.pageNav__list__item__link:hover {
  color: var(--third);
  transition: 0.3s linear;
}
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger:before,
.hamburger:after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--white);
  position: absolute;
  left: 0px;
  border-radius: 3px;
}
.hamburger:before {
  top: 0px;
}
.hamburger:after {
  bottom: 0px;
}
.hamburger > label {
  width: 100%;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
}
.hamburger * {
  cursor: pointer;
}
/* PAGE HEADER END */

/* BANNER */
.bannerCarousal {
  width: 100%;
}
.bannerCarousal .slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0px;
  width: calc(100% - 100px);
  left: 50px;
  bottom: 25px;
  z-index: 2;
}
.bannerCarousal .slick-dots button {
  font-size: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: 42px;
  height: 2px;
  background: var(--white);
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s linear;
}
.bannerCarousal .slick-dots li {
  float: left;
  margin-right: 10px;
}
.bannerCarousal .slick-dots .slick-active button {
  background: var(--third);
  opacity: 1;
  transition: 0.3s linear;
}
.bannerBlock {
  background: var(--black);
  padding: 10px 0px 50px 0px;
  position: relative;
  z-index: 2;
}
.topCleared {
  padding-top: 117px;margin-top: -117px;
}
.carousalWrapper {
  margin-bottom: -240px;
  display: flex;
  box-shadow: 0px 0px 12px -4px var(--black);
}
.bannerBlock + .pageSection {
  padding-top: 270px;
}
.carousalSlide {
  width: 100%;
  position: relative;
  display: inline-block;
}
.bannerCaptionBlock {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  left: 0px;
  top: 0px;
  padding: 50px;
  z-index: 1;
}
.bannerImage {
  width: 100%;
  height: 100%;
  display: flex;
}
.bannerCaptionBlock h1 {
  font-size: 47px;
  line-height: 57px;
  font-weight: 600;
  color: var(--white);
  margin: 5px 0px;
}
.bannerCaptionBlock p {
  font-size: 16px;
  line-height: 26px;
  color: var(--white);
  margin: 10px 0px;
  width: 100%;
  max-width: 450px;
  display: inline-block;
}
.carousalSlide:before { 
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgb(0 0 0 / 50%);
}
.bannerCaptionBlock .btn--primary {
  margin-top: 20px;
}
/*.highlightedAnimation0, .highlightedAnimation1, .highlightedAnimation2 {
  display: inline-block;
  color: var(--third);
}*/

.highlightedAnimation {
  display: inline-block;
  color: var(--third);
}
/* BANNER END */

.clientCarousal {
  padding: 30px 0px 0px 0px;
  position: relative;
}
.clientCarousal:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #ebebeb;
  position: absolute;
  top: 0px;
  left: 0px;
}
.clientCarousal__slide__item {
  width: 100%;
}
.categoryPartition {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}
.categoryIndicator {
  width: 150px;
  padding-right: 20px;
  font-size: 12px;
  line-height: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--secondaryText);
}
.categoryTextWrap {
  width: calc(100% - 150px);
}
.categoryTextWrap p {
  margin: 0px 0px 20px 0px;
  color: var(--secondaryText);
  font-weight: 400;
}
.pintileGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  margin: 30px 0px;
}
.pintileGrid .slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  width: 100%;
  left: 0px;
  bottom: -30px;
  z-index: 2;
}
.pintileGrid .slick-dots button {
  font-size: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: 42px;
  height: 3px;
  background: var(--greyText);
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s linear;
}
.pintileGrid .slick-dots li {
  float: left;
  margin-right: 10px;
}
.pintileGrid .slick-dots .slick-active button {
  background: var(--black);
  opacity: 1;
  transition: 0.3s linear;
}
.specPintile {
  padding: 30px 30px 80px 30px;
  margin: 20px 0px;
  background: url("../images/cardBG.png") no-repeat center;
  background-size: cover;
  position: relative;
  min-height: 640px;
}
.specPintile:first-child {
  box-shadow: 0px 0px 12px -4px;
  position: relative;
  top: -150px;
}
.specPintile:before {
  content: "";
  width: 115px;
  height: 170px;
  background: url("../images/repeatX-white.png") no-repeat center;
  background-size: cover;
  position: absolute;
  right: 0px;
  top: 0px;
}
.specItemName {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.specHead {
  font-size: 32px;
  line-height: 38px;
  font-weight: 600;
}
.pageSection.xBg {
  background-image: url("../images/repeatX.svg");
  background-repeat: no-repeat;
  background-size: 70%;
  background-position-x: calc(-100% - 50px);
}
.specIcon {
  position: absolute;
  bottom: -40px;
}
.specIcon.specIcon--membership {
  width: 148px;
  height: 174px;
  background: url("../images/membership.png") no-repeat center;
  background-size: contain;
  left: calc(50% - 74px);
}
.specIcon.specIcon--selfservice {
  width: 118px;
  height: 166px;
  background: url("../images/self-service.png") no-repeat center;
  background-size: contain;
  left: calc(50% - 58px);
}
.specIcon.specIcon--automation {
  width: 150px;
  height: 148px;
  background: url("../images/automation.png") no-repeat center;
  background-size: contain;
  bottom: -70px;
  left: calc(50% - 75px);
}
.w350 p {
  color: var(--secondaryText);
  line-height: 32px;
}
.projectCarousal__slide {
  margin: 0px 10px;
  cursor: pointer;
}
.projectCarousal__slide__img {
  width: 100%;
}
.projectCarousal__slide__text {
  font-size: 16px;
  color: var(--secondaryText);
  font-weight: 600;
  margin: 15px 0px;
}
.projectCarousal .slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  width: 100%;
  left: 0px;
  bottom: -30px;
  z-index: 2;
}
.projectCarousal .slick-dots button {
  font-size: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: 42px;
  height: 3px;
  background: var(--greyText);
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s linear;
}
.projectCarousal .slick-dots li {
  float: left;
  margin-right: 10px;
}
.projectCarousal .slick-dots .slick-active button {
  background: var(--black);
  opacity: 1;
  transition: 0.3s linear;
}
.pageSection.imageBgSection {
  padding: 150px 0px;
  background: url("../images/bg-parallax.png") no-repeat center;
  background-position: top left;
  background-size: cover;
  background-attachment: initial;
  background-attachment: fixed;
}
.imageBgSection:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgb(0 0 0 / 70%);
}
.imageBgSection .container {
  position: relative;
  z-index: 1;
}
.accomplishmentBlock {
  margin: 10px 0px;
}
.accomplishmentLabel {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  max-width: 250px;
}
.accomplishmentBox {
  display: flex;
  min-height: 100px;
  width: 100%;
  border-top: 1px solid var(--greyText);
  padding: 10px 0px;
}
.accomplishmentBox__title {
  font-size: 47px;
  line-height: 48px;
  font-weight: 600;
  color: var(--white);
  margin: 0px 10px;
}
.accomplishmentBox__text {
  position: relative;
  top: 10px;
  color: var(--white);
}
.w700 h2 {
  margin-bottom: 100px;
}
.accomplishmentIcon {
  width: 41px;
  height: 50px;
  margin-right: 10px;
}
.accomplishmentIcon.accomplishmentIcon--venue {
  background: url("../images/venue.svg") no-repeat left;
  background-size: contain;
}
.accomplishmentIcon.accomplishmentIcon--promotions {
  background: url("../images/promotions.svg") no-repeat left;
  background-size: contain;
}
.accomplishmentIcon.accomplishmentIcon--apps {
  background: url("../images/native-apps.svg") no-repeat left;
  background-size: contain;
}
.accomplishmentIcon.accomplishmentIcon--profiles {
  background: url("../images/profile.svg") no-repeat left;
  background-size: contain;
}
.accomplishmentIcon.accomplishmentIcon--appsUsers {
  background: url("../images/active-users.svg") no-repeat left;
  background-size: contain;
}
.accomplishmentIcon.accomplishmentIcon--jurisdictions {
  background: url("../images/jurisdictions.svg") no-repeat left;
  background-size: contain;
}
.accomplishmentIcon.accomplishmentIcon--industry {
  background: url("../images/integration.svg") no-repeat left;
  background-size: contain;
}
.masonryBlock {
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px; */
  -moz-column-count: 3;
  -moz-column-gap: 3%;
  -moz-column-width: 30%;
  -webkit-column-count: 3;
  -webkit-column-gap: 3%;
  -webkit-column-width: 30%;
  column-count: 3;
  column-gap: 3%;
  column-width: 30%;
}
.masonryBlock.macType {
  margin-top: 35px;
}
.masonryBlock .slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  width: 100%;
  left: 0px;
  bottom: -30px;
  z-index: 2;
}
.masonryBlock .slick-dots button {
  font-size: 0;
  padding: 0;
  margin: 0;
  border: 0;
  width: 42px;
  height: 3px;
  background: var(--greyText);
  opacity: 0.5;
  cursor: pointer;
  transition: 0.3s linear;
}
.masonryBlock .slick-dots li {
  float: left;
  margin-right: 10px;
}
.masonryBlock .slick-dots .slick-active button {
  background: var(--black);
  opacity: 1;
  transition: 0.3s linear;
}
.teamMemberBlock__img {
  width: 100%;
}
.teamMemberBlock {
  float: left;
  clear: both;
  margin: 30px 0px 0px 0px;
}
.masonryBlock.macType .teamMemberBlock {
  margin: 35px 0px 0px 0px;
}
.masonryBlock.macType .teamMemberBlock:first-child {
  margin-top: 0;
}
.teamMemberBlock__title {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  margin: 5px 0px 5px 0px;
  color: var(--secondaryText);
}
.teamMemberBlock__designation {
  font-size: 12px;
  font-weight: 600;
  color: var(--greyText);
  letter-spacing: 1px;
  margin: 0px;
}
.blackArrowCard {
  padding: 80px;
  background: var(--black);
  position: relative;
  max-width: calc(100% - 40px);
}
.blackArrowCard__subtitle {
  color: var(--white);
}
.blackArrowCard__title {
  color: var(--white);
  margin: 0px;
}
.blackArrowCard__btn {
  width: 80px;
  height: 80px;
  background: var(--third);
  position: absolute;
  right: -40px;
  top: calc(50% - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconIn.iconIn--arrowRight,
.iconIn.iconIn--arrowLeft {
  width: 21px;
  height: 21px;
  background: url("../images/arrow-right.svg") no-repeat center;
  background-size: contain;
  display: inline-block;
}
.iconIn.iconIn--arrowLeft {
  transform: rotate(-180deg);
}
.pageSection.pageSection--contactBlock {
  padding: 100px 0px;
  background-color: var(--black);
  background-image: url("../images/repeatX-modal.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
}
.pageSection--contactBlock .textWhite {
  display: block;
  margin: 10px 0px;
}
.contactUsBlock {
  margin: 30px 0px 0px 0px;
}
.mB50 .greyText {
  margin-bottom: 20px;
}
.contactForm {
  width: 100%;
}
.formItems {
  width: 100%;
  margin: 0px 0px 35px 0px;
}
.csInput {
  width: 100%;
  display: inline-block;
  height: 40px;
  background: transparent;
  border: 0px;
  border-bottom: 1px solid var(--greyText);
  color: var(--white);
  font-size: 16px;
}
.csInput:focus {
  outline: 0;
}
.csSubmitBtn {
  padding: 10px 30px;
  margin-top: 40px;
  cursor: pointer;
}
.contactForm ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--greyText);
  opacity: 1; /* Firefox */
}
.contactForm :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--greyText);
}
.contactForm ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--greyText);
}
.pageFooter {
  padding: 60px 0px;
}
.copyWriteBox__text {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: var(--greyText);
  margin: 0px;
}
.copyWriteBox img {
  width: 112px;
  margin-bottom: 10px;
}
.footerGrid {
  display: grid;
  grid-template-columns: auto 1fr auto;
}
.footerLinks {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.footerIndicTitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  color: var(--secondaryText);
  margin: 0px 0px 15px 0px;
}
.footerLinks__wrap {
  margin: 0px 40px;
}
.footerLinks__list {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
.footerLinks__list li {
  width: 100%;
  display: block;
  margin: 15px 0px;
}
.footerLinks__list__link {
  font-size: 14px;
  color: var(--greyText);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s linear;
}
.footerLinks__list__link:hover {
  color: var(--third);
  transition: 0.3s linear;
}
.connectiveBlock h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondaryText);
  margin: 0px 0px 20px 0px;
}
.stayInTouchBlock {
  width: 240px;
  max-width: 100%;
  position: relative;
}
.stayInTouchBlock__input {
  width: 100%;
  height: 40px;
  padding: 0px 25px 0px 0px;
  border: 0;
  border-bottom: 1px solid var(--greyText);
  color: var(--secondaryText);
}
.stayInTouchBlock .iconIn--arrowRight {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0px;
  top: calc(50% - 12px);
  cursor: pointer;
}
.textLink {
  text-decoration: none;
}
.sMediaList {
  padding: 0;
  margin: 0px;
  list-style-type: none;
  display: flex;
}
.sMediaList li {
  display: inline-block;
  margin-right: 20px;
}
.sMediaList__link {
  float: left;
}
.sMediaList__link .iconIn {
  width: 22px;
  height: 22px;
  float: left;
}
.iconIn.iconIn--linkedin {
  background: url("../images/linkedin.svg") no-repeat center;
  background-size: contain;
}
.iconIn.iconIn--twitter {
  background: url("../images/twitter.svg") no-repeat center;
  background-size: contain;
}
.projectDetail {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.projectDetail__fig {
  width: 250px;
  height: 320px;
  max-width: 100%;
}
.projectDetail__fig__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: left;
}
.projectDetail__desc {
  width: calc(100% - 250px);
  min-height: 320px;
  padding: 0px 40px 40px 40px;
  position: relative;
}
.projectDetail__desc__title {
  font-size: 42px;
}
.projectDetail__desc__text {
  color: var(--secondaryText);
  font-size: 16px;
}
.arrowBlock {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
}
.arrowBlock .iconIn {
  width: 24px;
  height: 24px;
  margin: 0px 15px;
  cursor: pointer;
  text-decoration: none;
}
.arrowBlock .iconIn--arrowLeft {
  position: relative;
  top: 1px;
}
/*.highlightedAnimation0, .highlightedAnimation1, .highlightedAnimation2 {
	display: none;
}*/

.highlightedAnimation {
  display: none;
}


/*.splittedText0 span, .splittedText1 span, .splittedText2 span { 
	color: var(--third);
	animation: opacityIn 1s linear forwards;
    opacity: 0
}*/

.splittedText span { 
  color: var(--third);
  animation: opacityIn 1s linear forwards; 
    opacity: 0
}
.projectDetailPanel .slick-arrow {
    display: none !important; 
}
form.sent .wpcf7-response-output {border: none !important;background: var(--primary);color: #ffffff;font-weight: 600;text-align: center;margin: 2em 0 1em 0 !important;}
form.failed .wpcf7-response-output {border: none !important;background: var(--secondary);color: #ffffff;font-weight: 600;text-align: center;margin: 2em 0 1em 0 !important;}

@keyframes opacityIn { 
	from {
        opacity: 0;
    }
	to {
        opacity: 1;
    }
}

@keyframes scrollIn {
  0% {
    object-position: -350px 0px;
  }
  100% {
    object-position: -100px 0px;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* MODAL */
.csModal {
  padding: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: rgb(0 0 0 / 80%);
  z-index: 8;
}
.csModal.active {
  display: flex;
}
.csModal .csModal__content {
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: auto;
  background-color: var(--white);
  padding: 30px;
  position: relative;
  animation: 0.3s zoomIn linear forwards;
}
.csModal--lg .csModal__content {
  max-width: 1185px;
}
.csModal.abstractBgModal .csModal__content {
  background-image: url("../images/repeatX-modal.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto 100%;
  padding: 60px 80px;
}
.csModalOut {
  width: 30px;
  height: 30px;
  background: url("../images/close.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 20px; 
  cursor: pointer;
}
.csModalOut {
  width: 21px;
  height: 21px;
  top: 20px;
  right: 20px;
}
.projectDetailPanel {
  width: 100%;
  float: left;
  height: auto;
}
.projectDetailslide {
  width: 100%;
  height: auto;
  display: inline-block;
  float: left;
}
/* MODAL END */

.stayInTouchBlock input.iconIn--arrowRight {
    padding: 0;
    font-size: 0;
    border: 0;
}
.stayInTouchBlock .wpcf7-spinner {
    display: none;
}



/* MEDIA QUERIES */

@media (max-width: 991px) {
  .hideForMedium {
    display: none;
  }
  .showForMedium {
    display: block;
  }
  .logoHolder {
    margin-right: 20px;
  }
  .pageNav__list__item__link {
    font-size: 12px;
  }
  .pageNav__list__item {
    margin: 5px 10px;
  }
  .blackArrowCard {
    max-width: calc(100% - 40px);
  }
  .pintileGrid {
    grid-template-columns: 1fr 1fr;
  }
  .specPintile:first-child {
    position: relative;
    top: 0px;
  }
  .halfBlock.fullInMedium {
    width: 100%;
  }
  .categoryIndicator {
    margin-bottom: 30px;
  }
  .categoryTextWrap {
    width: 100%;
  }
  .categoryPartition {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  html {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
  body {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
  .wrapper {
    width: 100%;
    height: 100%;
    overflow: auto;
  }
  .container {
    padding: 0px 30px;
  }
  .hideForSmall {
    display: none !important;
  }
  .showForSmall {
    display: block !important;
  }
  .hamburger.showForSmall {
    display: flex !important;
  }
  h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .pageHeader {
    padding: 10px 0px;
  }
  .pageNav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: -100%;
    transition: 0.3s linear;
    background: var(--black);
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px;
  }
  .pageNav.active {
    left: 0px;
    transition: 0.3s linear;
  }
  .pageNav h2 {
    width: 100%;
    color: var(--white);
    text-align: center;
  }
  .sMediaNavList h4 {
    color: var(--white);
    font-size: 14px;
    margin: 0px 0px 15px 0px;
  }
  .sMediaNavList {
    padding: 0;
    list-style-type: none;
    margin: 30px 0px 0px;
  }
  .sMediaNavList li {
    margin: 5px 0px;
  }
  .sMediaNavList li a {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s linear;
  }
  .sMediaNavList li a:hover {
    color: var(--third);
    transition: 0.3s linear;
  }
  .pageNav__list__item {
    margin: 5px 0px;
  }
  .pageNav__list__item__link {
    font-size: 14px;
  }
  .closeNav {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
  }
  .pageNav__list {
    flex-direction: column;
  }
  .closeNav:before,
  .closeNav:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #fa617c;
    position: absolute;
    left: 0px;
    top: calc(50% - 1px);
  }
  .closeNav:before {
    transform: rotate(45deg);
  }
  .closeNav:after {
    transform: rotate(-45deg);
  }
  .bannerImage {
    min-height: 540px;
    object-fit: cover;
  }
  .bannerCaptionBlock h1 {
    font-size: 28px;
    line-height: 38px;
  }
  .bannerCaptionBlock {
    padding: 30px 30px 50px 30px;
  }
  .bannerCarousal .slick-dots {
    width: calc(100% - 60px);
    left: 30px;
  }
  .carousalWrapper {
    margin-right: -30px;
  }
  .carousalSlide:before {
    background: rgb(0 0 0 / 20%);
  }
  .pageSection.imageBgSection {
    padding: 80px 0px;
    background-position: center;
    background-attachment: initial;
  }
  .pageSection.xBg {
    padding-top: 650px;
    background-size: auto 75%;
    background-position-x: 100%;
  }
  .pintileGrid {
    grid-template-columns: 1fr;
  }
  .specPintile {
    margin-bottom: 100px;
  }
  .w350 {
    max-width: none;
  }
  .w350Rem {
    width: 100%;
  }
  .projectCarousal {
    margin: 50px 0px;
  }
  .w700 h2 {
    font-size: 23px;
  }
  .accomplishmentLabel {
    font-size: 16px;
    width: 100%;
    max-width: none;
    margin-bottom: 5px;
  }
  .halfBlock {
    width: 100%;
  }
  .accomplishmentBlock {
    flex-direction: column;
    margin: 20px 0px;
  }
  .accomplishmentBox__title {
    font-size: 32px;
    line-height: 46px;
  }
  .blackArrowCard {
    padding: 30px 100px 30px 30px;
  }
  .masonry-layout {
    display: grid;
    grid-template-columns: 1fr;
  }
  .pageSection.pageSection--contactBlock {
    background: var(--black);
    padding: 70px 0px;
  }
  .contactUsBlock {
    flex-direction: column;
  }
  .mobOrder2 {
    order: 2;
  }
  .mobOrder1 {
    order: 1;
  }
  .w350Rem {
    padding: 0px;
  }
  .projectCarousal__slide {
    margin: 0;
  }
  .contactUsBlock .halfBlock {
    margin: 20px 0px;
  }
  .footerGrid {
    grid-template-areas:
      "copywrite links links"
      "connect connect connect";
  }
  .footerLinks {
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
  }
  .footerLinks__wrap {
    margin: 0px 0px 30px 0px;
  }
  .copyWriteBox {
    grid-area: copywrite;
  }
  .footerLinks {
    grid-area: links;
  }
  .connectiveBlock {
    grid-area: connect;
  }
  .stayInTouchBlock {
    width: 100%;
  }
  .footerLinks__wrap {
    width: 120px;
  }
  .specIcon {
    left: auto !important;
    right: 0px !important;
  }
  .showForMedium .responsive {
    margin: 20px 0px 0px 0px;
  }
  .teamMemberBlock {
    clear: none;
  }
  .teamMemberBlock__img {
    height: 350px;
    object-fit: cover;
  }
  .projectDetail {
    flex-direction: column;
  }
  .projectDetail__fig {
    width: 100%;
    height: auto;
    overflow: initial;
  }
  .projectDetail__desc {
    width: 100%;
    height: auto;
    padding: 40px 0px;
    background: var(--white);
  }
  .csModal.abstractBgModal .csModal__content {
    padding: 35px 30px;
    background: var(--white);
  }
  .csModalOut {
    width: 21px;
    height: 21px;
    top: 5px;
    right: 5px;
  }
  .arrowBlock {
    bottom: 5px;
  }
  .slick-current .bannerImage {
    animation:  scrollIn 3s linear forwards;
  }
}

/* MEDIA QUERIES END */
