/* ========================================================================================= */
/*Defaults*/
/* ========================================================================================= */
body {
  color: #000;
  font-family: "Avenir", sans-serif;
  font-size: 20px;
  overflow-x: hidden;
  margin: 0;
  background-color: #000;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0px;
  width: 100%;
}

#what-we-do > .container > .row > .col > .blurb-wrap > h4 {
    font-size: 1.2em; 
}


/* ----------------------------------------------------------------------------------------- */
/* Fonts */
/* ----------------------------------------------------------------------------------------- */
@font-face {
  font-family: "Avenir";
  src: url(../fonts/Avenir_Medium.ttf);
}
@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-Light.ttf);
}
@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-Regular.ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Barlow";
  src: url(../fonts/Barlow-Bold.ttf);
  font-weight: bold;
}
.ff-1 {
  font-family: "Avenir";
}
.ff-2 {
  font-family: "Barlow";
}
/* ----------------------------------------------------------------------------------------- */
/* Buttons */
/* ----------------------------------------------------------------------------------------- */
.btn {
  background: linear-gradient(90deg, #7e00ff, #3c00ff);
  color: #fff;
  text-decoration: unset;
  font-size: 14px;
  padding: 20px 50px;
  display: block;
  width: fit-content;
  border-radius: 10px;
  transform: skewX(340deg);
  margin: auto;
  box-shadow: 0 0 50px #a513e66b;
  transition: transform 0.3s ease; /* Added transition for a smoother effect */
}

.btn:hover {
  transform: skewX(340deg) scale(1.1); /* Added scale for the zoom effect on hover */
}
.btn span {
  transform: skewX(-340deg);
  display: block;
}
.btn:hover span {
   transform: skewX(-340deg);
}
/* ========================================================================================= */
/* Modal Menu */
/* ========================================================================================= */
.modal-menu {
  position: fixed;
  background: rgba(0,0,0,0.9);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  display: none;
}
.modal-menu.active {
  display: flex;
}
.modal-menu > ul > li > a {
  color: #fff;
  text-decoration: unset;
}
.modal-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: grid;
  gap: 15px;
}
.modal-menu > img {
  width: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}

/* ----------------------------------------------------------------------------------------- */
/* ========================================================================================= */
/* Sections */
/* ========================================================================================= */
/* ----------------------------------------------------------------------------------------- */
/* Header */
/* ----------------------------------------------------------------------------------------- */
header {
  position: absolute;
  left: 0;
  right: 0;
  padding: 30px 15px;
}
header > .container {
  padding: 0;
}
header > .container > .row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}
header > .container > .row > .col > a {
  display: block;
  width: fit-content;
}
header > .container > .row > .col > a > img {
  width: 200px;
}
header > .container > .row > .col > ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  list-style: none;
  justify-content: flex-end;
  font-size: 12px;
}
header > .container > .row > .col > ul > li a {
  text-decoration: none;
  color: #fff;
}
header > .container > .row > .col > ul > li:last-child a {
  border: 1px solid #c600ff;
  padding: 7px 30px;
  border-radius: 30px;
  transition: 0.3s;
}
header > .container > .row > .col > ul > li:last-child a:hover {
  background-color: #c600ff;
}
header.mobile {
  display: none;
}
/* ----------------------------------------------------------------------------------------- */
/* Welcome */
/* ----------------------------------------------------------------------------------------- */
#welcome {
  background-image: url("../img/bg-1.jpg");
  background-size: cover;
  padding-top: 200px;
}
#welcome > .container > .row > .col {
  display: grid;
  gap: 20px;
}
#welcome > .container > .row > .col > h4 {
  color: #d1d1d2;
  text-align: center;
  font-family: "Barlow";
  letter-spacing: 10px;
  font-size: 15px;
  font-weight: normal;
}
#welcome > .container > .row > .col > h1 {
  color: #d1d1d2;
  text-align: center;
  font-family: "Barlow";
  font-size: 50px;
  line-height: 100%;
  font-weight: normal;
}
#welcome > .container > .row > .col > p {
  color: #d1d1d2;
  text-align: center;
  font-family: "Barlow";
  font-size: 18px;
  line-height: 100%;
}
#welcome > .container > .row > .col > img {
  width: 100%;
  max-width: 700px;
  margin: auto;
  display: block;
}
/* ----------------------------------------------------------------------------------------- */
/* Featured Clients */
/* ----------------------------------------------------------------------------------------- */
#featured-clients {
  background-color: #000;
  padding-bottom: 80px;
  position: relative;
}
#featured-clients:before {
  content: "";
  border-top: 35px solid black;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
