/**********************************************************/
/********************** GLOBAL CSS ***************************/
/**********************************************************/
@import url('https://fonts.googleapis.com/css?family=Dosis:400,700');
body{
	font-family: 'Dosis', sans-serif;
  	font-size: 20px;
  	margin: 0;
	padding: 0;
	color: #000;

	-webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
h2 {text-transform:uppercase; font-weight: 700;}
/**********************************************************/
/* PADDING CSS */
/**********************************************************/
.title-desc{
	padding: 50px 0 0 50px;
}
.sect6-content{
	padding: 5% 50px 0 50px;
	max-width: 75%;
}
.logo{
	padding: 20px 65px;
}




.fp-section.fp-table,
.fp-slide.fp-table{
	display: flex;
}

.black-line {
	border-bottom: 8px solid #000;
	width: 10%;
	margin: -4% 0 5% 0;
}


/**********************************************************/
/* TITLE DESCRIPTION CSS */
/**********************************************************/
.title-desc h2{
	font-size: 27px;
	font-weight: 700;
	position: relative;
	margin-bottom: 45px;
	margin-top: 150px;
	line-height: 42px;
	text-transform: uppercase;
}

.title-desc.long h2{
	margin-top: 20%;
}
.title-desc.last h2{
	margin-top: 50px;
}
.title-desc.long h2:before{
	top: 142px;
}
.title-desc h2:before{
	content: "";
	position: absolute;
	/*border-bottom: 8px solid #000;
	width: 60px;
	top: 55px; */
}

.title-desc p{
	line-height: 32px;
	font-weight: 400;
}

/**********************************************************/
/* GO TO CONTACT ARROW CSS */
/**********************************************************/
.goto-contact{
	padding-top: 8%;
	cursor: pointer;
}
.goto-contact a{
	font-size: 20px;
	text-decoration: none;
	font-weight: 700;
	color: #000;
}
.goto-contact span img{
	width: 15%;
	transition: all 500ms ease-out;
}
.goto-contact:hover span img{
	margin-left: 8px;
}

/**********************************************************/
/* NEXT PAGE SCROLL CSS */
/**********************************************************/
.arrowCta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    background-color: transparent;
    cursor: pointer;
    margin-right: auto;
    margin-left: auto;
    width: .2rem;
    transform: rotate(45deg);
    border: none;
    display: inline-table;
}
.arrowCta.first{
	bottom: 0px;
}
.arrowCta:after,
.arrowCta:before {
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    border-left: 0 solid transparent;
    border-top: 0 solid transparent;
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
    height: .75rem;
    width: .75rem;
    display: block;
    position: absolute;
}
@media only screen and (min-width: 40.0625em) {
    .arrowCta:after,
    .arrowCta:before {
        height: 1.5rem;
        width: 1.5rem;
        bottom: 4.125rem;
    }
}
.arrowCta:before {
    animation: top-arrow 2s infinite;
}
.arrowCta:after {
    animation: bottom-arrow 2s infinite;
}
.arrowCta--alt:after,
.arrowCta--alt:before,
.arrowCta:after,
.arrowCta:before {
    content: "";
}
.arrowCta--alt {
    color: #000
}

@keyframes top-arrow {
    0% {
        transform: translate(-6px, -6px)
    }
    100%,
    35%,
    90% {
        transform: translate(2px, 2px)
    }
}

@keyframes bottom-arrow {
    0% {
        opacity: 1;
        transform: translate(2px, 2px)
    }
    45% {
        opacity: 0;
        transform: translate(12px, 12px)
    }
    46% {
        opacity: 0;
        transform: translate(-12px, -12px)
    }
    100%,
    90% {
        opacity: 1;
        transform: translate(-6px, -6px)
    }
}

/**********************************************************/
/* SLIDER CSS */
/**********************************************************/
#myCarousel .carousel-indicators,
#myCarousel2 .carousel-indicators,
#myCarousel3 .carousel-indicators,
#myCarousel4 .carousel-indicators,
#myCarousel5 .carousel-indicators{
	bottom: 0;
}
#myCarousel .carousel-indicators li,
#myCarousel2 .carousel-indicators li,
#myCarousel3 .carousel-indicators li,
#myCarousel4 .carousel-indicators li,
#myCarousel5 .carousel-indicators li{
	border: 1px solid #000;
}
#myCarousel .carousel-indicators .active,
#myCarousel2 .carousel-indicators .active,
#myCarousel3 .carousel-indicators .active,
#myCarousel4 .carousel-indicators .active,
#myCarousel5 .carousel-indicators .active{
	background-color: #000;
	width: 11px;
	height: 11px;
}
#myCarousel .item img,
#myCarousel2 .item img,
#myCarousel3 .item img,
#myCarousel4 .item img,
#myCarousel5 .item img{
	/*width: 100%;
	height: 100%; */
}

