/*Media Genesis*/

/* http://meyerweb.com/eric/tools/css/reset/ */
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike,  sub, sup, tt, var, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;	outline: 0;	font-size: 100%;font: inherit;vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';	content: none;}

ins {text-decoration: none;}
del {text-decoration: line-through;}
table {border-collapse: collapse;border-spacing: 0;}

body{
	height: 100%;
	margin:0;
	font-family: 'Roboto', sans-serif;
}

/*---------- HEADER --------*/

header{
	width: 70px;
	height: 100%;
	position: fixed;
	z-index: 99;
	background-color: #ffffff;
	-webkit-box-shadow: -3px 1px 11px 5px rgba(0,0,0,0.25);
-moz-box-shadow: -3px 1px 11px 5px rgba(0,0,0,0.25);
box-shadow: -3px 1px 11px 5px rgba(0,0,0,0.25);
}

.logo{
	width: 55px;
	height: 65px;
	background: url('../images/logo.png') no-repeat 100%;
	display: block;
	float: left;
	
}
.menu{
	width: 40px;
	height: 40px;
	background: url('../images/menu.png') no-repeat 100%;
	display: block;
	float: left;
	margin: 50px 0 5px 15px;
}

.menu:hover{
	background: url('../images/menu-blue.png') no-repeat 100%;
}

.menu-label{
	margin-left: 20px;
    font-size: 14px;
    float: left;
    margin-bottom: 35px;
    color: #371143;
    font-weight: 600;
}

/****** DEVICES MENU*****/
.devices-menu{
	width: 100%;
	height: auto;
	float: left;
	margin-top: 25%;
	display: none;
}
.submenu-list{
	width: 100%;
	height: 65px;
	border-top: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
}

.list-desktop{
	border-bottom: 0;
}

.list-tablet{
	border-bottom: 0;
}

.list-phone{
	border-bottom: 1px solid #e1e1e1;
}


.desktop-icon{
	width: 100%;
	height: 45px;
	background: url('../images/computer.png') no-repeat center 80%;
	padding: 5px 0;
	float: left;
	/*transition: background-color 0.2s ease;*/
}

.desktop-icon:hover{
	background: url('../images/computer-blue.png') no-repeat center 80%;
}

.tablet-icon{
	width: 100%;
	height: 45px;
	background: url('../images/ipad.png') no-repeat center 80%;
	padding: 5px 0;
	float: left;
	/*transition: background-color 1s ease;*/
}

.tablet-icon:hover{
	background: url('../images/ipad-blue.png') no-repeat center 80%;
}

.phone-icon{
	width: 100%;
	height: 45px;
	background: url('../images/smartphone.png') no-repeat center 80%;
	padding: 5px 0;
	float: left;
	/*transition: background-color 0.2s ease;*/
}

.phone-icon:hover{
	background: url('../images/smartphone-blue.png') no-repeat center 80%;
}

.social-media-icon {
	position: fixed;
    float: left;
    width: 40px;
    height:40px;
    left: 15px;
    bottom:15px;
    background: url('../images/share.png') no-repeat 80%;
    display: block;
    transition: background-color 0.2s ease;
 }

 .social-media-icon:hover{
	background: url('../images/share-blue.png') no-repeat center 80%;
}




/*---------- END HEADER --------*/

/*------------SUBMENUS --------*/
.main-submenu{
	position: relative;
	width: 205px;
	height: 100%;
	position: fixed;
	background-color:#1c1c1c;
	z-index: 45;
	padding-right: 30px;
	-webkit-box-shadow: -3px 1px 11px 5px rgba(0,0,0,0.25);
	-moz-box-shadow: -3px 1px 11px 5px rgba(0,0,0,0.25);
	box-shadow: -3px 1px 11px 5px rgba(0,0,0,0.25);
	text-align: left;
	left: -205px;
	transition: all 0.5s ease;
}

.main-submenu
{
	left:-295px;
}

.main-submenu.open
{
	left:90px;
}

.submenu-wrap{
	width: 100%;
	height: auto;
	float: left;
	margin-top:250px;
}

