.static-content {
    img {
        margin: 0 auto 35px;
    }
    p {
        margin-bottom: 20px;
    }
    iframe, video {
        max-width: 100%;
        display: inline-block;
        vertical-align: top;
        margin-bottom: 20px;
        @include mq(sm, max){
            height: auto;
        }
    }
    ul {
        list-style: none;
        margin-bottom: 20px;
        padding-left: 20px;
        text-align: left;
        li {
            position: relative;
            list-style: none;
            margin-bottom: 10px;
            &::before {
                position: absolute;
                top: 0.7em;
                left: -20px;
                font-weight: 600;
                font-size: 10px;
                content: "\f054";
                font-family: "Font Awesome 5 Free";
            }
        }
    }
    .services-bg-box {
        margin-top: 40px;
       &--inner {
           position: relative;
           cursor: pointer;
          .img-box {
              position: relative;
              overflow: hidden;
              &::after {
                  content: '';
                  position: absolute;
                  background-color: rgba(0,0,0,.3);
                  width: 100%;
                  height: 100%;
                  top: 0;
                  left: 0;
                  right: 0;
                  bottom: 0;
                  transition: background-color .5s cubic-bezier(0,0,.44,1.18);
              }
              img {
                  margin-bottom: 0;
                  //transform: scale(1.01);
                  overflow: hidden;
                  transition: transform .5s cubic-bezier(0,0,.44,1.18),-webkit-transform .5s cubic-bezier(0,0,.44,1.18);
              }
          }
           .title {
               font-size: 5vw;
               color: #fff;
               line-height: 1.2;
               padding: 0 30px;
               margin-bottom: 0;
               transition: transform .3s ease;
               @include mq(md) {
                   font-size: 32px;
                   transform: translateY(0);
               }
           }
           .title-box {
               width: 100%;
               text-align: center;
               position: absolute;
               top: 50%;
               left: 50%;
               transform: translate(-50%, -50%);
           }
           .btn-link {
               position: relative;
               display: inline-block;
               padding: 12px 20px;
               font-size: 13px;
               line-height: 18px;
               background-color: #007bc4;
               border-radius: 35px;
               color: #fff;
               text-transform: uppercase;
               margin-top: 15px;
               font-weight: 600;
               letter-spacing: .3px;
              @include mq(md) {
                  opacity: 0;
                  transform: translateY(15px);
                  transition: opacity .25s ease,transform .25s ease;
              }
           }
           &:hover {
               .img-box {
                   &::after {
                       background-color: rgba(0,0,0,.6);
                   }
                   img {
                       transform: scale(1.09);
                   }
               }
               .title {
                   @include mq(md) {
                       transform: translateY(-28px);
                   }
               }
               .btn-link {
                   text-decoration: none;
                   @include mq(md) {
                       opacity: 1;
                       transform: translateY(0);
                   }
               }
           }
       }
    }
    .title-with-line {
        display: flex;
        align-items: center;
        color: #2d2a2a;
           h4 {
               font-weight: 600;
               font-size: 48px;
               line-height: 1.2;
               padding-right: 20px;
               padding-left: 20px;
               @include mq(md, max) {
                   line-height: 1.2;
                   font-size: 22px;
               }
           }
        .line {
            display: block;
            flex: 1 1 auto;
            border-bottom: 1px solid rgba(129,129,129,.2);
            height: 0;
        }
    }
    .our-services {
        .text-box {
            .title {
                line-height: 55px;
                font-size: 45px;
                font-weight: 600;
                color: #2d2a2a;
                margin-bottom: 35px;
                @include mq(md, max) {
                    line-height: 38px;
                    font-size: 28px;
                }
                p {
                    font-weight: 600;
                }
            }
            li {
                font-size: 19px;
                display: inline-block;
            }
        }
        .row {
            margin-bottom: 40px;
            &:nth-child(odd) {
                .text-box {
                    @include mq(md){
                        padding-right: 5%;
                        margin-left: 65px;
                    }
                }
            }

            &:nth-child(even) {
                * {
                    @include mq(md) {
                        text-align: right;
                    }
                }
                .text-box {
                    @include mq(md){
                        padding-left: 5%;
                        margin-right: 65px;
                    }
                }
                .img-box {
                   @include mq(md) {
                       order: 1;
                   }
                }
            }
        }
    }
}
