@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@500;700&display=swap");

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

body {
  width: 100vw;
  height: 100vh;
  font-family: "Epilogue", sans-serif;
  padding: 3rem;
  font-size: 16px;
  background-color: hsl(0, 0%, 98%);
}

.header {
  display: flex;
  justify-content: space-between;
  margin: 0 8rem;
}

.header-left {
  display: flex;
}

.header-left img {
  width: 5rem;
  height: 2rem;
}

.header-left-links a {
  text-decoration: none;
  margin-left: 3rem;
  color: hsl(0, 0%, 41%);
}

.header-left-links a:hover {
  color: hsl(0, 0%, 8%);
}

.header-left-links img {
  width: 0.6rem;
  height: 0.5rem;
  margin-left: 0.4rem;
  cursor: pointer;
}

.header-right a {
  margin-right: 3rem;
  text-decoration: none;
  color: hsl(0, 0%, 41%);
}

.header-right a:hover {
  color: hsl(0, 0%, 8%);
}

.header-right button {
  border: 2px solid hsl(0, 0%, 41%);
  background-color: transparent;
  font-size: 16px;
  width: 8rem;
  height: 3rem;
  border-radius: 15px;
  color: hsl(0, 0%, 41%);
  font-weight: 700;
  cursor: pointer;
}

.header-right button:hover {
  color: hsl(0, 0%, 8%);
  border: 2px solid hsl(0, 0%, 8%);
}

.section {
  display: flex;

  align-items: center;
  justify-content: center;
  padding: 5rem;
  margin: 0 8rem;
}
.section-left {
  width: 100%;
  padding: 3rem;
  margin-top: 5rem;
}

.section-left h1 {
  font-size: 6rem;
  width: 150%;
}

.section-left p {
  color: hsl(0, 0%, 41%);
  margin-top: 3rem;
  line-height: 1.7rem;
  font-size: 18px;
  width: 65%;
  text-align: justify;
}

.section-left button {
  width: 10rem;
  height: 3.3rem;
  border: none;
  background-color: hsl(0, 0%, 8%);
  color: hsl(0, 0%, 98%);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 15px;
  margin-top: 3.5rem;
  cursor: pointer;
}

.section-left button:hover {
  border: 2px solid hsl(0, 0%, 8%);
  background-color: transparent;
  color: hsl(0, 0%, 8%);
}

.section-left-footer {
  margin-top: 8rem;
  display: flex;
  gap: 40px;
  width: 0.5rem;
}

.section-right {
  padding: 3rem;
}

.section-right img {
  width: 100%;
  height: auto;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: hsl(0, 0%, 41%);
}

.features {
  width: 10rem;
  height: 10rem;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  position: absolute;
  top: 10%;
  right: 79%;
  padding: 0.7rem 1.2rem;
  box-shadow: 0px 1px 11px 2px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 1px 11px 2px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 1px 11px 2px rgba(0, 0, 0, 0.16);
  display: none;
}
.features p {
  margin-top: 0.7rem;
  color: hsl(0, 0%, 41%);
  font-size: 15px;
  margin-left: 0.5rem;
  text-align: left;
}

.features img {
  position: relative;
  right: 0.5rem;
}

.features a {
  text-decoration: none;
}

.company {
  width: 8rem;
  height: 8rem;
  background-color: #fff;
  border: none;
  border-radius: 20px;
  position: absolute;
  top: 10%;
  right: 71%;
  padding: 0.7rem 1.2rem;
  box-shadow: 0px 1px 11px 2px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 1px 11px 2px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 1px 11px 2px rgba(0, 0, 0, 0.16);
  display: none;
}

.company a {
  text-decoration: none;
}

.company p {
  text-align: left;
  margin-top: 0.7rem;
  color: hsl(0, 0%, 41%);
  font-size: 15px;
  position: relative;
  left: 0.5rem;
}

#arrow-up {
  display: none;
  position: absolute;
  top: 5.7%;
  right: 79.4%;
  cursor: pointer;
}

#arrow-down {
  position: absolute;
  top: 5.7%;
  right: 79.4%;
}

#arrow-up2 {
  position: absolute;
  top: 5.7%;
  right: 72.7%;
  cursor: pointer;
  display: none;
}

#arrow-down2 {
  position: absolute;
  top: 5.7%;
  right: 72.7%;
}

.header-right img {
  display: none;
}

.menu-bar-links {
  display: none;
}

.menu-bar-footer {
  display: none;
}

#close-menu {
  display: none;
}

@media screen and (max-width: 375px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    max-width: 375px;
    width: 100%;
    height: 100%;
  }

  .section {
    display: flex;
    flex-direction: column;
  }

  #arrow-up {
    display: none;
  }

  #arrow-down {
    display: none;
  }

  #arrow-up2 {
    display: none;
  }

  #arrow-down2 {
    display: none;
  }

  .header {
    display: flex;
    justify-content: space-around;
    gap: 18rem;
  }

  .header a {
    display: none;
  }

  .header button {
    display: none;
  }

  .header-right img {
    display: block;
  }

  #close-menu {
    display: block;
  }
  .section-right img {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 100%;
  }

  .section-left {
    display: flex;
    flex-direction: column;
    width: 24rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 30rem;
  }

  .section-left h1 {
    font-size: 40px;
    text-align: justify;
  }

  .section-left p {
    font-size: 16px;
    width: 125%;
    margin-right: 4rem;
  }

  .section-left button {
    margin-right: 4rem;
    width: 12rem;
    height: 4rem;
  }

  .section-left-footer {
    position: relative;
    right: 15rem;
  }

  .section-left-footer img {
    width: 4.5rem;
    height: auto;
    gap: -5px;
  }

  .menu-bar-container {
    width: 70%;
    height: 180%;
    position: absolute;
    left: 50%;
    z-index: 9;
    top: 0%;
    background-color: hsl(0, 0%, 98%);
    padding: 2rem;
    display: none;
  }

  #close-menu {
    position: relative;
    left: 60%;
  }

  .menu-bar-links {
    width: 100%;
    height: 16%;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
  }

  .menu-bar-links a {
    text-decoration: none;
    color: hsl(0, 0%, 41%);
    font-size: 20px;
    margin: 0.8rem 0;
    cursor: pointer;
  }
  .menu-bar-links img {
    margin-left: 0.5rem;
    width: 0.8rem;
  }

  .menu-bar-footer {
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
  }

  .menu-bar-footer a {
    text-decoration: none;
    font-size: 15px;
    color: hsl(0, 0%, 41%);
  }

  .menu-bar-footer button {
    margin-top: 2rem;
    width: 100%;
    height: 3rem;
    border: 2px solid hsl(0, 0%, 41%);
    color: hsl(0, 0%, 41%);
    border-radius: 20px;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
  }

  #arrow-up3 {
    display: none;
    position: relative;
    left: 50%;
    bottom: 40%;
    cursor: pointer;
  }

  #arrow-up4 {
    display: none;
  }

  .features-container {
    padding: 1rem;
    align-items: center;
    justify-content: center;
    display: none;
  }

  .features-container p {
    margin: 1rem 0;
  }

  .features-container img {
    width: 1.3rem;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
  }

  .company-container {
    display: none;
    flex-direction: column;
    padding: 1rem;
  }

  .company-container a {
    margin-left: 2rem;
    margin-top: 1rem;
  }
}
