/* 
-----------------------------------------
BASE
-----------------------------------------
*/

::selection {
    background-color: #000000;
    color: #fff;
}

.bg-white {
    background-color: #fff !important;
}

.txt-white {
    color: #fff;
}

.scroll-to {
    display: block;
    position: relative;
    top: -112px;
    visibility: hidden;
}

a, a:link, a:active {
    color: #9D8955;
    text-decoration: none;
    transition: 0.2s;
    font-weight: 600;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: none;
}

ul {
    padding-left: 1rem;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}


.project ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-left: 1rem;
}



a:hover {
    color: #BF3E13;
    text-decoration: none;
}

img {
    max-width: 100%;
}

figure {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}

body, p, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #34434B;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

b, strong {
    font-weight: 900;
}

p strong {
    font-weight: 500;
}

h1 {
    text-transform: none;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #000000;
}

h2 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.15;
    color: #000000;
}

h3 {
    font-size: 1.25rem;
    text-transform: none;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.5rem;
    color: #000000;
}

h1 + h2, p + h2, ul + h2, p + h3, ul + h3 {
    margin-top: 2rem;
}

h2 + h3 {
    margin-top: 1.5rem;
}

p.ingress {
    font-weight: 500;
    font-size: 1.125rem;
}

.bg-grey {
    background-color: #f2f2f2 !important;
}

.max-width-300 {
    max-width: 300px;
}

@media screen and (min-width: 576px) {

    h1 {
        font-size: 1.875rem;
    }
}