/**********************************************************/
/* SIDE IMAGE CSS */
/**********************************************************/
.side-image img{
	width: 100%;
	height: auto;
}
.carousel-inner {height: 54vh;}

/**********************************************************/
/* ANIMATE CSS */
/**********************************************************/
.animated {
    /*animation-duration: 0.5s;
    animation-fill-mode: both;*/

	-webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

}
/*.fadeInUp {
    animation-name: fadeInUp
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}
@keyframes fadeInDown {
    0% {
        opacity: 1;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 0;
        transform: none
    }
}*/

.title-desc h2{
	animation-delay: .1s;
	transition: all 500ms ease-in-out;
}
.title-desc p{
	animation-delay: .4s;
	transition: all 500ms ease-in-out;
}
.goto-contact{
	animation-delay: .7s;
}
#contactForm,
.sect6-content{
	animation-delay: .10s;
}

/**********************************************************/
/********************** HEADER CSS ***************************/
/**********************************************************/
.header-section{
	position: fixed;
	z-index: 999;
}
.toggle-nav{
	position: relative;
}
a.header-lang{
	text-decoration: none;
    color: #000;
    position: absolute;
    right: 65px;
    top: 19px;
    font-weight: 700;
	font-size: 18px;
}
.main-header{
    background: #fff;
    margin: 0;
}
ul li {
    list-style-type: none
}
.caret-up {
    width: 0;
    height: 0;
    border-left: 4px solid rgba(0, 0, 0, 0);
    border-right: 4px solid rgba(0, 0, 0, 0);
    border-bottom: 4px solid;
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
}
.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    text-decoration: none;
    background: #B9B7B7 !important;
    color: #fff;
}
.dropdown-menu {
    padding: 0px 0px !important;
    left: 32% !important;
}
.stripe {
    height: 70px;
}
div.hamburger-box {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    cursor: pointer;
    z-index: 9999;
}
.hamburger-box.active span {
    display: none;
}
.hamburger-box span {
    color: #000;
    position: absolute;
    line-height: 50px;
    font-size: 16px;
    right: 50px;
    padding: 0 10px;
    display: inline-block;
    height: 50px;
    width: 105%;
}
div.hamburger-box .bun,
div.hamburger-box .meat {
    width: 27px;
    height: 3px;
    background-color: #000;
    position: absolute;
    transition: all 600ms ease-in-out;
    transform: translateZ(0);
}
div.hamburger-box .top {
    top: 14px;
}
div.hamburger-box .meat {
    top: 51%;
    margin-top: -4px;
}
div.hamburger-box .bottom {
    bottom: 17px;
}
div.shamburger-box:hover .top {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    width: 18px;
    top: 17px;
}
div.hamburger-box.active .top {
    transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
    width: 28px;
    top: 35%;
}
div.hamburger-box.active .top,
div.hamburger-box.active .bottom {
    transition: all 800ms ease-in-out;
}
div.shamburger-box:hover .meat {
    width: 22px;
    margin-left: -10px;
}
div.hamburger-box.active .meat {
    width: 0px;
    margin-left: 0px;
}
div.shamburger-box:hover .bottom {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 18px;
    bottom: 17px;
}
div.hamburger-box.active .bottom {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    width: 28px;
    bottom: 55%;
}
.super-container {
    position: relative;
    height: 100%;
}
.slide-container {
    position: fixed;
    text-align: center;
    height: 100%;
    right: 0;
    z-index: 999;
}
a.toggle {
    position: relative;
    top: 30px;
}
.menu {
    width: 380px;
    background-color: #000;
    position: absolute;
    top: 0;
    right: -380px;
    margin: 0;
    text-align: left;
    z-index: 99;
    height: 100%;
}
.menu.active {
    right: 0;
}
.menu a {
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    text-align: right;
}
.menu a:first-child {
    border-top: none;
}
.menu a:hover {
    color: #E4FE06;
}
.slide-container,
.menu {
    transition: right 300ms ease-out;
    -webkit-transition: right 300ms ease-out;
}
.menu-on .slide-container {
    left: -200px;
}
div.hamburger-box {
    z-index: 999;
    width: 50px;
    right: 0px;
}
.menu ul {
    background: #000;
    padding: 0px;
    margin-top: 45px;
    margin-right: 20px;
}
.dropbtn {
    color: #fff;
    padding: 12px 15px;
}
.dropdown-content {
    padding-left: 10px;
}
.hamburger-box span {
    right: 55px;
}
.hamburger-box.active {
    top: 0;
    background: #000;
    margin-right: 20px;
}
.hamburger-box.active .bun {
    background: #fff;
}
div.hamburger-box.active .top,
div.hamburger-box.active .bottom {
    right: 10px;
    top: 20px;
}
#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(250, 250, 250, .8);
    z-index: 1;
}
.social-li{
	float: right;
	position: relative;
	top: 10%;
	display: -webkit-inline-box;
	display: inline-flex;

}
.social-li a{
	float: right;
	right: 0;
	color: #fff;
}
.social-icons a{
	color: #000;
	float: left;
}

