@font-face {
    font-family: 'Museo Slab';
    src: url('./fonts/museo_slab.woff');
}

@font-face {
  font-family: 'Menlo Regular';
  src: url('./fonts/Menlo-Regular.ttf');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

.pointer {
  cursor: pointer !important;
}

a:visited {
  color: white;
}

a:link {
  color: white;
}

body {
  /*background-color: #c8fbff;*/
  /*background: linear-gradient(#fff, #929292);*/
  overflow: hidden;
}

.page-container {
  overflow-x: hidden;
}

.spinner-container {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #c8fbff;
  z-index: 9;
}

.spinner {
  margin: 100px auto;
  width: 80px;
  height: 100px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #ff6e9e;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  background-color: #9377a3;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  background-color: #f7cb18;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  background-color: #fc3541;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  background-color: #f2e8cd;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}

@keyframes loading {
    from {left: -200px; width: 30%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% { left: 50%;}
    95% {left: 120%;}
    to {left: 100%;}
}

nav {
  z-index: 999999999999999999999999999999999;
  width: 100vw;
  color: black;
  text-align: center;
  margin-bottom: 90px;
}

.contact {
  cursor: pointer;
}

nav h1 {
  font-family: 'Ranga';
  font-size: 40px;
  display: inline-block;
}

header {
  text-align: center;
  padding: 20px 0;
  margin-bottom: -90px;
}

.header {
  font-family: 'Ranga';
  font-size: 250px;
  margin: 0;
  color: #f35626;
  background-image: -webkit-linear-gradient(92deg,#f35626,#feab3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: change-color 10s infinite linear;
}


@-webkit-keyframes change-color {
  from {
    -webkit-filter: hue-rotate(0deg);
  }
  to {
    -webkit-filter: hue-rotate(-360deg);
  }
}

.subheader {
  font-family: 'Open Sans';
  margin: 0;
  z-index: 3;
}

.about {
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Lato';
  font-size: 17px;
  line-height: 1.8;
  height: 50px;
}

.hide-me {
  display: none;
}

.content-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  /*background-color: green;*/
}

section {
  width: 33%;
}

.left {
  /*background-color: red;*/
}

.right {
  /*background-color: blue;*/
}


.effect {
  position: relative;
  height: 400px;
  width: 96.5%;
  background-color: #F5F5F5;
  /*border: 2px solid black;*/
  border-radius: 10px;
  box-shadow: 0px 3px 10px #222;
  margin: 0 auto 3.5% auto;
  overflow: hidden;
}

#typed {
  height: 250px;
}

.effect-button {
  border: 1px solid white;
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Open Sans';
  transition: all .15s ease-in-out;
}

.effect-button:hover {
  transform: scale(1.05);
}

.effect:hover .effect-cover {
  display: block;
}

.effect-cover {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  /*display: block;*/
  display: none;
  text-align: center;
  animation: fadeIn 0.3s;
  border-radius: 10px;
  z-index: 1;
}

.effect-cover h1 {
  padding-top: 20px;
  padding-bottom: 10px;
  position: relative;
  font-size: 4vw;
}

.effect-cover p {
  font-size: 1.5vw;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.typed-example {
  display: inline-block;
  font-family: 'Open Sans';
  font-size: 25px;
  padding: 20px;
}

.typed-cursor{
  font-size: 25px;
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  margin-left: -20px;
}

@keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes blink{
  0% { opacity:1; }
  50% { opacity:0; }
  100% { opacity:1; }
}

.baffle {
  position: absolute;
  font-size: 5.5vw;
  font-family: 'Amiko';
  width: 100%;
  top: 50%;
  text-align: center;
  transform: translateY(-50%);
}

#baffle {
  height: 280px;
  background-color: #422FB1;
  color: white;
}

#particles {
  height: 450px;
}

#owlCarousel {
  height: 250px;
  text-align: center;
  position: relative;
  font-size: 30px;
  color: white;
}

.owl-carousel, .owl-stage, .owl-stage-outer, .owl-item, .owl-single {
  height: 100%;
  font-family: 'Oxygen';
  cursor: ew-resize;
}

.owl-stage-outer {
  border-radius: 10px;
}

