.section_title{
    span{
        color: #DD4B50;
        text-align: center;
        font-family: Barlow;
        font-size: 32px;
        font-style: normal;
        font-weight: 300;
        line-height: 37px; /* 115.625% */
        letter-spacing: 4.48px; 
        display: block;

        @media #{$mobile_device} { /* (max-width: 767px) */
            font-size: 22px;
            line-height: 32px;
            letter-spacing: 4.48px;
        }
        @media #{$tablet_device} { /* (min-width: 768px) and (max-width: 991px) */
            font-size: 25px;
            line-height: 35px;
            letter-spacing: 4.48px;
        }
        @media #{$mid_device} { /* (min-width: 992px) and (max-width: 1200px) */
            /*margin-right: 20px;*/
        }
        @media #{$large_device} { /* (min-width: 1200px) and (max-width: 1500px) */
        }

    }
    h3{
        display: flex;
        align-items: center;
        margin-top: 77px;
        color: #585858;
        font-family: Barlow;
        font-size: 36px;
        font-style: normal;
        font-weight: 250;
        line-height: 100px;
        letter-spacing: 21px; 
        &::after {
          content: '';
          flex: 1;
          margin-left: calc(30px - 21px;);
          height: 1px;
          background-color: #DD4B50;
        }
        &::before {
          content: '';
          flex: 1;
          margin-right: 30px;
          height: 1px;
          background-color: #DD4B50;
        }
        @media #{$mobile_device} {
            font-size: 30px;
            line-height: 50px;
            letter-spacing: 10px; 
        }
        @media #{$tablet_device} {
            font-size: 30px;
            line-height: 50px;
            letter-spacing: 10px; 
        }
        br{
            @media #{$mobile_device} {
                display: none;
            }
        }
    }
}
.mb-100{
    margin-bottom: 100px;
    @media #{$mobile_device} {
        margin-bottom: 40px;
    }
}
.mb-70{
    margin-bottom: 70px;
    @media #{$mobile_device} {
        margin-bottom: 20px;
    }
}