@font-face {
  font-family: "RobotoRegular";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Helvetica Neue Regular"), url("../fonts/Roboto-Regular.woff");
}
@font-face {
  font-family: "RobotoBold";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: local("Helvetica Neue Regular"), url("../fonts/Roboto-Bold.woff");
}
:root {
  --container: 1170px;
  --primary: #22c55e;
  --primary-hover: #19a84e;
  --primary-foreground: #dcfce7;
  --secondary: #2a3342;
  --secondary-foreground: #f7f8f9;
  --muted: #667085;
  --muted-foreground: #556987;
  --border: #8896ab;
  --background: #fff;
  --text: #000;
  --text-secondary: #fff;
  --facebook: #3b5998;
  --instagram: #f09433;
  --twitter: #00acee;
  --google: #dd4b39;
  --preloader1: #007db6;
  --preloader2: #008fb2;
  --preloader3: #009b9e;
  --preloader4: #00a77d;
  --preloader5: #00b247;
  --preloader6: #5ab027;
  --preloader7: #a0b61e;
}

.dark {
  --secondary: #1d222b;
  --secondary-foreground: #272829;
  --muted-foreground: #556987;
  --background: #2a3342;
  --text: #fff;
  --text-secondary: #000;
}

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

::-webkit-scrollbar-track {
  background: gray;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-foreground);
  border-radius: 8px;
  border: 2px solid gray;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-foreground);
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button:active,
button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--muted-foreground);
  font-size: 16px;
  background-color: var(--background);
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace;
}

ul,
ol {
  list-style: none;
}

.wrapper {
  overflow: hidden;
  flex-direction: column;
  display: flex;
  display: -webkit-flex;
}

.main {
  width: 100%;
  flex: 1 1 auto;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}

.modal-lock {
  overflow: hidden;
}

.relative {
  position: relative;
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background);
  z-index: 1001;
  transition: all 0.5s ease-out;
}
.preloader h6 {
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}
.preloader__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader__loader span {
  display: inline-block;
  vertical-align: middle;
  width: 0.6em;
  height: 0.6em;
  margin: 0.19em;
  background: var(--preloader1);
  border-radius: 0.6em;
  animation: loading 1s infinite alternate;
}
.preloader__loader span:nth-of-type(2) {
  background: var(--preloader2);
  animation-delay: 0.2s;
}
.preloader__loader span:nth-of-type(3) {
  background: var(--preloader3);
  animation-delay: 0.4s;
}
.preloader__loader span:nth-of-type(4) {
  background: var(--preloader4);
  animation-delay: 0.6s;
}
.preloader__loader span:nth-of-type(5) {
  background: var(--preloader5);
  animation-delay: 0.8s;
}
.preloader__loader span:nth-of-type(6) {
  background: var(--preloader6);
  animation-delay: 1s;
}
.preloader__loader span:nth-of-type(7) {
  background: var(--preloader7);
  animation-delay: 1.2s;
}
.preloader--hide {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--background);
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.5);
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.header__container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.header__body, .header__inner, .header__logo a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.header__inner {
  justify-content: space-between;
}
@media (max-width: 950px) {
  .header__inner {
    justify-content: flex-end;
  }
}
.header__logo {
  margin: 0 50px 0 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (max-width: 950px) {
  .header__logo {
    flex: 1 1 auto;
    margin: 0 20px 0 0;
  }
}
.header__logo a {
  text-transform: capitalize;
  color: var(--text);
  font-size: 25px;
  font-weight: 900;
}
@media (max-width: 950px) {
  .header__logo a {
    font-size: 20px;
  }
}
.header__list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: nowrap;
  background: var(--background);
}
.header__list li {
  display: inline-block;
}
.header__list a {
  font-size: 15px;
  line-height: 1.2;
  display: inline-flex;
  position: relative;
  z-index: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header__link {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  text-align: center;
  width: 100%;
  color: var(--muted-foreground);
  white-space: nowrap;
  padding: 16px;
  position: relative;
}
.header__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 0px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  transform: translate(0, -100%);
  transform-origin: bottom;
  transition: all 0.3s ease-out;
  background: var(--primary);
}
.header__link-wrapper {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
.header__link.active::after {
  height: 3px;
}
.header__list-icons {
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}
.header__list-icons svg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  fill: var(--muted-foreground);
  transition: fill 0.2s ease;
}
.header__title {
  font-size: 20px;
  line-height: 1.4;
  padding: 5px 0px;
  text-transform: capitalize;
  position: relative;
  margin: 0 0 10px 0;
}
.header__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgb(94, 94, 94);
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}
.header__title a {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}
.header__right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}

