:root {
    /* --bg-color: #d6d6d6; */
    --detail-color: #1b1a1a;
    --detail2-color: #302e2e;

}

@font-face {
    font-family: "Hind-Light";
    src: url('font/Hind-Light.ttf') format('truetype');
}

@font-face {
    font-family: "Hind-Regular";
    src: url('font/Hind-Regular.ttf') format('truetype');
}

@font-face {
    font-family: "Hind-SemiBold";
    src: url('font/Hind-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: "Hind-Bold";
    src: url('font/Hind-Bold.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-Thin";
    src: url('font/libre-franklin.thin.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-ExtraLight";
    src: url('font/libre-franklin.extralight.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-Light";
    src: url('font/libre-franklin.light.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-Medium";
    src: url('font/libre-franklin.medium.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-SemiBold";
    src: url('font/libre-franklin.semibold.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-Bold";
    src: url('font/libre-franklin.bold.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-ExtraBold";
    src: url('font/libre-franklin.extrabold.ttf') format('truetype');
}

@font-face {
    font-family: "Libre-Black";
    src: url('font/libre-franklin.black.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind-Light' !important;
    /* position: fixed;
    width: 100%; */
}

::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--detail-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--detail2-color);
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

label {
    margin-bottom: 0 !important;
}

.navigation-header {
    background: var(--detail-color);
}
  
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--detail-color);
    color: #fff;
    margin-inline: auto;
    width: 60%;
}

.nav-links a {
    color: #fff;
}

.logo {
    background-image: url(ikony/logo.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 7em;
    height: 1.5em;
    font-size: 30px;
}

.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}

.menu li:hover {
    /* background-color: #2185d5; */
    /* border-radius: 5px; */
    border-bottom: 1.5px solid white;
}

.menu li {
    padding: 0px 15px;
    transition: 0.3s ease;
    border-bottom: 1.5px solid transparent;
    /* padding: 5px 14px; */
}

.services {
    position: relative;
}

.dropdown {
    background-color: #0e0e0ed4;
    padding: 1em 0;
    margin-left: -1em;
    position: absolute;
    display: none;
    border-radius: 5px;
    top: 24px;
    z-index: 500;
    backdrop-filter: blur(20px);
}

.dropdown li+li {
    margin-top: 10px;
}

.dropdown li {
    padding: 0.2em 1em;
    width: 9em;
    text-align: center;
}

.dropdown li:hover {
    background-color: var(--detail2-color);
}

.services:hover .dropdown {
    display: block;
}

input[type=checkbox] {
    display: none;
}

.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

.site-footer {
    background-color: var(--detail-color);
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #737373;
    margin-top: 8em;
}

.site-footer hr {
    border-top-color: #bbb;
    opacity: 0.5
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: #737373;
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d !important;
}

.copyright-text {
    margin: 0
}

/* @media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }

    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
} */

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #818a91;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    scale: 1.15;
    background-color: #3b5998 !important;
}


/* @media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
} */

.col-md-6 {
    margin-right: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

/* @media (min-width:576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container {
        max-width: 960px
    }
    
    .carousel__viewport {
        height: 550px;
    }
}

@media (min-width:1200px) {
    .container {
        max-width: 1140px
    }
    
    .carousel__viewport {
        height: 650px;
    }
}

@media (min-width:2000px) {
    .carousel__viewport {
        height: 850px;
    }
} */

.dropdown,
.dropleft,
.dropright,
.dropup {
    position: absolute !important;
}

dl,
ol,
ul {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

a {
    color: rgb(197, 197, 197) !important;
    text-decoration: none !important;
    background-color: transparent !important;
    transition: 0.2s;
}

a:hover {
    color: rgb(230, 230, 230) !important;
}

.current-page {
    color: rgb(255, 255, 255) !important;
}


.zoom-img {
    width: 300px;
    transition: 0.3s ease;
    cursor: pointer;
}

#zoomed-container {
    display: none;

    position: absolute;
    align-items: center;
    justify-content: center;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#zoomed-container img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px black;
    cursor: zoom-out;
}



@media (min-width: 480px) {}

@media (min-width: 768px) {
    .carousel {
        height: 400px;
    }

    .carousel__viewport {
        height: 400px;
    }

    .navbar {
        width: 100%;
    }
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

@media (min-width: 1600px) {}

@media (min-width: 2000px) {}


@media (max-width: 768px) {
    .carousel {
        height: 400px;
    }

    .carousel__viewport {
        height: 400px;
    }

    .menu {
        display: none;
        position: absolute;
        background-color: var(--detail-color);
        right: 0;
        left: 0;
        text-align: center;
        padding: 16px 0;
    }

    .menu li:hover {
        display: inline-block;
        background-color: var(--detail2-color);
        width: 100%;
        transition: 0.3s ease;
    }

    .menu li+li {
        margin-top: 12px;
    }

    input[type=checkbox]:checked~.menu {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }

    .dropdown li:hover {
        background-color: var(--detail2-color);
    }

    .navbar {
        width: 100%;
    }
}