.submenu-anchor-links{
	width: 100%;
	color: #F4F4F4;
	font-size: 18px;
	text-decoration: none;
	font-weight: 400;
	padding:10px 10px 10px 20px;
	float: left;
	line-height: 1.5;
}

.submenu-anchor-links:hover{
background-color: #91d7f0;}

/**** SOCIAL MEDIA MOBILE ****/

.social-media-mobile{
	width: 100%;
	height:60px;
	float: left;
	padding-bottom: 10px;
	display:none;
}

.social-wrap-mobile{
	width: 300px;
	height: auto;
	margin: 0 auto;
}

.social-icon-mobile{
	width: 50%;
	height:60px;
	float: left;

}

.fb-mobile{
	background: url('../images/facebook.png') no-repeat center;
	background-size: 50px;
}

.lk-mobile{
	background: url('../images/linkedin.png') no-repeat center;
	background-size: 50px;
}

.tw-mobile{
	background: url('../images/twitter.png') no-repeat center;
	background-size: 50px;
}



/***** END SOCIAL MOBILE ******/



/****** DEVICES SUBMENU*****/
.submenu-desktop{
	width: 160px;
	height: 100%;
	position: fixed;
	z-index: 50;
	color: #FFF;
	background-color:#1c1c1c;
	padding-top: 10%;
	margin-left: 90px;
	text-align: center;
	display: none;
}

.submenu-title{
	font-size: 16px;
	width: 100%;
	font-weight: 300;
	border-top: 1px solid #5E5E5E;

	padding-top: 10px;
	padding-bottom: 10px;
}

.resolution{
	color: #59b7ed;
	text-decoration-style: none;
	margin-top: 5px;
}

.device-name{
	color:#FFF;
	text-decoration: none;
}


.submenu-title:last-child{
	border-bottom: 1px solid #5E5E5E;
	padding-bottom: 10px;
}

.submenu-title:hover{
	background-color: #000;
	cursor: pointer;
}


/*------------END SUBMENUS --------*/

/*----------------FEEDBACK---------------*/

.feedback-button{
	width: 80px;
	height: 15px;
	text-align: center;
	font-size: 12px;
	color: #FFF;
	float: right;
	z-index: 99;background-color: #000;
	padding:12px;
	cursor:pointer;

}

.form-p{
	color: #FFF;
    padding: 20px 20px 10px 20px;
    line-height: 1.2;
    font-size: 15px;
}

.feedback-content{
	width: 250px;
	height: auto;
	position: fixed;
	z-index: 999;
	bottom: -354px;
	right: 0;
	display: block;
	transition: all 0.5s ease;
}

.feedback-content input{
	width: 85%;
	height: 40px;
	margin:10px 0 0 5%;
	font-size: 16px;
	padding-left: 5px;
}

.feedback-content input.error, .feedback-content textarea.error{
	border:2px solid #f00;
}

.feedback-content label.error
{
	display:none !important;
}

.feedback-content input.btn-submit
{
	width:100px;
}

.feedback-content textarea{
	font-family: 'OpenSans', sans-serif;
	width: 85%;
	height: 60px;
	margin:10px 0 0 5%;
	font-size: 16px;
	padding: 10px 0 10px 5px;
}

.feedback-wrap{
	float: left;
	background-color: #000;
	width: 100%;
	height: auto;
}

.btn-submit{
	font-size: 16px;
	color: #FFF;
	width: 100px;
	height: 40px;
	float: left;
	margin: 10px 10px 10px 5%;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#290e46+0,7d1129+100 */
	background: #290e46; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #290e46 0%, #7d1129 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #290e46 0%,#7d1129 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #290e46 0%,#7d1129 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#290e46', endColorstr='#7d1129',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
		overflow: hidden;
	cursor: pointer;
}

.btn-submit i{
	margin-right: 8px;
}

.btn{
	font-size: 16px;
	color: #FFF;
	width: 100px;
	height: 40px;
	float: left;
	margin: 10px 10px 10px 10px;
	border:none;
	cursor: pointer;
	background:#333;
}

.btn i{
	margin: 10px 5px 0 15px;
}





/********* END FEEDBACK ******/

/******** SOCIAL MEDIA *******/

.social-media-submenu{
	position: fixed;
	width: 90px;
	height: 150px;
	left: -90px;
	bottom: 0;
	z-index: 15;
	transition: all 0.5s ease;
}

.social-media-submenu.open
{
	left:90px;
}


.social-icon{
	width: 60px;
	height: 60px;
	float: left;
	background-color: #FFF;
	display: block;
	border-radius: 50px;
	margin-left: 10px;
	margin-bottom: 5px;
	-webkit-box-shadow: 3px 4px 16px 0px rgba(0,0,0,0.38);
	-moz-box-shadow: 3px 4px 16px 0px rgba(0,0,0,0.38);
	box-shadow: 3px 4px 16px 0px rgba(0,0,0,0.38);
}

.facebook{
	background: url('../images/facebook.png') center no-repeat;
	background-size: 85%;
}

.twitter{
	background: url('../images/twitter.png') center no-repeat;
	background-size: 85%;
}

.linkedin{
	background: url('../images/linkedin.png') center no-repeat;
	background-size: 85%;
}

.wrap{
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
}

.container {
	height: 100vh;

    margin-left: 70px;
    float: left;
    background-color:#DBD7DE;
	overflow:hidden;
}

.container-checker{
	position: relative;
	
	height: 100vh;
	margin-left:90px;
}

.checker{
	width: 100%;
	height: auto;

	background-color: #FFF;
	border-bottom: 1px solid #e1e1e1;
}

.checker h1{
	height:2vh;
	font-size: 13px;
	padding: 5px 0;
	margin-left: 30px;
	color: #555;

}
.checker-field{
	background-color: #FFF;
	width: 100%;
	height: 93vh;
	display:flex;
	align-items: center;

	
}
.checker-input{
    font-size: 18px;
    width: 60%;
    height: 35px;
    margin-left: 30px;
    border: none;
    border-bottom: 1px solid #404040;
    margin-top: 9px;
    
    float: left;
    outline: none
}

.checker-input{
	width: 63%;
	height: 35px;
	
	border-bottom: 1px solid #b9b9b9;
	margin-bottom: 10px;
}

.checker-stage{
	position: absolute;
	top: 81px;
	bottom: 0px;
	left: 0px;
	right: 0px;
}

.btn-go{
	width: 40px;
	height: 47px;
	cursor:pointer;
	background-color:#000000;
	color:#FFFFFF;
	border:0;
	margin-top: 7px;
	float: left;
	 border-radius:0;
	 -webkit-appearance:none;
	 text-align:center;
	 padding:0px;
}

.cover{
	position: relative;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
    float: left;
	/*padding-bottom:100px;*/
}

.cover-main{
	position: relative;
   	width: 100%;
   	height: auto;
   	float: left;
   	/*padding: 6% 0;*/
}

.cover h3{
	text-align: center;
	font-size: 25px;
 	font-weight: 200;
	color: #404040;
}
.cover h1{
	text-align: center;
	font-size: 65px;
 	font-weight: 200;

 	color: #3d0e3f;

}

.input-group-addon {
	position:absolute;
	margin-top:40px;
	display:inline-block;
	color:#80878c;
	width:40px;
	margin-left:-25px;
}

.responsive-field{
    font-size: 1rem;
    width: 100%;
    border: none;
    border: 1px solid #d3d3d3;
    margin-top: 23px;
    float: left;
    box-shadow:0 4px 6px rgba(0,0,0,.1);
    box-sizing:border-box;
    outline: none;
    padding:1.5rem 30px;
    border-radius:2px;


}

#blank_url{
	max-width: 80%;
	margin: 20px 10% 0 10%;
	font-size:25px;
	color:#FFF;
	background-color: #91d7f0;
	text-align:center;
	padding: 10px 15px;
	border-radius: 50px;

}

