@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;700&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    text-decoration: none;
    list-style-type: none;
    font-family: 'Merriweather', serif!important;
}


.welcome {
    width:100%;
    height:100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background:#f2f2f2;
}

.welcome img#cover {
    opacity: 0.1;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    left:0;
    top:0;
}


.container {
    max-width: 1000px;
}

.welcome-item {
    float:left;
    width:100%;
    height: 100vh;
    position: relative;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.welcome-item__logo {
    margin-bottom:30px;
}

.welcome-item__title h1 {
    font-size:16px;
}

.welcome-item__socials ul {
    display: flex;
    align-items: center;
    margin-top:30px;
}

.welcome-item__socials ul li {
    float:left;
}

.welcome-item__socials ul li a {
    color:#242424;

}


.welcome-item__socials ul li:after {
    content: "/";
    float:right;
    padding:0 15px;
}

.welcome-item__socials ul li:last-child:after {
    display: none;
}

.welcome-item__contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom:50px;
}

.welcome-item__contacts p {
    float:left;
    display: flex;
    align-items: center;
}

.welcome-item__contacts p:after {
    content: "|";
    float:right;
    padding:0 15px;
    color:Gray;
}

.welcome-item__contacts p:first-child {
    margin-left: 0;
}.welcome-item__contacts p:last-child:after {
    display: none;
}

.welcome-item__contacts p a {
    color:#242424;
    display: flex;
    align-items: center;
    font-family: "DejaVu Sans Bold", sans-serif;
    font-size:13px;

}
.welcome-item__contacts p span {
    width:30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background:#fff;
    float:left;
    margin-right: 10px;
    box-shadow:0px 3px 3px #dedede;
}

.welcome-item__contacts p a svg {
    width:16px;
    height: 16px;

}

.welcome-item__logo img {
    height:150px;
}

@media (max-width:1024px) {


    .welcome-item__contacts p {
        margin:0;
        font-size: 10px;
    }

    .welcome-item__contacts p a {
        font-size: 10px;
    }
}