﻿/* 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: 740px) {
.website-name {
	text-align: center;
}
.website-name h3 a, .website-name h3, .website-name a, .website-name {
	font-size: 10vw;
	margin-top: 0px;
}
.tagline h4 a, .tagline h4, .tagline a, .tagline {
	text-align: center;
	margin:0px;
}
.navbar .btn-navbar {
	width: 75%;
	margin-left: 15%;
	margin-right: 10%;
}
#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;

}
.off-canvas-top-menu {
    position: relative;
    text-align:center;
}
.blank {
	display:none!important;
}
#dashboard {
	padding-left:10px;
	padding-right: 10px;
}

}
/* tablet portrait */
@media screen and (min-width: 741px) and (max-width: 940px) {
.navbar .btn-navbar {
	width: 20%;
	margin-top:50px;
	margin-right:30px;
}
}
/* tablet landscape */
@media screen and (min-width: 949px) and (max-width: 1024px) {
.class {
	background: #ccc;
}
}
