* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
    text-transform: none;
    text-decoration: none;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    
}

html {
    scroll-behavior: smooth;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #181733;
    box-shadow: 0 5px 10px rgba(182, 4, 4, 0.842);
    padding: 0px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo {
    z-index: 1;
    height: 105px;
    width: 105px;
}

header .logoobrazek {
    z-index: 1;
    height: 7%;
    width: 7%;
    margin-left: 48%;

}

.logotext {
    font-weight: bolder;
    font-size: 25px;
    color: #333;
    margin-right: 70%;
}

header .navbar ul {
    list-style: none;
}

header .navbar ul li {
    position: relative;
    float: left;
}

header .navbar ul li a {
    font-size: 20px;
    padding: 20px;
    color: #FDC52C;
    display: block;
    font-weight: bolder;
}

header .navbar ul li a:hover {
    background: #FDC52C;
    color: #fff;
    transition-duration: 1s;
}

#menu-bar{
    display: none;
}

header label{
    font-size: 25px;
    color: #FDC52C;
    cursor: pointer;
    display: none;
    padding: 15px;
}

header label:hover{
    background: #FDC52C;
    color: #fff;
    transition-duration: 1s;
    
}

@media(max-width:991px){
    
    header{
        padding: 20px;
    }

    header label{
        display: initial;
    }

    header .navbar{
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #181733;
        border-top: 1px solid rgba(0, 0, 0,.1);
        display: none;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: #eee;
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }

    h1{
        padding-top: 40%;
    }

}

.testimonial {
    padding: 30px 100px;

}

article {

    margin-top: 10%;
}

article h1 {
    font-size: 50px;
    font-weight: 800;
    text-transform: none;
    margin-top: 10%;
    color: #181733;
    margin-left: 40%;
}

.fcb {
    height: 200px;
    width: 200px;
    margin-left: 41%;
}

article h2 {
    text-transform: none;
    font-size: 30px;
    margin-top: 30px;
    color: #181733;
    text-align: center;
    font-weight: bolder;
    padding-bottom: 30px;
    margin-left: 20%;
    margin-right: 20%;
}

.brankari {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 0.2fr;
    grid-gap: 10px;
    max-width: 1200px;
}

.brankari img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background-color: #181733;
    margin-top: 10%;
}

.footerContainer {
    width: 100%;
    padding: 25px 30px 20px;
}

.icon {
    display: flex;
    justify-content: center;
}

.icon a {
    text-decoration: none;
    padding: 10px;
    background-color: #181733;
    margin: 10px;
    border-radius: 50%;
}

.icon a i {
    font-size: 2em;
    color: #FDC52C;
    opacity: 0.9;
}

.icon a :hover {
    transition: 0.5s;
}

.icon a i:hover {
    color: #fff;
    transition: 0.5s;
}

.footerBottom {
    background-color: #181733;
    padding: 20px;
    text-align: center;
}

.footerBottom p {
    color: #FDC52C;
}