@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

body,
*,
html {
  margin: 0;
  padding: 0;
  font-family: Raleway, sans-serif !important;
}
.background {
  margin: 0;
  padding: 0;
  background-image: url("img9.jpg");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  height: 100vh;
}

.custom-font {
  line-height: 1.2;
}

.background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 20%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 80%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .background::before {
    opacity: 1;
  }
  .custom-font {
    color: #86c8f0;
    line-height: 1;
  }

  .secondary-custom-font {
    color: #0d90cc;
  }
}
