.main-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 16px 0;
  background: #f2bb4c;
}

.header-title {
  display: none;
}

.page-nav {
  display: none;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: #0c0c0c;
  border-bottom: 1px solid transparent;
  padding: 8px 12px;
  transition: border-color 0.3s ease;
}

.page-nav-link:hover {
  border-color: #0c0c0c;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-svg {
  stroke: #191d25;
}

@media screen and (min-width: 1436px) {
  .main-section {
    padding: 30px 0;
  }

  .header-container {
    position: relative;
  }

  .header-title {
    display: block;
    position: absolute;
    left: 98px;
    top: 50%;
    transform: translateY(-50%);
  }

  .page-nav {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  padding-top: 100px;
  padding-bottom: 80px;
  padding-left: 60px;
  border-radius: 0 0 62px 62px;

  z-index: 8;
  backdrop-filter: blur(10px);
  border-radius: 0 0 62px 62px;
  background: #dcdad8;
  transform: translateY(-100%);
  transition: transform 1s ease;
}

.modal-logo {
  width: 198px;
  margin-bottom: 45px;
}

.menu-nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 55px;
}

.modal-built-link {
  display: block;
  margin-top: 40px;
  width: 150px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #1a212d;
  padding: 12px 24px;
  border: 1px solid #19c916;
  border-radius: 10px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  padding: 20px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #0c0c0c;
  border-radius: 20px;
  transition: transform 0.4s ease;
  box-shadow: 0 14px 42px 0 rgba(8, 15, 52, 0.06);
  background: #fff;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 187%;
  color: #0c0c0c;
  margin-bottom: 37px;
  a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
}

.popup-btn {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  color: #0c0c0c;
  border: 1px solid #0c0c0c;
  border-radius: 56px;
  padding: 18px 26px;
  box-shadow: 0 4px 8px 0 rgba(74, 58, 255, 0.08);
  background: #fff;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  box-shadow: 0 3px 12px 0 rgba(74, 58, 255, 0.18);
  background: #0c0c0c;
  color: #fff;
}

.popup-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media screen and (min-width: 1436px) {
  .page-popup {
    padding: 52px 138px;
  }

  .popup-text {
    font-size: 18px;
    margin: 0;
  }

  .popup-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 128px;
  }

  .popup-wrap {
    flex-shrink: 0;
  }
  .popup-btn {
    padding: 18px 36px;
  }
}

/* hero  */

.dashboard {
  padding-top: 188px;
  padding-bottom: 188px;
  border-radius: 0 0 62px 62px;
  background-image: url(../img/cloud.png), url(../img/home.jpg);
  background-position: center;
  background-size: auto, cover;
  background-repeat: no-repeat;
}

.page-hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  color: #191d25;
  margin-bottom: 22px;
}

.page-hero-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 22px;
  line-height: 145%;
  color: #191d25;
  margin-bottom: 42px;
}

.page-hero-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: #fff;

  display: block;
  width: 254px;
  border: 1px solid #fff;
  border-radius: 22px;
  padding: 22px;
  background: radial-gradient(
    60.22% 60.22% at 50% 50%,
    #5301cf 0%,
    #2a0169 100%
  );
  transition: color 0.3s ease;
}

.page-hero-link:hover {
  color: #f2bb4c;
  border-color: #f2bb4c;
}

@media screen and (min-width: 1436px) {
  .dashboard {
    padding-top: 279px;
    padding-bottom: 179px;
    border-radius: 0 0 100px 100px;
  }

  .page-hero-title {
    font-size: 48px;
    max-width: 797px;
  }

  .page-hero-text {
    font-size: 22px;
    max-width: 797px;
  }
}

/* why-list */

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 32px;

  li {
    border-radius: 22px;
    padding: 16px;
    backdrop-filter: blur(22px);
    background: linear-gradient(180deg, rgba(255, 212, 81, 0) 0%, #ffd451 100%);
  }

  img {
    margin: 0 auto;
    margin-bottom: 18px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #0c0c0c;
    margin-bottom: 8px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #0c0c0c;
  }
}

.why-banner {
  width: 100%;
}

@media screen and (min-width: 1436px) {
  .why-list {
    flex-direction: row;
    margin-bottom: 60px;

    li {
      width: calc((100% - 44px) / 3);
    }
  }
}

/* what */

#what {
  border-radius: 62px 62px 0 0;
  background: linear-gradient(180deg, #dcdad8 0%, #fff 100%);
}

.what-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 740px;
  margin: 0 auto;
  max-width: 100%;

  li {
    padding-bottom: 22px;
    border-bottom: 1px solid #000;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #0c0c0c;
    margin-bottom: 8px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #0c0c0c;
  }
}

@media screen and (min-width: 1436px) {
  #what {
    border-radius: 100px 100px 0 0;
  }
}

/* testimonials */

#testimonials {
  background-image: url(../img/test.png);
  background-position: center;
  background-size: cover;
}

.testimonials-item {
  border-radius: 22px;
  padding: 22px;
  width: 335px;
  max-width: 100%;
  min-height: 443px;

  background: #fff;

  img {
    width: 88px;
    margin: 0 auto;
    margin-bottom: 22px;
  }

  h4 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 133%;
    text-transform: uppercase;
    color: #0c0c0c;
    margin-bottom: 16px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #0c0c0c;
    margin-bottom: 12px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #0c0c0c;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 22px;
  padding: 18px;
  width: 67px;
  height: 55px;
  background: radial-gradient(
    60.22% 60.22% at 50% 50%,
    #5301cf 0%,
    #2a0169 100%
  );
  transition: border-color 0.25s ease;
}

