header {
  height: 105px;
  background: #4d0706;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 300px;
}

.header-logo {
  width: 80px;
  height: 80px;
}
.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-list {
  display: flex;
  gap: 30px;
}
.header-button a {
  color: #000;
  text-align: center;
  font-family: Marvin;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.header-button a {
  text-decoration: none;
}
.header-button {
  padding: 10px 27px;
  border-radius: 10px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.header-item a {
  text-decoration: none;
  color: #fff;

  font-family: "Super Bubble";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
main {
  background: #01013f;
  display: flex;
  padding: 200px 250px 100px 250px;
}

.main-desc {
  color: #fff;
  font-family: Marvin;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px; /* 250% */
  margin-bottom: 70px;
}
.main-right {
  text-align: left;
  margin-left: 80px;
}
.main-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  border: 3px solid #4d0706;
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.main-link {
  color: #000;
  text-align: center;
  font-family: Marvin;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  text-decoration: none;
}
.main-title {
  margin-bottom: 70px;
}
footer {
  height: 246px;
  background: #4d0706;
  padding: 45px 570px;
}
.footer-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-item a img {
  width: 138px;
  height: 138px;
  object-fit: cover;
}

.footer-item a {
  color: #fff;
  font-family: Marvin;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
}
.list-1,
.list-2 {
  display: flex;
  gap: 40px;
}
.header-item a:hover {
  color: red;
}
.footer-item a:hover {
  color: red;
}
.header-button:hover {
  background: rgb(255, 182, 182);
}
.main-button:hover {
  background: rgb(255, 182, 182);
}
.main-left img {
  animation: circleScale 1s infinite;
}
@keyframes circleScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 768px) {
  header {
    padding: 10px 0;
    justify-content: center;
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .header-item-hidden {
    display: none;
  }
  .header-list {
    /* display: none; */
  }
  .header-button {
    /* display: none; */
  }
  main {
    flex-direction: column;
    padding: 20px 0;
  }
  .main-left {
    text-align: center;
  }
  .main-left img {
    width: 300px;
    height: 300px;
  }
  .main-title img {
    width: 200px;
  }
  .main-right {
    margin-left: 0;
    text-align: center;
  }
  footer {
    padding: 10px 20px;
    height: auto;
  }
  .footer-list {
    text-align: center;
  }
  .list-1,
  .list-2 {
    display: block;
  }
}
@media only screen and (max-width: 1440px) {
  header {
    padding: 10px 100px;
  }
  main {
    padding: 50px;
  }
  footer {
    padding: 50px 100px;
  }
  .footer-list {
    justify-content: space-around;
    gap: 10px;
  }
}
