/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: "Work Sans", sans-serif;
    color: #444444;
}

a {
    color: #bd9f57;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Work Sans", sans-serif;
}

.font-title {
    font-family: Ubuntu, sans-serif;
    margin-bottom: 2rem;
    font-weight: 400;
    color: #bd9f57;
    font-size: 32px;

}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #bd9f57;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #bd9f57;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 90px;
    transition: all 0.5s;
    z-index: 997;
    background: #333333;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: white;
    text-decoration: none;
}

#header .logo img {
    max-height: 30px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: Work Sans, sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: white;
    white-space: nowrap;
    transition: 0.3s;

}

.navbar a i,
.navbar a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #bd9f57;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #333333;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    font-weight: 100;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: white;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #bd9f57;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #ffffff;
}

@media (max-width: 992px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(33, 38, 42, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .logo {
    height: 100px;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #333333;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #ffffff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #bd9f57;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #333333;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #bd9f57;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 120vh;
    background: url("../img/presence-of-bhmpaarks-in-europe.jpg") center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

#hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            to bottom right, /* Updated to control gradient direction */ rgba(255, 255, 255, 1), /* Fully white */ rgba(255, 255, 255, 0.9), /* Slightly transparent */ rgba(255, 255, 255, 0.8), /* More transparent */ rgba(255, 255, 255, 0.7), /* More transparent */ rgba(255, 255, 255, 0), /* More transparent */ rgba(255, 255, 255, 0), /* More transparent */ rgba(255, 255, 255, 0.2), /* More transparent */ rgba(255, 255, 255, 0.4), /* More transparent */ rgba(255, 255, 255, 0.8), /* Slightly transparent */ rgba(255, 255, 255, 1) /* Fully white */
    );
}

#hero .container {
    z-index: 2;
}

#hero h1 {
    margin: -15% 0 10% 30px;
    font-family: Ubuntu, sans-serif;
    font-size: 4vw;
    font-weight: 500;
    color: #bd9f57;
    line-height: 1;
}

@media screen and (min-width: 1800px) {
    #hero h1 {
        font-size: 4vw;
        margin: -30% 0 10% 5%;
    }
}

#hero h1 span {
    border-bottom: 2px solid #ffffff;
}

#hero .btn-get-started {
    font-family: Ubuntu, sans-serif;
    font-weight: 400;
    font-size: 0.5vw;
    letter-spacing: 0.2vw;
    display: inline-block;
    padding: 1vw 3vw;
    border-radius: 0.4vw;
    transition: ease-in-out 0.3s;
    color: #fff;
    background: #333333;
    text-transform: uppercase;
}

@media screen and (min-width: 1200px) {
    #hero .btn-get-started {
        font-size: 1vw;
        padding: 1vw 1vw;
    }
}

#hero .btn-get-started:hover {
    background: #ffffff;
    color: #333333;
}


@media (max-width: 1200px) {
    #hero {
        height: calc(120vh - 3vh);
    }

    #hero h1 {
        margin: -15% 0 10% 30px;
    }

    #hero .btn-get-started {
        font-size: 1vw;
        padding: 1vw 1vw;
    }
}


@media (max-width: 992px) {
    #hero {
        height: calc(120vh - 3vh);
    }

    #hero h1 {
        margin: 10%;
    }

    #hero .btn-get-started {
        font-size: 1vw;
        padding: 1vw 1vw;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 9vw;
        margin: -80% 0 10% 30px;
    }

    #hero .btn-get-started {
        font-size: 4vw;
        padding: 2vw 4vw;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #fdfcf9;
}

.section-bg-grey {
    background-color: #f3f4f5;
}

.section-bg-gold {
    background-color: #fcfbf6;
}

