@font-face {
  font-family: "inter-normal";
  src: url(../assets/fonts/inter-normal.ttf);
}
@font-face {
  font-family: "inter-bold";
  src: url(../assets/fonts/inter-bold.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
:root {
  --white: #ffffff;
  --black: #000000;
  --gray: #8a8a8a;
}
body {
  font-family: "inter-normal";
  line-height: 1.5;
  min-height: 100vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "inter-bold";
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button,
input,
select,
textarea {
  border: none;
  outline: none;
  background: none;
}
.container {
  max-width: 1443px;
  margin: auto;
  padding: 0px 20px;
}

body.menu-opened .menu-btn .line {
  margin: 0;
  width: 70%;
}
body.menu-opened .menu-btn .line:nth-child(1) {
  transform: rotate(40deg);
}
body.menu-opened .menu-btn .line:nth-child(2) {
  transform: rotate(-40deg);
}

body.menu-opened .navigation {
  width: 100%;
  height: 100vh;
  visibility: visible;
  opacity: 1;
}
section,
footer{
  border-radius: 20px;
}