@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=PT+Sans+Narrow:wght@400;700&display=swap");
.row {
  --bs-gutter-x: 40px;
}

.row > * {
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.col {
  padding-left: calc(var(--bs-gutter-x) * 0.25);
  padding-right: calc(var(--bs-gutter-x) * 0.25);
}

*,
*::before,
*::after {
  box-sizing: inherit;
  box-shadow: none;
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Exo 2", sans-serif;
  font-size: 20px;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 320px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.mobile {
  overflow: hidden;
}

a {
  transition: all 0.3s ease;
  color: #000;
}
a:hover {
  color: #cc00cc;
}

.h1, h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 4rem;
}

.h2, .h3, .h4, .h5, .h6, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 2rem;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

dl, ol, ul, p {
  margin-bottom: 2rem;
}

ul.classic {
  list-style: none;
  padding-left: 2.5rem;
}
ul.classic li {
  position: relative;
  margin-bottom: 2rem;
}
ul.classic li h3 {
  margin-bottom: 1rem;
}
ul.classic li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2rem;
  position: absolute;
  left: -2.5rem;
  top: -0.25rem;
  color: #cc00cc;
}

strong {
  font-weight: 600;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1em;
}

header#header {
  display: flex;
  position: sticky;
  z-index: 1000;
  height: 120px;
  background-color: #000;
  color: #fff;
  top: 0;
  align-items: center;
  transition: height 0.3s ease;
}
header#header .container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}

.logo {
  margin: 10px 0;
}
.logo img {
  height: 100px;
  transition: height 0.3s ease;
}
.logo img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: inset(50% 50% 50% 50%);
  animation: glitch 1s infinite steps(5, end) alternate-reverse;
  animation-delay: 7s;
}

.logo,
.logo:after {
  display: inline-block;
  border: 0;
  letter-spacing: 3px;
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.logo:after {
  --slice-0: inset(50% 50% 50% 50%);
  --slice-1: inset(80% -10px 0 0);
  --slice-2: inset(50% -10px 30% 0);
  --slice-3: inset(10% -10px 85% 0);
  --slice-4: inset(40% -10px 43% 0);
  --slice-5: inset(80% -10px 5% 0);
  box-shadow: 10px 0 0 rgba(255, 255, 255, 0.3);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, rgba(255, 255, 255, 0.3) 3%, rgba(255, 255, 255, 0.3) 5%, rgba(255, 255, 255, 0.2) 5%);
  text-shadow: -3px -3px 0px rgba(255, 255, 255, 0.3), 3px 3px 0px rgba(255, 255, 255, 0.3);
  clip-path: var(--slice-0);
  animation: glitch 2s steps(2, end) infinite, pause-glitch 7s linear infinite;
}