body.touch .header__list > li .header__list-icons {
  display: none;
}

body.mouse .header .sub-menu li:hover {
  background-color: var(--primary);
}
body.mouse .header .sub-menu li:hover > a {
  color: white;
}
body.mouse .header .sub-menu li:hover > .header__link-wrapper a {
  color: white;
}

body.mouse .sub-menu__arrow {
  display: block;
}
body.mouse .sub-menu__arrow::before, body.mouse .sub-menu__arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: var(--muted-foreground);
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
}
body.mouse .sub-menu__arrow::before {
  left: 2px;
  transform: rotate(45deg);
}
body.mouse .sub-menu__arrow::after {
  left: 6px;
  transform: rotate(-45deg);
}
body.mouse .sub-menu__arrow.active::before, body.mouse .sub-menu__arrow.active::after {
  background: white;
}

.nav {
  flex: 0 0 auto;
}
@media (max-width: 950px) {
  .nav {
    flex: none;
  }
}

.sub-menu {
  position: absolute;
  padding: 30px 0px 0px 0px;
  max-height: 0;
  top: 20px;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  will-change: max-height;
  box-sizing: content-box;
  transform-origin: top;
}
@media (max-width: 950px) {
  .sub-menu {
    top: 0;
    padding: 0;
    z-index: 1;
  }
}
.sub-menu > li {
  min-width: 200px;
  position: relative;
}
.sub-menu li {
  min-width: 200px;
}
.sub-menu li:last-child {
  border-radius: 0 0 10px 10px;
}
.sub-menu__item {
  background-color: var(--background);
  transition: box-shadow 0.4s ease 0.3s;
}
.sub-menu__link {
  padding: 5px 10px;
  color: var(--muted-foreground);
  padding: 15px 30px 15px 20px;
  width: 100%;
}

.menu-active.sub-menu {
  opacity: 1;
  visibility: visible;
  animation: delay-overflow 0.1s 0.3s both;
  z-index: 0;
}
.menu-active.sub-menu .sub-menu__item {
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.397);
}

body.touch .sub-menu {
  top: 11px;
}
@media (max-width: 950px) {
  body.touch .sub-menu {
    top: 0;
    position: relative;
  }
}

body.touch .menu-active.sub-menu {
  opacity: 1;
  z-index: -1;
}
@media (max-width: 950px) {
  body.touch .menu-active.sub-menu {
    padding: 10px 10px 0px 0px;
    z-index: 1;
  }
}

.sub-sub-menu {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  z-index: 1;
  padding: 0px 0px 0px 5px;
  will-change: max-height;
  box-sizing: content-box;
  transform-origin: top;
}
@media (max-width: 950px) {
  .sub-sub-menu {
    position: relative;
    top: 0;
    left: 0;
    padding: 0px 5px;
  }
}
.sub-sub-menu__item {
  background-color: var(--background);
  transition: box-shadow 0.2s ease 0.2s;
}
@media (min-width: 950px) {
  .sub-sub-menu__item:first-child {
    border-radius: 0 10px 0 0;
  }
}
.sub-sub-menu__link {
  padding: 5px 10px;
  color: var(--muted-foreground);
  padding: 15px 20px;
  width: 100%;
}
@media (min-width: 950px) {
  .sub-sub-menu--left .sub-sub-menu__item:first-child {
    border-radius: 10px 0 0 0;
  }
}
@media (min-width: 950px) {
  .sub-sub-menu--left {
    left: calc(-100% - 5px);
    padding: 0px 5px 0px 0px;
  }
}

.menu-active.sub-sub-menu {
  opacity: 1;
  animation: delay-overflow 0.1s 0.3s both;
}
.menu-active.sub-sub-menu .sub-sub-menu__item {
  position: relative;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.397);
}

body.touch .menu-active.sub-sub-menu {
  opacity: 1;
}

.arrow {
  display: none;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  left: calc(100% - 25px);
  transform: translate(0, -50%);
  cursor: pointer;
}
@media (max-width: 950px) {
  .arrow {
    left: calc(100% - 33px);
  }
}
.arrow::before, .arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background: var(--muted-foreground);
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.arrow::before {
  left: 4px;
  transform: rotate(45deg);
}
.arrow::after {
  left: 11px;
  transform: rotate(-45deg);
}
.arrow.active::after {
  transform: rotate(45deg);
}

