.sectionTitle {
    font-weight: bolder;
    text-align: center;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 55px;

}

.sectionBtn {
    min-width: 80px;
    width: 140.69px;
    height: 46px;
    color: #FFF;
    background: rgb(48, 209, 150);
    background: linear-gradient(90deg, rgba(48, 209, 150, 1) 32%, rgba(35, 231, 68, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-radius: 6px;
    font-weight: bolder;
    font-size: 13px;
    cursor: pointer;
    border: none;
    box-shadow: none;
    margin: 25px auto;
}

.sectionBtn:hover {
    background: linear-gradient(90deg, rgb(41, 196, 139) 32%, rgb(28, 212, 59) 100%);
}


.content {
    padding: 0 15px !important;
}

.head {
    border-radius: 6px;
    background: rgb(48, 209, 150);
    background: linear-gradient(110deg, rgba(48, 209, 150, 1) 41%, rgba(35, 231, 68, 1) 60%);
    position: relative;
    height: 365px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 40px;
    overflow: hidden;
}

.head h1 {
    color: var(--font-2);
    font-weight: bold;
    margin-bottom: 0;
}

.head h5 {
    color: var(--font-2);
    margin-bottom: 45px;
}

.boxBtnsContainer {
    max-width: 325.5px;
}

.headSignBtn {
    border-radius: 6px;
    background: black;
    height: 47px;
    width: 100%;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: none;
    border: none;
    transition: background 0.2s ease;
}

.headSignBtn:hover {
    background: rgb(31, 31, 31);
}

.btns {
    gap: 15px;
}

.btns button {
    border: none;
    box-shadow: none;
    background: #FFF;
    height: 45px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease;
    color: black;
}

.btns button:hover {
    background: #EEE;
}

.btns img {
    margin-right: 10px;
}

/* Effects */
.splashEffect,
.caseImage {
    position: absolute;
}

.splashEffect {
    z-index: 1;
    right: -391px;
    right: -469px;
    top: 26px;
}

.caseImage {
    z-index: 2;
    right: 10px;
    bottom: -46px;
    height: 420px;
}

/* Stats Container */
.statsContainer,
.stepsContainer {
    gap: 20px;
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.statElement {
    display: flex;
    align-items: center;
}

.statElement img {
    margin-right: 20px;
}

.statsTitle,
.statsValue {
    color: var(--font-1);
    font-weight: bold;
    font-size: 11px;
}

/* Steps Container */
.stepText {
    min-width: 250px;
}

.stepText * {
    margin-bottom: 0;
}

.stepText h5 {
    font-weight: bold;
}

.stepText p {
    font-size: 13px;
}

.stepsContent {
    display: flex;
}

.stepElement {
    color: #FFF;
    font-weight: bold;
    font-size: 11px;
    border: none;
    height: 40px;
    padding: 5px 15px;
    border-radius: 6px;
    background-image: -moz-linear-gradient(0deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(48, 209, 150) 0%, rgb(35, 231, 68) 100%);
    box-shadow: 0px 3px 13px 0px rgba(175, 189, 215, 0.29);
    margin-right: 10px;
    cursor: pointer;
    width: 155px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Features */
.featuresContainer {
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.featuresContainer * {
    text-align: center;
}

.featuresContainer .box {
    min-height: 270px !important;
}

.featureTitle {
    font-weight: bold;
    font-size: 13px;
}

.featureDescription {
    font-size: 12px;
    color: var(--font-3);
}


/* Blog Container */
.blogContainer {
    gap: 15px;
}

.blogContainer .box {
    min-width: 300px;
}

.blogTitle {
    display: flex;
    justify-content: space-between;
    align-content: center;
    font-weight: bold;
}

.blogTitleContent {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.blogTitleContent img {
    margin-right: 10px;
    transform: scale(0.7);
    position: relative;
    bottom: 3px;
}

.blogDate {
    background: #dfe7f590;
    padding: 5px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.blogDescription {
    color: var(--font-3);
    font-size: 13px;
    margin-bottom: 25px;
    margin-top: 15px;
}


@media (max-width: 1649px) {

    .splashEffect,
    .caseImage {
        display: none;
    }
}

@media (max-width: 1000px) {
    .content {
        padding: 0 !important;
    }
}

@media (max-width: 750px) {
    .statsContainer {
        gap: 15px 0;
    }

    .statElement {
        min-width: 50% !important;
    }

    .statElement:last-child {
        position: relative;
        left: 7px;
    }

    .statElement:last-child img {
        margin-right: 29px;
    }

    .head h1,
    .head h5 {
        text-align: center;
    }

    .boxBtnsContainer {
        max-width: 100%;
    }
}

@media (max-width: 590px) {
    .stepText * {
        text-align: center;
    }

    .stepsContainer {
        flex-direction: column;
    }

    .stepsContent {
        flex-wrap: wrap;
        gap: 10px;
    }

    .stepElement {
        min-width: 150px;
        flex: 1;
        margin: 0;
    }
}