:root {
    --primary: #276885;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    border: 2px solid #276885;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    margin-top: 50px;
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}
.project-item .blog-item:hover a{
    color: #06A3DA;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}
.project-carousel .owl-nav {
    position: absolute;
    top: -20px;
    left: 0;
    display: flex;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -40px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 5px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}
/*** Section Title ***/
.section-line::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: #276885;
    border-radius: 2px;
}

.section-line.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-line.section-line-sm::before {
    width: 90px;
    height: 3px;
}

.section-line::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-line.section-line-sm::after {
    width: 4px;
    height: 3px;
}

.section-line.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-line.section-line-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}
.blog-item .blog-img img  {
    transition: .5s;
}
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}
.service-details .img-overview img{
    width: 65%;
}
ul.sub-collapse {
    list-style: none;
    padding-left: 9px;
}