.btn-go{
	width: auto;
	height: 50px;
	cursor:pointer;
	background-color:transparent;
	color:#80878c;
	border:0;
	margin-top: 33px;
	float: left;
	font-size:16px;
	 border-radius:0;
	 -webkit-appearance:none;
	 text-align:center;
	 padding:0px;
	 margin-left:-25px;

}

.btn-go:focus {
	outline:none;
}

.btn-go:hover{
	width: auto;
	height: 50px;
	cursor:pointer;
	background-color:transparent;
	color:#91d7f0;
	border:0;
	margin-top: 35px;
	float: left;
	font-size:16px;
	 border-radius:0;
	 -webkit-appearance:none;
	 text-align:center;
	 padding:0px;


}

.rwd-form{
	width:40%;
	margin:0 auto;
	float:left;
	justify-content: center;
	padding:0 30px;
}

.rwd-form h1{
	font-size:1.5rem;
}

.rwd-devices{
	width: 60%;
	height: auto;
	/*margin: 20px 10% 0 15%;*/
	float: left;
	text-align: center;
}

.rwd-devices img{
	width: 100%;
    height: auto;
}

#blank_url{
	max-width: 80%;
	margin: 20px 10% 0 10%;
	font-size:25px;
	color:#FFF;
	background-color: #91d7f0;
	text-align:center;
	padding: 10px 15px;
	border-radius: 50px;

}


