html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  /*user-select: none;*/
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.4;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

button{
  box-shadow:none !important;
}

:root {
  --primary: #00c9bb;
  --secondary: #17846f;
  --light: #fff;
  --dark: #16151a;
  --grey-light: #f3f3fa;
  --grey-dark: #e4e4e9;
  --radius: 26px;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none !important;
  color: var(--dark);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

html,
body {
  overflow-x: hidden;
  outline: none !important;
  cursor: default;
}

body {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
}

.big-pt {
  padding-top: clamp(60px, 7vw, 120px);
}

.big-pb {
  padding-bottom: clamp(60px, 7vw, 120px);
}

header {
  position: relative;
}

.header-top {
  position: relative;
}

.header-top::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  background: var(--primary);
  background: linear-gradient(
    to right,
    var(--secondary) 0%,
    var(--primary) 100%
  );
}

.header-top-inner {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 10px;
}

.social-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.social-list a {
  padding: 4px;
}

.header-mail, .social-list a {
  color: var(--light);
  line-height: 1.2;
}

.social-list a:hover,
.header-mail:hover {
  color: var(--dark);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  line-height: 1;
  display: flex;
}

.logo img {
  height: 58px;
  width: auto;
}

#main-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#main-menu a {
  text-transform: uppercase;
  padding: 15px 20px;
  margin-left: 5px;
  font-weight: 500;
  line-height: 1;
  position: relative;
  border-radius: var(--radius);
  font-size: 12px;
}

.oval-btn {
  background-color: var(--primary);
  border-radius: var(--radius);
  padding: 15px 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.oval-btn i {
  margin-left: 16px;
  font-size: 18px;
  animation: btn-anim 2s infinite;
}

@keyframes btn-anim {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.2);
  }
}

.buy {
  padding: 15px 30px !important;
  color: var(--light);
}

#main-menu a:hover {
  background-color: var(--primary);
  color: var(--light);
}

.oval-btn:hover {
  background-color: var(--secondary) !important;
}

form.lang-list {
  position: relative;
}

.lang-icon {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  background-color: var(--primary);
  border-radius: 6px;
  cursor: pointer;
  color: var(--light);
}

.lang-list ul {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 130%;
  background-color: var(--light);
  width: 170px;
  border-radius: 20px;
  -webkit-box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.75);
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.75);
  padding: 12px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.lang-list ul input{
display: none;
}

.lang-list:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.lang-list label {
  font-family: var(--syne);
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  padding: 8px 12px !important;
  font-size: 10px !important;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  text-align: center;
}

.lang-list label:hover {
background-color:var(--primary);
}

.header-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.main-slider {
  background-color: var(--dark);
}

.main-slider-content {
  height: calc(100vh - 130px);
  margin: 0 !important;
  min-height: 550px;
  position: relative;
  overflow: hidden;
}

.main-slider,
.slick-list.draggable,
.slick-track {
  height: 100% !important;
}

.slick-dots {
  bottom: initial !important;
  z-index: 99;
  position: absolute;
  right: 0;
  top: 0;
  width: 75px;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
}

.slider-item {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: clamp(50px, 10vw, 100px) 0;
  display: flex !important;
  position: relative;
  z-index: 9;
}

.slider-item::after {
  background-image: radial-gradient(
    at bottom left,
    rgba(0, 201, 188, 0.5),
    rgba(0, 201, 188, 0) 75%
  );
  content: "";
  position: absolute;
  height: clamp(600px, 55vw, 800px);
  width: clamp(600px, 55vw, 800px);
  left: -160px;
  bottom: -160px;
  z-index: 1;
}

.slick-dots li {
  height: 10px;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 2px 0;
}

.slick-dots li button {
  display: flex;
  justify-content: inherit;
  height: inherit;
  width: 100%;
  align-items: center;
  padding: 0;
  background-color: transparent;
  border: none;
  text-indent: -99999px;
  overflow: hidden;
}

.slick-dots li button:before {
  height: 3px;
  line-height: 1;
  width: 40px;
  content: "";
  background-color: var(--primary);
  opacity: 1;
  position: relative;
  transition: all 0.5s;
}

