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

html {
    scroll-behavior: smooth;
}

body {
    background: #FFFFFF;
}

::selection {
    background: #15512B;
    color: #FFFFFF;
}

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

h1:focus {
    outline: none;
}

.nav-link {
    position: relative;
    color: #48524C;
    transition: color .2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Golos Text', sans-serif;
}

.nav-link:hover {
    color: #141414;
}

.nav-link-active {
    color: #141414;
}

.lift {
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.lift:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 81, 43, 0.45);
}

.btn-pri {
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-pri:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(21, 81, 43, 0.28);
}

.btn-sec {
    transition: border-color .2s ease, color .2s ease;
}

.btn-sec:hover {
    border-color: #15512B;
    color: #15512B;
}

.fld {
    width: 100%;
    background: #F6F7F2;
    border: 1px solid rgba(18, 24, 18, 0.16);
    border-radius: 12px;
    padding: 14px 16px;
    color: #141414;
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    outline: none;
    transition: border-color .2s ease;
}

.fld:focus {
    border-color: #15512B;
}

.fld::placeholder {
    color: #9AA39B;
}

select.fld {
    appearance: none;
    cursor: pointer;
}

.faq-row {
    transition: border-color .2s ease;
}