.about-responsive:before,
.about-responsive-2:before,
.about-us:before {
	transform:rotate(-3deg);
	transform-origin:3% 0;
	top:0;
	left: -25%;
	z-index:-1;
	width:150%;
	height:75%;
	background: inherit;
	content:'';
	position:absolute;
}

.about-responsive,
.about-us,
.non-https {
	position:relative;
	width: 100%;
	height: auto;
	float: left;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#290e46+0,7d1129+100 */
	background: #290e46; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #290e46 0%, #7d1129 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #290e46 0%,#7d1129 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #290e46 0%,#7d1129 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#290e46', endColorstr='#7d1129',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
	z-index:1;
}

.about-responsive {
	margin-top: -120px;
}

.about-responsive .wrap .about-rd {
	margin-bottom: 120px;
}

.about-us .wrap .about-rd {
	width: 66%;
	margin: 30px 16% 50px;
}

.about-us .wrap .building-image {
	float: right;
	margin-left: 5px;
	width: 40%;
	height: auto;
}

.about-us .wrap p {
	padding: 5px 45px;
}

/* .about-us .wrap {
	margin-top: -50px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 200;
	padding: 10px 45px 35px 45px;
	line-height: 1.4;
}

.about-us .wrap h2 {
	padding: 75px 45px 0 45px;
  font-size: 63px;
  color: #d55d88;
  font-weight: 300;
}

.about-us .wrap p {
	margin-bottom: 1.2em;
} */

.top-bg{
	width: 100%;
	height:auto;
	position: absolute;
	top: 0;
	z-index: 2;
}

.bottom-bg{
	width: 100%;
	position: absolute;
	bottom: -3px;
	z-index: 9;
}

/*.bottom-bg img{
	height: 152px;
} */

.devices-container{
	width: 35%;
	height: 760px;
	float: left;

}

.devices-illustration{
	position: absolute;
	z-index: -1;
    width: 800px;
    height: 950px;
    padding-top: 60px;
    opacity: 0.5;
    background: url(../images/MG_Phone_Mock_2019.png) no-repeat;
    background-size: 100%;
    background-position: -80px 75px;
}

.about-rd{
	width: 65%;
	height: auto;
	float: left;
}

.about-rd h2{
	padding: 75px 45px 0 45px;
	font-size: 63px;
	color:#d55d88;
	font-weight: 300;
}

.responsive-design-title{
	padding: 0 45px 10px 45px;
	font-size: 45px;
	color:#FFFFFF;
	font-weight: 500;
}



.about-rd p{
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 200;
	padding: 10px 45px 25px 45px;
	line-height: 1.3;
}

.about-rd p a{
	color:#ffffff;
}

.about-rd h3{
	padding: 10px 45px 25px 45px;
	font-size: 35px;
	color:#ffffff;
}

