@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Inter', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
/* font-family: 'Playfair Display', serif; */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Poppins', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Roboto', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Ruluko&display=swap');
/* font-family: 'Ruluko', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
/* font-family: 'Abel', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Hanken Grotesk', sans-serif; */

.leftside {left:0 !important;}
/* 	-----------------------------------------------------
------------------- General Styles ------------------
----------------------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background-color: transparent;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #333333;
    text-decoration: none;
    transition: all .4s ease-in-out;
}

a:hover,
a:active,
a:focus {
    outline: none;
    outline-style: none;
    outline-width: 0;
    color: #006837;
    text-decoration: none;
    transition: all .4s ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

[contenteditable="true"]:focus {
    outline: none;
}

*:focus {
    outline: none;
}

img {
    margin: 0;
    padding: 0;
    outline-style: none;
    outline-width: 0;
    max-width: 100%;
    height: auto;
}

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 100%;
    overflow-x: hidden;
    background-color: #EBF9F5;
}

.clr {
    font-size: 0;
    height: 0;
    line-height: 0;
    clear: both;
}

.left {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    float: left;
}

.right {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    float: right;
}

.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after {
    clear: both
}

.clearfix {
    zoom: 1
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

.container {
    max-width: 1350px;
}


/* 	-----------------------------------------------------
-------------------- Header Styles ------------------
----------------------------------------------------- */
.header-section {
    margin: 0 auto;
    padding: 15px 0;
    width: 100%;
    transition: all .4s ease-in-out;
    background: #EBF9F5;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.header-section.sticky {
    padding: 15px 0;
    width: 100%;
    background-color: #EBF9F5;
    position: fixed;
    top: 0;
    z-index: 999;
    transition: all .4s ease-in-out;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 2rem;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
}

.brand {
    transition: all .7s ease-in-out;
}

@media screen and (max-width: 1023px) {
    .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow-y: auto;
        visibility: hidden;
        background-color: #FFFFFF;
        transition: all 0.5s ease;
        margin: 0;
    }

    .navbar.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
}

.menu-item {
    position: relative;
    display: inline-block;
    margin-left: 20px;
}

.menu-link {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 42px;
    text-transform: uppercase;
    cursor: pointer;
    color: #263238;
    position: relative;
    padding: 0;
}

.menu-link>i {
    font-size: 18px;
    color: inherit;
    margin-left: 5px;
}

.menu-link>span {
    font-size: 16px;
    color: inherit;
    margin-right: 5px;
}

.menu-link:hover {
    outline: none;
    color: #006837;
}

.menu-link a {
    color: #1B1B1B;
    position: relative;
}

.menu-link::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: center top;
    transition-duration: 0.25s;
    background-color: #FFFFFF;
}

.menu-active {
    color: #006837;
    position: relative;
}

.menu-active a {
    color: #006837;
}

.menu a.active {
    color: #006837;
}

.menu a:hover {
    color: #006837;
}

.menu-item:last-child {
    display: inline-block;
    background-color: #006837;
    border-radius: 6px;
    width: 130px;
    color: #FFFFFF;
}

.menu-item:last-child:hover {
    background-color: #FFC700;
    color: #333333;
}

.menu-item:last-child .menu-link {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}

.menu-item:last-child:hover .menu-link {
    color: #333333;
}

