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: "Arial"sans-serif;
    color: rgb(0, 0, 0);
}

* {
    -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;
}

.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    display: none;
}

.form_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: calc(100% - 30px);
    height: 448px;
    max-width: 560px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 55px 15px 40px 15px;
    margin-top: -225px;
    border-radius: 15px;
    border: solid 2px rgb(172, 174, 179);
    background-color: rgb(239, 239, 239);
    display: none;
}

.form_modal input {
    display: block;
    width: 100%;
    max-width: 445px;
    margin: 0 auto 10px;
    border: 1px solid rgb(172, 174, 179);
    height: 46px;
    border-radius: 7px;
    padding: 15px;
    font-size: 16px;
}

.name_modal {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: rgb(0, 0, 0);
}

.form_modal input[type="submit"] {
    max-width: 216px;
    border-radius: 7px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(61, 174, 202)), to(rgb(47, 150, 176)));
    background-image: linear-gradient(to top, rgb(61, 174, 202), rgb(47, 150, 176));
    color: rgb(255, 255, 255);
    cursor: pointer;
    font-size: 18px;
    padding: 0px;
    border: none;
    -webkit-transition: 300ms;
    transition: 300ms;
    border: 1px solid rgba(61, 174, 202, 0);
}

.form_modal input[type="submit"]:hover {
    color: rgb(61, 174, 202);
    background: rgb(255, 255, 255);
    border: 1px solid rgba(61, 174, 202, 1);
}

.close_modal {
    position: absolute;
    right: 15px;
    top: 15px;
    background: url(../img/close.svg) center no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: block;
    width: 26px;
    height: 26px;
}

.calendar {
    background: url(../img/calendar.svg) right 15px center no-repeat;
}

.man {
    background: url(../img/user.svg) right 15px center no-repeat;
}

.telephon {
    background: url(../img/phone.svg) right 15px center no-repeat;
}

.web {
    background: url(../img/website.svg) right 15px center no-repeat;
}
@media screen and (max-width:435px){
    .name_modal{
        font-size: 24px;
    }
    .form_modal{
        padding: 45px 10px 20px;
        height: 400px
    }
}