.section-top {
    margin-top: 90px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #3498db;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*!*TODO*! does nothing*/
@media (max-width: 992px) {
    .section {
        padding: 80px 0;
        background-color: deeppink;
    }
}

/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.news .icon-box {
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    transition: ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.news .icon-box img {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 15px;
}

.news .icon-box .icon-content {
    text-align: left;
}

.news .icon-box h4 {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: Ubuntu, sans-serif;
}

.news .icon-box h4 a {
    color: #364f48;
    transition: 0.3s ease;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
}

.news .icon-box p {
    line-height: 24px;
    font-size: 14px;
    font-weight: 300;
}


.news .icon-box:hover {
    box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px) scale(1.05);
}

.news .icon-box:hover h4 a {
    color: #bd9f57;
    font-family: Ubuntu, sans-serif;
}

.btn-read-more {
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 2px;
    transition: ease-in-out 0.3s;
    color: #fff;
    background: #bd9f57;
    text-transform: uppercase;
}

.btn-read-more:hover {
    background: #333333;
    color: white;
}


.news h3 {
    font-weight: 400;
    color: #bd9f57;
    font-size: 32px;
}

.key-takeaways-title,
.key-takeaways-list {
    font-size: 16px;
}

@media (max-width: 992px) {
    .news h1 {
        font-size: 32px;
        line-height: 36px;
    }


    .news .icon-box img {
        max-width: 100%;
        height: 200px;
        object-fit: cover;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .news h1 {
        font-size: 32px;
        line-height: 36px;
    }
}

.btn-download {
    font-family: Ubuntu, sans-serif;
    font-weight: 300;
    font-size: 16px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 5px;
    transition: ease-in-out 0.3s;
    background: #333333;
}

.btn-download a {
    color: white;
}

.btn-download:hover {
    background: white;
}

.btn-download:hover a {
    color: #333333;
}

.share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 15px;
}

.share-buttons a {
    text-decoration: none;
    color: inherit;
}

.share-buttons i {
    font-size: 24px;
    color: #bd9f57;
    transition: color 0.3s;
}

.share-buttons i:hover {
    color: #333333;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 10px 0;
    background-color: #ffffff;
}

.about h3 {
    font-weight: 400;
    color: #bd9f57;
    font-size: 32px;
    /*text-align: center;*/
}

.about p {
    font-weight: 300;
    line-height: 1.5;
    /*text-align: center;*/
}

/*.about-bhmgroup {*/
/*    padding: 10px 0;*/
/*    background-color: #f0f1f2;*/
/*}*/

.about-bhmgroup h3 {
    font-weight: 400;
    color: #bd9f57;
    font-size: 32px;
    /*text-align: center;*/
}

.about-bhmgroup p {
    font-weight: 300;
    line-height: 1.5;
    /*text-align: center;*/
}

.quote {
    font-style: italic;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

#services {
    width: 100%;
    height: 70vh;
    background: url("../img/industrial-construction-service.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#services:before {
    content: "";
    background: rgba(243, 244, 245, 0.3);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#services h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;
}

.services-section {
    padding: 40px 0;
}

.service-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-icon {
    margin-right: 30px;
}

.service-details {
    flex: 1;
}

h2 {
    color: #bd9f57;
    font-size: 32px;
    font-family: 'Ubuntu', sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

p {
    font-size: 16px;
    line-height: 1.6;
}

@media only screen and (max-width: 768px) {
    #services h1 {
        font-size: 32px;
    }

    .service-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .service-icon {
        margin: 0 0 10px 0;
    }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
    padding: 60px 0;
}

#portfolio-flters {
    padding: 0;
    margin: 0 0 35px 0;
    list-style: none;
    text-align: center;
}

#portfolio-flters li {
    cursor: pointer;
    margin: 0 15px 15px 0;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    line-height: 20px;
    color: #444444;
    border-radius: 4px;
    text-transform: uppercase;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
    background: #444444;
    color: #fff;
}

#portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio-detail figure:hover img {
    opacity: 0.6;
    transition: 0.4s;
}


.portfolio-wrap {
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.portfolio-wrap:hover {
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

.portfolio-wrap img {
    max-width: 100%;
    height: auto;
}

.portfolio-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(50% - 15px);
    transition: all 0s ease-in-out;
}

.portfolio-item figure {
    background: white;
    overflow: hidden;
    position: relative;
    border-radius: 4px 4px 0 0;
    margin: 0;
}

.portfolio-item figure:hover img {
    opacity: 0.4;
    transition: 0.4s;
}

.portfolio-item figure .link-preview,
.portfolio-item figure .link-details {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    line-height: 0;
    text-align: center;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.2s linear;
    overflow: hidden;
    font-size: 20px;
}

.portfolio-item.col-lg-6,
.portfolio-item.col-md-6 {
    height: 600px;
}

.portfolio-item.col-lg-12,
.portfolio-item.col-md-12 {
    height: 600px;
    width: auto;
}

.portfolio-item figure .link-preview i,
.portfolio-item figure .link-details i {
    color: #384046;
    line-height: 0;
}


.portfolio-item .portfolio-info {
    background: #fcfbf6;
    text-align: center;
    padding: 30px;
    height: 300px;
    border-radius: 0 0 3px 3px;
}

.portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 0;
}