.swiper-svg {
  fill: none;
  stroke: #fff;
  transition: stroke 0.3s ease;
}

.btn:hover {
  border-color: #f2bb4c;

  svg {
    stroke: #f2bb4c;
  }
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 32px;
}

.testimonials-left {
  svg {
    transform: rotate(-90deg);
  }
}

.testimonials-right {
  svg {
    transform: rotate(90deg);
  }
}

@media screen and (min-width: 1436px) {
  .testimonials-container {
    padding: 0 181px;
  }
  .testimonials-item {
    width: 526px;
    min-height: 264px;

    img {
      margin: 0;
      flex-shrink: 0;
    }

    span {
      margin: 0;
    }
  }

  .testimonials-cover {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 12px;
  }
}

/* services */

#services {
  padding-top: 100px;
}

.services-hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #0c0c0c;
  margin-bottom: 32px;
}

.services-hero-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 178%;
  color: #191d25;
  margin-bottom: 32px;
}

.services-image {
  width: 100%;
}

.services-image-desctop {
  display: none;
}

@media screen and (min-width: 1436px) {
  #services {
    padding-top: 180px;
  }

  .services-image {
    display: none;
  }

  .services-image-desctop {
    display: block;
    width: 100%;
  }

  .services-hero-title {
    font-size: 40px;
  }

  .services-hero-title {
    max-width: 1070px;
  }
}

/* labs */

.labs-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.labs-slide {
  border-radius: 22px;
  padding: 22px;
  width: 335px;
  max-width: 100%;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(255, 212, 81, 0) 0%, #ffd451 100%);

  img {
    margin: 0 auto;
    margin-bottom: 18px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #0c0c0c;
    margin-bottom: 8px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #0c0c0c;
  }
}

@media screen and (min-width: 1436px) {
  .labs-slide {
    width: 290px;
  }
}

/* systems */

#systems {
  border-radius: 62px;
  background: linear-gradient(180deg, #dcdad8 0%, #fff 100%);
}

.systems-list {
  display: flex;
  flex-direction: column;
  gap: 22px;

  li {
    border-radius: 22px;
    padding: 16px;
    backdrop-filter: blur(22px);
    background: linear-gradient(180deg, #fff 0%, #ffd451 100%);
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    text-align: center;
    color: #0c0c0c;
    margin-bottom: 8px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    text-align: center;
    color: #0c0c0c;
  }
}

@media screen and (min-width: 768px) {
  .systems-list {
    flex-wrap: wrap;
    height: 347px;
    align-items: center;
    justify-content: center;
    width: 692px;
    margin: 0 auto;
    li {
      width: calc((100% - 22px) / 2);
    }
  }
}

/* contact */

#contact {
  padding-top: 100px;
}

.contact-hero-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #0c0c0c;
  margin-bottom: 32px;
}

.contact-hero-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 178%;
  color: #191d25;
  margin-bottom: 12px;

  a:hover {
    text-decoration: underline;
  }
}

#contact-soc-links {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.contact-hero-link {
  width: 334px;
  margin-bottom: 40px;
}

@media screen and (min-width: 1436px) {
  #contact {
    padding-top: 180px;
  }

  .contact-container {
    display: flex;
    gap: 40px;
  }

  .contact-image {
    flex-shrink: 0;
  }
  .contact-hero-title {
    font-size: 40px;
  }

  .contact-hero-link {
    margin: 0;
    margin-top: 32px;
  }
}

/* faq */

#faq {
  background-color: #dcdad8;
  background-image: url(../img/faq.png);
  background-position: center;
  background-size: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border-radius: 22px;
  padding: 32px;
  background: #fff;
}

.faq-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #5301cf;
  transform: rotate(45deg);
  transition: transform 0.4s ease, background-color 0.3s ease;
}

.faq-svg {
  stroke: #fff;
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 167%;
  color: #0c0c0c;
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #0c0c0c;
  margin-top: 22px;
}

/* our-vibe */

#our-vibe {
  background-image: url(../img/vibe.png);
  background-position: center;
  background-size: cover;
}

.vibe-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 178%;
  color: #191d25;
}

/* footer */

.footer {
  padding: 29px 0;
  background: linear-gradient(90deg, #dcdad8 0%, #767574 100%);
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.footer-mail {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;

  a:hover {
    text-decoration: underline;
  }
}

.social-link {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 32px;

  img {
    width: 24px;
  }

  a {
    transition: transform 0.3s ease;
  }

  a:hover {
    transform: scale(1.2);
  }
}

.footer-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;

  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1436px) {
  .footer {
    padding: 37px 0;
  }

  .footer-list {
    flex-direction: row;
    justify-content: center;
    gap: 22px;
  }
}

/* loader */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(94, 95, 147, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #f2bb4c;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* scroll */

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  border: 1px solid #f2bb4c;
  background-color: #fff;
  color: #f2bb4c;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  z-index: 7;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(180deg);
  background-color: #191d25;
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
