/* Navigation */

.container-fluid {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 0px;
}

/* .navbar {
  background: rgba(0, 45, 66, 0.9) none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  height: 60px;
  left: 50%;
  margin-left: -46%;
  padding: 5px;
  position: fixed;
  top: 0;
  width: 92%;
  z-index:1;
}

*/

.navbar {
  background: rgba(255,255,255, 0.9) none repeat scroll 0 0;
  border: medium none;
  border-radius: 0;
  height: 80px;
  padding: 5px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.navbar-brand {
  float: left;
  font-size: 18px;
  height: 50px;
  line-height: 0px;
  padding: 0px;
}

.navbar-brand img {
  height: 70px;
}



body {
  font-size:18px;
  font-family: realist;
  color:#000;  
  overflow-x:hidden;
  -webkit-hyphens: none;
  -moz-hyphens:    none;
  -ms-hyphens:     none;
  hyphens:         none;
  background-color: #FAFAFA;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-bottom: 20px;
  margin-top: 0px;
  font-family: realist;
  text-transform: normal;
}

h1, .h1 {
	font-size: 40px;
	margin-bottom: 60px;
}

h4, .h4 {
	font-size: 20px;
	font-family: realist;
}

p {
	margin: 0 0 5px;
	padding: 0px 25px 25px 0px;
	font-size: 1em;
}

a, a:hover {
  color: #499271;
}

b, strong {
  font-family: realist;
  font-weight: normal;
}

.navbar-nav > li > a {
  padding-bottom: 15px;
  padding-top: 25px;
  padding-right: 0;
}

.navbar-default .navbar-nav > li > a {
  color: #000;
  text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover {
  background-color: transparent;
  color: #c99448;
}

.navbar-default .navbar-nav > li > a.nav-active {
  color: #c99448;
}

.navbar-toggle {
  border: 0px solid transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #000;
}

.navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle {
  background-color: transparent;
}

.navbar-collapse.collapse,.navbar-collapse.collapsing,.navbar-collapse.collapse.in {
  -webkit-transition: height 0.01s;
  -moz-transition: height 0.01s;
  -ms-transition: height 0.01s;
  -o-transition: height 0.01s;
  transition: height 0.1s;

}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
  border: medium none;
}

#next,#back-top {
  bottom: 0;
  padding-top: 0px;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 999;
}

/* Logo */

.logoleft {
	float: left;
	width: 50%;
}

.logoleft img, .logoright img {
	width: 100%;
}

.logoright {
	float: right;
	width: 50%;
}

.logoclaim {
	position: absolute;
	bottom: -5px;
	width: 100%;
	text-align: center;
	font-size: 16px;
}

.modal-body {
	position: relative;
	padding: 40px;
}

/* Content */

.mobilebg {
	display: none;
}

.content {
  margin-top: 0px;
}

.content-blockwrap {
	float: left;
	min-height: 50vh;
	padding-top: 60px;
	width: 100%;
	padding-bottom: 60px;
}

.content-block {
  margin: auto;
  max-width: 1000px;
  overflow:hidden;
}

/* Modal */

.modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 0px solid #999;
	border: 0px solid rgba(0, 0, 0, .2);
	border-radius: 0px;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.modal-header {
	border-bottom: 0px solid #e5e5e5;
}

.modal-dialog {
	width: 760px;
	margin: 30px auto;
}

.modal-body p, .modal-body h2, .modal-body a {
	color: #000 !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus, .btn-primary {
	color: #fff;
	background-color: #499271;
	border-color: #499271;
	padding-left: 0;
	padding-right: 30px;
}

/* Pfeil */

/* Scroll */

.pfeilwrapper {
	width: 100%;
	position: fixed;
	height: 15px;
	bottom: 42px;
	z-index: 0;
	text-align: center;
}

.pfeil {
	height: 35px;
	margin: auto;
	max-width: 100%;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 50px;
	z-index: 1;
}

