html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    color: #040504;
    font-family: 'adobe-caslon-pro', serif;
    margin: 0;
    padding: 0;
}
wrapper {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}





/*------------------------------
            Global
------------------------------*/
a {
    color: #040504;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
a:hover {
    color: #008554;
    text-decoration: none;
}
h6 {
    line-height: 1.3;
}
.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.trans {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}
@media (max-width: 1199px) {
    .p-mobile {
        padding: 3.5rem 0 !important;
    }
}
@media (max-width: 767px) {
    .p-mobile {
        padding: 2.5rem 0 !important;
    }
}





/*------------------------------
            Navbar
------------------------------*/
.navbar {
    z-index: 999;
    background-color: #191919;
    padding: 1.25rem 0;
}
.navbar.sticky-top {
    padding-top: 7.5rem;
}
.navbar .navbar-brand {
    width: 21rem;
    padding: 0;
    margin: 0 0 0 -2.2rem;
}
.navbar .navbar-toggler {
    z-index: 9;
    position: relative;
    top: 0.75rem;
    cursor: pointer;
    border: none;
    outline: none;
}
.navbar .fas {
    color: #fff;
    transform: scale(1.5, 1.5);
    padding: 0.5rem;
    opacity: 0.6;
}
.navbar .nav-item.nav-link {
    position: relative;
    color: rgba(255,255,255,0.6);
    font-family: 'adobe-caslon-pro', serif;
    font-size: 1.25rem;
    padding: 0.5rem 0 0;
    margin: 0.6rem 1rem 0;
}
.navbar .nav-item.nav-link:hover {
    color: #fff;
}
.navbar .nav-item.nav-link.active {
    color: #fff;
}
.navbar .nav-item.nav-link::after {
    display: block;
    position: relative;
    top: -.125rem;
    content: '';
    border-bottom: solid 3px #004E32;
    transform: scaleX(0);  
    transition: transform .25s ease-in-out;
}
.navbar .nav-item.nav-link.active::after {
    transform: scaleX(1);
}
.navbar .nav-item.nav-link:hover::after {
    transform: scaleX(1);
}
@media (min-width:768px) and (max-width: 991px) {
    .navbar.sticky-top .navbar-brand {
        margin-left: -1rem;
    }
}
@media (min-width: 992px) {
    .navbar .navbar-nav {
        position: relative;
        top: 1.5rem;
    }
    .navbar.sticky-top .navbar-brand {
        width: 22rem;
        margin-left: -2.2rem;
    }
}
@media (min-width: 1200px) {
    .navbar.sticky-top .navbar-brand {
        width: 27.5rem;
        margin-left: -3.2rem;
    }
}
@media (max-width: 1199px), (max-height: 850px) {
    .navbar.sticky-top .navbar-brand {
        width: 22rem;
    }
    .navbar {
        padding: 1rem 0;
    }
    .navbar.sticky-top {
        padding-top: 4rem;
    }
    .navbar .navbar-brand {
        width: 18rem;
    }
    .navbar .nav-item.nav-link {
        font-size: 1.125rem;
    }
}
@media (max-width: 991px) {
    .navbar .navbar-brand {
        margin: 0 0 0 0.9375rem;
    }
    .navbar .navbar-nav {
        text-align: center;
        padding: 1.5rem 0 0;
        margin: 0;
    }
    .navbar .nav-item.nav-link {
        padding: 0.125rem 0;
        margin: 0.125rem 0;
    }
}
@media (max-width: 767px) {
    #home .navbar .navbar-brand {
        width: 15rem;
    }
    .navbar .navbar-brand {
        width: 12rem;
    }
}





/*------------------------------
            Header        
------------------------------*/
header {
    color: #fff;
    background-color: #191919;
}
header .d-flex {
    padding: 2rem 0;
    min-height: 15rem;
}
header h1 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin: auto 0;
}
@media (max-width: 1199px) {
    header .d-flex {
        min-height: 12rem;
    }
    header h1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    header .d-flex {
        min-height: 14.5rem;
    }
    header h1 {
        font-size: 1.25rem;
    }
}





