/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: var(--color-primary);
  padding: 60px 0 0 0;

  @media (min-width: 1365px) {
    background-attachment: fixed;
  }

  h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
  }

  p {
    color: rgba(#fff, .6);
    font-weight: 400;
    margin-bottom: 30px;
  }

  .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s;
    color: #fff;
    background: rgba(#fff, .1);
    box-shadow: 0 0 15px rgba(#000, 0.08);
    border: 2px solid rgba(#fff, .1);
    &:hover {
      border-color: rgba(#fff, .5);
    }
  }

  .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: #fff;
    font-weight: 600;

    i {
      color: rgba(#fff, .5);
      font-size: 32px;
      transition: 0.3s;
      line-height: 0;
      margin-right: 8px;
    }

    &:hover {
      i {
        color: #fff;
      }
    }
  }


  @media (max-width: 640px) {
    h2 {
      font-size: 36px;
    }

    .btn-get-started, .btn-watch-video {
      font-size: 14px;
    }
  }

  .icon-boxes {
    padding-bottom: 60px;

    @media (min-width: 1200px) {
      &:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(50% + 20px);
        background-color: #fff;
      }
    }
  }

  .icon-box {
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
    background: lighten($primary, 2);
    box-shadow: 0 0 29px 0 rgba(#000,.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;

    .title {
      font-weight: 700;
      margin-bottom: 15px;
      font-size: 24px;
      a {
        color: #fff;
        transition: 0.3s;
      }
    }

    .icon {
      margin-bottom: 20px;
      padding-top: 10px;
      display: inline-block;
      transition: all 0.3s ease-in-out;
      font-size: 48px;
      line-height: 1;
      color: rgba(#fff, .6);
    }

    &:hover {
      background: lighten($primary, 4);
      .title a, .icon  {
        color: #fff;
      }
    }

  }

}
