@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;700;800&display=swap");
html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

:root {
  --blue-hover: #666ca3;
  --blue: #13183f;
  --text-gray: #83869a;
  --main-orange: #f74780;
  --main-pink: #ffa7c3;
  --white: #ffffff;
  --primary-gradient: linear-gradient(180deg, #ff6f48 0.04%, #f02aa6 100%);
  --secondary-gradient: linear-gradient(180deg, #4851ff 0%, #f02aa6 99.92%);
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f0f1ff 100%);
}

footer button, section.landing .left-layer h2 + p + button, header button {
  padding: 15px 26px;
  border-radius: 24px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 16px;
  color: var(--bs-body-bg);
  transition: 0.3s;
}

header button {
  background-color: var(--blue);
}
header button:hover {
  background-color: var(--blue-hover);
}

section.landing .left-layer {
  max-width: 700px;
  padding: 150px 0px;
}
@media (max-width: 768px) {
  section.landing .left-layer {
    padding: 50px 0px 0px;
  }
}
section.landing .left-layer h2 {
  font-size: 50px;
  margin-bottom: 44px;
  max-width: 500px;
  font-weight: 900;
  color: var(--blue);
}
section.landing .left-layer h2 + p {
  max-width: 400px;
  line-height: 1.4;
  color: var(--bs-gray);
  margin-bottom: 44px;
}
section.landing .left-layer h2 + p + button {
  background-image: var(--primary-gradient);
}
section.landing .left-layer h2 + p + button:hover {
  background-image: var(--secondary-gradient);
}
@media (max-width: 576px) {
  section.landing .left-layer > * {
    max-width: 100%;
    text-align: center;
    margin: auto;
  }
}
section.landing .right-layer {
  position: absolute;
  width: 1024px;
  top: -120px;
  right: -260px;
  z-index: -1;
}
@media (max-width: 1199px) {
  section.landing .right-layer {
    width: 850px;
    top: -50px;
  }
}
@media (max-width: 992px) {
  section.landing .right-layer {
    width: 650px;
    top: 50px;
  }
}
@media (max-width: 768px) {
  section.landing .right-layer {
    position: static;
    width: 100%;
  }
}
section.landing .right-layer img {
  width: 100%;
}
section.landing .right-layer img:nth-child(2) {
  display: none;
}
@media (max-width: 768px) {
  section.landing .right-layer img:nth-child(2) {
    display: block;
  }
  section.landing .right-layer img:nth-child(1) {
    display: none;
  }
}

.cards {
  padding: 100px 0px;
}
@media (max-width: 576px) {
  .cards {
    padding: 30px 0px;
  }
}
.cards .container {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-column-gap: 100px;
  grid-row-gap: 70px;
}
.cards .container .card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 40px 15px;
  position: relative;
}
.cards .container .card span.icon {
  position: absolute;
  top: -40px;
}
.cards .container .card h3 {
  margin-bottom: 20px;
}
.cards .container .card h3 + p {
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.cards .container .card h3 + p + button {
  cursor: pointer;
  border: none;
  background: none;
  color: #f02aa6;
  font-size: 19px;
  font-weight: bolder;
}
.cards .container .card:nth-child(1) {
  background-image: var(--primary-gradient);
}
.cards .container .card:nth-child(1) span {
  display: block;
  color: var(--bs-body-bg);
  font-size: 26px;
  max-width: 80%;
  line-height: 1.5;
}

footer {
  background-color: var(--blue);
  padding: 15px 0px;
}
footer button {
  background-image: var(--primary-gradient);
}/*# sourceMappingURL=main.css.map */