/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body */
body {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    background: #320640;
}

/* Container */
.container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}

/* header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 5;
}
header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .row a {
    text-decoration: none;
}
header img {
    height: 15px;
    transition: .4s;
}
header img:hover {
    transform: scale(1.05);
}
header .row ul {
    display: flex;
    align-items: center;
}
header .row ul li {
    margin: 0 0 0 21px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}
header .row ul li:hover {
    color: #E5033A;
}
header .row ul li:first-child {
    margin: 0;
}
header .row ul li a {
    color: inherit;
    text-decoration: none;
}
header .row-mobile {
    display: none;
}

/* Intro */
.intro {
    position: relative;
    padding: 107px 0 39px 0;
    background: url('../img/bg.png') center / cover no-repeat;
    background-color: #320640;
}
.intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, #300741 0%, rgba(63, 5, 63, 0) 100%);
    z-index: 3;
}
.intro::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, #320640 0%, rgba(60, 6, 64, 0.1) 100%);
    transform: matrix(1, 0, 0, -1, 0, 0);
    z-index: 3;
}
.intro .container div {
    display: flex;
    flex-direction: column;
}
.intro h1 {
    margin: 0 0 15px 0;
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 54px;
    color: #FFFFFF;
    z-index: 5;
}
.intro h1 span {
    font-style: italic;
    text-transform: uppercase;
}
.intro p {
    margin: 0 0 30px 0;
    max-width: 876px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    z-index: 5;
}
.intro a, .btn {
    padding: 15px 43.5px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    background: #E5033A;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    transition: .3s;
    z-index: 5;
}
.intro a span, .btn span {
    color: #FFFFFF;
    transition: .3s;
}
.intro a:hover, .btn:hover {
    background: #FFFFFF;
}
.intro a:hover span, .btn:hover span {
    color: #E5033A;
}
/* Content */
.content {
    padding: 57px 47px;
}
.content h2 {
    margin: 25px 0 15px 0;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
}
.content h2 span {
    color: #FE4D00;
    text-transform: uppercase;
}
.content p,
.content ul li,
.content ol li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}
.content ul,
.content ol {
    margin: 0 0 15px 20px;
}
.content p {
    margin: 0 0 15px 0;
}
.container-error {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 150px);
}
.container-error h3 {
    margin: 0;
    color: #FFFFFF;
    font-size: 8em;
    line-height: 150%;
}
.container-error h4 {
    margin: 0;
    color: #E5033A;
    font-size: 6em;
    line-height: 150%;
}

/* footer */
footer {
    background: transparent;
}
footer .container {
    position: relative;
    border-top: 1px solid #E5033A;
}
footer .row {
    padding: 20px 0 0 0;
    display: flex;
    justify-content: center;
}
footer .logo {
    position: absolute;
    left: 0;
    top: 20px;
    height: 15px;
}
footer .logo img {
    height: inherit;
}
footer ul {
    display: flex;
    justify-content: center;
    padding: 16.6px 0;
}
footer ul li {
    margin: 0 19px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    list-style: none;
    transition: .2s all linear;
    color: #FFFFFF;
}
footer ul li:hover {
    color: #E5033A;
}
footer ul li:last-child {
    margin: 0;
}
footer ul li a {
    color: inherit;
    text-decoration: none;
}