/*Vanila SlideShow Custom CSS*/
#vanilla-slideshow-container{
    margin-top: 80px;
    height: 76%;
    width: 100%;
    background-color: #000 !important;
}
#vanilla-slideshow .vanilla-slide{
    height: auto;
    width: 85%;
    left: 15%;
}
#vanilla-slideshow .vanilla-slide img{
    top: 10%;
    position: static;
    min-height: auto;
    min-width: 100%;
    height: 76vh;
    max-height:100%;
}
@media screen and (max-width: 1024px){
    #vanilla-slideshow .vanilla-slide img {
        left: 50%;
        margin-left: 0;
    }
}
#vanilla-indicators{
    left: 0;
    top: 0;
    width: 15%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.vanilla-indicators{
    box-shadow: none;
    width: 100%;
    margin: 0 0 2px 0;
    border-radius: 0;
    float: none;
    border: 0;
    background-color: var(--primary-color-deep-blue);
    display: flex;
    align-items: center;
    flex: 1;
    transition: 0.3s;
}
.vanilla-indicators>a{
    display: block;
    text-align: left;
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}
.vanilla-indicators.vanilla-active{
    background-color: var(--primary-color-light-blue);
    width: 110%;
    flex: 1.5;
    font-size: 20px;
}
.vanilla-indicators.vanilla-active>a{
    font-size: 20px;
}
.vanilla-slide>.vanila_child{
    position: relative;
}
.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.2);
}
.service_overview{
    position: absolute;
    bottom: 5%;
    width: 100%;
    color: #fff;
}
.service_overview .service_header{
    display: table-cell;
    vertical-align: top;
    width: 100vw;
    /*height: calc(100vh - 32.25rem);*/
    position: relative;
    right: 10%;
}
.service_overview .service_header h1{
    text-align: right;
    font-family: 'Agency FB', arial;
}
.service_overview .service_header h1 span{
    border: 2px solid #fff;
    padding: 10px 40px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    background-color: rgba(0,0,0,0.5);
}
.service_overview .service_details{
    width: 80%;
    margin: 0 auto;
    border: 2px solid #fff;
    padding: 10px 40px;
    border-bottom-right-radius: 25px;
    border-top-left-radius: 25px;
    /*position: absolute;
    left: 27%;
    bottom: 5%;*/
    background-color: rgba(0,0,0,0.5);
    background-image: none;
}
.service_overview .service_details p{
    margin: 0;
    line-height: 22px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 1rem;
}

@media only screen and (max-width: 1366px) {
    #vanilla-indicators{
        /*top: 0;*/
        /*width: 15%;*/
    }
    /*    .vanilla-indicators{
            width: 225px;
            height: 82px;
        }
        .vanilla-indicators.vanilla-active {
            width: 250px;
            height: 130px;
            font-size: 18px;
        }*/
}

/*Bootstrap Customize*/
.navbar{
    height: 80px;
    background-color: #fff !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.navbar-brand {
    position: relative;
}
.navbar-brand>img{
    width: 70px;
}
.logo_company_name{
    position: absolute;
    top: 28px;
    left: 80px;
    color: #000;
    font-family: 'Agency FB', arial !important;
}
.navbar-nav .nav-item:first-child .nav-link{
    border-left: 1px solid var(--border-color);
}
.navbar-light .navbar-nav .nav-link{
    color: var(--black-color) !important;
    text-transform: uppercase;
    border-right: 1px solid var(--border-color);
    padding: 26px 20px;
    font-size: 18px;
    transition: 0.3s;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover{
    background-color: var(--white-color);
    color: var(--black-color) !important;
}

/*dropdown animated*/
.dropdown-slide > .dropdown-menu {
    opacity:.3;
    display: block;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-transform: scale(1, 0);
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    min-width: 180px;
}

.show.dropdown-slide > .dropdown-menu {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity:1;
}
.dropdown-item{
    transition: 0.3s;
    font-size: 17px;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color: var(--primary-color-light-blue);
    color: var(--white-color);
}
.dropdown-item.active, .dropdown-item:active{
    background-color: #fff;
    color: #000;
}
.dropdown-item:focus{
    outline: none;
    box-shadow: none;
}