#featured-clients > .container {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  padding-left: 6%;
}
#featured-clients > .container:before {
  content: "FEATURED CLIENTS";
  color: #d1d1d2;
  position: absolute;
  left: -35px;
  transform: rotate(-90deg);
  top: 50%;
  letter-spacing: 5px;
  line-height: 100%;
}
#featured-clients > .container > .row {
  overflow: hidden;
  margin-left: 8%;
}
#featured-clients
  > .container
  > .row
  > .col
  > .client-slider
  > .slick-list
  > .slick-track
  > img {
  margin: 0 25px;
}
/* ----------------------------------------------------------------------------------------- */
/* Question */
/* ----------------------------------------------------------------------------------------- */
#question {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
}
#question > .container > .row > .col > h4 {
  color: #000;
  text-align: center;
  font-family: "Barlow";
  letter-spacing: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: normal;
}
#question > .container > .row > .col > h2 {
  color: #000;
  text-align: center;
  font-family: "Barlow";
  font-size: 45px;
  line-height: 100%;
  margin-bottom: 30px;
  font-weight: normal;
}
#question > .container > .row > .col > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 600px;
  margin: auto;
  font-family: "Barlow";
  margin-bottom: 30px;
}
#question > .container > .row > .col > ul li {
  position: relative;
  padding-left: calc(30px + 20px);
  margin-bottom: 20px;
}
#question > .container > .row > .col > ul li:before {
  content: "";
  background-image: url(../img/img-7.png);
  background-size: contain;
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
}
#question > .container > .row > .col > h3 {
  color: #7300ff;
  font-family: "Barlow";
  text-align: center;
  margin-bottom: 30px;
}
/* ----------------------------------------------------------------------------------------- */
/* What We Do */
/* ----------------------------------------------------------------------------------------- */
#what-we-do {
  background-image: url("../img/bg-2.jpg");
  background-size: cover;
  padding: 80px 0;
  position: relative;
}
#what-we-do > .container:first-child {
  max-width: 100%;
  border-bottom: 1px solid #5a4a57;
  padding-bottom: 80px;
}
#what-we-do > .container:nth-child(2) {
  padding-top: 80px;
  position: relative;
}
#what-we-do > .container:nth-child(2):before {
  content: "DESIGN";
  color: #d1d1d2;
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  letter-spacing: 10px;
  font-size: 30px;
  left: 0;
}
#what-we-do > .container:nth-child(2) > .row {
  width: 900px;
  margin: auto 0 auto auto;
}
#what-we-do > .container > .row > .col > h2 {
  color: #d1d1d2;
  text-align: center;
  font-family: "Barlow";
  font-size: 45px;
  line-height: 100%;
  font-weight: normal;
}
#what-we-do > .container > .row > .col > h3 {
  color: #d1d1d2;
  text-align: left;
  font-family: "Barlow";
  font-size: 35px;
  line-height: 100%;
  font-weight: normal;
  margin-bottom: 80px;
}
#what-we-do > .container > .row > .col > .blurb-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 80px;
  row-gap: 30px;
  margin-left: -30px;
  margin-right: -30px;
}
#what-we-do > .container > .row > .col > .blurb-wrap > .blurb {
  padding: 30px;
}
#what-we-do
  > .container
  > .row
  > .col
  > .blurb-wrap
  > .blurb:not(:nth-child(3n)) {
  border-right: 1px solid #524950;
}
#what-we-do > .container > .row > .col > .blurb-wrap > .blurb > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}
#what-we-do > .container > .row > .col > .blurb-wrap > .blurb > h4 {
  color: #fff;
  margin-bottom: 15px;
  line-height: 130%;
}
#what-we-do > .container > .row > .col > .blurb-wrap > .blurb > p {
    color: #808d98;
    font-size: 1em;
  line-height: 130%;
}



