:root {
    --color-primary: #005E09;
    --color-primary-light: #C9FFEB;
    --color-primary-text: #63F5C4;
    --color-secondary: #FB5F0E;
    --color-dark: #3E3E3E;
    --color-dark-light: #7c7c7c;
    --color-red: #F10A0A;
    --color-yellow: #ddce00;
    --color-green: #27CB00;
    --color-blue: #047C9B;
    --color-light-blue: #00B5A9;
}

body {
    background-color: #f6fffc;
}

.d-none {
    display: none;
}

.overflow-auto {
    overflow: hidden;
    overflow-x: auto!important;
}

.border-0 {
    border: 0px!important;
}

.border-bottom {
    border-bottom: 1px solid rgb(221, 221, 221)!important;
}

.top-info {
    min-height: 6rem;
    font-size: 1.5rem;
}

.branch-dropdown {
    width: 25rem;
    height: 100%;
    background-color: #F4FCF9;
    border: 0px;
    padding: 0 1rem;
    border: 1px solid #d8f7eb;
    color: var(--color-secondary);
}

.branch-dropdown option:checked {
    color: var(--color-secondary);
}

.headings {
    color: var(--color-primary);
    max-width: 60%;
    font-size: 4rem;
    position: relative;
    display: inline-block;
    margin-bottom: 5rem;
}

.headings::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1rem;
    display: block;
    height: 4px;
    width: 50%;
    background-color: var(--color-secondary);
}

.read-all {
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 1.8rem;
    color: var(--color-primary);
    letter-spacing: .3rem;
    position: relative;
    margin-top: 5rem;
    transition: all .2s;
    padding-bottom: .5rem;
    cursor: pointer;
}

.read-all:hover {
    color: var(--color-secondary);
    transform: translateX(-1rem);
}

.read-all:hover::after {
    transform: translateX(1rem);
}

.read-all::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.5rem;
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-yellow);
    transition: all .2s;
}

.threeCards .card .body .read-more {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-secondary);
}

.threeCards .card .body .read-more svg {
    width: 3rem;
    height: 3rem;
    fill: var(--color-secondary);
    margin-left: 2rem;
}

.profile .imgBx {
    width: 10rem;
    height: 10rem;
}

.profile .imgBx img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vision .imgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media(max-width:750px) {
    div.header {
        padding: 0 2rem;
    }
    div.header .logoBx img {
        height: 5.5rem;
    }
    .headings {
        max-width: 100%;
        /* font-size: 3rem; */
    }
    .top-info div:nth-child(1) {
        display: none;
    }
    .left-md {
        text-align: left!important;
    }
    .vision svg {
        display: none!important;
    }
}