* { box-sizing: border-box }

html {
    position: relative;
    overflow-x: hidden;

}

body{
    position: relative;
    min-width: 320px;

    font-family: "Golos Text", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    background-color: var(--WHITE);
    color: var(--DARK_GRAY);
}

img, svg {
    max-height: 100%;
    height: auto;
    margin: 0;
}

use {
    width: 100%;
    height: 100%;
}

button {
    padding: 0;
    cursor: pointer;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 8px;
  padding: 15px 69px;
  font-size: 22px;
  font-weight: 500;
}

.btn:hover {
    background-color: #1b1b1b;
}

.btn-red {
    background: var(--BTN_RED);
    color: #fff;
}
.btn-black {
    background: #000000;
    color: #fff;
}
.btn-white {
    background: var(--BTN_WHITE);
    color: #000000;
}

input, button, textarea {
    font: inherit;
}

a {
    font-family: InterReg, 'Inter', sans-serif;
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
    list-style: none;
    padding: 0;
    margin: 0;
    
}

h1,
h2,
h3,
p,
a
figure,
fieldset {
    margin: 0;
}

h1,
h2,
h3,
p {
    cursor: default;
}

h1 {
    font-weight: 500;
    font-size: 48px;
    color: var(--TITLE_COLOR);
}


h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
}

h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

iframe {
    border: none;
}

section {
    margin-bottom: 60px;
}

.container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    min-width: 360px;
    margin: 0px auto;
}
