.contact-base{
    display: flex;
    justify-content: center;
    padding-bottom: 150px;
    padding-top:20px;
    width: 100%;
}
.contact-container{
    display: flex;
    justify-content: center;
}

.contact-content{
    width: 52%;
}
#form{
    display: flex;
    align-items: center;
}
.form-base{
    width: 30%;
}
.c-red{
    color: #f1382b;
}
.c-black{
    color: black;
}
.decoration-link-grey,
.decoration-link-red{
    text-decoration: none;
}

.decoration-link-grey:hover{
    color: #ababab;
}
.decoration-link-red:hover{
    color: #f1382b;
}
.phone{
    font-size: xxx-large;
    font-weight: 700;
    margin: 0;
    padding: 0;
}
.phone-img{
    width: 40px;
    height: 40px;
    padding-right: 5px
}

.notification {
    padding: 30px;
    font-size: 18px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 999999999999999999999999999999999999999999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 5px;
    background-color: rgb(172, 185, 154);
    color: green;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;


    animation-name: notif;
    animation-duration: 4s;
    opacity: 0;
}

@keyframes notif {
    0%   {left:50%; top:0px; opacity: 0;}
    25%  {left:50%; top:20%;; opacity: 1;}
    50%  {left:50%; top:20%;; opacity: 1;}
    75%  {left:50%; top:20%;; opacity: 1;}
    100% {left:50%; top:0px; opacity: 0;}
}



@media screen and (max-width: 1350px){
    .contact-base{
        display: flex;
        justify-content: center;
        padding-bottom: 150px;
        padding-top:20px;
    }
    .contact-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 60%;
    }

    .contact-content{
        width: 100%;
    }

    .form-base{
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .form-content{
        width:70%;
    }

}
@media screen and (max-width: 750px){

    .contact-base{
        padding-top: 0;
    }

    .contact-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .form-base{
        width: 100%;
    }
    .form-content{
        width:100%;
    }

    .text-mail-size{
        font-size: 20px;
    }

    .phone{
        font-size: xx-large;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }
    .phone-img{
        width: 30px;
        height: 30px;
        padding-right: 5px
    }

}
