.HomeWindow {
  padding-top: 60px;
  margin: 0 15px 0;
  padding-bottom: 100px;
}
.HomeWindow h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin-bottom: 40px;
}
.HomeWindow__Row {
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  align-items: center;
}
.HomeWindow__FAQ, .HomeWindow__Scroll {
  width: 50%;
  flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.HomeWindow__FAQ__Item {
  cursor: pointer;
  box-shadow: 0 4px 10px 10px rgba(0, 0, 0, 0.0392156863);
  margin-bottom: 15px;
  border-radius: 15px;
  background: white;
  padding: 15px;
}
.HomeWindow__FAQ__Item__Title {
  display: flex;
  align-items: center;
}
.HomeWindow__FAQ__Item__Title h5 {
  width: calc(100% - 50px);
  font-weight: 600;
  font-size: 20px;
}
.HomeWindow__FAQ__Item__Title span {
  width: 50px;
  display: flex;
  justify-content: flex-end;
}
.HomeWindow__FAQ__Item__Title span img {
  width: 20px;
  height: 20px;
  transition: 0.3s;
}
.HomeWindow__FAQ__Item__Answer {
  max-height: 0;
  transition: 0.3s;
  overflow: hidden;
  opacity: 0;
}
.HomeWindow__FAQ__Item._active img {
  transform: rotate(180deg);
}
.HomeWindow__FAQ__Item._active .HomeWindow__FAQ__Item__Answer {
  margin-top: 30px;
  max-height: 400px;
  opacity: 1;
}
.HomeWindow__Container {
  max-width: 700px;
  margin: auto;
  position: relative;
}
.HomeWindow__Background {
  overflow: hidden;
  border-radius: 25px;
  max-width: 100%;
  position: relative;
}
.HomeWindow__Background__Bg {
  background: #000;
  height: 44px;
  width: 100%;
}
.HomeWindow__Background__Dots {
  position: absolute;
  top: 10px;
  left: 17px;
}
.HomeWindow__Background__SearchBar {
  position: absolute;
  top: 9px;
  left: 91px;
}
.HomeWindow__Background__Content {
  background: #242424;
  width: 100%;
  height: 900px;
}
.HomeWindow__Background img {
  pointer-events: none;
  user-select: none;
  width: 100%;
  object-fit: cover;
}
.HomeWindow__Images {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.HomeWindow__Images img {
  border-radius: 15px;
  max-width: none !important;
}
.HomeWindow__Images__Item {
  left: 5%;
  width: 90px;
  top: 57px;
  height: calc(100% - 80px);
  position: absolute;
  overflow: hidden;
}
.HomeWindow__Images__Item--Before {
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
}
.HomeWindow__Images__Item--After {
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  left: auto;
}
.HomeWindow__Images__Item--After img {
  position: absolute;
  right: 0;
  max-width: none !important;
}
.HomeWindow__Images__Item img {
  height: 850px;
  pointer-events: none;
  user-select: none;
  object-fit: cover;
}
.HomeWindow__Drag {
  position: absolute;
  top: 57px;
  height: calc(100% - 80px);
  margin-right: -53px;
  width: 53px;
  cursor: col-resize;
}
.HomeWindow__Drag__Actual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.HomeWindow__Drag__Actual:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background: #FF79B2;
  z-index: 3;
}
.HomeWindow__Drag__Actual img {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 53px;
}
.HomeWindow__Drag img {
  height: 850px;
  pointer-events: none;
  user-select: none;
}
