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

html {
  font-size: 62.5%;
}

.container {
  width: 80%;
  margin: 0 auto;
  height: 100%;
}

.fix {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.header {
  height: 50rem;
  background-repeat: no-repeat;
  background-size: cover;
  background: linear-gradient(to left, hsl(353deg, 100%, 62%) 10%, hsl(13deg, 100%, 72%));
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-top: 5rem;
  border-radius: 0 0 0 80px;
}
.header.sticky-header {
  margin-top: 16rem;
}

.header-image {
  position: absolute;
  top: -150%;
  right: -50%;
  height: 200rem;
  z-index: -5;
}

.header-logo {
  height: 5rem;
}

.navigation-line {
  z-index: 5;
  display: flex;
}

.list-title {
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s;
}
.list-title:after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  background-color: hsl(0deg, 0%, 100%);
  width: 80%;
  height: 1px;
  transition: all 0.5s;
  opacity: 0;
}
.list-title:hover::after {
  opacity: 1;
}

#product,
#company,
#connect {
  position: relative;
}

.product_dropdown,
.company_dropdown,
.connect_dropdown {
  position: absolute;
  top: 200%;
  left: 0;
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(207deg, 13%, 34%);
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease-in;
  opacity: 0;
  transform-origin: top;
  width: 15rem;
  box-shadow: 0 0.4rem 5rem rgba(0, 0, 0, 0.3);
}
.product_dropdown li,
.company_dropdown li,
.connect_dropdown li {
  opacity: 0;
  transition: all 1s;
  cursor: pointer;
}
.product_dropdown li:hover,
.company_dropdown li:hover,
.connect_dropdown li:hover {
  font-weight: 600;
}

.dropdown_visibility {
  opacity: 1;
  transition: all 0.4s ease-in;
}
.dropdown_visibility li {
  transition: all 0.4s;
  opacity: 1;
}

