* {
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}

body {
    background: #010101;
}

.container {
    max-width: 1290px;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

ul, ol {
    padding-left: 30px;
}

ul li, ol li {
    font-size: 17px;
}

ul li a:hover,ol li a:hover {
    color: #f7d80b;
}

ul li:not(:last-child),ol li:not(:last-child) {
    margin-bottom: 15px;
}

img {
    width: 100%;
}

.main-wrapper {
    background: #191502;
}

.header {
    background-color: #010101;
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 15px 0;
    top: 0;
    left: 0;
}

.logo {
    display: block;
    max-width: 155px;
    margin: 0 auto;
    transition: .3s;
}

.intro {
    background-color: #262001;
    height: calc(85vh - 97px);
    margin-top: 97px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 40px;
    line-height: 55px;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 15px;
}

h1 span {
    display: block;
    color: #f7d80b;
}

.intro-wrap .subtitle {
    color: #aaa9a9;
    font-size: 25px;
    margin-bottom: 55px;
    text-transform: uppercase;
}

.intro-wrap .subtitle span {
    text-decoration: underline;
}

.btn {
    position: relative;
    overflow: hidden;
    display: block;
    max-width: 365px;
    width: 100%;
    padding: 20px;
    border-radius: 6px;
    background-color: #fed801;
    color: black;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 auto;
    transition: .3s;
}

.btn:hover {
    transform: scale(1.01);
    transition: .3s;
}

.btn::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 3em;
    display: block;
    position: absolute;
    top: 0;
    left: -4.5em;
    transition: none;
    animation: sheen 2.5s infinite;
}

@keyframes sheen {
    0% {
      transform: skewY(-45deg) translateX(0);
    }
    50%, 100% {
      transform: skewX(-45deg) translateX(22em);
      transition: all 0.5s ease-in-out;
    }
}

.main-content {
    padding-bottom: 35px;
}

.main-content .container {
    padding: 0;
}

.first-block {
    background-color: #1a1402;
    color: white;
    padding: 30px 20px;
}

.main-content .container {
    padding: 0;
}

h2 {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: normal;
}

h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: normal;
}

h4, h5, h6 {
    font-weight: 500;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

blockquote {
    font-size: 14px;
    line-height: normal;
    color: #cbc6c5;
}

blockquote p {
    position: relative;
    display: inline;
    padding: 0 5px;
}

blockquote p::before {
    content: '“';
    position: absolute;
    color: #cbc6c5;
    left: -2px;
}

blockquote p::after {
    content: '”';
    position: absolute;
    color: #cbc6c5;
    right: -2px;
}

.first-block span {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.first-block p {
    font-size: 14px;
    line-height: normal;
    color: #cbc6c5;
}

.green-block {
    background: #302f01;
    color: white;
    padding: 20px;
}

.table-block {
    padding: 20px;
}

.table-block table {
    border-collapse: collapse;
    width: 100%;
}

.table-block table th {
    font-size: 15px;
    font-weight: 500;
    padding: 8px;
    color: #ffe600;
    text-align: center;
}

.table-block table tr, td {
    border: 1px solid #ffe600;
    font-size: 16px;
    color: #ccc;
    padding: 8px;
    line-height: normal;
}

.under-block {
    color: white;
    padding: 30px 20px;
}

.bottom-block {
    background-color: #1a1402;
    color: white;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.bottom-block p {
    font-size: 14px;
    color: #cbc6c5;
    line-height: normal;
}

.bottom-wrap-btn {
    padding: 0 20px;
}

footer {
    padding: 30px 0;
    font-family: "Rubik", sans-serif;
    background-color: #010101;
}

footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .container p {
    color: white;
    text-align: center;
}

@media only screen and (min-width: 380px) {
    h1 {
        font-size: 45px;
        line-height: 60px;
    }
}

@media only screen and (min-width: 400px) {
    h3 {
        text-align: left;
    }
}

@media only screen and (min-width: 480px) {
    h1 {
        font-size: 50px;
        line-height: 65px;
    }
}

@media only screen and (min-width: 567px) {
    .main-content .container {
        padding: 0 15px;
    }

    .first-block {
        padding: 30px 0px;
    }

    .green-block {
        border-radius: 6px;
    }

    .table-block {
        padding: 20px 0px;
    }

    .bottom-block {
        padding: 30px 0px;
    }

    .bottom-wrap-btn {
        padding: 0;
    }
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 60px;
        line-height: 75px;
    }
}