/*GOOGLE FONT*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poppins:wght@100&display=swap');

img {
    max-width: 100%;
}

* {
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
}

.btn {
    cursor: pointer;
    ;
}

/* all similar content styling codes */

:root {
    --Open-font: "Open Sans";
    --Poppins: "Poppins";
    --white: rgba(255, 255, 255, 1);
    --light-blue: #4262C8;
    --dark-blue: rgba(10, 36, 88, 1);
    --tab-blue: #14296C;
    --btn-blue: #3151a1ef;
    --arrow-blue: #1B368D;
    --arrow2-blue: #8393C5;
    --light-gray: #929292;
    --gold-sand: rgba(237, 190, 135, 1);
    --orange-white: rgba(255, 251, 236, 1);
    --brown: rgba(170, 96, 79, 1);
    --red: #FF4040;
    --footer: #4B5B7A;
    --background: rgba(20, 41, 108, 0.8);
    --linear-card: rgba(9, 22, 57, 0.67);

}

/* navigation bar styling */
.navbar-nav .ml-auto {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    width: auto;
    overflow: hidden;
}

.nav-bottom .nav-link:hover {
    color: #CC1F1F;
    border-bottom: .2em solid #CC1F1F;

}

.nav-shadow {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.nav-text ul li a {
    color: #929292;
    font-weight: 600;
    font-size: 1em;
    font-weight: 500;
    line-height: 1em;
}

.navbar-nav .ml-auto {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    color: #d41c1c;
}


/* marquee news scroll */
.news {
    width: 10em;

}

.news-scroll a {
    text-decoration: none;
}

/* image slider*/

.carousel-inner {
    height: max-content;
}


.carousel-caption {
    width: 35.681em;
    height: 6.866em;
    background: var(--background);
    border-radius: 0.313em;
}

.carousel-caption .display-1 {
    width: 32.521em;
    font-style: normal;
    font-weight: bold;
    font-size: 0.938em;
    line-height: 1.813em;
    color: #FFFFFF;
}




/* tabs styling codes */
.second-two-column-section {
    margin-top: 2.5em;
}


/* news tabs styling */

#news-tabs {
    font-size: 1em;
    display: grid;
    grid-template-columns: 10fr 9fr;
    margin-left: 0.12em;
}

#news-tabs .t-left {
    background: #FFFFFF;
    border: 1px solid #C2C2C2;

    box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.25);
    border-radius: 0.375em;
    padding: 24px 0px 0px 24px;
}

#v-pills-tab .nav-link {
    color: #14296C;
}

#v-pills-tab .nav-link:hover {
    color: var(--white);
    background-color: var(--btn-blue);
}

#v-pills-1-tab {
    color: var(--white);
    background-color: var(--btn-blue);
}

.tab-content .btn {

    background: #3150a1;
}

.tab-content .btn:hover {
    background-color: #3558B6;
}

/* card styling codes */

.cards {
    background-color: #F7F7F7;
}

.card {
    margin-top: 3.125em;
    overflow: hidden;
    height: 30rem;
    cursor: pointer;

}

#cards-header {
    display: flex;
    justify-content: center;
    margin-left: 5%;
    margin-top: 8%;
    margin-right: 2%;

    font-style: normal;
    font-weight: bold;
    font-size: 1.5em;
    color: #14296C;

}

#cards-header #left {
    padding-right: 5%;
}

#cards-header #right {
    color: var(--arrow2-blue);
}

.card-title {
    font-weight: bold;
    color: var(--white);
    margin-top: -3.125em;
}

.card-text {
    font-style: normal;
    font-size: 1em;
    font-weight: normal;
    line-height: 1.875em;
    text-align: justify;
    color: #505050;
}


.card-link {
    color: #505050;
}


.card-detail-info .card-hr {
    height: 0px;
    border: none;
    border-top: 1.3px solid #817F7F;
}

.card-detail-info i {
    padding-left: 60%;
}


.card-img-top {
    position: relative;
}

.card-img-top::after {
    content: "";
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    background: #202022;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.card-img-top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 3;
    top: 0;
    background-image: linear-gradient(0deg, rgba(9, 22, 57, 0.67), rgba(9, 22, 57, 0.67));
}

.card-body {
    z-index: 4;
}

.card:hover .card-body {
    background-color: #14296C;
    transition: all .3s ease-in-out;
}

.card:hover .card-img-top {
    transform: scale(1.05);
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
    transition: all .3s ease-in-out;
}


.card:hover .card-text,
.card:hover .card-link,
.card:hover .card-hr,
.card:hover i {
    color: #fff;
}




/* app and call center */

.call-center {
    border-radius: 1.375em;
}



/* box button */
.box-button .row {
    margin: 20px 5px 20px 5px;
}

.box {
    height: 6.563em;
    border-radius: 0.625em;
}

.box img {
    width: 3em;
}

.box .text {
    font-size: 13px;
    font-weight: 00;
    padding: 9px;
    text-align: center;
    display: inline-block;
    color: #505050;
}

.box:hover {
    background-color: #6F94F6;
}

.box:hover .text {
    color: #fff;
}

/* styling of footer section */
.footer {
    position: absolute;
    padding: 2em;
    margin-top: 3em;
    font-size: 14px;
    background-color: var(--footer);
    color: var(--white);


}

