.wrap {
  position: relative;
}

.wrap__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.wrap__image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header {
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  background-color: rgba(255, 238, 0, 0.664);
}

@media(max-width:375px) {
  .header {
    padding: 0px 15px;
  }
}

.header__wrap-logo {
  padding: 10px 0;
}

.header__image-logo {
  width: 99px;
  height: 99px;
}

@media(max-width:1200px) {
  .header__image-logo {
    width: 60px;
    height: 60px;
  }
}

@media(max-width:345px) {
  .header__image-logo {
    width: 40px;
    height: 40px;
  }
}

.header__title {
  font-family: 'AlexBrush';
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 10px 0 0 0;
  color: rgb(168, 109, 255);
}

@media(max-width:1400px) {
  .header__title {
    font-size: 70px;
  }
}

@media(max-width:1200px) {
  .header__title {
    font-size: 70px;
  }
}

@media(max-width:1023px) {
  .header__title {
    font-size: 50px;
  }
}

@media(max-width:830px) {
  .header__title {
    font-size: 40px;
  }
}

@media(max-width:755px) {
  .header__title {
    display: none;
  }
}

.header__wrap-input {
  display: flex;
  align-items: center;
  background-color: aliceblue;
  padding: 5px 10px 5px 10px;
  border-radius: 10px;
}

.header__input {
  background-color: aliceblue;
  display: inline-block;
  width: 200px;
  height: 30px;
  font-size: 20px;
}

@media(max-width: 1095px) {
  .header__input {
    width: 130px;
    font-size: 15px;
  }
}

.header__btn {
  width: 30px;
  background-color: aliceblue;
  margin: 0 7px;
}

.header__icon {
  display: inline-block;
  width: 30px;
}

.main {
  position: relative;
  z-index: 10;
}

.main__column-image {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media(max-width:1115px) {
  .main__column-image:nth-child(3) {
    display: none;
  }
}

.main__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

@media(max-width:1691px) {
  .main__container {
    width: 95%;
  }
}

.main__wrap-card {
  margin: 15px;
  border: 8px solid #778a791c;
  border-radius: 10px;
  box-sizing: border-box;
}

.main__image-card {
  transition-duration: 1s;
}

@media(max-width: 1409px) {
  .main__image-card {
    width: 300px;
  }
}

@media(max-width: 1115px) {
  .main__image-card {
    width: initial;
  }
}

@media(max-width: 938px) {
  .main__image-card {
    width: 300px;
  }
}

@media(max-width: 870px) {
  .main__image-card {
    width: 250px;
  }
}

@media(max-width: 623px) {
  .main__image-card {
    width: 400px;
  }
}

@media(max-width: 470px) {
  .main__image-card {
    width: 350px;
  }
}

@media(max-width: 410px) {
  .main__image-card {
    width: 300px;
  }
}

@media(max-width: 350px) {
  .main__image-card {
    width: 260px;
  }
}

.main__image-card:hover {
  transition-duration: 0.5s;
  transform: scale(1.05);
  cursor: zoom-in;
}

.footer {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 30px;
  background-color: rgba(255, 238, 0, 0.664);
}

@media(max-width: 580px) {
  .footer {
    justify-content: space-between;
    padding: 10px 30px;
  }
}

@media(max-width: 415px) {
  .footer {
    justify-content: space-between;
    padding: 10px 15px;
  }
}

.footer__item {
  font-family: 'AlexBrush';
  font-weight: 700;
  letter-spacing: 0.1rem;
  font-size: 50px;
}

.footer__link {}

.footer__logo {
  display: inline-block;
  width: 80px;
  height: 80px;
}

@media(max-width: 580px) {
  .footer__item {
    font-size: 40px;
  }

  .footer__logo {
    width: 60px;
    height: 60px;
  }
}

@media(max-width: 370px) {
  .footer__item {
    font-size: 30px;
  }

  .footer__logo {
    width: 50px;
    height: 50px;
  }
}