@media screen and (min-width: 992px) {

    h1 {
        font-size: 2.125rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}


@media screen and (min-width: 1700px) {

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    p.ingress {
        font-size: 1.25rem;
    }
}

article h1 {
    font-size: 1.75rem;
    font-weight: 700;
}

article h2 {
    font-weight: 700;
}


article p:last-child {
    margin-bottom: 0;
}

article p.ingress {
    font-size: 1.25rem;
}

@media screen and (min-width: 992px) {

    article h1 {
        font-size: 2rem;
    }

    article h2 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 1700px) {

    article h1 {
        font-size: 2.25rem;
    }

    article h2 {
        font-size: 1.75rem;
    }

    article p.ingress {
        font-size: 1.375rem;
    }
}

/* ---------- Padding x space ---------- */

.padding-x-space {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 768px) {
    .padding-x-space {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1200px) {
    .padding-x-space {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (min-width: 1700px) {
    .padding-x-space {
        padding-left: 8vw;
        padding-right: 8vw;
    }
}


.container-y {
    padding-top: clamp(2.5rem, 1.4286rem + 2.9762vw, 5rem);
    padding-bottom: clamp(2.5rem, 1.4286rem + 2.9762vw, 5rem);
}

.container-x {
    max-width: 1800px;
    margin: 0px auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 576px) {
    .container-x {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}



/* ---------- Padding y space ---------- */

.padding-y-space {
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: .5s;

}

@media (min-width: 768px) {
    .padding-y-space {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .padding-y-space {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (min-width: 1700px) {
    .padding-y-space {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* ---------- Button ---------- */

a.btn, button.btn {
    display: inline-block;
    font-size: 0.875rem;
    background-color: #fff;
    padding: 0.5rem 2rem;
    color: #000;
    font-weight: 500;
    transition: all ease 0.2s;
    border-radius: 0;
    border: 1px solid #000;
}

    a.btn:hover,
    a.btn:focus,
    a.btn:active {
  
        outline: none;
        box-shadow: none;
        border: 1px solid #ccc;
        background-color: #F2F2F2;
    }

a.btn-white {
    color: #FFFFFF;
    border-color: #FFFFFF;
    background: transparent;
}

    a.btn-white:hover {
        color: #9D8955;
        border-color: #9D8955;
        background: transparent;
    }

@media screen and (min-width: 1200px) {

    a.btn {
        padding: 0.5rem 3rem;
    }
}


/* ---------- Header section ---------- */

.section-header {
    margin-bottom: 1.5rem;
}

    .section-header.container {
        max-width: 600px;
    }

    .section-header h2 {
        margin-bottom: 0;
    }



@media screen and (min-width: 992px) {

    .section-header {
        margin-bottom: 2rem;
    }

        .section-header h2 {
            font-size: 2rem;
        }
}

@media screen and (min-width: 1200px) {

    .section-header {
        margin-bottom: 2.25rem;
    }

        .section-header h2 {
            margin-bottom: 0.75rem;
            font-size: 2.5rem;
        }
}


/*
-----------------------------------------
NAVBAR
-----------------------------------------
*/

.navbar {
    justify-content: space-between;
    align-items: initial;
    padding-top: 0;
    padding-bottom: 0;
    top: 0;
    transition: all ease 0.4s;
    height: 72px;
    z-index: 1200;
}

.navbar-light {
    background-color: #FFFFFF;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.navbar-show {
    transform: none;
}


@media screen and (min-width: 992px) {
    .navbar {
        height: 110px;
    }
}


/* ---------- Logo ---------- */

.navbar-brand {
    display: flex;
}

    .navbar-brand img {
        width: 120px;
        transition: 0.15s;
    }

@media screen and (min-width: 992px) {
    .navbar .navbar-brand img {
        width: 180px;
    }
}


.navbar-dark .logo-dark {
    display: block;
    opacity: 1;
}

.navbar-dark .logo-light {
    display: none;
    opacity: 0;
}

.navbar-light .logo-light {
    display: block;
    opacity: 1;
}

.navbar-light .logo-dark {
    display: none;
    opacity: 0;
}

/* ---------- Mobile menu button ---------- */

.navbar-toggler:focus-visible {
    outline: 1px solid #000;
}

.navbar .navbar-toggler {
    width: 35px;
    height: 28px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    padding: 0;
    box-shadow: none !important;
    border: none;
    z-index: 1032;
}

.navbar-toggler {
    position: relative;
    width: 30px;
    height: 22px;
    border: none;
}

    .navbar-toggler span {
        display: block;
        position: absolute;
        height: 2px;
        width: 30px;
        background: #fff;
        opacity: 1;
        left: 0;
    }

.navbar-dark .navbar-toggler span {
    background: #FFFFFF;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 10px;
}

.navbar-toggler span:nth-child(3) {
    top: 20px;
}

@media screen and (min-width: 1100px) {

    .navbar-toggler {
        display: none;
    }
}

/* ----- Offcanvas mobile menu ----- */

.offcanvas-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow-y: auto;
    transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
    transition: transform .4s ease-in-out, -webkit-transform .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 1032;
    overflow-x: hidden;
}

    .offcanvas-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
    }

#mob-nav {
    padding: 0;
}

@media screen and (min-width: 400px) {

    .offcanvas-collapse {
        width: 380px;
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

        .offcanvas-collapse.open {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
}

#mobileMenu .nav-item {
    border-bottom: 1px solid #D4D4D6;
}

#mobileMenu .nav-link {
    color: #000000;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: nowrap;
}

#mobileMenu button.nav-link {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    border: none;
    background-color: transparent;
}

/* Mobile menu close button */

.close-button {
    cursor: pointer;
    font-size: 36px;
    padding: 0 0.25rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    color: #000000;
    height: 30px;
    width: 30px;
    margin-right: 0.75rem;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background-color: transparent;
}

.main-menu-mobile .top-nav-item {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

    .main-menu-mobile .top-nav-item span {
        display: block;
        position: absolute;
        height: 2px;
        width: 30px;
        background: #000000;
        opacity: 1;
        right: 0;
    }

        .main-menu-mobile .top-nav-item span:nth-child(1) {
            top: 15px;
            transform: rotate(45deg);
        }

        .main-menu-mobile .top-nav-item span:nth-child(2) {
            top: 15px;
            transform: rotate(-45deg);
        }

#mobileMenu #language-menu .nav-link {
    font-weight: 400;
    opacity: 0.8;
}

/* Mobile submenu */

.main-menu-mobile .offcanvas-submenu-collapse {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 400px;
    max-width: 400px;
    width: 100%;
    overflow-y: auto;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    z-index: 10;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

    .main-menu-mobile .offcanvas-submenu-collapse.open {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        background-color: #fff;
        visibility: visible;
    }

    .main-menu-mobile .offcanvas-submenu-collapse .top-nav-item {
        justify-content: space-between;
    }

.main-menu-mobile .back-button {
    justify-content: flex-start;
    font-size: 30px;
    margin-left: 1rem;
    color: #000000;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
}

.main-menu-mobile .submenu {
    list-style: none;
    padding-left: 0;
}

.main-menu-mobile .offcanvas-submenu-collapse .submenu:first-child .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu {
    list-style: none;
    padding-left: 0;
}

#mobileMenu .main-menu-mobile .submenu-submenu .nav-item .nav-link {
    white-space: normal;
    font-weight: 400;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu .nav-item:first-child .nav-link {
    border-top: none;
}

.main-menu-mobile .submenu-submenu > .nav-item:last-child {
    border-bottom: 1px solid #A1B7B6;
}

.main-menu-mobile .submenu .submenu .nav-item:last-child .nav-link {
    border-bottom: none;
}

.main-menu-mobile .submenu-item .nav-link {
    text-transform: none;
}


/* ---------- Desktop menu ---------- */

#desktopMenu {
    display: none;
}

@media screen and (min-width: 1100px) {

    #desktopMenu {
        display: flex;
    }
}

#main-menu {
    flex-direction: row;
    align-items: center;
}

    #main-menu .nav-item {
        position: relative;
    }

    #main-menu .nav-link {
        font-weight: 500;
        color: #324158;
        padding: 0.5rem 0;
        transition: all ease 0.15s;
        text-transform: uppercase;
        font-size: 1rem;
    }


.navbar-dark #main-menu .nav-link:hover {
    /* color: rgba(255, 255, 255, 0.7);*/
    color: #BF3E13
}

.navbar-light #main-menu .nav-link:hover {
    color: #BF3E13;
}

