@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.slider-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.left-slide {
  height: 100%;
  /* width: 35%; */
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}

.left-slide > div {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}

.left-slide h1 {
  font-size: 40px;
  margin-bottom: 10px;
  margin-top: -30px;
}
.right-slide {
  height: 100% !important;
  position: absolute !important;
  /* left: 35% !important; */
  width: 100% !important;
  opacity: 0.1;
  transition: transform 0.5s ease-in-out;
  /* z-index: -1; */
}

.right-slide > div {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  height: 100%;
  width: 100%;
}

button {
  border: none;
  background-color: #fff;
  /* color: #aaa; */
  color: rgba(0, 0, 0, 0.712);
  cursor: pointer;
  font-size: 16px;
  width: 40px !important;
  height: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-container .action-buttons {
  position: absolute;
  left: 35%;
  top: 50%;
  z-index: 100;
}
button {
  position: absolute;
  right: 10%;
  top: 50%;
  z-index: 100;
}

.slider-container .action-buttons .down-button {
  transform: translateX(-100%);
  border-radius: 4px 0 0 4px;
}

.slider-container .action-buttons .up-button {
  transform: translateY(-100%);
  border-radius: 0 4px 4px 0;
}

.down-button:hover,
.up-button:hover {
  background-color: #f0f0f0;
}
.down-button,
.map {
  display: none;
}

.up-button1 {
  /* position: absolute;
  right: 5px; */
  border: none;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.712);
  cursor: pointer;
  font-size: 16px;
  max-width: 600px !important;
  height: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 5px;
  padding-right: 5px;
  padding-left: 5px;
  font-weight: bold;
  text-decoration: none;
}
.impact {
  display: flex;
  align-content: space-between;
  justify-content: space-between;
}

.title-impact {
  align-self: center;
}
.my-list {
  padding-left: 30px;
}
.tour-button {
  border: none;
  background-color: #fff;
  color: rgba(0, 0, 0, 0.712);
  cursor: pointer;
  font-size: 16px;
  max-width: 600px !important;
  height: 40px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  border-radius: 5px;
  padding-right: 5px;
  padding-left: 5px;
  font-weight: bold;
  text-decoration: none;

  z-index: 100;
}

a {
  text-decoration: none;
}

.tour-button:hover {
  background-color: #a3a0a0;
  color: black;
}
