section.service-section{
  position: relative;
  border-color: $themeSecondary;
  margin-top: $sizeLarge*4;
  padding-bottom: $sizeLarge;
  h3{
    color: $themeSecondary;
  }
  .wysiwyg{
    padding-top: $sizeLarge;
  }
  @include media-breakpoint-down(lg) {
    margin-top: $sizeLarge*2;
  }
}

section.gallery-section{
  border-color: $themePrimary;
  h3{
    text-align: right;
    right: 0;
    color: $themePrimary;
  }
  @include media-breakpoint-down(md) {
    h3{
      padding-right: $sizeMedium;
    }
  }
  @include media-breakpoint-down(lg) {
    margin-top: $sizeLarge;
  }
  .gallery-container{
    max-width: unset;
    width: auto;
    padding-left: $sizeLarge;
    padding-right: $sizeLarge;
    @include media-breakpoint-down(md) {
      padding-left: $sizeMedium;
      padding-right: $sizeMedium;
    }
  }
}

.video-section{
  padding: $sizeLarge 0;
  .content{
    @include media-breakpoint-up(lg) {
      position: relative;
      height: 100%;
      padding: $sizeLarge 0 0 $sizeLarge;
      &:before{
        //content: "";
        width: $sizeLarge;
        height: calc(100% + #{$sizeLarge*5});
        background-color: $themePrimary;
        position: absolute;
        left: 0;
        top: -$sizeLarge*2;
        z-index: -1;
      }
    }

  }
  h4{
    padding: 0;
    margin-bottom: $sizeMedium;
    font-size: 2em;
    text-transform: uppercase;
    color: $themeSecondary;

    @include media-breakpoint-up(lg) {
      font-size: 3.5em;
    }
  }
  p{
    padding-right: $sizeLarge;
  }
  @include media-breakpoint-down(md) {
    p{
      padding-right: 0;
    }
  }
}

section.demand-section{
  background-color: $themeSecondary;
  margin-top: $sizeLarge*2;
  margin-top: 0;
  padding: $sizeLarge*3 0;
  @include media-breakpoint-down(md) {
    padding-bottom: $sizeLarge * 4;
  }
  position: relative;
  .background-graphic{
    top: 0;
    h2{
      color: $themeWhite;
      opacity: .03;
    }
  }
  .content{
    padding: $sizeMedium 0 0 0;
  }
  h3{
    position: unset;
    color: $themeWhite;
    font-size: 4em;
    line-height: 1.2em;
    text-align: right;
    margin-bottom: $sizeMedium;
    @include media-breakpoint-down(md) {
      font-size: 3.5em;
      text-align: center;
    }
  }
  p{
    color: $themeWhite;
    text-align: right;
    @include media-breakpoint-down(md) {
      text-align: center;
    }
  }
  .contact-form{
    height: 460px;
    @include media-breakpoint-down(md) {
      height: auto;
    }
    .row{
      margin-right: -$sizeSmall;
      margin-left: -$sizeSmall;
      >div{
        padding: 0 $sizeSmall;
      }
    }
    label{
      color: $themeWhite;
      font-size: 1em;
      svg{
        width: $sizeSmall*2;
        margin-left: $sizeSmall;
        margin-top: -2px;
      }
      @include media-breakpoint-down(md) {
        font-size: 1em;
      }
    }
    textarea{
      height: 330px;
    }
    position: relative;
    .button-group{
      position: absolute;
      bottom: 0;
      right: 0;
      width: 100%;
      @include media-breakpoint-down(md) {
        position: unset;
      }
    }
    .progress-wrapper{
      position: absolute;
      bottom: 0;
      right: 250px;
      width: 100%;
      @include media-breakpoint-down(md) {
        display: none;
      }
    }
    .progress{
      overflow: visible;
      height: 3px;
      background-color: $themePrimary;
      border-radius: 0;
    }
    .progress-bar{
      background-color: transparent;
      position: relative;
      height: $sizeMedium + $sizeSmall;
      overflow: initial;
      &:after{
        content: '';
        width: $sizeLarge;
        height: $sizeLarge;
        background-color: $themePrimary;
        border-radius: 50%;
        right: 0;
        top: 50%;
        margin-top: -$sizeLarge + 3px;
        z-index: 0;
        position: absolute;
      }
      span{
        display: flex;
        align-items: center;
        justify-content: center;
        color: $themeWhite;
        text-align: center;
        position: relative;
        z-index: 1;
        position: absolute;
        right: 0;
        top: 50%;
        width: $sizeLarge;
        height: $sizeLarge;
        margin-top: -$sizeLarge + 3px;
      }
    }
  }
  .picker-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 (-$sizeSmall) $sizeMedium (-$sizeSmall);
    >div{
      background-color: $themeWhite;
      margin: $sizeSmall;
      padding: $sizeMedium $sizeSmall;
      color: $themeBlack;
      text-align: center;
      text-transform: uppercase;
      cursor: pointer;
      flex-grow: 1;
      flex-shrink: 1;
      //min-width: calc(24% - #{$sizeSmall});
      &.active, &:hover{
        background-color: $themePrimary;
        color: $themeWhite;
      }
    }
  }
}

section.recommended-section{
  z-index: 0;
  position: relative;
  margin: 100px 0 0;
  border-color: $themeSecondary;
  .container{
    padding-top: $sizeLarge;
    padding-bottom: $sizeLarge;
  }
  h3{
    text-align: left;
    color: $themeSecondary;
  }
  @include media-breakpoint-down(md) {
    h3{
      padding-right: $sizeMedium;
    }
  }
}