#main-menu .dropdown-menu .nav-link:hover {
    color: #BF3E13 !important;
}

#main-menu > .nav-item > .nav-link {
    margin-right: 1.5rem;
}


#main-menu > .nav-item:last-child > .nav-link {
    margin-right: 0;
}

.navbar-dark #main-menu .nav-link {
    color: #FFFFFF;
}

@media screen and (min-width: 1700px) {


    #main-menu > .nav-item > .nav-link {
        margin-right: 2rem;
    }
}

/* Desktop dropdown menus */

#main-menu .dropdown-toggle::after {
    display: none;
}


#main-menu .dropdown-menu {
    background-color: #F5F4F2;
    border: none;
    border-radius: 0;
    position: absolute;
    top: calc(100% - 2px);
    padding: 0;
    min-width: 260px;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.2);
}

    #main-menu .dropdown-menu .nav-link {
        color: #324158;
        font-size: 0.875rem;
        font-weight: 400;
        padding: 1rem;
        border-bottom: 1px solid #D4D4D6;
        line-height: 1;
    }

    #main-menu .dropdown-menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }


/* Desktop language menu */


#desktopMenu #language-menu {
    flex-direction: row;
}

    #desktopMenu #language-menu .nav-link {
        font-weight: 400;
        font-size: 0.875rem;
        color: #000000;
        padding: 0.5rem 1.5rem 0.5rem 0;
        transition: all ease 0.15s;
    }

    #desktopMenu #language-menu .nav-item:last-child .nav-link {
        padding-right: 0;
    }

.navbar-dark #desktopMenu #language-menu .nav-link {
    color: #FFFFFF;
}

@media screen and (min-width: 1700px) {

    #desktopMenu #language-menu .nav-link {
        font-size: 1rem;
        padding: 0.5rem 1.875rem 0.5rem 0;
    }
}