.pfeil > a {
	color: #fff;
	display: block;
	font-size: 13px;
	height: 75px;
	width: 75px;
	letter-spacing: 1px;
	margin: auto;
	background-image: url(../images/pfeil.png) !important;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
}

.pfeil > a:hover {
	opacity: 0.6;
}

.bounce:focus {
	outline: none;
}

.bounce {
	-moz-animation: bounce 3s 3;
	-webkit-animation: bounce 3s 3;
	animation: bounce 3s 3;
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

/* Blockstyle */

.dummyblock {
  float: left;
  height: 50vh;
  width: 100%;
}

.logoblock {
	background-image: url("../images/hejverden-logo.svg");
	position: absolute;
	width: 200px;
	height: 80px;
	background-repeat: no-repeat;
	background-position: center center;
	left: 30px;
	top: 30px;
	padding: 0;
	background-size: contain;
}

.sloganblock {
	position: absolute;
	width: 100%;
	padding-bottom: 60px;
	bottom: 0;
	text-align: center;
	left: 0;
}

.block-content > h1 {
  font-family: realist;
  font-size: 60px;
  text-transform: none;
}

.weiter {
  clear: both;
  float: left;
  margin-top: 15px;
  text-align: center;
  width: auto;
  max-width:450px;
}

.weiter a {
  background: #000 none repeat scroll 0 0;
  border: 2px solid #c99448;
  bottom: 50px;
  color: #c99448;
  float: left;
  font-size: 16px;
  font-weight: normal;
  min-height: 34px;
  line-height: 31px;
  min-width: 190px;
  padding: 0 25px;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 10px 10px 0;
}

.weiter a:hover {
  background: #c99448;
  color: #fff;
}

.weiterg {
  clear: both;
  float: left;
  margin: 25px 0;
  text-align: center;
  width: auto;
}

.weiterg a {
  background: transparent none repeat scroll 0 0;
  border: 2px solid #fff;
  bottom: 50px;
  color: #fff;
  float: left;
  font-size: 16px;
  font-weight: normal;
  height: 32px;
  line-height: 32px;
  padding: 0 25px;
  text-decoration: none;
  text-transform: uppercase;
}

.weiterg a:hover {
  background: #fff;
  color: #c99448;
}

.content-block .span4 {
width:50%;
float:left;
}

.span4 ul {
  padding-left:0px;
  margin-bottom:0;
}

.span4 li {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px auto;
  border-top: 1px solid;
  font-size: 16px;
  list-style-type: none;
  margin-left: 0;
  padding-left: 25px;
  line-height: 30px;
}

/* weiss */

.block2 .span4 li ,.block4 .span4 li {
  background-image: url("../images/lipfeilw.png");
}

/* gelb */

.block3 .span4 li,.block5 .span4 li,.block6 .span4 li  {
  background-image: url("../images/lipfeilg.png");
}

.content-block .span5 {
  float: left;
  padding-bottom: 5px;
  padding-right: 5px;
  width: 20%;
}

.span5 > h2 {
  font-size: 22px;
}

.span5 > p {
  font-size: 16px;
}

.span5 img {
  width: 100%;
}

.content-block .span6 {
width:50%;
float:left;
}

.content-block .span6.right {
	float: right;
	padding: 0 40px;
}

.content-block .span8 {
width:75%;
float:left;
}

.content-block .span12 {
width:100%;
float:left;
}

.span12 h3 {
  font-family: realist;
  font-size: 18px;
}

.span4.left > p,.span6.left > p,.span8.left > p,.span12.left > p {
  padding: 0px 25px 25px 0px;
}

.span4.right,.span6.right,.span8.right,.span12.right {
  text-align: left;
  padding:0 40px;
}

.span6.right img {
	max-height: 360px;
}

/* Block 1 */

.content-blockwrap.block1 {
	background: url(../images/bg.png);
	background-size: 100%;
	background-position: top;
	color: #fff;
	background-repeat: no-repeat;
	height: 0;
	min-height: 0;
	padding-bottom: calc(49 / 190 * 100%);
	padding-top: 0;
}

.content-blockwrap.block1 .block-content {
  width: 460px;
}

.content-blockwrap.block1 .block-content > p {
  font-size: 32px;
}

.content-block.block1 h1 {
	line-height: 1;
	text-shadow: 6px 5px 10px #000;
	margin-bottom: 20px;
}

/* Block 1a */

.content-blockwrap.block1a h2 {
  color: #000;
}

.content-blockwrap.block1a {
  min-height: 50vh; 
}

.span6.right.quot {
  font-size: 35px;
  text-align: left;
}

.zitat {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  float: left;
}

img {
	vertical-align: middle;
	max-width: 100%;
}

/* Block 2 */

iframe {
  height: 60vh;
  width: 100%;
}

.content-blockwrap.block2 {
  background: #499271;
  min-height:50vh;
}

.content-block.block2 h2, .content-block.block2 p, .content-block.block2 a {
  color: #fff;
}

/* Block 3 */

.content-block.block3 > h2 {
  color: #c99448;
}

/* Block 4 */

.content-blockwrap.block4 {
  background: rgba(0, 0, 0, 0) url("../images/bcg_slide-3.jpg") repeat scroll center right / cover ;
}

.content-block.block4 > h2 {
  color: #fff;
}

/* Block 5 */

.content-blockwrap.block5 {
  background: rgba(0, 0, 0, 0) url("../images/bcg_slide-4.jpg") repeat scroll center left / cover ;
}

.content-block.block5 > h1 {
  color: #fff;
}  

.content-block.block5 > .span8, .content-block.block5 > .span12 {
  color: #fff;
  text-shadow: 0 0 30px rgba(0, 0, 0, 1);
}

.content-block.block5 .span8 > h2 {
  font-size: 22px;
}

/* Block 6 */

.content-blockwrap.block6 {
  background: #002d42;
  color:#fff;
}

.content-block.block6 > h1 {
  color: #fff;
}

.content-block.block6 > h2 {
  color: #c99448;
}

/* Block 7 */

.content-blockwrap.block7 {
  background: #c99448;
}

.content-block.block7 > h2 {
  color: #fff;
}

/* Block 8 */



/* Block Last */

.content-blockwrap.blocklast {
  background: #eeeeef;
  padding-bottom: 50px;
  padding-top: 100px;
  min-height: 50vh;
}

.content-block.blocklast > h1 {
  color: #c99448;
}

.footerwrap {
  background: #fff none repeat scroll 0 0;
  float: left;
  min-height: 350px;
  width: 100%;
}

.blocklast p {
  margin-bottom: 25px;
}

.blocklast p b {
  font-family: realist;
  font-weight: normal;
}

/* Content 1 */

.content-blockwrap.content1 {
  float: left;
  height: auto;
  min-height: 345px;
  padding-bottom: 15px;
  padding-top: 200px;
  width: 100%;
}

.contentbild {
  background: rgba(0, 45, 66, 0.9) none repeat scroll 0 0;
  min-height: 400px;
  overflow-x: hidden;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: -1;
}

.contentbild > img {
  height: 400px;
  max-width: 1920px;
  width: 1920px;
}

.content-block.content1 {
  max-width: 1170px;
}

*::before, *::after {
  box-sizing: border-box;
}

.content-blockwrap.content1 h1 {
  color: #fff;
  font-family: realist;
}

.content-blockwrap.content1 h2 {
  color: #c99448;
  font-size: 60px;
  margin-top: 20px;
}

.content-blockwrap.content1 .blockverlauf {
  height: 100%;
  position: relative;
  top: 0;
  width: 100%;
}

/* Content 1a */

.content-blockwrap.content1a {
  background: #eeeeef none repeat scroll 0 0;
  height: auto;
  min-height: 0;
  padding-bottom: 50px;
  padding-top: 50px;
}

/* content 2 */

.content-blockwrap.content2 {
  background: #fff none repeat scroll 0 0;
  padding-top: 50px;
  padding-bottom: 50px;
}

.content-block.content2 > h2 {
  color: #000;
}

.content-block.content2 .span5 > h2 {
  font-size: 22px;
  min-height: 50px;
}

/* Footer */

.footer, .footermenue {
  margin: auto;
  max-width: 1170px;
  padding: 15px 0 0;
}

.footer > img {
  height: 200px;
}

.footer h1 {
  font-size: 50px;
  line-height: 35px;
  color: #c99448;
  margin-bottom: 60px;
}

.footer-last {
  background: url("../images/bwe.jpg") no-repeat scroll 100px center;
  float: left;
  height: 200px;
  width: 100%;
}

.footermenue {
  text-align: right;
}

.footermenue a {
  font-size: 16px;
  text-transform:uppercase;
}



/* Responsive */

@media (max-width: 1280px) {

.container-fluid {
  padding: 0 5%;
}

.content-block,.footer,.footermenue {
  margin: auto;
  width: 100%;
  padding:0 5%;
}

.content-block .span4 {
  float: left;
  width: 50%;
}

.content-block.content2 .span5 {
  width: 50%;
}

.footer, .footermenue {
  margin: auto;
  max-width: 1170px;
  padding: 15px 5% 0px;
}

.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
  margin-left: 0;
}

.navbar-right {
  margin-right: 0px;
}

.collapse.navbar-collapse {
  padding-right: 0;
}
}

