/* NAVIGATION */
nav {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--default--nav-height);
	background: var(--gray-light);
	z-index: 5;
}
nav .menu {
	display: flex;
	justify-content: space-between;
	min-height: 55px;
	padding: 0 12px;
    background: #ffffff12;
    backdrop-filter: blur(20px);
    border-radius: 60px;
}

nav .menu svg {
	opacity: 1;
}

nav .menu path {
	transition: none;
}

nav .menu[data-menu="blue"] {
    background: #B7DFEE33;
}

nav .menu[data-menu="blue"] path {
	fill: var(--purple-dark);
}

nav .menu[data-menu="blue"] li a {
	color: var(--purple-dark);
}
nav .menu[data-menu="blue"] li a:hover {
	color: var(--blue);
}

nav ul {
	
}
nav ul:not(.language) li {
	margin: 0 20px
}
nav ul li a {
	color: #fff;
	font-family: 'GeneralSans-Medium';
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: none;
}
nav ul li a:hover {
	color: var(--yellow);
}
nav .language .current-lang {
	display: none;
}
nav .language a {
	padding: 8px 20px;
	background: #007CBA;
    color: var(--white) !important;
    border-radius: 20px;
    letter-spacing: 0.08em;
    font-family: 'GeneralSans-Medium';
}


/* HEADER */
header {
	height: 100lvh;
	background: #1F1833;
	overflow: hidden;
}
header canvas {
	position: absolute;
	top: 50%;
	left: 50%;
    width: 50%;
    height: unset;
    transform: translate(-50%, -50%);
}
header .scroll {
	position: absolute;
	left: calc(50% - 20px);
	bottom: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	cursor: pointer;
	animation: bounce 2s infinite;
}
header .scroll picture {
	width: 100%;
}
header:before {
	content: '';
    width: 1200px;
    height: 600px;
    background: #CE39DA;
    display: block;
    filter: blur(200px);
    position: absolute;
    top: -200px;
    left: calc(50% - 600px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}
header:after {
	content: '';
    width: 600px;
    height: 400px;
    background: #69CDFF;
    display: block;
    filter: blur(200px);
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 300px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: overlay;
}



/* SECTION */
section {
	max-width: 100%;
	padding: var(--size-xl) 0;
}
section address {
	font-style: normal;
	line-height: 250%;
}
section address a {
	display: flex;
	align-items: center;
	color: var(--purple-dark);
	font-family: 'ClashGrotesk-Semibold';
	font-size: 24px;
	font-weight: 600;
}
section address a:before {
	display: block;
	width: 30px;
	height: 10px;
	margin-right: 16px;
	background: url('../img/line-icon.svg') no-repeat center;
	content: '';
}

section.quote picture[overlay]:before {
	background: #181833;
	background: linear-gradient(180deg, rgba(24, 24, 51, 0) 0%, rgba(24, 24, 51, 0.8) 100%);
	opacity: 1;
}

section.advantages {
	overflow: hidden;
}
section.advantages:before,
section.our-services:before {
	content: '';
    width: 1200px;
    height: 600px;
    background: #DCF5FF;
    display: block;
    filter: blur(200px);
    position: absolute;
    top: -200px;
    left: -400px;
    opacity: 0.7;
    pointer-events: none;
    z-index: -1;
}

section.our-services:before {
	left: unset;
	right: -400px;
}
section.our-services:after {
	content: '';
    width: 350px;
    height: 590px;
    background: url('../img/offer.svg') no-repeat center right;
    background-size: contain;
    display: block;
    position: absolute;
    top: calc(50% - 295px);
    right: 0;
    pointer-events: none;
    z-index: 1;
}

section.our-services {
	background: #F1F4F9;
	overflow: hidden;
}
section.our-services:before {
	z-index: 1;
}

section#customers .grid img {
    max-width: 120px;
	max-height: 64px;
}
section#customers .banner {
	border-radius: 8px;
	overflow: hidden;
}