.slick-active button:before {
  width: 100% !important;
}

.slider-item::after {
  background-color: var(--dark);
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
}

.slider-text {
  color: var(--light);
  position: relative;
  max-width: 790px;
  line-height: 1.25;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  gap: 34px;
  height: 100%;
  z-index: 3;
  padding-right: 50px;
}

.slider-text .slider-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 300;
}

.text-color {
  color: var(--primary);
}

.text-bold {
  font-weight: 500;
}

.slider-text p {
  line-height: 1.75;
}



.line-anim {
  position: relative;
  display: inline-block;
}

.line-anim::before {
  position: absolute;
  content: "";
  left: 8px;
  bottom: -6px;
  -webkit-animation: shape-animation 3s infinite;
  animation: shape-animation 3s infinite;
  background-image: url("assets/img/line.png");
  width: 100%;
  height: 9px;
  z-index: 22;
  background-repeat: no-repeat;
}

@keyframes shape-animation {
  0% {
    width: 0;
  }
  15% {
    width: 95%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 95%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}

.cursor {
  height: 0;
  width: 0;
  background-color: var(--primary);
  border-radius: 10px;
  position: fixed;
  top: -7px;
  left: -7px;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
  transition: all 200ms ease-out;
}

body:hover .cursor {
  height: 14px;
  width: 14px;
}

.hover {
  background-color: var(--dark);
  opacity: 0.4;
  height: 22px !important;
  width: 22px !important;
  top: -11px;
  left: -11px;
}

.pre-order-text {
  padding-left: clamp(25px, 6vw, 50px);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.title-box {
  margin-bottom: clamp(22px, 5vw, 34px);
  max-width: 580px;
}

.title-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sub-title {
  font-size: 16px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 10px;
}

.title {
  font-size: clamp(26px, 5vw, 38px);
  line-height: 1.2;
  font-weight: 600;
}

.line-height {
  line-height: 1.75;
}

.big-text {
  font-size: 175%;
}

.bold {
  font-weight: 700;
}

.tilt {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}

.sliding-text-content {
  padding: 60px 0;
  overflow: hidden;
}

.sliding-text-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(24px, 5vw, 40px) 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
  color: var(--light);
  font-weight: 600;
  align-items: center;
  justify-content: flex-start;
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1;
  transform: rotate(-3deg);
  left: 0;
  top: 0;
  z-index: 2;
}

.sliding-text-box::before {
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  z-index: 1;
  content: "";
}
.sliding-left::before {
  background-color: var(--dark);
}

.sliding-right::before {
  background-color: var(--primary);
}

.sliding-text-list {
  display: flex;
  flex-flow: row;
  z-index: 2;
}

.sliding-left .sliding-text-list {
  animation: text-sliding-left 25s linear infinite;
}

.sliding-right .sliding-text-list {
  animation: text-sliding-right 25s linear infinite;
}

.sliding-text {
  padding: 0 clamp(34px, 6vw, 64px);
  position: relative;
}

.sliding-text::after {
  content: "/";
  position: absolute;
  right: -9px;
  color: rgba(255, 255, 255, 0.25);
  transform: scale(1.25);
  width: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@keyframes text-sliding-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes text-sliding-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.intro {
  background: url(../img/intro.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.intro::before {
  content: "";
  position: absolute;
  background-color: var(--dark);
  opacity: 0.6;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro:after {
  background-image: radial-gradient(
    at bottom right,
    rgba(0, 201, 188, 0.6),
    rgba(0, 201, 188, 0) 75%
  );
  content: "";
  position: absolute;
  height: clamp(500px, 55vw, 700px);
  width: clamp(500px, 55vw, 700px);
  right: -120px;
  bottom: -120px;
  z-index: 3;
}

.intro-box {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: relative;
  z-index: 4;
}

.intro-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  z-index: 2;
}

.video-one-content {
  position: relative;
  width: clamp(320px, 58vw, 420px);
  height: clamp(320px, 58vw, 420px);
  padding: clamp(40px, 8vw, 60px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.video-one-content::after {
  background-color: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(180deg);
  }
}

.video-one-content::before {
  border: 2px dashed var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  content: "";
  animation: rotateAnim 16s linear infinite;
}

.video-one-content .title-box {
  margin-bottom: 14px !important;
}

.video-one-content .sub-title {
  color: var(--light);
}

.video-one-content .title {
  font-size: clamp(22px, 4vw, 28px);
}

.is-play {
  background-color: var(--light);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: inline-block;
  position: relative;
}
.is-play .button-outer-circle {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.is-play .button-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) scale(0.8);
}
.is-play .button-icon .triangle {
  animation: fadeIn 7s ease;
}
.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
}

.icon-anim-play{
animation: triangleStroke 3s both;
animation-timing-function: ease;
animation-delay: 1s;
}

.has-scale-animation {
  animation: smallScale 3s infinite;
}
.has-delay-short {
  animation-delay: 0.5s;
}
@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-o-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@-moz-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
@-webkit-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
@-o-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.6);
    opacity: 0;
  }
}

