* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}
a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: none;
}

ul {
    margin: 0;
}

ul li {
    list-style: none;
}

@font-face {
    font-family: "Amerika Sans";
  src: url("../fonts/AmerikaSansDom-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

:root {
    --font-family: "Nunito Sans", sans-serif;
    --font3: "Montserrat", sans-serif;
    --font4: "Amerika Sans", sans-serif;
    --main-bg-color: #000;
    --1: #d0d0ce;
    --2: #86898c;
    --3: #191919;
    --4: #cd001a;
    --5: #fff;
    --6: #f4f7f8;
    --4-domenik: #e52729;
    --bezh: #e2dbdb;
    --fluid-80-28: clamp(28px, -9.393258427px + 4.8689138577vw, 80px);
    --fluid-40-22: clamp(22px, 9.0561797753px + 1.6853932584vw, 40px);
    --fluid-32-18: clamp(18px, 7.9325842697px + 1.3108614232vw, 32px);
    --fluid-24-18: clamp(18px, 13.6853932584px + 0.5617977528vw, 24px);
    --fluid-27-18: clamp(18px, 11.5280898876px + 0.8426966292vw, 27px);
    --fluid-20-15: clamp(15px, 11.404494382px + 0.468164794vw, 20px);
}

html {
    font-size: 16px;
    height: 100%;
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    font-family: var(--font-family);
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

header {
    position: absolute;
}

.wrapper {
    position: relative;
    overflow: clip;
    min-height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

[class*=__container] {
    max-width: 1836px;
    box-sizing: content-box;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-border {
    transform: translateZ(0);
    position: relative;
    outline: none;
    text-decoration: none;
    overflow: hidden;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0px 30px;
    background: transparent;
    border-radius: 0px;
    border: 1px solid var(--bezh);
    max-width: 100%;
    height: 48px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bezh);
    transition: all 0.45s linear;
}

.btn-color {
    transform: translateZ(0);
    position: relative;
    outline: none;
    text-decoration: none;
    overflow: hidden;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0px 30px;
    background: var(--bezh);
    border-radius: 0px;
    border: 1px solid var(--bezh);
    max-width: 100%;
    height: 48px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    transition: all 0.35s linear;
}

@media (any-hover: hover) {
    .btn-border:hover {
        background: var(--bezh);
        color: #000;
    }

    .btn-color:hover {
        background: transparent;
        color: var(--bezh);
    }
}