.hamburger-icon {
  display: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 5;
  font-family: "Ubuntu", sans-serif;
  color: hsl(0deg, 0%, 100%);
  font-size: 1.6rem;
  margin-left: 8rem;
}
nav li {
  list-style-type: none;
}
nav .chevron {
  margin-left: 1rem;
  stroke: hsl(0deg, 0%, 100%);
}
nav .chevron_desktop,
nav .chevron_mobile {
  transition: all 0.4s;
}
nav .chevron_rotation {
  transform: rotate(180deg);
  transition: all 0.4s;
}
nav .navigation-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
nav .login-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.chevron_mobile {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.cta-btn {
  background-color: hsl(0deg, 0%, 100%);
  padding: 1.2rem 3.5rem;
  border-radius: 9999px;
  color: hsl(356deg, 100%, 66%);
  transition: all 0.5s;
  cursor: pointer;
}
.cta-btn:hover {
  background-color: hsl(355deg, 100%, 74%);
  color: hsl(0deg, 0%, 100%);
  transition: all 0.5s;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex-direction: column;
  font-family: "Overpass", sans-serif;
  color: hsl(0deg, 0%, 100%);
  z-index: 10;
  height: 80%;
}
.hero-content h1 {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  font-weight: 300;
}
.hero-content .hero-btn-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 1.8rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}
.hero-content .options-btn {
  border: 2px solid hsl(0deg, 0%, 100%);
  padding: 1.2rem 3.5rem;
  border-radius: 9999px;
  color: hsl(0deg, 0%, 100%);
  transition: all 0.5s;
  cursor: pointer;
}
.hero-content .options-btn:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(355deg, 100%, 74%);
  transition: all 0.5s;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 3rem 10% 3rem;
  box-shadow: 0 0.4rem 5rem rgba(0, 0, 0, 0.3);
  background: linear-gradient(to left, hsl(353deg, 100%, 62%) 10%, hsl(13deg, 100%, 72%));
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.design {
  padding-top: 8rem;
  font-family: "Overpass", sans-serif;
  color: hsl(207deg, 13%, 34%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-container {
  margin-right: 0;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-content {
  font-size: 3rem;
  margin-bottom: -5rem;
}

.text .title-section {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.text p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin-bottom: 3rem;
}

.image-design .design-img-mobile {
  display: none;
}
.image-design img {
  height: 75rem;
  transform: translateX(30rem);
  margin-left: -20rem;
}

.infrastructure {
  background: linear-gradient(to right, hsl(237deg, 17%, 21%) 10%, hsl(237deg, 23%, 32%));
  height: 30rem;
  border-radius: 0 80px 0 80px;
  position: relative;
}

.infrastructure-positioning {
  position: absolute;
  top: 5%;
  left: 10%;
  height: 100%;
  width: 80%;
  gap: 10rem;
}

.infrastructure-gap {
  gap: 10rem;
}

.image-infrastructure {
  height: 100%;
  width: 100%;
  position: relative;
  overflow-y: hidden;
}
.image-infrastructure img {
  left: -20%;
  bottom: -50%;
  position: absolute;
  width: 100rem;
}

.phone-images {
  width: 40rem;
  margin-left: -3rem;
}

.infrastructure_text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  color: hsl(0deg, 0%, 100%);
  font-family: "Overpass", sans-serif;
}
.infrastructure_text h3 {
  font-size: 2.5rem;
  font-weight: 300;
}
.infrastructure_text p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 3rem;
}

.features {
  padding-top: 8rem;
  font-family: "Overpass", sans-serif;
  color: hsl(207deg, 13%, 34%);
  overflow: hidden;
}

.image-features .feature-img-mobile {
  display: none;
}
.image-features img {
  height: 75rem;
  transform: translateX(-45rem);
  margin-right: -45rem;
}

footer {
  background-color: hsl(240deg, 10%, 16%);
  font-family: "Ubuntu", sans-serif;
  margin-top: 5rem;
  border-radius: 0 80px 0 0;
}

.footer-logo {
  width: 8rem;
}

.flex-footer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20%;
  color: hsl(240deg, 2%, 79%);
  padding-top: 4rem;
  margin-bottom: 4rem;
}
.flex-footer ul {
  list-style-type: none;
}
.flex-footer .title-list {
  font-weight: 700;
  margin-bottom: 4rem;
  color: hsl(0deg, 0%, 100%);
}
.flex-footer li {
  font-size: 1.4rem;
  margin-bottom: 1.4rem;
  font-weight: 400;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.flex-footer li:after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  background-color: hsl(0deg, 0%, 100%);
  width: 100%;
  height: 1px;
  transition: all 0.5s;
  opacity: 0;
}
.flex-footer li:hover::after {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .header {
    height: 60rem;
    overflow-x: hidden;
  }

  .header-image {
    top: -50%;
    right: -150%;
    height: 150rem;
    z-index: -5;
  }

  .navigation-line {
    justify-content: space-between;
    align-items: center;
    height: 5rem;
  }
  .navigation-line.sticky {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .hamburger-icon {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .bar1,
.bar2,
.bar3 {
    height: 2px;
    background-color: hsl(0deg, 0%, 100%);
    width: 50px;
    margin: 10px 0 10px 0;
    transition: 0.5s;
    border-radius: 2.5px;
  }

  .click .bar1 {
    transform: rotate(-45deg) translate(-8px, 10px);
  }

  .click .bar2 {
    transform: scaleX(0);
    transform-origin: center;
  }

  .click .bar3 {
    transform: rotate(45deg) translate(-8px, -10px);
  }

  .list-title {
    font-size: 2rem;
    text-align: center;
  }

  .chevron_desktop {
    display: none;
  }

  .chevron_mobile {
    display: inline-block;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: fixed;
    margin: 15rem 5% 0;
    padding: 3rem;
    top: 0;
    right: 0;
    transform: translateX(100vw);
    background-color: hsl(0deg, 0%, 100%);
    color: hsl(240deg, 10%, 16%);
    border-radius: 5px;
    width: 90vw;
    transition: all 0.8s;
  }
  nav .navigation-section {
    flex-direction: column;
    position: relative;
    padding-bottom: 3rem;
  }
  nav .navigation-section:after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: hsl(240deg, 2%, 79%);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  nav .login-section {
    flex-direction: column;
    font-size: 2rem;
    gap: 3rem;
  }
  nav .cta-btn {
    background: linear-gradient(to left, hsl(353deg, 100%, 62%) 10%, hsl(13deg, 100%, 72%));
    color: hsl(0deg, 0%, 100%);
    padding: 1.5rem 4.5rem;
  }

  .navTranslate {
    transform: translateX(0);
    transition: all 0.8s;
    box-shadow: 0 0.4rem 5rem rgba(0, 0, 0, 0.3);
  }

  #product,
#company,
#connect {
    display: flex;
    flex-direction: column;
  }

  .product_dropdown,
.company_dropdown,
.connect_dropdown {
    position: initial;
    background-color: #e7e7e7;
    max-height: 0;
    display: none;
    margin-top: 2rem;
    box-shadow: none;
  }

  .dropdown_visibility {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    display: flex;
    align-items: center;
    width: 75vw;
  }

  .cta-btn {
    background-color: hsl(0deg, 0%, 100%);
    padding: 1.4rem 2rem;
    border-radius: 9999px;
    color: hsl(356deg, 100%, 66%);
  }

  .hero-content {
    height: 90%;
  }
  .hero-content h1 {
    font-size: 3.2rem;
    text-align: center;
  }
  .hero-content p {
    text-align: center;
  }
  .hero-content .hero-btn-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.5rem;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
  }
  .hero-content .options-btn {
    padding: 1.4rem 2rem;
  }

  .design {
    margin-bottom: 20rem;
  }

  .flex {
    flex-direction: column;
  }

  .title-content {
    font-size: 2.4rem;
    margin-bottom: 5rem;
  }

  .content-container {
    margin: auto;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .text {
    display: flex;
    flex-direction: column;
    width: 95%;
    order: 2;
  }
  .text .title-section {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .text p {
    font-size: 1.4rem;
    line-height: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
  }

  .image-design {
    order: 1;
  }
  .image-design .design-img-desktop {
    display: none;
  }
  .image-design .design-img-mobile {
    display: block;
  }
  .image-design img {
    height: 25rem;
    transform: translateX(0);
    margin: 0;
    margin-bottom: 5rem;
  }

  .infrastructure {
    height: 70rem;
  }

  .image-infrastructure {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .image-infrastructure img {
    left: -40%;
    bottom: 40%;
    position: absolute;
    width: 60rem;
  }

  .phone-images {
    width: 37rem;
    margin-left: 0rem;
  }

  .infrastructure-positioning {
    justify-content: center;
    gap: 2rem;
    transform: translateY(-20%);
  }

  .infrastructure_text h3 {
    z-index: 20;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
  }
  .infrastructure_text p {
    z-index: 20;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 3rem;
    text-align: center;
  }

  .image-features .feature-img-desktop {
    display: none;
  }
  .image-features .feature-img-mobile {
    display: block;
  }
  .image-features img {
    height: 35rem;
    transform: translateX(0);
    margin-right: 0;
  }

  .footer-logo {
    margin-bottom: 8rem;
  }

  .flex-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .flex-footer ul {
    text-align: center;
    margin-bottom: 5rem;
  }
}/*# sourceMappingURL=style.css.map */