.avantages-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.avantage {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border: 1px solid var(--grey-light);
  margin: 0 -1px -1px 0;
  transition: all 0.6s;
}

.avantage:hover {
  box-shadow: 0 0 24px rgba(73, 73, 73, 0.1);
}

.avantage-icon {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 15px;
  width: 62px;
  height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed var(--primary);
  border-radius: 50%;
  padding: 8px;
}

.avantage-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.prices {
  background: url(../img/prices.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}

.prices::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark);
  opacity: 0.7;
}

.prices .title-box {
  color: var(--light) !important;
  position: relative;
  z-index: 2;
}

.pricing-package {
  padding: 40px;
  border-radius: 10px;
  background-color: var(--light);
  position: relative;
  transition: all 0.5s;
  background-image: url(../img/shape.png);
  border: 1px solid transparent;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.pricing-package:hover {
  background-color: var(--dark);
  color: var(--light) !important;
  border-color: var(--primary);
}

.box-title {
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
}

.box-icon {
  font-size: 32px;
  margin: 5px 0 20px 0;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 7px;
}

.box-item-list li {
  margin-bottom: 15px;
}

.box-item-list li i {
  margin-right: 12px;
  font-size: 18px;
  color: var(--primary);
}

.box-price {
  margin: 25px 0 15px 0;
}

.box-price p {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.3;
}

.box-price p span {
  font-weight: 400;
  font-size: 16px;
  display: block;
}

.referances-slider {
  margin: 0 !important;
}

.slick-next,
.slick-prev {
  width: 40px !important;
  height: 40px !important;
  background-color: var(--light) !important;
  border-radius: 50% !important;
  z-index: 2;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
}

.referances-slider:hover .slick-next,
.referances-slider:hover .slick-prev {
  opacity: 1;
  visibility: visible;
}

/*color: var(--primary) !important;*/

.slick-next {
  right: 30px !important;
}

.slick-prev {
  left: 30px !important;
}

.slick-next:before,
.slick-prev:before {
  color: var(--primary) !important;
}

footer {
  background-color: var(--dark);
  border-top: 3px solid var(--primary);
}

.footer-logo {
  max-width: 190px;
  margin-bottom: 15px;
}

footer a {
  color: inherit;
}

footer a:hover {
  color: var(--primary);
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  line-height: 1;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--dark);
}

.footer-social a:hover{color: var(--light);}

