*,
:after,
:before {
    box-sizing: border-box
}

* {
    font: inherit;
    margin: 0;
    padding: 0
}

html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none
}

body {
    background-color: #fff;
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizespeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

main {
    margin: 0 auto;
    max-width: 1940px;
    overflow: hidden;
    /*padding-bottom: clamp(6.25rem, 4.8878205128rem + 6.4102564103vw, 12.5rem);*/
    padding-left: 7px;
    padding-right: 7px;
    width: 100%
}

.component-gap {
    margin-bottom: clamp(1.25rem, .4326923077rem + 3.8461538462vw, 5rem)
}

.main-title {
    color: #000;
    font-family: ActayWide-Bold;
    font-size: clamp(2.25rem, 1.2419871795rem + 4.7435897436vw, 4.875rem);
    font-weight: 700;
    line-height: 109%;
    text-align: center;
    text-transform: uppercase
}

.main-title span {
    color: #01ab2a
}

@media(min-width:800px) {
    .component-gap {
        margin-top: 60px
    }
}

[data-component] {
    opacity: 0;
    transition: opacity .5s ease-out, visibility .5s ease-out;
    will-change: opacity
}

[data-component=main],
[data-component].is-ready {
    opacity: 1
}

ol,
ul {
    list-style: none
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none
}

canvas,
img,
picture,
svg,
video {
    display: block;
    height: auto;
    max-width: 100%
}

button,
input,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    outline: none
}

button {
    background: none;
    border: none;
    cursor: pointer
}

textarea {
    resize: vertical
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

[hidden] {
    display: none !important
}

@media(prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}