* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: 'OpenSans', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "OpenSans", sans-serif;
    font-size: 26px;
    line-height: 110%;
    font-weight: 400;
    color: #FFFFFF;
	background-color: #181818;
}

.container {
    max-width: 1340px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "CooperHewitt", sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 80px;
    line-height: 110%;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: 80px;
    line-height: 110%;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h3 {
    font-size: 60px;
    line-height: 108%;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h4 {
    font-size: 40px;
    line-height: 108%;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h5 {
    font-size: 28px;
    line-height: 120%;
    font-weight: 500;
}

h6 {
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
}

p {
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
}

img {
    object-fit: cover;
}

.btn {
    font-size: 18px;
    text-decoration: none;
    color: #fff;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 24px;
    gap: 6px;
    width: 247px;
    height: 63px;
    border-radius: 5px;
    overflow: hidden;
    transform: translateZ(0);
    background: linear-gradient(88.65deg, #CE6500 73.12%, #D29D00 103.24%);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(88.65deg, #D29D00 73.12%, #CE6500 103.24%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
    transform: translateY(0);
}
.btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 1280px) {
    .container {
        padding: 0 32px;
    }
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 46px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    body {
        font-size: 18px;
    }
    .btn {
        font-size: 16px;
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}