:root {
  --bg: #d8b488;
  --lang-btn-bg: #64442d;
  --lang-btn-active: linear-gradient(45deg, #64442d, #e0ac7d, #64442d);
  --lang-btn-top: #64442d;
}

.languageChange {
  font-family: var(--MSIBodyFont);
  font-size: 14px;
  position: fixed;
  z-index: 800;
  right: 0;
  bottom: 30px;
}
.languageChange a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--lang-btn-bg);
  margin-bottom: 1px;
}
.languageChange a img {
  width: 20px;
}
.languageChange a:hover, .languageChange a.gotop:hover {
  background: #e0ac7d;
}
.languageChange a.gotop {
  background: var(--lang-btn-top);
  cursor: pointer;
}
.languageChange a.active {
  background: var(--lang-btn-active);
}

.temp {
  font-family: var(--MSIBodyFont);
  background: linear-gradient(45deg, #f0d5b9, #e0ac7d, #f0d5b9, #e0ac7d, #f0d5b9);
  color: #fff;
  font-size: 17px;
  overflow: hidden;
  position: relative;
}
.temp::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/sand.png") top left repeat;
}
.temp__wrapper {
  position: relative;
  z-index: 2;
  background: url("../images/bg-bottom.png") top left repeat-y;
  background-size: 100% auto;
}
.temp .kv {
  position: relative;
}
.temp .kv img {
  width: 100%;
}
.temp .kv__bg {
  position: relative;
  z-index: 0;
}
.temp .kv__inner {
  position: absolute;
  z-index: 2;
  inset: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 996px) {
  .temp .kv__inner {
    inset: 0px 10%;
  }
}
.temp .kv .leave {
  position: absolute;
  z-index: 1;
  top: -5%;
  left: -5%;
  width: 20%;
  animation: 5s leave infinite ease-in-out;
}
.temp .kv .leave2 {
  position: absolute;
  z-index: 1;
  top: -5%;
  right: -5%;
  width: 20%;
  animation: 5s leave2 infinite ease-in-out;
}
.temp .kv__title {
  position: relative;
  filter: drop-shadow(0px 1px 20px #0d3a79);
}
@media (min-width: 996px) {
  .temp .kv__title {
    width: 70%;
    margin: 0 auto;
    max-width: auto;
  }
}
.temp .kv__badge {
  position: absolute;
  z-index: 3;
  right: 30px;
  top: 30px;
  width: 10%;
}
.temp .kv__prod {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .temp .kv__prod {
    width: 70%;
  }
}
.temp .kv .gift {
  position: absolute;
  right: 0;
  top: 85%;
  width: 50%;
  animation: 3s gift infinite ease-in-out;
}
@media (min-width: 996px) {
  .temp .kv .gift {
    top: 20%;
    width: 40%;
    left: 70%;
    right: auto;
  }
}
@keyframes leave {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(5deg);
  }
}
@keyframes leave2 {
  0%, 100% {
    transform: translateY(0px) rotate(180deg);
  }
  50% {
    transform: translateY(20px) rotate(175deg);
  }
}
@keyframes gift {
  0%, 100% {
    transform: translateY(0px);
    filter: drop-shadow(0px 1px 0px #d8b488);
  }
  50% {
    transform: translateY(20px);
    filter: drop-shadow(0px 1px 20px #d8b488);
  }
}
