/*CODE COMPLETED*/

/*Contact CSS*/
.contactBackground {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(187, 187, 187), rgba(80, 80, 80));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 90;
}

.contactFilterBlur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(2px);
  background: transparent;
  z-index: 1;
}

.contactVectors {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.contactVectors img {
  position: absolute;
  width: 100vw;
  height: auto;
  pointer-events: none;
}

.letter8 {
  top: 0;
  left: 0;
}

.letter9 {
  bottom: 50%;
  left: 0;
}

.letter10 {
  top: 30%;
  right: 5%;
}

.letter11 {
  bottom: 5%;
  left: 0;
}

.letter12 {
  top: 50%;
  right: 20%;
}

.letter13 {
  bottom: 0;
  right: 0;
}

.letter14 {
  top: 0;
  right: 0;
}

.contactBackground.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.noiseTexture3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 700' width='700' height='700' opacity='0.1'><defs><filter id='nnnoise-filter' x='-20%' y='-20%' width='140%' height='140%' filterUnits='objectBoundingBox' primitiveUnits='userSpaceOnUse' color-interpolation-filters='linearRGB'><feTurbulence type='fractalNoise' baseFrequency='0.2' numOctaves='4' seed='15' stitchTiles='stitch' x='0%' y='0%' width='100%' height='100%' result='turbulence'></feTurbulence><feSpecularLighting surfaceScale='11' specularConstant='0.9' specularExponent='20' lighting-color='%23ffffff' x='0%' y='0%' width='100%' height='100%' in='turbulence' result='specularLighting'><feDistantLight azimuth='3' elevation='103'></feDistantLight></feSpecularLighting></filter></defs><rect width='700' height='700' fill='transparent'></rect><rect width='700' height='700' fill='%23ffffff' filter='url(%23nnnoise-filter)'></rect></svg>");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
}

.backButtonContact {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 60px;
  border: none;
  cursor: pointer;
  background: none;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.backButtonContact.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.backButtonContact::before,
.backButtonContact::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 3px;
  transition: 0.75s;
  left: 50%;
  transform-origin: center;
}

.backButtonContact::before {
  top: 18px;
  left: 15px;
  transform: rotate(-45deg);
}

.backButtonContact::after {
  top: 35.5px;
  left: 15px;
  transform: rotate(45deg);
}

.backButtonContact:hover::before {
  transform: translateY(-1.6px) translateX(0px) rotate(-45deg) scale(1.2);
  box-shadow:
    3px 3px 5px rgba(0, 0, 0, 0.25),
    -3px -3px 5px rgba(255, 255, 255, 0.5);
  transition: 0.25s;
}

.backButtonContact:hover::after {
  transform: translateY(1.6px) translateX(0.4px) rotate(45deg) scale(1.2);
  box-shadow:
    -3px 3px 5px rgba(255, 255, 255, 0.5),
    3px -3px 5px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}

.contactLayer {
  position: absolute;
  width: 100%;
  height: 250px;
  background: rgba(100, 100, 100, 0.5);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.25),
    0 -10px 20px rgba(255, 255, 255, 0.25);
  border: solid 2px rgba(255, 255, 255, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.contactBorder {
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0px 40px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.25),
    -10px -10px 20px rgba(255, 255, 255, 0.25);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: left 0.5s ease-out;
  z-index: 95;
}

.contactTitle {
  color: white;
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.contactBtn2 {
  display: inline-block;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 24px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    10px 10px 20px rgba(0, 0, 0, 0.25),
    -10px -10px 20px rgba(255, 255, 255, 0.25);
  transition: 0.75s;
}

.contactBtn2:hover {
  background: #ffffff;
  color: #000000;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0 0 20px #ffffff;
  border-radius: 15px;
  transform: scale(1.05);
  transition: 0.25s;
}

.timezone {
  color: white;
  font-size: 14px;
  padding-top: 20px;
}