.social-media,
.Department a,
.Links a,
.second-links a {
    color: var(--white);
}

.company p {
    width: 250px;
}

.section-5 .col {
    box-shadow: 0px 0px 25px -9px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    width: 100%;
}


.footer-hr {
    border: 1px solid #FFFFFF;
    border-radius: 2.5px;
    width: 35%;
    justify-content: center;
}




/* nws-notice page */
.news-head img :hover {
    color: #CC1F1F;
}

.content-left {
    margin-top: 6.5em;
}

.news .left-list {
    position: relative;
    font-size: .88em;
    font-weight: 400;
    padding: 22px;
    color: #B8B8B8;
}

.news .left-list::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 46px;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #B8B8B8;
}

.news .news-title {

    font-size: 16px;
    font-weight: 500;
    color: #000000;
    justify-content: center;
}

.news .news-title::before {
    position: absolute;
    content: "";
    top: 3em;
    width: 100%;
    height: 110px;
    border-top: 2px solid #BBBBBB;
    border-bottom: 2px solid #BBBBBB;
}

.index-box {
    font-size: .86em;
    font-weight: 400;
    color: #494949;
    background: #E9EFFF;
    border: 1px solid #A5B2D6;
    border-radius: 4px;

}

.checkbox {
    font-size: 0.75em;

}




.director>li>a {
    width: 14%;
    margin: 0 auto 0px auto;
    background: #8383f9;
    color: white;
    font-size: 29px;
    padding: 10px;
}

.orgchar ul a {
    display: block;
    background: #ffc4c4;
    /* border: 4px solid #c3c3c3; */
    text-align: center;
    overflow: hidden;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    height: 70px;
    margin-bottom: -26px;
    box-shadow: 4px 4px 9px -4px rgb(0 0 0 / 40%);
    -webkit-transition: all linear .1s;
    -moz-transition: all linear .1s;
    transition: all linear .1s;
    padding: 10px;
}

* a:hover {
    text-decoration: none;
}

.department:first-child,
.departments li:nth-child(2) {
    margin-left: 0;
    clear: left;
}

.subdirector>li:first-child a,
.departments>li:first-child a {
    width: 100%;
}

.department {
    border-left: 4px solid #c3c3c3;
    width: 23.599%;
    float: left;
    margin-left: 1.751313485113835%;
    margin-bottom: 73px;
}

.department li {
    padding-left: 25px;
    border-bottom: 4px solid #c3c3c3;
    height: 116px;
    width: auto;
    position: relative;
}

.sachib-ass a {
    margin-top: 62px;
    background: #f3f3f3 !important;
}

.subdirector1 li::before {
    content: "";
    height: 4px;
    width: 135px;
    background: #c3c3c3;
    position: absolute;
    left: 0;
    margin-top: 18px;
    margin-left: -122px;
    z-index: -1;
}

.department li a:hover {
    box-shadow: 8px 8px 9px -4px rgb(0 0 0 / 10%);
    height: 100px;
    width: 95%;
    top: 39px;
    background-image: none !important;
    z-index: 999;
}

.department>a:hover {
    height: 80px;
}

.s-content {
    display: block;
}

.small,
small {
    font-size: 80%;
    font-weight: 400;
}

.subdirector1 li::before {
    content: "";
    height: 4px;
    width: 135px;
    background: #c3c3c3;
    position: absolute;
    left: 0;
    margin-top: 18px;
    margin-left: -122px;
    z-index: -1;
}

.orgchar ul a {
    display: block;
    background: #ae1515;
    /* border: 4px solid #c3c3c3; */
    text-align: center;
    overflow: hidden;
    font-size: 0.9em;
    text-decoration: none;
    font-weight: bold;
    color: #333;
    height: 70px;
    margin-bottom: -26px;
    box-shadow: 4px 4px 9px -4px rgb(0 0 0 / 40%);
    -webkit-transition: all linear .1s;
    -moz-transition: all linear .1s;
    transition: all linear .1s;
    padding: 10px;
}

.department>a {
    margin: 0 0 -26px -4px;
    z-index: 1;
}

.department::before {
    content: "";
    display: block;
    position: relative;
    width: 3px;
    height: 22px;
    border-left: 4px solid #c3c3c3;
    z-index: 999;
    top: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -22px;
}

.department li a {
    background: #fff;
    top: 55px;
    position: absolute;
    z-index: 1;
    width: 90%;
    height: 105px;
    vertical-align: middle;
    right: -1px;
    background: #DCECF4;
    padding: 10px;
}

ul.director>li>a::after {
    content: "";
    height: 100px;
    width: 4px;
    background: #c3c3c3;
    position: absolute;
    z-index: -1;
    margin-left: -36px;
}

ul.departments.cf>li:first-child>a::after {
    content: "";
    width: 4px;
    height: 100px;
    position: absolute;
    background: #c3c3c3;
    z-index: -1;
    margin-left: -33px;
}

.department.dep-a:before {
    display: none;
}

.department:first-child,
.departments li:nth-child(2) {
    margin-left: 0;
    clear: left;
}

.subdirector1 li::before {
    content: "";
    height: 4px;
    width: 135px;
    background: #c3c3c3;
    position: absolute;
    left: 0;
    margin-top: 18px;
    margin-left: -122px;
    z-index: -1;
}
