﻿
/* Portrait */
@media only screen 
  and (min-device-width: 600px) 
  and (max-device-width: 1024px) 
  and (orientation: portrait) 
  and (-webkit-min-device-pixel-ratio: 1) {
	  
	  
	.cra-logo{
		width:260px;
		top: 120px;
	}
	
	.hero-content h1{
		font-size:60px;
		line-height:62px;
	}
	
	.hero-content h2{
		font-size:24px;
		line-height:28px;
	}
	
	.hero-content .btn,
	.hero-content .slider-label{margin-top:20px;}
	
	.hero-parallax-fullwidth,
	.page-hero {	height: 75%;}

}

/* Landscape */
@media only screen 
  and (min-device-width: 641px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape) 
  and (-webkit-min-device-pixel-ratio: 1) {
	  
	 .cra-logo{
		width:210px;
		top: 35px;
	}
	
	.hero-content h1{
		font-size:53px;
		line-height:55px;
	}
	
	.hero-content h2{
		font-size:22px;
		line-height:26px;
	}
	
	.hero-content .btn,
	.hero-content .slider-label{margin-top:20px;}
	
	.menu-list {margin-top:40px;}
	
	.menu-list ul li a {font-size:22px;}
	.menu-labels{top:335px;}
	
	.hero-parallax-fullwidth,
	.page-hero {	height: 100%;}


}