@media only screen and (min-width: 1023px) {
    .menu-dropdown:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.menu-dropdown-active .menu-link {
    color: #006837;
}

@media only screen and (max-width: 1023px) {
    .menu {
        width: 100%;
        height: 100%;
        padding: 50px 20px 20px 20px;
    }

    .menu-item {
        display: block;
        margin: 20px auto;
    }

    .menu-link {
        justify-content: flex-start;
        padding: 0;
        color: #000000;
        line-height: 40px !important;
    }

    .menu-link:hover {
        outline: none;
        color: #EB293E !important;
    }

    .menu-link::after {
        position: absolute;
        bottom: -3px;
        left: 0;
        content: "";
        width: 100%;
        height: 1px;
        transform: scale(1, 1);
        transform-origin: center top;
        transition-duration: 0.25s;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .menu-item:last-child {
        padding: 0;
        height: inherit;
        border-radius: 0;
        border: none;
        display: block;
    }

    .menu-active {
        background: none !important;
    }

    .menu-active a {
        color: #263238 !important;
        background: none !important;
    }

    .menu-dropdown .menu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-quote .menu-link,
    .menu-apply .menu-link {
        justify-content: center !important;
    }

    .menu-item:last-child {
        display: block;
        background-color: transparent;
        border-radius: 0;
        width: 100%;
        color: #000000;
    }

    .menu-item:last-child:hover {
        background-color: transparent;
        color: #333333;
    }

    .menu-item:last-child .menu-link {
        color: #000000;
        font-size: 22px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .menu-item:last-child:hover .menu-link {
        color: #333333;
    }
}

.submenu {
    position: absolute;
    top: 40px;
    left: -20px;
    z-index: 99999;
    min-width: 8rem;
    height: auto;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    background-color: #EBF9F5;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.submenu-item {
    display: block;
}

.submenu-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    color: #263238;
    transition: all 0.35s ease;
    padding: 15px 20px;
    display: block;
    background: none !important;
    white-space: nowrap;
}

.submenu-link:hover {
    outline: none;
    color: #006837;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

.submenu-link-active {
    color: #006837;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

.submenu-mainlink {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    color: #263238;
    transition: all 0.35s ease;
    padding: 10px 30px;
    display: block;
    background: none !important;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.submenu-mainlink .fa-arrow-right {
    margin-right: 15px;
}

.submenu-mainlink:hover {
    outline: none;
    color: #006837;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

.submenu-mainlink-active {
    color: #006837;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

.subheading-link {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    color: #263238;
    transition: all 0.35s ease;
    padding: 15px 20px 0 20px;
    display: block;
    background: none !important;
    white-space: nowrap;
}

.submenu-link-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    cursor: pointer;
    color: #263238;
    transition: all 0.35s ease;
    padding: 10px 30px;
    display: block;
    background: none !important;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-link-link .fa-arrow-right {
    margin-left: 15px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.submenu-link-link:hover {
    outline: none;
    color: #006837;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

.submenu-link-link-active {
    color: #006837;
    background: none !important;
    background-color: rgba(0, 30, 83, 0.05) !important;
}

@media only screen and (max-width: 1023px) {
    .submenu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        max-height: 0;
        padding: 0;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: transparent;
    }

    .submenu-item {
        display: block;
        border-top: 1px solid #FFF;
    }

    .submenu-link {
        font-size: 18px;
        font-weight: 600;
        line-height: inherit;
        cursor: pointer;
        color: #2A2A2A;
        transition: all 0.35s ease;
        padding: 10px 0;
        display: block;
        background: none !important;
        white-space: normal !important;
    }

    .submenu-link:hover {
        outline: none;
        color: #2A2A2A;
        background-color: rgba(0, 30, 83, 0.01) !important;
    }

    .submenu-link-active {
        color: #006837;
        background: none !important;
        background-color: rgba(0, 30, 83, 0.01) !important;
    }

    .menu-active a.submenu-link {
        background: none !important;
        background-color: #FFFFFF !important;
    }

    .menu-active a.submenu-link:hover {
        outline: none;
        color: #006837;

    }

    .menu-active a.submenu-link-active {
        color: #006837;
        background: none !important;

    }

    .brand img {
        height: 50px;
    }

    .submenu-mainlink {
        padding: 10px 0;
    }

    .submenu-mainlink .fa-arrow-right {
        margin-right: 10px;
    }

    .subheading-link {
        padding: 10px 0 0 0;
    }

    .submenu-link-link {
        padding: 10px 0;
    }
}

.burger {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 1;
    border: none;
    outline: none;
    background: #006837;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    margin-left: 20%;
    width: 80%;
}

.burger-line:nth-child(3) {
    top: 1rem;
    margin-left: 50%;
    width: 50%;
}

.close {
    position: relative;
    display: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 2rem;
    height: 2rem;
    opacity: 0;
    visibility: hidden;
    background: transparent;
}

.close:before,
.close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 1.7rem;
    width: 3px;
    background-color: #006837;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}

@media only screen and (max-width: 1023px) {
    .burger {
        display: block;
        opacity: 1;
        visibility: visible;
        position: absolute;
        right: 15px;
        top: 15px;
    }

    .close {
        display: block;
        opacity: 1;
        visibility: visible;
        position: absolute;
        right: 10px;
        top: 10px;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65);
}

@media only screen and (max-width: 1023px) {
    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav-section.sticky {
        position: relative;
    }
}

@media only screen and (min-width:1024px) and (max-width:1170px) {
    .menu-item {
        margin-left: 10px;
    }

    .menu-check .menu-link {
        padding: 0 20px;
    }
}

@media only screen and (min-width:1171px) and (max-width:1260px) {
    .menu-item {
        margin-left: 10px;
    }

    .menu-check .menu-link {
        padding: 0 30px;
    }
}

/* 	-----------------------------------------------------
-------------------- Banner Styles ------------------
----------------------------------------------------- */
.banner-section {
    padding: 150px 0 25px 0;
}

.banner-section article {
    text-align: center;
}

.banner-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.862px;
    color: #333333;
}

.banner-section h1 strong {
    display: block;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    color: #006837;
}

.banner-section .btn-01 {
    margin: 30px auto;
}

.banner-section ul.prosper {
    margin: 130px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    max-width: 320px;
}


/* 	-----------------------------------------------------
------------------- Content Styles ------------------
----------------------------------------------------- */
.content-section {
    min-height: 400px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Hanken Grotesk', sans-serif;
}

.content-section h1 {
    font-size: 54px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h2 {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h3 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h4 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h5 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section h6 {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
    color: #000000;
    padding: 10px 0;
}

.content-section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    padding: 10px 0;
}

.content-section ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: disc;
}

.content-section ul li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin: 5px 0;
}

.content-section ul ul {
    list-style: circle;
}

.content-section ol {
    margin: 0;
    padding: 10px 30px;
    list-style: decimal;
}

.content-section ol li {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    margin: 5px 0;
}

.content-section ol ol {
    list-style: lower-roman;
}

.btn-01 a {
    margin: 0;
    padding: 16px 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #006837;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-01 a:hover {
    background-color: #FFC700;
    color: #333333;
    transition: all .4s ease-in-out;
}

.btn-sm a {
    margin: 0;
    padding: 5px 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    border-radius: 3px;
    background: #006837;
    color: #FFF;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-sm a:hover {
    background-color: #FFC700;
    color: #333333;
    transition: all .4s ease-in-out;
}

.btn-02 a {
    margin: 0;
    padding: 10px 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 0px;
    background: #FFFFFF;
    border: 2px solid #047047;
    color: #047047;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 1;
}

.btn-02 a:hover {
    background-color: #047047;
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.clients-section {
    border: 3px solid #006837;
    height: 94px;
    position: relative;
    padding: 10px 30px;
}

.clients-section .left-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 90px;
    background-color: #006837;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-section .right-title {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 90px;
    background-color: #006837;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-section h6 {
    color: #FFF;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.clients-slider img,
.owl-carousel .owl-item img {
    max-width: 100%;
    height: auto;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .4s ease-in-out;
}

.owl-carousel .owl-item:hover img {
    filter: none;
    -webkit-filter: grayscale(0);
}

.about-section {
    padding: 50px 0;
}

.about-section h2 {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 10px;
    text-align: center;
}

.about-section h5 {
    color: #006837;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.about-section p {
    color: #000000;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.about-section p strong {
    font-weight: 600;
}

.mission-section {
    text-align: center;
    padding-bottom: 15px;
}

.mission-section h2 {
    color: #333333;
    font-family: 'Roboto', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 10px;
    text-align: center;
}

.mission-section h4 {
    color: #000000;
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    padding-bottom: 10px;
    text-align: center;
}

.mission-section h4 strong {
    color: #245331;
    font-weight: 800;
}

.vision-section .container {
    position: relative;
    z-index: 1;
}

.vision-section .container .sky {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.vision-section h2 {
    color: #333333;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    padding-bottom: 10px;
    text-align: center;
}

.vision-section p {
    color: #333333;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-align: justify;
}

.value-stystem-section {
    border-top: 3px solid #006837;
}

.value-stystem-section .container {
    position: relative;
    z-index: 1;
}

.sideheading {
    position: absolute;
    
    top: 0;
    width: 94px;
    height: 100%;
    background-color: #006837;
    display: flex;
    justify-content: center;
    align-items: center;
	z-index:99 !important;
}

.sideheading h2 {
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
}

.value-stystem-section figure {
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
}

.value-stystem-section p {
    color: #333333;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    margin: 0 auto;
    max-width: 1090px;
    margin-top: 20px;
    margin-left: 94px;
}

.reach-section {
    padding: 50px 0;
    background-color: #E1F6EF;
}

.reach-section h2 {
    color: #333333;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.reach-section .map {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 700px;
    position: relative;
}

.reach-section .map .points {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.reach-section .map h5 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color: #151515;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 6px;
    background: #FFC700;
    width: 100%;
    margin-bottom: 10px;
}

.reach-section .map ul {
    padding: 0 0 0 30px;
}

.reach-section .map ul li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.6;
    color: #263238;
    margin: 0;
}

.reach-section .map .west-india {
    position: absolute;
    top: 195px;
    left: -230px;
    width: 180px;
}

.reach-section .map .west-india h5 {
    position: relative;
}

.reach-section .map .west-india h5::after {
    content: "";
    width: 277px;
    height: 71px;
    background: url(../img/west-arrow.png) no-repeat 0 0;
    position: absolute;
    left: 0;
    top: 56px;
}

.reach-section .map .north-india {
    position: absolute;
    top: -86px;
    right: 56px;
    width: 180px;
}

.reach-section .map .north-india h5 {
    position: relative;
}

.reach-section .map .north-india h5::after {
    content: "";
    width: 336px;
    height: 213px;
    background: url(../img/north-arrow.png) no-repeat 0 0;
    position: absolute;
    right: 0px;
    top: 56px;
}

.reach-section .map .east-india {
    position: absolute;
    top: 112px;
    right: -250px;
    width: 180px;
}

.reach-section .map .east-india h5 {
    position: relative;
}

.reach-section .map .east-india h5::after {
    content: "";
    width: 273px;
    height: 109px;
    background: url(../img/east-arrow.png) no-repeat 0 0;
    position: absolute;
    right: 0px;
    top: 56px;
}

.reach-section .map .south-india {
    position: absolute;
    bottom: 0;
    right: 90px;
    width: 180px;
}

.reach-section .map .south-india h5 {
    position: relative;
}

.reach-section .map .south-india h5::after {
    content: "";
    width: 304px;
    height: 67px;
    background: url(../img/south-arrow.png) no-repeat 0 0;
    position: absolute;
    right: 0px;
    top: 56px;
}

/* 	-----------------------------------------------------
-------------------- Footer Styles ------------------
----------------------------------------------------- */
.footer-section {
    background-color: #08432C;
    padding: 30px 0;
    color: #FFFFFF;
}

.footer-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    padding: 20px 0;
}

.footer-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #FFFFFF;
    padding: 10px 0 10px 50px;
}

.footer-section h5 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #151515;
    padding: 10px;
    border-radius: 6px;
    background: #FFC700;
}

.footer-section ul.links {
    margin: 15px 0;
    padding: 0;
    list-style: none;
}

.footer-section ul.links li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #FFFFFF;
}

.footer-section ul.links li a {
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.footer-section ul.links li a:hover {
    color: #FFC700;
    transition: all .4s ease-in-out;
}

.footer-section ul.office {
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 350px;
}

.footer-section ul.office li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #FFFFFF;
    padding: 10px 0 10px 50px;
}

.footer-section ul.office li a {
    color: #FFFFFF;
    transition: all .4s ease-in-out;
}

.footer-section ul.office li a:hover {
    color: #FFC700;
    transition: all .4s ease-in-out;
}

.footer-section ul.office li.address {
    background: url(../img/icon-address.svg) no-repeat 0 15px;
}

.footer-section ul.office li.email {
    background: url(../img/icon-email.svg) no-repeat 0 13px;
}

.footer-section ul.office li.phone {
    background: url(../img/icon-phone.svg) no-repeat 3px 10px;
}

.footer-section ul.office li.mobile {
    background: url(../img/icon-mobile.svg) no-repeat 5px 10px;
}

.footer-section ul.prosper {
    margin: 30px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
}


/* 	-----------------------------------------------------
------------------ Go to top Styles -----------------
----------------------------------------------------- */
.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 999;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: #006837 url(../fonts/cd-top-arrow.svg) no-repeat center;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    opacity: 1;
}

.no-touch .cd-top:hover {
    background-color: #000000;
    opacity: 1;
}

@media only screen and (min-width:768px) {
    .cd-top {
        right: 15px;
        bottom: 15px;
    }
}

@media only screen and (min-width:1024px) {
    .cd-top {
        height: 40px;
        width: 40px;
        right: 15px;
        bottom: 15px;
    }
}


/* Avijit */
.green {
    background: #C2EDDF
}

#contactform {
    padding: 30px;
    background: #C2EDDF;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
}

#contactform .form-group {
    margin: 0 0 18px 0;
}

