/**************************
@green			 : green;
@black           : #000;
@white           : #FFF;

@link-color      : #000;
@link-hover-color: #000;

@accent-color    : @green;
**************************/
/*****************************************************************************************

*IMPORT FONTS IN CORE FONTS.LESS file
*Only create mixins of font families in here

.roboto(){ font-family: "Roboto", sans-serif; font-style: normal;}
******************************************************************************************/
/*******************************************************************
DIN NEXT Font
*******************************************************************/
@keyframes arrow {
  0% {
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 0;
  }
  25% {
    opacity: 1;
    -webkit-transform: translate(0, 2px);
    -moz-transform: translate(0, 2px);
    -ms-transform: translate(0, 2px);
    -o-transform: translate(0, 2px);
    transform: translate(0, 2px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(0, 8px);
    -moz-transform: translate(0, 8px);
    -ms-transform: translate(0, 8px);
    -o-transform: translate(0, 8px);
    transform: translate(0, 8px);
  }
  75%,
  100% {
    -webkit-transform: translate(0, 10px);
    -moz-transform: translate(0, 10px);
    -ms-transform: translate(0, 10px);
    -o-transform: translate(0, 10px);
    transform: translate(0, 10px);
    opacity: 0;
  }
}
#our-reach {
  position: relative;
  background-color: #000;
}
#our-reach .our-reach-header {
  position: relative;
  position: sticky;
  top: 0;
}
#our-reach .our-reach-header .our-reach-image {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
@media (min-width: 1440px) {
  #our-reach .our-reach-header .our-reach-image {
    height: 100%;
  }
}
#our-reach .our-reach-header .our-reach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1800px) {
  #our-reach .our-reach-header .our-reach-image::before {
    content: '';
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #000000 0%, rgba(255, 255, 255, 0) 100%);
  }
  #our-reach .our-reach-header .our-reach-image::after {
    content: '';
    width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(270deg, #000000 0%, rgba(255, 255, 255, 0) 100%);
  }
}
#our-reach .our-reach-header .fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 25%, rgba(255, 255, 255, 0) 75%, #ffffff 100%);
}
#our-reach .our-reach__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  z-index: 1;
  position: relative;
}
#our-reach .our-reach__content__details {
  padding: 60px 0;
}
#our-reach .our-reach__content__details h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
#our-reach .our-reach__content__details > p {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
