.flyer {
  /* position: absolute; */
  width: 100%;
  /* height: 400px; */
  border-top: 1px solid #dadfe6;
  border-bottom: 1px solid #dadfe6;
  background-color: white;
}

@media (max-width: 640px) {
  .flyer {
    height: 300px;
  }
}

@media (min-width: 1025px) {
  .flyer {
    height: 400px;
  }
}

.flyer .flyer_list {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  /* min-width: 1920px; */
  transition-property: transform;
  box-sizing: content-box;
}

.flyer .flyer_menu {
  position: relative;
  width: 100%;
  height: 100%;
  /* min-width: 320px; */
  align-items: right;
  background-color: #eeeeee;
  transition: background-color 0.3s;
}

@media (min-width: 1025px) {
  .flyer .flyer_menu:nth-child(1) .flyer_link:hover {
    background-color: #3891b2;
  }

  .flyer .flyer_menu:nth-child(2) .flyer_link:hover {
    background-color: #db574f;
  }

  .flyer .flyer_menu:nth-child(3) .flyer_link:hover {
    background-color: #f0b23a;
  }

  .flyer .flyer_menu:hover .flyer_title,
  .flyer .flyer_menu:hover .flyer_description,
  .flyer .flyer_menu:hover .flyer_more {
    color: white;
  }

  .flyer .flyer_menu:hover .flyer_more {
    border-bottom: 2px solid white;
  }
}

.flyer .flyer_link {
  display: block;
  position: relative;
  min-height: 400px;
  padding: 85px 60px;
  border-right: 1px solid #dadfe6;
  background-color: #eee;
  transition: background-color 0.3s, color 0.3s;
}

.flyer .flyer_link::after {
  content: "";
  display: block;
  position: absolute;
  max-width: 320px;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

@media (max-width: 1600px) {
  .flyer .flyer_link {
    padding: 30px;
  }
}

@media (max-width: 1280px) {
  .flyer .flyer_link::after {
    width: 70%;
  }
}

@media (max-width: 640px) {
  .flyer .flyer_link {
    min-height: 300px;
    padding: 25px 20px;
  }

  .flyer .flyer_link::after {
    right: 20px !important;
    width: 50%;
  }
}

.flyer .flyer_menu:nth-child(1) .flyer_link::after {
  background-image: url("../img/flyer1.png");
}

.flyer .flyer_menu:nth-child(2) .flyer_link::after {
  background-image: url("../img/flyer2.png");
}

.flyer .flyer_menu:nth-child(3) .flyer_link::after {
  background-image: url("../img/flyer3.png");
}

.flyer .flyer_title {
  transition: color 0.3s;
}

.flyer .flyer_description {
  margin-bottom: 42px;
  transition: color 0.3s;
}

.flyer .flyer_more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 35px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 2px solid #222;
  letter-spacing: -1px;
  transition: color 0.3s, border 0.3s;
}

.flyer .flyer_title,
.flyer .flyer_description,
.flyer .flyer_more{
  margin-left: 10px;
}

@media (max-width: 640px) {
  .flyer .flyer_title {
    margin-top: 10px;
    font-size: 20px;
  }

  .flyer .flyer_description {
    font-size: 16px;
  }
}

@media (min-width: 641px) {
  .flyer .flyer_title {
    margin-top: 20px;
    font-size: 24px;
  }

  .flyer .flyer_description {
    font-size: 17px;
  }
}

@media (min-width: 1281px) {
  .flyer .flyer_title {
    margin-top: 0px;
    font-size: 28px;
  }

  .flyer .flyer_description {
    font-size: 18px;
  }
}

.container_flyer {
  position: relative;
}

.flyer_mask {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

@media (max-width: 1024px) {
  .flyer_mask {
    display: block;
  }
}

.flyer_mask_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}