#contactform textarea {
    height: 266px;
    overflow: auto;
    resize: none;
}

.submit {
    border: 2px solid #006837;
    color: #006837;
    background: #C2EDDF;
    display: inline-flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit:hover {
    border: 2px solid #006837;
    color: #ffffff;
    background: #006837;
}

.form-control-lg {
    min-height: 52px;
    color: #2B2A40;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 6px;
    background: #FFF;
    border: 0;
}

.p-20 {
    padding: 20px;
}

.p-40 {
    padding: 40px;
}

/* 	-----------------------------------------------------
-------------------- Inner Page Styles ------------------
----------------------------------------------------- */
.inner-banner-section {
    padding: 60px 0 0 0;
}

.inner-banner-section h1 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #000000;
    text-transform: uppercase;
    padding: 10px 0;
}

.inner-banner-section h1.title {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #000000;
    text-transform: uppercase;
    padding: 10px 0;
}

.inner-banner-section h2 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    text-align: center;
    padding: 10px 0;
}

.inner-banner-section h3 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    text-align: center;
    padding: 10px 0;
}

.inner-banner-section h4 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #000000;
    padding: 10px 0;
}

.inner-banner-section p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    padding: 10px 0;
}

.inner-banner-section ul.available {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.inner-banner-section ul.available li a {
    position: relative;
    width: 182px;
    height: 64px;
    display: block;
}

.inner-banner-section ul.available li a>img {
    position: absolute;
    top: 0;
    left: 0;
}

.inner-banner-section ul.available li a>img:last-of-type {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out;
}

.inner-banner-section ul.available li:hover a>img:last-of-type {
    opacity: 0;
}

.delivery-methodology-section {
    padding: 50px 0;
}

.delivery-methodology-section .container {
    position: relative;
    z-index: 1;
}

.delivery-methodology-section h2 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
}

