@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --font-family: 'Inter', sans-serif;
  --primary-colors-dark-blue: #122045;
  --primary-colors-blue: #2253d0;
  --primary-colors-white: #fff;
  --secondary-dark-gray: #a1a7b8;
  --secondary-gray: #e7e8ec;
  --secondary-indigo: #4a67b2;
  --background-bg: #f2f2f2;
  --transition: all 0.35s ease;
  --color-bg1: rgb(108, 0, 162);
  --color-bg2: rgb(0, 17, 82);
  --color1: 34, 83, 208;
  --color2: 37, 34, 208;
  --color3: 63, 59, 255;
  --color4: 44, 110, 271;
  --color5: 47, 119, 292;
  --color-interactive: 41, 100, 250;
  --circle-size: 50%;
  --blending: hard-light;
}

html {
  scroll-behavior: smooth;
}

input,
textarea {
  outline: none;
}

input:focus,
textarea:focus {
  outline: none;
}

body {
  font-family: var(--font-family);
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: 'slnt' 0;
  color: var(--primary-colors-dark-blue);
  background: var(--background-bg);
}

.container {
  width: 100%;
  max-width: 100% !important;
}

.title {
  font-size: clamp(36px, 5vw, 100px);
  line-height: 110%;
}

.btn-burger {
  transition: var(--transition);
  z-index: 52;
}

.btn-burger span {
  transition: var(--transition);
}

.btn-burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
  width: 22px;
}

.btn-burger.active span:nth-child(2) {
  transform: translateX(100%);
  opacity: 0;
}

.btn-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(45deg);
  width: 22px;
}

.header {
  transition: all 0.35s ease;
}

.header.scroll {
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  background: rgba(242, 242, 242, 0.44);
  border-bottom: 1px solid var(--secondary-dark-gray);
  padding: 8px 0;
}

.dropdown-content {
  height: 0;
  opacity: 0;
  transition: height 0.25s ease;
  transition: opacity 0.35s ease;
}

.dropdown-content.show {
  height: auto;
  opacity: 1;
}

.swiper-workflow-button-prev.swiper-button-disabled,
.swiper-workflow-button-next.swiper-button-disabled {
  background: var(--secondary-gray);
  cursor: not-allowed;
}

.swiper-workflow-button-prev.swiper-button-disabled svg,
.swiper-workflow-button-next.swiper-button-disabled svg {
  fill: var(--secondary-dark-gray);
}

.swiper-helps-button-prev.swiper-button-disabled,
.swiper-helps-button-next.swiper-button-disabled,
.swiper-metrics-button-prev.swiper-button-disabled,
.swiper-metrics-button-next.swiper-button-disabled {
  border-color: #fff;
  background: transparent;
  cursor: not-allowed;
}

.swiper-helps-button-prev.swiper-button-disabled svg,
.swiper-helps-button-next.swiper-button-disabled svg,
.swiper-metrics-button-prev.swiper-button-disabled svg,
.swiper-metrics-button-next.swiper-button-disabled svg {
  fill: #fff;
}

::-webkit-input-placeholder {
  color: var(--secondary-dark-gray);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}

::-moz-placeholder {
  color: var(--secondary-dark-gray);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: var(--secondary-dark-gray);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}

:-moz-placeholder {
  color: var(--secondary-dark-gray);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: var(--primary-colors-dark-blue);
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: var(--primary-colors-dark-blue);
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  color: var(--primary-colors-dark-blue);
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholde {
  color: var(--primary-colors-dark-blue);
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveVerticalLeft {
  0% {
    transform: translateX(-25%) translateY(-10%);
  }
  50% {
    transform: translateX(-15%) translateY(10%);
  }
  100% {
    transform: translateX(-25%) translateY(-10%);
  }
}

@keyframes moveVerticalRight {
  0% {
    transform: translateX(-15%) translateY(-10%);
  }
  50% {
    transform: translateX(15%) translateY(10%);
  }
  100% {
    transform: translateX(-15%) translateY(-10%);
  }
}

.gradient-bg {
  background: var(--background-bg);
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.gradients-container {
  filter: url(style.css) blur(40px);
  width: 100%;
  height: 100%;
}

.g1 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color1), 1) 0,
      rgba(var(--color1), 0.8) 30%,
      rgba(var(--color1), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(5% - var(--circle-size) / 2);
  left: calc(10% - var(--circle-size) / 2);
  opacity: 1;
}

.g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 1) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(30% - var(--circle-size) / 2);
  left: calc(0% - var(--circle-size) / 2);
  opacity: 1;
}

.g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 1) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  right: -35%;
  opacity: 1;
}

.g4 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color1), 1) 0,
      rgba(var(--color1), 0.8) 30%,
      rgba(var(--color1), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(40% - var(--circle-size) / 2);
  right: calc(-15% - var(--circle-size) / 2);
  opacity: 1;
}

.g5 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color1), 1) 0,
      rgba(var(--color1), 0.8) 30%,
      rgba(var(--color1), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: 30%;
  height: 30%;
  top: 50%;
  right: -10%;
  opacity: 1;
}

.messageSend p {
  font-size: 20px;
  margin-bottom: 20px;
}

.messageSend h3 {
  font-size: 34px;
  margin-bottom: 15px;
}

.messageSend a {
  font-size: 16px;
  color: black;
  border-bottom: 1px dashed #B2BDCC;
}

.preloader_wrapp {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer {
  background-image: url('../../images/crm/footer-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
}

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

::-webkit-scrollbar-thumb {
  border-radius: 6px; 
}


.sk-circle-bounce {
  width: 4em;
  height: 4em;
  position: relative;
  margin: auto;
}

.sk-circle-bounce .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle-bounce .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #337ab7;
  border-radius: 100%;
  -webkit-animation: sk-circle-bounce-delay 1.2s infinite ease-in-out both;
  animation: sk-circle-bounce-delay 1.2s infinite ease-in-out both;
}

.sk-circle-bounce .sk-circle-2 {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.sk-circle-bounce .sk-circle-3 {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.sk-circle-bounce .sk-circle-4 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sk-circle-bounce .sk-circle-5 {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.sk-circle-bounce .sk-circle-6 {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.sk-circle-bounce .sk-circle-7 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sk-circle-bounce .sk-circle-8 {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.sk-circle-bounce .sk-circle-9 {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.sk-circle-bounce .sk-circle-10 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sk-circle-bounce .sk-circle-11 {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.sk-circle-bounce .sk-circle-12 {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

.sk-circle-bounce .sk-circle-2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.sk-circle-bounce .sk-circle-3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.sk-circle-bounce .sk-circle-4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.sk-circle-bounce .sk-circle-5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.sk-circle-bounce .sk-circle-6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.sk-circle-bounce .sk-circle-7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.sk-circle-bounce .sk-circle-8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.sk-circle-bounce .sk-circle-9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.sk-circle-bounce .sk-circle-10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.sk-circle-bounce .sk-circle-11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.sk-circle-bounce .sk-circle-12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes sk-circle-bounce-delay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes sk-circle-bounce-delay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

