* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: auto;
  background: url('images/bg.jpg') center/cover no-repeat fixed;
  font-family: 'Montserrat', sans-serif;
  color: #fff;

}

html {
  scroll-behavior: smooth;
}


::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(32, 97, 237, 0.8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 1);
}

::-webkit-scrollbar-track {
  background: transparent;
}


* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.8) transparent;
}

.audio-container {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 10;
}

.audiosvg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.audiosvg:hover {
  transform: scale(1.1);
}

#svg-audio {
  transform-origin: 125.5px 154px;
  transition: transform 0.3s ease;
}


.spinning {
  animation: spin 2s linear infinite;
}

#ripple-circle circle {
  opacity: 0.5;
  transform-origin: 125.5px 154px;
  transform: scale(0.5);
}

.ripple-active circle {
  animation: ripple 2.1s linear infinite;
}

.ripple-active circle:nth-child(1) {
  animation-delay: 0s;
}

.ripple-active circle:nth-child(2) {
  animation-delay: 0.7s;
}

.ripple-active circle:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(20);
    opacity: 0;
  }
}

#hover-circle .st4 {
  transition: fill 0.25s ease;
}

.st3 {
  fill: #ffffff;
}

.st4 {
  fill: #ffffff;
}

.st4 {
  fill: rgb(255, 255, 255) !important;
  stroke: rgba(255, 251, 251, 0) !important;
}

.st5 {
  stroke: rgb(255, 255, 255) !important;
}

.st5 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 7.5924;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.st9 {
  fill: none;
  stroke: #ffffff;
  stroke-width: 0.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}


.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}

.page-transition-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.burger-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10000;
}

.menu-toggle {
  display: block;
  width: 30px;
  height: 26px;
  cursor: pointer;
  position: relative;
}

.menu-toggle-bar {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.menu-toggle-bar--top {
  top: 0;
}

.menu-toggle-bar--middle {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle-bar--bottom {
  bottom: 0;
}

.menu-toggle.open .menu-toggle-bar--top {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}

.menu-toggle.open .menu-toggle-bar--middle {
  opacity: 0;
}

.menu-toggle.open .menu-toggle-bar--bottom {
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}

.left-panel {
  position: fixed;
  left: -230px;
  top: -100px;
  width: 260px;
  height: 170vh;
  overflow: hidden;
  transform-origin: top left;
  transform: rotate(-30deg) translateY(-120%);
  transition: transform 0.5s cubic-bezier(0.9, 0, 0.1, 1);
  z-index: 100;

  background: url('images/images.png') center/cover no-repeat;
}

.left-panel::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 100%;
  height: 70%;
  background: url('images/gif.gif') center/cover no-repeat;
  pointer-events: none;
  z-index: 1;
}

.left-panel.page-load-start {
  transform: rotate(-30deg) translateY(-100%) translateX(-100%) scale(12);
  transition: none;
}

.left-panel.page-load-transition {
  transition: transform 0.5s cubic-bezier(0.9, 0, 0.1, 1);
}

.left-panel.show {
  transform: rotate(-30deg) translateY(0);
}

.left-panel .content {
  position: absolute;
  top: 44%;
  left: 8%;
  z-index: 100;
}

.left-panel .content a {
  display: block;
  font-weight: 800;
  font-size: 27px;
  color: #cfcfcf;
  text-decoration: none;
  margin: 10px 0;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.left-panel .content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #d3563f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.left-panel .content a:not(.active):hover {
  color: #d3563f;
}

.left-panel .content a:not(.active):hover::after {
  transform: scaleX(1);
}

.left-panel .content a.active {
  color: #111;
}

.left-panel .content a.active::after {
  display: none;
}

.social-bottom {
  list-style: none;
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 6px;
  padding: 0;
  z-index: 100;
}

.social-bottom li a {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  transition: transform 0.3s;
}

.social-bottom li a .icon {
  position: relative;
  color: #262626;
  transition: 0.5s;
  z-index: 3;
}

.social-bottom li a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.social-bottom li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 2;
}

.social-bottom li a:hover:before {
  top: 0;
}

.social-bottom li:nth-child(1) a:before {
  background: #E1306C;
}

.social-bottom li:nth-child(2) a:before {
  background: #0077b5;
}

.social-bottom li:nth-child(3) a:before {
  background: #DD4B39;
}

.social-bottom li:nth-child(4) a:before {
  background: #333;
}

.left-panel.expand {

  transform-origin: top left;

  transform: rotate(-30deg) translateY(-100%) translateX(-100%) scale(12);
  transition: transform 0.5s ease-in-out;
}