*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.top-contact{
    background-color:#77F518;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    padding: 0 150px;
}
.top-contact a{
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.tc-redes iconify-icon{
    color: #333;
}
.tc-redes iconify-icon:hover{
    cursor: pointer;
    color: white;
    transition: 0.5s;

}
.tc-phones{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.tc-phones a:hover{
    color: white;
    transition: 0.5s;
}
.centrar-icon{
    padding-right: 8px;
}
header{
    position: absolute;
    width: 100%;
    min-height: 80px;
    background: white;
    padding: 0 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    z-index: 1000;
}

header img {
    height: 80px;
}

.ulist-1 li{
position: relative;
list-style: none;
float: left;
margin-top: 20px;
cursor: pointer;
}

.ulist-1 li a{
color: black;
font-size: 15px;
font-family: 'Inter', sans-serif;
padding: 30px 25px;
text-decoration:none;
display: flex;
}
.ulist-1 li b{
font-size: 10px;
padding: 5px;
}
.ulist-1 li a:hover,
.ulist-1 li:hover{
    color: #EE1B22;
}

.ulist-2{
    position: absolute;
    top: 70px;
    left: -25px;
    width: 160px;
    background: transparent;
    display: none;
}

.ulist-2 li a{
    font-size: 13px;
    height: 50px;
    width: 100%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 0 0 20px;
    align-items: center;
    

}
.ulist-2 li{
    position: relative;
    width: 100%;
    display: flex;
    height: 40px;
    align-items: center;
    margin: 0;
    background: white;
}
.ulist-1 li:hover .ulist-2{
    display: block;   
}

.ulist-2 li a:hover,
.ulist-2 li a:active {
    background-color: #FF0000;
    color: white;
}
.buttons{
    height: 70px;
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menuToggle{
    display: none;
}
.btn-Ing{
    background-color: #681BBC;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    width: 70px;
    height: 45px;
    border: 0;
    cursor: pointer;
    transition: transform 0.3s ease;

}

.btn-Con{
    background-color: #EE1B22;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    width: 70px;
    height: 45px;
    border: 0;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.btn-Con:hover{
    transform: scale(0.9);
    background-color: #95070c;
}
.btn-Ing:hover{
    transform: scale(0.9);
    background-color: #2a0254;
}

@media only screen and (max-width: 1360px) {
    .top-contact{
        padding: 0px 90px;
    }

    header{
        padding: 0px 90px;
    }
}

@media only screen and (max-width: 1210px) {
    .menuToggle{
        display: block;
    }
.top-contact{
    padding: 0px 100px;
    height: 35px;
}
.tc-phones a{
    font-size: 10px;
}
header{
    padding: 0px 100px;
    background-color: white;
    z-index: 1000;
    height: auto
;
}
header img {
    height: 66px;
}
header nav{
    position: absolute;
    width: 100%;
    top: 100px;
    left: 0;
    background:white ;
    display: none;
}
header.active nav{
    display: initial;
}

.ulist-1 li{
    width: 100%;
    padding: 0;
    
}
.ulist-1 li ul{
    position: relative;
    width: 100%;
    left: 0;
}
.ulist-1 li a{
    font-size: 20px;
    padding: 0;
    justify-content: center;
}
.ulist-2{
    left: 0;
    padding: 0;
    top: 0;
}
.ulist-2 li{
    left: -5px;
    top: 0;
    padding: 0;
}
.ulist-2 li a{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    padding: 0;
}

.ulist-1 li:active .ulist-2
.ulist-1 li:hover .ulist-2{
    display: block;   
}

.menuToggle{
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.menuToggle::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: black;
    transform: translateY(-12px);
    box-shadow: 0 12px black;
}
.menuToggle::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: black;
    transform: translateY(12px);
}
header.active .menuToggle::before{
    transform: rotate(45deg);
    box-shadow: 0 0 black;
}
header.active .menuToggle::after{
    transform: rotate(315deg);
}
}


@media only screen and (max-width: 768px) {
    .top-contact{
        padding: 0px 25px;
    }
    header{
        padding: 0px 25px;
    }
}