.no-js #ufu-loader-wrapper {
    display: none;
}
.no-js h1 {
    color: #000;
}
#ufu-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#ufu-loader-section {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1000;
}

#ufu-spinner-logo{
    width: 200px;
    position: absolute;
    top:40%;
    left:50%;
    transform: translate(-50%, 0);
    z-index: 1001;
}
#ufu-spinner {
    width: auto;
    margin-top: -10px;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, 0);
    z-index: 1001;
}

#ufu-spinner > div {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: fcd-bouncedelay 1.1s infinite ease-in-out both;
  animation: fcd-bouncedelay 1.1s infinite ease-in-out both;
}

#ufu-spinner #ufu-bounce1 {
  background-color: #65458A;
  -webkit-animation-delay: -0.48s;
  animation-delay: -0.32s;
}

#ufu-spinner #ufu-bounce2 {
  background-color: #00A1B3;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.16s;
}

#ufu-spinner #ufu-bounce3 {
  background-color: #2E518C;
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.08s;
}

@-webkit-keyframes fcd-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes fcd-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
#ufu-logo1{
    background-image: url("./img/slide1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

/* Loaded */
.loaded #ufu-spinner{
    opacity: 0;
    -webkit-transition: all .5s ease-out; 
            transition: all .5s ease-out;
}
.loaded #ufu-spinner-logo{
    opacity: 0;
    -webkit-transition: all .5s ease-out; 
            transition: all .5s ease-out;
}
.loaded #ufu-loader-section {
    opacity: 0;
    -webkit-transition: all 1s ease-out; 
            transition: all 1s ease-out;
}
.loaded #ufu-logo1 {
    opacity: 0;
    -webkit-transition: all 1.5s 1s ease-out; 
            transition: all 1.5s 1s ease-out;
}
.loaded #ufu-loader-wrapper {
    visibility: hidden;
    -webkit-transition: all 0.3s 1s ease-out; 
                transition: all 0.3s 1s ease-out;
}


/* Sign up tab */
.signUp-container{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 125px;
    height: 125px;
    
}
.signUp:hover{
    color: #fff;
    text-decoration: none;
}

.signUp {
    width: 0;
    height: 0;
    border-bottom: 125px solid #000000;
    border-top: 125x solid transparent;
    border-right: 125px solid transparent;
    position:absolute;
    left:0;
}
.signUp img {
    color: white;
    font-weight: bold;
  position:absolute;
  bottom: -110px;
  width: 50px;
  right: -60px;
  text-align: center;
  font-size: 14px;
  transform: rotate(45deg);
  display:block;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.1); /* Black w/ opacity */
    }

/* Modal Content */
.modal-content
    {
    border-radius: 3px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 400px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 10px 0px 10px;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 1.5s;
        animation-name: slideIn;
        animation-duration: 1.5s;
    -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 1);
}

/* Close Button */
.close-popup {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    z-index: 2;
}

.close-popup:hover,
.close-popup:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* Animation */
    @-webkit-keyframes slideIn {
  from {bottom: -100px; opacity: 0}
  to {bottom: 20px; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -100px; opacity: 0}
  to {bottom: 20px; opacity: 1}
}

/* Tablet/Mobile View */  
@media (max-width:641px){
    .modal-content{
        width: 90%;
        position: fixed;
        bottom: 20px;
        right: 4%;
        }
}



*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
}

body {
    font-family: "Montserrat";
}
p {
    line-height: 1.5;
    font-size: 13pt;
    color: #636363;
    width: 450px;
    text-align: center;
    margin: 0 auto;
}
h1 {
    font-weight:500;
    font-size: 28pt;
    letter-spacing: .1em;
    text-transform: uppercase;
}
h2 {
    font-weight:600;
    font-size: 15pt;
    letter-spacing: .2em;
    text-transform: lowercase;
}
.signUpText{
    font-weight: 500;
    text-transform: uppercase;
    font-size: 18pt;
    width: 90%;
    transform: translate(5%, 0%);
}
.s1 {
    background: url(img/slide1.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.s2 {
    background: url(img/slide2.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.s3 {
    background: url(img/slide3.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.s4 {
    background: url(img/slide4.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}
.s5 {
    background: url("./img/slide5.png");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    }

.content{
    margin: auto;    
    text-align: center;
}
.c1 {
    transform: translate(0, -90%);
}
.c6 {
    transform: translate(0,-15%)
}
.ufu-logo1 {
    width: 155px;
    padding-bottom: 20px;
}
.down-arrow {
    width: 40px;
    padding-top: 20px;
}
.icon {
    padding-bottom: 20px;
}
.icon6{
    width: 100px;
}
.header{
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    margin: auto;
    padding-top: 20px;
}
.topBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: auto;
    padding: 2px 0 2px 0;
    background-color: black;
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}
.footer{
    color: white;
    text-align: center;
    background-color: black;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left:0;
    right: 0;
}
#footerImg {
    width: 60px;
    margin-bottom: -4px;
}
#footerText {
    color: white;
    font-size: 11pt;
}
a.inquire {
    color: white;
}
.ufu-subheading1{
    color: #65458A;
}
.ufu-subheading2{
    color: #00A1B3;
}
.ufu-subheading3{
    color: #2E518C;
}
.ufu-cookie {
    background-color: black;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
.ufu-consent-container {
    margin: 0 auto;
    width: 90%;
    color: white;
    padding: 15px;
}
.ufu-cookie-content {
    display: inline-block; 
    width:auto;
    padding: 10px;
    text-align: center;
}
.ufu-cookie-accept{
    background-color: white;
    color: black;
    float: right;
    padding: 10px;
    display: inline-block;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}
@media (max-width: 1800px){
    .c1 {
    transform: translate(0, -75%);
    }
}
@media (max-width: 1400px) and (min-width: 429px){
    .c1 {
    transform: translate(0, -55%);
    }
    h1 {
        font-size: 20pt;
    }
    h2{
        font-size: 13pt;
    }
    p {
        font-size: 11pt;
        width: 300px;
    }
    .down-arrow {
        width: 35px;
    }
    .icon{
      width: 140px
    }
    .icon6 {
    width: 80px;
  }
    .ufu-cookie-accept{
        width: 100%;
        margin-bottom: 5px;
    }
    .ufu-consent-container {
      font-size: 11pt;
        }
}
@media (max-width: 429px){
    .c1 {
    transform: translate(0, -50%);
    }
    h1 {
        font-size: 14pt;
    }
    h2{
        font-size: 12pt;
    }
    p {
        font-size: 11pt;
        width: 335px;
    }
    .down-arrow {
        width: 35px;
    }
    .icon{
      width: 140px
    }
    .icon6 {
      width: 80px;
      }
    .ufu-cookie-accept{
        width: 100%;
        margin-bottom: 5px;
    }
    .ufu-consent-container {
      font-size: 11pt;
    }
    .signUp-container{
    width: 100px;
    height: 100px;
    }
    .signUp {
    border-bottom: 100px solid #000000;
    border-top: 100x solid transparent;
    border-right: 100px solid transparent;
    }
    .signUp img {
    bottom: -85px;
    width: 35px;
    right: -50px;
    }
}