* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-family: "Inter", sans-serif;
  font-style: italic;
}
.container {
  width: 100%;
  min-height: 100%;
  color: white;
  overflow: hidden;
}

.landing {
  width: 100%;
  height: 100vh;
  display: flex;
  z-index: -1;
}
.nav {
  width: 100%;
  height: 7vh;
  position: fixed;
  top: 0;
  left: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  z-index: 1;
}
.nav .icons {
  display: flex;
  gap: 30px;
}
.side-panel {
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 93vh;
}
.side-panel .image {
  width: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.side-panel img {
  width: 100%;
}
.side-panel .text {
  /* background-color: pink; */
  min-height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* align-items: center; */
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}
.side-panel .text-info {
  font-size: 16px;
}
.side-panel h1 {
  font-size: 4vw;
  font-weight: 1000;
  margin-bottom: 20px;
}
.side-panel .small-text {
  width: 70%;
  font-size: 14px;
  margin-bottom: 50px;
}
button.primary {
  width: 50%;
  padding: 10px 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 20px;
  font-size: 15px;
  font-family: "Inter", serif;
  cursor: pointer;
}
button.primary:hover {
  scale: 0.9;
}
.left-panel {
  width: 50%;
  height: 100%;
  background-color: #00a7e1;
  cursor: pointer;
  transition: all 1.4s ease-in-out;
}
.left-active .left-panel {
  width: 75%;
}
.left-active .right-panel {
  width: 25%;
}

.right-panel {
  width: 50%;
  height: 100%;
  background-color: #ffa500;
  cursor: pointer;
  transition: all 1.4s ease-in-out;
}
.right-active .right-panel {
  width: 75%;
}
.right-active .left-panel {
  width: 25%;
}