.social-icons {
  display: flex;
  gap: 8px;
}
.social-icons > a {
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  text-decoration: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.social-icons > a:hover {
  background-color: white;
}

nav {
  font-family: "PT Sans Narrow", Arial, sans-serif;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-container nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  color: rgba(255, 255, 255, 0.8);
}
.nav-container nav ul {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding-left: 0;
  font-weight: 700;
}
.nav-container nav ul > li {
  position: relative;
}
.nav-container nav ul > li a {
  display: flex;
  cursor: pointer;
  font-size: 18px;
  line-height: 18px;
  transition: all 0.3s ease;
  align-items: center;
}
.nav-container nav ul > li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #cc00cc;
  transition: width 0.3s ease;
}
.nav-container nav ul > li:hover > a, .nav-container nav ul > li:focus > a, .nav-container nav ul > li.current-menu-item > a {
  color: white;
}
.nav-container nav ul > li:hover:not(.menu-item-has-children) > a, .nav-container nav ul > li:focus:not(.menu-item-has-children) > a, .nav-container nav ul > li.current-menu-item > a {
  color: white;
}
.nav-container nav ul > li:hover:not(.menu-item-has-children) > a::before, .nav-container nav ul > li:focus:not(.menu-item-has-children) > a::before, .nav-container nav ul > li.current-menu-item > a::before {
  width: 100%;
}
.nav-container nav ul > li.menu-item-has-children > a::after {
  content: "▼";
  font-size: 11px;
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.nav-container nav ul > li.menu-item-has-children.focus > a::after, .nav-container nav ul > li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
.nav-container nav ul > li.menu-item-has-children:hover ul.sub-menu {
  display: block;
}
.nav-container nav ul ul {
  position: absolute;
  display: block;
  z-index: 9990;
  top: 100%;
  left: -10px;
  padding: 20px;
  margin: 0;
  background: #111;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  visibility: hidden;
}
.nav-container nav ul ul > li {
  display: block;
}
.nav-container nav ul ul > li > a {
  font-weight: 400;
  white-space: nowrap;
  padding: 15px 0;
}
.nav-container nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s 0s;
}
.nav-container .social-icons {
  font-size: 18px;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.menu-icon::before {
  content: "☰";
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
}

.vinyl {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(40%, 40%);
}
.vinyl .vinyl-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 0.08;
}
.vinyl .vinyl-wrapper .vinyl-image {
  width: 100%;
  height: 100%;
  background-image: url(../images/vinyl-record.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  animation: rotateVinyl 10s linear infinite;
}

/* Rotate animation */
@keyframes rotateVinyl {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  text-align: center;
  z-index: 9990;
  overflow: hidden;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 17px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 9999;
}
.mobile-menu .mobile-menu-content {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.mobile-menu nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transform: scale(0);
  transition: transform 0.3s ease;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
}
.mobile-menu nav ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-align: center;
}
.mobile-menu nav ul a {
  padding: 0 10px;
  position: relative;
}
.mobile-menu nav ul a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #cc00cc;
  transition: width 0.3s ease;
}
.mobile-menu nav ul > li {
  position: relative;
}
.mobile-menu nav ul > li > a {
  font-size: 30px;
  font-weight: 700;
}
.mobile-menu nav ul > li:hover:not(.menu-item-has-children) > a, .mobile-menu nav ul > li:focus:not(.menu-item-has-children) > a, .mobile-menu nav ul > li.current-menu-item > a {
  color: white;
}
.mobile-menu nav ul > li:hover:not(.menu-item-has-children) > a::before, .mobile-menu nav ul > li:focus:not(.menu-item-has-children) > a::before, .mobile-menu nav ul > li.current-menu-item > a::before {
  width: 100%;
}
.mobile-menu nav ul ul {
  margin: 10px 0;
}
.mobile-menu nav ul ul li a {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 20px;
  font-weight: 400;
}
.mobile-menu.active {
  background: rgba(0, 0, 0, 0.95);
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active a {
  transform: scale(1);
}
.mobile-menu .social-icons {
  font-size: 24px;
  margin: 40px 0;
  gap: 15px;
}
.mobile-menu nav:last-child > ul {
  display: flex;
}
.mobile-menu nav:last-child > ul > li {
  margin: 0 5px;
}
.mobile-menu nav:last-child > ul > li > a {
  font-size: 24px;
  font-weight: 400;
}

main {
  padding: 2em 0;
  margin: 0;
}

.content {
  padding: 0;
}

.cover {
  align-items: center;
  background-position: top;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 650px;
  overflow: hidden;
  overflow: clip;
  padding: 0;
  transition: min-height 0.3s ease;
  background-color: #b9b8bd;
  background-size: cover;
  position: relative;
  clip-path: polygon(100% 0%, 100% 90%, 50% 100%, 0 90%, 0 0);
}
.cover.cover-main {
  background-image: url(../images/cover-main.jpg);
  min-height: 650px;
}
.cover.cover-pirita-sunset {
  background-image: url(../images/cover-pirita-sunset.jpg);
  color: #fff;
  min-height: 500px;
}
.cover.cover-pirita-sunset .img-container {
  max-width: 600px;
}
.cover h1 {
  font-size: 70px;
  font-weight: 900;
  margin-bottom: 2rem;
}
.cover h2 {
  font-weight: 900;
}
.cover p {
  font-weight: 500;
}
.cover .cover-content {
  padding: 40px 0;
  min-width: 230px;
  max-width: 55%;
  z-index: 10;
  position: relative;
}

.sound-bars {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 200px;
}
.sound-bars .bar {
  width: 10px;
  margin-right: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  animation: soundEffect 1s ease-in-out infinite alternate;
  animation-duration: 1s;
}

@keyframes soundEffect {
  0% {
    height: 10px;
  }
  100% {
    height: 100px;
  }
}
ul.sub-menu {
  z-index: 1000;
}

.button {
  display: inline-block;
  color: white;
  font-weight: bold;
  text-decoration: none;
  background-color: #111;
  border: 0;
  padding: 10px 25px 10px 45px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}
.button:disabled {
  background-color: #999;
  cursor: not-allowed;
}
.button:disabled::after {
  background-color: #000;
}
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: #cc00cc;
  transition: width 0.3s ease;
  z-index: -1;
}
.button::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  font-weight: 900;
  font-size: 18px;
  color: white;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  transition: left 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.button:hover:not(:disabled) {
  padding-left: 25px;
  padding-right: 45px;
  color: white;
}
.button:hover:not(:disabled)::after {
  width: calc(100% - 8px);
}
.button:hover:not(:disabled)::before {
  left: calc(100% - 25px);
  transform: translateY(-50%) translateX(-10px);
}

