/* section contact */
    .container_contact{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .content_contact{
        display: flex;
        gap: 8px;
        background: var(--light-white);
        border: 1px solid var(--first);
        padding: 16px;
        border-radius: 8px;
    }
    
    .box_icon_contact{
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        i{
            font-size: 35px;
            color: var(--white);
        }
    }
    
    .box_contact p:first-child{
        font-weight: bold;
        margin-bottom: 8px;
        color: var(--white);
    }
    
    .box_contact p:last-child a{
        color: var(--white);
    }
    
    .box_contact p:last-child a:hover{
        color: var(--second);
    }
    
    .bottom_contact{
        padding-left: 8px;
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }
    
    .bottom_contact a{
        width: 50px; height: 50px;
        background: var(--second);
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        i{
            font-size: 25px;
            color: var(--white);
        }
    }
    
    .bottom_contact a:hover{
        transform: translatey(-3px);
    }
    
    /* section map */
        iframe{
            width: 100%; height: 400px;
        }
    /* section map */
/* section contact */