/* FOOTER */
footer {
	padding: var(--size-l) 0;
	background: url('../img/footer.svg') no-repeat bottom right #1F1833;
	background-size: 300px;
	overflow: hidden;
}
footer .logo {
	width: 220px;
}
footer ul {
	display: flex;
}
footer ul li {
	margin-right: var(--size-m);
}
footer ul li a {
	color: var(--white);
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
footer p {
	font-family: 'GeneralSans-Light';
	line-height: 200%;
}
footer:before {
	content: '';
	width: 640px;
	height: 470px;
	background: #ce39da;
	display: block;
	filter: blur(200px);
    position: absolute;
    top: -120%;
    left: -20%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
}
footer:after {
	content: '';
	width: 50%;
	height: 950px;
	background: #0061D3;
	display: block;
	filter: blur(400px);
    position: absolute;
    top: 20%;
    right: -25%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

/* LOGO */
.logo {
	display: block;
	width: 150px;
}

/* TEAM */
.team {
	min-height: 470px;
	overflow: hidden;
}
.team .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #1D1753;
    color: #DCF5FF;
    transition: var(--transition);
}

.team .item > picture {
	padding-right: calc(var(--size-xs) + 20px);
	cursor: pointer;
	overflow: hidden;
}
.team .item > picture img {
	border-radius: 8px;
}
.team .item > div {
	padding-left: 2px;
	padding-right: var(--size-s);
}
.team .item .h5 {
	color: #00A0DC;
}

.team .item:nth-child(2) {
	left: 50%;
}
.team .item:nth-child(3) {
	left: 75%
}

.team .item:nth-child(1).active {
	left: 0;
}
.team .item:nth-child(2).active {
	left: 25%;
}
.team .item:nth-child(3).active {
	left: 50%;
}

/* DRAWER */
.drawer {
	position: fixed;
	top: 0;
	right: -700px;
	display: flex;
	width: 700px;
	max-width: 100%;
	height: 100lvh;
	background: #1D1753;
	color: var(--white);
	transition: var(--transition);
	z-index: 10;
}
.drawer.active {
	right: 0;
}
.drawer .close {
	align-self: flex-start;
}
.drawer ul {
	padding-left: 20px;
    list-style-type: disc;
}
.drawer ul li {
	margin-top: 10px;
}
.drawer ul li:first-child {
	margin-top: 0;
}

body:after {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: '';
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 8;
}
.drawer-opened:after {
    opacity: 0.6;
    pointer-events: all;
}




canvas {
	display: block;
}

.particles {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 50%;
}

#particles-js,
#particles-js2,
#particles-js3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1
}
#particles-js {
	opacity: 0.2;
}

.particles:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #1F1833 0%, transparent 32%);
	z-index: 1;
}


.counters {
	overflow: hidden;
}
.counters:before {
	content: '';
	width: 640px;
	height: 470px;
	background: #ce39da;
	display: block;
	filter: blur(200px);
    position: absolute;
    top: -50%;
    left: calc(50% - 320px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 2;
}
.counters:after {
	content: '';
	width: 50%;
	height: 950px;
	background: #0061D3;
	display: block;
	filter: blur(400px);
    position: absolute;
    bottom: -100%;
    left: 25%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.counters canvas {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* BUTTON */
.button {
	display: inline-flex;
	align-items: center;
	width: auto;
    min-height: 48px;
    padding: 0 20px;
    background: var(--yellow);
    border: 0;
    border-radius: 12px;
    color: var(--purple-dark);
    cursor: pointer;
    font-family: 'GeneralSans-Bold';
}

/* BORDER BOX */
.border-box {
	border: 1px solid var(--blue-dark);
	border-radius: 8px;
	padding: 15px;
}

/* TESTIMONIALS */
.testimonials {
	width: calc(50% + 200px);
	margin: 0 auto;
}
.testimonials:before,
.testimonials:after {
	position: absolute;
	top: 0;
	display: block;
	width: 100px;
	height: 100%;
	background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
	content: '';
	z-index: 1;
}
.testimonials:after {
	transform: rotate(180deg);
	right: 0;
}
.testimonials .slick-slide {
	padding: 0 100px;
}

/* SERVICES */
.services.slick-slider {
	width: calc(100% + 40px);
	margin-left: -20px;
}
.services .slick-slide {
  margin: 0 20px;
}

/* SLIDER */
.slider__arrows {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}
.slider__arrows .slider__arrow {
	display: block;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	background: url('../img/slider-arrow.svg') no-repeat center;
	background-size: contain;
	cursor: pointer;
}
.slider__arrows .slider__arrow.prev {
	transform: rotate(180deg);
}

/* SLICK */
.slick-initialized .slick-arrow {
	display: none !important;
}
.slick-initialized .slick-slide.flex {
	display: flex;
}

/* FORM */
form input,
form textarea {
	width: 100%;
	min-height: 68px;
	padding: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--yellow);
    font-family: var(--default--font-family);
    font-size: 20px;
	outline: none;
}
form textarea {
	width: 100%;
	min-height: 150px;
	padding-top: 20px;
}
form input[type="submit"] {
	width: auto;
	min-height: 48px;
	padding: 0 20px;
	background: var(--yellow);
	border: 0;
	border-radius: 12px;
	color: var(--purple-dark);
	cursor: pointer;
	font-family: 'GeneralSans-Bold';
}
form input::placeholder,
form textarea::placeholder {
	color: var(--purple-dark);
}

/* SVG */
svg {
	opacity: 0;
	transition: var(--transition);
}
svg.animate {
	opacity: 1;
}
svg.animate path,
svg.animate circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: dash 8s linear forwards;
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}



/* ACCORDION */
.accordion .accordion__item {
	padding: 20px 0;
	border-top: 1px solid #00A0DC33;
	transition: var(--transition);
	cursor: pointer;
}
.accordion .accordion__item .accordion__item__content {
	max-height: 0;
	color: var(--purple-dark);
	overflow: hidden;
	transition: var(--transition);
}
.accordion .accordion__item.active {
	border-top: 1px solid var(--blue);
}
.accordion .accordion__item.active .accordion__item__content {
	max-height: 150px;
	padding-top: 20px;
}























