@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Light-08.ttf);
  font-weight: 300;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-01.ttf);
  font-weight: 400;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Medium-11.ttf);
  font-weight: 600;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url(../fonts/HelveticaNeue-Bold-02.ttf);
  font-weight: 700;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'HelveticaNeue', sans-serif;
}
.page-wrapper {}
section {
  position: relative;
  //display: flex;
  //box-shadow: inset 0 7px 9px -7px #000;
  .bg {
    width: 100%;
    object-fit: cover;
  }
  .bg-d {
    display: none;
    @media #{$tablet} {
      display: inline-block;
    }
  }
  .bg-m {
    @media #{$tablet} {
      display: none;
    }
  }
  .section-container {
    //position: absolute;
    //left: 50%;
    //top: 0;
    //transform: translate(-50%);
    margin: 0 auto;
    width: 100%;
    //max-width: 866px;
    height: 100%;
    padding: 0 30px;
    @media #{$desktop} {
      max-width: 866px;
    }
    @media #{$full} {
      max-width: 1024px;
    }
    @media #{$ultra} {
      max-width: 1200px;
    }
    .section-content {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 50px 0;
      @media #{$tablet} {
        padding: 50px 30px;
      }
      @media #{$desktop} {
        padding: 50px 0;
      }
      .section-row {
        @media #{$tablet} {
          display: flex;
          justify-content: space-between;
          align-items: center;
        }
        .row-el {
          @media #{$tablet} {
            width: 48%;
          }
          .section-header {
            text-align: center;
            font-size: 38px;
            letter-spacing: 1px;
            @media #{$tablet} {
              text-align: initial;
              padding-left: 18%;
            }
          }
        }
        .el-desktop {
          display: none;
          @media #{$tablet} {
            display: block;
          }
        }
        .el-mobile {
          @media #{$tablet} {
            display: none;
          }
        }
      }
    }
  }
}
