/* Normaliza */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #f8f8f8;
  transition: color .3s ease;
}

body {
  font-family: 'Jost';
  color: #f8f8f8;
  background-color: #060505;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url(images/background-pattern.png);
  background-size: 100px;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: 'Jost';
}

/* Main style */
.link-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px 20px;
  max-width: 1140px;
  width: 100%;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.brand-info {
  height: auto;
  margin: 0 auto 20px;
}

.brand-info img {
  max-width: 400px;
  height: auto;
  margin: 0 auto 30px;
}

/* Social Media Icons */
:root {
  --color-primary: #81c2de;
  --color-primary-light: #b4f5ff;
  --color-primary-dark: #4f92ac;
  --color-white: #FFFBFA;
  --color-black: #fff;
}

.wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: all 0.4s ease-out;
}

.wrapper__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.social-link--linkedin {
  color: #2d76b0;
}

.social-link--github {
  color: #000;
}

.social-link--instagram {
  color: #9a2970;
}

.social-link--facebook {
  color: #1877F2;
}

.social-link--youtube {
  color: #CD201F;
}

.social-link--x {
  color: #1d9bf0;
}

.social-link .social-svg {
  width: 3.8rem;
  height: 3.8rem;
  margin: 0 10px;
}

.social-link .social-svg .social-group__icon {
  fill: var(--color-black);
  transition: all 0.2s;
}

.social-link .social-svg .social-group__inner-circle {
  fill: transparent;
  transition: all 0.2s;
}

.social-link .social-svg .social-group__outline {
  stroke: var(--color-black);
  transform-origin: 50% 50%;
  transition: all 0.2s;
}

.social-link:hover .social-svg .social-group__icon,
.social-link:active .social-svg .social-group__icon,
.social-link:focus .social-svg .social-group__icon {
  fill: var(--color-white);
  transition: all 0.45s;
}

.social-link:hover .social-svg .social-group__inner-circle,
.social-link:active .social-svg .social-group__inner-circle,
.social-link:focus .social-svg .social-group__inner-circle {
  fill: currentColor;
  transition: all 0.45s;
}

.social-link:hover .social-svg .social-group__outline,
.social-link:active .social-svg .social-group__outline,
.social-link:focus .social-svg .social-group__outline {
  stroke: currentColor;
  transform: scale(1.1);
  transition: all 0.45s;
}

/* ADX Data*/
.adx {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
  z-index: 1;
}

