@font-face {
    font-family: 'GothamPro';
    src: url('fonts/GothamPro.eot');
    src: local('Gotham Pro'), local('GothamPro'),
        url('fonts/GothamPro.eot?#iefix') format('embedded-opentype'),
        url('fonts/GothamPro.woff') format('woff'),
        url('fonts/GothamPro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'GothamPro';
    src: url('fonts/GothamPro-Medium.eot');
    src: local('Gotham Pro Medium'), local('GothamPro-Medium'),
        url('fonts/GothamPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/GothamPro-Medium.woff') format('woff'),
        url('fonts/GothamPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
sub,
sup,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-size: 100%;

}

html {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: 'GothamPro';
    font-weight: normal;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    outline: none;
    text-decoration: none;
    list-style: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /*
    -webkit-backdrop-filter: saturate(180%) blur(5px);
            backdrop-filter: saturate(180%) blur(5px);
*/
}

.wrap_container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px 15px 20px;
}

.top_logos {
    width: 100%;
    max-width: 310px;
    margin: 0 auto 65px;
}

.top_logos img{
    max-width: 100%;
}

.both_form {
    width: 100%;
}

.title_page {
    text-align: center;
    font-size: 20px;
    line-height: 19px;
    text-align: center;
    color: #282828;
    font-weight: 500;
    margin-bottom: 32px;
}

.both_form label {
    display: block;
    margin-bottom: 16px;
}

.both_form label p {
    font-size: 14px;
    line-height: 13px;
    color: #282828;
    margin-bottom: 8px;
}

.both_form label input {
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    border-radius: 5px;
    display: block;
    width: 100%;
    height: 44px;
    padding: 0px 16px;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.both_form label input:focus, .both_form label textarea:focus{
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5)
}

.both_form label textarea {
    background: #FFFFFF;
    border: 1px solid #DBDBDB;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 5px;
    width: 100%;
    height: 132px;
    width: 100%;
    resize: none;
    padding: 16px;
    font-family: 'GothamPro';
    font-weight: normal;
    -webkit-transition: 300ms;
    transition: 300ms;
}

.both_form input[type="submit"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 231px;
    height: 55px;
    font-size: 18px;
    line-height: 17px;
    text-align: center;
    color: #FFFFFF;
    background: #282828;
    border-radius: 5px;
    margin: 32px auto 0px;
    font-weight: normal;
    -webkit-transition: 300ms;
    transition: 300ms;
    border: 1px solid #282828;
}
.both_form input[type="submit"]:focus, .both_form input[type="submit"]:hover{
    background: rgb(255, 255, 255);
    color: #282828
}

.overlay{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.close_popup{
    position: absolute;
    top: 5px;
    right: 15px;
    width: 15px;
    height: 15px;
}

.close_popup:after, .close_popup:before{
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #282828;
    top: 50%;
    margin-top: -1px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.close_popup:after{
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg)
}

.popup_success{
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10;
    padding: 30px 15px 20px;
    font-size: 15px;
    text-transform: uppercase;
    width: calc(100% - 20px);
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 350px;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}