@import url('https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&family=Poiret+One&family=Russo+One&display=swap');


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: #05a2ee;
  text-decoration: none;
}

a:hover {
  color: #7d04ff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  /*font-family: var(--font-primary);*/
  /*font-family: "Figtree", system-ui, sans-serif;*/
  color: black;
  margin-bottom: .65rem;
}

body {
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Figtree", system-ui, sans-serif;
  /*font-family: var(--font-secondary);*/
  color: #333;
}

p {
  letter-spacing: .0125rem;
  font-weight: 300;
}

#main {
  margin-top: 50px;
}

.block {
  display: block;
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  #main {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 26px;
  font-weight: 900;
  color: black;
  font-family: var(--font-secondary);
  letter-spacing: .015rem;
  margin-left: 20px;
  margin-top: 11px;
}

.header .logo h1:hover {
  color: #05a2ee;
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

#header {
  background: #fff;
  z-index: 997;
  padding: 15px 6% 3px;
  border-bottom: 1px solid #e2e2e2;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #222222;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
  
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0;
    left: 0;
    /*background-color: #05a2ee;*/
/*    background-color: #ff54c2;
    background-color: #521de3;*/

    --mid-stop: 25%;
    --dark-stop: 50%;
    --alpha: 0.8;

    background-image: linear-gradient(
      to right,
      /*rgba(253, 105, 255, var(--alpha)) var(--light-stop),*/
      rgba(214, 48, 255, var(--alpha)) var(--mid-stop),
      rgba(145, 43, 255, var(--alpha)) var(--dark-stop)
    );


    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: white;
    background: black;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: black;
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul li.nactive {
    /*border-left: 6px solid #32d5fc;   desktop color */
    border-left: 6px solid #ff54c2;
  }

  .navbar .dropdown ul a {
    padding: 20px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: white;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-white);

    /* ===== Adjustable values ===== */
    /*--light-stop: 25%;*/
    --mid-stop: 25%;
    --dark-stop: 50%;
    --alpha: 0.32;

    background-image: linear-gradient(
      to right,
      /*rgba(253, 105, 255, var(--alpha)) var(--light-stop),*/
      rgba(214, 48, 255, var(--alpha)) var(--mid-stop),
      rgba(145, 43, 255, var(--alpha)) var(--dark-stop)
    );
  }


}


  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 10px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid #291aa4;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }
}

.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000000;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  list-style-type: none;
  bottom: 15px;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 17px;
  padding-right: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: white;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: none;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
 
.navbar-mobile .dropdown ul li.nactive {
  border-left: 6px solid #ff54c2; /*mobile color pink */
  /*border-left: 6px solid #521de3;*/
  /*border-left: 6px solid #32d5fc; mobile color - blue */
}

.navbar-mobile .dropdown ul a {
  padding: 20px 48px;
  background-color: #0c0b15;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: white;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Brand Logo
--------------------------------------------------------------*/
[brand-rv2] {
  width: 55px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22632%22%20height%3D%22417%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20xml%3Aspace%3D%22preserve%22%20overflow%3D%22hidden%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M474.825%200C473.601%200%20472.451%200.562849%20471.704%201.52917L314.257%20206.309%20314.257%20206.982%20314%20206.639%20313.743%20206.982%20313.743%20206.309%20246.096%20118.323C244.101%20115.729%20245.974%20111.974%20249.254%20111.998L337.353%20112.647C338.577%20112.647%20339.727%20112.109%20340.486%20111.142L422.282%207.13134C424.301%204.56264%20422.477%200.782796%20419.21%200.782796L155.121%200.0122594C155.121%200.0122594%203.94114%200%203.94114%200%200.673212%200-1.16279%203.74307%200.820048%206.32402L313.743%20413.327%20313.743%20414%20314%20413.658%20314.257%20414%20314.257%20413.327%20627.18%206.32402C629.163%203.74307%20627.327%200%20624.059%200L474.825%200Z%22%20fill%3D%22%23000000%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%221%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-repeat: no-repeat;
}

a.logo:hover [brand-rv2] {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%22632%22%20height%3D%22417%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20xml%3Aspace%3D%22preserve%22%20overflow%3D%22hidden%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M474.825%200C473.601%200%20472.451%200.562849%20471.704%201.52917L314.257%20206.309%20314.257%20206.982%20314%20206.639%20313.743%20206.982%20313.743%20206.309%20246.096%20118.323C244.101%20115.729%20245.974%20111.974%20249.254%20111.998L337.353%20112.647C338.577%20112.647%20339.727%20112.109%20340.486%20111.142L422.282%207.13134C424.301%204.56264%20422.477%200.782796%20419.21%200.782796L155.121%200.0122594C155.121%200.0122594%203.94114%200%203.94114%200%200.673212%200-1.16279%203.74307%200.820048%206.32402L313.743%20413.327%20313.743%20414%20314%20413.658%20314.257%20414%20314.257%20413.327%20627.18%206.32402C629.163%203.74307%20627.327%200%20624.059%200L474.825%200Z%22%20fill%3D%22%23C02BE5%22%20fill-rule%3D%22evenodd%22%20fill-opacity%3D%221%22/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/*D630FF*/
/*a.logo:hover [brand-rv2] + h1 {
  --alpha: 1;

  background: linear-gradient(
    to right,
    rgba(146, 0, 183, var(--alpha)) 0%,
    rgba(120, 0, 190, var(--alpha)) 50%,
    rgba(91, 0, 194, var(--alpha)) 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;*/

a.logo:hover [brand-rv2] + h1 {
  --alpha: 1;

  background: linear-gradient(
    45deg,
    rgba(192, 43, 229, var(--alpha)) 0%,
    rgba(142, 22, 212, var(--alpha)) 35%,
    rgba(91, 0, 194, var(--alpha)) 100%
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /*color: #05a2ee;
  /*color: #5b00c2;*/
}












/* ================================
   BASE LOGO (BLACK ON LOAD)
   ================================ */
/*
a.logo [brand-rv2] {
  width: 55px;
  height: 36px;

  
  --mid-stop: 0%;
  --dark-stop: 100%;
  --alpha: 1;

  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, var(--alpha)) var(--mid-stop),
    rgba(0, 0, 0, var(--alpha)) var(--dark-stop)
  );*/

  /* SVG as mask */
  /*-webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%22632%22%20height%3D%22417%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20xml%3Aspace%3D%22preserve%22%20overflow%3D%22hidden%22%3E%3Cg%3E%3Cg%3E%3Cpath%20d%3D%22M474.825%200C473.601%200%20472.451%200.562849%20471.704%201.52917L314.257%20206.309%20314.257%20206.982%20314%20206.639%20313.743%20206.982%20313.743%20206.3*/



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  /* Adjustable variables */
  --line-opacity: 1;      /* increase for stronger lines */
  --bg-scale: 120%;          /* scale background responsively */
  --bg-position-x: 50%;
  --bg-position-y: 50%;

  position: relative;
  color: white;
  background-color: #000;
  padding: 30px 0 0;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
}

/* Angled lines layer */
#footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/light-grey-lines.png");
  background-repeat: no-repeat;
  background-size: var(--bg-scale);
  background-position: var(--bg-position-x) var(--bg-position-y);

  /* Reverse black lines to white */
  filter: invert(1);

  /* Subtle texture */
  opacity: var(--line-opacity);

  pointer-events: none;
  z-index: 0;
}

/* Ensure footer content stays above background */
#footer > * {
  position: relative;
  z-index: 1;
}





