@font-face {
  font-family: 'Atak';
  src: url(./fonts/AtakSemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: 'Atak';
  src: url(./fonts/AtakSemiRegular.ttf);
  font-weight: 400;
}
body {
  font-family: 'Atak', sans-serif;
  padding-top: 0px;
}
h1 {
  font-weight: 600;
  font-size: 48px;
  letter-spacing: 0%;
}
span {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0%;
}

.background {
  background-image: url(./images/background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* background-color: #000; */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  filter: blur(4px) opacity(1) brightness(0.6);
  /* filter: brightness(.9) blur(4px); */
  z-index: 0;
}
.gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.6));  
  z-index: 1;
}
.logo {
  width: 200px;
  height: 76px;
  background-color: transparent;
  background-image: url(./images/Selvara-logo.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  display: block;
  position: relative;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
}
.content {
  position: relative;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 3;
  margin-top: 200px;
}
.content span {
  font-size: 20px;
}
/* .loader {
  width: 380px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  margin: 0 auto;
  margin-top: 20px;
}
.loader-inner {
  width: 20%;
  height: 100%;
  background-color: #012b49;
  border-radius: 10px;
  transition: all 0.3s ease;
} */


/* .button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  opacity: 0;
  animation: buttonFadeInUp 1s ease-in-out forwards;
}
 */



/* .container {
  position: relative;
    width: 100%;
    height: 100%;
    background-color: #000;
} */

.fadeInUp {
  /* animation: fadeInUp 1s ease-in-out; */
  animation: fadeInUp 1.2s ease-in-out forwards !important;
}
/* .button.fadeInUp {
  animation: buttonFadeInUp 1s ease-in-out forwards !important;
  animation-delay: 0.9s !important;
} */
.title, .subtitle, .loader {
  opacity: 0;
}
/* .loader {
  animation: fadeInUpLoader .2s ease-in-out forwards !important;
} */
.comingSoon {
  margin-top: 20px;
  font-weight: 600;
  opacity: 0;
  animation: fadeInUp 1.2s ease-in-out forwards !important;
}

footer {
  display: flex;
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: end;
  z-index: 4;
  opacity: 0;
  animation: fadeInUp .6s ease-in-out forwards !important;
  animation-delay: 3s !important;
  /* padding-bottom: 10px; */
  /* left: 50%; */
  /* transform: translateX(-50%); */
}
footer div {
  border-top: .5px solid #fff;
  padding: 16px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

a {
  /* padding: 4px 4px; */
  /* background-color: #fff; */
  /* text-decoration: none; */
  /* border-radius: 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* transition: all 0.3s ease; */
}
a:visited {
  color: #fff;
}
a .text {
  padding-right: 0px;
  /* padding-left: 32px; */
  font-size: 16px;
  transition: all 0.3s ease;
}
a .arrow {
  margin-left: 10px;
  background-color: #012b49;
  color: #fff;
  /* padding: 5px 10px; */
  height: 32px;
  width: 32px;
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
}
a:hover {
  /* background-color: #012b49; */
  color: #012b49;
  cursor: pointer;
}
a svg {
  margin-left: 8px;
  transition: all 0.3s ease;
}
a:hover  svg {
  transform: scale(1.2);
  transition: all 0.3s ease;
  stroke: #012b49!important;
  fill: #012b49!important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUpLoader {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation: fadeInDown 2s ease-in-out;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* @keyframes buttonFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
.delay-1 {
  animation-delay: 0.2s !important;
}
.delay-2 {
  animation-delay: 0.6s !important;
}
.delay-3 {
  animation-delay: 0.8s !important;
}
.delay-4 {
  animation-delay: 1.6s !important;
}