@import url('https://fonts.cdnfonts.com/css/source-sans-pro');

body {
    font-family: 'Source Sans Pro', sans-serif;
}

p {
    line-height: 180% !important;
    color: rgba(0, 0, 0, .8);
    font-size: 12pt;
    font-weight: 400;
    line-height: 180% !important;
}

h2 {
    font-size: 2.50em !important;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-weight: 300;
    color: #2D2D2D;
}

ul {
    /* list-style-type: none; */
    padding-left: 16px;
}

/* ul li::before {
    content: "- ";
    margin-right: 8px;
} */

/* Header/Navbar */
.header-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 50vh;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px 20px 0px 20px;
}

.logo {
    max-width: 400px;
    height: auto;
}

@media only screen and (max-width: 768px) {
    .logo {
        max-width: 300px;
    }
}

.navbar-container {
    width: 100%;
}

.navbar {
    width: 100%;
    background-color: #113D88;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.5);
}

.navbar .nav-link.active {
    color: #fff;
}

/* Cards */
.card {
    border: none;
    width: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 0 !important;
}

.card:hover {
    transform: scale(1.01);
    background-color: #113d8827;
}

.card-img-top {
    border-radius: 0 !important;
}

.card-body {
    padding: 16px;
}

/* Footer */
.footer {
    background-color: #113D88;
    text-align: center;
    padding: 40px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
    color: #fff !important;
}

/* About */

.about-img {
    margin-right: 15px;
    margin-bottom: 15px;
}

.about p {
    color: rgba(0, 0, 0, .8);
    font-size: 12pt;
    font-weight: 400;
    line-height: 180% !important;
}

@media only screen and (max-width: 768px) {
    .about-img {
        float: none !important;
        width: 100%;
    }
}

/* 
.about h2 {
    font-size: 2.50em;
    text-transform: uppercase;
    font-weight: 300;
    color: #2D2D2D;
} */


/* Procesna oprema */

.procesna-oprema h2 {
    font-size: 32px !important;
}

.procesna-oprema .subtitle {
    margin-bottom: 32px;
}

.procesna-oprema h4 {
    margin-bottom: 32px;
    font-size: 1.5em;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
}

/* Kontakt */
.fa-xl {
    width: 24px;
    margin-right: 10px;
}

.kontakt-submit {
    background-color: #113D88 !important;
    color: #fff;
}

@media only screen and (max-width:767px) {
    .navbar-desktop {
        display: none;
    }
}

/* Hamburger mmenu */
legend,
label,
input,
ul,
li {
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

.input-toggler {
    display: none;
}

.menu-toggler {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 55px;
    height: 60px;
    background: #fff;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer
}

@media only screen and (min-width: 768px) {
    .menu-toggler {
        display: none;
    }
}

.menu-toggler-line {
    width: 60%;
    height: 3px;
    background: #113D88;
    margin: 0 0 5px 0px;
    position: relative;
    transition: all .40s ease-out;
}

.input-toggler:checked~.menu-toggler .menu-toggler-line {
    top: 5px;
    translateY: 100px;
    transform: rotate(45deg);
}

.input-toggler:checked~.menu-toggler .menu-toggler-line:nth-child(2) {
    display: none;
}

.input-toggler:checked~.menu-toggler .menu-toggler-line:nth-child(3) {
    top: -5px;
    translateY: 10;
    transform: rotate(135deg);
}

.nav {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.nav ul {
    width: 100%;
}

.nav ul li {
    width: 100%;
    text-align: center;
}

.nav ul li a {
    display: inline-block;
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
}

.sidebar {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    background: #fff;
    opacity: 0.5;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: all .40s ease-out;
}

.menu {
    text-align: center;
}

.menu-link {
    color: #113D88;
    font-size: 7vmin;
    line-height: 12vmin;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

.menu-link.active {
    background-color: #113D88;
    color: #fff;
    padding: 10px;
}

.sidebar .menu li {
    margin-bottom: 15px;
}

.menu-link:hover,
.menu-link:focus,
.menu-link:active {
    color: #113D88;
}

.input-toggler:checked~.sidebar {
    transform: translateX(0%);
    opacity: .98;
}

@media only screen and (max-width: 450px) {
    .logo {
        max-width: 250px;
    }

    .menu-toggler {
        width: 46px;
        height: 50px;
    }
}

@media only screen and (max-width: 345px) {
    .logo {
        max-width: 220px;
    }

    .menu-toggler {
        width: 44px;
        height: 44px;
    }
}


.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* Omjer 16:9 za iframe */
    height: 0;
    overflow: hidden;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}