.delivery-methodology-section h5 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
}

.delivery-methodology-section section {
    padding: 50px 0 50px 110px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.delivery-methodology-section section .box {
    flex: 18.5%;
    max-width: 18.5%;
    text-align: center;
}

.capability-building-solutions-section {
    padding: 50px 0;
}

.capability-building-solutions-section h2 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
}

.capability-building-solutions-section h5 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    text-align: center;
}

.capability-building-solutions-section ul {
    list-style: none;
    padding: 0 0 0 15px;
    min-height: 380px;
}

.capability-building-solutions-section ul li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 18px;
    list-style-type: none;
    position: relative;
    padding-left: 15px;
    margin: 10px 0;
}

.capability-building-solutions-section ul li:before {
    content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-size: 10px;
    color: #006837;
    position: absolute;
    top: 5px;
    left: -10px;
}

.capability-building-solutions-section ul ul {
    list-style: none;
    padding: 0 0 0 15px;
    min-height: auto;
}

.capability-building-solutions-section ul ul li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #263238;
    margin: -5px 0 10px 0;
    list-style-type: none;
    position: relative;
    padding-left: 15px;
}

.capability-building-solutions-section ul ul li:before {
    content: "";
    background: url(../img/arrow.png) no-repeat center;
    width: 8px;
    height: 12px;
    position: absolute;
    top: 6px;
    left: -2px;
}