.owl-single p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: 2vw;
}

#fa {
  height: 220px;
}

#fa > h1 {
  /*line-height: 200px;*/
  position: absolute;
  font-family: 'Museo Slab';
  width: 100%;
  text-align: center;
  font-size: 3.5vw;
  color: white;
  text-shadow: 4px 3px 0 #1d9d74, 9px 8px 0 rgba(0,0,0,0.15);
  top: 50%;
  transform: translateY(-50%);
}

#animate > h1 {
  text-align: center;
  font-family: 'Amiko';
  top: 50%;
  position: absolute;
  width: 100%;
  transform: translateY(-50%);
  font-size: 5.5vw;
  /*color: #ff9d31;*/
  /*color: #5dfec3;*/
  /*color: #1a1e3c;*/
  color: #36c9ae;
}

#animate {
  height: 270px;
}

.contact-wrapper {
  position: relative;
  height: 100vh;
}

.contact-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vw;
  /*background-color: red;*/
  text-align: center;
}

.contact-container > h1 {
  padding: 20px;
  font-family: 'Roboto';
  /*font-size: 4.25vw;*/
  font-size: 4vw;
}

.name-email-container input {
  font-family: 'Open Sans';
  width: 60%;
  height: 35px;
  padding: 5px;
  border-radius: 5px;
  /*border: 3px solid #fff;*/
  border-bottom: 3px solid #838383;
  border-top: none;
  border-left: none;
  border-right: none;
  display: block;
  margin: 0 auto 30px auto;
  font-size: 25px;
  background-color: rgba(0,0,0,0);
  color: black;
  outline: none;
}

textarea {
  width: 60%;
  display: block;
  margin: 0 auto 30px auto;
  border: 2px solid #838383;
  border-radius: 5px;
  font-family: 'Open Sans';
  line-height: 1.4;
  font-size: 25px;
  padding: 5px;
  background-color: rgba(0,0,0,0);
  color: black;
  outline: none;
}

form button {
  height: 70px;
  line-height: 70px;
  font-size: 25px;
  border-radius: 5px;
  width: 60%;
  /*border: 2px solid black;*/
  border: none;
  cursor: pointer;
  font-family: 'Open Sans';
  /*background-color: #5BC0EB;*/
  /*background-color: rgba(0,0,0,0);*/
  color: white;
  /*box-shadow: 0px 3px #222;*/
}

.contact-button {
  /*background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);*/
background: linear-gradient(141deg, #C33764, #1D2671);
background-size: 400% 400%;

-webkit-animation: AnimationName 8s ease infinite;
-moz-animation: AnimationName 8s ease infinite;
-o-animation: AnimationName 8s ease infinite;
animation: AnimationName 8s ease infinite;
}
@-webkit-keyframes AnimationName {
    0%{background-position:4% 0%}
    50%{background-position:97% 100%}
    100%{background-position:4% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:4% 0%}
    50%{background-position:97% 100%}
    100%{background-position:4% 0%}
}
@-o-keyframes AnimationName {
    0%{background-position:4% 0%}
    50%{background-position:97% 100%}
    100%{background-position:4% 0%}
}
@keyframes AnimationName {
    0%{background-position:4% 0%}
    50%{background-position:97% 100%}
    100%{background-position:4% 0%}
}

.fa-paper-plane-o {
  position: relative;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}

.contact-button:hover .fa-paper-plane-o{
  left: 7px;
  bottom: 7px;
}

footer {
  height: 100px;
  line-height: 100px;
  /*background-color: #dfabed;*/
  font-family: 'Roboto';
  text-align: center;
  font-size: 15px;
  color: black;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0,0,0,0.6);
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0,0,0,0.6);
}
:-ms-input-placeholder { /* IE 10+ */
  color: rgba(0,0,0,0.6);
}
:-moz-placeholder { /* Firefox 18- */
  color: rgba(0,0,0,0.6);
}

.wow { visibility: hidden; }

.new-effect {
  border: 5px dotted #ababab;
  background-color: white;
  color: #ababab;
  height: 200px;
  box-shadow: none;
  cursor: pointer;
}

.new-effect-text {
  font-family: 'Open Sans';
}

