@import url("https://rsms.me/inter/inter.css");
@-webkit-keyframes slideFromBottom {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes slideFromBottom {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}

@-webkit-keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

html {
  font-family: 'Inter', sans-serif;
}

@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var', sans-serif;
  }
}

* {
  margin: 0;
  color: #333333;
  line-height: 1.5;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  text-decoration: none;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  background: #fafafa;
}

p {
  font-size: 1rem;
  margin-left: 2rem;
  text-align: justify;
}

h1 {
  font-size: 2.5rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

img {
  -webkit-transition: margin 1.5s ease-in-out,  -webkit-transform .3s ease-in-out;
  transition: margin 1.5s ease-in-out,  -webkit-transform .3s ease-in-out;
  transition: margin 1.5s ease-in-out,  transform .3s ease-in-out;
  transition: margin 1.5s ease-in-out,  transform .3s ease-in-out,  -webkit-transform .3s ease-in-out;
}

hr {
  margin: auto;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 800px) {
  :root {
    font-size: 14px;
  }
}

.slide-left {
  margin-left: MIN(15vw, 20rem);
}

.slide-left-small {
  margin-left: MIN(4vw, 5rem);
  /* margin-left: 5rem; */
}

.scale-transition:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.invisible {
  opacity: 0;
}

.container {
  width: MIN(80vw, 70rem);
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.margin {
  margin-left: 2rem;
  margin-right: 2rem;
}

.clickable-text {
  cursor: pointer;
  color: #6f05d3;
  margin-top: 0;
}

.landing {
  width: 100vw;
  height: calc(max(30rem, 100vh));
  background: url(Assets/bg.jpg);
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.landing nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(MIN(1rem + 2vw, 3rem));
  margin-top: .8rem;
  font-weight: 400;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-animation: 1s ease-in-out 0s 1 appear;
          animation: 1s ease-in-out 0s 1 appear;
}

.landing nav ul li {
  list-style: none;
}

.landing nav ul li button {
  font-size: calc(MIN(.5rem + 1vw,1.1rem));
  /* font-size: 1.1rem; */
  color: white;
  text-decoration: none;
  -webkit-transition: color .2s ease;
  transition: color .2s ease;
}

.landing nav ul li button:hover {
  color: rgba(255, 255, 255, 0.7);
}

.landing h1, .landing h2 {
  position: absolute;
  width: 100vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: white;
  text-align: center;
  margin: 0;
  -webkit-animation: 1.8s ease-in-out 0s 1 appear, 1.2s ease-in-out 0s 1 slideFromBottom;
          animation: 1.8s ease-in-out 0s 1 appear, 1.2s ease-in-out 0s 1 slideFromBottom;
}

.landing h1 {
  top: 50%;
  font-size: calc(min(2rem + 9vw, 9rem));
  font-weight: bold;
}

.landing h2 {
  top: calc(41% - 5rem);
  font-size: calc(min(1rem + 4vw, 4rem));
  font-weight: 300;
}

.ui {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.ui .content {
  width: 55%;
  min-width: 55%;
  z-index: 1;
}

.ui p {
  font-weight: 500;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.ui h3 {
  font-size: 2.5rem;
  margin-left: calc(min(.1rem + 8vw ,5.5rem));
}

.ui img {
  height: 40rem;
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
  margin-top: 6rem;
  margin-bottom: 4rem;
}

@media (max-width: 1000px) {
  .ui img {
    -webkit-transform: translateX(-7%);
            transform: translateX(-7%);
  }
  .ui h3 {
    font-size: 2rem;
    margin-left: calc(.1rem + 6vw);
    margin-bottom: 3rem;
  }
  .ui p {
    margin-top: 2rem;
  }
}

@media (max-width: 700px) {
  .ui h3 {
    margin-left: calc(.1rem + 2vw);
  }
  .ui h1 {
    margin-top: 2rem;
  }
}

.black {
  background: black;
}

.black h1 {
  color: white;
}

.black img {
  width: 60%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .black img {
    width: 85%;
  }
}

.general {
  padding-top: 4rem;
}

.general .content {
  width: 50%;
  padding-top: 1rem;
}

.general .content li {
  text-align: justify;
}

.general .content li + li {
  margin-top: 2rem;
}

.general .btn {
  background: #6f05d3;
  color: white;
  text-decoration: none;
  padding: .5rem  2rem;
  border-radius: 100rem;
  margin-top: 2rem;
}

.general img {
  width: 50%;
  padding-left: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 1000px) {
  .general .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .general .content {
    width: 100%;
    margin-bottom: 2rem;
  }
  .general img {
    width: 90%;
  }
}

.installation p {
  margin-bottom: 1rem;
}

.installation img.mac-macbook-img {
  width: 60%;
  margin: 3rem 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (max-width: 800px) {
  .installation img.mac-macbook-img {
    width: 90%;
  }
}

.installation ol.steps {
  list-style: none;
  counter-reset: my-awesome-counter;
  padding: 0;
}

.installation ol.steps li {
  counter-increment: my-awesome-counter;
  margin-left: 8rem;
  margin-right: 5.5rem;
}

.installation ol.steps li h2 {
  position: relative;
  margin-bottom: 2.5rem;
}

.installation ol.steps li h2::before {
  content: counter(my-awesome-counter);
  color: blue;
  font-size: 6rem;
  font-weight: 100;
  position: absolute;
  left: -1em;
  line-height: 1;
}

@media (max-width: 800px) {
  .installation ol.steps li {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .installation ol.steps li h2::before {
    font-size: 3rem;
    left: -0.9em;
    line-height: 1;
  }
  .installation p {
    margin-left: 0;
  }
}

.installation ol.steps li:nth-of-type(4) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.installation ol.steps li:nth-of-type(4) h2 {
  word-wrap: nowrap;
  white-space: pre;
}

.installation ol.steps li:nth-of-type(4) .main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.installation ol.steps li:nth-of-type(4) .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: auto;
}

.installation ol.steps li:nth-of-type(4) .image img {
  width: 100%;
  vertical-align: middle;
}

@media (max-width: 1000px) {
  .installation ol.steps li:nth-of-type(4) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .installation ol.steps li:nth-of-type(4) .image {
    margin-left: 2rem;
    width: calc(min(100% - 2rem, 90rem));
  }
}

@media (max-width: 800px) {
  .installation ol.steps li:nth-of-type(4) .image {
    margin-left: 0rem;
    width: calc(min(100%, 90rem));
  }
}

.versions * {
  color: rgba(255, 255, 255, 0.8);
}

.versions .top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.versions ul {
  margin-top: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.versions .image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.versions img {
  width: 100%;
  margin: 0;
}

.versions p.history {
  margin-top: 1rem;
  margin-bottom: 2rem;
  margin-left: 6rem;
}

.versions .table {
  position: relative;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-width: 34rem;
  width: 60%;
  margin-bottom: 5rem;
}

.versions .table * {
  margin: 0;
  z-index: 1;
  line-height: 1.7;
  word-wrap: nowrap;
  white-space: nowrap;
}

.versions .table::after {
  position: absolute;
  content: "";
  background: #222222;
  border-radius: 1.5rem;
  width: 100%;
  height: 90%;
  padding: 1rem;
  left: -1rem;
  bottom: -1rem;
}

@media (max-width: 800px) {
  .versions .top-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .versions .image {
    width: 70%;
    margin: 0 auto;
  }
  .versions p.history {
    margin-left: 2rem;
    margin-top: 2rem;
  }
  .versions .table {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .versions .table {
    font-size: .7rem;
  }
  .versions .table p {
    font-size: .8rem;
  }
}

.container2 {
  width: calc(min(70vw, 60rem));
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.requirements .container2 {
  margin-top: 2rem;
}

.requirements h2 {
  margin-bottom: 1rem;
}

.requirements .list {
  gap: 2rem;
}

.requirements .list ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.requirements .list li {
  line-height: 1.7;
}

.requirements .image {
  width: calc(max(30rem,55%));
}

.requirements .image img {
  width: 100%;
}

.requirements .hr {
  width: 75%;
  margin-left: 0;
  margin-right: 0;
}

.requirements .last-hr-with-img {
  position: relative;
}

.requirements .last-hr-with-img .image {
  position: absolute;
  /* width:50%; */
  /* background:lime; */
  top: 0;
  /* right:0; */
  left: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 800px) {
  .requirements .list {
    gap: 1rem;
  }
  .requirements .list li {
    font-size: .8rem;
  }
  .requirements h2 {
    margin-left: 1.5rem;
  }
}

@media (max-width: 800px) {
  .container2 {
    width: 90vw;
  }
}

footer {
  margin-top: 3rem;
  height: 2rem;
  background: black;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 200;
  font-size: .8rem;
  letter-spacing: 1px;
}
