@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");
:root {
  --body-font: "Inria Sans", sans-serif;
  --header-font: "Bebas Neue", sans-serif;
  --main-primary: #121212;
  --main-secondary: #d6d6d6;
--secondary-green: #c60606;
  --secondary-black: #1a1a1a;
  --secondary-orange: #d28502;
  --secondary-white: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main-secondary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

html {
  background: var(--main-primary);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  background: var(--main-primary);
  color: var(--main-secondary);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 23px;
  letter-spacing: 0.32px;
  max-width: 1920px;
  margin: auto;
  transition: opacity 1s ease; /* Transition for the opacity change */
  font-size: 17px;
}
body #cookie-warning {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 1rem 0;
  z-index: 100;
}
body .marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  background-color: var(--secondary-green);
  color: var(--secondary-black);
  font-weight: 600;
  padding: 1rem 0;
  font-size: 50px;
  font-family: var(--header-font);
}
body .marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
}
@media (max-width: 620px) {
  body .marquee span {
    animation: marquee 24s linear infinite;
  }
}
@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
body .flickity-button {
  background: transparent;
  color: var(--secondary-green);
}
body .flickity-button:hover {
  background: transparent;
  color: var(--secondary-orange);
}
body .flickity-button.previous {
  left: 10px;
}
body .flickity-button.next {
  right: 10px;
}
body .flickity-button .flickity-svg-icon {
  fill: currentColor;
}
body .btn {
  position: relative;
  padding: 1rem;
  margin: 2rem;
  text-transform: uppercase;
  font-size: 20px;
  max-width: 120px;
  justify-content: center;
  cursor: pointer;
  line-height: 23px;
  letter-spacing: 0.32px;
  color: var(--secondary-white);
  border: 1px solid var(--secondary-orange);
  height: 100%;
  max-height: 55px;
  width: 100%;
}
body .btn::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--secondary-orange);
  z-index: 1;
  align-items: center;
  display: flex;
  justify-content: center;
  background-color: var(--secondary-orange);
  color: var(--secondary-white);
  transform: translate(10px, -10px);
  transition: all 500ms;
}
body .btn:hover::before {
  transform: translate(0, 0);
}
body .btn2 {
  border: 0;
  width: 100px;
  background-color: var(--main-secondary);
  color: var(--secondary-black);
  margin: 1rem;
  padding: 2px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  border-radius: 3px;
}
body .btn2:hover {
  filter: brightness(90%);
}
body hr {
  width: 100%;
}
body .back-to-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s, transform 0.3s;
}
body .back-to-top:hover {
  color: var(--secondary-green);
  transform: translateY(-2px);
}
body input,
body textarea {
  font-family: var(--body-font);
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid var(--main-secondary);
  font-size: inherit;
  padding: 2px 0;
  margin: 1rem 0;
  color: var(--main-secondary);
  width: 90%;
}
body input::-moz-placeholder, body textarea::-moz-placeholder {
  color: var(--main-secondary);
}
body input::placeholder,
body textarea::placeholder {
  color: var(--main-secondary);
}
body a {
  color: var(--secondary-white);
  text-decoration: none;
}
body h1 {
  color: var(--secondary-green);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1.72px;
  font-size: 30px;
  text-shadow: -1px 0 var(--secondary-green), 0 1px var(--secondary-green), 1px 0 var(--secondary-green), 0 -1px var(--secondary-green);
}
body h2 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
}
body .overlay,
body .overlay-login,
body .overlay-sitemap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .overlay .login-modal,
body .overlay-login .login-modal,
body .overlay-sitemap .login-modal {
  position: relative;
  width: 300px;
  height: 460px;
  background-color: var(--main-primary);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}