.portfolio-item .portfolio-info h4 a {
    color: #333;
}

.portfolio-item .portfolio-info p {
    padding: 0;
    margin: 0;
    color: #b8b8b8;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-detail .info i {
    font-size: 18px;
    color: #ffffff;
    width: 33px;
    height: 33px;
    background: #bd9f57;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.portfolio-detail .info h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #333333;
    margin-top: 5px;
}

@media (min-width: 768px) and (max-width: 992px) {
    .portfolio-detail .info .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .portfolio-detail .info .d-flex > div {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 10px;
    }

    .portfolio-detail .info .d-flex {
        margin: 0 auto; /* Center the entire d-flex container */
    }
}


@media (max-width: 768px) {
    .portfolio-detail .info .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .portfolio-detail .info .d-flex > div {
        margin-bottom: 10px;
    }
}

.icon-card {
    border: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    width: calc(12.5% - 20px);
    margin-right: 10px;
}

.card-text {
    font-size: 14px;
}


@media (min-width: 1200px) {
    /* 4 icons per row on medium screens */
    .icon-card {
        width: 10%;
    }
}

@media (min-width: 576px) {
    /* 2 icons per row on small screens */
    .icon-card {
        width: 50%;
    }
}

@media (min-width: 768px) {
    /* 4 icons per row on medium screens */
    .icon-card {
        width: 25%;
    }
}

@media (min-width: 992px) {
    /* 4 icons per row on large screens */
    .icon-card {
        width: 25%;
    }
}

/*--------------------------------------------------------------
# DUNAJSKA STREDA
--------------------------------------------------------------*/
#portfolio-detail-ds {
    width: 100%;
    height: 70vh;
    background: url("../img/portfolio/dunajskastreda/logistics-park-dunajskastreda.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#portfolio-detail-ds:before {
    content: "";
    background: rgba(243, 244, 245, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#portfolio-detail-ds h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;

}

@media (max-width: 992px) {
    #portfolio-detail-ds h1 {
        font-size: 42px;
    }
}

/*--------------------------------------------------------------
# TRENCIN
--------------------------------------------------------------*/

#portfolio-detail-trencin {
    width: 100%;
    height: 70vh;
    background: url("../img/portfolio/trencin/industrial-park-trencin.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#portfolio-detail-trencin:before {
    content: "";
    background: rgba(243, 244, 245, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#portfolio-detail-trencin h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;
}


@media (max-width: 992px) {
    #portfolio-detail-trencin h1 {
        font-size: 48px;
    }
}

/*--------------------------------------------------------------
# ZAGREB
--------------------------------------------------------------*/
#portfolio-detail-zagreb {
    width: 100%;
    height: 70vh;
    /*background: url("../img/construction2.jpeg") center center;*/
    background: url("../img/portfolio/zagreb/industrial-park-zagreb.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#portfolio-detail-zagreb:before {
    content: "";
    background: rgba(243, 244, 245, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#portfolio-detail-zagreb h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;
}


@media (max-width: 992px) {
    #portfolio-detail-zagreb h1 {
        font-size: 48px;
    }
}


/*--------------------------------------------------------------
# KOPER
--------------------------------------------------------------*/
#portfolio-detail-koper {
    width: 100%;
    height: 70vh;
    background: url("../img/portfolio/koper/industrial-park-koper.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#portfolio-detail-koper:before {
    content: "";
    background: rgba(243, 244, 245, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#portfolio-detail-koper h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;
}

@media (max-width: 992px) {
    #portfolio-detail-koper h1 {
        font-size: 48px;
    }
}


/*--------------------------------------------------------------
# MARIBOR
--------------------------------------------------------------*/
#portfolio-detail-maribor {
    width: 100%;
    height: 70vh;
    background: url("../img/portfolio/maribor/logistics-park-maribor.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#portfolio-detail-maribor:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#portfolio-detail-maribor h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;
}

@media (max-width: 992px) {
    #portfolio-detail-maribor h1 {
        font-size: 48px;
    }
}

/*--------------------------------------------------------------
# BELGRADE
--------------------------------------------------------------*/
#portfolio-detail-belgrade {
    width: 100%;
    height: 70vh;
    background: url("../img/portfolio/belgrade/industrial-park-belgrade.jpeg") center center;
    background-size: cover;
    position: relative;
    padding: 0;
}