/* ----------------------------------------------------------------------------------------- */
/* Development */
/* ----------------------------------------------------------------------------------------- */
#development {
  background-color: #000;
  padding: 80px 0;
}
#development > .container {
  position: relative;
}
#development > .container:before {
  content: "DEVELOPMENT";
  color: #d1d1d2;
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  letter-spacing: 10px;
  font-size: 30px;
  left: 0;
}
#development > .container > .row {
  width: 900px;
  margin: auto 0 auto auto;
}
#development > .container > .row > .col > h3 {
  color: #d1d1d2;
  text-align: left;
  font-family: "Barlow";
  font-size: 35px;
  line-height: 100%;
  font-weight: normal;
  margin-bottom: 80px;
}
#development > .container > .row > .col > .blurb-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 80px;
  row-gap: 30px;
  margin-left: -30px;
  margin-right: -30px;
}
#development > .container > .row > .col > .blurb-wrap > .blurb {
  padding: 30px;
}
#development
  > .container
  > .row
  > .col
  > .blurb-wrap
  > .blurb:not(:nth-child(3n)) {
  border-right: 1px solid #524950;
}
#development > .container > .row > .col > .blurb-wrap > .blurb > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}
#development > .container > .row > .col > .blurb-wrap > .blurb > h4 {
  color: #fff;
  margin-bottom: 15px;
  line-height: 130%;
}
#development > .container > .row > .col > .blurb-wrap > .blurb > p {
    color: #808d98;
    font-size: 1em;
  line-height: 130%;
}
/* ----------------------------------------------------------------------------------------- */
/* Optimization */
/* ----------------------------------------------------------------------------------------- */
#optimization {
  background-image: url("../img/bg-1.jpg");
  background-size: cover;
  padding: 80px 0;
  position: relative;
}
#optimization > .container {
  position: relative;
}
#optimization > .container:before {
  content: "OPTIMIZATION";
  color: #d1d1d2;
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(-180deg);
  letter-spacing: 10px;
  font-size: 30px;
  left: 0;
}
#optimization > .container > .row {
  width: 900px;
  margin: auto 0 auto auto;
}
#optimization > .container > .row > .col > h3 {
  color: #d1d1d2;
  text-align: left;
  font-family: "Barlow";
  font-size: 35px;
  line-height: 100%;
  font-weight: normal;
  margin-bottom: 80px;
}
#optimization > .container > .row > .col > .blurb-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 80px;
  row-gap: 30px;
  margin-left: -30px;
  margin-right: -30px;
}
#optimization > .container > .row > .col > .blurb-wrap > .blurb {
  padding: 30px;
}
#optimization
  > .container
  > .row
  > .col
  > .blurb-wrap
  > .blurb:not(:nth-child(3n)) {
  border-right: 1px solid #524950;
}
#optimization > .container > .row > .col > .blurb-wrap > .blurb > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
}
#optimization > .container > .row > .col > .blurb-wrap > .blurb > h4 {
  color: #fff;
  margin-bottom: 15px;
  line-height: 130%;
}
#optimization > .container > .row > .col > .blurb-wrap > .blurb > p {
    color: #808d98;
    font-size: 1em;
  line-height: 130%;
}
/* ----------------------------------------------------------------------------------------- */
/* Platforms */
/* ----------------------------------------------------------------------------------------- */
#platforms {
  padding: 80px 0;
  position: relative;
  background-color: #fff;
}
#platforms > .container > .row > .col > h4 {
  color: #000;
  text-align: center;
  font-family: "Barlow";
  letter-spacing: 10px;
  font-size: 15px;
  margin-bottom: 20px;
  font-weight: normal;
}
#platforms > .container > .row > .col > h2 {
  color: #000;
  text-align: center;
  font-family: "Barlow";
  font-size: 50px;
  line-height: 100%;
  margin-bottom: 80px;
  font-weight: normal;
}
#platforms > .container > .row > .col > img {
  width: 100%;
  max-width: 700px;
  margin: auto !important;
  display: block;
  margin-bottom: 50px !important;
}
#platforms > .container > .row > .col > h3 {
  color: #7300ff;
  font-family: "Barlow";
  text-align: center;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
}
/* ----------------------------------------------------------------------------------------- */
/* Testimonials */
/* ----------------------------------------------------------------------------------------- */
#testimonials {
  background-image: url(../img/bg-1.jpg);
  background-size: cover;
  padding-top: 80px;
  position: relative;
}
#testimonials > .container {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  padding-left: 0%;
}
#testimonials > .container > .row > .col > h2 {
  color: #d1d1d2;
  text-align: center;
  font-family: "Barlow";
  font-size: 45px;
  line-height: 100%;
  font-weight: normal;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider {
  padding-left: 3%;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item {
  padding: 80px 0;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px #a513e66b;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial
  > p {
  max-width: 100%;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial
  > img {
  max-width: 100%;
}
#testimonials > .container > .row > .col > .testimonial-slider > .owl-stage-outer > .owl-stage > .owl-item > .testimonial > img:last-child {
  max-width: 100%;
  width: 150px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: auto;  
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial
  > .text {
  text-align: center;
  margin-bottom: 15px;
  font-size: 16px;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial
  > .author-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial
  > h4 {
  text-align: center;
  font-family: "Barlow";
  font-weight: 500;
}
#testimonials
  > .container
  > .row
  > .col
  > .testimonial-slider
  > .owl-stage-outer
  > .owl-stage
  > .owl-item
  > .testimonial
  > h5 {
  text-align: center;
  font-family: "Barlow";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
/* ----------------------------------------------------------------------------------------- */
/* Contact */
/* ----------------------------------------------------------------------------------------- */
#contact {
  background-color: #000;
  position: relative;
}
#contact .container:nth-child(2) {
  max-width: 100%;
  border-top: 1px solid #5e3187;
  border-bottom: 1px solid #5e3187;
}
#contact .container:nth-child(2) .row {
  max-width: 1200px;
  padding: 0px;
  width: 100%;
  margin: auto;
}
#contact > .container:nth-child(2) > .row > .col {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 0px;
  justify-content: center;
}
#contact > .container:nth-child(2) > .row > .col > p {
  font-family: "Barlow";
  font-size: 25px;
}
#contact > .container:nth-child(2) > .row > .col > p:nth-child(2) {
  background: -webkit-linear-gradient(45deg, #7e00ff, #a78cff 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#contact > .container:nth-child(2) > .row > .col > p > .btn {
  font-family: "Avenir" !important;
}
#contact > .container > .row > .col > img {
  width: 100%;
  max-width: 700px;
  margin: auto;
  display: block;
  margin-bottom: -16px;
}
#contact > .container > .row > .col {
  position: relative;
}
#contact > .container > .row > .col > h2 {
  position: absolute;
  color: #fff;
  text-align: center;
  display: block;
  letter-spacing: 34px;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(50% + 50px);
  width: 100%;
}
/* ----------------------------------------------------------------------------------------- */
/* Footer */
/* ----------------------------------------------------------------------------------------- */
#footer {
  background-color: #000;
  padding: 50px 0;
}
#footer .container .row {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 20px;
  align-items: center;
}
#footer .container .row .col:nth-child(1) > a {
  display: block;
}
#footer .container .row .col:nth-child(1) > a > img {
  width: 200px;
  display: block;
}
#footer .container .row .col:nth-child(2) > ul {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
  list-style: none;
  justify-content: center;
  font-size: 14px;
}
#footer .container .row .col:nth-child(2) > ul > li:not(:last-child):after {
  content: "-";
  color: #fff;
  margin: 0 15px;
}
#footer .container .row .col:nth-child(2) > ul > li a {
  text-decoration: none;
  color: #fff;
}
#footer .container .row .col:nth-child(3) > a > img {
  width: 30px;
  height: 30px;
}
/* ========================================================================================= */
/*Responsive*/
/* ========================================================================================= */

