body {
  font-family: "Roboto";
}

button:focus {
  outline: 0;
}

button:hover {
  background-color: #3d6fc2;
}

@media screen and (min-width: 320px) {

  .desktop,
  .tablet {
    display: none;
  }

  .mobileDesktop {
    display: block;
  }

  .mobile,
  .mobileTablet {
    display: block;
  }

  .desktopOnly {
    display: none;
  }

  .desktopTablet {
    display: none;
  }

  .footerTablet {
    display: none;
  }
}

@media screen and (min-width: 768px) {

  .desktop,
  .tablet {
    display: block !important;
  }

  .mobileDesktop {
    display: none;
  }

  .mobile {
    display: none;
  }

  .desktopTablet {
    display: flex;
  }

  .footerTablet {
    display: block;
  }

  .carousel-inner {
    min-height: 400px;
  }
}

@media screen and (min-width: 1024px) {
  .desktopOnly {
    display: block;
  }

  .mobileDesktop {
    display: block;
  }

  .footerTablet {
    display: none;
  }

  .tablet,
  .mobileTablet {
    display: none !important;
  }
}

.video {
  overflow: hidden;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video .overlay {
  background: url(/assets/images/videoOverlay.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.nav-link {
  color: #fff !important;
  text-transform: uppercase;
}

.footer .websiteContentFooter>a:hover {
  color: #007bff !important;
}

.ourWorkSection {
  background-color: #2e2e2e;
}

.ourWorkSection span,
.ourClientsSection span {
  border-bottom: 3px solid #4285f4;
  border-width: thick;
  font-size: 2rem;
}

.ourWorkSection span {
  color: #ffffff;
}

.ourClientsSection span {
  color: #000000;
}

.ourWorkSection {
  box-sizing: border-box;
}

.ourWorkDetails {
  /* display: flex; */
  /* flex-wrap: wrap; */
  padding: 0 4px;
  margin-top: 5rem;

  display: grid;
  grid-template-columns: repeat(2, 2fr);
  column-gap: 96px;
  align-items: baseline;
}

.homeWorkDetails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 12px;
  align-items: baseline;
}

/* Create four equal columns that sits next to each other */
.column {
  text-align: right;
}

.column,
.column2 {
  flex: 25%;
  max-width: 70%;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.column2 {
  vertical-align: middle;
}

.column img,
.column2 img {
  margin-top: 8px;
  vertical-align: middle;
  width: 70% !important;
}

@media screen and (min-width: 320px) {
  .centeredText {
    text-align: center;
  }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {

  .column,
  .column2 {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {

  .column,
  .column2 {
    flex: 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  div.haveAnIdea.desktop {
    display: none;
  }

  .haveAnIdeaMobile {
    display: none;
  }

  .haveAnIdeaContent {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .column2 {
    margin-top: 5rem;
  }

  .centeredText {
    text-align: inherit;
  }

  div.haveAnIdea.desktop {
    display: block;
  }
}

.ourClientsSection .firstClientsRow {
  margin-top: 5rem;
}

/*# sourceMappingURL=ourWork.css.map */