@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
}

ul, ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

video {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
}

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 28px;
    background: #111111;
    color: #ffffff;
}

body::before {
    content: '';
    clip-path: polygon(100% 0, 100% 33%, 0 48%, 0 48%, 0 0);
    background: #a2252d;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.gfy71xs-strim--btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.gfy71xs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    height: 60px;
    border-radius: 100px;
    background: #a2252d;
    color: #ffffff;
    max-width: 280px;
    width: 100%;
    transition: .3s;
}

.gfy71xs-btn--dark {
    background: #2e2e2e;
}

.gfy71xs-btn:hover {
    transform: rotate(4deg);
}


/* Header */
.gfy71xs-header {
    padding: 20px 16px;
}

.gfy71xs-header--box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gfy71xs-header--logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
}

.gfy71xs-header--logo img {
    border-radius: 8px;
    box-shadow: -4px 1px 4px #11111185;
}

.gfy71xs-header--link {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    gap: 6px;
    color: #ffffff;
    padding: 4px;
}

/* Strim */

.gfy71xs-strim {
    padding: 40px 16px;
}

.gfy71xs-video {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 40px;
    display: block;
    border-radius: 20px;
}

.gfy71xs-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gfy71xs-text {
    text-align: center;
}

/* Questions */

.gfy71xs-questions {
    padding: 40px 16px 60px;
}

.gfy71xs-questions--list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.gfy71xs-questions--item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px 40px;
}

.gfy71xs-questions--box h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gfy71xs-questions--pic {
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gfy71xs-questions--pic img {
    width: 100%;
    height: 100%;
    transition: .3s;
}

.gfy71xs-questions--pic:hover img {
    transform: scale(1.1);
}

/* Info */

.gfy71xs-info {
    padding: 40px 16px;
}

.gfy71xs-info--box h1 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
}

.gfy71xs-info--box h2 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gfy71xs-info--box p {
    margin-bottom: 14px;
}

.gfy71xs-info--box strong {
    font-weight: 600;
    color: #a2252d;
}

/* Footer */

.gfy71xs-footer {
    padding: 20px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.gfy71xs-footer--nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.gfy71xs-footer--nav a {
    padding: 4px;
    color: #ffffff;
    transition: .3s;
}

.gfy71xs-footer--nav a:hover {
    color: #a2252d;
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
        line-height: 26px;
    }

    .gfy71xs-strim {
        padding: 20px 16px 40px;
    }

    .gfy71xs-strim--btns {
        flex-direction: column;
    }

    .gfy71xs-title {
        font-size: 24px;
        line-height: 34px;
    }

    .gfy71xs-questions--item {
        grid-template-columns: 1fr;
    }

    .gfy71xs-questions--item:nth-child(2n) .gfy71xs-questions--pic {
        grid-row: 2;
    }
}