body {
    margin: 0;
    font-family: "Museo Sans Cyrl", sans-serif;
}
a {
    color: #434e5c;
}
a:hover,
a:active,
a:visited,
a:focus {
    color: #434e5c;
}
.auth {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
    flex-wrap: wrap;
    gap: 15px;
}
.auth a {
    display: block;
    font-family: sans-serif;
    color: #434e5c;
    flex: 1 0 auto;
    /* font-weight: 500; */
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 3px;
    border: 1px solid #434e5c;
}
.auth a:hover {
    background-color: #434e5c;
    color: #fff;
}
.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: 100vh;
    max-width: 100%;
    overflow: hidden;
    color: #434e5c;
}

.block-launch {
    text-align: center;
    /*max-width: 600px;*/
    width: max-content;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;*/
}

.block-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 100px auto 25px;
}
.block-logo img {
    max-width: 300px;
    max-height: 150px;
    transition: 700ms;
}

.block-launch__header {
    font-size: 2em;
    margin: 2rem 0 2.5rem 0;
}

.launch-menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}

.launch-menu__el {
    /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center; */
    padding: 1.5rem;
    border: 1px solid #434e5c;
    border-radius: 8px;
    /* font-weight: 600; */
    text-decoration: none;
    transition: 0.2s;
}
.launch-menu__el span {
    margin-top: 15px;
}
.launch-menu__el .mainmenu-icon {
    max-width: 120px;
    fill: #fff;
}

.launch-menu__el:hover {
    transform: translateY(-15px);
    background: #434e5c;
    color: #fff;
}
.launch-menu__el svg * {
    fill: #434e5c;
}
.launch-menu__el:hover svg * {
    fill: #fff;
}

.launch-menu__el img {
    /*max-height: 100px;*/
    width: 100px;
    margin-bottom: 2rem;
    transition: 300ms;
}

.launch-menu__el span {
    display: block;
    font-size: 1.2em;
}

.block-launch__logo img:hover {
    transform-origin: center;
}

.bottom_fixed_image {
    /* position: fixed; */
    /* bottom: 0;
    left: 0; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bottom_fixed_image img {
    width: 100px;
    margin: 3rem auto;
}

@media (max-width: 767px) {
    .auth {
        position: static;
        text-align: center;
    }
    .block-logo {
        margin: 25px auto 50px;
    }
    .block-launch {
        width: 95%;
        max-width: unset;
        margin: 0 auto;
    }
    .launch-menu__el {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .wrap {
        align-items: flex-start;
        flex-direction: column;
        min-height: auto;
    }
    .auth a.begin {
        order: 3;
    }

    .block-launch {
        position: inherit;
        transform: translate(0, 0);
        top: unset;
        left: unset;
    }

    .launch-menu {
        display: grid;
        grid-template-columns: 1fr;
        grid-column-gap: 0;
        grid-row-gap: 10px;
    }
    .launch-menu__el {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 1rem;
        transition: 0.3s;
    }
    .launch-menu__el:hover {
        transform: translateY(0);
        background: #434e5c;
        margin: 0 -5%;
    }
    .launch-menu__el .mainmenu-icon {
        width: 25px;
    }
    .launch-menu__el span {
        flex: 1;
        text-align: center;
        padding-left: 10px;
        transition: 0.2s;
        display: inline-block;
        margin: 0;
    }
    .launch-menu__el img {
        margin-bottom: 0;
    }
    .bottom_fixed_image {
        position: inherit;
        bottom: unset;
        left: unset;
    }
}