/* ipad portrait */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation: portrait) {
.content-blockwrap {
  min-height: 1024px;
}

.content-blockwrap.block1 .block-content {
  width: 570px;
}

.block-content > h1 {
  font-size: 40px;
}

.content-blockwrap.content1 h2 {
  font-size: 40px;
  margin-top:0;
}

.dummyblock {
  height: 400px;
}

.content-blockwrap.block1a {
  min-height: 240px;
}

.content-blockwrap.blocklast {
  min-height: 240px;
}

.navbar-collapse.collapse.in {
  height: 1024px!important;
}
}

/* ipad landscape */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation: landscape) {

  .content-blockwrap.block1 .block-content {
  width: 570px;
}

.block-content > h1 {
  font-size: 40px;
}

.content-blockwrap.content1 h2 {
  font-size: 40px;
  margin-top:0;
}

.dummyblock {
  height: 400px;
}

.content-blockwrap.block1a {
  min-height: 240px;
}

.content-blockwrap.blocklast {
  min-height: 240px;
}

.navbar-collapse.collapse.in {
  height: 768px!important;
}
}

@media (max-width: 1024px) {

.span4.right, .span6.right, .span8.right, .span12.right {
  padding-left: 0;
}

/* Navbar Start */

.navbar {
  background: rgba(255,255,255,0.9) none repeat scroll 0 0;
  left: 0;
  margin-left: 0;
  top: 0;
  width: 100%;
}

.navbar-header {
  height: 45px;
  width:100%;
}

.navbar-toggle {
  display:block;
  background: rgba(255,255,255,0.9) none repeat scroll 0 0;
  border-radius: 0;
  height: 80px;
  margin: 0;
  padding: 10px 20px;
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  z-index: 2;
}

.navbar-toggle.collapsed .icon-bar.up, .navbar-toggle.collapsed .icon-bar.mid, .navbar-toggle.collapsed .icon-bar.btm {
  border-radius: 0px;
  display: block;
  height: 2px;
  left: 0;
  position: relative;
  right: 0;
  top: 0;
  -moz-transform: rotate(0deg); /* Firefox 3.6 Firefox 4 */
  -webkit-transform: rotate(0deg); /* Safari */
  -o-transform: rotate(0deg); /* Opera */
  -ms-transform: rotate(0deg); /* IE9 */
  transform: rotate(0deg);
  width: 22px;
}

.navbar-toggle .icon-bar.up {
  height: 3px;
  left: 16px;
  position: absolute;
  top: 40px;
  -moz-transform: rotate(-45deg); /* Firefox 3.6 Firefox 4 */
  -webkit-transform: rotate(-45deg); /* Safari */
  -o-transform: rotate(-45deg); /* Opera */
  -ms-transform: rotate(-45deg); /* IE9 */  
  transform: rotate(-45deg);
  width: 18px;
  transition:height 0.1s;
}


.navbar-toggle .icon-bar.mid {
  display: none;
}

.navbar-toggle .icon-bar.btm {
  height: 3px;
  position: absolute;
  right: 14px;
  top: 36px;
  -moz-transform: rotate(45deg); /* Firefox 3.6 Firefox 4 */
  -webkit-transform: rotate(45deg); /* Safari */
  -o-transform: rotate(45deg); /* Opera */
  -ms-transform: rotate(45deg); /* IE9 */    
  transform: rotate(45deg);
  width: 19px;
  transition:height 0.1s;
}

.navbar-collapse.collapse.in {
  background: rgba(255,255,255,0.9) none repeat scroll 0 0;
  border: 0 none;
  height: 100vh!important;
  left: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 100px 0 0;
  position: fixed;
  width: 100%;
  top:0;
  z-index:-1;  
}

.navbar-collapse {
  box-shadow: none;
}

.navbar-collapse .navbar-right {
  display:none;}

.navbar-collapsing .navbar-right, .navbar-collapse.in .navbar-right {
  background: rgba(255,255,255,0.9) none repeat scroll 0 0;
  display: block;
  font-size: 30px;
  height: 50px;
  left: 0;
  margin: 0;
  padding: 0px;
  position: fixed;
  text-align: left;
  width: 100%;
}

.navbar-collapse .navbar-right li {
  border-bottom: 1px solid #000;
  width:100%;
}

/* Navbar End */

}

