﻿.serviceBox {
    color: #02c504;
 
    text-align: center;
    padding: 0 0 30px 20px;
    position: relative;
}

    .serviceBox:before {
        content: "";
        border: 3px dotted #02c504;
        border-top-style: solid;
        border-bottom-style: solid;
        border-right: none;
        border-radius: 30px 0 0 30px;
        position: absolute;
        width: 35%;
        top: 90px;
        bottom: 7px;
        left: 0;
    }

    .serviceBox .service-icon {
        font-size: 48px;
        line-height: 95px;
        width: 100px;
        height: 100px;
        margin: 0 auto 10px;
        border-radius: 50%;
        box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
        border: 3px solid #02c504;
        position: relative;
    }

    .serviceBox .service-content {
        padding: 20px 10px;
        border: 3px solid #02c504;
        border-radius: 20px;
        box-shadow: 5px 5px 10px rgba(0,0,0,0.3);
    }

        .serviceBox .service-content:before,
        .serviceBox .service-content:after {
            content: "";
            background: #02c504;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            position: absolute;
            top: 86px;
            left: 35%;
        }

        .serviceBox .service-content:after {
            border-radius: 0;
            transform: rotate(45deg);
            top: auto;
            bottom: 4px;
        }

    .serviceBox .title {
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        margin: 0 0 10px;
    }

    .serviceBox .description {
        color: #0e0e0e;
        font-size: 14px;
        line-height: 23px;
    }

    .serviceBox.orange {
        color: #F97216;
    }

        .serviceBox.orange:before,
        .serviceBox.orange .service-icon,
        .serviceBox.orange .service-content {
            border-color: #F97216;
        }

            .serviceBox.orange .service-content:before,
            .serviceBox.orange .service-content:after {
                background-color: #F97216;
            }

    .serviceBox.blue {
        color: #0398E0;
    }

        .serviceBox.blue:before,
        .serviceBox.blue .service-icon,
        .serviceBox.blue .service-content {
            border-color: #0398E0;
        }

            .serviceBox.blue .service-content:before,
            .serviceBox.blue .service-content:after {
                background-color: #0398E0;
            }

    .serviceBox.black {
        color: #10222D;
    }

        .serviceBox.black:before,
        .serviceBox.black .service-icon,
        .serviceBox.black .service-content {
            border-color: #10222D;
        }

            .serviceBox.black .service-content:before,
            .serviceBox.black .service-content:after {
                background-color: #10222D;
            }

@media only screen and (max-width: 990px) {
    .serviceBox {
        margin: 0 0 30px;
    }
}




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0 40px 0;
    overflow: hidden;
}

    .hero:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h1 {
        margin: 0;
        font-size: 56px;
        font-weight: 700;
        line-height: 72px;
    }

    .hero p {
        margin: 10px 0 0 0;
        font-size: 22px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

@media (max-width: 992px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
}

    .hero .btn-get-started:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 15%);
    }

.hero .icon-box {
    background-color: var(--surface-color);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
}

    .hero .icon-box .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .hero .icon-box .title a {
            color: var(--heading-color);
            transition: 0.3s;
        }

    .hero .icon-box .description {
        font-size: 15px;
        margin-bottom: 0;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    .hero .icon-box .icon {
        margin-bottom: 20px;
        padding-top: 10px;
        display: inline-block;
        transition: all 0.3s ease-in-out;
        font-size: 36px;
        line-height: 1;
        color: var(--accent-color);
    }

@media (min-width: 640px) {
    .hero .icon-box:hover {
        transform: scale(1.08);
    }

        .hero .icon-box:hover .title a {
            color: var(--accent-color);
        }
}
