@charset "UTF-8";
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

:root {
  --cl-100: #34313d;
  --cl-200: #3a3054;
  --cl-300: #4b3f6b;
  --cl-400: #9e9aa8;
  --cl-500: #eff1f7;
  --cl-600: #2bd0d0;
  --font-family-bold: "Poppins Bold";
  --font-family-medium: "Poppins Medium";
  --font-family-medium-italic: "Poppins Medium Italic";
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header {
  background: white;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  color: var(--cl-100);
  font-weight: bold;
  font-size: 28px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--cl-400);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:nth-child(5) {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.nav-links a:nth-child(1):hover {
  text-decoration: none;
  color: var(--cl-200);
  font-size: 14px;
}

.nav-links a:nth-child(2):hover {
  text-decoration: none;
  color: var(--cl-200);
  font-size: 14px;
}

.nav-links a:nth-child(3):hover {
  text-decoration: none;
  color: var(--cl-200);
  font-size: 14px;
}

.nav-links a:nth-child(4):hover {
  text-decoration: none;
  color: var(--cl-200);
  font-size: 14px;
}

.signup-btn {
  background: var(--cl-600);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
}

.signup-btn:hover {
  background-color: hsl(180, 66%, 70%);
  color: white;
}

.hamburger {
  font-size: 28px;
  display: none;
  cursor: pointer;
}

/* ----- Mobile version ----- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #3b3054;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 30px;
    gap: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 100;
  }
  .nav-links a {
    color: white;
    font-size: 16px;
  }
  .nav-links .signup-btn {
    background-color: #2acfcf;
    padding: 10px;
    border-radius: 25px;
  }
  .nav-links.open {
    display: flex;
  }
}
h1 {
  color: var(--cl-100);
  font-family: var(--font-family-bold);
  font-size: 80px;
  line-height: 70px;
  font-weight: bold;
}

p {
  color: #9e9aa8;
  font-family: var --font-family-medium;
  font-size: 20px;
}

.text-c {
  margin-bottom: 25px;
}

.cards h4 {
  color: var(--cl-100);
  font-weight: 900;
  font-size: 20px;
}

.text-m {
  margin-top: 70px;
  text-align: center;
}

.boost h2 {
  color: white;
  font-family: var(--font-family-bold);
  font-size: 40px;
}

.lists h3 {
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

.lists ul li {
  color: var(--cl-400);
  list-style-type: none;
  margin-bottom: 10px;
}

.lists ul li:hover {
  cursor: pointer;
  color: var(--cl-600);
}

.start-btt {
  max-width: 150px;
  min-height: 40px;
  font-family: var(--font-family-bold);
  font-weight: bold;
  border: none;
  background: var(--cl-600);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 20px;
}

.start-btt:hover {
  background-color: hsl(180, 66%, 70%);
}

.main {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 100px 0px;
  gap: 30px;
}

.left-part {
  display: flex;
  flex-direction: column;
  width: 620px;
  min-height: 360px;
  gap: 20px;
  padding: 25px;
  padding-top: 40px;
  align-items: center;
}

.right-part img {
  position: relative;
  right: -130px;
  width: 100%;
  overflow: hidden;
  height: 500px;
}

.shorten-section {
  background-image: url(../images/purple-line.png);
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  top: 60px;
}

.shorten-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

input {
  padding: 15px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 16px;
}

input:invalid:not(:-moz-placeholder-shown) {
  border-color: hsl(0, 87%, 67%);
}

input:invalid:not(:placeholder-shown) {
  border-color: hsl(0, 87%, 67%);
}

input:invalid:not(:-moz-placeholder-shown) + .error-message {
  display: block;
}

input:invalid:not(:placeholder-shown) + .error-message {
  display: block;
}

.error-message {
  display: none;
  color: hsl(0, 87%, 67%);
  font-size: 14px;
  margin-top: 5px;
}

button {
  padding: 15px 30px;
  background-color: var(--cl-600);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: hsl(180, 66%, 70%);
}

@media screen and (max-width: 768px) {
  .main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 100px 0px;
    gap: 30px;
  }
  .left-part {
    display: flex;
    flex-direction: column;
    width: 620px;
    min-height: 360px;
    gap: 20px;
    padding: 25px;
    padding-top: 40px;
    order: 2;
  }
  .start-btt {
    max-width: 200px;
    min-height: 40px;
    border-radius: 40px;
  }
  .right-part img {
    position: relative;
    right: -80px;
    width: 850px;
    height: 700px;
    order: 1;
  }
  .shorten-section {
    width: 600px;
    height: 250px;
    background-image: url(../images/purple-line.png) no-repeat;
    background-size: cover;
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    top: 100px;
  }
  .shorten-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  button {
    width: 500px;
    height: 50px;
    padding: 15px;
  }
  .input-wrapper {
    width: 520px;
    height: 50px;
    padding: 15px;
  }
}
.footer {
  width: 1440;
  min-height: 310px;
  background-color: black;
  display: flex;
  align-items: start;
  justify-content: start;
  text-align: start;
  flex-direction: row;
  padding: 43px 28px;
  gap: 90px;
  padding-left: 60px;
}

.lists {
  display: flex;
  flex-direction: row;
  gap: 70px;
  padding: 43px 28px;
}

.footer-icons {
  width: 168px;
  height: 24px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 43px 28px;
}

.footer-icons img {
  width: 24px;
  height: 24px;
  transition: filter 0.5s ease;
}

.footer-icons img:hover {
  filter: brightness(0) saturate(100%) invert(80%) sepia(38%) saturate(665%) hue-rotate(135deg) brightness(95%) contrast(95%);
  transform: scale(1.1);
  border-radius: 5px;
}

.logo-footer {
  padding: 43px 28px;
}

@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    min-height: 1100px;
    background-color: black;
    display: flex;
    flex-direction: column;
    padding: 43px 28px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .lists {
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding: 43px 28px;
  }
  .footer-icons {
    width: 168px;
    height: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 43px 28px;
  }
}
:root {
  --cl-100: #34313d;
  --cl-200: #3a3054;
  --cl-300: #4b3f6b;
  --cl-400: #9e9aa8;
  --cl-500: #eff1f7;
  --cl-600: #2bd0d0;
  --font-family-bold: "Poppins Bold";
  --font-family-medium: "Poppins Medium";
  --font-family-medium-italic: "Poppins Medium Italic";
}

body,
html {
  width: 100%;
  margin: 0;
  padding: 0;
}

.middle {
  width: 100%;
  min-height: 1000px;
  background-color: var(--cl-500);
  padding: 90px 25px;
  gap: 70px;
}

.cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}

.card-1 {
  display: flex;
  flex-direction: column;
  max-width: 370px;
  min-height: 150px;
  border-radius: 5px;
  background-color: #ffffff;
  gap: 15px;
  margin-top: 120px;
  padding: 0px 25px;
  z-index: 100;
}

.card-2 {
  display: flex;
  flex-direction: column;
  max-width: 370px;
  min-height: 150px;
  border-radius: 5px;
  background-color: #ffffff;
  gap: 15px;
  margin-top: 120px;
  padding: 0px 25px;
  position: relative;
  top: 40px;
  z-index: 100;
}

.card-3 {
  display: flex;
  flex-direction: column;
  max-width: 370px;
  min-height: 150px;
  border-radius: 5px;
  background-color: #ffffff;
  gap: 15px;
  margin-top: 120px;
  padding: 0px 25px;
  position: relative;
  top: 80px;
  z-index: 100;
}

.cards img {
  max-width: 40px;
  min-height: 40px;
}

.image-c {
  position: relative;
  right: -10px;
  top: -50px;
  display: flex;
  max-width: 88px;
  min-height: 88px;
  background-color: var(--cl-200);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.line-img {
  width: 5px; /* товщина лінії */
  height: 800px; /* довжина лінії */
  position: absolute;
  top: -80px;
  left: 50%;
  transform: rotate(90deg);
  z-index: 1;
}

.banner {
  width: 100%;
  min-height: 250px;
  background: url(../images/background-purple.png) no-repeat;
  background-size: cover;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
}

.button-f {
  width: 197px;
  height: 56px;
  font-family: var(--font-family-bold);
  font-weight: bold;
  border: none;
  background: var(--cl-600);
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  margin-top: 20px;
}

.button-f:hover {
  background-color: hsl(180, 66%, 70%);
}

@media screen and (max-width: 768px) {
  .middle {
    width: 100%;
    min-height: 900px;
    background-color: var(--cl-500);
    padding: 90px 25px;
    gap: 20px;
  }
  .cards {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  .card-1 {
    display: flex;
    flex-direction: column;
    max-width: 370px;
    min-height: 150px;
    border-radius: 5px;
    background-color: #ffffff;
    gap: 15px;
    margin-top: 120px;
    padding: 0px 25px;
    z-index: 100;
  }
  .card-2 {
    display: flex;
    flex-direction: column;
    max-width: 370px;
    min-height: 150px;
    border-radius: 5px;
    background-color: #ffffff;
    gap: 15px;
    margin-top: 0;
    padding: 0px 25px;
    position: relative;
    top: 40px;
  }
  .card-3 {
    display: flex;
    flex-direction: column;
    width: 370px;
    min-height: 150px;
    border-radius: 5px;
    background-color: #ffffff;
    gap: 15px;
    margin-top: 0;
    margin-bottom: 30px;
    padding: 0px 25px;
    position: relative;
    top: 80px;
  }
  .image-c {
    position: relative;
    right: -100px;
    top: -50px;
    display: flex;
    max-width: 88px;
    min-height: 88px;
    background-color: var(--cl-200);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
  }
  .line-img {
    position: absolute;
    top: 200px;
    left: 47%;
    transform: rotate(180deg);
  }
  .banner {
    width: 100%;
    min-height: 250px;
    background: url(../images/background-purple.png) no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
  }
  .button-f {
    width: 197px;
    height: 56px;
    font-family: var(--font-family-bold);
    font-weight: bold;
    border: none;
    background: var(--cl-600);
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1050) {
  .line-img {
    position: relative;
    top: 500px;
    right: 100px;
    transform: rotate(90deg);
  }
}/*# sourceMappingURL=main.css.map */