#portfolio-detail-belgrade:before {
    content: "";
    background: rgba(243, 244, 245, 0.1);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}


#portfolio-detail-belgrade h1 {
    font-size: 64px;
    margin: 0 0 10px 0;
    font-family: Ubuntu, sans-serif;
    font-weight: 500;
    line-height: 100px;
    color: white;
    text-shadow: 1px 1px #333333;
}

@media (max-width: 992px) {
    #portfolio-detail-belgrade h1 {
        font-size: 48px;
    }
}


@media (min-width: 992px) {
    .border-gold {
        border-right: 2px solid #bd9f57;
    }
}

p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
}


@media only screen and (max-width: 992px) {
    .contact-person {
        text-align: center;

    }

    .contact-person h2 {
        padding-top: 20px;
        font-size: 28px;
    }

}

.custom-card {
    /*width: 15rem*/
    width: 20%;
    margin: 10px 10px;
    background-color: #333333;
}


@media (max-width: 1200px) {
    .custom-card {
        width: 40%;
    }
}

@media (max-width: 992px) {
    .custom-card {
        width: 60%;
    }
}

.custom-card img {
    background-color: #333333;
    padding-top: 20px;
    max-height: 80px;
    width: 100%;
}

.custom-card .card-text {
    color: #f3f4f5;
}

.contact-person-image {
    max-width: 60%;
    height: auto;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.background-image-container {
    height: 60vh;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left;
}

@media (max-width: 768px) {
    .background-image-container {
        height: 40vh;
    }
}

.custom-background {
    background-image: url('../img/contact.jpeg');
}


.contact .info-wrap {
    padding: 30px;
    background: #f3f4f5;
    border-radius: 800px;
}

.contact .info i {
    font-size: 20px;
    color: #ffffff;
    float: left;
    width: 44px;
    height: 44px;
    background: #bd9f57;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333333;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 18px;
    color: #444444;
}

.contact .info:hover i {
    background: #333333;
    color: #ffffff;
}


/*--------------------------------------------------------------
# News post
--------------------------------------------------------------*/
.news-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.source-wrapper {
    width: 80%;
    text-align: left;
}

.image {
    width: 80%;
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.title {
    color: #bd9f57;
    text-align: center;
    font-size: 52px;
    margin-left: 10rem;
    margin-right: 10rem;
    margin-top: 3rem;

}

.meta {
    color: #333333;
    font-size: 16px;
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}


@media (max-width: 992px) {
    .title {
        font-size: 36px;
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: 1rem;
    }

    .meta {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.content {
    font-size: 18px;
    font-weight: 300;
    line-height: 2;
    text-align: justify;
    width: 80%;
    margin: 5% auto;
    color: #333333;
}


.custom-big img {
    max-width: 80%;
    max-height: 80%;
}

.custom-size img {
    max-width: 70%;
    max-height: 70%;
}

.custom-small img {
    max-width: 50%;
    max-height: 50%;
}


.carousel-control-prev, .carousel-control-next {
    font-size: 30px;
    color: #000;
    background-color: #bd9f57;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    line-height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.carousel-control-prev:hover, .carousel-control-next:hover {
    color: #333333;
    background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }

    .carousel-control-prev {
        width: 40px;
        height: 40px;
    }


    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

.carousel-control-prev {
    left: -5%;
}

.carousel-control-next {
    right: -5%;
}

@media (max-width: 768px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(50%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-50%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #ffffff;
    font-size: 16px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
}

#footer .logo img {
    max-height: 20px;
}

#footer .custom-margin {
    margin-top: -4px;
}

#footer .logo span {
    font-size: 16px;
    font-weight: 300;
}

#footer .social-links {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #bd9f57;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 10px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: #ffffff;
    color: #bd9f57;
    text-decoration: none;
}








/* Language Switcher */
.language-switcher .bi-globe {
    margin-right: 5px;
    /*margin-left: 100px;*/
}

.language-switcher .dropdown-menu {
    min-width: 120px;
}

/* Mobile version */
@media (max-width: 991px) {
    .language-switcher {
        padding: 10px 20px;
    }

    .language-switcher > a {
        display: flex;
        align-items: center;
    }

    .language-switcher .dropdown-menu {
        position: static;
        float: none;
        border: none;
        box-shadow: none;
    }
}