﻿body {
    background-image: url('Assets/Web_Images/Rectangle.png');
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
}

.navbar {
    background-image: linear-gradient(to bottom, #20a49a, #1a938a, #14837a, #0e736b, #07645c);
    /*background-image:url('Assets/Web_Images/top_header.svg');
    background-repeat:no-repeat;
    background-size:cover;*/
}

.navbar-brand {
    color: #FFF1DB;
}

.dropdown-item {
    font-size: 18px;
}
    .dropdown-item:hover {
        background-color: #096961;
        color: yellow;
        transition: 0.5s ease;
    }

/*.nav-link:hover {
    background-color: #F8EDED;
    color: #536493;
}*/

.nav-link {
    color: white;
    font-size: 18px;
    color: yellow;
    font-weight: 500;
}

.nav-link:hover
{
    color:#F8EDED !important;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

[class*="colcard"] {
    margin-bottom: 15px;
}

.content {
    height: 100%;
    padding: 50px 50px 30px;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}

    .content:hover {
        transition: 0.5s ease-in;
        transform: scale('1.1');
        /*cursor: pointer;*/
    }

.colour-1 {
    background: #4158A6;
    color: #fff;
}

.colour-2 {
    background: #135D66;
}

.colour-3 {
    background: #bf3046;
}

.colour-4 {
    background: #6b2624;
}

.colour-5 {
    background: #03346E;
}

.colour-6 {
    background: #cf5008;
}

.colour-7 {
    background: #00712D;
}

.colour-8 {
    background-color: #560880;
}

.content h3 {
    margin-top: 0px;
    font-weight: 300;
}

.content1 {
    min-height: calc(100vh - 100px);
}

.footer {
    background-image: url('Assets/Web_Images/RoadNetwork.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 20px 15px;
    color: white;
}

/* Slider CSS Open */

@keyframes kenburns {
    0% {
        transform: scale(1);
        transition: transform 20000ms linear 0s;
    }

    100% {
        transform: scale(1.4);
        transition: transform 20000ms linear 0s;
    }
}

.kb-carousel {
    overflow: hidden;
    max-height: 650px;
}

    .kb-carousel .carousel-item {
        transition: transform .6s ease-in-out 0s, opacity ease-in-out .6s;
    }

        .kb-carousel .carousel-item.active {
            transition: transform .6s ease-in-out 0s, opacity ease-in-out .6s;
        }

    .kb-carousel > .carousel-inner > .carousel-item > img,
    .kb-carousel > .carousel-inner > .carousel-item > a > img {
        opacity: 0.8;
        animation: kenburns 20000ms linear 0s infinite alternate;
    }

    .kb-carousel .carousel-item-next.carousel-item-start .carousel-caption,
    .kb-carousel .carousel-item-prev.carousel-item-end .carousel-caption {
        z-index: 0;
        opacity: 0;
    }

.kb-caption {
    right: 7%;
    left: 7%;
    bottom: 25%;
    padding: 0;
    width: 80%;
}

.kb-caption-left {
    margin-right: auto;
}

.kb-caption-right {
    margin-left: auto;
}

.kb-caption-center {
    margin: auto;
}

.kb-caption h4,
.kb-caption h3 {
    padding: 0.5rem 0;
    margin-bottom: 0;
}

.kb-caption h4 {
    animation-delay: 1s;
    color: white;
    background:darkcyan;
    border-radius:5px;
}

.kb-caption h3 {
    animation-delay: 1.5s;
    color: #fff;
}

@media (min-width: 768px) {
    .kb-caption {
        bottom: 37%;
        width: 25%;
    }
}

@media (min-width: 1200px) {
    .kb-caption {
        bottom: 45%;
    }
}

.kb-control-prev,
.kb-control-next {
    width: 3.5rem;
    height: 3.5rem;
    margin: auto 0;
    opacity: 0;
    color: #fff;
}

.kb-carousel:hover .kb-control-prev,
.kb-carousel:hover .kb-control-next {
    opacity: 1;
}

.kb-control-prev {
    left: 1%;
}

.kb-control-next {
    right: 1%;
}

    .kb-control-prev:hover,
    .kb-control-prev:focus,
    .kb-control-next:hover,
    .kb-control-next:focus {
        color: #fff;
    }



