:root {
  --font-family: "Nobile", sans-serif;
  --second-family: "Oswald", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  margin: 0 auto;
  background: #fff;
  color: #343434;
}

html {
  scroll-behavior: smooth;
}

.title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 32px;
  line-height: 175%;
  letter-spacing: -0.04em;
  color: #343434;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid #343434;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #343434;
}

.section {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease-out;
}

.container {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.logo {
  display: none;
}

@media screen and (min-width: 375px) {
  .container {
    width: 375px;
  }
}

@media screen and (min-width: 768px) {
  .container {
    width: 768px;
    padding: 0 32px;
  }
}

@media screen and (min-width: 1436px) {
  .section {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .container {
    width: 1436px;
    padding-left: 200px;
    padding-right: 100px;
    position: relative;
  }

  .title {
    font-size: 58px;
    margin-bottom: 60px;
  }

  .logo {
    display: block;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 78px;
    line-height: 105%;
    text-transform: uppercase;
    color: #fff;
    transform: rotate(-90deg);
    position: absolute;
    left: -69px;
    top: 45%;
  }
}