.about-rd p{
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 200;
	padding: 10px 45px 35px 45px;
	line-height: 1.4;
}

.about-responsive-2,
.about-us{
	width: 100%;
	height: auto;
	padding: 35px 0 120px;
	float: left;
	position: relative;
	z-index: 1;
}

.about-responsive-2 {
	background-color: #FFFFFF;
}

.about-responsive-3 {
	background-color: #CCCCCC;
}

.responsive-design-title-02{
	position: relative;
	font-size: 45px;
	color:#74102c;
	width: 100%;
	font-style: italic;
	text-align: center;
	font-weight: 300;
	float: left;
	margin-bottom: 25px;

}

.wrap-thumbnails{
  max-width: 1200px;
  padding-left: 55px;
  height: auto;
  margin: 0 auto;
}

.wrap-thumbnails h4{
	font-size: 45px;
	color:#361a6c;
	width: 100%;
	text-align: center;
	font-weight: 300;
	float: left;
	margin-bottom: 25px;
}

.column3{
	width: 29%;
	height: auto;
	min-height: 500px;
    float: left;
    margin-top: 25px;
    margin-right: 4.166666666666667%;
    margin-left:4.166666666666667;
    text-align: center;
    background-color: #ffffff;
	overflow: hidden;
	-webkit-box-shadow: 1px 2px 12px 0px rgba(50, 50, 50, 0.35);
	-moz-box-shadow:    1px 2px 12px 0px rgba(50, 50, 50, 0.35);
	box-shadow:         1px 2px 12px 0px rgba(50, 50, 50, 0.35);
	border-radius: 10px;

}

.column3 img{
	width: 100%;
	height: auto;
	float: left;
}

.column3 p{
	padding: 20px;
	line-height: 1.3;
	font-size: 18px;
	float: left;
}
.column3 p a{
	color: #000000;
}


.thumbnails p{
	padding: 20px;
	line-height: 1.3;
	font-size: 18px;
	float: left;
}

.rd-box-title{
	padding: 20px 0 0 0;
	line-height: 1.3;
	font-size: 22px;
	width: 100%;
	float: left;
	text-align: center;
}




.contact{
	position: relative;
	width: 100%;
	height:25px;
	float: left;
	background-color: #1b1b1b;
	text-align: center;
	z-index:1;
}

.contact-top-bg{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	z-index: 9;
}

.contact h3{
	font-size: 35px;
	text-align: center;
	color: #ffffff;
	margin-top: 25px;
}

.contact p{
	width: 60%;
	margin: 30px 20% 50px 20%;
	font-size: 18px;
	color: #FFFFFF;

	font-weight: 300;
	line-height: 1.3;
}

.contact p a{
color:#fff;
}

.contact hr{
	width: 250px;
	margin:30px 0;
}


.contact-form{
	width: 70%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 70px;

}

.contact-form input.error, .contact-form textarea.error
{
	border:2px solid #f00;
}

::placeholder{
	color:#b1b1b1;
}

.contact-form label.error
{
	display:none !important;
}

.contact form{
	width: 60%;
	height: auto;
	margin: 0 auto;
}

.contact span{
	float: left;
	color: #FFFFFF;
	padding: 10px 0;
}

.contact input{
	width:100%;
	height: 40px;
	font-size: 18px;
}

.contact textarea{
	width:100%;
	height: 100px;
	font-size: 18px;
}

.contact button{
	font-size: 16px;
	color: #FFF;
	width: 100px;
	height: 40px;
	float: left;
	margin: 10px 10px 10px 0;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#290e46+0,7d1129+100 */
	background: #290e46; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #290e46 0%, #7d1129 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #290e46 0%,#7d1129 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #290e46 0%,#7d1129 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#290e46', endColorstr='#7d1129',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
		overflow: hidden;
	cursor: pointer;
}


.credits{
	width: 100%;
	color: #FFFFFF;
	background-color: #111111;
	padding:5px 0;
	text-align:right;
	font-size:10px;
}

.credits a{
	color:#FFFFFF;
	text-decoration: none
}

/****** Hover.css (http://ianlunn.github.io/Hover/) *****/
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
.contact input.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
	font-size: 16px;
	color: #FFF;
	width: 100px;
	height: 40px;
	float: left;
	margin: 10px 10px 10px 0;
	border:none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#290e46+0,7d1129+100 */
	background: #290e46; /* Old browsers */
	background: -moz-linear-gradient(-45deg,  #290e46 0%, #7d1129 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg,  #290e46 0%,#7d1129 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg,  #290e46 0%,#7d1129 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#290e46', endColorstr='#7d1129',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
		overflow: hidden;
	cursor: pointer;
}
.hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
/****** Hover Setup *******/


/* non-https page specific */
.non-https .about-rd {
	margin-left: 14%;
	width: 75%;
}


/***************************
		MEDIA QUERIES
***************************/
/*------------------------------------*\
    Media Queries    1280 *
\*------------------------------------*/
@media only screen and (max-width: 1280px){
	.cover h1{font-size: 45px;}
}

/*------------------------------------*\
    Media Queries    1185 *
\*------------------------------------*/
@media only screen and (max-width: 1185px){
	.column3{min-height: 530px;}
}



/*------------------------------------*\
    Media Queries    999 *
\*------------------------------------*/
@media only screen and (max-width: 999px){


.checker{
	width: 100%;
	padding-left: 0;
	height: auto;
	float: left;
	background-color: #FFF;
	border-bottom: none;
	/*margin-top: 66px;*/
}



.checker-field{
	padding: 7px 0 3px 0;
	position: unset;
    /*margin-top: 70px;*/
    z-index: 98;
    height:88vh;
    flex-direction: column;
}
.checker h1 {position: fixed;  top: 0; padding-left: 10px; z-index: 999; margin:25px 0 0 85px; ;}
.checker-stage {
		top:132px;
}

.tablet-social-media-icon {
	position: fixed;
    float: left;
    width: 40px;
    height:40px;
    left: 25px;
    bottom:15px;
    background: url('../images/share.png') no-repeat 80%;
    display: block;
    transition: background-color 0.2s ease;
 }

 .tablet-social-media-icon:hover{
	background: url('../images/share-blue.png') no-repeat center 80%;
}


.column3{min-height: 576px;}
header{
	width: 100%;
	height: 66px;
}
.logo{margin-top: 0;}
.menu{
	float: right;
	margin: 15px 25px;
}

.main-submenu{
	left:0;
	width: 100%;
	height: auto;
	text-align: center;
	top: -410px;

}

.main-submenu.open{
	left: 0;
	top: 0px;
}




.submenu-wrap{
	width: 100%;
	height: auto;
	float: left;
	margin-top:0;
}

.submenu-anchor-links{
	width: 100%;
	color: #F4F4F4;
	font-size: 18px;
	text-decoration: none;
	font-weight: 400;
	padding:20px 0 20px 0px;
	float: left;
}

.social-media-mobile.open{
	display:block;
	padding-top:60px;
}

.social-wrap-mobile {
	margin-top: 10px;
}

.menu-label{
	display: none;

}

.devices-menu{
	width: auto;
	margin-top: 0;
	margin-left:45px;
}
.submenu-list{
	border-left: 1px solid #e1e1e1;
	display: inline;
}

.social-media-icon{
	display: none;
}

.tablet-social-media-icon{
	display: block;
}
.list-desktop{
	width: 66px;
	height: 66px;
	border-bottom: 0;
	border-top: 0;
	float: left;
}

.list-tablet{
	width: 66px;
	height: 66px;
	border-bottom: 0;
	border-top: 0;
	float: left;
}

.list-phone{
	width: 66px;
	height: 66px;
	border-bottom: 0;
	border-top: 0;
	float: left;
}

.list-rotate{
	width: 66px;
	height: 66px;
	border-bottom: 0;
	border-top: 0;
	float: left;
}

.desktop-icon {
    width: 60px;
    height: 55px;
}

.tablet-icon {
    width: 60px;
    height: 55px;
}

.phone-icon {
    width: 60px;
    height: 55px;
}

.rotate-icon {
    width: 60px;
    height: 55px;
}

.social-media-icon, .tablet-social-media-icon{
	position: relative;
    float: right;
    margin-top: 27px;
    margin-right: 20px;
}

.container {
    width: 100%;
    margin-left: 0;
    margin-top: 67px;
    height:100%;
}
.cover h1{
	font-size: 50px;
	padding: 0 20px;
}

.cover h3{
	padding: 0 20px;
}

.devices-illustration, .devices-container{display: none;}
.rwd-form {width:80%;padding-top:75px;}
.rwd-form h1 {text-align:center;}
.rwd-devices {width:100%;padding-top:70px;}
.about-rd{width: 100%; padding-bottom: 80px;}
.about-rd h2 {font-size:55px; padding: 130px 45px 0 45px;}
.wrap-thumbnails h4{font-size: 40px; }
.wrap-thumbnails{padding-left: 25px;}
.contact h3{margin-top:135px; }

.about-responsive-2
{
	padding-top:75px;
}

.about-us {
	padding-top: 0;
}

.about-us .wrap .about-rd {
	width: 100%;
	margin-left: 2%;
	margin-right: 2%;
	margin-top: 0;
}

.about-us .wrap .about-rd h2 {
	padding-top: 75px;
}

.about-us .wrap .building-image {
	float: none;
	margin: 20px 10%;
	width: 75%;
}


/* non-https page specific */
.non-https .about-rd {
	margin-left: inherit;
	width: inherit;
}

}

