@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --red: #EE252A;

  --white: #ffffff;
  --white-grey: #EEEEEE;
  
  --grey-text: #827579;
  
  --blue-link: #267BC9;;

  --black: #000000;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

* {
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
    /* cursor: url('../Images/Icons/cursor.png'), auto; */
}
body {
    margin: 0;
    padding: 0;
    background: #000000;
}
a, p, h1, h2, h3, h4, h5, h6, div, span, input, textarea, select, option{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.8px;
    color: var(--white );
    font-size: 16px;
    /* border: 1px solid red; */
}
.cont{
    width: calc(100% - 30px);
    max-width: 1320px;
    height: fit-content;
    margin: 0px auto;    
}
.reveal {
    position: relative;
    opacity: 0;
}
  
.reveal.active {
    opacity: 1;
}
.active.fade-bottom {
    animation: fade-bottom .5s ease-in;
}
.active.fade-left {
    animation: fade-left 1s ease-in;
}
.active.fade-right {
    animation: fade-right 1s ease-in;
}
@keyframes fade-bottom {
    0% {
      transform: translateY(5px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}
@keyframes fade-left {
    0% {
      transform: translateX(-100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}
  
@keyframes fade-right {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}



.w200{
  font-weight: 200;
}
.w300{
  font-weight: 300;
}
.w400{
  font-weight: 400;
}
.w500{
  font-weight: 500;
}
.w600{
  font-weight: 600;
}
.w700{
  font-weight: 700;
}




.f12{
  font-size: 12px;
}
.f14{
  font-size: 14px;
}
.f16{
  font-size: 16px;
}
.f17{
  font-size: 17px;
}
.f18{
  font-size: 18px;
}
.f19{
  font-size: 19px;
}
.f20{
  font-size: 20px;
}
.f22{
  font-size: 22px;
}
.f24{
  font-size: 24px;
}
.f28{
  font-size: 28px;
}
.f30{
  font-size: 30px;
}
.f32{
  font-size: 32px;
}
.f34{
  font-size: 34px;
}
.f36{
  font-size: 36px;
}
.f40{
  font-size: 40px;
}
.f48{
  font-size: 48px;
}
.f60{
  font-size: 60px;
}
.f64{
  font-size: 64px;
}



@media screen and (max-width: 1500px){
    .cont{
        max-width: calc(100% - 120px);
    }    
}
@media screen and (max-width: 1000px){
    .f12{
      font-size: 12px;
    }
    .f14{
      font-size: 14px;
    }
    .f16{
        font-size: 16px;
    }
    .f17{
        font-size: 16px;
    }
    .f18{
        font-size: 17px;
    }
    .f19{
        font-size: 18px;
    }
    .f20{
        font-size: 18px;
    }
    .f22{
        font-size: 20px;
    }
    .f24{
      font-size: 22px;
    }
    .f28{
        font-size: 25px;
    }
    .f30{
      font-size: 26px;
    }
    .f32{
      font-size: 28px;
    }
    .f34{
      font-size: 30px;
    }
    .f36{
      font-size: 32px;
    }
    .f40{
        font-size: 35px;
    }
    .f48{
      font-size: 42px;
    }
    .f60{
        font-size: 52px;
    }
    .f64{
      font-size: 52px !important;
    }
}
@media screen and (max-width: 700px){
    .cont{
        max-width: calc(100% - 40px);
    }    
}