/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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 {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

.none {
  display: none;
}

.visibility {
  visibility: hidden;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

body {
  font-family: "Jost", sans-serif;
}

.overflow {
  overflow: hidden;
}

.page {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  color: rgb(20, 16, 36);
  font-family: "Jost", sans-serif;
  background-color: rgb(221, 222, 230);
}

.page_active {
  transition: 1s;
  background-color: rgb(12, 13, 20);
  pointer-events: none;
}

.conteiner {
  margin: 0 auto;
  padding: 0 10px;
  max-width: 1620px;
}

.catalog {
  padding-top: 70px;
  position: relative;
  width: 100%;
  height: 100vh;
}

.catalog__conteiner {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1960px;
}

.catalog__block {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.catalog__card {
  position: relative;
  display: flex;
  justify-content: center;
}

.pointer {
  pointer-events: none;
}

.logo {
  width: 100px;
  position: absolute;
  top: 5px;
  left: 5px;
}

.card_img {
  border: 1px solid rgba(28, 28, 28, 0.5);
  border-radius: 3px;
  width: 320px;
  height: 330px;
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.active {
  transition: 1s;
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  width: 60vh;
  height: auto;
  border: 1px solid rgba(28, 28, 28, 0.5);
  border-radius: 3px;
  box-shadow: 5px 5px 15px 5px rgba(245, 246, 248, 0.3);
  pointer-events: visible;
}

.element-animation {
  transform: translateY(20px);
  opacity: 0;
}

.element-animation.element-show {
  opacity: 1;
  transition: all 0.5s;
  transform: translateY(0%);
}

.element-animation-bottom {
  transform: translateY(20px);
  opacity: 0;
}

@media (max-width: 400px) {
  .active {
    width: 80vh;
  }
}
.block__section {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 70px;
}

.block_one {
  width: 200px;
  height: 200px;
  background-color: coral;
}

.block_two {
  width: 200px;
  height: 200px;
  background-color: coral;
}

.block_three {
  width: 200px;
  height: 200px;
  background-color: coral;
}

.bc {
  background-color: rgb(208, 6, 6);
}

/*# sourceMappingURL=index.css.map */
