body {
    font-family: "Poppins", 'sans-serif';
    font-weight: 600;
}
.main-color {
    color: #0170B9;
}

.normal-color {
    color: rgb(39, 39, 39);
    font-weight: normal;
}

.info-text {
    font-weight: 400;
}

.menu-link {
    color: #0170B9;
}

.nav-item {
    padding: 13px 20px;
    width: 200px;
}

.nav-item:hover, .nav-active {
    border-bottom: 3px solid #0170B9;
    padding: 13px 20px 10px 20px;
}

.menu-link:hover {
    color: #0170B9;
    fill: #0170B9;
}

.carousel-image {
    height: 400px;
    object-fit: cover;
}

.object-cover {
    max-height:400px;
    width:100%;
    object-fit:cover;
}

.project_item {
    background-color: #0170B9;
    padding: 10px;
    margin-bottom: 5px;
}

.project_item:hover {
    background-color: #32b34a;
    transition: .5s;
}

.project_item a {
    color: white!important;
}

hr {
    color: #0170B9;
}

.footer-text {
    font-size: 13px;
}

.section-title {
    background-color: #0170B9;
    padding: 30px 20px;
    color:white;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.breadcrumb-item, .breadcrumb-item a, .breadcrumb-item+.breadcrumb-item::before {
    color:white!important;
    font-weight: 400;
    font-size: 12px;
}

.breadcrumb-item a {
    text-decoration: none;
}

iframe {
    width: 100%;
    height: 400px;
}

@media(max-width: 500px) {
    .nav-item {
        width:100%
    }
    .project_item {
        margin: 0 10px 5px 10px;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: #0170B9;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: white;
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, #0170B9, transparent 20%);
    color: white;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}