.solution-box {
    margin: 80px auto 0 auto;
    padding: 15px;
    width: 100%;
    min-height: 650px;
    background-color: #F2FFFB;
    border: 3px solid #33B288;
}

.solution-box figure {
    margin: -75px auto 0 auto;
    width: 150px;
    height: 150px;
    background-color: #FFFFFF;
    border: 10px solid #33B288;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.management-section .heading {
    min-height: 60px;
    background-color: #00B050;
}

.management-section .heading h2 {
    color: #FFFFFF;
    text-transform: uppercase;
}

.management-section section {
    background: #FFFFFF url(../img/color-line.png) repeat-x top left;
    padding: 33px;
}

.framework-training-section {
    padding: 50px 0;
}

.framework-training-section ul {
    background-color: #C2EDDF;
}

.framework-training-section ul.leftlist {
    padding: 20px 110px 20px 60px;
	position:relative;
}
.framework-training-section ul.leftlist span {
    padding: 0;
	position:absolute;
	rotate:-90deg;
	top:40%;
	left:-50px;
	text-transform:uppercase;
	box-sizing: border-box;
	
}

.framework-training-section ul.rightlist {
    padding: 20px 20px 20px 150px;
	position:relative;
}
.framework-training-section ul.rightlist span {
    padding: 0;
	position:absolute;
	rotate:-90deg;
	top:40%;
	right:-50px;
	text-transform:uppercase;
	box-sizing: border-box;
	
}
.framework-training-section ul li {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #263238;
}

