*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  margin: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Rubik Bold";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rubik ExtraBold";
  src: url("../fonts/Rubik-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Regular";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope Medium";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope SemiBold";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Manrope Regular", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #2f2f2f;
  background: #f9f9f9;
}

.container {
  width: 100%;
  max-width: 1295px;
  margin: 0 auto;
  padding: 0 25px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 25px 45px;
  border-radius: 60px;
  background: #eb299d;
  color: #ebebeb;
  font-family: "Rubik Bold", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background: #c42685;
}

.btn:active {
  background: #aa2374;
}

h1 {
  margin: 0;
  color: #f9f9f9;
  text-align: center;
  font-family: "Rubik ExtraBold", sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 800;
  line-height: 100%; /* 64px */
}

h2,
h3 {
  margin: 0;
  font-family: "Rubik ExtraBold", sans-serif;
  line-height: normal;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  padding: clamp(80px, 10vw, 152px) 0;
}

p {
  margin: 0;
}

.hero > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.hero > .container {
  padding: 0 clamp(50px, 10vw, 130px);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: clamp(40px, 5vw, 64px) clamp(80px, 6vw, 110px);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.6);
  font-family: "Manrope Medium", sans-serif;
  color: #ebebeb;
  text-align: center;
}

.hero-content > .button {
  margin-top: 20px;
}

.hero-content > p {
  padding: 0 clamp(40px, 5vw, 80px);
}

@media screen and (max-width: 992px) {
  body {
    font-size: 14px;
    line-height: normal;
  }

  .btn {
    padding: 20px 30px;
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .hero {
    padding: clamp(80px, 10vw, 166px) 0 clamp(50px, 10vw, 110px);
  }

  .hero > .container {
    padding: 0 25px;
  }

  .hero-content {
    gap: 20px;
    padding: 40px 30px;
    border-radius: 40px;
  }

  .hero-content > p {
    padding: 0 16px;
  }
}

.about {
  padding: clamp(100px, 5vw, 150px) 0 clamp(50px, 5vw, 100px);
  background: #ededed;
}

.about > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 100px 54px;
}

.about__text {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about__text h2 {
  font-size: 40px;
}

.about__image {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
}

.about__features {
  grid-column: 1/3;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.about__features .feature {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(80px, 5vw, 105px) 35px;
  border-radius: 35px;
  font-family: "Rubik ExtraBold", sans-serif;
  font-size: 20px;
  line-height: 110%;
  color: #f9f9f9;
  text-align: center;
  overflow: hidden;
}

.about__features .feature > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about__features .feature > p {
  position: relative;
  z-index: 1;
}

.about__features .feature::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

@media screen and (max-width: 1024px) {
  .about__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .about {
    padding: 70px 0 40px;
  }

  .about > .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
  }

  .about__text {
    grid-column: 1/-1;
    grid-row: 1/2;
    gap: 20px;
  }

  .about__text h2 {
    font-size: 24px;
  }

  .about__image {
    grid-column: 1/-1;
    grid-row: 2/3;
    border-radius: 40px;
  }

  .about__features {
    grid-column: 1/-1;
    grid-row: 3/-1;
  }

  .about__features .feature {
    padding: clamp(80px, 5vw, 105px) 56px;
    border-radius: 40px;
  }
}

@media screen and (max-width: 575px) {
  .about__features {
    display: flex;
    flex-direction: column;
  }
}

.dot-coloring {
  padding: clamp(50px, 5vw, 100px) 0 clamp(50px, 5vw, 75px);
}

.dot-coloring > .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.dot-coloring > .container h2 {
  font-size: 56px;
  line-height: normal;
}

.dot-coloring > .container h2 > span {
  color: #f1762a;
}

.dot-coloring > .container > p {
  max-width: 656px;
  margin: 0 auto;
}

.dot-benefits {
  display: flex;
  gap: clamp(50px, 5vw, 100px);
  margin: 20px 0 40px;
}

.dot-benefits .benefit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.3;
  text-align: center;
}

