.main,
.wrapper,
body {
    position: relative
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    color: var(--main-color);
    font-family: var(--regular);
    line-height: 140%
}

*,
:after,
:before {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

:active,
:focus,
a:active,
a:focus {
    outline: 0
}

aside,
footer,
hero,
nav {
    display: block
}

body,
html {
    height: 100%;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button,
input,
textarea {
    font-family: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a,
a:hover,
a:visited {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

:root {
    --main-bg: #F7F8FA;
    --accent-bg: #FFD60A;
    --main-color: #000813;
    --card-bg: #FFFFFF;
    --grey-color: #D2CFCF;
    --bold: Manrope-Bold, sans-serif;
    --semibold: Manrope-SemiBold, sans-serif;
    --medium: Manrope-Medium, sans-serif;
    --regular: Manrope-Regular, sans-serif;
    --unbounded-bold: Unbounded-Bold, sans-serif;
}

@font-face {
  font-family: "Manrope-Regular";
  src: url("/wp-content/themes/rembl/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope-Medium";
  src: url("/wp-content/themes/rembl/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope-SemiBold";
  src: url("/wp-content/themes/rembl/fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope-Bold";
  src: url("/wp-content/themes/rembl/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded-Bold";
  src: url("/wp-content/themes/rembl/fonts/Unbounded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
::selection {
    background: #ffd60ac5;
    color: var(--main-color)
}

::-moz-selection {
     background: #ffd60ac5;
    color: var(--main-color)
}

a[x-apple-data-detectors-type=address],
a[x-apple-data-detectors-type=email],
a[x-apple-data-detectors-type=telephone],
a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    font: inherit !important;
    background: 0 0 !important
}

canvas::selection,
img::selection,
svg::selection,
video::selection {
    background: 0 0;
    color: inherit
}

canvas::-moz-selection,
img::-moz-selection,
svg::-moz-selection,
video::-moz-selection {
    background: 0 0;
    color: inherit
}

canvas,
img,
svg,
video {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none
}

html {
    scroll-behavior: smooth
}

.burger,
.header__list-item,
.services-page__nav-top,
a,
button,
div[role=button],
summary {
    -webkit-tap-highlight-color: transparent
}

body {
    background: var(--main-bg)
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden
}

.main {
    flex: 1 1 auto;
    z-index: 1
}

.container {
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1400px
}

.element-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: .6s
}

.element-show {
    opacity: 1;
    transform: translateY(0)
}