.sub-menu__arrow.arrow {
  left: calc(100% - 40px);
  transform: rotate(-90deg);
  transform-origin: top;
}
.sub-menu__arrow.arrow.active::before {
  transform: rotate(-45deg);
}
.sub-menu__arrow.arrow.active::after {
  transform: rotate(-45deg);
}

body.touch .header__list a.parent {
  margin: 0px 25px 0px 0px;
}
@media (max-width: 950px) {
  body.touch .header__list a.parent {
    margin: 0px 40px 0px 0px;
  }
}

body.mouse .sub-menu__arrow {
  top: 50%;
  display: block;
}
body.mouse .sub-menu__arrow::before, body.mouse .sub-menu__arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: var(--muted-foreground);
  position: absolute;
  top: 50%;
  z-index: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
}
body.mouse .sub-menu__arrow::before {
  left: 7px;
  transform: rotate(45deg);
}
body.mouse .sub-menu__arrow::after {
  left: 11px;
  transform: rotate(-45deg);
}

body.touch .arrow {
  display: block;
}

.header__burger {
  display: none;
  margin-left: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__burger {
    margin-left: 15px;
  }
}

@media (max-width: 950px) {
  body.lock {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: hidden;
    touch-action: none;
  }
  .header__burger {
    display: block;
    position: relative;
    width: 20px;
    height: 16px;
    position: relative;
    z-index: 101;
    flex: 0 0 25px;
  }
  .header__burger span {
    position: absolute;
    background-color: var(--text);
    left: 0;
    width: 100%;
    height: 2px;
    top: 7px;
    transition: all 0.3s ease;
  }
  .header__burger:before,
  .header__burger:after {
    content: "";
    background-color: var(--text);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    transition: all 0.3s ease;
  }
  .header__burger:before {
    top: 0;
  }
  .header__burger:after {
    bottom: 0;
  }
  .header__burger.active:before {
    transform: rotate(45deg);
    top: 7px;
  }
  .header__burger.active:after {
    transform: rotate(-45deg);
    bottom: 7px;
  }
  .header__burger.active span {
    transform: scale(0);
  }
  .header__list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: -100%;
    left: 0;
    width: 84%;
    height: 100%;
    overflow: auto;
    z-index: 100;
    padding: 20px 0 20px 10px;
    transition: all 0.3s ease;
    overflow-x: hidden;
  }
  .header__list.active {
    top: 0;
  }
  .header__list li {
    display: block;
  }
}
.header__fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  animation: show__header 1s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.342);
}
@media (min-width: 950px) {
  .header__fixed .sub-menu {
    padding: 40px 0 0 0;
  }
}

.scrolled-page .top-header {
  display: none;
}
@media (min-width: 950px) {
  .scrolled-page .header__body {
    border-top: 1px solid lightgray;
  }
}
.scrolled-page .sub-menu {
  top: 11px;
}
.scrolled-page .big-menu, .scrolled-page .gallery, .scrolled-page .small-menu, .scrolled-page .text-menu {
  top: 73px;
}

body.touch .scrolled-page .big-menu, body.touch .scrolled-page .gallery, body.touch .scrolled-page .small-menu, body.touch .scrolled-page .text-menu {
  top: 83px;
}

.btn {
  position: relative;
  transition: 0.5s;
  overflow: hidden;
}
.btn:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.btn::after {
  content: " ";
  display: block;
  position: absolute;
  height: 3px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  inset: calc(100% - 3px) 0px 0px 0px;
  border-radius: 3px;
  z-index: -1;
  transition: transform 0.3s ease;
}
.btn.active::after {
  z-index: 1;
  transform: scaleX(1);
  transform-origin: bottom left;
}

.pulse {
  border-radius: 50%;
  animation: pulse 0.7s ease-out;
  transform: scale(0);
  position: absolute;
}

.log-in {
  display: inline-block;
  padding: 10px;
  color: var(--muted-foreground);
  text-transform: capitalize;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.2s linear;
  margin-right: 4px;
}

.button-sm {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 6px;
  text-transform: capitalize;
  background: var(--primary);
  color: white;
  font-size: 14px;
  transition: all 0.2s linear;
}

body.mouse .button-sm:hover {
  background: var(--primary-hover);
  color: white;
}

.button {
  background: var(--primary);
  border-radius: 8px;
  white-space: nowrap;
  padding: 15px 25px;
  font-size: 18px;
  line-height: 26px;
  color: white;
  transition: all 0.2s linear;
}
.button-secondary {
  background-color: #f7f8f9;
  color: black;
}

body.mouse .button:hover {
  background: var(--primary-hover);
}
body.mouse .button-secondary:hover {
  color: white;
}

