* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: #0d0b07;
}

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

header .logo {
    z-index: 1;
    height: 8%;
    width: 8%;
    
}


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

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

header .navbar ul li a {
    font-size: 140%;
    padding: 20px;
    color: #fff;
    display: block;
    
}

header .navbar ul li a:hover {
    color: #e97c18;
    transition-duration: 0.5s;
}

#menu-bar{
    display: none;
}

.wrapper{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(bar.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
    background-position: center;
    background-color: #0D0B07;
}
    
.testimonial {
    padding: 30px 100px;
}


article .hlavni1 {
    font-size: 1750%;
    font-weight: 800;
    text-transform: none;
    margin-top: 16%;
    color: rgba(255, 255, 255, 0.671);
    text-align: center;
    font-weight: 600;
    margin-bottom: 9%;
}



.projekty{
    width: 100%;
    background-color: #0d0b07;
    height: 100%;
}

.best{
    margin-top: 11%;
    color: #fff;
    padding-top: 120px;
    text-align: center;
}

.container{
    display: flex;
    background-color: #0D0B07;
}

.section1{
    background-color: #421808;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    width: 70%;
    margin-top: 50px;
    text-align: center;
    margin-left: auto ;
    margin-right: auto;
}

.section1 img{
    height: 20rem;
    width: 35rem;
}

.section1 h1{
    color:#e97c18 ;
}

.section1 hr{
    width: 40%;
    margin-bottom: 10px;
    height: 1.5%;
    background-color: #0D0B07;
    border:#e97c18;
    text-align: center;
    margin-left: auto ;
    margin-right: auto;
}

.section1 p{
    color: #fff;
    padding-right: 20px;
}

.cara2{
    margin-top: 30px;
    box-shadow: 0 8px 10px #e97c18;
}

.infokontakt{
    padding-top: 5%;
    color: #fff;
    text-align: center;
}

.contact-info{
    width: 100%;
    align-items: center;
    padding: 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
}

.card{
    background:#421808;
    padding: 0 20px;
    margin: 0 10px;
    width: calc(33% - 20px);
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #0D0B07;
    cursor: pointer;
    border-radius: 15%;
}


.card-icon{
    size: 40px;
    background-color: #e97c18;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px !important;
    border-radius: 50%;
    transform: 0.3s linear;
}

.card.card:hover{
    background: #e97c18;
    color: #0D0B07;
    transform: scale(1.1);
    transition: 1s;
    .card-icon{
        background: #fff;
    }
}

.card-icon:hover{
    background: #421808;
}

.card p{
    margin-top: 20px;
    font-weight: 100;
    letter-spacing: 2px;
    max-height: 0;
    opacity: 0;
    transition: 0.3s linear;
}

.card:hover p{
    max-height: 40px;
    opacity: 1;
    transition: 1s;
}

footer {
    background-color: #e97c18;
}

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

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

.footerBottom .paticka {
    color: #fff;
    font-size: 110%;
}

@media screen and (max-width: 768px) {
    header {
        padding: 0px 5%;
    }
    
    .section1 {
        width: 90%;
        padding: 20px;
    }
    
    .contact-info {
        padding: 0 10px;
    }
}


