header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

header .header1 {
    background-color: #004466;
    padding: 10px 0;
    height: 50px;
    display: flex;
    align-items: center;
}

@media (max-width: 400px) {
    header .header1 {
        display: none;
    }
}

header .header1 .item-social {
    display: flex;
    align-items: center;
    margin-right: 20px;
    grid-gap: 5px;
    text-decoration: none;
}

@media (max-width: 768px) {
    header .header1 .item-social {
        margin-right: unset;
        margin-left: 20px;
    }
}

header .header1 .item-social svg {
    width: 15px;
    height: 15px;
}

header .header1 .item-social h1, 
header .header1 .item-social a {
	text-decoration: none;
    color: #FFF;
    font-family: "Lexend Deca", sans-serif;
	font-weight: 300;
}

header .header1 .social .redesocial {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFF;
    border-radius: 50%;
    margin-left: 10px;
}

header .header1 .social .redesocial svg {
    width: 50%;
    height: 50%;
}

@media (max-width: 768px) {
    header .header1 .icon-social {
        display: none !important;
    }
}

header .header1 h1 {
    color: #FFF;
    font-family: "Lexend Deca", sans-serif;
}

header .header2 {
    background-color: #FFF;
    padding: 30px 0;
    box-shadow: 0 5px 20px #0000000D;
    height: 108px;
    min-height: 108px;
    max-height: 108px;
}

header .header2 .logo {
    width: 160px;
}

header .header2 ul {
    display: flex;
    align-items: center;
    grid-gap: 52px;
    margin-bottom: 0;
    margin-left: 50px;
}

@media (max-width: 1200px) {
    header .header2 ul {
        grid-gap: 20px;
    }
}

@media (max-width: 992px) {
    header .header2 ul {
        display: none;
    }
}

header .header2 ul li {
    list-style: none;
}

header .header2 ul li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}

header .header2 ul li a.active,
header .header2 ul li a:hover {
    color: #1174A5;
}

header .header2 ul li .circle {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #1174A5;
    display: none;
}

header .header2 ul li a.active .circle {
    display: flex;
}

header .header2 .contato {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 992px) {
    header .header2 .contato {
        display: none;
    }
}

header .header2 .contato a {
    background-color: #1174A5;
    color: #FFF;
    padding: 15px 30px;
    text-decoration: none;
    text-transform: uppercase;
}

header .header2 .contato a:hover {
    background-color: #004466;
}