/*------------------------------
             Home      
------------------------------*/
#home {
    background-color: #191919;
    padding: 0 3.25rem;
}
#home .container {
    max-width: 1300px;
}
.home .content {
    padding: 4rem 0;
}
.home .nav a.nav-item {
    position: relative;
    z-index: 1;
    color: #888;
    background-color: transparent;
    font-size: 2.125rem;
    padding: 1rem 0 0;
    border-bottom: 1px solid transparent;
    margin: 0.25rem auto 0 0;
}
.home .nav a.nav-item:hover {
    color: #fff;
}
.home .nav a.nav-item::after {
    display: block;
    position: relative;
    top: -.5rem;
    content: '';
    border-bottom: solid 3px #004E32;  
    transform: scaleX(0);  
    transition: transform .25s ease-in-out;
}
.home .nav a.nav-item:hover::after {
    transform: scaleX(1);
}
.home h1 {
    color: #fff;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.4;
    padding: 0;
    margin: 2rem 0 9.5rem;
}
.home-footer {
    bottom: -3rem;
    color: #ACACAC;
    font-size: 0.875rem;
    padding: 1rem 0;
    opacity: 0;
}
.home-footer.visible {
    opacity: 1;
    bottom: 0;
}
.home-footer a {
    color: #ACACAC;
}
.home-footer ul:first-child {
    position: relative;
    color: #008051;
    margin-right: 4rem;
}
.home-footer ul li span {
    display: inline-block;
    min-width: 4rem;
    color: #ACACAC;
}
@media (min-width: 768px) {
    .home-footer ul:first-child::after {
        content: '';
        position: absolute;
        top: -1rem;
        right: -2rem;
        display: block;
        width: 1px;
        height: calc(100% + 2rem);
        background-color: #DEDEDE;
        opacity: 0.5;
    }
}
@media (max-width: 1199px) {
    #home {
        padding: 0 2.25rem;
    }
}
@media (max-width: 1199px), (max-height: 975px) {
    .home h1 {
        font-size: 1.75rem;
        margin: 2rem 0 2.5rem;
    }
}
@media (max-width: 1199px), (max-height: 850px) {
    .home .content {
        padding: 3rem 0;
    }
    .home .nav a.nav-item {
        font-size: 1.5rem;
        padding: .75rem 0 0;
        margin: 0 auto 0 0;
    }
}
@media (max-width: 991px), (max-height: 850px) {
    .home .content {
        padding: 2rem 0;
    }
}
@media (max-width: 767px) {
    #home {
        padding: 0;
    }
    .home {
        padding: 0 1.6rem;
    }
    .home.mt-auto {
        margin-top: 0!important;
    }
    .home .nav a.nav-item {
        font-size: 1.5rem;
        padding: .375rem 0 0;
    }
    .home h1 {
        font-size: 1.5rem;
        line-height: 1.1;
        margin: 1.5rem 0;
    }
    .home-footer {
        padding: 0 1.6rem;
    }
    .home-footer ul {
        margin: 0 0 1rem!important;
    }
    .home-footer ul:first-child {
        display: flex;
        flex-direction: row;
        font-size: 0.75rem;
        margin: 0 1.25rem 1rem;
    }
    .home-footer ul:first-child li:nth-child(1) {
        margin-right: auto;
    }
    .home-footer ul li span {
        display: block;
        margin-top: 1rem;
    }
}





