﻿/* ==========================================================================
   Start Here
   ========================================================================== */
/* Roboto Font */
@font-face {
    font-family: 'robol';
    src: url('../fonts/roboto/Roboto-Light.eot');
    src: url('../fonts/roboto/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/Roboto-Light.woff') format('woff'), url('../fonts/roboto/Roboto-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robor';
    src: url('../fonts/roboto/Roboto-Regular.eot');
    src: url('../fonts/roboto/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/Roboto-Regular.woff') format('woff'), url('../fonts/roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robom';
    src: url('../fonts/roboto/Roboto-Medium.eot');
    src: url('../fonts/roboto/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/Roboto-Medium.woff') format('woff'), url('../fonts/roboto/Roboto-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'robob';
    src: url('../fonts/roboto/Roboto-Bold.eot');
    src: url('../fonts/roboto/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto/Roboto-Bold.woff') format('woff'), url('../fonts/roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gor';
    src: url('../fonts/goudy/goudcatn-regular.eot');
    src: url('../fonts/goudy/goudcatn-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/goudy/goudcatn-regular.woff') format('woff'), url('../fonts/goudy/goudcatn-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/* Roboto Font */
/*------------------------*/
img {
    max-width: 100%;
}

body {
    font-family: 'robor', Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #333;
    text-align: left;
    transition: all 200ms linear;
}

/* #Primary
================================================== */

::selection {
    color: #fff;
    background-color: #8167a9;
}

::-moz-selection {
    color: #fff;
    background-color: #8167a9;
}


/* #Navigation
================================================== */

.start-header {
    background: #fff !important;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 0;
    box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

    .start-header.scroll-on {
        box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
        padding: 5px 0;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

        .start-header.scroll-on .navbar-brand img {
            height: 24px;
            -webkit-transition: all 0.3s ease-out;
            transition: all 0.3s ease-out;
        }

.navigation-wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    padding: 0;
}

.navbar-brand img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(10%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
}

    .navbar-toggler:active,
    .navbar-toggler:focus {
        outline: none;
    }

.navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #000;
    transition: all 300ms linear;
}

    .navbar-light .navbar-toggler-icon:after,
    .navbar-light .navbar-toggler-icon:before {
        width: 24px;
        position: absolute;
        height: 1px;
        background-color: #000;
        top: 0;
        left: 0;
        content: '';
        z-index: 2;
        transition: all 300ms linear;
    }

    .navbar-light .navbar-toggler-icon:after {
        top: 8px;
    }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.nav-link {
    color: #000 !important;
    font-family: 'robob';
    font-size: 14px;
    text-transform: uppercase;
    transition: all 200ms linear;
}

.nav-item:hover .nav-link {
    /*color: #98272A !important;*/
    color: #98272A !important;
}

.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
}

.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    /*background-color: #98272A;*/
    background-color: #98272A;
    opacity: 0;
    transition: all 200ms linear;
}

.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
}

.nav-item.active:hover:after {
    opacity: 0;
}

.nav-item {
    position: relative;
    transition: all 200ms linear;
}

    .nav-item .dropdown-menu {
        transform: translate3d(0, 10px, 0);
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        display: block;
        padding: 0;
        margin: 0;
        transition: all 200ms linear;
    }

    .nav-item.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 999px;
        transform: translate3d(0, 0px, 0);
    }

.dropdown-menu {
    margin: 0;
    letter-spacing: 1px;
    color: #fff;
    background-color: #98272A; /*#00439d;*/
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    transition: all 200ms linear;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    font-family: 'robor';
    font-size: 13px;
    padding: 6px 30px 6px 12px;
    color: #fff;
    border-top: 1px solid #2364bd;
    transition: all 200ms linear;
}

    .dropdown-item:first-child {
        border-top: 0;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        color: #fff;
        background-color: #185fbf;
    }

/* #Media
================================================== */

@media (max-width: 767px) {
    h1 {
        font-size: 38px;
    }

    .nav-item {
        border-bottom: 1px solid #f5f5f5;
    }

        .nav-item:after {
            display: none;
        }

        .nav-item::before {
            position: absolute;
            display: block;
            top: 15px;
            left: 0;
            width: 11px;
            height: 1px;
            content: "";
            border: none;
            background-color: #000;
            vertical-align: 0;
        }

    .dropdown-toggle::after {
        position: absolute;
        /*display: block;
        top: 10px;*/
        left: -23px;
        width: 1px;
        height: 11px;
        content: "";
        border: none;
        background-color: #000;
        vertical-align: 0;
        transition: all 200ms linear;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(90deg);
        opacity: 0;
    }

    .dropdown-menu {
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
        transition: all 200ms linear;
        border: 0;
        border-bottom: 1px solid #98272A; /*#f5f5f5;*/
        margin-top: 0 !important;
    }

    .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .dropdown-item {
        color: #98272A; /*#052f6a;*/
    }
}

/* #Link to page
================================================== */

.logo {
    font-family: 'gor';
    display: block;
    transition: all 250ms linear;
}

    .logo a {
        font-size: 19px;
        margin: 0;
        display: block;
    }

    .logo img {
        height: 26px;
        width: auto;
        display: block;
        filter: brightness(10%);
        transition: all 250ms linear;
    }
/*page css*/
.mt-78 {
    padding-top: 78px !important;
}

.hero-banner {
    position: relative;
    background-size: cover;
    height: 83vh;
    align-items: start;
    justify-content: left;
    display: flex;
}

    .hero-banner h1 {
        /*text-transform: uppercase;*/
        color: #fff;
        font-size: 26px;
        font-family: 'robor';
        margin: 0 0 8px 0;
        /*text-shadow: 0px 2px 2px rgba(0,0,0,0.6);*/
    }

.home-news-wrap {
    position: relative;
    padding: 45px 0;
    background: #98272A;
    font-size: 14px;
    color: #fff;
    font-family: robor;
}

    .home-news-wrap h1 {
        font-size: 18px;
        color: #fff;
        font-family: robob;
        margin-bottom: 30px;
    }

.owl-dots {
    display: none;
}

.about-header {
    position: relative;
    padding: 15px 0;
    /*background: rgb(7,70,150);*/
    background: rgb(152,39,42);
    /*background: linear-gradient(90deg, rgba(152,39,42,1) 0%, rgba(26,52,79,1) 100%);*/
}

.brd {
    display: block;
    position: relative;
    font-family: 'robor';
    font-size: 13px;
    color: #fff;
}

    .brd a {
        color: #fff;
    }

.about-header h1 {
    color: #fff;
    font-family: 'robob';
    font-size: 22px;
    text-transform: uppercase;
    margin: 5px 0 0 0;
}

.body-con {
    position: relative;
    margin-top: 25px;
}
/*accordian*/
/*.accordion {
    position: relative;
}

    .accordion .card {
        border: none;
        margin-bottom: 20px;
    }

        .accordion .card h2 {
            background: url(../imgs/arrow-up.png) right center no-repeat;
            background-size: 14px;
            cursor: pointer;
            font-size: 18px;
            width:55px;
            height:55px;
        }

            .accordion .card h2.collapsed {
                background: url(../imgs/arrow-down.png) right center no-repeat;
            }

    .accordion .card-body {
        padding-left: 0;
        padding-right: 0;
    }*/

.accordion {
    position: relative;
}

    .accordion .card {
        border: none;
        margin-bottom: 20px;
    }

        .accordion .card h2 {
            background: url(../imgs/arrow-down.png) right center no-repeat;
            background-size: 20px;
            cursor: pointer;
            width: 100%; /* Ensure the full width is clickable */
            /*padding: 15px;*/
            font-size: 17px;
            display: flex;
            justify-content: space-between; /* Align the text and the icon properly */
            align-items: center; /* Vertically align */
        }

            .accordion .card h2.collapsed {
                background: url(../imgs/arrow-up.png) right center no-repeat;
                background-size: 20px;
            }
    /*.accordion .collapse.show .card-body {
        display: block;
    }*/

.card-head {
    font-size: 16px;
    font-family: robom;
    color: #98272A;
    border-bottom: 2px solid #98272A;
    padding: 12px;
    border-radius: 0;
    transition: all 250ms linear;
}

    .card-head:hover {
        background: #fff9ed;
    }

.accordion .card-body {
    font-size: 14px;
    color: #000;
    font-family: robor;
    padding: 0;
}

.bord-list {
    position: relative;
}

    .bord-list ul {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

        .bord-list ul li {
            display: flex;
            align-items: center;
            justify-content: left;
            padding: 12px 0 12px 12px;
        }

            .bord-list ul li:nth-child(odd) {
                background: #F1F1F1;
            }

.depart-title {
    font-size: 16px;
    font-family: robom;
    color: #fff;
    margin: 10px 0 0;
    padding: 12px;
    background: #98272A;
}

.drname {
    font-size: 14px;
    font-family: robom;
    color: #000;
    margin: 0;
    display: block;
}

.drpos {
    font-size: 14px;
    font-family: robor;
    color: #393939;
    margin: 0;
}
/*accrod end*/
.gray-row-bul {
    position: relative;
}

    .gray-row-bul ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .gray-row-bul ul li {
            margin: 0;
            padding: 0;
        }

            .gray-row-bul ul li a {
                display: block;
                font-family: robor;
                font-size: 14px;
                color: #000;
                padding: 10px 10px;
                margin: 4px 0;
                background: url(../imgs/pdf-icon.png) no-repeat right center;
                transition: all 250ms linear;
            }

                .gray-row-bul ul li a:hover {
                    text-decoration: none;
                    box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.30);
                    -webkit-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.30);
                    -moz-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.30);
                }

            .gray-row-bul ul li:nth-child(odd) {
                background: #F1F1F1;
            }

            .gray-row-bul ul li a:first-child {
                margin-top: 0;
            }

.contact-wrap {
    position: relative;
    text-align: center;
    padding-top: 50px;
}

.cont-icon {
    width: 70px;
    height: 70px;
    border-radius: 70px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #98272A;
    margin: 0 auto;
    clear: both;
}

.contact-wrap p {
    margin-top: 20px;
    line-height: 32px;
    font-size: 18px;
}

.mail {
    background: #98272A;
    padding: 8px 18px;
    text-align: center;
    color: #fff;
    border-radius: 30px;
    transition: all 250ms linear;
    align-items: center;
    justify-content: center;
}

    .mail:hover {
        background: #98272A;
        text-decoration: none;
        color: #fff;
    }

    .mail img {
        margin-right: 10px;
        margin-top: -2px;
    }

footer {
    background: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    font-size: 12px;
    font-family: 'robom';
    padding: 10px 0 0 0;
}

    footer a {
        color: #0056b3;
        text-decoration: underline;
    }