.dot-benefits .benefit h3 {
  color: #f5d33a;
  font-size: 56px;
}

@media screen and (max-width: 992px) {
  .dot-coloring {
    padding: 30px 0 35px;
  }

  .dot-coloring > .container {
    gap: 20px;
  }

  .dot-coloring > .container h2 {
    font-size: 28px;
  }

  .dot-benefits {
    flex-direction: column;
    gap: 30px;
    margin: 20px 0 30px;
  }

  .dot-benefits .benefit {
    gap: 5px;
  }

  .dot-benefits .benefit h3 {
    font-size: 28px;
  }
}

.products {
  padding: clamp(50px, 5vw, 75px) 0 clamp(100px, 5vw, 150px);
}

.products > .container {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.products > .container > h2 {
  font-size: 56px;
  text-align: center;
}

.products > .container > h2 span {
  color: #eb299d;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Manrope SemiBold";
  font-size: 24px;
}

.product-card > .btn {
  margin-top: 10px;
  padding: 20px 45px;
}

.products > .container > .btn {
  align-self: center;
  padding: 21px 45px;
  border-radius: 60px;
  border: 4px solid #f1762a;
  background: transparent;
  color: #f1762a;
}

.products > .container > .btn:hover {
  background: #f1762a;
  color: #fff;
}

.products > .container > .btn:active {
  background: #d56d2c;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .product-list {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .products {
    padding: 35px 0 70px;
  }

  .products > .container {
    gap: 50px;
  }

  .products > .container > h2 {
    font-size: 28px;
  }

  .product-card {
    font-size: 16px;
  }

  .products > .container > .btn {
    align-self: auto;
    padding: 23px 45px;
  }
}

@media screen and (max-width: 575px) {
  .product-list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.free-download {
  padding: 100px 0;
  background: #7a47af;
}

.free-download > .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  font-size: 20px;
  color: #f9f9f9;
}

.free-download > .container h2 {
  color: #f9f9f9;
  font-size: 64px;
}

.free-download > .container > .btn {
  align-self: center;
  margin-top: 10px;
  padding: 20px 80px;
  border-radius: 40px;
  background: #f5d33a;
  color: #2f2f2f;
  font-size: 24px;
  line-height: normal;
}

.free-download > .container > .btn:hover {
  background: #e8c62e;
}

.free-download > .container > .btn:active {
  background: #ddbd30;
}

@media screen and (max-width: 992px) {
  .free-download {
    padding: 70px 0;
  }

  .free-download > .container {
    gap: 20px;
    font-size: 14px;
  }

  .free-download > .container h2 {
    font-size: 28px;
  }

  .free-download > .container > .btn {
    margin-top: 20px;
    font-size: 20px;
  }
}

.highlight {
  display: inline;
}

.highlight span:nth-child(1) {
  color: #daa520;
}

.highlight span:nth-child(2) {
  color: #ff7f00;
}

.highlight span:nth-child(3) {
  color: #ff4dc4;
}

.highlight span:nth-child(4) {
  color: #b266ff;
}

.highlight span:nth-child(5) {
  color: #3399ff;
}

.highlight span:nth-child(6) {
  color: #89eb27;
}

.highlight span:nth-child(7) {
  color: #ff3333;
}

.highlight span:nth-child(8) {
  color: #00cccc;
}

.links ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0;
  list-style-type: none;
}

.links ul .btn {
  padding: 21px 45px;
  border-radius: 60px;
  border: 4px solid #f1762a;
  background: transparent;
  color: #f1762a;
}

@media screen and (max-width: 992px) {
  .links ul .btn {
    padding: 1rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .links ul {
    flex-wrap: wrap;
  }
  .links ul .btn {
    padding: 0.875rem 1.125rem;
    font-size: 0.875rem;
  }
}