.select {
  max-width: 343px;
  position: relative;
  margin: 0px 0px 0px 10px;
  z-index: 2;
}
@media (max-width: 768px) {
  .select {
    margin: 0px 0px 0px 0px;
  }
}
.select svg {
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 0;
  transform: translate(0, -50%);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.select__button {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 15px;
  max-width: 150px;
  text-align: left;
  background: transparent;
  padding: 10px 10px 10px 30px;
  text-transform: capitalize;
}
.select__button.active::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.select__list {
  position: absolute;
  left: 0;
  top: 30px;
  border: 1px solid transparent;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
  width: 150px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease;
  max-height: 250px;
}
.select__list.active {
  opacity: 1;
  visibility: visible;
}
.select__list-item {
  margin: 0;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 18px;
  transition: 200ms ease;
  cursor: pointer;
  text-transform: capitalize;
}
.select__input-hidden {
  display: none;
}

body.mouse .select__button.active::before {
  background: rgb(219, 219, 219);
}
body.mouse .select:hover .select__button {
  color: var(--primary);
}
body.mouse .select:hover > svg {
  fill: var(--primary);
}
body.mouse .select__list {
  box-shadow: 0px 10px 20px 0px lightgray;
}
body.mouse .select__list::-webkit-scrollbar {
  width: 8px;
}
body.mouse .select__list::-webkit-scrollbar-track {
  background: gray;
}
body.mouse .select__list::-webkit-scrollbar-thumb {
  background: var(--primary-foreground);
  border-radius: 8px;
  border: 2px solid gray;
}
body.mouse .select__list::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

body.dark .header__link,
body.dark .sub-menu__link,
body.dark .sub-sub-menu__link {
  color: white;
}
body.dark .arrow::before,
body.dark .arrow::after {
  background-color: white;
}

.intro {
  width: 100%;
  position: relative;
  padding-top: 100px;
  z-index: 2;
  background: var(--secondary-foreground);
}
@media (max-width: 768px) {
  .intro {
    padding-top: 50px;
  }
}
.intro__inner {
  position: relative;
  width: 100%;
  min-height: 568px;
  border-radius: 24px;
  background: var(--secondary);
  overflow: hidden;
  display: flex;
  display: -webkit-flex;
  justify-items: center;
  align-content: center;
  align-items: center;
  padding: 80px 0 0 0;
}
.intro__content {
  padding: 10px;
  width: 100%;
  z-index: 1;
}
.intro h1,
.intro h2,
.intro p {
  text-align: center;
  margin: 0 auto;
}
.intro h1.anim-active,
.intro h2.anim-active,
.intro p.anim-active {
  transform: translate(0);
  opacity: 1;
}
.intro h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: white;
  max-width: 715px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translate(0, -80%);
  transition: all 0.5s ease;
}
@media (max-width: 768px) {
  .intro h1 {
    font-size: 40px;
    line-height: 52px;
  }
}
.intro h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 715px;
  margin-bottom: 10px;
  opacity: 0;
  transition: all 0.6s ease;
}
@media (max-width: 768px) {
  .intro h2 {
    font-size: 18px;
    line-height: 22px;
  }
}
.intro form {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  max-width: 543px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media (max-width: 535px) {
  .intro form {
    flex-direction: column;
    row-gap: 8px;
  }
}
.intro form > div:nth-child(1) {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin-right: 8px;
}
.intro form svg {
  position: absolute;
  top: 50%;
  left: 10px;
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: var(--muted);
  transform: translate(0, -50%);
}
.intro input {
  width: 100%;
  margin-right: 10px;
  background: var(--background);
  padding: 17px 10px 17px 40px;
  border-radius: 8px;
  font-size: 16px;
  color: var(--muted);
  border: 1px solid transparent;
}
.intro input:focus {
  border-color: var(--primary);
}
.intro p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  max-width: 715px;
  opacity: 0;
  transform: translate(0, 80%);
  transition: all 0.7s ease;
}

