@font-face {
  font-family: 'Urbanist';
  src: url(./fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}

@font-face {
  font-family: 'Forum';
  src: url(./fonts/Forum/Forum-Regular.ttf);
}

@font-face {
  font-family: 'Libre';
  src: url(./fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf);
}

:root {
  --color-black: #101010;
  --color-white: #ffffff;
  --color-red: #d10019;
  --color-gray: #454545;

  --font-hero: 14.5vw;
  --font-h1: 100px;
  --font-h2: 90px;
  --font-h3: 55px;
  --font-medium: 35px;
  --font-regular: 28px;
  --font-small: 20px;
  --font-tiny: 14px;
}


@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.391);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(0, 0, 0, 0);
  }
}


.cursor {

  position: fixed;  
  width: 16px;
  height: 16px;
  scale: 1;
  border-radius: 50%;
  z-index: 1000000000000000000000;
  /* background-color: var(--color-white); */
  background: var(--color-gray);
  box-shadow: 0 10px 70px rgb(0, 0, 0);
  backdrop-filter: blur(50px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.1s, height 0.1s;
  mix-blend-mode: difference;
}

.cursor.cursor-change {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.059);
  box-shadow: 0 5px 60px rgba(255, 0, 0, 0.894);
  backdrop-filter: blur(3px);
  animation: pulse-animation 1s infinite
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 100vh;
  color: var(--color-black);
  font-family: 'Urbanist';
}

.hero-contact-bg-img {
  width: 100vw;
  height: 100vh;
  top: 0;
  position: fixed;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(0, 0, 0)), url(./images/background.jpg) no-repeat 50% 50%;
  z-index: -10000;
  filter: invert(1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-nav {
  width: 100%;
  font-size: 12px;
  text-align: center;
  padding: 1em;
  font-weight: 300;
  text-transform: uppercase;
}

.space {
  height: 5vh;
}

.menu-icon ion-icon {
  position: relative;
  top: 2px;
}

.marquee {
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  padding-top: 1.2em;
}

.marquee span {
  font-family: "Forum";
  color: var(--color-red);
  font-size: var(--font-hero);
  text-transform: uppercase;
  display: inline-block;
  padding-left: -10%;
  animation: marquee-animation 300s linear infinite;
}

@keyframes marquee-animation {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

.col {
  width: 50%;
  padding: 2rem;
}

.margin {
  margin: 2rem;
}

.small-space {
  height: 5vh;
}

.contact-section {
  width: 100%;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.067);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
  backdrop-filter: blur(15px);
  border: .001px solid rgba(255, 255, 255, 0.147);
}

.contact-section h3 {
  text-transform: uppercase;
  color: var(--color-gray);
  font-weight: 600;
  font-size: var(--font-h3);
  font-family: 'Forum';
  margin-bottom: 10px;
}

.contact-section span {
  text-transform: uppercase;
}

.contact-details p {
  font-size: var(--font-h3);
  text-transform: uppercase;
  font-family: 'Forum';
  font-weight: 100;
}

.contact-info, .address.item {
  font-size: var(--font-regular);
  font-family: "Forum";
  font-weight: 900;
}

.margin span {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.481);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
  backdrop-filter: blur(10px);
  border: .5px  solid rgb(255, 255, 255);
  transition: all .2s ease-in-out;
  border-radius: 20px;
}

span:hover {
  color: var(--color-red);
}

.item {
  padding: 2rem 0 0 0;
}

.contact-info {
  display: flex;
}

.address {
  padding-left: 4em;
}

input {
  background: none;
  outline: none;
  border: none;
  border-bottom: .1px solid var(--color-black);
  font-size: var(--font-regular);
  padding: 0.4em;
  width: 100%;
  color: var(--color-black);
}

.row {
  display: flex;
}

textarea#message {
  width: 100%;
  background: none;
  outline: none;
  border: none;
  border-bottom: .1px solid var(--color-black);
  font-size: var(--font-regular);
  padding: 0.4em;
  width: 100%;
  color: var(--color-black);
  font-family: "Urbanist";
}

.submit {
  width: 100%;
}

.submit a {
  text-decoration: none;
  color: var(--color-black);
  font-family: "Forum";
  font-size: var(--font-h2);
  font-weight: 100;
  text-transform: uppercase;
  transition: all .2s ease-in-out;
}

.submit a:hover {
  color: var(--color-red);
}


.cursor {

  position: fixed;  
  width: 16px;
  height: 16px;
  scale: 1;
  border-radius: 50%;
  z-index: 1000000000000000000000;
  /* background-color: var(--color-white); */
  background: var(--color-gray);
  box-shadow: 0 10px 70px rgb(0, 0, 0);
  backdrop-filter: blur(50px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.1s, height 0.1s;
  mix-blend-mode: difference;
}

.cursor.cursor-change {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.059);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.253);
  backdrop-filter: blur(3px);
}

.cursor.cursor-none{
  width: 0;
  height: 0;
}

@media (min-width: 900px) {
  html,
  body {
    height: 100%;
  }

  .contact-section {
    width: 100%;
    display: flex;
  }
}

@media (max-width: 900px) {
  .col {
    width: 100%;
  }
}
