img {
  max-width: 100%;
}

.slider-area {
  padding: 100px 0;
}

.slider-area img {
  width: 300px;
  margin-bottom: 30px;
}

.slider-style-8 .inner .title {
  font-size: 70px;
  margin-bottom: 50px;
}

.one-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.one-wrapper .one-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 28px;
  border-radius: 8px;
  background-color: transparent;
  background: linear-gradient(95deg, var(--color-primary) 15%, var(--color-tertiary) 45%, var(--color-pink) 75%, var(--color-secondary) 100%) 95% / 200% 100%;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.footer-top .container .links {
  align-items: center;
  padding-bottom: 30px;
}

.footer-top img {
  width: 100px;
}

.footer-top ul {
  display: flex;
  margin-bottom: 0;
  padding-left: 40px;
  gap: 40px;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 10px 0 40px;
}

@media screen and (max-width: 767.98px) {
  .slider-area {
    padding: 60px 0;
  }

  .slider-style-8 .inner .title {
    font-size: 50px;
    margin-bottom: 40px;
  }

  .footer-top ul {
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
    margin-top: 20px;
  }

  .footer-top ul li {
    margin: 0;
  }

  .one-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .one-box:last-of-type {
    grid-column: span 2;
  }

  .call-to-btn,
  .rainbow-callto-action .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .service-area {
    text-align: center;
  }
}

@media screen and (max-width: 576.98px) {
  .slider-area img {
    width: 200px;
  }

  .slider-style-8 .inner .title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .one-wrapper {
    grid-template-columns: 1fr;
  }

  .one-box:last-of-type {
    grid-column: span 1;
  }
}

#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  background-color: var(--color-dark);
  border-top: 2px solid var(--color-pink);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999
}

#cookPopup p {
  margin: 0 0 10px;
  text-align: center;
  color: white;
}
#cookPopup a {
  font-size: 16px;
  transition: 0.3s;
  color: var(--color-pink);
}
#cookPopup a:hover {
  transition: 0.3s;
  color: white;
}

@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}

@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }

  .cookPopup_btn {
    margin: 10px 0 0 0
  }
}

.cookPopup_title {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.cookPopup_desc {
  font-size: 16px
}

.show {
  display: flex !important
}

header a {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
header a img {
  width: 200px;
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 150px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}
.thanks p {
  margin-bottom: 16px;
  text-align: center;
  font-size: 18px;
  color: white;
}
.thanks p.thanks-text {
  font-weight: 700;
}
@media screen and (max-width: 767.98px) {
  .thanks p {
    font-size: 14px;
  }
}

.docs {
  word-break: break-word;
  padding: 100px 20px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--color-pink);
  transition: 0.3s;
}
.docs a:hover {
  color: white;
}
@media screen and (max-width: 767.98px) {
  .docs {
    padding: 80px 0;
  }
  .docs h2 {
    margin-bottom: 10px;
    font-size: 28px;
  }
  .docs h3 {
    margin-bottom: 10px;
    font-size: 24px;
  }
}