/* content animation */

/* #animated-content-down .content > h1 {
    -webkit-animation: content-down-h1 1.1s ease 0.5s normal forwards 1;
    animation: content-down-h1 1.1s ease normal forwards 1;
  }
  #animated-content-down .content > p{
    -webkit-animation: content-down-p 1.1s ease 0.40s normal forwards 1;
    animation: content-down-p 1.1s ease normal forwards 1;
  }
  #animated-content-down .content > form{
    -webkit-animation: content-down-form 1.1s ease 0.3s normal forwards 1;
    animation: content-down-form 1.1s ease normal forwards 1;
  }
  @keyframes content-down-h1 {
    0% {
        opacity: 0;
        transform:translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  @-webkit-keyframes content-down-h1 {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  @keyframes content-down-p {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    33% {
        opacity: 0.3;
    }
    66% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  @-webkit-keyframes content-down-p {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    33% {
        opacity: 0.3;
    }
    66% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  @keyframes content-down-form{
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  }
  @-webkit-keyframes content-down-form {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
  } */

/* CSS FOR HOMEPAGE */
.page-template-template-home-newversion .top-banner h1 {
	line-height: 100%;
	margin-bottom: 1.5rem;
}

.nt .top-banner .new-top-home-baner .content li, .nt .top-banner .new-top-home-baner .content p {
	font-size: 18px;
}

p, .jumbotron {
	margin-bottom: 0;
}

.content p {
	margin-bottom: 1rem;
}

.nt .top-banner .new-top-home-baner .content {
	padding: 60px 0 0 0;
	line-height: 1.3rem;
}

.page-template-template-home-newversion .top-banner .wrap.container-fluid {
	max-width: 1240px;
	padding: 0 20px;
}

@media (max-width: 1200px) {
	.nt .top-banner .new-top-home-baner .content li, .nt .top-banner .new-top-home-baner .content p {
		font-size: 16px;
	}
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
	.nt .top-banner .new-top-home-baner .content {
		padding: 40px 15px 0 15px !important;
	}
	
	.nt .top-banner .new-top-home-baner .content a.toggle-lead-contact-form {
		display: block;
		margin: 10px 0;
	}
	
	.page-template-template-home-newversion .top-banner .bg {
		height: 100%;
	}
	
	.page-template-template-home-newversion .top-banner .new-top-home-baner {
		margin-top: 0px;
	}
	
	.page-template-template-home-newversion .top-banner .signup-stats {
		padding: 0 20px;
		margin: 60px 0 0 0;
	}
	
	.page-template-template-home-newversion .top-banner .signup-stats .featured-customer-carousel {
		margin-top: 30px;
	}
	
	.page-template-template-home-newversion .top-banner .wrap.container-fluid {
		padding: 0;
	}
}

@media only screen and (max-width: 768px) and (min-width: 1px) {
	.page-template-template-home-newversion .top-banner .bg {
		height: 100%;
	}
	
	.nt .top-banner .new-top-home-baner .content {
		padding: 60px 0 0 0;
		line-height: 1.3rem;
	}
}

.nt .top-banner .new-top-home-baner .content a:hover {
	text-decoration: underline;
}

.nt .top-banner .new-top-home-baner .content a.toggle-lead-contact-form {
	margin-left: 10px;
}

footer.footer .social-icons.only-for-desktop a span {
	display: none;
}

.nt .footer a {
	color: rgba(255, 255, 255, .4);
	text-decoration: none;
}

.sticky {
	position: fixed !important;
	top: 0 !important;
	width: 100%;
}

/* ANIMATION HOMEPAGE */
#animated-content-down {
	-webkit-animation: animated-content-down 1.1s linear normal forwards 1;
	animation: animated-content-down 1.1s linear normal forwards 1;
}

@keyframes animated-content-down {
	0% {
		opacity: 0;
		transform: translateY(-30px);
		will-change: transform;
	}
	
	33% {
		opacity: .3;
		transform: translateY(-20px);
	}
	
	66% {
		opacity: .7;
		transform: translateY(-10px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-webkit-keyframes animated-content-down {
	0% {
		opacity: 0;
		transform: translateY(-30px);
		will-change: transform;
	}
	
	33% {
		opacity: .3;
		transform: translateY(-20px);
	}
	
	66% {
		opacity: .7;
		transform: translateY(-10px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

#animated-content-up {
	-webkit-animation: animated-content-up 1.1s linear normal forwards 1;
	animation: animated-content-up 1.1s linear normal forwards 1;
}

@keyframes animated-content-up {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	
	33% {
		opacity: .3;
		transform: translateY(20px);
	}
	
	66% {
		opacity: .7;
		transform: translateY(10px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-webkit-keyframes animated-content-up {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	
	33% {
		opacity: .3;
		transform: translateY(20px);
	}
	
	66% {
		opacity: .7;
		transform: translateY(10px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}