.adx-info {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.adx-chart {
  width: 100%;
  flex: 2;
}

.adx-company {
  width: 100%;
  flex: 3;
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}

.adx-company-box {
  width: 45%;
  height: 100px;
  flex-grow: 1;
  background: transparent;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.adx-company-box .box-label {
  font-size: 20px;
}

.adx-company-box .box-value {
  font-size: 30px;
}

.adx-action {
  flex-grow: 1;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center;
}

@media screen and (max-width:768px) {
  .adx-action {
    grid-template-columns: repeat(1, 1fr);
  }
}

.positive {
  color: #089981;
  font-weight: bold;
}

.negative {
  color: red;
  font-weight: bold;
}

/* Call to Action - ADX */
.btn {
  width: 240px;
  outline: none;
  color: #fff;
  background-color: transparent;
  border-radius: 5px;
  border: 2px solid #fb6800;
  transition: all .3s ease;
}

.btn a {
  display: block;
  padding: 10px 25px;
  text-align: center;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.btn img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.btn:hover {
  background-color: #fb6800;
}

/* Venture section */
.box-icon {
  background-color: #181818;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding: 3px;
  border-radius: 100px;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition: all .3s ease;
}

.box-icon .main-image {
  width: 50px;
  height: 50px;
  background-color: #060606;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.box-icon .main-image img {
  width: 80%;
}

.box-icon .box-action {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #060606;
  border-radius: 0 100px 100px 0;
  transition: all .3s ease;
}

.box-icon .right-arrow {
  width: 25px;
  height: 25px;
}

.box-icon:hover .box-action {
  background-color: #fb6800;
}

.box-icon:hover .main-image {
  filter: drop-shadow(0 0 10px #fb6800);
}

/* Duplicate Section */
.mobile-icons {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px;
  z-index: 1;
}

.header {
  display: none;
}

.footer {
  display: block;
  margin-top: 0;
}

.logo-mobile {
  max-width: 200px;
}

.logo-mobile img {
  width: 100%;
}

.link-three-footer {
  margin: 0;
}

.footer-title {
  font-weight: 300;
  font-size: 22px;
}

.footer-subtitle {
  color: #fb6800;
  font-weight: 500;
  font-size: 35px;

}

/* Responsive Design */
@media screen and (max-width:768px) {
  .brand-info img {
    width: 300px;
    margin-bottom: 0;
  }

  .links-info-list {
    row-gap: 30px;
    justify-content: center;
  }

  .links-info {
    margin-top: 50px;
  }

  .ring {
    width: 120px;
    height: 120px;
  }

  .ring p {
    font-size: 12px;
  }

  .item-list-link .lyvely {
    max-width: 90%;
  }

  .social-link .social-svg {
    width: 3.8rem;
    height: 3.8rem;
    margin: 0 5px;
  }

  .adx {
    padding: 15px;
  }

  .adx-info,
  .adx-action {
    flex-direction: column;
    align-items: center;
  }

  .adx-action {
    flex-direction: row;
    row-gap: 15px;
    column-gap: 15px;
  }

  .btn {
    width: 46%;
  }

  .btn a {
    padding: 10px 10px;
  }

  .chart-info {
    max-width: 350px;
    width: 100%;
  }

  .adx-company-box {
    width: 40%;
    height: 100px;
    padding: 0;
  }

  .adx-company-box .box-label {
    font-size: 16px;
  }

  .adx-company-box .box-value {
    font-size: 20px;
  }
}

@media screen and (min-width:768px) {
  .brand-info img {
    max-width: 300px;
    margin-bottom: 0;
  }

  .social-link .social-svg {
    width: 3rem;
    height: 3rem;
    margin: 0 5px;
  }

  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1140px;
  }

  .mobile-icons {
    width: 100%;
    flex-direction: row;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .box-icon {
    background-color: #181818;
    width: 100px;
    padding: 3px;
    font-size: 16px;
    flex-direction: column;
    flex-grow: 0;
    margin: 0 10px;
  }

  .box-icon span {
    margin-bottom: 36px;
    padding-top: 20px;
    font-size: 12px;
  }

  .box-icon .main-image {
    width: 90px;
    height: 90px;
    background-color: #060606;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
  }

  .box-icon .box-action {
    display: none;
  }

  .adx {
    margin: 10px 0;
  }

  .logo-mobile {
    display: none;
  }

  .footer {
    display: none;
  }

  .footer-title {
    display: none;
  }

  /* Chart Box */
  .chart-info {
    max-width: 550px;
    width: 100%;
  }
}

@media screen and (min-width:1080px) {
  .brand-info img {
    max-width: 400px;
  }

  .social-link .social-svg {
    width: 4rem;
    height: 4rem;
  }

  .box-icon {
    width: 130px;
    margin: 0 20px;
  }

  .box-icon .main-image {
    width: 120px;
    height: 120px;
  }
}

/* Background Animation */
.rain-container {
  overflow-x: hidden;
  min-height: 100vh;
}

.drop {
  position: absolute;
  top: -80px;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg,#f7f7f70a 0,#fb6800 50%,#f7f7f70a);
  box-shadow: 0 1px 10px rgba(251, 104, 0, 0.8);
  animation: fall 2s linear infinite, pulse 1s ease-in-out infinite;
  z-index: 0;
}

@keyframes fall {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    background: linear-gradient(180deg,#f7f7f70a 0,#fb6800 50%,#f7f7f70a);
  }

  50% {
    background: linear-gradient(180deg,#f7f7f70a 0,#fb6800 20%,#f7f7f70a);
  }
}