@import "../variables.less";

.main-content {
  background-image: url("../../images/main-background-dots.png");
  background-color: @grey-background-color;
  
  .service-box {
    height: 800px;
    padding: 75px 0;

    &.first {
      position: relative;
      
      &:after {
        display: block;
        content: " ";
        top: 290px;
        right: 0;
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 160px 120px #FF5912;
        z-index: 1;
      }
      
      &:before {
        display: block;
        content: " ";
        top: 560px;
        right: 670px;
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 130px 80px #FF5912;
        z-index: 1;
      }    
    }

    &.second {
      position: relative;
      
      &:after {
        display: block;
        content: " ";
        top: 290px;
        right: 0;
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 160px 120px #FF5912;
        z-index: 1;
      }
      
      &:before {
        display: block;
        content: " ";
        top: 430px;
        left: 60px;
        height: 50px;
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 160px 120px #FF5912;
        z-index: 1;
      }
    }

    &.third {
      position: relative;
      
      &:before {
        display: block;
        content: " ";
        position: absolute;
        background: #FF5912;
        height: 50px;
        box-shadow: 0px 0px 130px 120px #FF5912;
        z-index: 1;
        top: 410px;
        right: 620px;
      }
      
      &:after {
        display: block;
        content: " ";
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 100px 80px #FF5912;
        z-index: 1;
        right: 0;
        top: 560px;
      }
    }

    &.fourth {
      position: relative;
      
      &:after {
        display: block;
        content: " ";
        top: 320px;
        left: 640px;
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 110px 70px #FF5912;
        z-index: 1;
      }
      
      &:before {
        display: block;
        content: " ";
        top: 560px;
        left: 60px;
        position: absolute;
        background: #FF5912;
        box-shadow: 0px 0px 120px 120px #FF5912;
        z-index: 1;
      }
    }  
    
    h4 {
      font-family: Oswald;
      font-weight: bold;
      font-size: 130px;
      line-height: 200px;
      position: relative;
      z-index: 2;
      
      span {
        color: @orange-color;
      }
    }
    
    .content-box {
      display: flex;
      flex-direction: row;
      position: relative;
      z-index: 2;
      
      .content-col {
        font-size: 30px;
        line-height: 34px;
        color: @black-color;
        width: 985px;
          
        input {
          margin-top: 60px;
        }
      }
    }
    
    .image-col {
      width: 695px;
      height: 320px;
      overflow: hidden;
      border-radius: 100px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      
      img {
        width: 695px;
      }
    }
    
    .image-col ~ .content-col, .content-col ~ .image-col {
      margin-left: 30px;
    }
    
    input[type="button"] {
      width: 170px;
    }
  }
}