.intro-top-left,
.intro-top-right,
.intro-bottom-left,
.intro-bottom-right {
  position: absolute;
  z-index: 0;
}
.intro-top-left img,
.intro-top-left source,
.intro-top-right img,
.intro-top-right source,
.intro-bottom-left img,
.intro-bottom-left source,
.intro-bottom-right img,
.intro-bottom-right source {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

.intro-top-left {
  width: 140px;
  height: 140px;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .intro-top-left {
    width: 80px;
    height: 80px;
  }
}

.intro-top-right {
  width: 148px;
  height: 90px;
  top: 30px;
  right: 30px;
}
@media (max-width: 768px) {
  .intro-top-right {
    width: 98px;
    height: 60px;
    top: 10px;
    right: 10px;
  }
}

.intro-bottom-left {
  width: 148px;
  height: 90px;
  left: 30px;
  bottom: 30px;
}
@media (max-width: 768px) {
  .intro-bottom-left {
    width: 98px;
    height: 60px;
    left: 10px;
    bottom: 10px;
  }
}

.intro-bottom-right {
  width: 140px;
  height: 140px;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .intro-bottom-right {
    width: 80px;
    height: 80px;
  }
}

.intro h1 .anim-active {
  transform: translate(0);
  opacity: 1;
}

.companies {
  padding: 90px 0;
  background: var(--secondary-foreground);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .companies {
    padding: 50px 0;
  }
}
@media (max-width: 640px) {
  .companies {
    padding: 20px 0;
  }
}
.companies__inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 50px 20px var(--secondary-foreground) inset;
}
.companies__grid {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transform: translate(0, -50%);
  transform: scale(2);
}
.companies p {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
}
.companies .swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.companies .swiper-slide {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.companies .swiper-slide svg {
  display: block;
  width: 100%;
  height: 50px;
}
@media (max-width: 640px) {
  .companies .swiper-slide svg {
    height: 35px;
  }
}

.wave {
  width: 98%;
  height: 120px;
  position: relative;
}
.wave svg {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  fill: var(--secondary-foreground);
}

/*
	SECTION
*/
.section {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 20px 0;
  }
}
.section__inner {
  margin-bottom: 20px;
  position: relative;
}
.section__header {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section__header {
    margin-bottom: 30px;
  }
}
.section__header > div {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin-bottom: 20px;
}
.section__header-left > div {
  justify-content: flex-start;
}
.section__header-left > div .section__badge {
  margin-right: auto !important;
}
.section__header-left .section__title,
.section__header-left .section__text {
  text-align: left;
}
.section__header-cta-padding {
  padding-top: 155px;
}
@media (max-width: 768px) {
  .section__header-cta-padding {
    padding-top: 40px;
  }
}
.section__badge {
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  background-color: var(--primary-foreground);
  color: var(--primary);
  border-radius: 36px;
  text-transform: uppercase;
  padding: 0 8px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.7s ease;
}
.section__badge.anim-active {
  transform: scale(1);
  opacity: 1;
}
.section__badge-center {
  margin: 0 auto;
}
.section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 10px;
  max-width: 910px;
  width: 100%;
  opacity: 0;
  transition: all 0.7s ease;
  transform: translate(-50%, 0);
}
.section__title.anim-active {
  transform: translate(0);
  opacity: 1;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 30px;
    line-height: 34px;
  }
}
.section__title-center {
  margin: 0 auto;
}
.section__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: var(--muted-foreground);
  max-width: 910px;
  width: 100%;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: all 0.9s ease;
}
.section__text.anim-active {
  opacity: 1;
  transform: translate(0);
}
.section__text-center {
  margin: 0 auto;
}
.section__grid {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.section__card {
  flex-basis: 33.33333%;
}
@media (max-width: 768px) {
  .section__card {
    flex-basis: 50%;
  }
}
@media (max-width: 535px) {
  .section__card {
    flex-basis: 100%;
  }
}
.section-secondary-foreground {
  background-color: var(--secondary-foreground);
}
.section-cta-margin {
  margin-bottom: 225px;
}
@media (max-width: 768px) {
  .section-cta-margin {
    margin-bottom: 125px;
  }
}

.card-section {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
  opacity: 0;
  transform: translate(0, 200px);
  transition: all 0.7s ease;
}
.card-section.anim-active {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 768px) {
  .card-section {
    padding: 10px 0;
  }
}
.card-section__icon {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background-color: var(--primary);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.card-section__icon svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: white;
}
.card-section__content {
  margin-bottom: 25px;
}
.card-section__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .card-section__title {
    font-size: 22px;
    line-height: 28px;
  }
}
.card-section__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
  color: var(--muted-foreground);
}

