@font-face {
    font-family: 'Italiana';
    src: url('../fonts/Italiana-Regular.eot');
    src: url('../fonts/Italiana-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Italiana-Regular.woff2') format('woff2'),
        url('../fonts/Italiana-Regular.woff') format('woff'),
        url('../fonts/Italiana-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
      font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/OpenSans-Regular.woff') format('woff'),
        url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html,
body{
width:100%;
height:100%;
margin:0;
padding:0;
  font-size:2em;
font-family: 'Italiana';
font-weight:300;
letter-spacing:1px;
box-sizing: border-box;
}
body{
overflow:scroll;
}


h1, h2, h3, h4, h5, h6, p, ul, li{
/* font-family: 'Italiana';*/
/*letter-spacing:1px;*/
}

p {
  white-space: pre-wrap;
}




#typewriter-wrapper {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center; /* ensure centered */
}

.char {
  opacity: 0;
  display: inline-block;
  transition: opacity 0.5s ease;
}

.char.visible {
  opacity: 1;
}





.image-holder {
  position: absolute;
  top: 180px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border-radius: 20px;
  overflow: hidden;
    opacity: 0;
  animation:  fadeInOnLoad 5s ease forwards 3s,
              fadeInSlideUp 3s ease forwards 3s;
 
}

.image-holder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(/images/tac_bg_new.jpg) center center no-repeat;
  background-size: cover; /* use cover instead of auto */
  background-attachment: fixed;
  transform: scale(1);
  animation: subtleZoom 10s ease-in-out infinite alternate;
  animation-delay: 7s;
}

@keyframes subtleZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1); /* 5% zoom */
  }
}



.image-overlay-1{
  opacity:0;
position:fixed;
    top:180px;
    right:20px;
    bottom:20px;
    left:20px;
    border-radius:20px;
z-index:1;
background: #F7F2ED;
background: linear-gradient(160deg, rgba(94, 34, 224, 0.1) 30%, rgba(94, 34, 224, 0.6) 100%);
animation: fadeInOnLoad 4s ease forwards;
animation-delay: 5s;
}



.logo {
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  height: auto;

  opacity: 0;
  transform: translateY(20px); /* start slightly below */

  /* Combine two animations */
  animation: 
    fadeInOnLoad 3s ease forwards 1s,       /* fade animation with 1s delay */
    fadeInSlideUp 3s ease forwards 1s;      /* slide animation with 1s delay */
}

/* Fade only */
@keyframes fadeInOnLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Slide only */
@keyframes fadeInSlideUp {
  from { transform: translateY(20px); }
  to   { transform: translateY(0); }
}

.text-container{
padding-right: 10%;
padding-left: 10%;
    z-index:2;
    position:absolute;
    top:240px;
right:20px;
    bottom:80px;
    left:20px;
    text-align:center;
color:#fff;

    /* Hide scrollbar in Webkit (Chrome, Safari, Edge) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
    scroll-behavior: smooth;
    text-shadow: 0 0 7px rgba(94, 34, 224, 0.2);

     /* Mask for fading edges */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, white 10%, white 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-clip: content-box;

  mask-image: linear-gradient(to bottom, transparent 0%, white 10%, white 90%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;

      word-break: normal !important;
  overflow-wrap: normal  !important;
  white-space: normal;

}

.word {
  display: inline-block;
}

.signed{
font-size:1em;
}

.text-container small,
.text-container #typewriter-wrapper small{
  font-size:20px;
  line-height: 24px !important;
}

.text-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

ul, li{
list-style:none;
}

.btn-block{
  width:100%;
}
.btn-signup{
border: 0;
background:rgba(255,255,255,0.2);
color:#fff;
border-radius:30px;
font-family: Helvetica, Arial, Verdana;
font-size: 16px;
transition: 0.5s ease-in-out;
}
.btn-signup:hover,
.btn-signup:focus{
background: #8059D1;
color:#fff;
transition: 0.5s ease-in-out;
}
.form-control-signup:focus {
  color: #fff;
  background-color: transparent !important;
  border: none;
  /* border-bottom: 2px solid #fff !important; */
  outline: 0;
  box-shadow: none;
  transition: 0.5s ease-in-out;
}

.form-control-signup{
  background:transparent;
  border:0;
  /* border-bottom: 1px solid rgba(255,255,255,0.4); */
  border-radius:0;
text-align:center;
font-family: Helvetica, Arial, Verdana;
font-size:14px;
width:95%;
margin: 0 auto;
padding:4px;
}
.form-control-signup::placeholder{
  color:#fff !important;
  font-size:14px;
  opacity:0.75;
}
.form-control-signup:focus::placeholder {
    color: transparent !important;
}

.form-control,
.form-control:focus,
.form-control:valid,
.form-control:invalid {
    color: #fff; /* or any color you want */
}

#signup-confirmation{
  display:block;
  text-align:center;
font-family: Helvetica, Arial, Verdana;
font-size:14px;
letter-spacing:0;
}


.form-hidden {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 2s ease, transform 2s ease;
}

.form-visible {
  opacity: 1;
  transform: translateY(0);
}


.form-reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(.16,1,.3,1),
    filter 1.2s ease;
  transition-delay: 0.6s; /* soft pause after typing */
  width:100%;
  max-width:480px;
}

.form-reveal.visible,
.social-icons-holder.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.label{
color:#fff;
}

.social-icons-holder{
  opacity: 0;
  display:block;
  margin-bottom:40px;
}
.social-icon{
width:30px;
height:auto;
margin:5px;
display:inline-block;
opacity:0.7;
transition: opacity 0.3s ease-in-out,
}
.social-icon:hover{
  opacity:1;
  transition: opacity 0.3s ease-in-out;
}

/* MEDIA //////////////////////////////////////////////////////////// */

@media (max-width: 767px) {


html,
body{
    font-size:1.6em;
    font-weight:300;
    letter-spacing:1px;
    word-break: normal !important;
  overflow-wrap: normal !important; /* aka word-wrap */
  hyphens: none !important; 
}

.text-container{
  font-weight:400;
  padding-right: 0px;
padding-left: 0px;
    top:200px;
    right:40px;
    bottom:80px;
    left:40px;
    word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}

.text-container.signed{
  font-size:1em !important;
}

.text-container small,
.text-container #typewriter-wrapper small{
  font-size:16px;
  line-height: 20px !important;
}

} /* end media */