* {
    box-sizing: border-box;
    font-family: Poppins,system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0;
    margin: 0;
}

:root {
    --background-color: #f2f2f2;
    --primary-color: #0E5D97;
    --secundary-color: #393B7B;
    --primary-text-color: #4D4D4D;
    --secundary-text-color: #f9f9f9;
}

#footer{ 
    background-color: #efefef;
    position: relative;
    width: 100%;
    
}

/* ELEMENTO WP FOOTER */
.elementor-shape-top-footer {
    top: -1px;
    overflow: hidden;
}

.elementor-shape-top-footer svg {
    height: 80px;
}

.elementor-shape-footer svg {
    display: block;
    overflow: hidden;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.elementor-shape-fill-footer {
    fill: rgb(0, 0, 0);
    transform-origin: center;
    transform: rotateY(0deg);
}

/* FOOTER CONTENT */

.footer__content {
    position: relative;
    width: 100%;
    min-height: 350px;
   
    padding: 3rem 1rem;
}

.container__footer {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.row { 
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.col {
    min-width: 250px;
    color: var(--primary-text-color);
    padding: 0 1.7rem ;
}
.cont {
    padding-top: 30px;
}
.conct {
    min-width: 270px;
    align-items: start;
}

.col .logo__footer{
    width: 15rem;
    margin-top: 10px;
   
}

.logo__footer {
    margin-left: -10px;
    
}

.col h3 {
    color: var(--secundary-color);
    margin-bottom: 20px;
    position: relative;
    cursor: pointer;
}

.col h3::after {
    content: '';
    height: 3px;
    width: 0px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;

}

.col h3:hover::after {
    width: 30px;
}

.col .social a i{
    font-size: 25px;
    padding-right: 8px;
    color: #4D4D4D;
    margin-top: 2rem;
    margin-right: 5px;
    transition: 0.3s ease;

}

.col .social a i:hover {
    transform: scale(1.5);
    color: var(--primary-color);
}

.col .links a{
    display: block;
    text-decoration: none;
    color: var(--primary-text-color);
    margin-bottom: 5px;
    position: relative;
    transition: 0.3s ease;
}

.col .links a::before {
    content: '';
    height: 16px;
    width: 3px;
    position: absolute;
    top: 5px;
    left: -10px;
    background-color: var(--primary-color);
    transition: 0.5s ease;
    opacity: 0;
}

.col .links a:hover::before {
    opacity: 1;
}

.col .links a:hover {
    transform: translateX(-8px);
    color: var(--primary-color);
}

.col .contact-details {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;

}

.col .contact-details i{
    margin-right: 15px;
}

.contact-details + .contact-details{
    width: 100%;
    justify-content: start;
    padding-top: .4rem;
}


@media(max-width:1064px)
{
    .row{
        flex-direction: column;
    }
    .col{
        width: 100%;
        text-align: left;
        margin-bottom: 25px;
    }
}

@media (max-width: 834px) {
    .elementor-shape-top-footer {
        top: -10px;
        position: absolute;
        
    }
}