@media screen and (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }
  .container {
    max-width: 1200px !important;
    width: 100%;
  }
  #what-we-do > .container:nth-child(2) > .row,
  #development > .container > .row,
  #optimization > .container > .row {
    width: 100%;
    padding-right: 30px;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 20px 0;
  }
  header > .container > .row > .col > ul {
    font-size: 11px;
    gap: 15px;
  }
  header > .container > .row > .col > a > img {
    width: 125px;
  }
  .container {
    max-width: calc(100% - 40px) !important;
  }
  #welcome {
    padding-top: 150px;
  }
  #featured-clients > .container {
    padding: 0;
    max-width: calc(100% - 50px) !important;
  }
  #featured-clients > .container:before {
    content: "FEATURED CLIENTS";
    color: #d1d1d2;
    position: absolute;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(-180deg);
    letter-spacing: 10px;
    font-size: 10px;
    left: 0;
    top: 0;
  }
  #featured-clients > .container > .row {
    width: 88%;
    margin: auto 0 auto auto;
  }
  #platforms > .container > .row > .col > img {
    margin-bottom: 50px !important;
  }
  #contact > .container:nth-child(2) > .row > .col {
    gap: 20px;
    padding: 50px 0;
  }
  #contact > .container:nth-child(2) > .row > .col > p {
    font-size: 16px;
  }
  #contact > .container:nth-child(2) > .row > .col > p > .btn {
    font-size: 12px;
    padding: 15px 30px;
  }
  #footer .container .row .col:nth-child(1) > a > img {
    width: 125px;
  }

  #footer .container .row .col:nth-child(2) > ul {
    font-size: 12px;
  }
}

