*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body::-webkit-scrollbar{
    width: 12px;
    height: 0px;
    background-color: transparent;
}
body::-webkit-scrollbar-thumb{
    background-color: #33333386;
}


#icon-menu{
    display: none;
}

.menu{
    position: fixed;
    z-index: 2;
    top: 0;
    width: 100%;
}
.headerController{
    display: grid;
    grid-template-columns: 30% 1fr 10%;
    align-items: center;
    height: 50px;
    background-color: white;
    border-bottom: 1px solid #ccc;
}
body{
    margin-top: 50px;
}
.headerController .text{
    display: grid;
    height: 100%;
    grid-template-columns: 16% 1fr;
    align-items: center;
}
.headerController .text .imgContent{
    width: 35px;
    height: 35px;
    margin: auto;
}

.headerController .text .imgContent img{
    width: 100%;
    height: 100%;
}
.headerController .text strong{
    font-size: 25px;
    padding: 0% 3%;
    display: block;
    font-family: auto;
}
.headerController .links{
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 32% 21% 1fr 10%;
    align-items: center;
}
.hoveredBtn{
    display: block;
    font-size: 13px;
    transition: all 300ms;
    border-bottom: 1px solid transparent;
    box-sizing: border-box;
    width: 51%;
}
.hoveredBtn:hover{
    border-bottom: 1px solid black;
}
.headerController .links li a {
    text-decoration: none;
    color: black;
    width: 100%;
    font-size: 15px;
}
.headerController .links button{
    background: none;
    border: none;
    display: flex;
    cursor: pointer;
    font-size: 15px;
}

#sectionContents{
    display: none;
    position: fixed;
    top: 44px;
    width: 100%;
    height: 0%;
    backdrop-filter: blur(3px);
}
@keyframes desplegateMenu {
    0%{
        height: 0%;
    }
    100%{
        height: 98%;
    }
}
@keyframes colapseMenu{
    0%{
        height: 98%;
    }
    100%{
        height: 0%;
        overflow: hidden;
    }
}
.sectionsOfRedirectorsConent{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
    padding: 3%;
}
#sectionContent-a{
    background: white;
    width: 100%;
    height: 0vh;
}
@keyframes desplegateSection {
    0%{
        height: 0vh;
        color: transparent;
    }
    100%{
        height: 60vh;
    }
}
@keyframes colapseSection {
    0%{
        height: 60vh;
    }
    100%{
        height: 0;
        color: transparent;
        overflow: hidden;
    }
}

.closeBtnContent{
    position: absolute;
    width: 100%;
    top: 2.5%;
}
#closeSection{
    display: flex;
    margin-left: auto;
    font-size: 36px;
    width: 62px;
    height: 62px;
    justify-content: center;
    border-radius: 100%;
    border: none;
    background: none;
    cursor: pointer;
}
.redirectorElement {
    display: block;
    text-decoration: none;
    color: black;
    font-weight: 600;
    transition: all 300ms;
    padding: 3% 0%;
    font-size: 14px;
    border-bottom: 1px  solid transparent;
    box-sizing: border-box;
    width: 66%;
    z-index: 1;
}
.redirectorElement:hover{
    border-bottom: 1px  solid #333;
}
.failResults{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    color: #8b8b8b;
    text-transform: uppercase;
}