@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --background: #060b11;
  --color: #fff;
  --primary-color: #23cfca;
  --secondary-color: #87949d;
  --font-size-1: 2.2rem;
  --font-size-2: 1.8rem;
  --font-size-3: 1.2rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--background);
  color: var(--color);
}
a {
  color: var(--color);
  text-decoration: none;
}
button {
  padding: 10px 48px;
  border: 1px solid var(--primary-color);
  border-radius: 32px;
  width: fit-content;
  background: var(--primary-color);
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
  transform: scale(1.02);
}
hr {
  margin-top: 12px;
  width: 100px;
  border-bottom: 1px solid var(--color);
}
footer {
  padding-block: 12px;
  border-bottom: 6px solid var(--primary-color);
  color: var(--color);
  text-align: center;
}

.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-width {
  width: 100%;
}
.relative {
  position: relative;
}
.medium-font {
  font-size: 1.4rem !important;
}

.content {
  padding: 24px 10%;
}
.content:nth-child(1) {
  min-height: 100vh;
  justify-content: center;
  gap: 18px;
}
.content:nth-child(1) h1:nth-child(1) {
  font-size: var(--font-size-1);
}
.content:nth-child(1) h1 span {
  color: var(--primary-color);
  text-transform: uppercase;
}
.content:nth-child(1) h1:nth-child(2),
.title {
  font-size: var(--font-size-2);
}
.title {
  padding-block: 48px;
  color: var(--primary-color);
  text-transform: uppercase;
  white-space: nowrap;
}
.content:nth-child(2) {
  align-items: flex-start;
  gap: 10%;
}
.content:nth-child(2) div {
  gap: 48px;
}
.content:nth-child(2) div p {
  font-size: var(--font-size-3);
  font-weight: 600;
}
.content:nth-child(2) div p:not(:first-child) {
  color: var(--secondary-color);
}
.content:nth-child(2) div h2 {
  padding-bottom: 8px;
}
.title-2 {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 6px;
}
@media (max-width: 775px) {
  .content:nth-child(2) {
    flex-wrap: wrap;
  }
}
.content:nth-child(3) div {
  gap: 12px;
  flex-wrap: wrap;
}
.content:nth-child(3) div img {
  width: 280px;
}
.content:nth-child(3) div div div {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: var(--background);
  opacity: 0.8;
}
.content:nth-child(3) div div div span {
  color: var(--secondary-color);
}
.content:nth-child(3) .fa-arrow-up-right-from-square {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 40px;
  padding: 12px;
  background: var(--background);
  opacity: 0;
  transition: opacity 0.3s linear;
}
.content:nth-child(3) div div:hover .fa-arrow-up-right-from-square {
  opacity: 0.7;
}
.content:nth-child(4) div {
  gap: 3.5%;
  flex-wrap: wrap;
}
.content:nth-child(4) div div a img {
  width: 100%;
  transition: transform 0.3s linear;
}
.content:nth-child(4) div div a {
  display: block;
  width: 280px;
  overflow: hidden;
}
.content:nth-child(4) div div a img:hover {
  transform: scale(1.5);
}
.content:nth-child(4) div div {
  width: 31%;
}
.content:nth-child(4) div div h1 {
  color: var(--primary-color);
  font-size: var(--font-size-2);
}
.content:nth-child(4) div div p {
  margin-block: 12px;
  color: var(--secondary-color);
  font-weight: 500;
}
.content:nth-child(4) ul {
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.content:nth-child(4) ul li {
  align-items: center;
  gap: 8px;
}
.content:nth-child(4) ul li p {
  color: var(--color);
}
@media (max-width: 985px) {
  .content:nth-child(4) div {
    gap: 4%;
  }
  .content:nth-child(4) div div {
    width: 48%;
  }
}
@media (max-width: 615px) {
  .content:nth-child(4) div div {
    width: 100%;
  }
}
.content:nth-child(5) {
  min-height: 75vh;
  gap: 24px;
}
.content:nth-child(5) h1:first-child {
  color: var(--primary-color);
}
.content:nth-child(5) h1:last-child {
  font-size: var(--font-size-2);
}
.content:nth-child(5) div {
  margin-block: 24px;
  gap: 24px;
}
.content:nth-child(5) div i {
  color: var(--secondary-color);
}
.content:nth-child(5) div i:hover {
  color: var(--primary-color);
}