/**********************************************************/
/********************** SECTION 0 CSS ***************************/
/**********************************************************/
#sect0 {
	background-image: url(images/diamond.png);
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
}

#sect0 img{
	display: block;
	margin: 0 auto;
}
img.diamond {
    padding-top: 20%;
}
#mc_embed_signup{
	padding: 30px 0 0 50px;
}
#mc_embed_signup{
	position: relative;
	z-index: 99999;
}
#mc_embed_signup_scroll input[type="email"]{
	width: 100%;
	max-width: 80%;
    padding: 0 0 8px 10px;
    background: #D3D2CF;
    border: none;
}
input[type="email"]::-webkit-input-placeholder {
  	color: #333;
  	font-size: 10pt;
}
#mc_embed_signup_scroll input[type="submit"]{
	display: block;
	position: absolute;
	top: 33px;
	right: 90px;
	height: 35px;
	width: 60px;
	background: transparent;
	border: none;
	font-weight: 700;
	left: 70%;
}
.text-micro{
	text-align: center;
	margin-top: 60px;
	font-weight: 700;
	font-size:1rem;
}

/**********************************************************/
/********************** SECTION 5 CSS ***************************/
/**********************************************************/

.sect5-backbround {
	background-image: url(images/star-sky.jpg);
    /*background-position: center;*/
    background-repeat: no-repeat;
	height: 100%;
	/*transition: background 300ms ease-in 200ms;*/
}

.transparent {
	opacity:0;
}

/**********************************************************/
/********************** SECTION 6 CSS ***************************/
/**********************************************************/
.sect6-content .social-li {
	float: left;
}
.sect6-content .social-li a{
	text-decoration: none;
    color: #231F20;
    padding-right: 10px;
}

/**********************************************************/
/************** CONTACT SECTION *********************************/
/**********************************************************/
.form-control {background-color: #D3D2CF; border: none; box-shadow: none;}

#contactForm button[type="submit"] {
   /* position: relative;
	top: -60px;
    right: -10px;
    background: transparent;  */
    border: none;
    color: #000;
    font-weight: 700;
}

