.catalog {
  background: #A0A09F;
  position: relative;
  overflow: hidden;
}
.catalog__image {
  position: absolute;
  left: 50%;
  top: 30%;
  max-width: 670px;
  width: 100%;
  overflow: visible;
  opacity: 1;
  transform: translateY(30px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.catalog__image.visible {
  opacity: 1;
  transform: translateY(0);
}
.catalog__content {
  display: flex;
  flex-flow: column;
  padding: 50px 0px;
  gap: 64px;
}
.catalog__body {
  display: flex;
  flex-flow: column;
  gap: 138px;
}
.catalog__body-head {
  color: #f0f2f5;
}
.catalog__title {
  font-family: Geist;
  font-weight: 300;
  font-size: 100px;
  line-height: 100%;
  letter-spacing: -3.4%;
  text-transform: uppercase;
  opacity: 1;
  transform: translateX(-70%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.catalog__title:nth-child(2) {
  opacity: 1;
  transform: translateX(70%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.catalog__title:nth-child(2).visible {
  opacity: 1;
  transform: translateX(0);
}
.catalog__title.visible {
  opacity: 1;
  transform: translateX(0);
}
.catalog__body-footer {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  max-width: 55%;
  width: 100%;
  align-self: flex-end;
  align-items: center;
  color: #fff;
  gap: 32px;
}
.catalog__button {
  background: #fff;
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 30px;
  cursor: pointer;
	  color: #001c36;
  transition: 0.3s ease;
	border: 1px solid #fff;
}

.catalog__button svg path {
	transition: 0.3s ease;
}

.catalog__button:hover {
	background: transparent;
	color: #fff;
}

.catalog__button:hover svg path {
	fill: #fff;
}

.catalog__button p {
  font-family: Geist;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0px;
  text-align: center;

}

@media (max-width: 1024px) {
  .catalog {
    height: 715px;
  }
  .catalog__content {
    padding: 48px 0;
    position: relative;
  }
  .catalog__title {
    font-family: Geist;
    font-weight: 300;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -3.4%;
    text-transform: uppercase;
    transform: translateX(-70%);
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
  .catalog__title:nth-child(2) {
    opacity: 1;
    transform: translateX(60%);
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
  .catalog__button {
    position: absolute;
    left: 0;
    transform: translateY(125%);
	margin-top: 28px;
  }
  .catalog__body {
    gap: 0;
  }
  .catalog__body-footer {
    max-width: 100%;
    justify-content: flex-end;
  }
  .catalog__image {
    max-height: 33%;
    top: 57%;
  }
	.catalog__body-head {
		padding-top: 8px;
	}
}/*# sourceMappingURL=style.css.map */