/*------------------------------
            About
------------------------------*/
.about {
    padding: 5rem 0;
}
.about h3 {
    color: #004e32;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 3rem;
}
.about h4 {
    font-weight: 400;
    font-size: 1.75rem;
    margin-bottom: 4rem;
}
.about img {
    display: none;
    height: 6.25rem;
    margin-bottom: 1.875rem;
}
.about .name {
    font-size: 1.75rem;
    font-style: italic;
    margin: auto;
}
.about p {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}
.capital,
.structure {
    padding-bottom: 3rem;
}
.structure .col-md-6 {
    margin-bottom: 1.5rem;
} 
.structure .d-flex {
    height: 100%;
}
.structure .content {
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    padding-left: 1.25rem;
}
.structure .content::before {
    display: block;
    position: absolute;
    left: 0; top: .25rem;
    content: '';
    width: .5rem;
    height: .5rem;
    background-color: #004e32;
}
.sector-focus .content {
    text-align: center;
    margin-bottom: 4rem;
}
.sector-focus .content .d-flex {
     min-height: 4.25rem;
}
@media (min-width: 1200px) {
    .about .capital img {
        height: 7.5rem;
    }
}
@media (min-width: 768px) {
    .about .capital .name {
        min-height: 3.25rem;
    }
}
@media (max-width: 1199px), (max-height: 850px) {
    .about h3 {
        font-size: 1.625rem;
    }
    .about h4 {
        font-size: 1.625rem;
        margin-bottom: 3rem;
    }
    .about img {
        height: 5rem;
        margin-bottom: 1rem;
    }
    .about .name {
        font-size: 1.25rem;
    }
    .about p {
        font-size: 1rem;
    }
    .structure .col-md-6 {
        margin-bottom: 1rem;
    } 
    .structure .content {
        font-size: 1.125rem;
    }
    .sector-focus .content {
        margin-bottom: 3rem
    }
    .sector-focus .content .d-flex {
         min-height: 4rem;
    }
}
@media (max-width: 767px) {
    .about h3 {
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }
    .about h4 {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    .about .name {
        font-size: 1.125rem;
    }
    .capital,
    .structure {
        padding-bottom: 2rem;
    }
    .structure .content {
        font-size: 1.125rem;
    }
}





/*------------------------------
          Companies
------------------------------*/
.port-filter {
    padding: 5rem 0 0;
}
.port-filter .nav-item {
    font-size: 1.25rem;
    padding: 0.7rem 1.5rem 0.25rem;
    margin: 0 1rem;
}
.port-filter .nav-item:hover {
    color: #004E32;
}
.port-filter .nav-item.active {
    color: #fff;
    background-color: #004E32;
}
.portfolio {
    min-height: 30rem;
    padding: 5rem 0;
}
.portfolio .content {
    position: relative;
    -moz-box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, .2);
    box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, .1);
}
.portfolio .content:hover > .info {
    display: block;
}
.portfolio .port {
    cursor: pointer;
    height: 10rem;
    padding: 2rem 4rem;
    margin-bottom: 3rem;
}
.portfolio .port img {
    filter: grayscale(1);
}
.portfolio .content:hover > .port img {
    filter: grayscale(0);
}
.portfolio .info {
    z-index: 1;
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    padding: 0 1rem .5rem;
    margin-top: -4rem;
    -moz-box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, .2);
    box-shadow: 0px 10px 12px 1px rgba(0, 0, 0, .1);
}
.portfolio .info div {
    display: flex;
    flex-direction: row;
    font-size: 1rem;
    line-height: 1.3;
}
.portfolio .info div.d-block {
    margin: .5rem 0;
}
.portfolio .info div span {
    display: inline-block;
    min-width: 4rem;
    color: #004e32;
    font-weight: 700;
}
.portfolio .info div p {
    margin-top: 0;
}
.portfolio .info div a {
    color: #004e32;
}
.portfolio .info div a:hover {
    color: #008554;
}
@media (max-width: 1199px), (max-height: 850px) {
    .port-filter {
        padding: 3.5rem 0 0;
    }
    .port-filter .nav-item {
        font-size: 1.125rem;
    }
}
@media (max-width: 991px), (max-height: 850px) {
    .portfolio .port {
        padding: 2rem;
    }
}
@media (max-width: 767px) {
    .port-filter {
        padding: 2.5rem 0 0;
    }
    .port-filter .nav-item {
        font-size: 1rem;
    }
    .portfolio .info div {
        font-size: .875rem;
    }
}





/*------------------------------
            Team
------------------------------*/
.team-filter {
    background-color: #F6F8FA;
    padding: 2rem 0;
}
.team-filter .nav-item {
    color: #004E32;
    font-size: 1.25rem;
    margin: 0 3rem;
}
.team-filter .nav-item:hover,
.team-filter .nav-item.active {
    color: #008554;
}
.team {
    padding: 5rem 0;
}
.team .team-card {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 10rem;
    width: 22rem;
    max-width: 100%;
    text-align: center;
    padding: 1rem;
    border: 1px solid #D8D8D8;
    margin: 0 auto 3rem;
    transition: all 0.3s ease;
}
.team .team-card:hover {
    color: #fff;
    background-color: #004E32;
}
.team h5 {
    font-size: 1.75rem;
    margin: 0;
}
.team h6 {
    font-size: 1.25rem;
    font-style: italic;
    max-width: 14rem;
    margin: 0;
}
.team h5 {
    font-weight: 400;
}
#teamModal .info {
    color: #fff;
    background-color: #003320;
    padding: 4rem 8rem 0.5rem;
}
#teamModal .content {
    padding: 2rem 8rem 0.5rem;
}
#teamModal .name {
    font-size: 1.75rem;
    margin: 0;
}
#teamModal .title {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 2rem;
}
#teamModal p {
    color: #4E4E4E;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