/* ------- Skip to content ------- */

.skip-to-content {
    position: absolute;
    z-index: 1201;
    opacity: 1;
    left: 1rem;
    height: 0;
}

a.skip-to-content-btn {
    display: inline-block;
    font-weight: 500;
    background-color: #000;
    padding: 0.75em 2em;
    color: #FFF;
    border: 1px solid #FFFFFF;
    transform: translateY(-100%);
}

    a.skip-to-content-btn:hover,
    a.skip-to-content-btn:focus {
        background-color: #fff;
        color: #FFF;
        transform: translateY(1rem);
    }







/*header section*/
.hero_area {
    min-height: 80dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.hero_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .hero_bg_box .img-box {
        width: 100%;
    }

        .hero_bg_box .img-box img {
            min-width: 100%;
            min-height: 100%;
        }

    .hero_bg_box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.35)));
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.35));
    }

.sub_page .hero_area {
    min-height: auto;
}

.sub_page .custom_nav-container.navbar-expand-lg .navbar-nav .nav-item .nav-link {
    padding-bottom: 21px;
}

.hero_area.sub_pages {
    height: auto;
}

.header_section {
    padding: 0;
}


@media (max-width: 992px) {
   /* .hero_area {
        min-height: 60vh;
    }*/
}

.header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
}

.header_section .nav_container {
    margin: 0 auto;
}

.header_top {
    background-color: #1c1c1c;
    padding: 15px 0;
}

    .header_top .contact_link-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .header_top .contact_link-container a {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            color: #ffffff;
            font-size: 15px;
        }

            .header_top .contact_link-container a i {
                font-size: 20px;
                color: #BF3E13;
                margin-right: 5px;
            }

#navbarSupportedContent {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.custom_nav-container {
    z-index: 99999;
    padding: 0;
}

    .custom_nav-container .navbar-nav {
        margin-left: auto;
    }

        .custom_nav-container .navbar-nav .nav-item .nav-link {
            padding: 0;
            padding: 35px 15px 10px 15px;
            color: #ffffff;
            text-align: center;
            text-transform: uppercase;
            -webkit-transition: all .2s;
            transition: all .2s;
        }

        .custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
        }

a,
a:hover,
a:focus {
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #BF3E13;
    }

.btn,
.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .navbar-brand span {
        font-weight: bold;
        color: #ffffff;
        font-size: 24px;
    }

.custom_nav-container .navbar-toggler {
    outline: none;
}

.custom_nav-container .navbar-toggler {
    padding: 0;
    width: 37px;
    height: 42px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .custom_nav-container .navbar-toggler span {
        display: block;
        width: 32px;
        height: 4px;
        background-color: #000;
        border-radius: 15px;
        margin: 7px 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        position: relative;
        transition: all 0.3s;
    }


.navbar-light .navbar-toggler span {
    background: #000;
}


.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    top: -10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
    top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

    .custom_nav-container .navbar-toggler[aria-expanded="true"] span {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

        .custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
            -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
            top: 0;
        }

/*end header section*/
/* slider section */
.slider_section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}


@media (min-width: 768px) {
    .slider_section {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: #ffffff;
        text-align: left;
    }
}


.slider_section .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slider_section .detail-box {
    width: 100%;
    margin: 0 auto;
}

    .slider_section .detail-box h1 {
        font-size: clamp(2rem, 0.875rem + 3.125vw, 4rem);
        color: #fff;
    }
 

.slider_section .detail-box h1 span {
    color: #BF3E13;
}

.slider_section .detail-box p {
    color: #fff;
}

.slider_section .detail-box .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    justify-content: center;
}




@media (min-width: 768px) {
    .slider_section .detail-box .btn-box {
        justify-content: left;
    }
}

.slider_section .detail-box .btn-box a {
    width: 180px;
    text-align: center;
    margin: 5px;
}

