@charset "UTF-8";

.text-blue {
    color: #059cd6;
}
.text-dark-blue {
    color: #00186e;
}
.box-blue {
    background-color:#059cd6;
}
.text-indent {
    text-indent: 2rem;
}

.vector-img {
    top: 2rem;
    left: 0;
    animation: moveUpAndDown 2s ease-in-out infinite;
    animation-duration: 8s;
}

.circle-img {
    top: 2rem;
    right: 0;
    animation: moveUpAndDown 2s ease-in-out infinite;
    animation-duration: 8s;
}

.tri-img {
    top: 2rem;
    right: 0;
    animation: moveUpAndDown 2s ease-in-out infinite;
    animation-duration: 8s;
}

.smart-img1 {
    bottom: 2rem;
    left: 2rem;
    animation: moveLeftAndRight 2s ease-in-out infinite;
    animation-duration: 8s;
}

.smart-img2 {
    top: 0;
    right: 2rem;
    animation: moveLeftAndRight 2s ease-in-out infinite;
    animation-duration: 8s;
}

@keyframes moveUpAndDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes moveLeftAndRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(20%);
    }

    100% {
        transform: translateX(0);
    }
}

.goto-top {
    background-color: #00186e;
    width: 82px;
    height: 82px;
    text-align: center;
    border-radius: 15px;
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    transition: background-color .5s, opacity .8s, visibility .8s;
    opacity: 1;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

.goto-top i.bi {
    font-size: 36px;
    font-weight: bolder;
    line-height: 50px;
    color: #ffffff;
}

.goto-top:hover {
    cursor: pointer
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(0,24,110,.99)
    }

    to {
        box-shadow: 0 0 0 45px rgba(126,103,154,.01)
    }
}
#mainbar {
    background-color: #0B1D2F;
}
#mainbar .nav-link, .nav-link {
    color: #ffffff;
}

#mainbar .nav-link:focus, .nav-link:hover {
    color: #059cd6 !important;
}

.foundation {
    background-color: #eff7f8;
    background-image: url(../images/service-bg.png);
    background-repeat: no-repeat;
}
.foundation .feature-box {
    background-color: #dcf5ff;
    border-radius: 100px;
    padding: 9px 0;
    margin-bottom: 17px;
}
.foundation-card {
    min-height: 500px;
}
.foundation-card h5 {
    color: #052c65;
}
.foundation-card:hover {
    color: #ffffff;
    background-color:#059cd6;
}
.foundation-card:hover h5 {
    color: #ffffff;
}
.measures-card .card-body{
    min-height: 226px;
}

.icon-vector {
    bottom: -53px;
    right: -31px;
}
.construction-progress {
    background-color: #eff7f8;
    background-image: url(../images/curve-bg.png);
    background-repeat: no-repeat;
    min-height: 900px;
}
.progress-card {
    min-height: 685px;
}
.progress-icon {
    background-color: #dcf5ff;
    border-radius: 100px;
    padding: 13px;
    margin-left: -18px;
    margin-bottom: 12px;
    display: inline-block;
    width: 79px;
    text-align: center;
    height: 79px
}
.progress-card-end {
    align-self: end;
}

.expected-outcomes {
    background-color: #eff7f8;
    background-image: url(../images/curve-bg.png);
    background-repeat: no-repeat;
}

.expected-outcomes .accordion-button {
    color: #059cd6;
    background-color: #ffffff;
}
.expected-outcomes .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #00186e;
}
.expected-outcomes .accordion-button::after {
    background-image: url(../images/plus-circle-fill.svg) !important;
}
.expected-outcomes .accordion-button:not(.collapsed)::after {
    background-image: url(../images/dash-circle-fill.svg) !important;
}

.practical-scheme .card-body {
    height: 250px;
    overflow: hidden;
}

.footer {
	background-color: #0B1D2F;
}