/* @font-face {
    font-family: 'Stem-Regular';
    src: url('../fonts/stem/Stem-Regular.woff') format('woff');
} */

@font-face {
    font-family: 'Stem';
    src: url('../fonts/stem/Stem-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Stem';
    src: url('../fonts/stem/Stem-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Stem';
    src: url('../fonts/stem/Stem-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Stem';
    src: url('../fonts/stem/Stem-Bold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}





:root {
    --color-primary: #fdce0e;
    --color-primary-alt: #fdce0e30;
    --color-secondary: #17181a;
    --color-secondary-opacity: #17181af5;
    --color-secondary-alt: #30313390;
    --color-secondary-rgb: 23, 24, 26;
    --color-secondary-fix: #2D2D2F;
    --color-text: #fff;

    --border-radius: 0.4rem;
}

/**
* Global styles
**/

* {
    font-family: 'Stem', sans-serif !important;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.05rem;
}

a {
    text-decoration: none;
}

p {
    font-size: 1rem !important;
}

.title-h1 {
    font-weight: 600;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-transform: uppercase;
    border-left: 0.2rem solid var(--color-primary);
    padding-left: 2rem;
    padding-bottom: 0.5rem;
    color: var(--color-text);
    font-size: 2.1rem;
}

.title-h1 span {
    text-transform: uppercase;
}

.section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.link-a {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-a img {
    margin-bottom: -3px;
}

/**
* Menu Desktop
*/

.d-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.d-menu-first {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-text);
    transition: linear 0.2s;
}

.d-menu-logo {
    width: 15rem;
    display: flex;
    align-items: center;
}

.d-menu-scroll {
    background-color: var(--color-secondary-opacity);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.d-menu-scroll .d-menu-logo {
    width: 10rem;
}

.d-menu-scroll .d-menu-first {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.d-menu-scroll .d-menu-second {
    padding-top: 0.3rem;
}

.d-menu-logo img {
    width: 100%;
}

.d-menu-separator {
    height: 20px;
    width: 1px;
    background-color: var(--color-text);
}

.d-menu-link {
    color: var(--color-text);
    transition: linear .2s;
    text-shadow: 2px 0 2px rgba(0, 0, 0, 0.2);
    padding: 10px;
    font-weight: 300;
    font-size: 1rem;
}

.d-menu-link:hover,
.d-menu-second .d-menu-link:hover {
    color: var(--color-primary);
}

.d-menu-second .d-menu-link {
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 600;
}

.d-menu-second .d-menu-link:first-child {
    padding-left: 0;
}

.d-menu-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.d-menu-location-list button {
    background: transparent;
    border: none;
    outline: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.d-menu-second {
    display: flex;
    gap: 3rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

/**
* Menu Mobile
*/

.m-menu {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--color-secondary);
}

.m-menu-options {
    background-color: transparent;
    border: none;
    outline: 0;
}

.m-menu-first {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-menu-link-logo {
    width: 12rem;
}

.m-menu-link-logo img {
    width: 100%;
}

.offcanvas {
    background-color: var(--color-secondary);
}

.offcanvas-body {
    padding: 1rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offcanvas .offcanvas-header {
    margin-top: 25px;
    padding-right: 25px;
}
.offcanvas .offcanvas-header button {
    filter: brightness(0) saturate(100%) invert(94%) sepia(16%) saturate(7252%) hue-rotate(346deg) brightness(103%) contrast(104%);
    opacity: 1;
}

.m-menu-links {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.m-menu-links a {
    color: var(--color-text) !important;
    padding: 20px;
    border-bottom: 2px solid var(--color-secondary-fix);
}

.m-menu-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/**
* Banner Slide
*/

.banner {
    position: relative;
}

.carousel-item img.d-block {
    height: 100%;
    object-fit: cover;
}

.banner-separator {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 99;
}

.banner-separator a {
    margin-top: -40px;
    padding: 10px 20px;
}

.banner-logo-floating {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 29%;
    z-index: 99;
}

.banner-logo-floating a {
    width: 100px;
    height: 100px;
    background-image: url(../images/logo-icon-1.png);
    background-size: 100%;
    background-repeat: no-repeat;
    transition: linear 0.2s;
}

.banner-logo-floating a:hover {
    background-image: url(../images/logo-icon-2.png);
}

.banner-img-fixed {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

/**
* About
*/

.about {
    background-color: var(--color-secondary);
    color: var(--color-text);
}

.about p {
    margin-top: 3rem;
    font-weight: 300;
}

.about-row {
    gap: 2rem;
    flex-wrap: nowrap;
}

.about-col {
    background-color: var(--color-secondary-alt);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-col strong {
    font-size: 1.8rem;
    font-weight: 600;
}

.about-col span {
    font-size: 0.9rem;
    font-weight: 300;
}

.about-col strong::after {
    content: "";
    display: block;
    border-bottom: 0.17rem solid var(--color-primary);
    width: 1rem;
    padding-bottom: 1rem;
}

.link-a img {
    transition: 0.5s;
}
.link-a:hover img {
    margin-left: 20px;
    transition: 0.5s;
}

.aboutn-suspended-img {
    display: flex;
    justify-content: center;
    margin-top: -200px;
    margin-bottom: 4rem;
}

.aboutn-suspended-img img {
    z-index: 9;
}

/**
* Ecology
*/

.ecology {
    background-image: url('../images/ecology-background.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ecology .ecology-container-left .col {
    width: 50%;
}

.ecology-box {
    background-color: var(--color-secondary-alt);
    backdrop-filter: blur(0.5rem);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    height: 100%;
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
}
.ecology-box:has(a:hover) {
    outline: 1px solid var(--color-primary);
    /* outline: 1px solid #fff; */
    backdrop-filter: blur(0.0rem);
    transition: 0.5s;
}

.ecology-box h2 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 28px;
}

.ecology-space {
    margin-top: 1.5rem;
}

.ecology .link-a {
    font-size: 1rem;
    font-weight: 400;
}

.ecology .link-a img {
    width: 1rem;
}

.ecology p {
    color: var(--color-text);
    font-weight: 300;
}

.ecology-types {
    display: flex;
    justify-content: space-between;
}

.ecology-types div img {
    width: 80%;
    transition: 0.5s;
}
.ecology-types div img:hover {
    scale: 1.4;
    transition: 0.5s;
}

.ecology-p {
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.ecology-p br {
    content: " ";
    display: block;
    margin: 0.5rem 0;
}

/**
* News
*/

.news {
    background-color: var(--color-secondary);
}

.news-card {
    background-color: var(--color-secondary-alt);
    border-radius: var(--border-radius);
    padding: 1.7rem 1.5rem;
    margin-bottom: 1rem;
}

.new-card-text {
    color: var(--color-text);
    margin-top: 1rem;
    display: -webkit-box;

    /* Limit text */
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content {
    margin-top: 2rem;
}

.new-card-img {
    position: relative;
}

.new-card-img a:first-child {
    padding: 3px 6px 6px 5px;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: var(--color-secondary-alt);
    border-radius: var(--border-radius);
    transition: linear 0.2s;
}

.new-card-img a:first-child:hover {
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
}

.new-card-img img:last-child {
    width: 100%;
    border-radius: var(--border-radius);
}

/**
* Footer
*/

.footer {
    background-color: var(--color-secondary);
    background-image: url('../images/highlights-bg.png');
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-highlights {
    height: 11rem;
    display: flex;
    align-items: center;
}

.footer-highlights-single {
    display: flex;
    align-items: center;
    gap: 1rem
}

.footer-highlights-single img {
    width: 8rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links a:first-child,
.footer-links a:last-child {
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    width: fit-content;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-links a:first-child {
    background-color: var(--color-primary-alt);
    color: var(--color-primary);
}

.footer-links a:last-child {
    background-color: var(--color-secondary-fix);
    color: var(--color-text);
}

.footer-content-left {
    padding-top: 4rem;
}

.footer .title-h3 {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-size: 2.1rem;
    padding-top: 10px;
}

.footer a,
.footer a:hover {
    transition: 0.3s;
}
.footer a:hover {
    scale: 1.1;
}

.footer-img-suspended {
    display: flex;
    justify-content: end;
    margin-top: -4.3rem;
    margin-right: 0;
}

.footer-img-suspended img {
    width: 12rem;
}

.footer-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-contact a {
    color: var(--color-text);
    display: flex;
    gap: 0.5rem;
}

.footer-links-contact a:nth-child(1),
.footer-links-contact a:nth-child(2) {
    align-items: center;
}

.footer-links-contact a div {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links-contact a span {
    font-size: 1rem;
}

.footer-content {
    padding-bottom: 4rem;
}

.sub-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid var(--color-secondary-fix);
}

.sub-footer a,
.sub-footer span {
    color: var(--color-text);
}

.sub-footer div:first-child {
    display: flex;
    align-items: center;
    gap: 0.8rem ;
}

.sub-footer div:first-child span {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: 300;
}

.sub-footer div:first-child a {
    background-color: var(--color-primary);
    width: 1.8rem;
    height: 1.8rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-footer div:first-child a img {
    width: 60%;
}

.sub-footer div:last-child a img {
    width: 80%;
}

.footer-links-contact-group {
    display: flex;
    align-items: end;
}

@media (min-width: 1400px) {
    .about-content {
        padding-right: 10rem;
    }
}

@media (min-width: 992px) {
    .offcanvas,
    .offcanvas-backdrop {
        display: none;
    }

    .m-menu {
        display: none;
    }

    .carousel-item {
        height: 90vh;
    }

    /* .carousel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99;
        background-color: rgba(0, 0, 0, 0.2);
    } */
    
    .carousel-control-prev,
    .carousel-control-next {
        z-index: 100;
        width: 50px;
        margin: 50px;
    }

    .about-content {
        padding-right: 9rem;
    }

    .about .link-a {
        margin-top: 60px;
        font-weight: 400;
    }
    
    .about .link-a img {
        width: 1rem;
    }

    .ecology-container-left {
        /* padding-right: 4rem; */
    }

    .ecology .ecology-container-right {
        padding-left: 9rem;
    }

}

@media (max-width: 1199.98px) {
    .carousel-item {
        height: 70vh;
    }

    .banner-logo-floating {
        bottom: 20%;
    }
    
    .banner-logo-floating a {
        width: 70px;
        height: 70px;
    }

    .aboutn-suspended-img img {
        width: 80%;
    }

    .title-h1 {
        font-size: 2rem;
    }

    .about-col strong {
        font-size: 1rem;
    }

    .about-col {
        padding: 0.5rem;
    }

    .aboutn-suspended-img {
        margin-top: -150px;
    }

    .about p {
        font-size: 0.8rem;
    }

    .about .link-a {
        margin-top: -1rem;
    }

    .ecology .link-a {
        font-size: 0.7rem;
    }

    .ecology-box {
        padding: 1rem;
        transition: 0.5s;
    }

    .footer-highlights {
        height: 6rem;
        display: flex;
        align-items: center;
    }

    .footer-highlights-single img {
        width: 6rem;
    }
}

@media (max-width: 991.98px) {
    .d-menu {
        display: none;
    }

    .m-menu {
        display: block;
    }

    .offcanvas-end {
        width: 300px !important;
    }

    .carousel-item {
        height: 50vh;
    }

    .banner-separator {
        display: none;
    }

    .banner-logo-floating {
        bottom: -30px;
    }
    
    .banner-logo-floating a {
        width: 60px;
        height: 60px;
    }

    .about-row {
        flex-direction: column;
        padding-left: 4rem;
    }

    .aboutn-suspended-img {
        justify-content: end;
    }

    .about-col {
        padding: 1rem;
    }

    .about .link-a {
        margin-top: 2rem;
    }

    .section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-row {
        gap: 1rem;
    }

    .footer-highlights {
        height: 4.5rem;
        display: flex;
        align-items: center;
    }

    .footer-highlights-single img {
        width: 6rem;
    }
}

@media (max-width: 767.98px) {
    .carousel-item {
        height: 40vh;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 20px;
    }

    .about-row {
        margin-top: 40px;
    }

    .ecology-box h2 {
        font-size: 15px;
    }

    .footer .title-h3 {
        font-size: 1.5rem;
    }

    .footer {
        background-image: none;
    }

    .footer-highlights {
        background-color: var(--color-text);
    }

    .footer-highlights-single {
        justify-content: space-evenly;
    }

    .footer-links-contact {
        margin-top: 2rem;
    }

    .footer-content {
        padding-bottom: 2rem;
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 30vh;
    }

    .banner-img-fixed {
        position: absolute;
        bottom: -10px;
    }

    .aboutn-suspended-img {
        display: none;
    }

    .about-row {
        flex-direction: column;
        padding: inherit;
    }

    .title-h1 {
        padding-left: 1.5rem;
    }

    .title-h1 {
        font-size: 1.5rem;
    }

    .about p {
        font-size: 0.9rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .about-col strong::after {
        width: 2rem;
    }

    .about-row {
        flex-direction: row;
        gap: 0.8rem;
    }

    .about-col strong {
        font-size: 0.8rem;
    }

    .about-col span {
        font-size: 0.7rem;
    }

    .link-a {
        font-size: 0.8rem;
    }

    .ecology-container-left {
        order: 2;
        margin-top: 3rem;
    }

    .sub-footer {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .ecology-box p {
        font-size: 0.8rem;
    }
}

@media (max-width: 350px) {
    .banner-logo-floating {
        bottom: -20px;
    }
    
    .banner-logo-floating a {
        width: 40px;
        height: 40px;
    }

    .about-row {
        flex-direction: column;
    }

    .footer-highlights-single img {
        width: 5rem;
    }

    .title-h1 {
        font-size: 1.3rem;
    }

    .footer-links a:first-child,
    .footer-links a:last-child {
        font-size: 0.75rem;
    }
}