@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
main {
  font-family: "Heebo", sans-serif;
}

img{
    width:95%;
    max-width:800px;
}

.landing {
  background-color: #FFFFFF;
  min-height: 100vh;
}

.big-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(61, 61, 61);
}

/* TEXT ANIM */

.intro {
  background: red;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-text {
  color: white;
  font-family: "Heebo", sans-serif;
  font-size: 2rem;
  text-align: center;
}

.hide {
  background: red;
  overflow: hidden;
}

.hide span {
  transform: translateY(100%);
  display: inline-block;
}

/* ------- */

/* SLIDER (OPTIONAL) */

.slider {
  background: #FF0000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
}
#social {
  padding: 150px 0 0 0;
  width: 100%;
  position: absolute;
  top: 60%;
  left: 50%;
  text-align: center;
}

.smGlobalBtn {
  /* global button class */
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 70px;
  box-shadow: 0 2px 2px #999;
  padding: 0px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-weight: normal;
  line-height: 2em;
  border-radius: 35px;
  -moz-border-radius: 35px;
  -webkit-border-radius: 35px;
}


/* facebook button class*/

.facebookBtn {
  background: #4060A5;
}

.facebookBtn:before {
  /* use :before to add the relevant icons */
  font-family: "FontAwesome";
  content: "\f09a";
  /* add facebook icon */
}

.facebookBtn:hover {
  color: #4060A5;
  background: #fff;
}


/* twitter button class*/

.twitterBtn {
  background: #00ABE3;
}

.twitterBtn:before {
  font-family: "FontAwesome";
  content: "\f099";
  /* add twitter icon */
}

.twitterBtn:hover {
  color: #00ABE3;
  background: #fff;
}


/* instagram button class*/

.instagramBtn {
  background: #E1306C;
}

.instagramBtn:before {
  font-family: "FontAwesome";
  content: "\f16d";
  /* add googleplus icon */
}

.instagramBtn:hover {
  color: #E1306C;
  background: #fff;
}

/* whatsapp button class*/

.whatsappBtn {
  background: #25D366;
}

.whatsappBtn:before {
  font-family: "FontAwesome";
  content: "\f232";
  /* add googleplus icon */
}

.whatsappBtn:hover {
  color: #25D366;
  background: #fff;
}

/* linkedin button class*/

.linkedinBtn {
  background: #0094BC;
}

.linkedinBtn:before {
  font-family: "FontAwesome";
  content: "\f0e1";
  /* add linkedin icon */
}

.linkedinBtn:hover {
  color: #0094BC;
  background: #fff;
}