@charset "utf-8";

@font-face {
    font-family: 'New Order';
    src: url('../fonts/NewOrder-Bold.eot');
    src: url('../fonts/NewOrder-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/NewOrder-Bold.woff') format('woff'), url('../fonts/NewOrder-Bold.ttf') format('truetype'), url('../fonts/NewOrder-Bold.svg#NewOrder-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'New Order';
    src: url('../fonts/NewOrder-Regular.eot');
    src: url('../fonts/NewOrder-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/NewOrder-Regular.woff') format('woff'), url('../fonts/NewOrder-Regular.ttf') format('truetype'), url('../fonts/NewOrder-Regular.svg#NewOrder-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'New Order', "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 55rem;
    margin: 1rem auto;
    overflow: hidden;
    background: url("../images/bg.jpg") 0 0/ 100% 100% no-repeat;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

article p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: normal;
    padding: .625rem 2rem;
    text-align: center;
}

h2 {
    font-size: 1.3rem;
    color: #d24882;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul li {
    padding: .5rem 0 0 1.75rem;
}

ul li:before {
    content: url("../images/list.png");
    float: left;
    margin-left: -1.75rem;
}

ul ul {
    padding-bottom: 0;
}

ul ul li {
    padding: 0 0 0 1rem;
}

ul ul li:before {
    content: "\2022";
    margin-left: -1rem;
}

.border {
    background: #D42E7D;
    background: linear-gradient(135deg, rgba(212, 46, 125, 1) 40%, rgba(21, 24, 70, 1) 95%);
    border: 2px solid #fff;
    border-radius: 1rem;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.block {
    display: flex;
    column-gap: 2rem;
    margin-top: 1rem;
}

.block .left {
    flex: 0 0 250px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
}

.info {
    display: flex;
    column-gap: .625rem;
}

.info i {
    color: #d24882;
    margin-right: .3rem;
}

hr {
    opacity: .3;
    margin-bottom: 1rem;
}

.flex {
    display: flex;
    gap: 1rem;
}

.flex>div {
    flex: 50%;
}

header {
    padding: 1rem;
    text-align: center;
}

header::after {
    content: url("../images/icon.png");
    position: absolute;
    top: 0;
    right: 0;
    opacity: .5;
}

article {
    margin-top: -2rem;
    padding: 0 1rem .5rem;
}

footer {
    padding: 0 1rem;
}

footer .border {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: .5rem 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 1rem;
    border-bottom: 0;
    border-radius: 1rem 1rem 0 0;
}

@media only screen and (max-width: 54.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        background: #000348;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 45rem) {

    .block,
    .flex {
        display: block;
    }

    .flex>div:first-of-type ul:last-child {
        padding-bottom: 0;
    }

    .block .left {
        align-items: center;
        text-align: center;
    }

    .info {
        justify-content: center;
        margin-top: 1rem;
    }

    article {
        margin-top: 0;
        padding: 1rem 1rem .5rem;
    }

    h1 {
        padding: 1rem;
    }

    h1 br {
        display: none;
    }

    footer .border {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media only screen and (max-width: 35rem) {
    h1 {
        font-size: 1.5rem;
    }

    footer .border {
        font-size: 1.3rem;
    }
}