@media (max-width: 1000px) {
.content-block,.footer,.footermenue {
  margin: auto;
  width: 100%;
}
}

@media (max-width: 1000px) and (orientation: landscape) {
.dummyblock {
  height: 25vh;
}
}

@media (max-width: 670px) and (orientation: landscape) {

.block-content > h1 {
  font-family: realist;
  font-size: 30px;
  text-transform: none;
}

.content-blockwrap.block1 .block-content > p {
  font-size: 25px;
}
}


@media (max-width: 768px) {

  .content-blockwrap.block1 {
    background: url(../images/bg-mobil.png);
    background-size: cover;
    padding-bottom: 100vw;
  } 
	
h2, .h2 {
	font-size: 24px;
}

.content-blockwrap.block1a {
	min-height: 50vh;
}

.span6.left {
	margin-bottom: 40px;
}

.logoblock {
	background-image: url("../images/hejverden-logo.svg");
	position: absolute;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	left: 0;
	top: 30px;
	padding: 0;
	background-size: 200px;
	margin: auto;
}

.content-block .span6.right {
	padding: 0;
}

.modal-dialog {
	width: 100%;
	margin: 0px auto;
}

#next > img,#back-top > img {
  width: 35px;
}

img {
	max-width: calc(100% + 25px);
}

