.kv {
  position: relative;
  background: url("../images/bg.png") center center repeat;
  background-color: #5eb6dc;
  padding: 50px 15px 0;
  overflow: hidden;
}
.kv img {
  width: 100%;
  vertical-align: bottom;
}
.kv::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  background: url("../images/line-top.png") bottom center no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .kv::before {
    height: 80px;
  }
}
.kv::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 50px;
  bottom: 40px;
  left: 0;
  background: url("../images/line-bottom.png") top center no-repeat ;
  background-size: cover;
}
.kv__box {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
}
.kv__title {
  position: relative;
  width: 60%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .kv__title {
    position: absolute;
    width: 20%;
    left: 20%;
    top: 14%;
  }
}
.kv__title-title-1 {
  opacity: 0;
  animation: title1 1.5s forwards ease-out 0.5s;
  position: relative;
  z-index: 2;
}
.kv__title-title-2 {
  opacity: 0;
  animation: title2 1.5s forwards ease-out 0.7s;
  position: relative;
  z-index: 1;
  margin-top: -20px;
}
.kv__title-date {
  opacity: 0;
  transform: translateX(-100%);
  animation: date-fade-in 0.2s forwards ease-out 2s;
}
.kv__title-nail {
  position: absolute;
  opacity: 0;
  width: 10%;
}
.kv__title-nail-1 {
  top: -5%;
  left: 35%;
  transform: rotate(-15deg);
  z-index: 3;
  animation: nail1 0.5s forwards ease-out 1.8s;
}
.kv__title-nail-2 {
  top: 30%;
  left: 48%;
  transform: rotate(-15deg);
  z-index: 3;
  animation: nail1 0.5s forwards ease-out 2s;
}
.kv__deco {
  position: absolute;
  top: -5%;
  z-index: 2;
  transform: scale(1.02);
  opacity: 0;
  animation: deco 0.5s forwards ease-out 2s;
}
@media (min-width: 996px) {
  .kv__deco {
    width: 70%;
    top: 5%;
    left: 15%;
  }
}
.kv__sale {
  position: absolute;
  width: 25%;
  top: 50vw;
  opacity: 0;
  transform: translateY(-100%);
  animation: sale-drop-in 0.8s forwards ease-out 1.7s;
}
@media (min-width: 996px) {
  .kv__sale {
    width: 12%;
    top: 3%;
    left: 45%;
  }
}
.kv__pdBox {
  position: relative;
  z-index: 3;
  margin-top: -5vw;
  padding-bottom: 50px;
}
.kv__pd-peo {
  position: absolute;
  width: 40%;
  top: 15%;
  left: 21%;
  opacity: 0;
  animation: pd-entrance 1.5s forwards ease-out;
}
.kv__pd-peo::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 10%;
  top: 10%;
  transform: rotate(-35deg);
  background: url("../images/kv-heart.png") center center no-repeat ;
  background-size: cover;
  opacity: 0;
  animation: heart-bubble 2s infinite ease-out 1.5s;
}
.kv__pd-peo::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: 5%;
  top: 0%;
  background: url("../images/kv-heart.png") center center no-repeat ;
  background-size: cover;
  opacity: 0;
  animation: heart-bubble 2.5s infinite ease-out 1.9s;
}
@media (min-width: 996px) {
  .kv__pd-peo {
    width: 20%;
    left: 40%;
    top: auto;
    bottom: 7%;
  }
}
.kv__note {
  position: absolute;
  z-index: 3;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #f2f2f2;
  padding: 10px;
}
.kv__note img {
  width: auto;
}
@media (min-width: 996px) {
  .kv__note img {
    width: 25%;
  }
}
.kv-star {
  position: absolute;
  z-index: 4;
  opacity: 0;
}
.kv-star-1 {
  top: 10%;
  left: 15%;
  width: 10%;
  animation: star-twinkle 1.5s infinite ease-in-out 4s;
}
@media (min-width: 996px) {
  .kv-star-1 {
    width: 3%;
    left: 18%;
    top: 25%;
  }
}
.kv-star-2 {
  top: 40%;
  right: 27%;
  width: 8%;
  animation: star-twinkle 2s infinite ease-in-out 4.5s;
}
@media (min-width: 996px) {
  .kv-star-2 {
    top: 35%;
    right: 15%;
    width: 2%;
  }
}
.kv-star-3 {
  top: 65%;
  left: 10%;
  width: 8%;
  animation: star-twinkle 2.5s infinite ease-in-out 5s;
}
@media (min-width: 996px) {
  .kv-star-3 {
    top: 10%;
    left: 60%;
    width: 1.5%;
  }
}