body .overlay .sitemap-modal,
body .overlay-login .sitemap-modal,
body .overlay-sitemap .sitemap-modal {
  position: relative;
  width: 400px;
  height: 460px;
  background-color: var(--main-primary);
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  overflow: auto;
}
body .overlay .sitemap-modal > ul li,
body .overlay-login .sitemap-modal > ul li,
body .overlay-sitemap .sitemap-modal > ul li {
  list-style: none;
}
body .overlay .sitemap-modal > ul li a,
body .overlay-login .sitemap-modal > ul li a,
body .overlay-sitemap .sitemap-modal > ul li a {
  transition: 0.3s;
}
body .overlay .sitemap-modal > ul li a:hover,
body .overlay-login .sitemap-modal > ul li a:hover,
body .overlay-sitemap .sitemap-modal > ul li a:hover {
  color: var(--secondary-green);
}
body .image-modal {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  background-color: var(--main-primary);
}
body .image-modal__list {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
body .image-modal__list > li {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  align-items: center;
}
body .image-modal__list > li .remove-img .btn2 {
  width: unset;
  margin: 0;
  padding: 2px 5px;
}
body .tabs {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  display: flex;
}
body .tabs .tablink {
  flex: 1;
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: var(--main-secondary);
}
body .tabs .tablink:hover {
  background-color: var(--secondary-black);
}
body .tabs .tablink.active {
  color: var(--main-primary);
  background-color: var(--secondary-green);
}
body .tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}
body .tabcontent > .login,
body .tabcontent .register {
  padding-top: 1rem;
}
body .tabcontent > .login > #success,
body .tabcontent .register > #success {
  color: green;
}
body .tabcontent > .login > #error,
body .tabcontent .register > #error {
  color: red;
}
body .tabcontent > .login .forgot-pwd,
body .tabcontent .register .forgot-pwd {
  cursor: pointer;
  transition: 0.3s;
  padding: 1rem;
}
body .tabcontent > .login .forgot-pwd__submit,
body .tabcontent .register .forgot-pwd__submit {
  margin-top: 0;
}
body .tabcontent > .login .forgot-pwd:hover,
body .tabcontent .register .forgot-pwd:hover {
  color: var(--secondary-orange);
}
body .tabcontent > .login .login-form,
body .tabcontent > .login .register-form,
body .tabcontent .register .login-form,
body .tabcontent .register .register-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .tabcontent > .login .login-form > #error,
body .tabcontent > .login .register-form > #error,
body .tabcontent .register .login-form > #error,
body .tabcontent .register .register-form > #error {
  color: red;
}
body .tabcontent > .login .login-form div,
body .tabcontent > .login .register-form div,
body .tabcontent .register .login-form div,
body .tabcontent .register .register-form div {
  display: flex;
  display: flex;
  justify-content: center;
}
body .tabcontent > .login .login-form div input,
body .tabcontent > .login .register-form div input,
body .tabcontent .register .login-form div input,
body .tabcontent .register .register-form div input {
  margin: 10px;
}
body .pwd-reset {
  max-width: 200px;
  margin: auto;
  padding: 4rem;
  text-align: center;
  background-color: var(--secondary-black);
}
body .pwd-reset > #error {
  color: red;
}
body .pwd-reset > #success {
  color: green;
}
body .pwd-reset > .btn {
  max-width: unset;
  border: 0;
}
body .pwd-reset > .btn:disabled {
  cursor: default;
  background-color: grey;
}
body .pwd-reset > .btn:disabled::before {
  border-color: grey;
}
body #login {
  display: block;
}
body header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5%;
  position: relative;
}
body header > .mobile {
  position: absolute;
  left: 0;
  bottom: 219px;
  font-size: 20pt;
  display: none;
}
@media (max-width: 300px) {
  body header > .mobile {
    bottom: 186px;
    display: block;
  }
}
@media (min-width: 300px) and (max-width: 560px) {
  body header > .mobile {
    display: block;
  }
}
body header > .header-top {
  display: flex;
  justify-content: center;
  align-items: self-end;
  width: 100%;
  position: relative;
}
body header > .header-top > i {
  position: absolute;
  right: 0;
  padding-bottom: 5px;
  cursor: pointer;
  color: var(--secondary-green);
  bottom: 0;
}
@media (max-width: 500px) {
  body header > .header-top {
    margin-top: 2.5rem;
  }
}
body header > .header-top > a > img {
  padding: 2rem 0;
  max-width: 100%;
  height: auto;
}
body header > .header-top > a > i {
  position: absolute;
  right: 0;
  padding-bottom: 5px;
  cursor: pointer;
  color: var(--secondary-green);
  bottom: 0;
}
body header > nav {
  position: absolute;
  top: 246px;
  color: var(--main-secondary);
  background-color: var(--main-primary);
}
@media (max-width: 500px) {
  body header > nav {
    left: 21%;
    top: 2px;
    display: none;
  }
}
body header > nav .dropdown {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
body header > nav .dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  left: -92%;
}
body header > nav .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: var(--secondary-black);
  z-index: 1;
}
body header > nav .dropdown-menu__item:last-child {
  border-bottom: none;
}
body header > nav .dropdown-menu__item-link {
  display: block;
  padding: 10px 20px;
  color: var(--secondary-white);
  text-decoration: none;
}
body header > nav .dropdown-menu__item-link:hover {
  color: var(--secondary-green);
}
body header > nav > a, body header > nav > div {
  font-weight: 600;
  letter-spacing: 2.6px;
  margin: 0 1rem;
  font-size: 17px;
}
body .home {
  /* When the AOS animation is active, expand the underline */
}
body .home .usp {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
  padding: 0;
  max-width: 100%;
  justify-items: center;
  align-items: center;
  max-width: 90%;
  margin: 4rem auto;
}
body .home .usp:after {
  content: "";
}
@media screen and (max-width: 1235px) {
  body .home .usp:after {
    content: "";
    content: "flickity";
    display: none;
  }
}
body .home .usp .is-selected {
  filter: grayscale(0%) brightness(100%);
}
body .home .usp__container {
  list-style-type: none;
  margin: 0;
  padding: 0;
  filter: grayscale(100%) brightness(70%);
  transition: filter 0.3s ease;
  position: relative;
}
@media (max-width: 1235px) {
  body .home .usp__container {
    padding: 0 10px;
  }
}
body .home .usp__container:hover {
  filter: grayscale(0%) brightness(100%);
}
body .home .usp__container-text {
  position: absolute;
  top: 41%;
  width: 100%;
  left: 52%;
  text-align: left;
  display: flex;
  height: 235px;
  flex-direction: column;
  align-items: start;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  text-align: center;
}
body .home .usp__container-text > h2 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 2.6px;
  color: var(--secondary-white);
}
body .home .usp__container-text > span {
  padding: 1rem;
  visibility: hidden;
  transition: 0.3s ease;
  text-align: left;
  max-width: 90%;
  border-radius: 3px;
  line-height: 21px;
  letter-spacing: 1.32px;
  font-size: 17px;
  background-color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 1235px) {
  body .home .usp__container-text > span {
    visibility: visible;
  }
}
body .home .usp__container:hover .usp__container-text > span {
  visibility: visible; /* Display the span on container hover */
}
body .home .usp__container > video {
  height: 300px;
  width: 550px;
  -o-object-fit: fill;
     object-fit: fill;
}
@media (max-width: 1235px) {
  body .home .usp__container > video {
    max-width: 100%;
    height: auto;
    min-height: 400px;
  }
}
body .home .interlude {
  background-color: var(--secondary-green);
  color: var(--secondary-black);
  padding: 4rem 0;
  margin: auto;
  text-align: center;
  overflow-x: hidden;
  overflow-y: hidden;
  font-weight: 600;
  letter-spacing: 1.72px;
  font-size: 50px;
  font-family: var(--header-font);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
@media (max-width: 500px) {
  body .home .interlude {
    padding: 1rem 0;
    line-height: 1;
  }
}
@media (min-width: 1920px) {
  body .home .interlude {
    width: 90%;
  }
}
body .home .interlude > a > i {
  transition: transform 0.3s;
}
body .home .interlude > a > i:hover {
  transform: translateY(5px);
}
body .home .interlude__usp {
  padding: 4rem 0;
}
body .home .interlude__usp-item {
  display: flex;
  align-items: center;
  margin: 6rem 0;
}
body .home .interlude__usp-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
body .home .interlude__usp-item > p {
  background-color: var(--secondary-green);
  font-size: 1px;
}
body .home .interlude__usp-item:first-of-type {
  margin-top: 0;
}
body .home .interlude__usp-item__img > p {
  background-color: var(--secondary-green);
  font-size: 1px;
}
body .home .interlude__usp-item__img img {
  height: 100%;
}
@media (max-width: 900px) {
  body .home .interlude__usp-item__img img {
    max-width: 100%;
    height: auto;
  }
}
body .home .interlude__usp-item__text {
  font-family: var(--body-font);
  color: var(--secondary-black);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 23px;
  letter-spacing: 0.32px;
  font-weight: 600;
  font-size: 17px;
  width: 100%;
  padding: 0 1rem;
}
body .home .interlude__usp-item__text-title {
  display: flex;
  justify-content: center;
}
body .home .interlude__usp-item__text-title h1 {
  max-width: 700px;
  line-height: 1;
  padding: 1rem;
  display: flex;
  background-color: var(--secondary-black);
  color: var(--secondary-green);
  font-weight: 700;
  text-shadow: -1px 0 var(--secondary-green), 0 1px var(--secondary-green), 1px 0 var(--secondary-green), 0 -1px var(--secondary-green);
}
@media (max-width: 1225px) {
  body .home .interlude__usp-item__text-title h1 {
    display: flex;
    flex-direction: column;
  }
}
body .home .interlude__usp-item__text-title h1 .underline-animation:first-of-type {
  margin-right: 5px;
}
body .home .interlude__usp-item__text-content {
  max-width: 800px;
  margin: auto;
}
@media (min-width: 450px) {
  body .home .interlude__usp-item__text-content > .buttons {
    display: flex;
    flex-direction: row;
  }
}
body .home .interlude__usp-item__text-content > .buttons > .btn2 {
  width: 100%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .home .interlude__usp-item__text-content > ul {
  padding: 1.5rem 0;
  margin: 0;
  text-align: left;
}
body .home .interlude__usp-item__text-content > ul > li {
  list-style: none;
}
body .home .interlude__content {
  line-height: 1;
}
body .home .interlude__content-info {
  font-size: 25px;
  background-color: var(--secondary-black);
  color: var(--secondary-green);
  max-width: 950px;
  margin: auto;
  padding: 1rem 0;
  margin-top: 1rem;
  text-shadow: 4px 0 var(--primary-main), 0 4px var(--primary-main), -4px 0 var(--primary-main), 0 -4px var(--primary-main);
  padding: 1rem;
  justify-content: center;
}
@media (min-width: 935px) {
  body .home .interlude__content-info {
    display: flex;
  }
}
body .home .interlude__content > p {
  background-color: var(--secondary-green);
  font-size: 1px;
}
body .home .underline-animation {
  margin: 0 5px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  vertical-align: baseline; /* This ensures alignment with the baseline of surrounding text */
}
body .home .underline-animation:first-of-type {
  margin-right: 0;
}
body .home .underline-animation::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: currentColor; /* Use the text color for the underline */
  transition: width 1.5s ease; /* Animation duration of 0.5 seconds */
}
body .home .underline-animation[data-aos].aos-animate::after {
  width: 100%;
}
body .home .portfolio {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 8rem;
  max-width: 90%;
  margin: auto;
  margin-top: 4rem;
}
body .home .portfolio > h1 {
  top: 34px;
  position: absolute;
  z-index: 2;
}
body .home .portfolio__carousel {
  z-index: 1;
}
body .home .portfolio__carousel-item {
  margin: 0 3rem;
  padding: 2rem;
  border-radius: 5px;
  background: var(--secondary-black);
  display: flex;
  align-items: stretch;
}
@media (max-width: 1400px) {
  body .home .portfolio__carousel-item {
    align-items: stretch;
    flex-direction: column-reverse;
  }
}
body .home .portfolio__carousel-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}
body .home .portfolio__carousel-item__info-wrapper {
  display: flex;
  flex-direction: row;
}
@media (max-width: 525px) {
  body .home .portfolio__carousel-item__info-wrapper {
    flex-direction: column;
  }
}
body .home .portfolio__carousel-item__info-wrapper__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  align-items: center;
}
body .home .portfolio__carousel-item__info-wrapper__block a:nth-child(2) {
  width: 100%;
  margin: 1rem 0;
  display: flex;
  justify-content: center;
}
body .home .portfolio__carousel-item__info-wrapper__block a .btn {
  margin: 0 3rem;
  height: 10px;
}
body .home .portfolio__carousel-item__info-wrapper__block:first-of-type {
  text-align: center;
  align-items: center;
}
body .home .portfolio__carousel-item__info-wrapper__block > span {
  margin-top: 1rem;
}
body .home .portfolio__carousel-item__info-wrapper__block > span:last-of-type {
  margin-bottom: 2rem;
}
body .home .portfolio__carousel-item__info-wrapper__block > a > h1 {
  color: var(--main-secondary);
  text-shadow: -1px 0 var(--main-secondary), 0 1px var(--main-secondary), 1px 0 var(--main-secondary), 0 -1px var(--main-secondary);
}
body .home .portfolio__carousel-item__image {
  flex: 1;
  overflow: hidden;
  align-self: center;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
body .home .portfolio__carousel-item__image:hover {
  filter: unset;
}
body .home .portfolio__carousel-item__image > a > img {
  width: 100%;
  height: auto;
}
body .home .quote {
  background-color: var(--secondary-black);
  margin-bottom: 8rem;
  padding: 4rem 0;
}
body .home .quote .form-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
body .home .quote .form-dot.selected {
  background-color: var(--main-secondary);
}
body .home .quote .btn2 {
  font-weight: 600;
  padding: 2px 5px;
  background-color: #333;
  color: var(--main-secondary);
}
body .home .quote label {
  cursor: pointer;
}
body .home .quote input[type=checkbox],
body .home .quote input[type=radio] {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body .home .quote input[type=checkbox],
body .home .quote input[type=radio] {
  width: unset;
}
body .home .quote-form {
  max-width: 90%;
  margin: auto;
  background-color: var(--main-primary);
  padding: 2rem;
  border-radius: 10px;
}
body .home .quote-form > ul {
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding-inline-start: 0px;
  text-align: center;
}
body .home .quote-form > h1 {
  color: var(--main-secondary);
  padding: 4rem 0;
  margin: auto;
  overflow-x: hidden;
  overflow-y: hidden;
  font-weight: 600;
  letter-spacing: 1.72px;
  font-size: 50px;
  font-family: var(--header-font);
  text-shadow: unset;
  padding-left: 3rem;
}
body .home .quote-form__section-content {
  text-align: center;
}
body .home .quote-form__section-content i {
  color: var(--secondary-green);
  padding-right: 5px;
}
body .home .quote-form__section-content > .pages {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
body .home .quote-form__section-content > ul, body .home .quote-form__section-content > .pages {
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding-inline-start: 0px;
}
body .home .quote-form__section-content > ul > li, body .home .quote-form__section-content > .pages > li {
  list-style: none;
}
body .home .quote-form__section > .buttons {
  display: flex;
  justify-content: center;
}
body .home .webcommander {
  position: relative;
  min-height: 765px;
  padding: 1rem;
  flex-direction: column;
  display: flex;
}
@media (min-width: 1920px) {
  body .home .webcommander {
    max-width: 90%;
    width: 100%;
    margin: auto;
    margin-bottom: 8rem;
  }
}
body .home .webcommander::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* The image used */
  background-image: url("../imgs/bg-parallax.webp");
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Set the opacity */
  opacity: 0.3;
  z-index: 1;
}
body .home .webcommander-header {
  text-align: center;
  z-index: 2;
  position: relative;
}
body .home .webcommander-header > h1 {
  padding-top: 2.2em;
}
body .home .webcommander-block {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  max-width: 90%;
  margin: auto;
}
@media (max-width: 980px) {
  body .home .webcommander-block {
    display: flex;
    flex-direction: column;
  }
}
body .home .webcommander-block__item {
  flex: 1;
  align-self: center;
}
body .home .webcommander-block__item:first-of-type {
  text-align: center;
}
body .home .webcommander-block__item > img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
  border: 0.01px solid var(--secondary-green); /* Adjust with your own --secondary-green value */
  position: relative;
  animation: glow-animation 4s infinite alternate; /* Slower animation for smoother effect */
}
@media (max-width: 500px) {
  body .home .webcommander-block__item > img {
    margin: 3rem 0;
  }
}
@keyframes glow-animation {
  from {
    box-shadow: 0 0 5px 2px rgba(0, 255, 0, 0.2), 0 0 10px 5px rgba(0, 255, 0, 0.1), 0 0 15px 8px rgba(0, 255, 0, 0.05);
  }
  to {
    box-shadow: 0 0 10px 4px rgba(0, 255, 0, 0.3), 0 0 15px 8px rgba(0, 255, 0, 0.15), 0 0 20px 10px rgba(0, 255, 0, 0.1);
  }
}
body .home .webcommander-block__item-accordion > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  max-width: 50%;
}
body .home .webcommander-block__item-accordion > label {
  display: block;
  cursor: pointer;
}
body .home .webcommander-block__item-accordion > label:before {
  content: "+ ";
  float: right;
  color: var(--secondary-orange);
  font-size: 1.5em;
}
body .home .webcommander-block__item-accordion > label > h2 {
  border-bottom: 1px solid var(--main-secondary);
}
body .home .webcommander-block__item-accordion > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
body .home .webcommander-block__item-accordion > input:checked + label:before {
  content: "- ";
  color: var(--secondary-orange);
}
body .home .webcommander-block__item-accordion > input:checked + label + div {
  max-height: 175px;
}
@media (max-width: 768px) {
  body .home .webcommander-block__item-accordion > input:checked + label + div {
    max-height: 400px;
  }
}
body .home .webcommander-block__item-video {
  position: relative;
  margin-top: 3.5rem;
}
body .home .webcommander-block__item-video::before {
  content: "";
  position: absolute;
  width: 400px;
  left: 243px;
  top: 10px;
  background: rgba(217, 217, 217, 0.04);
  z-index: 1;
  height: 100%;
}
@media (max-width: 980px) {
  body .home .webcommander-block__item-video::before {
    height: auto;
  }
}
body .home .webcommander-block__item-video > video {
  opacity: 1;
  width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 500px) and (max-width: 980px) {
  body .home .webcommander-block__item-video > video {
    width: 100%;
    padding: 2rem;
    max-width: 400px;
  }
}
@media (max-width: 500px) {
  body .home .webcommander-block__item-video > video {
    width: 100%;
    padding: 0;
    max-width: 400px;
  }
}
body .home .services {
  padding-bottom: 4rem;
}
body .home .services > p {
  padding: 2rem;
  padding-bottom: 0;
  text-align: center;
}
body .home .services > p > i > span {
  font-weight: 700;
  color: var(--secondary-orange);
}
body .home .services__block {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  max-width: 90%;
  margin: auto;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
body .home .services__block .flickity-viewport {
  height: 485px !important;
}
body .home .services__block:after {
  content: "";
}
@media screen and (max-width: 1620px) {
  body .home .services__block:after {
    content: "";
    content: "flickity";
    display: none;
  }
}
body .home .services__block-item {
  height: 400px;
  width: 300px;
  position: relative;
  background-color: var(--secondary-black);
  text-align: center;
  margin: 0 2rem;
}
@media (max-width: 360px) {
  body .home .services__block-item {
    height: 500px;
    margin-bottom: 6rem;
  }
  body .home .services__block-item:last-of-type {
    margin-bottom: unset;
  }
}
@media (min-width: 360px) and (max-width: 500px) {
  body .home .services__block-item {
    height: 450px;
    margin-bottom: 6rem;
  }
  body .home .services__block-item:last-of-type {
    margin-bottom: unset;
  }
}
@media (min-width: 500px) and (max-width: 1620px) {
  body .home .services__block-item {
    margin: 1rem 3rem;
    margin-bottom: 6rem;
  }
  body .home .services__block-item:last-of-type {
    margin-bottom: unset;
  }
}
body .home .services__block-item__border {
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--main-secondary);
  position: absolute;
  left: -15px;
  top: 17px;
  z-index: 1;
  padding: 1rem;
}
body .home .services__block-item__content {
  position: relative;
  background-color: var(--secondary-black);
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 1rem;
  padding-top: 2rem;
}
body .home .services__block-item__content > h1 {
  left: 0%;
  width: 100%;
  top: -31px;
  position: absolute;
}
body .home .services__block-item__content > ul > li {
  text-align: left;
  padding: 0.8rem 0;
}
body .home .services__block-item__content > ul > li > span {
  font-weight: 700;
  color: var(--secondary-orange);
}
body .dashboard {
  max-width: 90%;
  width: 100%;
  flex-direction: column;
  margin: auto;
  display: flex;
  padding: 2rem 0;
}
@media (max-width: 1700px) {
  body .dashboard {
    flex-direction: column;
  }
}
body .dashboard-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1700px) {
  body .dashboard-nav {
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
}
body .dashboard-content {
  flex: 1;
}
body .dashboard-content__palette, body .dashboard-content__analytics {
  background-color: var(--secondary-black);
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
body .dashboard-content__palette > li, body .dashboard-content__analytics > li {
  display: inline;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}
body .dashboard-content__palette > li > input[type=color], body .dashboard-content__analytics > li > input[type=color] {
  border: none;
  outline: none;
  height: 85px;
  width: 95px;
  margin: 1rem;
  padding: 0;
}
body .dashboard-content__analytics {
  justify-content: space-around;
  padding: 1rem;
  align-items: center;
}
body .dashboard-content__analytics-form > .analytics-form > ul > li {
  list-style: none;
}
body .dashboard-content__analytics-form > .analytics-form > ul > li > input {
  width: unset;
  position: relative;
  -webkit-appearance: none; /* for Chrome */
  -moz-appearance: none; /* for Firefox */
  appearance: none;
}
body .dashboard-content__analytics-form > .analytics-form > ul > li > input::after {
  content: "📅"; /* calendar symbol */
  color: white; /* color of the custom icon */
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
body .dashboard-content__analytics-response {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 60%;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 674px) {
  body .dashboard-content__analytics-response {
    flex-direction: column;
    max-width: 100%;
  }
}
body .dashboard-content__analytics-response__data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 674px) {
  body .dashboard-content__analytics-response__data {
    overflow-x: auto;
    width: 100%;
    margin: 2rem;
  }
}
body .dashboard-content__analytics-response__data .scrollable-tbody {
  display: block;
  max-height: 200px; /* Adjust max-height as needed */
  overflow-y: auto;
  overflow-x: hidden;
}
body .dashboard-content__analytics-response__data table {
  max-width: 675px;
  border-collapse: collapse;
}
@media (max-width: 674px) {
  body .dashboard-content__analytics-response__data table {
    width: 675px;
  }
}
body .dashboard-content__analytics-response__data thead,
body .dashboard-content__analytics-response__data tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed; /* Optional; for consistent column width */
}
body .dashboard-content__analytics-response__data th {
  cursor: pointer;
}
body .dashboard-content__analytics-response__data th,
body .dashboard-content__analytics-response__data td {
  padding: 10px;
  border: 1px solid var(--main-primary);
}
@media (max-width: 674px) {
  body .dashboard-content__analytics-response__data th,
  body .dashboard-content__analytics-response__data td {
    padding: 10px 0;
    text-align: center;
  }
}
body .dashboard-content__analytics-response__data th {
  position: sticky;
  top: 0; /* Make header sticky */
  z-index: 100; /* Ensure the header is above the tbody content */
  border: 0;
}
body .dashboard-content__analytics-response__data > table {
  border-spacing: 1rem 0;
}
body .dashboard-content__analytics-response__data th:nth-child(3),
body .dashboard-content__analytics-response__data td:nth-child(3) {
  width: 57px; /* Adjust the width as necessary */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .dashboard-content__analytics-response__data th:nth-child(4),
body .dashboard-content__analytics-response__data td:nth-child(4) {
  width: 60px; /* Adjust the width as necessary */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .dashboard-content__analytics-response__data th:nth-child(5),
body .dashboard-content__analytics-response__data td:nth-child(5) {
  width: 65px; /* Adjust the width as necessary */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .dashboard-content__analytics-response__data th:nth-child(6),
body .dashboard-content__analytics-response__data td:nth-child(6) {
  width: 42px; /* Adjust the width as necessary */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .dashboard-content__analytics-response__data th:nth-child(7),
body .dashboard-content__analytics-response__data td:nth-child(7) {
  width: 80px; /* Adjust the width as necessary */
}
body .dashboard-content__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
}
body .dashboard-content__items-content {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .dashboard-content__items-content .search-box {
  margin: 2rem 0;
}
body .dashboard-content__items-content__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body .dashboard-content__items-content__nav > a {
  padding: 1rem;
  margin: 1rem;
  text-transform: capitalize;
  border: 1px solid grey;
  color: grey;
  transition: 0.3s;
}
body .dashboard-content__items-content__nav > a:hover {
  color: var(--main-secondary);
  border: 1px solid var(--main-secondary);
}
body .dashboard-content__items-content .panel-buttons {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  background: var(--main-primary);
}
body .dashboard-content__items-content .panel-buttons > .btn2 {
  margin: auto;
  width: 283px;
  padding: 1rem 0.2rem;
  font-weight: bold;
  margin: 1rem;
  margin-bottom: 4rem;
  margin-top: 0;
}
body .dashboard-content__items-content__block {
  background-color: var(--secondary-black);
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .dashboard-content__items-content__block > h1 {
  color: grey;
  text-shadow: unset;
  padding-bottom: 0;
}
body .dashboard-content__items-content__block > .btn2 {
  width: 190px;
  padding: 1rem 0.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
body .dashboard-content__items-content__block > li {
  list-style: none;
  margin: 1rem 0;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid grey;
  max-width: 97%;
  width: 100%;
  padding-top: 0;
}
@media (max-width: 600px) {
  body .dashboard-content__items-content__block > li {
    flex-direction: column;
  }
}
body .dashboard-content__items-content__block > li > ul {
  display: flex;
  flex-direction: column;
  color: var(--secondary-orange);
}
body .dashboard-content__items-content__block > li > ul > li {
  list-style: none;
  display: inline;
}
body .dashboard-content__items-content__block > li > div {
  display: flex;
  flex-direction: row;
  flex: 1;
  padding-left: 2rem;
  align-items: center;
}
@media (max-width: 600px) {
  body .dashboard-content__items-content__block > li > div {
    flex-direction: column;
  }
}
body .dashboard-content__items-content__block > li > div > textarea {
  width: 100%;
  height: 100%;
}
body .dashboard-content__items-content__block > li > div > input {
  max-width: 585px;
  width: 100%;
  margin-left: 2rem;
}
body .dashboard-content__items-content__block > li > div > img,
body .dashboard-content__items-content__block > li > div video {
  max-width: 300px;
  height: auto;
  cursor: pointer;
}
body .dashboard-content__items-content__block > li > div > .btn2 {
  margin-left: 1rem;
  height: 30px;
}
body .dashboard__inspiration {
  color: var(--main-secondary);
}
body .dashboard__inspiration .inspiration-form {
  display: flex;
}
body .dashboard__inspiration .inspiration-form > input {
  margin: 1rem;
}
body .dashboard__inspiration .inspiration-form::-moz-placeholder {
  color: var(--main-secondary);
}
body .dashboard__inspiration .inspiration-form::placeholder {
  color: var(--main-secondary);
}
body .dashboard__inspiration > ul {
  max-width: 100%;
  overflow-x: auto;
  display: flex;
  flex-wrap: wrap;
  margin-block-start: 0;
  margin-inline-start: 0;
  padding-inline-start: 0;
  justify-content: center;
}
body .dashboard__inspiration > ul > li {
  list-style: none;
  display: inline;
  padding: 1rem;
  margin: 1rem;
  max-width: 370px;
  width: 100%;
  background: var(--secondary-black);
}
body .web-design {
  padding: 4rem 0;
}
body .web-design .top-block {
  text-align: center;
  margin: auto;
  width: 90%;
}
body .web-design .top-block > h1 {
  text-align: center;
  padding-bottom: 2rem;
  line-height: 1;
}
body .web-design .top-block > ul {
  text-align: left;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
  margin: 4rem 0;
}
body .web-design .top-block > ul .cell {
  list-style: none;
  max-width: 45%;
  height: 185px;
  padding: 1rem;
  border: 1px solid var(--secondary-white);
}
@media (min-width: 640px) and (max-width: 965px) {
  body .web-design .top-block > ul .cell {
    height: 300px;
  }
}
@media (min-width: 505px) and (max-width: 640px) {
  body .web-design .top-block > ul .cell {
    height: 350px;
  }
}
@media (min-width: 300px) and (max-width: 505px) {
  body .web-design .top-block > ul .cell {
    height: 300px;
    max-width: 90%;
  }
}
@media (max-width: 300px) {
  body .web-design .top-block > ul .cell {
    height: 370px;
    max-width: 90%;
    margin: auto;
  }
}
body .web-design .top-block > ul .cell > h2 {
  text-align: center;
  color: var(--secondary-orange);
}
body .web-design .top-block > span {
  color: var(--secondary-orange);
  font-style: italic;
}
body .web-design .parallax {
  position: relative;
  height: 150px;
  margin-top: 8rem;
  padding: 1rem;
  flex-direction: column;
  display: flex;
}
body .web-design .parallax::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* The image used */
  background-image: url("../imgs/bg-parallax2.webp");
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Set the opacity */
  opacity: 0.3;
  z-index: 1;
}
body .contact {
  width: 90%;
  margin: 4rem auto;
  border-top: 1px solid var(--main-secondary);
  text-align: center;
  position: relative;
}
body .contact > h1 {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--main-primary);
  padding: 0 1rem;
  width: auto;
  display: inline;
  max-width: 215px;
  width: 100%;
}
body .contact-info {
  padding: 3rem 0;
}
body .contact-info > span {
  font-style: italic;
}
body .contact-block {
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 400px) {
  body .contact-block {
    max-width: 200px;
    width: 100%;
  }
}
@media (min-width: 400px) and (max-width: 500px) {
  body .contact-block {
    max-width: 300px;
    width: 100%;
  }
}
body .contact-block > h1 {
  padding: 0 2rem;
}
body .contact-block__item {
  text-align: left;
  padding: 1rem;
  background-color: var(--secondary-black);
  width: 400px;
  margin: auto;
  margin-bottom: 6rem;
  margin-top: 4rem;
  border-radius: 3px;
  margin: 1rem;
  max-height: 595px;
  height: 595px;
}
body .contact-block__item-contact > div {
  display: flex;
  align-items: baseline;
}
body .contact-block__item-contact > div > i {
  margin-right: 1rem;
  color: var(--secondary-green);
}
body .contact-block__item > form > .error-messages {
  display: flex;
  flex-direction: column;
}
body .contact-block__item > form > .error-messages > div {
  color: red;
}
body .contact-block__item > form > .error-messages > input, body .contact-block__item > form > .error-messages > textarea {
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid var(--main-secondary);
  font-family: inherit;
  font-size: inherit;
  padding: 2px 0;
  margin: 1rem 0;
  color: var(--main-secondary);
  width: 90%;
}
body .contact-block__item > form > .error-messages > input::-moz-placeholder, body .contact-block__item > form > .error-messages > textarea::-moz-placeholder {
  color: var(--main-secondary);
}
body .contact-block__item > form > .error-messages > input::placeholder, body .contact-block__item > form > .error-messages > textarea::placeholder {
  color: var(--main-secondary);
}
body .error404 {
  text-align: center;
  margin: 4rem 0;
}
body .error404 .btn {
  margin: auto;
}
body .terms-and-conditions,
body .privacy-policy {
  padding: 4rem 0;
  width: 90%;
  margin: auto;
  text-align: center;
}
body .terms-and-conditions > p,
body .privacy-policy > p {
  text-align: left;
}
body footer {
  width: 100%;
  background-color: var(--secondary-black);
  display: flex;
  justify-content: space-between;
  font-size: 10pt;
  font-style: normal;
}
body footer > ul {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
  padding: 1rem;
}
@media (max-width: 960px) {
  body footer > ul {
    display: flex;
    flex-direction: column;
  }
}
body footer > ul:first-of-type > li {
  padding-right: 1rem;
}
body footer > ul > li {
  list-style: none;
  display: inline;
}
@media (max-width: 960px) {
  body footer > ul > li {
    padding: 5px;
  }
}
body footer > ul > li > a, body footer > ul > li > span {
  transition: 0.3s;
  cursor: pointer;
  color: var(--secondary-white);
}
body footer > ul > li > a:hover, body footer > ul > li > span:hover {
  color: var(--secondary-green);
}/*# sourceMappingURL=css.css.map */