@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Black.ttf");
    font-weight: 700;
}

@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_Medium.ttf");
    font-weight: 500;
}

@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_Light.ttf");
    font-weight: 300;
}

@font-face {
    font-family: "Inter";
    src: url("../css/fonts/Inter/Inter_Thin.ttf");
    font-weight: 100;
}

@font-face {
    font-family: "Prosto_One";
    src: url("../css/fonts/Prosto_One/ProstoOne-Regular.ttf");
    font-weight: 400;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    
}

html {
    scroll-behavior: smooth;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.texteditor:focus {
    outline: none !important;
}

.container {
    width: 2000px;
    margin: 84px auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.button {
    border-radius: 5px;
    padding: 14px 22px;
    background: #ffd500;
    border: none;
    font-family: "Prosto One", sans-serif;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #151515;
    transition: 0.3s;
    cursor: pointer;
    justify-content: center;
    text-align: center;
}

.white_button {
    background: #fff;
}

.green_button {
    background: #38b000;
    color: #fff;
}

.button:hover {
    background: #38b000;
    color: #fff;
}

.green_button:hover {
    background: #fff;
    color: #151515;
}

summary::marker,
summary::-webkit-details-marker {
    display: none;
    content: "";
}

.bread_crumbs {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #bababa;
    margin: 46px 0 7px;
}

.mainslider_bread_crumbs {
    margin: 0;
    color: #fff;
}

.h1 {
    font-family: "Prosto One", sans-serif;
    font-weight: 400;
    font-size: clamp(60px, 110px, 110px);
    line-height: 120%;
    text-transform: uppercase;
    color: #fff;
}

.h2 {
    font-family: "Prosto One", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 120%;
    color: #151515;
}

.h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.02em;
    color: #323232;
}

b {
    font-weight: 600;
}

input[type="checkbox"] {
    accent-color: #5ab563;
    width: 16px;
    height: 16px;
}

body.no-scroll {
    overflow: hidden;
}

@media screen and (max-width: 2100px) {
    .container {
        width: 1400px;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        width: 1250px;
        margin: 68px auto;
    }
}

@media screen and (max-width: 1300px) {
    .container {
        width: 1000px;
        margin: 68px auto;
    }
}

@media screen and (max-width: 1080px) {
    .container {
        width: 900px;
        margin: 56px auto;
    }

    .button {
        font-size: 14px;
    }
}

@media screen and (max-width: 950px) {
    .container {
        width: 594px;
    }
}

@media screen and (max-width: 672px) {
    .container {
        width: 347px;
        margin: 48px auto;
    }

    .h1 {
        font-size: 36px;
    }

    .h2 {
        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;
}

