body {
  background-color: #fff;
  font-family: "Lato", sans-serif;
}

.disabledScroll {
  position: fixed;
  left: 0;
  right: 0;
}

.titleContainer {
  display: flex;
  justify-content: center;
}

.title {
  position: relative;
  font-size: 36px;
  font-weight: 800;
}
.titleNarrow {
  max-width: 480px;
}
.titleFront {
  z-index: 2;
}

.subTitle {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}

.paragraph {
  position: relative;
  font-size: 14px;
  font-weight: 400;
}
.paragraphNarrow {
  max-width: 500px;
  font-size: 16px;
  text-align: justify;
}

.rectangle {
  width: 45px;
}
.rectangleYellow {
  border-bottom: 9px solid #fccd3e;
  box-shadow: 3px -2px 0px 0px rgb(254, 232, 165);
  -webkit-box-shadow: 3px -2px 0px 0px rgb(254, 232, 165);
  -moz-box-shadow: 3px -2px 0px 0px rgb(254, 232, 165);
}
.rectangleBlue {
  border-bottom: 9px solid #138ab4;
}
.rectangleWhite {
  border-bottom: 9px solid #fff;
  box-shadow: 3px -2px 0px 0px #535353;
  -webkit-box-shadow: 3px -2px 0px 0px #535353;
  -moz-box-shadow: 3px -2px 0px 0px #535353;
}

.buttonWrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.button {
  background-color: #000;
  position: relative;
  color: #f1f1f1;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  padding: 12px 22px;
  border: none;
  display: inline-block;
  z-index: 2;
  transform: translate(-7px, 7px);
  transition: transform 0.5s ease;
  min-width: 160px;
}
.button:hover {
  transform: translate(0);
}

.btnColor, .btnColorBlue, .btnColorYellow {
  position: absolute;
  display: block;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btnColorYellow {
  background-color: #fccd3e;
}
.btnColorBlue {
  background-color: #138ab4;
}

.transparentBtn {
  position: relative;
  background-color: transparent;
  border: 4px solid #fff;
  padding: 15px 20px;
  color: #fff;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  z-index: 3;
}
.transparentBtn:focus {
  outline: none;
}
.transparentBtn:active {
  background-color: rgba(248, 248, 248, 0.1);
}
.transparentBtn:hover {
  color: #fff;
}

.yellowCorner path:nth-child(1) {
  stroke: #e8e6e1;
}
.yellowCorner path:nth-child(2) {
  stroke: #fccd3e;
}

.blueCorner path:nth-child(1) {
  stroke: #e8e6e1;
}
.blueCorner path:nth-child(2) {
  stroke: #138ab4;
}

.whiteCorner path:nth-child(1) {
  stroke: #a1a19f;
}
.whiteCorner path:nth-child(2) {
  stroke: #ffffff;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 22px;
  }
  .subTitle {
    font-size: 12px;
    font-weight: 300;
  }
  .paragraph {
    font-size: 12px;
    font-weight: 400;
  }
  .button {
    font-size: 12px;
  }
}
/* Services Section */
.servicesSection {
  padding-top: 80px;
  padding-bottom: 80px;
  background: rgb(240, 240, 244);
  background: linear-gradient(90deg, rgb(240, 240, 244) 11.05%, rgba(255, 198, 145, 0.25) 42%, rgba(255, 198, 145, 0.1) 66%, rgb(255, 255, 255) 100%);
}

.servicesCardsContainer {
  margin-top: 50px;
}

/* Future Proof Section */
.homeFutureProof {
  background-color: #000;
  color: #fff;
  padding: 115px 0;
}

.homeFutureRectangle {
  position: relative;
  top: -5px;
}

.homeFutureProofParagraph {
  width: 90%;
}

.homeFutureProofCorner {
  position: absolute;
  top: 5px;
  right: 0;
}

.homeFutureProofRightPar {
  text-align: justify;
  width: 90%;
}

/* Home technologies */
.homeTech {
  padding-top: 120px;
  padding-bottom: 120px;
}

.homeTechImg {
  margin: 0 5px;
  width: auto;
  max-height: 45px;
}

/* programmers note */
.bannerCta {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 0;
  padding-right: 0;
}
.bannerCta .content {
  padding: 60px 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: rgba(19, 138, 180, 0.06);
  position: relative;
  align-items: center;
}
.bannerCta .content .text {
  color: #000;
  font-family: Lato;
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  /* text-transform: lowercase; */
  max-width: 730px;
}
.bannerCta .content .text b {
  font-weight: bold;
}
.bannerCta .content .progNoteSvg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.contentBlock {
  padding-top: 80px;
  padding-bottom: 80px;
}
.contentBlock .textCol {
  position: relative;
  padding-right: 30px;
  text-align: justify;
}
.contentBlock .textCol .contentBlockSvg {
  position: absolute;
  bottom: -50px;
  right: -40px;
}

.otherServices {
  padding-top: 80px;
  padding-bottom: 80px;
}

.materialCard {
  position: relative;
  width: 345px;
  height: 308px;
  margin-right: 20px;
  margin-bottom: 30px;
}
.materialCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.materialCard .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.76) 64.06%);
}
.materialCard .content {
  position: relative;
  color: #fff;
  font-family: Lato;
  font-style: normal;
  line-height: normal;
  padding: 110px 40px;
}
.materialCard .content h2 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}
.materialCard .content p {
  font-size: 14px;
  font-weight: 400;
  /* text-transform: lowercase; */
  margin-top: 25px;
}

