/*//////////////////////////////////////////////////////////////////*/
/*Формы*/
/*//////////////////////////////////////////////////////////////////*/
.hidden
{
    display: none;
}
form
{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-direction: column;

    margin: auto;
    padding: 80px;

    text-align: center;

    background: #fff;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
form .title
{
    margin: 0 0 80px;
}
.f-p
{
    margin: 20px 0 0;
}
input
{
    font-size: 16px;
    font-weight: 500;

    min-width: 300px;
    height: 50px;
    margin: 20px 0 40px;

    text-align: center;
    letter-spacing: .1em;

    color: #888;
    border: 2px solid #f0542d;
}
textarea
{
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;

    min-width: 300px;
    height: 50px;
    margin: 20px 0 40px;

    text-align: center;
    letter-spacing: .1em;

    color: #888;
    border: 2px solid #f0542d;
}
label
{
    font-size: 16px;
    font-weight: 500;

    letter-spacing: .06em;

    color: #f0542d;
}
button
{
    font-size: 18px;
    font-weight: 500;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: 300px;
    height: 50px;

    cursor: pointer;
    text-transform: uppercase;

    color: #fff;
    border: 0 solid;
    border-color: #f0542d;
    background: #f0542d;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
button:hover
{
    color: #f0542d;
    border: 2px solid;
    background: #fff;
}

/*//////////////////////////////////////////////////////////////////*/
/*Попап Анимация*/
/*//////////////////////////////////////////////////////////////////*/

/* overlay at start */
.mfp-fade.mfp-bg
{
    -webkit-transition: all .3s ease-out;
         -o-transition: all .3s ease-out;
            transition: all .3s ease-out;

    opacity: 0;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready
{
    opacity: .8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing
{
    opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content
{
    -webkit-transition: all .3s ease-out;
         -o-transition: all .3s ease-out;
            transition: all .3s ease-out;
    -webkit-transform: scale(0) rotate(30deg);
        -ms-transform: scale(0) rotate(30deg);
            transform: scale(0) rotate(30deg);

    opacity: 0;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content
{
    -webkit-transform: scale(1) rotate(0deg);
        -ms-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);

    opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content
{
    opacity: 0;
}