.framework-training-section article {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
  
}

.framework-training-section article .rightside {
    left: auto;
    right: 0;
}

.clientele-section {
    padding: 50px 0;
}

.clientele-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 10px;
}

.clientele-section ul li {
    flex: 13.6%;
    max-width: 13.6%;
    background-color: #FFFFFF;
    text-align: center;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-section {
    padding: 50px 0;
}

.learning-box {
    margin: 80px auto 0 auto;
    padding: 50px;
    width: 100%;
    min-height: 400px;
    background-color: #dcfff5;
    box-shadow: 4px 4px 4px #04704766;
    text-align: center;
}

.learning-box figure {
    margin: -125px auto 50px auto;
    width: 150px;
    height: 150px;
    background-color: #FFFFFF;
    border: 10px solid #33B288;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-box p {
    text-align: justify;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
}

.learning-box h5 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    padding: 10px;
    min-height: 80px;
}

.plan-section {
    padding: 50px 0;
}

.phase-box {
    margin: 30px auto;
    min-height: 62px;
    background-color: #C2EDDF;
    border-radius: 60px 0 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding-right: 30px;
}

.phase-box h4 {
    padding: 0 40px;
    min-height: 62px;
    background-color: #009E62;
    border-radius: 100px 0 100px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    color: #FFFFFF;
    text-transform: uppercase;
    white-space: nowrap;
}

.phase-box p {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
}

.methodology-section {
    padding: 50px 0;
}

.methodology-section [class*="col-"] {
    padding: 15px;
}

.learning-methodology-box {
    margin: 0 auto;
    padding: 10px;
    width: 100%;
    background-color: #dcfff5;
    border-radius: 20px;
    box-shadow: 4px 4px 4px #04704766;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.learning-methodology-box figure {
    margin: 0;
    padding: 0;
    width: 110px;
    height: 110px;
    background-color: #FFFFFF;
    border: 2px solid #33B288;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.learning-methodology-box article {
    width: calc(100% - 110px);
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    padding: 10px;
}

.benefits-section {
    padding: 50px 0;
}

.benefits-section section {
    background-color: #FFFFFF;
    position: relative;
    z-index: 1;
    padding: 50px 80px 70px 120px;
    min-height: 670px;
}

.benefit-box {
    margin: 80px auto 0 auto;
    padding: 20px;
    width: 100%;
    min-height: 500px;
    background-color: #dcfff5;
    box-shadow: 4px 4px 4px #04704766;
    text-align: center;
}

.benefit-box figure {
    margin: -80px auto 10px auto;
    width: 120px;
    height: 120px;
    background-color: #FFFFFF;
    border: 10px solid #33B288;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-box p {
    text-align: justify;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
}

.benefit-box h5 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    padding: 10px;
    min-height: 80px;
}

.benefit-box ul li {
    font-family: 'Hanken Grotesk', sans-serif;
}

.creating-interrest-excitement-section {
    padding: 50px 0;
}