@keyframes title1 {
  0% {
    transform: translateX(-150%) rotate(-15deg);
    opacity: 0;
  }
  40% {
    transform: translateX(-20%) rotate(10deg);
    opacity: 1;
  }
  70% {
    transform: translateX(10%) rotate(-5deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes title2 {
  0% {
    transform: translateX(-150%) rotate(-10deg);
    opacity: 0;
  }
  40% {
    transform: translateX(-15%) rotate(5deg);
    opacity: 1;
  }
  70% {
    transform: translateX(5%) rotate(-2deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes nail1 {
  0% {
    opacity: 0;
    transform: scale(1.2) translateY(-10px);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes date-fade-in {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes deco {
  0% {
    opacity: 0;
    transform: scale(1) translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0px);
  }
}
@keyframes pd-entrance {
  0% {
    opacity: 0;
    transform: translateY(-100%) translateX(-15%) rotate(-10deg);
  }
  30% {
    opacity: 1;
    transform: translateY(-10%) translateX(10%) rotate(8deg);
  }
  60% {
    opacity: 1;
    transform: translateY(5%) translateX(-5%) rotate(-4deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0) rotate(0deg);
  }
}
@keyframes heart-bubble {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  50% {
    opacity: 1;
    transform: translateY(-30px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(0.5);
  }
}
@keyframes star-twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  20% {
    opacity: 1;
    transform: scale(1.2);
  }
  40% {
    opacity: 0;
    transform: scale(0.5);
  }
  60% {
    opacity: 1;
    transform: scale(1.1);
  }
  80% {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes sale-drop-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bundle {
  padding: 45px 0;
}
.bundle .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/kv-bg-xs.jpg") top right no-repeat ;
  background-size: cover;
  padding: 15px 15px 20px;
  border-radius: 30px;
}
.bundle .slick-arrow:hover {
  box-shadow: #99336e 0 0 10px;
}
.bundle .slick-slide {
  margin: 10px;
}
.bundle .pull-left {
  width: 40px;
  left: -12px;
}
.bundle .pull-right {
  width: 40px;
  right: -12px;
}

.pdBox {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: url("../images/kv-bg-xs.jpg") top right no-repeat ;
  background-size: cover;
  padding: 20px;
  text-align: center;
}
@media (min-width: 996px) {
  .pdBox {
    padding: 40px;
    min-height: 800px;
  }
}
.pdBox::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 5px;
  border-radius: 30px;
  background: #fff;
}
.pdBox__toptitle {
  position: relative;
  z-index: 2;
}
.pdBox__toptitle p {
  background: url("../images/kv-bg-xs.jpg") top right no-repeat ;
  background-size: cover;
  display: inline-block;
  border-radius: 30px;
  color: #fff;
  padding: 15px;
  font-size: 22px;
  font-weight: bold;
}
@media (min-width: 996px) {
  .pdBox__toptitle p {
    font-size: 26px;
    padding: 15px 35px;
  }
}
.pdBox figure {
  position: relative;
  z-index: 2;
}
.pdBox__nb {
  width: 80%;
  margin: 0 auto;
  max-width: 350px;
}
@media (min-width: 996px) {
  .pdBox__bundle {
    display: flex;
    align-items: center;
  }
  .pdBox__bundle--txt {
    flex: 0 0 50%;
    margin-right: 25px;
  }
}
.pdBox__bundle h3 {
  text-transform: uppercase;
  color: transparent;
  background: url("../images/kv-bg.jpg") center center no-repeat ;
  background-size: cover;
  background-clip: text;
  font-size: 20px;
  padding: 10px 0;
}
@media (min-width: 996px) {
  .pdBox__bundle h3 {
    font-size: 24px;
  }
}
.pdBox__bundle p {
  border: #ccc 1px solid;
  border-radius: 30px;
  padding: 10px;
  margin-bottom: 5px;
}

.promo {
  background: url("../images/kv-bg.jpg") top right no-repeat ;
  background-size: cover;
  border-radius: 30px;
  overflow: hidden;
}
.promo__btn {
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 996px) {
  .promo__btn {
    flex-direction: row;
    justify-content: center;
  }
}
.promo__btn button {
  background: #fff;
  border-radius: 30px;
  display: block;
  padding: 10px;
  width: 100%;
  margin: 5px 0;
}
@media (min-width: 996px) {
  .promo__btn button {
    width: auto;
    margin: 5px;
    padding: 15px 45px;
  }
}
.promo__btn button:hover {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: #fff 0 0 30px;
  color: #fff;
}

.mainBody {
  position: relative;
  width: 100%;
}
.mainBody::before {
  content: "";
  background: url("../images/word-s1.png") repeat-y center top;
  background-size: 35%;
  position: absolute;
  right: 0;
  width: 10%;
  height: 100%;
  top: 0;
}
.mainBody::after {
  content: "";
  background: url("../images/word-s1.png") repeat-y center top;
  background-size: 35%;
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  top: 0;
}

.mainarea {
  position: relative;
  width: 100%;
  width: 84%;
  margin: 0 auto;
  max-width: 1680px;
  background: #fff;
}
.mainarea-topline {
  width: 84%;
  margin: 0 auto;
  max-width: 1680px;
  height: 50px;
  background: url("../images/line.png") left bottom repeat-x;
  filter: drop-shadow(#333 0 0 30px);
}
.mainarea-bottomline {
  width: 84%;
  margin: 0 auto;
  max-width: 1680px;
  height: 50px;
  background: url("../images/line.png") left bottom repeat-x;
  filter: drop-shadow(#333 0 -80px 30px);
  transform: rotate(180deg);
  padding-bottom: 100px;
}

.shopsp {
  margin-top: 60px;
}

.shop {
  position: relative;
  padding: 45px 25px;
  background: url("../images/bg.png") center center repeat;
  background-color: #5eb6dc;
}
@media (min-width: 996px) {
  .shop {
    padding-top: 100px;
  }
}
.shop::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
  background: url("../images/line-top.png") bottom center no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .shop::before {
    height: 80px;
  }
}

.wtb__box {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}
.wtb__list {
  padding-bottom: 20px;
}

.tbList {
  border-radius: 30px;
  overflow: hidden;
  background: #eee;
  text-align: center;
}
@media (min-width: 996px) {
  .tbList {
    display: table;
    border-collapse: collapse;
    width: 100%;
  }
}
.tbList .th {
  display: none;
  color: #fff;
  padding: 15px;
  background: #369;
}
.tbList .th.noline {
  border: none;
}
@media (min-width: 996px) {
  .tbList .th {
    display: table-cell;
    border-left: #fff 1px solid;
  }
  .tbList .th:first-child {
    border: none;
  }
}
.tbList .tr {
  padding: 15px;
}
@media (min-width: 996px) {
  .tbList .tr {
    display: table-row;
    padding: 0;
    border-bottom: #ccc 1px solid;
  }
  .tbList .tr:first-child {
    background: url("../images/kv-bg.jpg") center right no-repeat ;
    background-size: cover;
  }
  .tbList .tr:last-child {
    border: none;
  }
}
@media (min-width: 996px) {
  .tbList .td {
    display: table-cell;
    padding: 10px;
  }
}
.tbList .title {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
}
.tbList .link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #cbddef;
}
.tbList .link::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon-link.svg") center center no-repeat ;
  background-size: cover;
}
.tbList .link:hover {
  background: #eff5fb;
}
.tbList .googlemap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #cbddef;
}
.tbList .googlemap::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon-wtb.svg") center center no-repeat ;
  background-size: cover;
}
.tbList .googlemap:hover {
  background: #eff5fb;
}
@media (min-width: 996px) {
  .tbList .show__mobile {
    display: none;
  }
}
.tbList .show__desktop {
  display: none;
}
@media (min-width: 996px) {
  .tbList .show__desktop {
    display: table-cell;
  }
}

.shopList {
  background: #369;
  border-radius: 30px;
  overflow: hidden;
}

.toggleBox {
  display: none;
  background: #d3e5fa;
  padding: 0 3px;
  color: #07294c;
}

.wtb__box-info {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  border-bottom: #c9e4f0 1px solid;
  color: #fff;
}
.wtb__box-title {
  display: none;
}
@media (min-width: 996px) {
  .wtb__box-title {
    display: table;
    width: 100%;
    border-collapse: collapse;
    color: #07032a;
  }
  .wtb__box-title li {
    display: table-cell;
    border-right: #fff 1px solid;
    padding: 10px;
  }
  .wtb__box-title li:nth-child(1) {
    width: 15%;
  }
  .wtb__box-title li:nth-child(2) {
    width: 15%;
  }
  .wtb__box-title li:nth-child(3) {
    width: 15%;
  }
  .wtb__box-title li:nth-child(4) {
    border-right: none;
  }
}
.wtb__box-content {
  background: #fff;
  padding: 10px;
}
@media (min-width: 996px) {
  .wtb__box-content {
    padding: 0;
    display: table;
    border-collapse: collapse;
    width: 100%;
    border-bottom: #ccc 1px solid;
  }
}
.wtb__box-content a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #cbddef;
}
.wtb__box-content a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon-link.svg") center center no-repeat ;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.wtb__box-content a:hover {
  background: #eff5fb;
}
.wtb__box-content li {
  position: relative;
  padding: 10px;
}
.wtb__box-content li:first-child {
  font-weight: bold;
}
.wtb__box-content li:last-child {
  padding-left: 50px;
}
.wtb__box-content li:last-child a {
  position: absolute;
  left: 0;
  top: 10px;
}
@media (min-width: 996px) {
  .wtb__box-content li {
    display: table-cell;
    min-height: 70px;
  }
  .wtb__box-content li:nth-child(1) {
    flex: 0 0 15%;
  }
  .wtb__box-content li:nth-child(2) {
    flex: 0 0 15%;
  }
  .wtb__box-content li:nth-child(3) {
    flex: 0 0 15%;
  }
  .wtb__box-content li:last-child {
    flex: 0 0 55%;
    padding: 10px 50px 10px 10px;
  }
  .wtb__box-content li:last-child a {
    left: auto;
    right: 0;
  }
}
@media (min-width: 996px) {
  .wtb__box-content {
    display: flex;
    align-items: center;
  }
}

.mail-contact {
  text-align: center;
  padding: 25px;
}
.mail-contact a {
  color: #000;
  text-decoration: underline;
  background: #c7f834;
}
.mail-contact a:hover {
  text-decoration: none;
  background: #369;
  color: #fff;
}

.popup {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}
.popup__inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  height: auto;
  background: #fff;
  color: #222;
  box-shadow: #ccc 0 0 30px;
}
.popup-close {
  position: sticky;
  top: 0;
  left: 100%;
}
.popup-close:hover::before {
  background: #3f87a5;
}
.popup-close::before {
  font-family: "msi-icons" !important;
  content: "\ea02";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #28add9;
  cursor: pointer;
}
@media (min-width: 996px) {
  .popup-close::before {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
.popup__header {
  position: sticky;
  top: 0;
  background: url("../images/kv-bg.jpg") center right no-repeat ;
  background-size: cover;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #222;
  text-shadow: #111 1px 1px 3px;
}
@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}
.popup__content {
  height: 80vh;
  overflow-y: auto;
  padding: 25px;
}
.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popup__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.popup__content::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #737576, #bdbfc3, #96999c);
  border-radius: 10px;
}
@media (min-width: 996px) {
  .popup__content {
    padding: 50px;
  }
}

.terms {
  font-size: 17px;
  line-height: 1.8;
  font-weight: normal;
}
.terms-title {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 15px;
  margin-top: 25px;
}
.terms ul {
  margin-left: 20px;
}
.terms ul li {
  list-style: disc;
  padding: 5px 0;
}
.terms ol {
  margin-left: 25px;
}
.terms ol li {
  list-style: lower-roman;
}
.terms h4 {
  padding: 15px 0;
}
.terms a {
  color: #dc1a92;
  text-decoration: underline;
}
.terms a:hover {
  text-decoration: none;
}
.terms table {
  display: table;
  margin-top: 10px;
  width: 100%;
}
.terms table th {
  background: linear-gradient(to right, #dc7d6e, #e6ac75, #ea5a5a);
  padding: 10px;
  color: #fff;
}
.terms table td {
  border: #ccc 1px solid;
  padding: 10px;
}

.redeemBox .redeem {
  padding: 25px 25px 40px;
  text-align: center;
}
.redeemBox .redeem a {
  color: #dc1a9b;
  text-decoration: underline;
}
.redeemBox .redeem a:hover {
  text-decoration: none;
}

.diablo {
  text-align: center;
}
.diablo a {
  color: #c2962f;
}
.diablo a:hover {
  text-decoration: underline;
}
.diablo .redeem__step {
  font-weight: bold;
  padding-bottom: 20px;
  margin-top: 40px;
}
.diablo .redeem__step span {
  display: inline-block;
  background: linear-gradient(45deg, rgba(129, 32, 103, 0.5), rgba(255, 98, 161, 0.5));
  border-radius: 20px;
  padding: 10px;
  color: #fff;
}
.diablo .redeem__step:first-child {
  margin-top: 0;
}
.diablo .redeem__text {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
}
.diablo .redeem__note {
  opacity: 0.6;
  padding-top: 15px;
  font-size: 14px;
}

.join {
  padding-bottom: 40px;
}
@media (min-width: 996px) {
  .join {
    padding-bottom: 80px;
  }
}
.join__flex {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
}
.join__flex a {
  color: #50aae6;
  width: 80px;
}
@media (min-width: 996px) {
  .join__flex a {
    width: 150px;
    margin: 0 auto;
  }
}
.join__flex p {
  padding-top: 10px;
  text-align: center;
}

@media (max-width: 960px) {
  .amenu {
    display: none;
  }
}

.project {
  background: url("../images/paper.png") top center repeat;
  background-color: #f2f2f2;
}
.project img {
  max-width: 100%;
  vertical-align: bottom;
}
.project picture {
  display: block;
}
.project .common__title {
  font-size: 26px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  text-shadow: #fff 3px 3px 10px;
}
@media (min-width: 996px) {
  .project .common__title {
    font-size: 48px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.project .common__sub {
  position: relative;
  text-align: center;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  background: #dbeff3;
  border-radius: 100px;
  margin: 0 auto 15px;
}
.project .common__sub--top {
  margin-top: 45px;
}
@media (min-width: 996px) {
  .project .common__sub {
    font-size: 28px;
  }
}
.project .common__btnwrap {
  text-align: center;
  padding: 25px 25px 50px;
}
.project .common__btnwrap p {
  padding-bottom: 25px;
}
.project .common__btnwrap a, .project .common__btnwrap button {
  border: #fff 1px solid;
  border-radius: 30px;
  padding: 15px 25px;
  display: inline-block;
  cursor: pointer;
  box-shadow: inset 0 0 30px #44b7c9, 0 0 25px #6dcecc;
  background: #58afe2;
  color: #fff;
}
.project .common__btnwrap a:hover, .project .common__btnwrap button:hover {
  background: #6bbbb3;
}
.project .btn {
  display: block;
  border: #ea492b 1px solid;
  color: #ea492b;
  width: 100%;
  padding: 15px;
  margin-bottom: 5px;
  position: relative;
}
.project .btn::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 5px;
  background: #2b357f;
  transition: 0.5s all ease-in-out;
}
.project .btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  bottom: -5px;
  right: 5px;
  background: #2b357f;
  transition: 0.5s all ease-in-out;
}
.project .btn span {
  display: block;
}
.project .btn:hover span {
  transform: scale(1.1);
  font-weight: bold;
}
.project .btn:hover::before, .project .btn:hover::after {
  height: calc(100% + 5px);
  background: #ea492b;
}
@media (min-width: 996px) {
  .project .btn {
    padding: 25px 45px;
    cursor: pointer;
    margin: 0 5px;
    max-width: 300px;
  }
}

.pdWP {
  position: relative;
}
.pdWP::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 30px;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #f2f2f2, transparent);
}

.msi_twYrsale {
  position: relative;
  background: url("../images/bg.png") center center repeat;
  background-color: #5eb6dc;
  padding-bottom: 50px;
}
@media (min-width: 996px) {
  .msi_twYrsale {
    padding-bottom: 100px;
  }
}
.msi_twYrsale::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  background: url("../images/line-bottom.png") top center no-repeat ;
  background-size: cover;
}
