@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&family=Jura:wght@300..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Golos", "Golos Text", "sans-serif";
    letter-spacing: 0;
    line-height: 1.5;
}

.section {
    padding: 30px 60px;
}

.section--primary {
    background: var(--bg-primary);
}

.section--black {
    background: var(--bg-footer);
}

.section--grey {
    background: var(--bg-section-dark);
}

.section--yellow {
    background: var(--accent);
}

p {
    margin: 0;
}

.text-wrapper {
    background: var(--accent);
    display: inline-block;
    white-space: nowrap;
    margin: 5px 0 0;
}

.text-wrapper--big {
    border-radius: 40px;
    padding-right: 40px;
    padding-left: 40px;
    line-height: 145%;
}

.text-wrapper--small {
    border-radius: 20px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 140%;
}

.button {
    background: var(--accent);
    color: var(--text-secondary);
    font-size: var(--text-size-medium);
    border: none;
    border-radius: 10px;
    font-weight: 500;
    padding: 13px 0;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.button--medium {
    max-width: 267px;
    font-size: 16px;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 0;
}

.button-wrapper button {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
} 

.button-wrapper a {
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

.button-abs {
    position: absolute;
    z-index: 1;
}

.button:hover {
    background: var(--accent-hover);
}

.sticky-scroll-btn {
    position: -webkit-sticky;
    position: sticky;
    bottom: 24px; 
    z-index: 15; 
    position: sticky !important; 
}

@media (max-width: 1500px) {
    .button {
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .text-wrapper--big {
        padding-left: 20px;
        padding-right: 20px;
    }

    .button {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .button-wrapper {
        justify-content: space-between;
    }

    .button--medium {
        max-width: 100%;
    }
}

@media (max-width: 360px) {
    .only-desktop {
        display: none !important;
    }
}