/********** Template CSS **********/
:root {
    --primary: #025f66;
    --primary-rgb: 2, 95, 102;
    --secondary: #11d63e;
    --light: #F4F7FE;
    --dark: #14183E;
}

/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Hero Header ***/
.hero-header {
    /*margin-top: -75px;*/
    background: url(/images/bg-landing.png) center center no-repeat #09a9b5;
    background-size: cover;
    height:100vh;
}

    .hero-header .breadcrumb-item + .breadcrumb-item::before {
        color: var(--light);
    }


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 4px;
    bottom: 0;
    left: 0;
    background: var(--dark);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    bottom: 0;
    left: 50px;
    background: var(--dark);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -25px;
}

.section-title.text-center::after {
    left: 50%;
    margin-left: 25px;
}

.section-title h6::before,
.section-title h6::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 2px;
    left: 0;
    background: rgba(33, 66, 177, .5);
}

.section-title h6::after {
    top: 5px;
    left: 3px;
}

/*** Feature ***/
.feature {
    background: url(../img/bg-hero.png) center center no-repeat;
    background-size: cover;
}

/*** Case Study ***/
.case-item img {
    transition: .5s;
}

.case-item:hover img {
    transform: scale(1.2);
}

.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));
    z-index: 1;
}

    .case-overlay small {
        display: inline-block;
        padding: 3px 15px;
        color: #FFFFFF;
        background: rgba(20, 24, 62, .7);
        border-radius: 25px;
        margin-bottom: 15px;
    }

    .case-overlay span.btn:hover {
        color: var(--primary);
        background: #FFFFFF;
        border-color: #FFFFFF;
    }


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

    .accordion .accordion-button:not(.collapsed) {
        color: #FFFFFF;
        background: var(--primary);
        box-shadow: none;
    }

        .accordion .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

    .testimonial-carousel .owl-nav {
        position: absolute;
        width: 40px;
        height: 100%;
        top: calc(50% - 50px);
        left: -21px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .testimonial-carousel .owl-nav .owl-prev,
        .testimonial-carousel .owl-nav .owl-next {
            margin: 5px 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            background: #FFFFFF;
            border: 1px solid var(--primary);
            border-radius: 40px;
            font-size: 18px;
            transition: .5s;
        }

            .testimonial-carousel .owl-nav .owl-prev:hover,
            .testimonial-carousel .owl-nav .owl-next:hover {
                background: var(--primary);
                color: #FFFFFF;
            }

    .testimonial-carousel .owl-dots {
        margin-top: 35px;
        margin-left: 3rem;
    }

    .testimonial-carousel .owl-dot {
        position: relative;
        display: inline-block;
        margin-right: 10px;
        width: 15px;
        height: 15px;
        background: #FFFFFF;
        border: 1px solid var(--primary);
        border-radius: 15px;
        transition: .5s;
    }

        .testimonial-carousel .owl-dot.active {
            width: 30px;
            background: var(--primary);
        }


/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

    .team-item:hover {
        border-color: var(--primary);
    }

.text-shadow-dark {
    text-shadow: -1px -1px 0 #000,-1px -1px 0 #000,-1px -1px 0 #000;
}