@charset "utf-8";
/* CSS Document */


/* Next Section < Script >  ---------------------------------------------*/
/*

$('.next-section .go-to-about').click(function() {
	$('html,body').animate({scrollTop:$('#about').offset().top}, 1000);
});
$('.next-section .go-to-subscribe').click(function() {
	$('html,body').animate({scrollTop:$('#subscribe').offset().top}, 1000);
});
$('.next-section .go-to-contact').click(function() {
	$('html,body').animate({scrollTop:$('#contact').offset().top}, 1000);
});
$('.next-section .go-to-page-top').click(function() {
	$('html,body').animate({scrollTop:$('#page-top').offset().top}, 1000);
});

*/

/* Next Section < Script > End  ------------------------------------------*/
	
.pattern {
    background: rgba(0,0,0,.5) url(../images/pattern.png);
    padding-top: 100px;
}	
	
.next-section {
    text-align: center;
}

.next-section a {
	position: absolute;
	z-index: 99;
	display: inline-block;
    cursor: pointer;
    
    width: 56px;
    height: 56px;
	/*margin: 70px;
    padding-top: 45px;*/
	bottom: 15px;
	
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    background-color: rgba(0,0,0,0.25);
    box-shadow: 0 0 1px rgba(255,255,255,0.2);
	
}

.next-section a:hover {
	background-color: rgba(29,32,136,1);
}
.next-section a span {
	position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
	
	top: 10px;
	/*left: 35px;*/
    border: 5px solid #fff;
	border-left-color: transparent;
	border-top-color: transparent;
    opacity: 1;    
    
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}
