@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,200;1,300&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  background: #e3e3e3;
}

img {
  width: 100%;
}

section {
  width: 100%;
}

main {
  background: #fff;
  padding-bottom: 6rem;
}

header {
  margin-bottom: 5rem;
}

nav {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0;
  width: 85%;
}
nav .navLinksBtns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
nav .navLinksBtns .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
}
nav .navLinksBtns .nav-links .nav-link {
  text-decoration: none;
  font-weight: 600;
  color: rgb(158, 154, 167);
  transition: all 0.5s ease-in-out;
}
nav .navLinksBtns .nav-links .nav-link:hover, nav .navLinksBtns .nav-links .nav-link:active {
  color: rgb(35, 33, 39);
}
nav .navLinksBtns .nav-btns {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav .navLinksBtns .nav-btns .nav-grey-btn {
  color: rgb(158, 154, 167);
  text-decoration: none;
  font-weight: 600;
}
nav .navLinksBtns .nav-btns .nav-green-btn {
  text-decoration: none;
  color: #fff;
  background: rgb(42, 207, 207);
  padding: 0.8rem 1rem;
  border-radius: 8rem;
  transition: all 0.5s ease-in-out;
}
nav .navLinksBtns .nav-btns .nav-green-btn:hover, nav .navLinksBtns .nav-btns .nav-green-btn:active {
  background: rgba(42, 207, 207, 0.7);
}

.hamburger {
  cursor: pointer;
  display: none;
}

.burger {
  width: 45px;
  height: 3px;
  transition: all 0.4s ease-in-out;
  background: rgb(59, 48, 84);
  margin-bottom: 10px;
  border-radius: 5px;
}

.burger:last-child {
  margin-bottom: 0;
}

.toggle-burger.burger--two {
  display: none;
}

.toggle-burger.burger--one {
  transform: rotate(-45deg) translate(-5px, 0);
}

.toggle-burger.burger--three {
  transform: rotate(45deg) translate(-5px, 0);
}

#hero-section {
  width: 100%;
  position: relative;
  margin-bottom: 15rem;
}
#hero-section .hero-section-container {
  margin: 0 auto;
  width: 85%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: center;
  gap: 8rem;
}
#hero-section .hero-section-container .hero-section-h3 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}
#hero-section .hero-section-container .hero-section-p-one {
  font-size: 1.8rem;
  font-weight: 500;
  color: rgb(158, 154, 167);
  margin-bottom: 1.2rem;
}
#hero-section .hero-section-container .hero-section-btn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  background: rgb(42, 207, 207);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 1.2rem;
}
#hero-section .hero-section-container .hero-section-btn::before {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  background-color: rgb(42, 207, 207);
  border-radius: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
#hero-section .hero-section-container .hero-section-btn:hover::before {
  transform: scaleX(1.5) scaleY(1.6);
  opacity: 0;
}
#hero-section .hero-section-second-col {
  position: absolute;
  width: 45%;
  right: 0;
  animation: heroSecondColDance 8s infinite alternate-reverse ease-in-out;
}

@keyframes heroSecondColDance {
  from {
    transform: translateY(-15px);
  }
  to {
    transform: translateY(18px);
  }
}
#input-link-section {
  margin-bottom: 10rem;
}

.input-link-container {
  width: 85%;
  margin: 0 auto;
  margin-bottom: 3rem;
  display: flex;
  background: linear-gradient(rgba(59, 48, 84, 0.95), rgba(59, 48, 84, 0.95)), url(/images/bg-shorten-desktop.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  padding: 8rem 0;
}
.input-link-container .input-link-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.input-link-container .input-link-form .input-link-input {
  width: 60%;
  padding: 1.3rem 1rem 1.3rem 0.5rem;
  font-size: 1.5rem;
  border-radius: 1rem;
  outline: none;
  border: none;
}
.input-link-container .input-link-form .input-link-btn {
  padding: 1.3rem 2rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  background: rgb(42, 207, 207);
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.6s ease-in-out;
}
.input-link-container .input-link-form .input-link-btn:hover, .input-link-container .input-link-form .input-link-btn:active {
  background: rgba(42, 207, 207, 0.7);
}

.linksGenerated {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.linksGenerated .linkGenerated {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
}
.linksGenerated .linkGenerated .long-link {
  color: rgb(35, 33, 39);
  font-size: 1.4rem;
}
.linksGenerated .linkGenerated .shortLink {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.linksGenerated .linkGenerated .shortLink .short--link {
  color: rgb(42, 207, 207);
  font-size: 1.6rem;
}
.linksGenerated .linkGenerated .shortLink .copy-btn {
  background: rgb(42, 207, 207);
  border: none;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.linksGenerated .linkGenerated .shortLink .copy-btn:hover, .linksGenerated .linkGenerated .shortLink .copy-btn:active {
  background: rgba(42, 207, 207, 0.7);
}

#advance-stats-section {
  margin-bottom: 6rem;
}
#advance-stats-section .advance-stats-container {
  width: 85%;
  margin: 0 auto;
}
#advance-stats-section .advance-stats-container .advance-stats-first-content {
  text-align: center;
}
#advance-stats-section .advance-stats-container .advance-stats-first-content .advance-stats-h3 {
  color: rgb(35, 33, 39);
  font-weight: 800;
  font-size: 3.2rem;
  margin-bottom: 1rem;
}
#advance-stats-section .advance-stats-container .advance-stats-first-content .advance-stats-p-one {
  opacity: 0.6;
  font-weight: 600;
  font-size: 1.6rem;
}
#advance-stats-section .advance-stats-second-content {
  position: relative;
  margin-top: 15rem;
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}
#advance-stats-section .card {
  width: 34rem;
  background: #fff;
  padding: 5rem 3rem;
  border-radius: 0.8rem;
}
#advance-stats-section .card-icon {
  position: relative;
  background: rgb(59, 48, 84);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: -8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