.prosper-section {
    padding: 15px;
}

.prosper-section ul.prosper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.what-we-do-section01 {
    padding: 50px 0;
}

.what-we-do-section02 {
    padding: 50px 0;
}

.what-we-do-section03 {
    padding: 50px 0;
}

.what-we-do-section01 h2,
.what-we-do-section02 h2,
.what-we-do-section03 h2 {
    font-weight: 400;
}

.what-we-do-section01 p,
.what-we-do-section02 p,
.what-we-do-section03 p {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #263238;
    text-align: justify;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.what-we-do-section01 ul,
.what-we-do-section02 ul,
.what-we-do-section03 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.what-we-do-section01 ul li,
.what-we-do-section02 ul li,
.what-we-do-section03 ul li {
    margin: 10px 0;
    padding: 0 0 0 40px;
    background: url(../img/bullet01.png) no-repeat 0 10px;
    font-family: 'Hanken Grotesk', sans-serif;
    color: #263238;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}

.what-we-do-section01 ul ul,
.what-we-do-section02 ul ul,
.what-we-do-section03 ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.what-we-do-section01 ul ul li,
.what-we-do-section02 ul ul li,
.what-we-do-section03 ul ul li {
    margin: 10px 0;
    padding: 0 0 0 30px;
    background: url(../img/bullet02.png) no-repeat 0 5px;
    font-family: 'Hanken Grotesk', sans-serif;
    color: #263238;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.how-we-do-section01 {
    padding: 50px 0;
}

.how-we-do-section01 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.how-we-do-section01 ul li {
    margin: 10px 0;
    padding: 0 0 0 30px;
    background: url(../img/bullet02.png) no-repeat 0 5px;
    font-family: 'Hanken Grotesk', sans-serif;
    color: #263238;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.how-we-do-section03 {
    padding: 50px 0;
}

.how-we-do-section03 ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.how-we-do-section03 ul li {
    margin: 10px 0;
    padding: 0 0 0 40px;
    background: url(../img/bullet01.png) no-repeat 0 10px;
    font-family: 'Hanken Grotesk', sans-serif;
    color: #263238;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.contact-section {
    padding: 100px 0;
}

.table-striped th {
    background-color: #00af50;
    color: white;
}

.table-striped tbody tr:nth-child(even) td,
.table-striped tbody tr:nth-child(even) th {
    background-color: #e9ebf5;
    color: #464646;
}

.heading-green {
    min-height: 60px;
    background-color: #006837;
}

.heading-green h2,
.heading-green h4 {
    color: #FFFFFF;
    text-transform: uppercase;
}

.maxw580 {
    max-width: 576px;
}

.features-section {
    padding: 50px 0;
    background-color: #EBF9F5;
}

.features-section h4 {
    font-weight: 400;
    padding: 0;
}

.features-section .table-striped th {
    padding: .7rem 1rem;
    background-color: #006837;
    border: 1px solid #DCFFF5;
    color: #FFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
}

.features-section .table-striped td {
    padding: .7rem 1rem;
    border: 1px solid #006837;
    background-color: #DCFFF5 !important;
    color: #101010;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.features-section .table-striped td span {
    font-size: 10px;
}

.features-section .table-striped td ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.features-section .table-striped td ul li {
    color: #101010;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    position: relative;
}

.features-section .table-striped td ul li span {
    display: block;
}

.features-section .table-striped td ul li::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #101010;
    position: absolute;
    right: -9px;
    top: 0;
}

.features-section .table-striped td ul li:last-child:after {
    display: none;
}

.organization-development-solutions-section {
    padding: 50px 0;
}

.organization-development-solutions-section p {
    color: #101010;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
}

.heading-lightgreen {
    min-height: 60px;
    background-color: #92E3A9;
}

.heading-lightgreen h2 {
    color: #2B2A40;
}

.personality-interpersonal-leadership-section {
    padding: 0 0 50px 0;
}

.personality-interpersonal-leadership-section .box {
    background: #C2EDDF;
    box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
    min-height: 700px;
}

.personality-interpersonal-leadership-section .box .content {
    padding: 15px;
    border-bottom: 2px solid #263238;
}

.personality-interpersonal-leadership-section .box .content:last-child {
    border: none !important;
}