.mobilebg {
	padding-left: 0px;
	padding-right: 0px;
	width: auto;
	float: right;
	margin-right: -35px;
	display: block;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.content-blockwrap.block1 .block-content > p {
  font-size: 25px;
}

.content {
  margin-top: 0px;
}

.content-image {
  min-height: 260px;
}

.content-blockwrap {
  padding-top: 40px;
}

.content-blockwrap.blocklast {
  padding-top: 80px;
}

.content-block .span4,.content-block .span5,.content-block .span6,.content-block .span8,.content-block .span12 {
  width: 100%;
}

.span4.right, .span6.right, .span8.right, .span12.right {
  text-align: left;
  margin-bottom:20px;
  padding-left:0px;
}

.span6.right img {
  padding-left: 0px;
  padding-right: 0px;
  width: auto;
}

.content-block .span5 {
  float: left;
  width: 50%;
}

.content-block.content2 .span5 {
  width: 100%;
}

}


@media (max-width: 480px) {
	
h1, .h1 {
	font-size: 25px;
	margin-bottom: 30px;
}	

h2, .h2 {
	font-size: 20px;
}

p {
	margin: 0 0 5px;
	padding: 0px 0px 25px 0px;
}

.span6.right img {
	padding-left: 0px;
	padding-right: 0px;
	width: 100%;
	max-height: 100%;
}

.content-blockwrap.block1 .block-content {
  width: auto;
}

.block-content > h1,.block-content > h2 {
  font-size: 30px;
  font-weight: normal;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  font-weight: normal;
  margin-top:0;
}

.content-blockwrap.block1 .block-content > p {
  font-size: 18px;
}

.span6.right.quot {
  font-size: 24px;
  text-align: left;
}

.content-block > h1, .content-block > h2 {
  font-size: 35px;
  line-height:35px;
}

.content-image {
  min-height: 200px;
}
}

