.service_page {
  font-size: 16px;

  --bg: #0078FF;

  .intro {
    position: relative;
    color: white;
    padding: 3em 1.5em 3em 0;
    background-color: #F5F5F5;
    display: flex;
    align-items: stretch;

    .intro-content {
      display: flex;

      @media screen and (max-width: 768px) {
        display: block;
      }
    }

    .intro-text {
      flex: 0 0 50%;

      @media screen and (max-width: 768px) {
        display: block;
        width: 100%;  
      }
    }

    &::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 50%;
      bottom: 0;
      background: var(--bg);

      @media screen and (max-width: 768px) {
        right: 0;
      }
    }

    .links {
      padding: 0;
      display: flex;
      flex: 0 0 50%;
      align-items: center;
      --link-color: var(--bg);

      @media screen and (max-width: 768px) {
        width: 100%;  
        --link-color: white;
      }

      ul {
        list-style: none;
        margin: 0;

        @media screen and (max-width: 768px) {
          padding: 3em 0 0;
        } 
      }

      li {
        display: block;
        
        a {
          display: block;
          color: var(--link-color);
          font-size: 1.25em;
          text-decoration: none;
          text-transform: uppercase;
          padding: .25em 0;

          &:hover {
            font-weight: bold;
          }
        }
      }
    }

    .back {
      margin-bottom: 2.5em;

      a {
        position: relative;
        display: block;
        color: white;
        padding-left: 1.5em;
        font-size: .875em;

        &::before {
          content: ">";
          display: block;
          position: absolute;
          font-size: 2em;
          font-weight: bold;
          top: 50%;
          left: 0;
          transform: scaleX(50%) translate3d(0 , -50%, 0);
          transition: 0.3s ease-in-out;
        }

        &:hover {
          text-decoration: none;
          font-weight: bold;

          &::before {
            transform: scaleX(50%) translate3d(50%, -50%, 0);
          }
        }
      }
    }

    .parent {
      margin-bottom: .625em;

      a {
        color: white;
        font-size: .875em;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
    }

    .title {
      font-size: 3.5em;
      line-height: .875em;
      color: white;
      margin: 0 0 .375em;
      padding-right: 10%;

      h1, h2, h3 {
        margin: 0;
      }
    }

    .text {
      padding-right: 20%;
      p:last-child {
        margin-bottom: 0;
      }
    }
     
  }

  .project_title {
    margin-bottom: 2em;
  }
  .projects {
    padding: 8rem 0;
    background-color: #f5f5f5;
  }

  .bl__shoutblock_big {
    margin: 0 0 6em;

    .img_container {
      padding: 24em 0 8em;
    }
  }

}