.new-effect:hover {
  border: none;
}

.add-new-effect-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.marquee3k {
  font-family: 'Open Sans';
}

#dragNdrop {
  background-color: #41BBD9;
}

.box {
  font-family: 'Open Sans';
  position: relative;
  border-radius: 10px;
  color: white;
  margin: 2%;
  border: 2px solid white;
  box-shadow: 0 3px #222;
}

.box p {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 1.3vw;
}

#box1 {
  height: 100px;
  width: 150px;
  background-color: #E6C229;
}

#box2 {
  height: 80px;
  background-color: #D11149;
}

#box3 {
  height: 50px;
  width: 70%;
  background-color: #6610F2;
  left: 20%;
}

#box4 {
  position: absolute;
  height: 90px;
  width: 180px;
  background-color: #F17105;
  right: 10%;
}

#coolors {
  height: 350px;
  position: relative;
}

.colors-container{
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
}

.color {
  height: 100%;
  width: 20%;
}

#dragula {
  overflow: hidden;
}

.drag-container-container {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  height: 100%;
  background-color: #d8d8d8;
  border-radius: 10px;
}

.drag-container {
  position: relative;
  width: 50%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.drag-container div {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  width: 80%;
  border: 1px solid black;
  margin-bottom: 10px;
  /*cursor: -webkit-grab;*/
  cursor: move;
  text-align: center;
  box-shadow: 0px 4px #222;
  border-radius: 5px;
  font-family: 'Roboto';
  font-size: 2.2vw;
  background-color: #d8d8d8;
}

.drag-container div:first-child {
  margin-top: 10px;
}

#gradient-animator {
  background: linear-gradient(138deg, #5bc0eb, #fde74c, #9bc53d, #e55934, #fa7921);
  background-size: 1000% 1000%;

  -webkit-animation: gradientAnimatorBg 8s ease infinite;
  -moz-animation: gradientAnimatorBg 8s ease infinite;
  animation: gradientAnimatorBg 8s ease infinite;
}

@-webkit-keyframes gradientAnimatorBg {
    0%{background-position:19% 0%}
    50%{background-position:82% 100%}
    100%{background-position:19% 0%}
}
@-moz-keyframes gradientAnimatorBg {
    0%{background-position:19% 0%}
    50%{background-position:82% 100%}
    100%{background-position:19% 0%}
}
@keyframes gradientAnimatorBg {
    0%{background-position:19% 0%}
    50%{background-position:82% 100%}
    100%{background-position:19% 0%}
}


/* MEDIA QUERIES */

@media screen
  and (min-device-width: 1600px)
  and (max-device-width: 1600px) {

  }


@media (min-width: 1600px) {
  .box p {
    font-size: 1vw;
  }
  .drag-container div {
    font-size: 1.5vw;
  }
  .effect-cover h1 {
    font-size: 3.2vw;
  }
  .effect-cover p {
    font-size: 1vw;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (min-width: 0px) and (max-width: 1100px){
  .content-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  section {
    width: 70%;
  }
  .effect-cover h1 {
    font-size: 7vw;
  }
  .effect-cover p {
    font-size: 2vw;
  }
  #animate h1 {
    font-size: 7.8vw;
  }
  #fa h1 {
    font-size: 6vw;
  }
  .owl-single p {
    font-size: 4vw;
  }
  .baffle {
    font-size: 8vw;
  }
  #new-effect-2 {
    display: none;
  }
  #dragNdrop {
    height: 420px;
  }
  .box p {
    font-size: 2vw;
  }
}

/*IF ON MOBILE*/
@media (max-device-width: 700px) {
  .content-container {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  section {
    width: 70%;
  }
  #new-effect-1 {
    display: none;
  }
  #new-effect-2 {
    display: block;
  }
  .effect {
    height: 400px !important;
  }
  .effect-cover h1 {
    font-size: 10vw;
  }
  .contact-container {
    width: 90vw;
  }
  .contact-container h1 {
    font-size: 10vw;
  }
  .name-email-container input, textarea, form button {
    width: 80%;
    margin-bottom: 50px;
  }
  #marquee3k {
    height: auto !important;
  }

}