/* iphone 6Plus portrait */
@media all and (device-width: 414px) and (device-height: 736px) and (orientation:portrait) { 

.content-blockwrap {
  min-height: 736px;
}

.block-content > h1{
  font-size: 30px;
}

.content-blockwrap.content1 h2{
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 250px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 736px!important;
}
}

/* iphone 6Plus landscape */
@media all and (device-width: 414px) and (device-height: 736px) and (orientation:landscape) { 

.content-blockwrap {
  min-height: 414px;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 100px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 414px!important;
}
}

/* iphone 6 portrait */
@media all and (device-width: 375px) and (device-height: 667px) and (orientation:portrait) { 

.content-blockwrap {
  min-height: 667px;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 250px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 667px!important;
}
}

/* iphone 6 landscape */
@media all and (device-width: 375px) and (device-height: 667px) and (orientation:landscape) { 

.content-blockwrap {
  min-height: 375px;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 100px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 375px!important;
}
}

@media (max-width: 360px) {

.content-block > h1, .content-block > h2 {
  font-size: 30px;
  line-height: 30px;
}

}

/* iphone 5 portrait */
@media all and (device-width: 320px) and (device-height: 568px) and (orientation:portrait) { 

.content-blockwrap {
  min-height: 568px;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 150px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 568px!important;
}
}

/* iphone 5 landscape */
@media all and (device-width: 320px) and (device-height: 568px) and (orientation:landscape) { 

.content-blockwrap {
  min-height: 320px;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 50px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 320px!important;
}
}

/* iphone 4s Portrait */

@media all and (device-width: 320px) and (device-height: 480px) and (orientation:portrait){
.content-blockwrap {
  min-height: 480px;
}

.block-content > h1 {
  font-size: 34px;
}

.content-blockwrap.content1 h2 {
  font-size: 34px;
  margin-top:0;
}

.dummyblock {
  height: 150px;
}

.content-blockwrap.block1a {
  min-height: 240px;
}

.content-blockwrap.blocklast {
  min-height: 240px;
}

.navbar-collapse.collapse.in {
  height: 480px!important;
}
}

/* iphone 4s Landscape */

@media all and (device-width: 320px) and (device-height: 480px) and (orientation:landscape){
.content-blockwrap {
  min-height: 320px;
}

.block-content > h1 {
  font-size: 30px;
}

.content-blockwrap.content1 h2 {
  font-size: 30px;
  margin-top:0;
}

.dummyblock {
  height: 100px;
}

.content-blockwrap.block1a {
  min-height: 120px;
}

.content-blockwrap.blocklast {
  min-height: 120px;
}

.navbar-collapse.collapse.in {
  height: 320px!important;
}
}




