

.about{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4.5rem;
    padding: 0 6%;
}
.about .content{
    padding: .7rem;
    border: 1px solid #444;
    border-radius: 1rem;
}

.about .content .title{
    color: #777;
}
.about .content h1{
    color: #fff;
    font-weight: 400;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
}
.about .content .whoWe{
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #999;
    font-weight: 300;
    margin-top: .5rem;
}
.about .content .daText{
    color: #ddd;
    font-weight: 300;
    font-size: clamp(.7rem, 2vw, 1rem);
}
.about .content .contBtns{
    display: flex;
    align-items: center;
    margin-top: .5rem;
    gap: .5rem;
}
.about .content .contBtns a{
    padding: .3rem 1rem;
    background: #555;
    border-radius: 3rem;
    color: #ddd;
    border: 1px solid #999;
    font-size: clamp(1rem, 2vw, 1.1rem);
    gap: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 3px 8px rgba(255,255,255, .5);
}

.about .content .contBtns a:hover{
    background: #333;
    color: #fff;
}



.icons-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 6%;
}
.icons-container .enlacesCont{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    width: 100%;
    padding: .5rem;
    border-radius: 1rem;
    border: 1px solid #444;
    gap: .3rem;
}
.icons-container .enlacesCont a{
    background: #003cff;
    border-radius: 1rem;
    font-size: clamp(.8rem, 2vw, 1rem);
    gap: .5rem;
    color: #fff;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    overflow: hidden;
    border: 1px solid #1d61bb;
}
.icons-container .enlacesCont a p{
    font-weight: 400;
}
.icons-container .enlacesCont a i{
    font-size:clamp(1.5rem, 2vw, 2rem);
    background: #000dc2;
    height: 100%;
    padding: 1rem;
    width: 4rem;
}
.icons-container .enlacesCont a:hover{
    background: #0059ff;
}
.icons-container .enlacesCont a:hover i{
    background: #0822b4;
}





.imagesCont{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 10svh;
    background: #303030;
}
.imagesCont .gallery{
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    align-items: center;
    justify-content: center;
    padding: .7rem;
    border: 1px solid #444;
    border-radius: 1rem;
    background: #222;
}


.imagesCont .gallery .gallery-container{
    display: flex;
    gap: .5rem;
}
.imagesCont .gallery .gallery-container a{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imagesCont .gallery .gallery-container a img{
    width: 100%;
    object-fit: cover;
    height: 17rem;
    border-radius: .5rem;
}


.imagesCont .gallery span{
    color: #aaa;
    font-size: clamp(.9rem, 2vw, 1.5rem);
}