.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    padding: 30px 0;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;


}

.header .container {
    margin: 0 auto;
    width: 90%;
    max-width: 1820px;
}

header {

    padding: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;

}

.logo {
    width: 15%;
}

nav {
    width: 60%;
    position: relative;
}

.contact-btn {
    width: 15%;
    display: flex;
    justify-content: flex-end;
}

.kontact {
    width: 12%;
}







header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    justify-content: center;
}

header nav ul li {
    list-style: none;
}


.header header nav ul li a {
    padding: 10px 10px;
    margin: 0 5px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 1.1em; 
    white-space: nowrap;
    font-weight: 500;
    text-transform: capitalize;
}

.header header nav li:hover > ul {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 300px;
}

.header header nav li > ul {
    list-style-type: none;
    display: none;
}

.header header nav li ul li a {
    padding: 15px;
    color: #fff !important;
}

.header header nav li ul li:nth-child(odd) a {
    background: #5ce0c3;
}

.header header nav li ul li:nth-child(even) a {
    background: #50d8ba;
}
.header header nav ul li a:hover {
	color:#6ACFFA;
}
  .header header nav ul li.active a {
	color:#6ACFFA;
}
  

header nav .contact-sec {
    display: none
}

.menu-toggle {
    color: #FFF;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;

}

.header.bgcolor {
    background-color: #11425A;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
    header {
        padding: 0;
    }

    .menu-toggle {
        display: block;
    }

    header nav {
        position: absolute;
        width: 100%;
        height: calc(100vh);
        background: #11425A;
        top: 0;
        left: -100%;
        transition: 0.5s;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }

    header nav.active {
        left: 0;
    }

    header nav ul {
        display: block;
        text-align: left;
        width: 100%;
    }

    header nav ul li a:hover,
    header nav ul li a.active {
        color: #fff;
    }



}