#teamModal .btn {
    z-index: 9;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #C6C6C6;
    font-size: 1.125rem;
}
#teamModal .btn:hover {
    color: #fff;
}
#teamModal .btn i {
    margin-left: 0.375rem;
}
#teamModal .carousel-control-next, 
#teamModal .carousel-control-prev {
    top: 6.5rem;
    bottom: auto;
    display: block;
    width: 5rem;
    height: auto;
    color: #A7A7A7;
    font-size: 1.125rem;
    padding: 4rem 0.5rem 0.5rem;
    margin: 0;
    transition: all 0.3s ease;
    opacity: 1;
}
#teamModal .carousel-control-next {
    right: 1rem;
}
#teamModal .carousel-control-prev {
    left: 1rem;
}
#teamModal .carousel-control-next:hover, 
#teamModal .carousel-control-prev:hover {
    color: #fff;
}
#teamModal .fa-caret-left, 
#teamModal .fa-caret-right {
    position: absolute;
    top: 0;
    font-size: 4rem;
    transform: scaleX(0.8);
}
#teamModal .fa-caret-left {
    left: 0.75rem;
}
#teamModal .fa-caret-right {
    right: 0.75rem;
}
@media (min-width: 1200px) {
    #teamModal .modal-lg {
        max-width: 1110px;
    }
    #teamModal .info {
        min-height: 13.75rem;
    }
}
@media (max-width: 1199px), (max-height: 850px) {
    .team-filter .nav-item {
        font-size: 1.125rem;
        margin: 0 2rem;
    }
    .team .team-card {
        margin: 0 auto 1.875rem;
    }
    .team h5 {
        font-size: 1.375rem;
    }
    .team h6 {
        font-size: 1.125rem;
    }
}
@media (max-width: 991px), (max-height: 850px) {
    #teamModal .info {
        padding: 3rem 2rem 0.5rem;
    }
    #teamModal .content {
        padding: 1rem 2rem 0.5rem;
    }
    #teamModal .name {
        font-size: 1.375rem;
    }
    #teamModal .title {
        font-size: 1.125rem;
    }
    #teamModal h5 {
        font-size: 1.125rem;
    }
    #teamModal p {
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    #teamModal .carousel-control-next span, 
    #teamModal .carousel-control-prev span {
        opacity: 0;
    }
    #teamModal .fa-caret-left, 
    #teamModal .fa-caret-right {
        font-size: 3rem;
    }
    #teamModal .carousel-control-next {
        top: 10rem;
        right: -0.75rem;
    }
    #teamModal .carousel-control-prev {
        top: 10rem;
        left: -0.75rem;
    }
}
@media (max-width: 767px) {
    .team-filter .nav-item {
        width: 100%;
        font-size: 1rem;
        text-align: center;
        margin: 0;
    }
    .team .col-6:nth-child(odd) {
        padding-right: 0.5rem;
    }
    .team .col-6:nth-child(even) {
        padding-left: 0.5rem;
    }
    .team .team-card {
        height: 8rem;
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    .team h5 {
        font-size: 1.125rem;
    }
    .team h6 {
        font-size: 0.875rem;
    }
}





/*------------------------------
            Contact
------------------------------*/
.contact {
    padding: 5rem 0;
}
.contact h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.contact ul {
    color: #004E32;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 4rem;
}
.contact ul li a {
    color: #004E32;
}
.contact ul li a:hover {
    color: #008554;
}
.contact hr {
    border-top: 1px solid #5F5F5F;
    margin: 0 0 4rem;
}
@media (max-width: 1199px), (max-height: 850px) {
    .contact h4 {
        font-size: 1.625rem;
    }
    .contact ul {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    .contact hr {
        margin: 0 0 3rem;
    }
}
@media (max-width: 767px) {
    .contact h4 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    .contact ul {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    .contact hr {
        margin: 0 0 2rem;
    }
}





/*------------------------------
           Disclaimer
------------------------------*/
.disclaimer {
    padding: 5rem 0;
}
.disclaimer h5 {
    color: #004e32;
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}
.disclaimer h5:not(:first-child) {
    margin-top: 4rem;
}
.disclaimer p {
    color: #5F5F5F;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 2rem;
}
@media (max-width: 1199px), (max-height: 850px) {
    .disclaimer h5 {
        font-size: 2rem;
    }
    .disclaimer h5:not(:first-child) {
        margin-top: 3rem;
    }
    .disclaimer p {
        color: #5f5f5f;
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
}
@media (max-width: 767px) {
    .disclaimer h5 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer h5:not(:first-child) {
       margin-top: 2rem;
    }
    .disclaimer p {
        margin-bottom: 1rem;
    }
}





/*------------------------------
            404
------------------------------*/
.bx-btn.bx-btn-text {
    color: #fff;
    background-color: #4e4e4e;
    font-family: 'adobe-caslon-pro', sans-serif;
    font-size: .9375rem;
    padding: .75rem 1.375rem .375rem;
    border: none;
}
.bx-btn.bx-btn-text:hover {
    color: #fff;
    background-color: #004E32;
}





/*------------------------------
             Footer
------------------------------*/
footer {
    color: #fff;
    background-color: #191919;
    font-size: 1rem;
    padding: 3rem 0 2rem;
}
footer img {
    width: 14rem;
}
footer p {
    font-size: 0.875rem;
    margin: 0 0 1rem;
}
footer ul li {
    line-height: 1.3;
}
footer ul li b {
    display: block;
    margin-bottom: 0.25rem;
}
footer a {
    color: #Fff;
}
#footer_link {
    text-decoration: underline;
    text-underline-position: under;
}

@media(max-width: 1199px), (max-height: 850px) {
    footer {
        font-size: 0.875rem;
    }
    footer p {
        font-size: 0.75rem;
    }
}
@media(max-width: 767px) {
    footer {
        padding: 1rem 0 0;
    }
    footer ul li b {
        margin: 0;
    }
}