.slider_section .detail-box .btn-box .btn-1 {
    display: inline-block;
    padding: 10px 35px;
    background-color: #ffffff;
    color: #000000;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
}

    .slider_section .detail-box .btn-box .btn-1:hover {
        background-color: transparent;
        border-color: #ffffff;
        color: #ffffff;
    }

.slider_section .detail-box .btn-box .btn-2 {
    display: inline-block;
    padding: 10px 35px;
    background-color: #BF3E13;
    color: #ffffff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 1px solid transparent;
}

    .slider_section .detail-box .btn-box .btn-2:hover {
        background-color: transparent;
        border-color: #BF3E13;
        color: #BF3E13;
    }

.slider_section .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .slider_section .img-box img {
        width: 100%;
    }

.slider_section .idicator_container {
    position: relative;
}

.slider_section ol.carousel-indicators {
    margin: 0;
    bottom: -75px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

    .slider_section ol.carousel-indicators li {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        text-align: center;
        background-color: #BF3E13;
        opacity: 1;
        border: none;
        margin: 0 4px;
    }

        .slider_section ol.carousel-indicators li.active {
            background-color: #ffffff;
        }






/* Projects page */

@media screen and (max-width: 479px) {

    .project .col-lg-8 {
        order: 2;
    }

    .project .col-lg-4 {
        order: 1;
    }
}

@media screen and (min-width: 480px) and (max-width: 992px) {

    .project:nth-child(even) .col-lg-8 {
        order: 1;
    }

    .project:nth-child(even) .col-lg-4 {
        order: 2;
    }

    .project:nth-child(odd) .col-lg-8 {
        order: 2;
    }

    .project:nth-child(odd) .col-lg-4 {
        order: 1;
    }
}


.projects-section .project:nth-child(even) {
    padding-left: 0;
    padding-left: 0;
}

.projects-section .project:nth-child(odd) {
    padding-right: 0;
    padding-left: 0;
}



@media screen and (min-width: 670px) {

    .projects-section .project:nth-child(even) {
        padding-left: 3rem;
        padding-left: 3rem;
    }

    .projects-section .project:nth-child(odd) {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}






@media screen and (min-width: 480px) {

    .projects-section .project:nth-child(even) {
        padding-left: 0rem;
        padding-left: 0rem;
    }

    .projects-section .project:nth-child(odd) {
        padding-right: 0rem;
        padding-left: 0rem;
    }
}

.project .project-text-holder {
    padding: 1.5rem;
    width: 100%;
}


.project .row {
    position: relative;
}


.projectsub .row {
 
    display: flex;
}

@media screen and (min-width: 900px) {

    .projectsub .row {
        flex-direction: row;
        display: flex;
    }
}

    .project:nth-child(odd) .row {
        flex-direction: row-reverse;
    }



    @media screen and (min-width: 1200px) {

        .project .project-text-holder {
            padding: 3rem;
        }

        .project:nth-child(even) {
            padding-left: 0;
        }

        .project:nth-child(odd) {
            padding-right: 0;
        }

            .project:nth-child(odd) .project-text-holder {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                right: 0;
                padding: 3rem;
                width: 50%;
                margin-right: 3rem;
            }



        .project:nth-child(even) .project-text-holder {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            padding: 3rem;
            width: 50%;
        }



        .project .project-img-holder img {
            min-height: 600px;
        }
    }





@media screen and (min-width: 900px) {


    .projectsub:nth-child(odd) .project-text-holder {
        position: relative;
        top: 0;
        transform: none;
        left: 0;
        padding: 3rem;
        width: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
        margin: 0;
    }



    .projectsub:nth-child(even) .project-text-holder {
        position: relative;
        top: 0;
        transform: none;
        left: 0;
        padding: 3rem;
        width: auto;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}




    .project .project-text-holder p {
    }

    .project .project-text-holder h2 {
        margin-top: 1rem;
        font-size: clamp(1.125rem, calc(1.125rem + ((1vw - 0.2rem) * 1.25)), 1.875rem);
        text-transform: uppercase;
    }

    .project .project-img-holder img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        aspect-ratio: 3 / 2;
    }


    .intro-section .separator {
        width: 100px;
        height: 2px;
        background-color: #BF3E13 !important;
        color: #2b9f4a;
        border-top: none;
        opacity: 1;
        margin-bottom: 3rem;
        margin: 0 auto;
    }

    .intro-section .ingress {
        text-align: center;
        max-width: 90ch;
        margin: 0 auto;
    }

    .services-section img {
        margin-bottom: 1rem;
    }













    /* 
-----------------------------------------
Coworkers page
-----------------------------------------
*/

    .coworkers-wrap {
        justify-content: center;
    }

    .coworker-box {
        flex-basis: 100%;
        flex-grow: 0;
        flex-shrink: 0;
        margin-bottom: 2.25rem;
        max-width: 280px;
        border: 1px solid #69B32E;
        padding: 0.75rem
        /* transition: ease height 0.5s; */
    }

    @media screen and (min-width: 400px) {

        .coworkers-wrap {
            margin: 0 -0.5rem;
        }

        .coworker-box {
            margin: 0 0.5rem 2rem;
            flex-basis: calc(50% - 1rem);
            max-width: calc(50% - 1rem);
            padding: 0;
            border: none;
        }
    }

    @media screen and (min-width: 450px) {

        .coworkers-wrap {
            margin: 0;
        }

        .coworker-box {
            margin: 0 0.75rem 2rem;
            flex-basis: calc(50% - 1.5rem);
            max-width: calc(50% - 1.5rem);
        }
    }

    @media screen and (min-width: 670px) {

        .coworkers-wrap {
            margin: 0 -0.5rem;
        }

        .coworker-box {
            margin: 0 0.5rem 2rem;
            flex-basis: calc(33% - 1rem);
            max-width: calc(33% - 1rem);
        }
    }

    @media screen and (min-width: 800px) {

        .coworkers-wrap {
            margin: 0 -0.75rem;
        }

        .coworker-box {
            margin: 0 0.75rem 2rem;
            flex-basis: calc(33% - 1.5rem);
            max-width: calc(33% - 1.5rem);
        }
    }

    @media screen and (min-width: 1000px) {

        .coworkers-wrap {
            margin: 0 -0.5rem;
        }

        .coworker-box {
            margin: 0 0.5rem 2rem;
            flex-basis: calc(25% - 1rem);
            max-width: calc(25% - 1rem);
        }
    }

    @media screen and (min-width: 1100px) {

        .coworkers-wrap {
            margin: 0 -0.75rem;
        }

        .coworker-box {
            margin: 0 0.75rem 2rem;
            flex-basis: calc(25% - 1.5rem);
            max-width: calc(25% - 1.5rem);
        }
    }

    @media screen and (min-width: 1200px) {

        .coworkers-wrap {
            margin: 0 -1rem;
        }

        .coworker-box {
            margin: 0 1rem 2rem;
            flex-basis: calc(25% - 2rem);
            max-width: calc(25% - 2rem);
        }
    }

    @media screen and (min-width: 1700px) {

        .coworkers-wrap {
            margin: 0 -2rem;
        }

        .coworker-box {
            margin: 0 2rem 2rem;
            flex-basis: calc(25% - 4rem);
            max-width: calc(25% - 4rem);
        }
    }

    .coworker-box.has-more-info .coworker-main-image {
        cursor: pointer;
    }

    .coworker-box .coworker-main-image {
        width: 100%;
    }

    .coworker-box h3 {
        margin-bottom: 0;
        margin-top: 1rem;
    }

    p.coworker-title {
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .coworker-box ul {
        padding: 0;
        margin-bottom: 0;
        list-style: none;
    }

    .coworker-box li {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.7;
    }

        .coworker-box li svg {
            margin-right: 0.25em;
        }

        .coworker-box li a {
            color: #141414;
        }


    .coworker-main-image {
        transition: transform ease 0.2s;
    }

    .coworker-box .coworker-info-wrap figure {
        border: 1px solid transparent;
    }

    @media screen and (min-width: 768px) {

        .coworker-box.has-more-info:hover .coworker-main-image,
        .coworker-box.mi-box-open .coworker-main-image {
            transform: scale(0.9);
        }

        .coworker-box.has-more-info:hover .coworker-info-wrap figure,
        .coworker-box.mi-box-open .coworker-info-wrap figure {
            border: 1px solid #69b32e
        }
    }

    @media screen and (min-width: 1700px) {

        .coworker-box h3 {
            font-size: 1.625rem;
        }
    }

    .more-info-link {
        color: #69B32E;
        cursor: pointer;
        margin-top: 1em;
        font-weight: 500;
    }


    /* 
-----------------------------------------
subpage 
-----------------------------------------
*/
    #main-content .top-img {
        height: 350px;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

        #main-content .top-img .top-inner {
            position: absolute;
            background-color: rgba(0, 0, 0, .3);
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: end;
        }

    #main-content .top-txt {
        top: 146px;
        position: absolute;
        z-index: 2;
    }

        #main-content .top-txt h1, #main-content .top-txt p {
            color: #fff;
            padding: 0;
        }

    .subtop-txt {
        margin: 0 auto;
        width: 90%;
    }

    @media screen and (min-width: 770px) {
        .subtop-txt {
            margin: 0 auto;
            width: 75%;
        }
    }


    .subtop-txt p {
        text-align: center;
        max-width: 90ch;
        margin: 0 auto;
        font-weight: 500;
        font-size: 1.125rem;
    }


    #carouselCaptions {
        width: 100%;
        margin: 0 auto 4rem;
        max-width: 900px
    }

    .

    @media screen and (min-width: 770px) {
        #carouselCaptions {
        width: 70%;
        margin: 0 auto 4rem;
    }
}


    #carouselCaptions .carousel-inner {
        text-align: center;
        background-color: #F2F2F2;
        padding: 4rem;
    }

    #carouselCaptions .carousel-inner p {
        color: #fff;
    }

    #carouselCaptions .carousel-inner img {
        max-height: 450px;
    }
    #carouselCaptions .carousel-control-next-icon, #carouselCaptions .carousel-control-prev-icon {
        background-color: black;
    }