.sect5content {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    padding: 0 50px;
    font-weight: 400;
}
.sect5content a {color: #000;}

.text-success {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10%;
    width: 100%;
    text-align: left;
  /*height: 270px;
    top: 50%;
    position: absolute;
    padding-top: 10%; */
    z-index: 99999;
    background: #CAC8C2;
}
.form-group {
    margin-bottom: 1px;
}

/**********************************************************/
/********************** MEDIA QUERIES ***************************/
/**********************************************************/

@media screen and (min-device-width: 1440px) {
   body   { font-size:26px;  }
  .title-desc h2 { font-size: 2.3rem;}
  .title-desc p { font-weight: 400; max-width: 80%; }
  .title-desc.last { padding-top: 5%!important; font-size: 24px; /* max-width: 80%;*/ }
   #page2 .title-desc { padding: 0 0 0 50px;}
  .title-desc { padding: 20% 0 0 50px;}
  .text-micro  {margin-top: 30%;}
  .social-li { padding-top: 10%;}
  .arrowCta  { bottom: -40%;}
}

@media screen and (max-width : 640px) {
	 .title-desc {padding: 20%;}

}

@media screen and (max-device-width : 1440px) {
	#page2 .title-desc {padding: 0 0 0 50px; }
	.title-desc p {line-height: 30px; max-width:85%; }
	.title-desc.last p {max-width:95%!important;}
	.title-desc h2 { line-height: 30px; }
	.title-desc.last {padding-top: 5%; }
	.title-desc.last h2 { margin-top: 1%; }
	.goto-contact.last { padding-top: 4%; }
}








/**********************************************************/
/********************** SLIDER FADE ***************************/
/**********************************************************/

.fp-slidesContainer {
	width: 100%!important;
	transform: none!important;
}

.fp-slide {
	width: 100%!important;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 0;
	transition: all .7s ease-in-out;
}

.fp-slide.active {
	visibility: visible;
	opacity: 1;
	z-index: 1;
}


/** OTHERS **/

.full-image-background {
    /* Center and scale the image nicely */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	height: 100%;
}

.sect2-slide1 {
	background-image: url(images/2_1-noar-kids2gether.jpg);
}

.hide-content {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s 2s, opacity 2s linear;
}

.hide {
	display: none;
}

.left-content-box {
	position: absolute;
	opacity: 0;
	height: 100%;
}


/** ANIMATIONS **/

@-webkit-keyframes fadeOutUp {
    0% {
       opacity: 1;
       -webkit-transform: translateY(0);
    }
    100% {
       opacity: 0;
       -webkit-transform: translateY(-100px);
    }
 }

 @keyframes fadeOutUp {
    0% {
       opacity: 1;
       transform: translateY(0);
    }
    100% {
       opacity: 0;
       transform: translateY(-100px);
    }
 }

 .fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
 }


 @-webkit-keyframes fadeOutDown {
     0% {
        opacity: 1;
        -webkit-transform: translateY(0);
     }
     100% {
        opacity: 0;
        -webkit-transform: translateY(100px);
     }
  }

  @keyframes fadeOutDown {
     0% {
        opacity: 1;
        transform: translateY(0);
     }
     100% {
        opacity: 0;
        transform: translateY(100px);
     }
  }

  .fadeOutDown {
     -webkit-animation-name: fadeOutDown;
     animation-name: fadeOutDown;
  }


 @-webkit-keyframes fadeInDown {
    0% {
       opacity: 0;
       -webkit-transform: translateY(-100px);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateY(0);
    }
 }

 @keyframes fadeInDown {
    0% {
       opacity: 0;
       transform: translateY(-100px);
    }
    100% {
       opacity: 1;
       transform: translateY(0);
    }
 }

 .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
 }

 @-webkit-keyframes fadeInUp {
    0% {
       opacity: 0;
       -webkit-transform: translateY(100px);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateY(0);
    }
 }

 @keyframes fadeInUp {
    0% {
       opacity: 0;
       transform: translateY(100px);
    }
    100% {
       opacity: 1;
       transform: translateY(0);
    }
 }

 .fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
 }

#page1 {
	-webkit-transition: opacity 0.5s, background 300ms ease-in 200ms; /* property duration timing-function delay */
	-moz-transition: opacity 0.5s, background 300ms ease-in 200ms;
	-o-transition: opacity 0.5s, background 300ms ease-in 200ms;
	transition: opacity 0.5s, background 300ms ease-in 200ms;
}

.section0-body-background {
	background-color: rgb(202, 200, 194);
}

.section1-body-background {
	background-color: rgb(228, 254, 6);
}

.section2-body-background {
	background-color: rgb(255, 212, 201);
}

.section3-body-background {
	background-color: rgb(202, 200, 194);
}

.section4-body-background {
	background-color: rgb(141, 212, 214);
}

.section5-body-background {
	background-color: rgb(202, 200, 194);
	/** rgb(141, 212, 214) **/
}

#fullpage {
    padding-right: 0px !important;
}

.next-section {
	position: absolute;
	bottom: 50px;
    cursor: pointer;
	left:0;
	right:0;
}

.no-transition {

	/** Comente esse fonte para voltar ao normal a transição do section5 **/
	/*-moz-transition: width 0s, height 0.5s, transform 0.5s !important;
    -webkit-transition: width 0s, height 0.5s, transform 0.5s !important;
    transition: width 0s, height 0.5s, transform 0.5s !important;*/

	/** Descomente esse fonte para realizar uma transição da esquerda para direita **/
	/*-moz-transition: width 0s, margin 0.5s, padding 0.5s !important;
    -webkit-transition: width 0s, margin 0.5s, padding 0.5s !important;
    transition: width 0s, margin 0.5s, padding 0.5s !important;*/

}
/*** placeholder ***/
input[type="email" i]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color:  #999;
}
input[type="email" i]::-moz-placeholder { /* Firefox 19+ */
  color:  #999;
}
input[type="email" i]:-ms-input-placeholder { /* IE 10+ */
  color:  #999;
}
input[type="email" i]:-moz-placeholder { /* Firefox 18- */
  color:  #999;
}