#advance-stats-section .card-icon .card--icon {
  width: 100%;
}
#advance-stats-section .card-context {
  margin-top: 2.5rem;
}
#advance-stats-section .card-context .card-h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
#advance-stats-section .card-context .card-p-one {
  font-weight: 600;
  opacity: 0.58;
}
#advance-stats-section .card-back-line {
  height: 10px;
  width: 650px;
  background: rgb(42, 207, 207);
  position: absolute;
  z-index: -1;
}
#advance-stats-section .card--two {
  margin-top: 5rem;
}
#advance-stats-section .card--three {
  margin-top: 12rem;
}

#cta-section {
  background: linear-gradient(rgba(59, 48, 84, 0.96), rgba(59, 48, 84, 0.96)), url(/images/bg-boost-desktop.svg);
  padding: 8rem 0;
}
#cta-section .cta-section-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
#cta-section .cta-section-container .cta-section-h3 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1.2px;
}
#cta-section .cta-section-container .cta-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(42, 207, 207, 0.7);
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: all 0.6s ease-in-out;
}
#cta-section .cta-section-container .cta-btn:hover, #cta-section .cta-section-container .cta-btn:active {
  background: rgb(42, 207, 207);
}

#footer-section {
  background: rgb(35, 33, 39);
  padding: 8rem;
}
#footer-section .footer-section-container {
  margin: 0 auto;
  width: 85%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: start;
  gap: 4rem;
}
#footer-section .footer-section-container .footer-logo-h4 {
  color: #fff;
  font-size: 2.6rem;
  letter-spacing: 0.15rem;
}
#footer-section .footer-section-container .footer-links-header {
  color: rgb(255, 255, 255);
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
}
#footer-section .footer-section-container .footer-link {
  text-decoration: none;
  color: rgb(191, 191, 191);
  font-weight: 600;
  transition: all 0.8s ease-in-out;
}
#footer-section .footer-section-container .footer-link:hover, #footer-section .footer-section-container .footer-link:active {
  color: rgb(42, 207, 207);
}

.footer-first-links,
.footer-second-links,
.footer-third-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-fourth-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-fourth-links div {
  height: 40px;
  width: 40px;
  padding: 1rem;
  transition: all 0.4s ease-in-out;
}

.footer-fourth-links div:hover {
  background: rgb(42, 207, 207);
  border-radius: 50%;
}

.input-error.input-link-input {
  box-shadow: 0 0 0 1px red;
}

@media screen and (max-width: 976px) {
  .hero-section-h3 {
    font-size: 3.2rem !important;
  }
  .footer-section-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .footer-fourth-links {
    align-self: center;
  }
}
@media screen and (max-width: 876px) {
  .advance-stats-second-content {
    flex-direction: column;
    gap: 6rem !important;
  }
  .card-back-line {
    width: 10px !important;
    height: 700px !important;
  }
  .card--two,
  .card--three {
    margin-top: 0 !important;
  }
  .linkGenerated {
    flex-direction: column;
  }
  .shortLink {
    flex-direction: column;
  }
  .copy-btn {
    padding: 1.2rem 3rem !important;
    font-size: 1.8rem !important;
  }
}
@media screen and (max-width: 768px) {
  .hero-section-container {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 3rem !important;
  }
  .hero-section-first-col {
    text-align: center;
    grid-row: 2;
  }
  .hero-section-second-col {
    position: relative !important;
    width: 100% !important;
  }
  .hero-section-btn {
    padding: 1rem 2.3rem !important;
    font-size: 1.8rem;
  }
  .input-link-form {
    flex-direction: column !important;
  }
  .input-link-input {
    width: 90% !important;
  }
}
@media screen and (max-width: 576px) {
  .footer-section-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  #footer-section {
    padding: 2rem;
  }
  .hamburger {
    display: block;
  }
  .navLinksBtns {
    position: fixed;
    flex-direction: column;
    gap: 4rem !important;
    background: rgb(35, 33, 39);
    width: 85% !important;
    top: -300%;
    z-index: 999999;
    padding: 6rem 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 1.2rem;
    transition: all 0.5s ease-in-out;
  }
  .nav-links,
  .nav-btns {
    flex-direction: column;
  }
  .nav-links {
    width: 80% !important;
    gap: 3rem !important;
    border-bottom: 2.5px solid rgb(158, 154, 167);
    padding-bottom: 0.5rem;
  }
  .nav-link {
    font-size: 2rem !important;
  }
  .nav-link:hover,
  .nav-link:active {
    color: #fff !important;
  }
  .nav-btns {
    width: 80%;
  }
  .nav-green-btn,
  .nav-grey-btn {
    width: 50% !important;
    text-align: center;
    font-size: 2rem;
  }
  .nav-green-btn {
    padding: 1.5rem 3rem;
  }
}
.toggle-burger.navLinksBtns {
  top: 17%;
}/*# sourceMappingURL=main.css.map */