@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* COLORS */
:root{
  --red: #ef4046;
  --white: #FFFFFF;
  --montserrat: "Montserrat", sans-serif;
}
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: var(--white);
  background-color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* CUSTOM PRELOAD */

.hide{
  -webkit-animation: loader 1.8s linear;
  animation: loader 1.8s linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: var(--red);
}

@-webkit-keyframes loader {
  0% {
      opacity: 1
  }

  90% {
      opacity: 1
  }

  99% {
      opacity: 0
  }

  100% {
      display: none;
      visibility: hidden;
      z-index: -10;
      opacity: 0
  }
}

@keyframes loader {
  0% {
      opacity: 1
  }

  90% {
      opacity: 1
  }

  99% {
      opacity: 0
  }

  100% {
      display: none;
      visibility: hidden;
      z-index: -10;
      opacity: 0
  }
}

*{margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; -webkit-text-size-adjust:none;box-sizing:border-box;user-select: none;-webkit-tap-highlight-color: transparent;}
html{scroll-behavior: smooth;}
html:not(.touch-screen)::-webkit-scrollbar,html:not(.touch-screen) *::-webkit-scrollbar{width:6px;height:6px;}
html:not(.touch-screen)::-webkit-scrollbar-track,html:not(.touch-screen) *::-webkit-scrollbar-track{background:#575757;}
html:not(.touch-screen)::-webkit-scrollbar-thumb,html:not(.touch-screen) *::-webkit-scrollbar-thumb{  background: var(--red);}
:focus, :active, :visited{outline: none;}
.hidden{display: none!important;}
a{ cursor:pointer; text-decoration:none; outline:none; color:inherit; -webkit-transition: all 0.3s linear; transition: all 0.3s linear; -moz-transition: all 0.3s linear; -ms-transition: all 0.3s linear; -o-transition: all 0.3s linear; }

header {
  margin: 65px auto 70px;
}
.main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title{
  margin: 0px auto 70px;
}
.title p{
  color: var(--white);
  text-align: center;
  font-family: var(--montserrat);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: -0.64px;
  text-transform: uppercase;
}

.link-block{
  display: flex;
  gap: 26px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.link-block img{min-width: 163px; display: block;width: 165px;}
