html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    font-family: "Geologica", sans-serif;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    --primary-color: #009E49;
    --primary-color-hover: #007c36;
    --text-color: #000000;
    --text-color-light: #FFFFFF;
    --main-black: #000000;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
}

a.btn {
    border-radius: 56px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    padding: 20px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-width: 197px;
}

a.btn:hover {
    transform: scale(1.05);
    transition: transform .3s;
}

a.btn.btn_primary {
    color: var(--text-color-light);
    background: var(--primary-color);
}

a.btn.btn_primary:after {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="16" height="14" viewBox="0 0 16 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 13L15 7M15 7L10 1M15 7L1 7" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    display: inline-block;
    width: 16px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: -2px;
}

@media (max-width: 1440px) {

    .container {
        max-width: 100%;
        margin: 0 40px;
    }
}

@media (max-width: 1440px) and (min-width: 769px) {

    body {
        zoom: calc(50vw / 720px);
    }
}

@media (max-width: 700px) {

    .container {
        margin: 0 16px;
    }
}


.fade-in,
.fade-left,
.fade-right,
.fade-out{
    opacity: 0;
    transition: all 1s ease;
}


.fade-in {
    transform: translateY(50px);
}

.fade-out {
    transform: translateY(-50px);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.animate {
    opacity: 1;
    transform: translate(0, 0);
}