
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  outline: 0;
  border: 0;
  box-sizing: border-box;
  font-family: var(--font-main);
}


:where(ul, ol):where([class]) {
  padding-left: 0px;
}


:where(h1, h2, h3, h4, h5, h6, p, ol, dl, ul):where([class]) {
  margin-block: 0px;
}

body,
:where(blockquote, figure):where([class]) {
  margin: 0px;
}

:where(dd, [class]) {
  margin-left: 0px;
}

:where(ul, [class]) {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

svg *[fill]{fill: currentColor;}
svg *[stroke]{stroke: currentColor;}


svg *{
  transition-property: fill, stroke;
}

input, textarea, select, button {
  font: inherit;
}

html {
  height: 100%;
  scroll-padding-top: 150px;
  /*scroll-behavior: smooth;*/
}

body {
  min-height: 100%;
  line-height: 1.5;
}

@media (srefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --color-white: #FAFBFE;
  --color-alternat-white:  #E1E1DC;
  --color-light: #BEC3D0;
  --color-alternat-grey: #C9C9C0;
  --color-black: #0F141F;
  --color-dark: #1A2236;
  --color-alternat-dark: #141B29;
  --color-border: #404A5E;
  --color-grey: #9AA2B5;
  
  --color-accent: #F5C04A;
  --radius1: 12px;
  --radius2: 16px;
  --border-line: 1px solid var(--color-border);
}



body{
  background-color: var(--color-dark);
  color: var(--color-light);
}

body a{
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  &:active {
    color: inherit;
  }
}


.fd-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

main {
  min-height: calc(100vh - 566px);
}