.footer-title {
  font-size: 24px;
  font-weight: 500;
  margin: 16px 0 32px 0;
  color: var(--primary);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li {
  display: flex;
  justify-content: flex-start;
  flex-flow: row;
  align-items: center;
}

.footer-links li i {
  background-color: var(--primary);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.footer-links li i {
  background-color: var(--primary);
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 14px;
  line-height: 30px;
  text-align: center;
  color: var(--dark);
}

.footer-links li p {
  width: calc(100% - 30px);
}

.top {
  position: fixed;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  background-color: var(--primary);
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.top-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

.anim-white::before {
  filter: brightness(0) invert(1);
}

.responsive-btn {
  font-size: 20px;
  padding: 6px 8px;
  background-color: var(--primary);
  line-height: 1;
  color: var(--light);
  border-radius: 6px;
  cursor: pointer;
  display: none;
}

.responsive-menu {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid var(--grey-dark);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 85px;
  background-color:var(--light)
}

.anim {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.fadeIn {
  -webkit-animation: fadeIn 1s ease-in-out both;
  animation: fadeIn 1s ease-in-out both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeInUp {
  -webkit-animation: fadeInUp 1s ease-in-out both;
  animation: fadeInUp 1s ease-in-out both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInRight {
  -webkit-animation: fadeInRight 1s ease-in-out both;
  animation: fadeInRight 1s ease-in-out both;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
    transform: translateX(40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation: fadeInLeft 1s ease-in-out both;
  animation: fadeInLeft 1s ease-in-out both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}


.ui-accordion-header {
  padding: 14px 20px !important;
  background-color: var(--grey-light) !important;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 5px !important;
  display: flex;
  flex-flow: row;
  align-items: center;
  text-transform: capitalize;
}

.ui-accordion-content {
  padding: 14px 20px;
  box-sizing: content-box;
}

.ui-accordion-header-icon {
  position: relative;
  display: inline-block;
  margin-right: 14px;
  transform: scale(1.3);
  transform-origin: center;
}

.ui-accordion-header-icon::before{
  content: "\276F";
  display: block;
  line-height: 1;
  transition: all .5s;
}

.ui-state-active .ui-accordion-header-icon::before{
  transform: rotate(90deg);
}

p.accordion-title{
  font-size: 20px;
  color:var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

ul.ui-accordion-content, .custom-list{
  list-style: inside;
}

ul.ui-accordion-content li, .custom-list li{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 201, 187, .25);
  text-transform: capitalize;
}

ul.ui-accordion-content li::marker, .custom-list li::marker{
  color: var(--primary);
}

strong{
  font-weight: 400;
}

.footer-contact {
  display: flex;
  gap: 30px;
  justify-content: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.footer-contact li {
  margin: 0 !important;
}

.hide{
  display: none;
}

.more {
  margin-top: 30px;
  margin-left: 50%;
  transform: translateX(-50%);
}







@media screen and (max-width: 1199px) {
  .header-content {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .logo img {
    height: 54px;
    width: auto;
  }
  #main-menu a:not(.buy) {
    padding: 15px 12px;
    margin: 0;
  }
  .buy {
    padding: 12px 20px !important;
  }
}

@media screen and (max-width: 991px) {
  .avantages-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-list {
    gap: 10px;
  }

  .header-content .menu {
    display: none;
  }

  .responsive-menu-open {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }

  .main-slider-content {
    height: calc(100vh - 180px);
    min-height: 550px;
  }

  .sliding-text-content {
    padding: 40px 0;
  }

  .responsive-btn {
    display: block;
  }

  .referances-slider .slick-next, .referances-slider .slick-prev {
    opacity: 1;
    visibility: visible;
}

.lang-icon {
  width: 33px;
  height: 33px;
}

}

@media screen and (max-width: 767px) {
  .intro-box {
    flex-flow: column;
    gap: 80px;
  }

  .footer-contact {
    gap: 15px;
    flex-flow: column;
}
}

@media screen and (max-width: 576px) {
  .avantages-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .sliding-text-content {
    padding: 25px 0;
  }
}

@media screen and (max-width: 480px) {
}

.slider-text p {
  line-height: 1.5;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .75);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items:center;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.popupOpen{
  opacity: 1;
  visibility: visible;
}

.popup #tabs {
  background-color: var(--light);
  border-radius: var(--radius);
  width: 100%;
  max-width: 760px;
  border: 4px solid var(--light);
  box-shadow: 0 180px 100px -25px rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 1s;
  transform-origin: center;
  transform: scale(0);
  transition-delay: .5s;
}

.popupOpen #tabs {
  transform: scale(1);
}

.ui-tabs-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--grey-dark);
}

.ui-tabs-tab {
  width: 100%;
}

.ui-tabs-tab a {
  padding: 14px 30px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, .4);
}

.ui-tabs-active a{
  background-color: var(--primary);
  color: var(--light);
}

.ui-tabs-panel {
  padding: 30px;
  overflow: auto;
  height: 100%;
  max-height: 768px;
}

.popup .sub-title {
  margin-bottom: 18px;
  box-shadow: 0 12px 0 -10px;
}



.form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.form-group:not(:last-child) {
margin-bottom: 7px;
}

input[type=checkbox] {
  width: 0;
  height: 0;
  clip-path: rect(0 0 0 0);
  display: none;
}

input[type=checkbox] + label {
  position: relative;
  display: block;
  padding-left: 30px;
  line-height: 18px;
  cursor: pointer;
  font-size: 12px;
}

input[type=checkbox] + label:before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  z-index: 1;
  top: 0;
  left: 0;
  width: 19px;
  height: 19px;
  cursor: pointer;
  border: 1px solid var(--grey-dark);
  border-radius: 3px;
  transition: cubic-bezier(.8, 0, .2, 1) 200ms;
}

input, select {
  border: 1px solid var(--grey-dark);
  border-radius: 3px;
  width: 100%;
  transition: ease-in-out 400ms;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  padding: 6px 10px;
}

input[type=checkbox] + label:after {
  content: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="checbox_sign" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="18px" height="16px" viewBox="0 0 122.881 89.842" enable-background="new 0 0 122.881 89.842" xml:space="preserve"><g><path d="M1.232,55.541c-1.533-1.388-1.652-3.756-0.265-5.289c1.388-1.534,3.756-1.652,5.29-0.265l34.053,30.878l76.099-79.699 c1.429-1.501,3.804-1.561,5.305-0.132c1.502,1.428,1.561,3.803,0.133,5.305L43.223,88.683l-0.005-0.005 c-1.396,1.468-3.716,1.563-5.227,0.196L1.232,55.541L1.232,55.541z" style="fill: rgb(255, 255, 255);"/></g></svg>');
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 2px;
  height: 21px;
  width: 21px;
  opacity: 0;
  scale: 0.5;
  transform-origin: bottom center;
  transform: rotate(40deg);
  transition: ease-in-out 400ms;
  overflow: hidden;
}

input[type=checkbox] + label:hover:before {
  border: 1px solid var(--dark);
}

input:hover, input:focus, select:hover, select:focus {
  border: 1px solid var(--dark);
}

input:focus, select:focus {
  outline: none;
  box-shadow:none
}

input[type=checkbox]:checked + label:before {
  border-color: var(--primary);
  background: var(--primary);
}

input[type=checkbox]:checked + label:after {
  transform: rotate(0deg);
  scale: 1;
  opacity: 1;
}

input[type="submit"] {
  background-color: var(--primary);
  border: none !important;
  padding: 16px !important;
  color: var(--light);
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

input[type="submit"]:hover {
  background-color: var(--secondary);
}



.toasts {
  width: 100%;
  max-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999999;
}

.alert-dismissible {
  padding-right: 3rem;
}

.toasts .alert {
  padding: 24px 22px;
  border-radius: 5px;
  width: 100%;
  display: none;
}

.toasts .alert.alert-success {
  background: #f6fff5;
  border: 1px solid #00cc8836;
  border-left: 5px solid #4cb748;
}

.toasts .alert .btn-close {
  background-size: .688rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%23000"><path d="M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z"/></svg>') center / 1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  opacity: .5;
}

.toasts .alert.alert-success .alert-heading, .toasts .alert.alert-success p {
  color: #3c8139;
}

.toast-texts {
  display: flex;
  flex-flow: column;
  gap: 5px;
}

.toasts .alert .alert-heading {
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0px;
  margin-bottom: 0;
}

.toasts .alert .alert-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 0;
}

.alert img {
  width: 28px;
}

.toasts .alert.alert-danger {
  background: #fff6f6;
  border: 1px solid #c599998d;
  border-left: 5px solid #973937;
}

.toasts .alert.alert-danger .alert-heading, .toasts .alert.alert-danger p {
  color: #973937;
}

.content > * {
  margin-bottom: 26px;
  line-height: 1.8;
}

.content > *:last-child {
  margin-bottom: 0;
}

.popup-img {
  display: block;
}

.popup-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 560px;
}