:root {
    --grey: #303030;
    --white: #ffffff;
    --yellow: #FDCA40;
    --green: #008081;
    --black: #000000;
    --light-blue: #EAF0F8;
    --light-yellow: #F1F6EC;
    --light-pink:#F8EAEE;
    --light-brown: #F8F3EA;
    --skyblue: #D9FFFF;
    --light-grey: #EEEEEE;
}
.btn-green {
    padding: 15px 20px;
    text-decoration: none;
    background: var(--green);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
    font-weight: 500;
    font-size: 20px;
    color: var(--white);
}
.company_name {
    color: var(--green);
    font-weight: 900;
    font-size: 20px;
}
.mt-6 {
    margin-top: 6rem;
}
html,
body {
    height: 100%;
}

body {
    font-size: 16px;
    font-family: 'Montserrat' !important;
}

.navbar {
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}
.navbar .nav-item {
    padding: 25px 0px;
}
.navbar .nav-item:hover {
    background-color: var(--yellow);
}
.navbar .nav-item:hover a.nav-link{
    color: var(--black) !important;
}
.nav-item .nav-link {
    font-weight: 600;
    color: var(--grey);
}

.nav-item a.nav-link.active {
    font-weight: 600;
    color: var(--green);
    border-bottom: 5px solid var(--yellow);
}

.page_title {
    font-weight: 600;
    font-size: 30px;
    text-align: center;
    color: #303030;
    position: relative;
}


.page_title::after {
    background: none repeat scroll 0 0 #FDCA40;
    content: "";
    display: block;
    height: 7px;
    width: 6%;
    position: absolute;
    left: 47%;
}



footer {
    background-color: var(--green);
}
footer p.text-white {
    font-size: 12px;
}

footer ul {
    display: grid;
    height: 100px;
    grid-template-columns: repeat(4, .1fr);
    grid-template-rows: 50px;
    column-gap: 3px;
}

footer ul li {
    width: max-content;
}

.we-value {
    font-family: 'DM Serif Display';
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: var(--white);
    letter-spacing: 5px;
}

.back-arrow {
    width: 50px;
}