@import url("swiper.css");
@import url("reset.css");
@import url("variabels.css");

@import url("components/header.css");
@import url("components/footer.css");
@import url("components/banner.css");
@import url("components/work.css");
@import url("components/app.css");
@import url("components/benefits.css");
@import url("components/case.css");
@import url("components/price.css");
@import url("components/product.css");
@import url("components/contact.css");

html {
  scroll-behavior: smooth;
}

body {
  background: var(--gray);
}
a,
button {
  transition: var(--transition);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--gray);
}

::-webkit-scrollbar-thumb {
  background: var(--pink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "IBM Plex Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  color: var(--blue);
}

b,
strong {
  font-weight: 700;
}
i {
  font-style: italic;
}

.blockOverflow {
  overflow: hidden;
}

.swal2-container {
  .swal2-html-container {
    a {
      color: var(--pink);
      &:hover {
        color: var(--blue);
      }
    }
  }

  .swal2-confirm {
    background: var(--green);
    transition: var(--transition);

    &:hover {
      background: var(--blue);
    }
  }
}

.blockScreen {
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  inset: 0;
  display: none;
  opacity: 0;
  z-index: -1;
  cursor: not-allowed;

  transition: var(--transition);

  &.--active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    z-index: 102;
  }
}

.btn {
  padding: 15px 20px;
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  font-size: 18px;
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  &.--small {
    padding: 8px 20px;
    font-weight: 500;
  }

  &.--white {
    background: var(--white);
    color: var(--lightBlue);
  }

  &.--blue {
    background: var(--lightBlue);
    color: var(--white);
  }

  &:hover {
    opacity: 0.7;
  }

  svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
  }
}

.lds-dual-ring {
  color: var(--blue);
}

.lds-dual-ring,
.lds-dual-ring:after {
  box-sizing: border-box;
}
.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6.4px solid currentColor;
  border-color: currentColor transparent currentColor transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.gradientBlue {
  background: linear-gradient(
    90deg,
    #1b0d68 0%,
    #395cb8 45%,
    #9b44c0 75%,
    #fa8aec 100%
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradientLight {
  background: linear-gradient(90deg, #aaf0e5 0%, #d7c5f9 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 800px) {
  body,
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  .btn {
    padding: 15px;
    font-size: 12px;
  }
}