/*
	SECTION END
*/
/*
	CTA
*/
.cta {
  margin-top: -195px;
  background-color: var(--secondary);
  border-radius: 6px;
}
.cta__inner {
  display: flex;
  display: -webkit-flex;
  align-items: center;
}
@media (max-width: 920px) {
  .cta__inner {
    flex-direction: column;
  }
}
.cta__left, .cta__right {
  flex-basis: 50%;
  padding: 65px;
}
@media (max-width: 920px) {
  .cta__left, .cta__right {
    padding: 35px;
  }
}
@media (max-width: 768px) {
  .cta__left__left, .cta__right__left {
    padding-bottom: 0;
  }
}
.cta__right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .cta__right {
    padding-top: 0;
  }
}
.cta h4 {
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: white;
  margin-bottom: 15px;
  text-align: center;
}
@media (max-width: 535px) {
  .cta h4 {
    font-size: 26px;
    line-height: 34px;
  }
}
.cta p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--muted-foreground);
  text-align: center;
}

/*
	CTA END
*/
/*
	FEATURES
*/
.features {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  row-gap: 20px;
}
@media (max-width: 1024px) {
  .features {
    flex-direction: column;
  }
}
.features__col {
  flex-basis: 50%;
}
@media (min-width: 1024px) {
  .features__col-cards {
    padding-top: 65px;
  }
}
.features__image {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.7s ease;
}
.features__image-image {
  position: relative;
  width: 556px;
  height: 556px;
}
.features__image-image img,
.features__image-image source {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
@media (max-width: 768px) {
  .features__image-image {
    width: 456px;
    height: 456px;
  }
}
@media (max-width: 535px) {
  .features__image-image {
    width: 300px;
    height: 300px;
  }
}
.features__image-top-left, .features__image-bottom-right {
  position: absolute;
  z-index: 2;
}
.features__image-top-left img,
.features__image-top-left source, .features__image-bottom-right img,
.features__image-bottom-right source {
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.features__image-top-left {
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
}
@media (max-width: 535px) {
  .features__image-top-left {
    width: 80px;
    height: 80px;
  }
}
.features__image-bottom-right {
  bottom: 0;
  right: 0;
  width: 150px;
  height: 90px;
}
@media (max-width: 535px) {
  .features__image-bottom-right {
    width: 120px;
    height: 50px;
  }
}
.features__image.anim-active {
  opacity: 1;
  transform: scale(1);
}

.card-features2 {
  display: flex;
  display: -webkit-flex;
  margin-bottom: 30px;
  opacity: 0;
  transform: translate(-100%, 0);
  transition: all 0.7s ease;
}
.card-features2.anim-active {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 415px) {
  .card-features2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
}
.card-features2__icon {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background-color: var(--primary);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.card-features2__icon svg {
  position: absolute;
  width: 21px;
  height: 21px;
  fill: white;
}
.card-features2__content {
  padding: 10px 0;
}
.card-features2 h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .card-features2 h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
.card-features2 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  max-width: 290px;
  margin: 0 auto;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .features3-section {
    padding: 0;
  }
}

.features3 {
  align-items: start;
  padding: 85px 0 0px;
}
@media (max-width: 1200px) {
  .features3 {
    padding: 45px 0;
  }
}
@media (max-width: 1024px) {
  .features3 {
    padding: 0;
    align-items: center;
  }
}
.features3 .section__badge {
  margin-bottom: 20px;
}
.features3__content {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 0px;
}
@media (max-width: 1200px) {
  .features3__content {
    padding: 50px 35px 50px 50px;
  }
}
@media (max-width: 768px) {
  .features3__content {
    padding: 20px 0px;
  }
}
.features3__content h1,
.features3__content p,
.features3__content .features3__content-link {
  opacity: 0;
  transform: translate(100%, 0);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.features3__content h1.anim-active,
.features3__content p.anim-active,
.features3__content .features3__content-link.anim-active {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 768px) {
  .features3__content h1,
  .features3__content p,
  .features3__content .features3__content-link {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.features3__content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .features3__content h1 {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.features3__content p {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--muted-foreground);
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .features3__content p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 950px) {
  .features3__content .features3__content-link {
    font-size: 20px;
  }
}
.features3__content-left h1,
.features3__content-left p,
.features3__content-left .features3__content-link {
  transform: translate(-100%, 0);
}

/*
 	FEATURES END
*/
/*
	COUNTER
*/
/*/ start count stats /*/
.counter__inner {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .counter__inner {
    flex-wrap: wrap;
  }
}
.counter__item {
  flex-basis: 25%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .counter__item {
    flex-basis: 50%;
    margin: 0 0 20px 0;
  }
}
.counter__num {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--primary);
}
@media (max-width: 535px) {
  .counter__num {
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
  }
}
.counter__num span {
  display: inline-block;
}
.counter__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: var(--muted-foreground);
}
@media (max-width: 535px) {
  .counter__text {
    font-size: 15px;
    line-height: 16px;
  }
}

/*
COUNTER END
*/
/*
	HIW 
*/
.hiw {
  position: relative;
  padding: 80px 0;
  background-color: var(--secondary);
}
@media (max-width: 950px) {
  .hiw {
    padding: 30px 0;
  }
}
.hiw .section__badge {
  margin-bottom: 20px;
}
.hiw__row {
  display: flex;
  display: -webkit-flex;
  margin-bottom: 50px;
}
@media (max-width: 950px) {
  .hiw__row {
    flex-direction: column;
  }
}
.hiw__col {
  flex-basis: 50%;
  flex-shrink: 0;
}
@media (max-width: 950px) {
  .hiw__col:first-child {
    margin-bottom: 50px;
  }
}
.hiw__title, .hiw__text {
  opacity: 0;
  transform: translate(-100%, 0);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.hiw__title.anim-active, .hiw__text.anim-active {
  opacity: 1;
  transform: translate(0);
}
.hiw__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 20px;
}
.hiw__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--muted-foreground);
}
.hiw__grid {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.hiw-video {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.hiw-video__wrapper {
  position: relative;
  width: 450px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translate(100%, 0) rotateY(-200deg);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.hiw-video__wrapper.anim-active {
  opacity: 1;
  transform: translate(0) rotateY(0);
}
.hiw-video video,
.hiw-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-hiw {
  flex-basis: 33.33333%;
  margin-bottom: 30px;
  opacity: 0;
  transform: translate(0, 100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.card-hiw.anim-active {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 950px) {
  .card-hiw {
    flex-basis: 50%;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 678px) {
  .card-hiw {
    flex-basis: 100%;
  }
}
.card-hiw__num {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--muted);
  border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.card-hiw__title, .card-hiw__text {
  max-width: 300px;
}
@media (max-width: 950px) {
  .card-hiw__title, .card-hiw__text {
    max-width: none;
  }
}
.card-hiw__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: white;
  margin-bottom: 15px;
}
.card-hiw__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--muted);
}

/*
 HIW END
*/
/*
	APPLICATION
*/
.app__image {
  position: relative;
  height: 525px;
  max-width: 945px;
  width: 100%;
  margin: 0 auto 30px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.7s ease;
}
.app__image.anim-active {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 992px) {
  .app__image {
    height: 425px;
  }
}
@media (max-width: 768px) {
  .app__image {
    height: 325px;
  }
}
@media (max-width: 535px) {
  .app__image {
    height: 225px;
  }
}
.app__image img,
.app__image source {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.app__text {
  max-width: 920px;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 25px;
  opacity: 0;
  transform: translate(-50%, 0);
  transition: all 0.7s ease;
}
.app__text.anim-active {
  opacity: 1;
  transform: translate(0);
}
.app__row {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  gap: 20px;
}
.app__row a {
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease, color 0.2s ease, background 0.2s ease;
}
.app__row a:nth-child(1) {
  transform: translate(-150%, 0);
}
.app__row a:nth-child(2) {
  transform: translate(150%, 0);
}
.app__row a.anim-active {
  opacity: 1;
  transform: translate(0);
}

/*
 APPLICATION END
*/
/*
	CONTACT
*/
.contact {
  padding-bottom: 250px;
}
@media (max-width: 535px) {
  .contact {
    padding-bottom: 200px;
  }
}
.contact__grid {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}
.contact__item {
  flex-basis: 33.33333%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translate(0, 100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.contact__item.anim-active {
  opacity: 1;
  transform: translate(0);
}
@media (max-width: 768px) {
  .contact__item {
    flex-basis: 50%;
    margin-bottom: 30px;
  }
}
.contact__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .contact__icon {
    margin-bottom: 10px;
  }
}
.contact__icon svg {
  display: inline-block;
  width: 24px;
  height: 23px;
  fill: white;
}
.contact__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  color: var(--text);
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0px;
  }
}
.contact__link {
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  color: var(--muted-foreground);
}
@media (max-width: 768px) {
  .contact__link {
    font-size: 18px;
    line-height: 22px;
  }
}

/*
 CONTACT END
*/
/*
	SOCIAL
*/
.social {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  max-width: 195px;
  width: 100%;
  margin: 0 auto;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  transition: all 0.2s ease;
}
@media (pointer: fine) {
  .social a:hover {
    background: var(--primary);
  }
  .social a:hover svg {
    fill: white;
  }
}
.social svg {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: var(--primary);
  transition: all 0.2s ease;
}

/*
	SOCIAL END
*/
.colors {
  display: flex;
  display: -webkit-flex;
  height: 62px;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 100%;
  z-index: 2;
  transform: translate(-50px, -50%);
  box-shadow: 0px 0px 5px 1px rgba(161, 161, 161, 0.548);
  border-radius: 10px 0px 0px 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.colors__coll {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
}
.colors__icon {
  display: inline-block;
  flex: 0 0 50px;
  width: 30px;
  height: 100%;
  position: relative;
  background: white;
  cursor: pointer;
  border-right: 1px solid black;
  transition: background 0.3s ease;
}
.colors__list {
  flex: 1 1 auto;
  display: flex;
  display: -webkit-flex;
}
.colors__list:not(:last-child) {
  border-bottom: 2px solid white;
}
.colors__list li {
  display: inline-block;
  flex: 1 1 auto;
  height: 100%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.icon-colors__big, .icon-colors__small {
  display: inline-block;
  position: absolute;
}
.icon-colors__big svg, .icon-colors__small svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  fill: black;
}
.icon-colors__big {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 8%;
  transform: translate(0, -40%);
  animation: right__roll linear 3s infinite both;
}
.icon-colors__small {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 46%;
  left: 64%;
  animation: left__roll linear 3s infinite both;
}

.colors-active {
  left: 100%;
  transform: translate(-100%, -50%);
}
.colors-active .icon-colors {
  background: #333;
}
.colors-active .icon-colors svg {
  fill: white;
}
.colors-active .icon-colors__big {
  animation: right__roll linear 10s infinite both;
}
.colors-active .icon-colors__small {
  animation: left__roll linear 10s infinite both;
}

[data-color=light] {
  background: linear-gradient(to top, white, green);
}

[data-color=dark] {
  background: linear-gradient(to top, black, green);
}

.footer {
  background-color: var(--secondary);
}
.footer__logo {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  margin-bottom: 30px;
  opacity: 0;
  transition: all 0.7s ease;
}
.footer__logo.anim-active {
  opacity: 1;
}
.footer__logo a {
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  color: white;
  font-size: 25px;
  font-weight: 900;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .footer__logo a {
    font-size: 20px;
  }
}
.footer nav {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  margin-bottom: 30px;
}
.footer ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer li {
  opacity: 0;
  transform: translate(0, 100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.footer li.anim-active {
  opacity: 1;
  transform: translate(0);
}
@media (min-width: 950px) {
  .footer li:nth-child(1) {
    transition: transform 0.7s ease, opacity 0.7s ease;
  }
  .footer li:nth-child(2) {
    transition: transform 0.8s ease, opacity 0.8s ease;
  }
  .footer li:nth-child(3) {
    transition: transform 0.9s ease, opacity 0.9s ease;
  }
  .footer li:nth-child(4) {
    transition: transform 1s ease, opacity 1s ease;
  }
  .footer li:nth-child(5) {
    transition: transform 1.1s ease, opacity 1.1s ease;
  }
  .footer li:nth-child(6) {
    transition: transform 1.2s ease, opacity 1.2s ease;
  }
  .footer li:nth-child(7) {
    transition: transform 1.3s ease, opacity 1.3s ease;
  }
}
.footer li:not(:last-child) {
  flex-shrink: 0;
  margin-right: 20px;
}
.footer__link {
  display: inline-block;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  padding: 5px 10px;
}
@media (pointer: fine) {
  .footer__link:hover {
    color: var(--primary);
  }
}

.map {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  height: 640px;
  margin-top: -220px;
}
@media (max-width: 768px) {
  .map {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .map {
    height: 470px;
  }
}

.copyright {
  padding: 30px 0 50px 0;
  border-top: 1px solid var(--muted);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.7s ease;
}
.copyright.anim-active {
  opacity: 1;
}

@keyframes show__header {
  0% {
    opacity: 0;
    top: -200px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes pulse {
  to {
    transform: scale(2);
    background-color: var(--primary);
    opacity: 0;
  }
}
@keyframes left__roll {
  0% {
    transform: translate(-20%, -90%) rotate(0deg);
  }
  50% {
    transform: translate(-20%, -90%) rotate(-180deg);
  }
  100% {
    transform: translate(-20%, -90%) rotate(-360deg);
  }
}
@keyframes right__roll {
  0% {
    transform: translate(0, -40%) rotate(0deg);
  }
  50% {
    transform: translate(0, -40%) rotate(180deg);
  }
  100% {
    transform: translate(0, -40%) rotate(360deg);
  }
}
@keyframes delay-overflow {
  to {
    overflow: visible;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */