﻿// Extra small devices (portrait phones, less than 576px)
No media query since this is the default
 
// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {

}
 
// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {

}
 
// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
}
 
// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
}
 
// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) {
}

@media screen and (max-width: 820px) {
  .rc_nav a {display: none;}
  .rc_nav a.icon {
    float: right;
    display: block;
    width: 60px;
    margin-left:20px;
    padding-left:20px;
  }
}
@media screen and (max-width: 1095px) {
	.editors .col-2 { flex:30% }
	.editors .col-6 { flex:100% }	
}
@media screen and (max-width: 820px) {
  .rc_nav.responsive {position: relative; top: 73px;}
  .rc_nav.responsive .icon {
    position: fixed;
    right: 0;
    top: 0;
  }
  .rc_nav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }

}
@media screen and (max-width: 1200px) {
	.contentBarWhite { padding-right: 20px; padding-left: 20px;    }	
	.subscribeBarW { padding-right: 20px; padding-left: 20px;    }		
	.introBox { margin:50px 30px 30px 50px;}
	.footerBar {padding:20px 20px;}
	.quote:nth-child(odd) { margin-right:auto;}
	.quote:nth-child(even) { margin-left:auto;}
	h4.subTitle {margin-left:20px;}
	
}
@media screen and (max-width: 1000px) {
	.colPort { flex:50%; }	
}
@media screen and (max-width: 670px) {
	h4.subTitle {margin-left:20px;}
	h4.subTitle span {display:block; margin-left:10px;}
}
@media screen and (max-width: 560px) {
	.samplePic {display:none}
	#samp .col-6 { flex: 100%; }
	#foot .col-6 { flex: 100%; }
	.footEM,
	.footFB,	
	.footCo,
	.footAdr,
	.footPH { text-align:center;}
	.footPH { margin-top:15px;}	
}
@media screen and (max-width: 506px) {
	.colPort { flex:100%; }	
}

@media screen and (max-width: 768px) {
	.twoColumn { column-count: 1;   }
	.hideLess768 {display:none;}
	.expandLess768 { flex: 100%; }
	
}

}