@media screen and (max-width: 567px) {
  header {
    display: none;
  }
  header.mobile > .container > .row {
    grid-template-columns: 1fr;
  }
  header.mobile {
    display: flex;
    position: initial;
    background: #000;
  }
  header.mobile .container > .row > .col {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header.mobile .container > .row > .col > .toggle-menu {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-right: 25px;
  }
  header.mobile .container > .row > .col > a {
    display: flex;
  }
  header.mobile .container > .row > .col > a.btn {
    margin-right: 0;
    background: transparent;
    box-shadow: unset;
    border: 1px solid #a700d8;
    padding: 7px 15px !important;
    font-size: 11px;
    margin-top: 0;
    border-radius: 5px;
  }
  #welcome {
    background-position: 60% 0%;
    padding-top: 50px;
  }
  #welcome > .container > .row > .col {
    gap: 15px;
  }
  #welcome > .container > .row > .col > p {
    font-size: 11px;
  }
  #welcome > .container > .row > .col > h4 {
    font-size: 12px;
    letter-spacing: 5px;
  }
  #welcome > .container > .row > .col > h1 {
    font-size: 21px;
    line-height: 120%;
  }
  .btn {
    font-size: 11px;
    padding: 10px 30px;
    margin-top: 15px;
  }
  #featured-clients {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #featured-clients > .container {
    margin-top: 50px;
    margin-right: 0;
  }
  #featured-clients > .container:before {
    font-size: 12px;
    letter-spacing: 5px;
  }
  #featured-clients > .container > .row {
    margin-left: 17%;
  }
  #question {
    padding: 50px 0;
    overflow-y: initial !important;
  }
  #question > .container > .row > .col > h4 {
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 15px;
  }
  #question > .container > .row > .col > h2 {
    font-size: 21px;
    line-height: 140%;
    margin-bottom: 15px;
  }
  #question > .container > .row > .col > ul {
    margin-bottom: 15px;
    font-size: 14px;
  }
  #question > .container > .row > .col > ul li {
    padding-left: calc(30px + 15px);
  }
  #question > .container > .row > .col > h3 {
    margin-bottom: 15px;
    font-size: 16px;
  }
  #what-we-do {
    padding: 0;
    background: #000;
  }
  #what-we-do > .container:first-child {
    padding-bottom: 50px;
    display: none;
  }
  #development,
  #optimization {
    background: #000;
    border-top: 1px solid #574d55;
  }
  #optimization {
    border-bottom: 1px solid #574d55;
  }
  #what-we-do > .container:nth-child(2),
  #development,
  #optimization {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap,
  #development > .container > .row > .col > .blurb-wrap,
  #optimization > .container > .row > .col > .blurb-wrap {
    width: 88%;
    margin: auto 0 auto auto !important;
  }
  #what-we-do > .container:nth-child(2):before,
  #development > .container:before,
  #optimization > .container:before {
    top: 12%;
    font-size: 11px;
  }
  #what-we-do > .container > .row > .col > h2,
  #platforms > .container > .row > .col > h2,
  #testimonials > .container > .row > .col > h2 {
    font-size: 35px;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap,
  #development > .container > .row > .col > .blurb-wrap,
  #optimization > .container > .row > .col > .blurb-wrap {
    grid-template-columns: 1fr 1fr;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap > .blurb,
  #development > .container > .row > .col > .blurb-wrap > .blurb,
  #optimization > .container > .row > .col > .blurb-wrap > .blurb {
    border-right: 0px !important;
  }
  #what-we-do
    > .container
    > .row
    > .col
    > .blurb-wrap
    > .blurb:not(:nth-child(2n)),
  #development
    > .container
    > .row
    > .col
    > .blurb-wrap
    > .blurb:not(:nth-child(2n)),
  #optimization
    > .container
    > .row
    > .col
    > .blurb-wrap
    > .blurb:not(:nth-child(2n)) {
    border-right: 1px solid #524950 !important;
  }
  #optimization > .container > .row > .col > .blurb-wrap > .blurb > h4,
  #development > .container > .row > .col > .blurb-wrap > .blurb > h4,
  #what-we-do > .container > .row > .col > .blurb-wrap > .blurb > h4 {
    font-size: 13px;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap > .blurb > p,
  #development > .container > .row > .col > .blurb-wrap > .blurb > p,
  #optimization > .container > .row > .col > .blurb-wrap > .blurb > p {
    font-size: 11px;
  }
  #what-we-do > .container > .row > .col > h3,
  #development > .container > .row > .col > h3,
  #optimization > .container > .row > .col > h3 {
    font-size: 16px;
    padding-bottom: 50px;
    padding-top: 50px;
    position: relative;
    margin: 0;
  }
  #what-we-do > .container > .row > .col > h3:after,
  #development > .container > .row > .col > h3:after,
  #optimization > .container > .row > .col > h3:after {
    content: "";
    background-image: url(../img/img-52.png);
    background-size: contain;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    right: 0;
    top: 48%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap,
  #development > .container > .row > .col > .blurb-wrap,
  #optimization > .container > .row > .col > .blurb-wrap {
    margin-left: -15px;
    margin-right: -15px;
    margin-right: -15px;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap > .blurb,
  #development > .container > .row > .col > .blurb-wrap > .blurb,
  #optimization > .container > .row > .col > .blurb-wrap > .blurb {
    padding: 15px;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap,
  #development > .container > .row > .col > .blurb-wrap,
  #optimization > .container > .row > .col > .blurb-wrap {
    row-gap: 15px;
    margin-bottom: 50px;
  }
  #what-we-do > .container > .row > .col > .blurb-wrap > .blurb > img,
  #development > .container > .row > .col > .blurb-wrap > .blurb > img,
  #optimization > .container > .row > .col > .blurb-wrap > .blurb > img {
    width: 30px;
    height: 30px;
  }
  #what-we-do > .container:nth-child(2) > .row,
  #development > .container > .row,
  #optimization > .container > .row {
    padding-right: 0;
  }
  #what-we-do .btn,
  #development .btn,
  #optimization .btn {
    margin-bottom: 50px;
  }
  #platforms {
    padding: 50px 0;
  }
  #platforms > .container > .row > .col > h2 {
    margin-bottom: 50px;
  }
  #platforms > .container > .row > .col > h3 {
    font-size: 25px;
  }
  #platforms > .container > .row > .col > h3 > br {
    display: none;
  }
  #development > .container:before {
    top: 5%;
  }
  #optimization > .container:before {
    top: 7%;
  }
  #testimonials > .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  #testimonials > .container > .row > .col > .testimonial-slider {
    margin-left: 7%;
  }
  #testimonials {
    padding-top: 50px;
    padding-bottom: 0;
  }
  #testimonials
    > .container
    > .row
    > .col
    > .testimonial-slider
    > .owl-stage-outer
    > .owl-stage
    > .owl-item
    > .testimonial {
    box-shadow: 0 0 15px #a513e66b;
    width: 200px;
  }
  #testimonials
    > .container
    > .row
    > .col
    > .testimonial-slider
    > .owl-stage-outer
    > .owl-stage
    > .owl-item {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #contact > .container > .row > .col > h2 {
    font-size: 12px;
    letter-spacing: 16px;
  }
  #contact > .container > .row > .col > img {
    margin-bottom: -8px;
  }
  #contact > .container:nth-child(2) > .row > .col {
    flex-direction: column;
    gap: 10px;
  }
  #contact > .container:nth-child(2) > .row > .col > p {
    font-size: 18px;
  }
  #footer .container .row {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  #footer .container .row .col:nth-child(1) > a {
    text-align: center;
    display: block;
    margin: auto;
    width: fit-content;
  }
  #footer .container .row .col:nth-child(2) > ul > li:not(:last-child):after {
    content: "-";
    color: #fff;
    margin: 0 15px;
  }

  /* Hide */

  #what-we-do > .container > .row > .col > .blurb-wrap,
  #development > .container > .row > .col > .blurb-wrap,
  #optimization > .container > .row > .col > .blurb-wrap,
  #what-we-do > .container:nth-child(2):before,
  #development > .container:before,
  #optimization > .container:before,
  #what-we-do .btn,
  #development .btn,
  #optimization .btn {
    display: none;
  }

  #what-we-do.active > .container > .row > .col > .blurb-wrap,
  #development.active > .container > .row > .col > .blurb-wrap,
  #optimization.active > .container > .row > .col > .blurb-wrap,
  #what-we-do.active > .container:nth-child(2):before,
  #development.active > .container:before,
  #optimization.active > .container:before,
  #what-we-do.active .btn,
  #development.active .btn,
  #optimization.active .btn {
    display: grid;
  }

  #what-we-do.active > .container > .row > .col > h3:after,
  #development.active > .container > .row > .col > h3:after,
  #optimization.active > .container > .row > .col > h3:after {
    transform: rotate(45deg) translateY(-50%);
  }
}
