﻿.theme-color {
    background-color: #3fbbc0;
}

.theme-text-color {
    color: #3fbbc0;
}
.text-bg-light-50 {
    background-color:rgba(0, 0, 0, 0.5)
}
.topbar {
    height: 40px;
}

.logo {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: #3fbbc0;
}
.align-sections{
    margin-top:100px !important;
}
/* Service Item */
.service-item {
    background-color: #ffffff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

    .service-item:before {
        content: "";
        position: absolute;
        background: #3fbbc0;
        inset: 100% 0 0 0;
        transition: all 0.3s;
        z-index: -1;
    }

    .service-item .icon {
        margin-bottom: 10px;
    }

        .service-item .icon i {
            color: #3fbbc0;
            font-size: 36px;
            transition: ease-in-out 0.3s;
        }

    .service-item h4 {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 20px;
    }

        .service-item h4 a {
            color: #333;
            transition: ease-in-out 0.3s;
        }

    .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
        transition: ease-in-out 0.3s;
    }

    .service-item:hover h4 a,
    .service-item:hover .icon i,
    .service-item:hover p {
        color: #fff;
    }

    .service-item:hover:before {
        background: #3fbbc0;
        inset: 0;
        border-radius: 0px;
    }
/* Service Item End */
/*About*/
.section-title {
    text-align: center;
    padding-bottom: 20px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 10px;
        padding-bottom: 10px;
        color: #3fbbc0;
    }
/*Contact*/
.contact-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

    .contact-item i {
        color: var(--accent-color);
        width: 56px;
        height: 56px;
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease-in-out;
        border-radius: 50%;
        border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
    }

    .contact-item h3 {
        font-size: 20px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 18px;
        font-weight: 700;
        margin: 10px 0;
    }

    .contact-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
    }

.contact-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}
/*footer*/
.footer-bg {
    background-color: #f7fcfc;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #252525;
    font-size: 16px;
    color: #333;
    margin-right: 10px;
    transition: 0.3s;
}

    .social-links a:hover {
        color: #3fbbc0;
        border-color: #3fbbc0;
    }
/*Final*/

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }
