@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Bold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Regular.ttf");
    font-weight: 400;
}

@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Medium.ttf");
    font-weight: 500;
}

@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Thin.ttf");
    font-weight: 100;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
    outline: none !important;
}

.container {
    width: 1400px;
    margin: 84px auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.button {
    border-radius: 6px;
    padding: 14px 22px;
    backdrop-filter: blur(25px);
    background: #f8d000;
    border: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #323232;
    transition: 0.3s;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

.white_button {
    background: #fff;
}

.button:hover {
    background: #ffe55e;
}

summary::marker,
summary::-webkit-details-marker {
    display: none;
    content: "";
}

.h1 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 110%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.h2,
.h2_adaptiv {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #323232;
}

.h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #323232;
}

input[type="checkbox"] {
    accent-color: #5ab563;
    width: 16px;
    height: 16px;
}

body.no-scroll {
    overflow: hidden;
}

@media screen and (max-width: 1500px) {
    .container {
        width: 1000px;
        margin: 68px auto;
    }
}

@media screen and (max-width: 1080px) {
    .container {
        width: 594px;
        margin: 56px auto;
    }
}

@media screen and (max-width: 672px) {
    .container {
        width: 324px;
        margin: 48px auto;
    }

    .h1 {
        font-size: 36px;
    }

    .h2,
    .h2_adaptiv {
        font-size: 28px;
    }

.processing_policy .h2, .privacy_policy .h2 {
    	font-size: 24px;
	}
}

.processing_policy, .privacy_policy {
    padding: 80px 0 20px;
}

.processing_policy .h2, .privacy_policy .h2 {
    margin-bottom: 20px;
}
