.sec-title {
    margin-bottom: calc(var(--section-title-space) - 43px);
    margin-top: -0.18em;
    font-weight: 600;
    letter-spacing: -1.8px;
    @include xs {
        letter-spacing: normal;
    }
}
  
.sub-title {
    color: $theme-color;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    font-weight: 500;
    font-family: $body-font;
    letter-spacing: 1.4px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    margin-top: -0.4em;
    &:after {
        content: '';
        position: relative;
        height: 1px;
        width: 50px;
        display: inline-block;
        background: $theme-color;
        margin-left: 10px;
    }
    &.style2 {
        display: block;
        letter-spacing: 4.2px;
        margin-top: -0.4em;
        &:after {
            display: none;
        }
    }
}
.box-title {
    font-size: 24px;
    line-height: 1.417;
    font-weight: 600;
    margin-top: -0.30em;
    a {
        color: inherit;
        &:hover {
            color: $theme-color;
        }
    }
}

.sec-text {
    font-size: 18px;
    margin-top: 30px;
    line-height: 1.667;
    margin-bottom: 0;
    @include xl {
        font-size: 16px;
    }
}
  
.title-area {
    margin-bottom: calc(var(--section-title-space) - 17px);
    position: relative;
    z-index: 2;
    &.mb-0 {
        .sec-title {
            margin-bottom: 17px;
        }
    }
    .btn {
        margin-top: 36px;
    }
    .checklist {
        margin-top: 30px;
    }
}
.white-title {
    color: #fff;
    font-weight: 700;
    position: relative;
    padding-bottom: 9px;
    margin-bottom: 19px;
    &:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        background: #fff;
        height: 2px;
        width: 50px;
    }
}
.page-title {
    font-size: 40px;
    font-weight: 500;
    margin-top: -0.3em;
}
.page-subtitle {
    font-size: 30px;
    font-weight: 500;
}
.shadow-text {
    font-size: 120px;
    font-weight: 500;
    font-family: $title-font;
    color: rgba(0, 0, 0, 0.03);
}
@include ml {
    .sec-title {
        font-size: 45px;
        line-height: 1.2;
    }
    .sec-text {
        margin-top: 0px;
    }
    .shadow-text {
        font-size: 100px;
    }
}
@include lg {
    .title-area,
    .sec-title {
        --section-title-space: 60px;
        &.mb-45 {
            margin-bottom: 36px;
        }
        &.mb-50 {
            margin-bottom: 40px;
        }
    }
    .sec-btn,
    .title-line {
        --section-title-space: 55px;
    }
    .sec-text {
        font-size: 16px; 
    }
    .shadow-text {
        font-size: 80px;
    }
}

@include md {
    .title-area,
    .sec-title {
        --section-title-space: 50px;
        &.mb-45 {
            margin-bottom: 35px;
        }
    }
    .sec-btn,
    .title-line {
        --section-title-space: 50px;
    }
    .sub-title {
        font-size: 14px;
    }
    .shadow-text {
        font-size: 70px;
    }
}
@include sm {
    .sec-title {
        font-size: 32px;
    }
    .shadow-text {
        font-size: 50px;
    }
}
@include xs {
    .shadow-text {
        display: none;
    }
}
@media (max-width: 390px) {
    .sec-title {
        font-size: 30px;
    }
    
}


.sec_title_static {
    position: absolute;
    height: 100%;
    display: block;
    .sec_title_wrap {
        position: sticky;
        top: 150px;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: flex-start;
        margin: auto;
    }
}
@include lg {
    .sec_title_static {
        position: initial;
        height: auto;
        text-align: center;
        margin-bottom: 40px;
    }
}