body {
  font-family: "Sen", sans-serif;
  padding: 0;
  margin: 0;
}

.section--header {
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
}
.section--header .title--big {
  position: absolute;
  top: auto;
  bottom: auto;
  margin: 0;
  align-self: center;
  justify-self: center;
  text-align: center;
  left: 10px;
}
.section--header .title--big a {
  color: black;
  text-decoration: none;
}
.section--header .btn-mobile {
  position: absolute;
  top: auto;
  bottom: auto;
  font-size: 1.25em;
  right: 10px;
  align-self: center;
  font-family: "Sen", sans-serif;
  border: none;
  border-left: 1px solid black;
  background: none;
  background-color: white;
  transition: 300ms;
  animation-timing-function: ease-in-out;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}
.section--header .btn-mobile:hover {
  background-color: rgba(108, 214, 200, 0.212);
  color: black;
}
.section--header .btn-mobile-enabled {
  background-color: #6CD6C7;
  color: white;
}
.section--header .nav__list {
  display: flex;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  flex-grow: 1;
  padding: 0;
}
.section--header .nav__list-el {
  border-right: 1px solid black;
}
.section--header .nav__list-el:nth-last-child(1) {
  margin-right: 0;
  margin-left: 5px;
  border-left: 1px solid black;
  border-right: 0px;
}
.section--header .nav__list-el a {
  color: black;
  text-decoration: none;
  font-size: 1.563em;
  transition: 300ms;
  animation-timing-function: ease-in;
  padding: 10px 10px 10px 10px;
  box-shadow: 0 50px 0 0 rgba(0, 0, 0, 0);
}
.section--header .nav__list-el a:hover {
  box-shadow: 0 2px 0 0 #6CD6C7;
}

.section--main {
  position: relative;
}
.section--main .title--medium {
  text-align: end;
  display: block;
  margin: 0;
  margin-right: 10px;
}
.section--main p {
  text-align: end;
  display: block;
  margin-left: auto;
  margin-right: 10px;
}
.section--main .container {
  margin-top: 75px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  left: auto;
  right: auto;
  width: 100vw;
  max-width: 100%;
  top: 0;
  opacity: 0;
  transition: 300ms;
}
.section--main .container .img {
  max-width: 414px;
  margin: 0px 50px;
  border: 1px solid #000;
}
.section--main .container--desk .img {
  max-width: 720px;
}
.section--main .container--ukit .img {
  width: 80%;
}
.section--main .show {
  opacity: 100;
}
/*# sourceMappingURL=app.css.map*/