/*------------------------------------*\
    Media Queries    800 *
\*------------------------------------*/
@media only screen and (max-width: 800px){
.column3{
	width: 45%;
	height: auto;
	min-height: 500px;

    margin-top: 25px;
    margin-right: 4.166666666666667%;
    margin-left:4.166666666666667;
}
.cover-main{
   	/*padding: 8% 0;*/
}

.contact-form{width: 100%;}
.contact form{width: 80%;}
}

/*------------------------------------*\
    Media Queries    550 *
\*------------------------------------*/
@media only screen and (max-width: 550px){
.column3{min-height: 430px;}
}

/*------------------------------------*\
    Media Queries    500 *
\*------------------------------------*/
@media only screen and (max-width: 500px){
.column3{
	width: 80%;
	height: auto;
	min-height: auto;
    margin-top: 25px;
    margin-right: 10%;
    margin-left:8%;
}
}

/*------------------------------------*\
    Media Queries    480 *
\*------------------------------------*/
@media only screen and (max-width: 480px){

.contact {
	height:20px;
}
	/*.cover-main{padding-top: 50px;}*/
	.cover h1{font-size: 40px;}
	.responsive-field{     width: 100%;font-size: 16px; }
	.devices-menu{display: none;}

	.responsive-field {
		padding:1.5rem 22px;
	}

	.about-rd h2{padding: 100px 25px 0 25px; font-size: 45px;}
	.about-rd h3{padding: 10px 25px 25px 25px;}
	.about-rd p{padding:10px 25px 35px 25px; font-size: 18px;}
	.responsive-design-title{padding: 0 25px 10px 25px; font-size: 35px;}

	.column3{min-height: none;}
	.thumbnails{margin: 45px 10px 25px 25px;}
	.contact h3{margin-top:105px; padding: 0 10px; }
	.credits{font-size: 10px;}
	.feedback{right: 0;}
}

/*------------------------------------*\
    Media Queries    450 *
\*------------------------------------*/
@media only screen and (max-width: 450px){
.checker-input{width: 80%; margin-left: 15px;}
.checker h1{margin: 18px 0 0 75px; width: 150px;}
}

/*------------------------------------*\
    Media Queries    320 *
\*------------------------------------*/
@media only screen and (max-width: 320px){
.checker-input{width: 75%; margin-left: 15px;}
}

/*------------------------------------*\
    Media Queries    300 *
\*------------------------------------*/
@media only screen and (max-width: 300px){
.checker h1{display: none;}
}