:root {
  --orange-accent: #FD3D0E;
  --white: #ffffff;
  --black: #040404;
  --bg-black: rgba(54, 54, 54, 1);
  --light-black: rgba(58, 58, 58, 1);
  --grid-black: rgba(74, 74, 74, 1);
  --gray: #DDDDDD;
  --bg-gray: #F0F0F0;
  --grid-gray: #E4E4E4;
  --light-gray: #F4F4F4;
}


/* RESET */
* {
  padding: 0;
  margin: 0;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: var(--black);
}

a:hover {
  color: var(--orange-accent);
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}


p {
  font-size: inherit;
  font-weight: inherit;
}

h1 {
  font-family: Oswald, sans-serif;
  font-size: clamp(2rem, 1.05rem + 4.23vw, 6.13rem);
  font-weight: 700;
  /* font-size: 98px; */
  /*line-height: 110%;*/
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--black);
}

h2 {
  font-family: Oswald;
  font-size: clamp(1.75rem, 1.32rem + 1.92vw, 3.63rem);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--black);
  /* font-size: 58px; */
}

h3 {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.38rem, 1.29rem + 0.38vw, 1.75rem);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--black);
}

h4 {
  font-family: Oswald, sans-serif;
  font-size: clamp(1.38rem, 1.29rem + 0.38vw, 1.75rem);
  font-weight: 700;
}

/* h5 {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
} */

h6 {
  font-size: clamp(1.38rem, 1.29rem + 0.38vw, 1.75rem);
  font-weight: 700;
}

* ul,
ol {
  list-style-type: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

textarea {
  resize: none;
  height: 100%;
  width: 100%;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active,
textarea:active,
textarea:focus {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/*MEDIA QUERY*/

/* от бесконечности до 1440px */
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

/* От 1080px до 1439.98px */
@media (min-width: 1080px) and (max-width: 1439.98px) {
  .container {
    max-width: 1080px;
  }
}

/* От 1079.98px до 768px */
@media (min-width: 768px) and (max-width: 1079.98px) {
  .container {
    max-width: 720px;
  }
}

/* От 768px до 360px */
@media (min-width: 360px) and (max-width: 767.98px) {
  .container {
    max-width: 360px;
  }
}

/* От 360px до самых маленьких */
@media (max-width: 359.98px) {
  .container {
    max-width: 310px;
  }
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex-grow: 1;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.container_fluide {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@keyframes action {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body {
  font-size: clamp(1rem, 0.83rem + 0.77vw, 1.75rem);
}

main {
  flex-grow: 1;
  background-color: #ffffff;
}


/* DISPLAY */
.display_none {
  display: none;
}

.display_block {
  display: block;
}

.display_flex {
  display: flex;
}

.display_grid {
  display: grid;
}

/* GRID */
.column_2 {
  grid-template-columns: 1fr 1fr;
}

/* GAP */
.column_gap_30 {
  column-gap: 30px;
}

/* COLOR */
.bg_color_white {
  background-color: var(--whitemain);
}

.bg_color_gray {
  background-color: var(--graybody);
}

/*ALIGN*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.jc_center {
  justify-content: center;
}

.text_uppercase {
  text-transform: uppercase;
}

/* POZITION */

.position_fixed {
  position: fixed;
  right: 0;
  top: 0;
}

.padding_80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding_top_0 {
  padding-top: 0;
}

.padding_bottom_0 {
  padding-bottom: 0;
}

.margin_top_0 {
  margin-top: 0;
}

.margin_bottom_0 {
  margin-bottom: 0;
}