footer#footer {
  background-color: #000;
  color: #fff;
  padding: 2em 0;
  margin-top: auto;
}
footer#footer a {
  color: rgba(255, 255, 255, 0.8);
}
footer#footer a:hover {
  color: white;
}
footer#footer h3 {
  margin-bottom: 1em;
}
footer#footer p {
  margin: 5px 0;
  padding: 0;
}
footer#footer p .fas {
  margin-right: 5px;
}
footer#footer .social-icons {
  padding-top: 20px;
}
footer#footer .social-icons a {
  color: #000;
}

#back-to-top {
  display: block;
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #222;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
#back-to-top::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f062";
  font-weight: 900;
  font-size: 18px;
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
#back-to-top:hover {
  background-color: #cc00cc;
}
#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.3s ease, visibility 0s 0s;
}

@keyframes glitch {
  0% {
    clip-path: var(--slice-1);
    transform: translate(-20px, -10px);
  }
  10% {
    clip-path: var(--slice-3);
    transform: translate(10px, 10px);
  }
  20% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 10px);
  }
  30% {
    clip-path: var(--slice-3);
    transform: translate(0px, 5px);
  }
  40% {
    clip-path: var(--slice-2);
    transform: translate(-5px, 0px);
  }
  50% {
    clip-path: var(--slice-3);
    transform: translate(5px, 0px);
  }
  60% {
    clip-path: var(--slice-4);
    transform: translate(5px, 10px);
  }
  70% {
    clip-path: var(--slice-2);
    transform: translate(-10px, 10px);
  }
  80% {
    clip-path: var(--slice-5);
    transform: translate(20px, -10px);
  }
  90% {
    clip-path: var(--slice-1);
    transform: translate(-10px, 0px);
  }
  100% {
    clip-path: var(--slice-1);
    transform: translate(0);
  }
}
@keyframes pause-glitch {
  0%, 18.5% {
    opacity: 1;
  }
  18.6%, 100% {
    opacity: 0;
  }
}
@keyframes glitch-shadow {
  0% {
    text-shadow: -2px -2px 0px rgba(255, 255, 255, 0.3), 2px 2px 0px rgba(255, 255, 255, 0.2);
  }
  20% {
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.3), -2px -2px 0px rgba(255, 255, 255, 0.2);
  }
  40% {
    text-shadow: -2px 2px 0px rgba(255, 255, 255, 0.3), 2px -2px 0px rgba(255, 255, 255, 0.2);
  }
  60% {
    text-shadow: 2px -2px 0px rgba(255, 255, 255, 0.3), -2px 2px 0px rgba(255, 255, 255, 0.2);
  }
  80% {
    text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.3), 0px 0px 0px rgba(255, 255, 255, 0.2);
  }
  100% {
    text-shadow: -2px -2px 0px rgba(255, 255, 255, 0.3), 2px 2px 0px rgba(255, 255, 255, 0.2);
  }
}
/* Mobile Styles (410px) */
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 36px;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 26px;
    margin-bottom: 2rem;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 2rem;
  }

  header#header {
    height: 80px;
  }
  header#header .nav-container nav,
