/* Variables
Variables that the other CSS sections depend upon
*/
{% include '../../css/variables/_colors.css' %}

.bs-other-services {
  margin-top: 100px;
  margin-bottom: 200px;
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background-color: #fff;
}

@media (max-width: 991px) {
  .bs-other-services {
    display: none;
  }
}

.bs-other-services::before {
  z-index: 1;
  content: '';
  top: 0;
  left: 0;
  background-color: #000;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bs-other-services.activated::before {
  opacity: 1;
}

.bs-other-services__inner {
  display: flex;
  background-color: #fff;
  align-items: flex-end;
  justify-content: space-between;
}

.bs-other-services__service-1,
.bs-other-services__service-2,
.bs-other-services__service-3 {
  width: calc(33.33% - 10.667px);
  display: inline-block;
  color: #000;
  position: relative;
  z-index: 3;
}

.bs-other-services__title {
  font-size: 42px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
  z-index: 3;
  transition: color 0.5s ease;
}

.bs-other-services.activated .bs-other-services__title {
  color: #fff;
}

.bs-other-services__image {
  padding-top: 60%;
  background-color: #cccccc;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.bs-other-services__image::after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
}

.bs-other-services__marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  font-size: 40px;
  letter-spacing: 0.01em;
  overflow: hidden;
  width: 100%;
}

.bs-other-services__marquee .js-marquee {
  margin-right: 10px !important;
}

.bs-other-services-mobile {
  display: none;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #000;
  color: #fff;
}

@media (max-width: 991px) {
  .bs-other-services-mobile {
    display: block;
  }
}

.bs-other-services-mobile__service-1,
.bs-other-services-mobile__service-2,
.bs-other-services-mobile__service-3 {
  width: 100%;
  display: inline-block;
  color: #000;
  position: relative;
  z-index: 3;
}

.bs-other-services-mobile__title {
  font-size: 32px;
  line-height: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  z-index: 3;
  transition: color 0.5s ease;
}

.bs-other-services-mobile.activated .bs-other-services-mobile__title {
  color: #fff;
}

.bs-other-services-mobile__image {
  padding-top: 50%;
  background-color: #cccccc;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.bs-other-services-mobile__image::after {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
}

.bs-other-services-mobile__marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.01em;
  overflow: hidden;
  width: 100%;
}

.bs-other-services-mobile__marquee .js-marquee {
  margin-right: 10px !important;
}

.bs-other-services-mobile__service-2,
.bs-other-services-mobile__service-3 {
  margin-top: 80px;
}