@media screen and (max-width: 1200px) {
  .homeFutureProofCorner {
    top: 25px;
  }
  .bannerCta .content .btnWrap {
    margin-top: 50px;
  }
  .contentBlock .textCol .paragraph {
    max-width: 90%;
  }
  .contentBlock .textCol .contentBlockSvg {
    bottom: -50px;
    right: -20px;
  }
}
@media screen and (max-width: 991px) {
  .homeFutureProofRightPar {
    margin-top: 15px;
  }
  .homeFutureProofCorner {
    top: -20px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .homeFutureProof {
    padding: 50px 20px;
    padding-bottom: 70px;
  }
  .servicesSection {
    background: #fff;
  }
  .homeFutureProofParagraph {
    width: 100%;
  }
  .homeFutureProofCorner {
    top: 15px;
    right: -15px;
  }
  .homeTech {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .homeTechImg {
    max-height: 22px;
  }
  .bannerCta .content .progNoteSvg {
    bottom: 100px;
  }
  .contentBlock .textCol {
    padding: 0 20px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 576px) {
  .bannerCta {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .bannerCta .content {
    padding: 60px 30px;
    padding-left: 50px;
  }
  .bannerCta .content .text {
    width: 310px;
  }
  .bannerCta .content .progNoteSvg {
    left: 0;
  }
  .bannerCta .content .btnWrap {
    margin-left: auto;
    margin-right: auto;
  }
  .contentBlock {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .contentBlock .textCol {
    margin-top: 15px;
    padding-right: 50px;
  }
  .contentBlock .textCol .paragraph {
    max-width: 90%;
  }
  .contentBlock .textCol .contentBlockSvg {
    bottom: -50px;
    right: 0;
  }
  .otherServices {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.customCard {
  position: relative;
  max-width: 375px;
  height: 320px;
  border-radius: 0;
  box-shadow: -4px 8px 0px 0px rgba(82, 82, 82, 0.2);
}

.customCardOverlay {
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  padding-top: 35px;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
}
.customCardOverlay:hover .customCardHover {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -5px;
  left: 5px;
  background: rgba(19, 138, 180, 0.53);
  z-index: 1;
  transition: background 0.5s ease-out;
}

.customCardImg {
  max-width: 375px;
  height: 320px;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

.customCardTitle {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  min-height: 72px;
  z-index: 2;
}

.cardTopSvg {
  position: absolute;
  top: -43px;
  left: -35px;
}

.cardBottomSvg {
  position: absolute;
  bottom: -43px;
  right: -35px;
}

.customCardTxt {
  position: relative;
  margin-top: 30px;
  width: 60%;
  font-size: 14px;
  font-weight: 400;
  z-index: 2;
}

.customCardSpan {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 400;
}

.cardArrowSvg {
  width: 54px;
  -webkit-margin-start: 20px;
          margin-inline-start: 20px;
}

@media screen and (max-width: 991px) {
  .cardTopSvg,
.cardBottomSvg {
    display: none;
  }
  .customCard,
.customCardImg {
    max-width: 100%;
  }
  .customCardOverlay {
    height: 101%;
  }
}
@media screen and (max-width: 768px) {
  .customCard,
.customCardImg {
    height: 180px;
  }
  .customCardSpan,
.cardArrowSvg {
    display: none;
  }
  .customCardTitle {
    font-size: 18px;
    font-weight: 800;
    position: relative;
    width: 70%;
  }
  .customCardOverlay {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 102%;
    padding: 20px;
    gap: 7px;
  }
  .customCardOverlay:hover .customCardHover {
    display: none;
  }
  .customCardTxt {
    margin-top: 0;
    width: 55%;
    max-height: 100%;
    display: -webkit-box;
    max-width: 200px;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.partnerCta {
  padding: 80px 0;
}

.homePartnerCol {
  -webkit-padding-start: 52px;
          padding-inline-start: 52px;
}

.artworkTextWrap {
  position: relative;
}

.homePartnerTitleReno,
.homePartnerTitleSystems {
  font-size: 36px;
  letter-spacing: 5.5px;
  z-index: 2;
}

.homePartnerTitleReno {
  font-weight: 300;
}

.homePartnerTitleSystems {
  font-weight: 500;
}

.brushBg {
  display: inline-block;
  background: url("../images/greenBrush.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 20px;
}

.homePartnerCornerSvg {
  position: absolute;
  bottom: -60px;
  left: -80px;
}

.sectionTextContainer {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.homePartnerButtonWrap {
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 991px) {
  .homePartnerButtonWrap {
    justify-content: center;
    margin-top: 20px;
  }
  .artworkTextWrap {
    position: static;
  }
  .homePartnerCol {
    position: static;
  }
  .rowWrap {
    position: relative;
  }
  .homePartnerCornerSvg {
    bottom: 0;
    left: -20px;
  }
  .homePartnerParagraph {
    margin-left: 45px;
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .partnerCta {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .homePartnerTitleReno,
.homePartnerTitleSystems {
    font-size: 22px;
  }
  .sectionTextContainer {
    margin-top: 0;
  }
  .homePartnerCol {
    -webkit-padding-start: 42px;
            padding-inline-start: 42px;
  }
  .homePartnerParagraph {
    position: relative;
    top: 0;
    max-width: 90%;
    margin-left: 35px;
  }
  .homePartnerCornerSvg {
    bottom: 40px;
    left: -10px;
  }
  .homePartnerButtonWrap {
    margin-top: 50px;
  }
}
.homeGrid {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10%;
}
.homeGrid .homGridBg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.07);
  width: 100%;
  height: calc(100% - 7px);
  box-shadow: 0px 2px 4px 0px rgba(104, 104, 104, 0.25);
}
.homeGrid .narrowHeader {
  max-width: 550px;
}
.homeGrid .rowWrap {
  margin-bottom: 20px;
}
.homeGrid .rowWrap .media {
  display: flex;
}
.homeGrid .rowWrap .media.justifyEnd {
  justify-content: flex-end;
}
.homeGrid .rowWrap .media.overlapeTop {
  margin-top: -100px;
}
.homeGrid .rowWrap .media.overlapeBottom {
  margin-bottom: -100px;
}
.homeGrid .rowWrap .media .imgWrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.homeGrid .rowWrap .media .imgWrap .imgBg {
  width: 100%;
  height: 100%;
  background: rgba(174, 174, 174, 0.15);
  position: absolute;
}
.homeGrid .rowWrap .media .imgWrap .imgBgPosition {
  top: -20px;
  right: -20px;
}
.homeGrid .rowWrap .media .imgWrap .imgBgPositionReverse {
  bottom: -20px;
  left: -20px;
}
.homeGrid .rowWrap .media .imgWrap .homeGridImg {
  max-width: 400px;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: 48%;
  -o-object-position: 48%;
  position: relative;
  border: 1px solid #c7c7c7;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.homeGrid .rowWrap .content {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

@media screen and (min-width: 992px) {
  .homeGrid {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .homeGrid {
    padding-top: 50px;
  }
  .homeGrid .homGridBg {
    height: calc(100% - 15px);
  }
  .homeGrid .rowWrap .media {
    justify-content: center !important;
  }
  .homeGrid .rowWrap .media.justifyEnd {
    justify-content: start;
  }
  .homeGrid .rowWrap .media.overlapeTop {
    margin-top: 0;
  }
  .homeGrid .rowWrap .media.overlapeBottom {
    margin-bottom: 0;
  }
  .homeGrid .rowWrap .content {
    padding: 50px 150px;
  }
  .homeGrid .content {
    padding-top: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .homeGrid .rowWrap .content {
    padding: 50px 65px;
  }
}
@media screen and (max-width: 576px) {
  .homeGrid .homGridBg {
    height: calc(100% - 10px);
  }
  .homeGrid .rowWrap .media {
    justify-content: center !important;
  }
  .homeGrid .rowWrap .media .imgWrap .homeGridImg {
    width: 300px;
    height: 300px;
    margin-left: auto;
  }
  .homeGrid .rowWrap .media .imgWrap .imgBgPositionReverse {
    top: -20px;
    right: -20px;
    bottom: 40px;
  }
}
.testimonials {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
}
.testimonials .contentContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .content {
  max-width: 830px;
}
.testimonials .content .paragraph {
  max-width: 60%;
  margin-top: 20px;
}
.testimonials .carousel .carousel-indicators button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0 3px;
}
.testimonials .carousel .carousel-indicators button:focus {
  outline: none;
}
.testimonials .carousel .carousel-indicators button svg circle {
  fill: black;
}
.testimonials .carousel .carousel-indicators button.active svg circle {
  fill: #fccd3e;
}

.testimonialsItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.testimonialsItem .testimonialQuote {
  position: relative;
  padding: 80px 100px;
  text-align: justify;
  font-family: Marcellus;
  font-size: 26px;
  font-weight: 400;
  line-height: 160%; /* 48px */
  z-index: 2;
}
.testimonialsItem .quoteSvgWrap {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  top: 30px;
}
.testimonialsItem .quoteSvgWrapMobile {
  display: none;
}
.testimonialsItem .topCornerSvg {
  position: absolute;
  top: 0;
  right: 0;
}
.testimonialsItem .bottomCornenrSvg {
  position: absolute;
  bottom: 0;
  left: 0;
}
.testimonialsItem .signature {
  display: flex;
  flex-direction: column;
  position: relative;
  align-self: flex-end;
  margin-top: -60px;
  margin-bottom: 20px;
  margin-right: 100px;
  color: #393939;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.testimonialsItem .signature .position {
  margin-top: 10px;
  margin-bottom: 15px;
}
.testimonialsItem .signature .logo {
  max-width: 200px;
  max-height: 80px;
  max-height: auto;
  align-self: center;
}

@media screen and (max-width: 991px) {
  .testimonials {
    margin-top: 120px;
  }
  .testimonials .contentContainer {
    padding: 0;
  }
  .testimonials .content h1 {
    max-width: 85%;
  }
  .testimonials .content .paragraph {
    max-width: 90%;
    font-size: 14px;
    text-align: justify;
  }
  .testimonialsItem .testimonialQuote {
    padding: 60px 80px;
    text-align: justify;
    font-size: 20px;
    line-height: 240%;
  }
  .testimonialsItem .quoteSvgWrap {
    display: none;
  }
  .testimonialsItem .quoteSvgWrapMobile {
    position: absolute;
    display: flex;
    top: 0;
  }
  .testimonialsItem .signature {
    margin-right: 80px;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
  }
  .testimonialsItem .signature .position {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .testimonialsItem .signature .logo {
    max-width: 120px;
    max-height: 45px;
    max-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .testimonials {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .testimonials .content h1 {
    max-width: 95%;
  }
  .testimonialsItem .testimonialQuote {
    font-size: 16px;
    line-height: 200%;
    padding: 60px 50px;
  }
  .testimonialsItem .topCornerSvg {
    right: -20px;
  }
  .testimonialsItem .bottomCornenrSvg {
    left: -20px;
  }
  .testimonialsItem .signature {
    margin-top: 0;
    align-self: center;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
.caseStudies {
  position: relative;
}
.caseStudies .background {
  mix-blend-mode: luminosity;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.caseStudies .overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(247, 247, 247, 0.9);
  width: 100%;
  height: 100%;
}
.caseStudies .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 75px 0;
}
.caseStudies .header .styledBorder {
  z-index: 2;
}
.caseStudies .header h2 {
  z-index: 2;
}
.caseStudies .header .paragraph {
  max-width: 480px;
}
.caseStudies .main {
  background: linear-gradient(90deg, rgba(81, 11, 118, 0.1) 33%, rgba(81, 11, 118, 0.9) 70%);
  padding-top: 50px;
  padding-bottom: 50px;
}
.caseStudies .main h1 {
  font-size: 24px;
  font-weight: 700;
  max-width: 550px;
  text-transform: capitalize;
}
.caseStudies .main .paragraph {
  max-width: 500px;
  margin-bottom: 10px;
}
.caseStudies .main .logoWrap {
  position: relative;
}
.caseStudies .main .logoWrap .logoBg {
  display: inline-block;
  width: 115px;
  height: 112px;
  position: absolute;
  bottom: 30px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 15px 0px rgb(173, 171, 173);
}
.caseStudies .main .logoWrap .logoBg img {
  display: block;
  max-width: 70%;
  max-height: 70%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.caseStudies .main .mediaCol {
  display: flex;
  justify-content: end;
  padding-right: 0;
}
.caseStudies .main .mediaCol .bigImg {
  position: relative;
  max-width: 378px;
  max-height: 569px;
}
.caseStudies .main .mediaCol .smallImg {
  position: absolute;
  border-radius: 5px;
  max-height: 373px;
  max-width: 173px;
  bottom: 0;
  left: 78px;
  z-index: 2;
}
.caseStudies .techStack {
  margin-top: 10px;
}
.caseStudies .techStack .paragraph {
  margin-top: 10px;
}
.caseStudies .imgs {
  margin-left: 12px;
}
.caseStudies .imgs img {
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
}

@media screen and (max-width: 991px) {
  .caseStudies .header {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .caseStudies .header h1 {
    max-width: 350px;
  }
  .caseStudies .header .paragraph {
    max-width: 360px;
  }
  .caseStudies .main {
    padding-top: 45px;
    padding-bottom: 0;
  }
  .caseStudies .main .mainRow {
    display: flex;
    flex-direction: column-reverse;
  }
  .caseStudies .main .mediaCol {
    justify-content: center;
    margin-bottom: 170px;
  }
  .caseStudies .main .mediaCol .bigImg {
    left: 60px;
  }
  .caseStudies .main .mediaCol .smallImg {
    left: 125px;
  }
}
@media screen and (max-width: 767px) {
  .caseStudies .main .mediaCol .bigImg {
    max-width: 248px;
    max-height: 374px;
    left: 30px;
  }
  .caseStudies .main .mediaCol .smallImg {
    left: 20%;
    max-width: 114px;
    max-height: 245px;
  }
}
@media screen and (max-width: 576px) {
  .caseStudies .main {
    padding-bottom: 50px;
  }
  .caseStudies .main .mediaCol .bigImg {
    max-width: 248px;
    max-height: 374px;
    left: 30px;
  }
  .caseStudies .main .mediaCol .smallImg {
    left: 35px;
    max-width: 114px;
    max-height: 245px;
  }
}
/* web hosting */
.webHosting {
  padding-top: 70px;
  padding-bottom: 70px;
  background-image: url("https://iili.io/JoYSDn2.png");
  position: relative;
}
.webHosting .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.webHosting .contentGroup {
  position: relative;
}
.webHosting .contentGroup h1 {
  margin-bottom: 0px;
}
.webHosting .contentGroup .paragraph {
  max-width: 500px;
}
.webHosting .contentGroup .titleGroup {
  position: relative;
}
.webHosting .contentGroup .webHostingCornerSvg {
  position: absolute;
  bottom: -60px;
  left: -60px;
}
.webHosting .btnWrap {
  display: flex;
  justify-content: flex-end;
  margin-right: 45px;
}
.webHosting .mediaCol {
  display: flex;
  justify-content: center;
}
.webHosting .mediaCol .imgWrap {
  position: relative;
  max-width: 300px;
}
.webHosting .mediaCol .imgWrap .image {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.webHosting .mediaCol .imgWrap .borderSquare {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 60%;
  height: 60%;
  border-right: 10px solid #138ab4;
  border-bottom: 10px solid #138ab4;
  box-shadow: 10px 10px 0px 0px rgba(201, 201, 201, 0.75);
  -webkit-box-shadow: 10px 10px 0px 0px rgba(201, 201, 201, 0.75);
  -moz-box-shadow: 10px 10px 0px 0px rgba(201, 201, 201, 0.75);
}

@media screen and (max-width: 991px) {
  /* Web hosting */
  .webHosting .mediaCol {
    justify-content: center;
    margin-top: 100px;
  }
}
@media screen and (max-width: 576px) {
  /* Web hosting */
  .webHosting {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .webHosting .webHostingCornerSvg {
    display: none;
  }
  .webHosting .mediaCol {
    justify-content: center;
    margin-top: 50px;
  }
  .webHosting .mediaCol .imgWrap .limitedImg {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 220px;
    height: 190px;
  }
}
/* facts section */
.facts {
  padding-top: 80px;
  padding-bottom: 100px;
}
.facts .header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.facts .factItemsWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  justify-content: center;
  padding-top: 70px;
}
.facts .factItemsWrap .factItem {
  position: relative;
  display: inline-block;
  max-height: 180px;
  margin-right: 15px;
}
.facts .factItemsWrap .factItem .content {
  display: flex;
  align-items: center;
  background: url("../images/pinkBrush.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-width: 360px;
}
.facts .factItemsWrap .factItem .content .count {
  color: #000;
  text-shadow: -6px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 120px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  top: -50px;
}
.facts .factItemsWrap .factItem .content .text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 20px;
  margin-left: 10px;
  position: relative;
  top: -50px;
}

@media screen and (max-width: 576px) {
  .facts {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .facts .factItemsWrap .factItem {
    max-width: 350px;
    max-height: 120px;
  }
  .facts .factItemsWrap .factItem .content .count {
    text-shadow: -4px 3px 0px rgba(0, 0, 0, 0.25);
    font-size: 80px;
    top: -20px;
    margin-left: 20px;
  }
  .facts .factItemsWrap .factItem .content .text {
    font-size: 14px;
    top: -20px;
  }
}
.clients {
  margin-top: 50px;
  margin-bottom: 50px;
}
.clients .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 120px;
}
.clients .clientsCornerSvg {
  position: absolute;
  bottom: -60px;
  left: -60px;
}
.clients .textWrap {
  position: relative;
}
.clients .btnWrap {
  display: flex;
  justify-content: flex-end;
  margin-right: 45px;
}
.clients .paragraph {
  max-width: 500px;
}
.clients .logosWrap {
  position: relative;
  margin-left: 15px;
}
.clients .logosWrap .couple {
  max-width: 70%;
  display: flex;
  justify-content: space-between;
}
.clients .logosWrap .coupleEnd {
  margin-left: 130px;
  margin-top: -40px;
}
.clients .logosWrap .circularLogo {
  position: relative;
}
.clients .logosWrap .circularLogo .logoBg {
  display: inline-block;
  width: 115px;
  height: 112px;
  position: relative;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0px 0px 60px 0px rgba(173, 171, 173, 0.4);
}
.clients .logosWrap .circularLogo .imgWrap {
  position: absolute;
  width: 115px;
  height: 112px;
  top: 0;
}
.clients .logosWrap .circularLogo .imgWrap img {
  display: block;
  max-width: 70%;
  max-height: 70%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media screen and (max-width: 1200px) and (min-width: 991px) {
  .clients .logosWrap .couple {
    max-width: 78%;
  }
  .clients .logosWrap .coupleEnd {
    margin-left: 110px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 991px) {
  .clients {
    margin-bottom: 80px;
  }
  .clients .logosWrap {
    margin-top: 100px;
    margin-left: 50px;
  }
  .clients .logosWrap .couple {
    max-width: 60%;
  }
  .clients .logosWrap .coupleEnd {
    margin-left: 150px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) {
  .clients .logosWrap {
    margin-top: 100px;
  }
  .clients .logosWrap .couple {
    max-width: 78%;
  }
  .clients .logosWrap .coupleEnd {
    margin-left: 120px;
    margin-top: -40px;
  }
}
@media screen and (max-width: 570px) {
  .clients {
    margin-bottom: 80px;
  }
  .clients .content {
    margin-top: 30px;
    margin-left: 30px;
  }
  .clients .btnWrap {
    margin-right: 0;
  }
  .clients .logosWrap {
    margin-top: 50px;
    margin-left: 30px;
  }
  .clients .logosWrap .couple {
    width: 65%;
  }
  .clients .logosWrap .coupleEnd {
    margin-left: 78px;
    margin-top: -35px;
  }
  .clients .logosWrap .circularLogo .logoBg {
    width: 68px;
    height: 66px;
  }
  .clients .logosWrap .circularLogo .imgWrap {
    width: 68px;
    height: 66px;
  }
  .clients .logosWrap .circularLogo .imgWrap img {
    max-width: 85%;
    max-height: 85%;
  }
}
@media screen and (max-width: 390px) {
  .clients .logosWrap {
    margin-left: 0;
  }
  .clients .logosWrap .couple {
    width: 75%;
  }
  .clients .logosWrap .coupleEnd {
    margin-left: 5rem;
  }
}
.contact {
  background: #000ee6;
  color: white;
  overflow: hidden;
}
.contact .content {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact .content .brushBg {
  background: url("../images/transpBrush.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 60px;
  position: relative;
  left: -12%;
  max-width: 570px;
}
.contact .content .paragraph {
  max-width: 500px;
}
.contact .formCol {
  padding: 40px 0;
  position: relative;
}
.contact .formCol .elipseSvg {
  position: absolute;
  top: 40px;
  right: -90px;
}

.wpcf7-form {
  padding-bottom: 20px;
}
.wpcf7-form p {
  margin-bottom: 0;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 textarea {
  width: 100%;
  padding: 30px 40px;
  background-color: transparent;
  border: 3px solid #fff;
  color: white;
  margin-bottom: 0;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: white;
}
.wpcf7 input[type=text]:-ms-input-placeholder, .wpcf7 input[type=email]:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  color: white;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 textarea::placeholder {
  color: white;
}
.wpcf7 input[type=text]:focus, .wpcf7 input[type=text]:active,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=email]:active,
.wpcf7 textarea:focus,
.wpcf7 textarea:active {
  outline: none;
}
.wpcf7 input[type=text]::-moz-selection, .wpcf7 input[type=email]::-moz-selection, .wpcf7 textarea::-moz-selection {
  background-color: #a9c2d3;
}
.wpcf7 input[type=text]::selection,
.wpcf7 input[type=email]::selection,
.wpcf7 textarea::selection {
  background-color: #a9c2d3;
}

.wpcf7 input:-webkit-autofill,
.wpcf7 input:-webkit-autofill:hover,
.wpcf7 input:-webkit-autofill:focus,
.wpcf7 input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email] {
  border-bottom: none;
}

.wpcf7 textarea {
  height: 180px;
}

.wpcf7 input[type=submit] {
  margin-top: 15px;
  border: 2px solid #fff;
  background-color: #000ee6;
  padding: 10px 20px;
  cursor: pointer;
  color: white;
}
.wpcf7 input[type=submit]:active {
  background-color: #000cc2;
}

.wpcf7-not-valid-tip {
  color: white;
  display: none;
}

.wpcf7-submit {
  position: absolute;
  right: 0;
}

@media screen and (min-width: 1367px) {
  .elipseSvg {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .contact {
    padding-top: 50px;
  }
  .contact .content .brushBg {
    left: -5%;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact .content {
    padding-left: 30px;
  }
  .wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 textarea {
    width: 90%;
    margin-left: 25px;
  }
  .wpcf7-submit {
    right: 30px;
  }
}
@media screen and (max-width: 570px) {
  .contact .content .brushBg {
    padding-left: 20px;
  }
  .wpcf7-submit {
    right: 20px;
  }
}
.footer {
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.footer .logoGrp {
  max-width: 28vw;
}
.footer .logoGrp .logo img {
  max-width: 190px;
  max-height: 32px;
}
.footer .logoGrp .logo .text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 5.5px;
  text-transform: uppercase;
  margin-left: 5px;
}
.footer .logoGrp .logo .text .systems {
  font-weight: 500;
}
.footer .logoGrp .address {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 182.143%; /* 25.5px */
  text-transform: capitalize;
  margin-top: 20px;
}
.footer .logoGrp .smIcons {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.footer .logoGrp .smIcons svg {
  width: 31.001px;
  height: 31px;
  cursor: pointer;
  margin-right: 10px;
}
.footer .footerMenu {
  padding-left: 60px;
  display: flex;
  flex-wrap: nowrap;
}
.footer .footerMenu .mainLinks {
  margin-right: 30px;
}
.footer .footerMenu .mainLinks .anchor {
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 159.375%; /* 25.5px */
  text-transform: capitalize;
  margin-right: 70px;
}
.footer .footerMenu .subLinks {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
}
.footer .footerMenu .subLinks .anchor {
  display: block;
  font-family: Lato;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.5px; /* 182.143% */
  text-transform: capitalize;
  margin: 7px 0;
}
.footer .copyRight {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer .copyRight .text {
  color: #000;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 182.143%; /* 25.5px */
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.footer .copyRight .text .icon {
  font-size: 18px;
  margin-right: 3px;
}

@media screen and (max-width: 991px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .footer .logoGrp {
    text-align: center;
  }
  .footer .logoGrp .smIcons {
    justify-content: center;
  }
  .footer .footerMenu {
    display: none;
  }
  .footer .copyRight {
    margin-top: 30px;
  }
}
.homeHero {
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
}
.homeHero .contentWrap {
  position: relative;
  top: 60px;
  padding: 115px 60px;
  display: flex;
  justify-content: center;
}
.homeHero .contentWrap .topCornerSvg {
  position: absolute;
  top: 60px;
  right: 0;
}
.homeHero .contentWrap .bottomCornenrSvg {
  position: absolute;
  bottom: 30px;
  left: 0;
}
.homeHero .contentWrap .content h2 {
  z-index: 4;
  color: #fccd3e;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.homeHero .contentWrap .content h1 {
  max-width: 900px;
  color: #fff;
  font-family: Lato;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 10.5px;
  text-transform: capitalize;
}
.homeHero .contentWrap .content .paragraph {
  color: #fff;
  max-width: 600px;
  margin-bottom: 25px;
}
.homeHero .contentWrap .content .qualityWrap {
  display: inline-block;
  background: url("../images/whiteBrush.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 40px;
}
.homeHero .contentWrap .content .qualityWrap .quality {
  color: #000;
  font-family: Lato;
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 10.5px;
  text-transform: capitalize;
}

@media screen and (max-width: 1050px) and (min-width: 991px) {
  .homeHero .contentWrap .content {
    margin-left: 50px;
  }
  .homeHero .contentWrap .content h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .homeHero .contentWrap .content h1 {
    font-size: 23px;
  }
  .homeHero .contentWrap .content .qualityWrap .quality {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .homeHero {
    overflow: hidden;
  }
  .homeHero .contentWrap {
    top: 80px;
  }
  .homeHero .contentWrap .bottomCornenrSvg {
    bottom: 110px;
    left: -20px;
  }
  .homeHero .contentWrap .topCornerSvg {
    right: -20px;
  }
  .homeHero .contentWrap .content .paragraph {
    margin-top: 30px;
    padding: 0 20px;
  }
  .homeHero .contentWrap .content .qualityWrap .quality {
    font-size: 23px;
  }
  .homeHero .contentWrap .content .btnWrap {
    display: flex;
    justify-content: center;
  }
  .homeHero .contentWrap .content .btnWrap .btnPosition {
    top: 80px;
  }
}
@media screen and (max-width: 375px) {
  .homeHero .contentWrap .content .paragraph {
    max-width: 95%;
    padding-left: 15px;
    text-align: justify;
  }
}
.navBar {
  padding: 40px 45px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.navBar .logo {
  display: flex;
  align-items: center;
}
.navBar .logo img {
  max-width: 235px;
  max-height: 40px;
  width: auto;
  height: auto;
  margin-right: 5px;
}
.navBar .navMenu {
  display: flex;
  align-items: center;
  list-style: none;
  margin-bottom: 0;
}
.navBar .navMenu .item {
  margin-left: 25px;
  font-family: Lato;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.navBar .navMenu .anchor {
  color: #000;
}
.navBar .navMenu .anchor:hover {
  text-decoration: none;
}
.navBar .navMenu.white .anchor {
  color: #fff;
}
.navBar .navMenu .navBarBtn {
  padding: 15px 20px;
  color: #18202b;
  text-align: center;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background-color: #fccd3e;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navBar .navMenu .navBarBtn .text {
  margin-right: 20px;
}
.navBar .navMenu .navBarBtn:focus {
  outline: none;
}
.navBar .navMenu .navBarBtn:active {
  background-color: #fbc00c;
}
.navBar .navMenu .navBarBtn .dotFlashing {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #ae9696;
  -webkit-animation: flashing-dots 1s infinite linear alternate;
          animation: flashing-dots 1s infinite linear alternate;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.navBar .navMenu .navBarBtn .dotFlashing::before,
.navBar .navMenu .navBarBtn .dotFlashing::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.navBar .navMenu .navBarBtn .dotFlashing::before {
  left: -10px;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  -webkit-animation: flashing-dots 1s infinite alternate;
          animation: flashing-dots 1s infinite alternate;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.navBar .navMenu .navBarBtn .dotFlashing::after {
  left: 10px;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  background-color: #ae9696;
  -webkit-animation: flashing-dots 1s infinite alternate;
          animation: flashing-dots 1s infinite alternate;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
@-webkit-keyframes flashing-dots {
  0% {
    background-color: #fff;
  }
  50%, 100% {
    background-color: #ae9696;
  }
}
@keyframes flashing-dots {
  0% {
    background-color: #fff;
  }
  50%, 100% {
    background-color: #ae9696;
  }
}

@media screen and (max-width: 1311px) {
  .navBar .logo img {
    max-width: 190px;
    max-height: 32px;
  }
  .navBar .navMenu .item {
    font-size: 9px;
    margin-left: 15px;
  }
  .navBar .navMenu .item .navBarBtn {
    padding: 12px 18px;
    font-size: 12px;
  }
}
@media screen and (min-width: 992px) {
  .mobNavWrap {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .navBar {
    display: none;
  }
  .mobNavWrap {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    padding-top: 40px;
    width: 100%;
    height: 0%;
    transition: background ease 0.7s;
  }
  .mobNavWrap .mobNavOverlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    padding-top: 40px;
    width: 100%;
    height: 0%;
  }
  .mobNavWrap.open {
    width: 100%;
    height: 101vh;
    background-color: #000;
    position: fixed;
  }
  .mobNavWrap .header {
    display: flex;
    justify-content: space-between;
    z-index: 25;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .mobNavWrap .header .logo {
    display: flex;
    align-items: center;
  }
  .mobNavWrap .header .logo img {
    max-width: 190px;
    max-height: 32px;
    margin-right: 5px;
  }
  .mobNavWrap .header .logo .text {
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 5.5px;
    text-transform: uppercase;
  }
  .mobNavWrap .header .logo .text .systems {
    font-weight: 500;
  }
  .mobNavWrap .header .logo.white {
    color: #fff;
  }
  .mobNavWrap .header .logo.openMenu {
    color: #fff;
  }
  .mobNavWrap .header .menuIcon {
    cursor: pointer;
  }
  .mobNavWrap .header .menuIcon .crossSvg {
    fill: #fff;
  }
  .mobNavWrap .header .menuIcon .crossSvg.hidden {
    display: none;
  }
  .mobNavWrap .header .menuIcon .burgerSvg g path {
    fill: #000;
  }
  .mobNavWrap .header .menuIcon .burgerSvg.white g path {
    fill: white;
  }
  .mobNavWrap .header .menuIcon .burgerSvg.hidden {
    display: none;
  }
  .mobNavWrap .menuItems {
    display: none;
    height: 100%;
  }
  .mobNavWrap .menuItems .navMob {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    top: 100px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
  }
  .mobNavWrap .menuItems .navMob .list {
    list-style: none;
    padding: 0;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobNavWrap .menuItems .navMob .list .item {
    margin-bottom: 20px;
    -webkit-animation: slideIn 0.8s ease forwards;
            animation: slideIn 0.8s ease forwards;
  }
  .mobNavWrap .menuItems .navMob .list .item .anchor {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobNavWrap .menuItems .navMob .list .item:hover .anchor, .mobNavWrap .menuItems .navMob .list .item:focus .anchor, .mobNavWrap .menuItems .navMob .list .item:active .anchor {
    color: #fccd3e;
  }
  .mobNavWrap .menuItems.open {
    display: block;
  }
  @-webkit-keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
.frontend {
  padding-top: 100px;
  padding-bottom: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100%;
  position: relative;
  width: 100%;
  background-position: center center;
}
.frontend .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.frontend .bgText {
  color: #fff;
  font-size: 155px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  opacity: 0.15;
}
.frontend .content {
  position: absolute;
  bottom: 50px;
  color: #fff;
}
.frontend .content h1 {
  font-family: Lato;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  max-width: 200px;
}
.frontend .content .media {
  margin-top: 15px;
  margin-bottom: 35px;
}
.frontend .content .media img {
  width: auto;
  height: auto;
  max-width: 110px;
  max-height: 80px;
  margin-right: 20px;
}
.frontend .content .btnPadding {
  padding: 15px 50px;
}

@media screen and (max-width: 1300px) {
  .frontend .bgText {
    font-size: 125px;
  }
  .frontend .content {
    bottom: 30px;
  }
  .frontend .content h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 1050px) {
  .frontend {
    padding-bottom: 250px;
  }
  .frontend .bgText {
    font-size: 85px;
  }
  .frontend .content {
    bottom: 60px;
    margin-left: 0;
  }
  .frontend .content h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .frontend {
    background-position: 0;
  }
}
@media screen and (max-width: 768px) {
  .frontend .bgText {
    font-size: 65px;
  }
  .frontend .content {
    bottom: 50px;
  }
  .frontend .content h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 576px) {
  .frontend {
    background-position: 38%;
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .frontend .bgText {
    display: none;
  }
  .frontend .content {
    position: relative;
    bottom: 0px;
  }
  .frontend .content .paragraph {
    max-width: 70vw;
  }
  .frontend .content .media {
    margin-top: 15px;
    margin-bottom: 20px;
  }
  .frontend .content .media img {
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 55px;
    margin-right: 20px;
  }
  .frontend .content .btnWrap {
    display: flex;
    justify-content: center;
    padding-top: 50px;
  }
}
.cardsDeck {
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fff;
  display: flex;
}
.cardsDeck .content {
  position: relative;
  padding: 0;
}
.cardsDeck .content .paragraph {
  max-width: 550px;
  margin-top: 20px;
  margin-bottom: 30px;
}
.cardsDeck .content .sideNote {
  transform: rotate(-7.604deg);
  color: #fff;
  font-family: Kalam;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  max-width: 330px;
  position: absolute;
  top: -30px;
  right: 0;
}
.cardsDeck .content .sideNote .text {
  font-size: 24px;
  text-transform: lowercase;
  margin-bottom: 7px;
}
.cardsDeck .content .sideNote .signature {
  font-size: 16px;
  margin-top: 0;
}
.cardsDeck .content .cards {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.cardsDeck .content .cards .whiteCard {
  background-color: #fff;
  color: #000;
  font-family: Lato;
  font-style: normal;
  line-height: normal;
  padding: 60px 25px;
  margin: 30px 30px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 30%;
  min-width: 340px;
}
.cardsDeck .content .cards .whiteCard h3 {
  font-family: Lato;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 7px;
  text-transform: capitalize;
}
.cardsDeck .content .cards .whiteCard .cardText {
  font-size: 14px;
  font-weight: 400;
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .cardsDeck {
    padding-top: 80px;
  }
  .cardsDeck .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cardsDeck .content .paragraph {
    margin: 15px;
  }
  .cardsDeck .content .sideNote {
    position: relative;
    top: 60px;
  }
  .cardsDeck .content .cards {
    justify-content: center;
  }
  .cardsDeck .content .cards .whiteCard {
    margin: 15px;
  }
}
.servicesHero {
  padding-top: 150px;
  padding-bottom: 150px;
}
.servicesHero .textCol {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.servicesHero .mediaCol {
  display: flex;
  justify-content: end;
}
.servicesHero .mediaCol .imgContainer {
  position: relative;
  width: 453px;
  height: 424px;
}
.servicesHero .mediaCol .imgContainer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 2;
}
.servicesHero .mediaCol .imgContainer .overlay {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(174, 174, 174, 0.15);
  left: -75px;
  top: 75px;
}
.servicesHero .mediaCol .imgContainer .topSvg {
  position: absolute;
  top: -42px;
  left: -35px;
  z-index: 1;
}
.servicesHero .mediaCol .imgContainer .bottomSvg {
  position: absolute;
  bottom: -42px;
  right: -35px;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .servicesHero {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .servicesHero .mediaCol {
    justify-content: center;
    padding-top: 50px;
  }
}
@media screen and (max-width: 576px) {
  .servicesHero .mediaCol {
    overflow: hidden;
    padding-bottom: 50px;
  }
  .servicesHero .mediaCol .imgContainer {
    max-height: 345px;
  }
}
.seoHero {
  padding-top: 90px;
  padding-bottom: 14%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.seoHero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 138, 180, 0.53);
}
.seoHero .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8%;
  color: #fff;
  position: relative;
  text-align: center;
}
.seoHero .content .paragraph {
  text-align: center;
  max-width: 450px;
}
.seoHero .bgText {
  color: #fff;
  font-family: Lato;
  opacity: 0.5;
  font-size: 10.8vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  position: absolute;
  left: -10px;
  bottom: -55px;
}

@media screen and (min-width: 1400px) {
  .seoHero .bgText {
    font-size: 150px;
  }
}
@media screen and (max-width: 1200px) {
  .seoHero {
    padding-top: 110px;
  }
  .seoHero .bgText {
    left: -10px;
    bottom: -35px;
  }
}
@media screen and (max-width: 576px) {
  .seoHero {
    padding-top: 50px;
  }
  .seoHero .content {
    padding-top: 60px;
  }
  .seoHero .content h1 {
    margin-top: 10px;
  }
  .seoHero .content .paragraph {
    max-width: 280px;
  }
  .seoHero .bgText {
    left: 0;
    bottom: -15px;
  }
}
.overlappingBlock {
  padding-top: 80px;
}
.overlappingBlock .content .text h1 {
  color: #000;
  font-family: Lato;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  max-width: 500px;
}
.overlappingBlock .content .text .paragraph {
  font-weight: 300;
}
.overlappingBlock .content .mediaOverlap {
  margin-top: -155px;
}
.overlappingBlock .content .media {
  max-width: 402px;
  height: 378px;
  position: relative;
}
.overlappingBlock .content .media img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.overlappingBlock .content .media .borderSquare {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 60%;
  height: 60%;
  border-right: 10px solid #fccd3e;
  border-bottom: 10px solid #fccd3e;
  box-shadow: 10px 10px 0px 0px rgba(201, 201, 201, 0.75);
  -webkit-box-shadow: 10px 10px 0px 0px rgba(201, 201, 201, 0.75);
  -moz-box-shadow: 10px 10px 0px 0px rgba(201, 201, 201, 0.75);
}

@media screen and (max-width: 1200px) {
  .overlappingBlock .content {
    display: flex;
    flex-direction: column-reverse;
  }
  .overlappingBlock .content .media {
    top: 0;
    margin-bottom: 50px;
    align-self: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 576px) {
  .overlappingBlock .content .text h1 {
    padding-left: 15px;
  }
  .overlappingBlock .content .text .paragraph {
    padding-left: 15px;
  }
  .overlappingBlock .content .media {
    width: 360px;
    height: 336px;
  }
}
.devCycle {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.devCycle .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.devCycle .content .textCard {
  width: 380px;
  padding-top: 60px;
  padding-left: 30px;
}

@media screen and (max-width: 1200px) {
  .devCycle .content .cardWrap {
    width: 380px;
    margin-right: 40px;
  }
  .devCycle .content .textCard {
    order: -1;
    margin-right: 40px;
  }
}
@media screen and (max-width: 991px) {
  .devCycle .content {
    justify-content: center;
  }
  .devCycle .content .textCard {
    padding-left: 0;
    padding-right: 30px;
  }
}
@media screen and (max-width: 576px) {
  .devCycle {
    margin-top: 0;
  }
  .devCycle .content {
    justify-content: start;
  }
  .devCycle .content .textCard {
    margin-right: 0;
  }
}
.awsm-lists {
  border: none !important;
}
.awsm-lists .awsm-job-item {
  border: none !important;
}
.awsm-lists .awsm-job-item h2.awsm-job-post-title a {
  font-size: 18px;
  color: black !important;
  text-decoration: underline;
}
.awsm-lists .awsm-job-item a.awsm-job-more {
  display: none;
}

input#awsm-application-submit-btn {
  background-color: #000;
  position: relative;
  color: #f1f1f1;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
  padding: 12px 22px;
  border: none;
  display: inline-block;
  z-index: 2;
  transform: translate(-7px, 7px);
  transition: transform 0.5s ease;
  min-width: 160px;
}/*# sourceMappingURL=main.css.map */