header#header .nav-container .social-icons {
    display: none;
  }
  header#header .menu-icon {
    display: block;
  }

  .logo img {
    height: 70px;
  }

  .cover {
    min-height: 500px;
    clip-path: polygon(100% 0%, 100% 94%, 50% 100%, 0 94%, 0 0);
  }
  .cover .cover-content {
    padding: 30px 0;
  }
  .cover h1 {
    font-size: 32px;
    margin-bottom: 2rem;
  }
  .cover h2 {
    font-size: 30px;
    margin-bottom: 2.5rem;
  }
}
.corner-cut {
  clip-path: polygon(90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%, 0 0);
}

section {
  padding: 1em 0;
  transition: all 0.3s ease;
}

@media (min-width: 1400px) {
  section {
    padding: 1.5em 0;
  }
}
.image-wrapper {
  display: inline-block;
  position: relative;
  clip-path: polygon(90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%, 0 0);
  overflow: hidden;
}
.image-wrapper.image-border {
  border-bottom: 8px solid #cc00cc;
}
.image-wrapper .image-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  scale: 1.02;
}
.image-wrapper:hover .image-content {
  transform: scale(1.08);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.is-visible {
  opacity: 1;
}

.slide-top {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.slide-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

.delay-7 {
  transition-delay: 0.7s;
}

.delay-8 {
  transition-delay: 0.8s;
}

.delay-9 {
  transition-delay: 0.9s;
}

.section-clients {
  position: relative;
  overflow: hidden;
}

.scrollable {
  width: 100%;
  overflow-x: auto;
}

ul.clients {
  display: flex;
  width: max-content;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
}
ul.clients li {
  margin-right: 20px;
  padding: 15px;
  height: 150px;
  background-color: #f1f1f1;
}
ul.clients li img {
  height: 100%;
}

.border-middle {
  position: relative;
}
.border-middle::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ddd;
  transform: translateY(-60%);
  z-index: 1;
}
.border-middle span {
  background-color: #fff;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 auto;
}
.border-middle a span {
  text-decoration: underline;
}

.input-container {
  margin-bottom: 20px;
  position: relative;
}
.input-container:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #cc00cc;
  transition: width 0.3s ease;
}
.input-container:has(.form-control:focus)::before {
  width: 100%;
}
.input-container .form-control {
  border-radius: 0;
  padding: 0.5rem 0.75rem;
}
.input-container .form-control:focus {
  border-color: #666;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.05);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.alert {
  border-radius: 0;
  border-left-width: 8px;
  margin-bottom: 2em;
}
.alert.alert-success {
  color: #008131;
  border-color: #008131;
  background-color: #eef8f1;
}
.alert.alert-danger {
  color: #980000;
  border-color: red;
  background-color: #fff3f3;
}

/* Style the scrollbar */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

/* Track (background) of the scrollbar */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  /* Light grey background */
}

/* Handle (thumb) of the scrollbar */
::-webkit-scrollbar-thumb {
  background-color: #333;
  /* Dark grey (almost black) */
  border-radius: 10px;
  /* Rounded corners for the thumb */
}

/* Handle when hovered */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Slightly lighter grey when hovered */
}

::selection {
  background: #333;
  color: white;
}

.grecaptcha-badge {
  bottom: 80px !important;
  z-index: 10;
}

/*# sourceMappingURL=styles.css.map */
