
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    color: #e02222;

}



/* barra */


.navbar-brand{
    font-weight: 400;
    font-size: 2em;
    color: #262626;
}


.navbar {
    font-size: 2.5rem;
    font-size: 20px;
    font-weight: 600;
    
    top: 0;
    left: 0;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0 10px;
    color: black;
    transition: 0.3s ease;

}

.navbar-light .navbar-nav .nav-link:hover,
.navbar i:hover, 
.navbar-light .navbar-nav .nav-link :active
.navbar i:active{
    color: #b3aaaabd;
    
}




.navbar i{
    font-size: 1.2rem;
    padding: 0 10px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}


.navbar-light  .navbar-toggler {
    border: none;
    outline: none;
}


#bar {
    font-size: 1.5rem;
    padding: 7px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
    color: black;
}

#bar:hover,
#bar.active {
    color: rgb(0, 0, 0);
}


@media only screen and (max-width: 991px){
    
    #navbarSupportedContent > ul{
        margin: 1rem;
        justify-content: flex-end;
        align-items: flex-end;
        text-align: right;
    }

    #navbarSupportedContent > ul > li:nth-child(n) > a{
        padding: 10px 0;
    }

    .nav-item{
        padding: 10px 0;
    }


}


/* barra */



/* search */

.cuerpo{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background: white;
}
.search{
    
    position: relative;
    width: 60px;
    height: 60px;
    background: rgb(255, 255, 255);
    border-radius: 60px;
    transition: 0.5s;
    box-shadow: 0 0 0 5px rgba(226, 40, 27, 0.726);
    overflow: hidden;
}

.search.active{

    width: 360px;

}

.search .icon {

    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: rgb(255, 255, 255);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;;
    cursor: pointer; 
}

.search .icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(190, 34, 34, 0.623);
    border-radius: 50%;
    transform: translate(-4px, -4px) ;
}


.search .icon::after{

    content: '';
    position: absolute;
    width: 3px;
    height: 12px;
    background: rgba(190, 34, 34, 0.623);
    transform: translate(6px,6px) rotate(315deg);


}


.search .inputt {
    position: relative;
    width: 300px;
    height: 60px;
    left: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search .inputt input {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 10px 0;
}

.clear {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    right: 15px;
    background: rgb(255, 255, 255);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;

}


.clear::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: rgb(0, 0, 0);
    transform: rotate(45deg);
}


.clear::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 15px;
    background: rgb(0, 0, 0);
    transform: rotate(315deg);
}

/* 
search */