.carousel-caption {
    max-width: 350px;
    text-align: center;
    margin: 0 auto;
    background-color: #ffffff52;
    padding: 1rem;
}

#carouselCaptions .carousel-inner h3 {
    color: #fff;
    margin: 0;
}

 


@media screen and (min-width: 770px) {

    #carouselCaptions .carousel-inner h3 {
        margin-bottom: 0.5rem;
    }

}




#carouselCaptions .carousel-inner h3 {
    color: #fff;
}

#carouselCaptions .carousel-inner p {
    width: 300px;
    text-align: center;
    margin: 0 auto;
}

/* 
-----------------------------------------
footer 
-----------------------------------------
*/

footer p strong {
    font-weight: 900;
}
footer {
    padding-bottom: 2rem !important;
    background-color: #000 !important;
}

    footer h3, footer a, footer p {
        color: #fff !important;
    }

        footer a:hover {
            color: #BF3E13 !important;
        }

    footer svg {
        margin-right: 10px;
    }

    footer .sm-icons {
    }

        footer .sm-icons svg {
            margin-right: 5px;
        }

    footer .adressLink {
        margin-bottom: 10px;
    }

        footer .adressLink a {
            display: flex;
            align-items: center;
        }

        footer .adressLink p {
            margin: 0;
        }



    footer .col-12 {
        border-top: 1px solid #fff;
        padding-top: 1.5rem;
    }

@media screen and (min-width: 770px) {

    footer .col-12 {
        border-top: 0;
        padding-top: 0;
    }
}


.copyright {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding-bottom: 1rem;
}


.main-content svg {
    color: #9D8955;
}