.footer .footer-content {
  /*background: #000;*/
  background: transparent;
  padding: 60px 0 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  margin: 10px 0 36px 0;
  padding: 2px 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: 0.06rem;
  font-weight: 100;
  color: #fff;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 15px;
  letter-spacing: 0.06rem;
  line-height: 1.6;
  font-family: var(--font-primary);
  color: var(--color-white);
  margin-bottom: 0;
  text-align: center;
}

.footer .footer-content .footer-info p .contact-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-align: left;
}

.footer .footer-content .footer-info p .contact-label {
  font-weight: 600;
  letter-spacing: 0.02rem;
}

.footer .footer-content .footer-info p a {
  display: inline-flex;
  align-items: center;
  color: #000;
}

.footer .footer-content .footer-info p a:hover {
  color: rgb(215, 255, 156) !important;
}

.footer .footer-contact .custom-button {
  display: inline-block;
  padding: 14px 40px;
  min-width: 280px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04rem;
  background-color: #d9f2ff;
  /*background: radial-gradient(ellipse at center, #ffffff 0%, #d4f3ff 75%);*/

  border: 4px solid #ffffff;
  border-radius: 30px;
  color: #000;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.footer .footer-contact .custom-button:hover {
  background-color: rgb(138 235 255 / 60%);
  border-color: #d7f7fd;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 6px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 30px 0 100px 0;
  background: transparent;
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: black;
  color: black;
  padding: 10px;
  margin-right: 6px;
  border-radius: 22px;
  width: 44px;
  height: 44px;
}

.footer .footer-legal .social-links a:hover {
  background: #70fdd1;
  color: #70fdd1;
}

#footer {
  color: white;
  background: black;
  padding: 30px 0 0;
  font-size: 14px;
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .credits a {
  color: #34b7a7;
}

.copyright {
  font-size: 85%;
}

.bi-linkedin::before {
  border-radius: 2px;
  background: white;
}

.bi-linkedin:hover::before {
  background: black;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(195, 255, 54, .1);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 135px);
  left: calc(50% - 135px);
  border: 4px solid #32d5fc;
  border-top-color: #d8d5ed;
  border-radius: 50%;
  width: 270px;
  height: 270px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}*/

#preloader {
  width: 50px;
  aspect-ratio: 1;
  box-shadow: 0 0 0 3px #fff inset;
  border-radius: 50%;
  position: relative;
  animation: l8-0 1.5s linear infinite;
}
#preloader:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 2px);
  box-shadow: inherit;
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l8-1 1.5s linear infinite;
}
@keyframes l8-1 {
  0% {
    transform-origin: -27px 50%;
    width: 20px;
    transform: translateY(-50%) rotate(0);
  }
  100% {
    transform-origin: -12px 50%;
    width: 50px;
    transform: translateY(-50%) rotate(180deg);
  }
}
@keyframes l8-0 {
  0% {
    width: 50px;
    transform: translate(0);
  }
  100% {
    width: 20px;
    transform: translate(37px);
  }
}

/*--------------------------------------------------------------
# Responsive - Mobile
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .footer .footer-content .footer-info p {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    /*gap: 30px;*/
  }

  .footer .footer-content .footer-info p .contact-group {
    justify-content: flex-start;
  }

  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 992px) {
  .header .logo h1 {
    margin-left: 23px;
  }

  [brand-rv2] {
    margin-left: 5px;
  }

  #footer {
    /* Adjustable variables */
    --line-opacity: 1;      /* increase for stronger lines */
    --bg-scale: 220%;          /* scale background responsively */
    --bg-position-x: 37%;
    --bg-position-y: 50%;

    position: relative;
    background-color: #000;
    padding: 30px 0 0;
  }


  .footer-info p {
    display: block;
    /*margin-left: -20px;*/
  }

  .footer-info .contact {
    display: inline-block;
    padding: 0 6px;
    font-size: 120%;
  }

  .footer-info p span a {
    /*padding-left: 20px;*/
  }
}