/* Обнуление */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Подключение шрифта */
@font-face {
    font-family: 'Gotham Pro';
    src: url('../fonts/GothamPro.ttf');
}
@font-face {
    font-family: 'Gotham Pro Bold';
    src: url('../fonts/GothamPro-Bold.ttf');
}
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/gilroy-black.ttf');
}

/* ROOT */
:root {
    --main-color: #56359B;
}

/* body */
body {
    padding: 22px 0 20px 0;
    background: #FFFFFF;
    font-family: 'Gotham Pro';
}

body a {
    text-decoration: none;
}

/* header */
header {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 14px auto;
    padding: 0 28px;
    max-width: 1280px;
    align-items: center;
    background-color: var(--main-color);
    border-radius: 60px;
}
header img {
    height: 18px;
}
header ul {
    display: flex;
}
header ul li {
    padding: 27px 5px;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-size: 12px;
    line-height: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    list-style: none;
    transition: .3s all linear;
    cursor: pointer;
}
header ul li:hover {
    background-color: #F6264C;
}
header ul li:first-child {
    margin: 0;
}
header ul li a {
    padding: inherit;
    color: inherit;
    text-decoration: none;
}

/* Intro */
.intro {
    display: flex;
    flex-direction: column;
    margin: 14px auto 0 auto;
    padding: 36.5px 10px;
    max-width: 1280px;
    border-radius: 43px;
    background: url('../img/bg.png') center / cover no-repeat;
}
.intro h1 {
    margin: 0 0 15px 0;
    max-width: 876px;
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: 900;
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    align-self: center;
    text-transform: uppercase;
    color: #FFFFFF;
}
.intro h1 span {
    color: #F6264C;
}
.intro p {
    margin: 0 0 30px 0;
    max-width: 876px;
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    align-self: center;
    color: #FFFFFF;
}
.intro a {
    padding: 15px 45px;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 13px;
    text-align: center;
    align-self: center;
    text-transform: uppercase;
    color: #56359B;
    background-color: #FFFFFF;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: .5s;
}
.intro a:hover {
    color: #FFFFFF;
    background-color: #F6264C;
}
.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 14px auto 0 auto;
    padding: 35px 22px 32px 52px;
    max-width: 1280px;
    border-radius: 43px;
    background: url('../img/inner.png') center / cover no-repeat;
}
.inner-row {
    width: 70%;
    align-self: flex-start;
}
.inner-row h1 {
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 56.4045px;
    line-height: 60px;
    color: #ffffff;
}
.inner h1 span {
    color: #F6264C;
}
.inner-row p {
    margin: 20px 0 30px 0;
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
}
.inner-row a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 535px;
    padding: 23px;
    background: linear-gradient(92.21deg, #873EFF -2.74%, #F83C8B 49.31%, #C130F3 110.84%);
    border-radius: 18.3149px;
    transition: background .4s linear;
}
.inner-row a:hover {
    background: linear-gradient(92.21deg, #C130F3 -2.74%, #873EFF 49.31%, #F83C8B 110.84%);
}
.inner-row a span {
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 28.0308px;
    line-height: 29px;
    text-align: center;

    background: linear-gradient(115.64deg, #EBF3FD 2.91%, #FFFFFF 18.05%, #EFF5FC 24.23%, #FFFFFF 40.24%, #EAF0F8 56.98%, #EDF5FD 72.76%), #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.innerBtn {
    position: relative;
    display: flex;
}
.inner-gift {
    width: 400px;
    height: 400px;
}
.inner-arrow {
    position: absolute;
    top: -30px;
    right: 60px;
}
.content {
    margin: 0 auto;
    padding: 54px 0 45px 0;
    max-width: 1280px;
}
.content h2 {
    margin: 25px 0 15px 0;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    line-height: 31px;
    text-align: center;
    text-transform: uppercase;
    color: #56359B;
}
.content h2 span {
    color: #F6264C;
}
.content p,
.content ul li,
.content ol li {
    font-family: 'Gotham Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #292929;
}
.content p,
.content ul,
.content ol {
    max-width: 984px;
    margin: 0 auto 15px auto;
    list-style-position: inside;
}

.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: #292929;
    font-size: 8em;
    line-height: 150%;
}
.container-error h4 {
    margin: 0;
    color: #F6264C;
    font-size: 8em;
    line-height: 150%;
}

.inner-top-arrow {
    display: none;
}

/* footer */
footer {
    max-width: 1280px;
    margin: 0 auto;
    background-color: var(--main-color);
    border-radius: 60px;
}
footer ul {
    display: flex;
    justify-content: center;
}
footer ul li {
    padding: 27px 5px;
    font-family: 'Gotham Pro Bold';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 11px;
    text-transform: uppercase;
    color: #FFFFFF;
    list-style: none;
    transition: .3s all linear;
    cursor: pointer;
}
footer ul li:hover {
    background-color: #F6264C;
}
footer ul li a {
    padding: 25px 9.25px;
    color: inherit;
    text-decoration: none;
}

.pl {
    display: none;
}