﻿/* a note on new font size properties 
vw, vh and vmin

These new properties allow you to scale font sizes according to the viewport dimensions, i.e.

    1vw is 1% of the viewport width
    1vh is 1% of the viewport height
    1vmin is the smallest of 1vw and 1vh

For example, assume your browser viewport is set to 1,000 x 1,200 pixels:

    1.5vw = 15px font size
    1.5vh = 18px font size
    1.5vmin = min(1.5vw, 1.5vh) = 15px font size

The new units will revolutionize responsive design — text on mobile devices often appears a little large because you’re holding the device closer than a monitor.
*/
/* phone */
@media screen and (min-width: 0px) and (max-width: 768px) {
.website-name {
	text-align: center;
}
.website-name h3 a, .website-name h3, .website-name a, .website-name {
	font-size: 7vw;
	margin-top: 0px;
}
.tagline h4 a, .tagline h4, .tagline a, .tagline {
	text-align: center;
	margin: 0px;
	margin-bottom: 10px;
}
.navbar .btn-navbar {
	width: 75%;
	margin-left: 15%;
	margin-right: 10%;
}
.cl-effect-1 a:before {
    content: "[";
    margin-right: 0px;
    transform: translateX(5px);
}
.cl-effect-1 a:after {
    content: "]";
    margin-left: 0px;
    transform: translateX(-5px);
}
.contactform {
	display:none; visibility:hidden;
}
span.icon-stack {
	padding-top: 0px;
}


#blur-component {
	visibility: hidden;
	display: none;
}
.divider-top {
	visibility: hidden;
	display: none;
}
.social-search {
	margin-top: 0px;
	margin-bottom: 20px;
}
.social-icon {
	width: 100%;
	text-align: center;
}
.social-icon a img {
	margin-left: auto;
	margin-right: auto;
	border: 0px;
	border-width: 0px;
	float: none;
}
#google-search {
	margin-top: 20px;
	width: 100%;
}
.secondary-horizontal-nav {
	float: none;
	text-align: center;
	margin-bottom: 5px;
}
.template .phone {
	float: none;
	text-align: center;
}
.blank {
	display: none!important;
}
span.icon-stack {
	font-size: 1.3em;
}
.pagination-centered img, img.pull-right {
	width: auto;
	max-width: 100%;
}
h1 {
	font-size: 25px;
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 14px;
}
h5 {
	font-size: 12px;
}
h6 {
	font-size: 11px;
}
.cbp-qtrotator blockquote {
	padding-right: 20px!important;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */;
	-moz-box-sizing: border-box; /* Firefox, other Gecko */;
	box-sizing: border-box;         /* Opera/IE 8+ */
}
}
/* tablet portrait */
@media screen and (min-width: 741px) and (max-width: 940px) {
.navbar .btn-navbar {
	width: 20%;
	margin-top: 50px;
	margin-right: 30px;
}
.social-icon-fontawesome {
	margin-top: 0px;
}
ul.footer-tablet {
	display: inline;
}
ul.footer-tablet li {
	display: inline;
}
.da-slider {
	height: 340px!important;
}
}
/* tablet landscape */
@media screen and (min-width: 949px) and (max-width: 1024px) {
.class {
	background: #ccc;
}
.social-icon-fontawesome {
	margin-top: 0px;
}
.da-slider {
	height: 340px!important;
}
}
@media screen and (min-width: 1024px) {
}
