

/* TARGET ANCHOR */
:target {
    display: block;    
    position: relative;     
    top: -60px;
    visibility: hidden;
}



/* -------------------- */
/* BASIC SETUP */
/* -------------------- */

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	background-color: #fff;
	color: #555;
	font-family: "Montserrat", "sans-serif";
	font-size: 20px;
	font-weight: 300;
	scroll-behavior: smooth;
}

body{
	background-color: #fff;
}


section::before,
section::after {
  position: relative;
}

strong{
	font-weight: 900;
}

/* -------------------- */
/* REUSABLE COMPONENTS */
/* -------------------- */

.row {
	max-width: 1080px;
	margin: 0 auto;
}

section {
	padding: 48px 0 32px;
	font-size: 20px;
	font-family: "Montserrat", "sans-serif";
	text-rendering: optimizeLegibility;
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

h1, h2{
	margin: 0px;
}

h1, h2{
	font-family: "Montserrat", "sans-serif";
}

.submit-button{
	display: inline-block;
    padding: 10px 30px;
    font-size: 20px;
    font-family: "Montserrat", "sans-serif";
    text-rendering: optimizeLegibility;
    font-weight: 300;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.4s ease-in-out;
    text-shadow: none;
    box-shadow: none;
    margin: 0 50px 0 0;
}

h2:after{
	display: block;
	height: 2px;
	background-color: #c5c5c5;
	content: " ";
	width: 32%;
	margin: 16px auto 18px auto;
}

h1{
	font-size: 300%;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	word-spacing: 4px;
}

h2{
	font-size: 180%;
	font-weight: 100;
	word-spacing: 2px;
	text-align: center;

	/* Q
	padding-top: 48px;
	Q */
}



h3{
	font-size: 110%;
	font-weight: 100;
	padding-top: 16px;
	padding-bottom: 8px;
}


.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.padding-box{
	padding: 32px 16px 16px 16px;
}

.font-size-80{
	font-size: 80%;
}


/* -------------------- */
/* LINKS */
/* -------------------- */

section a:link, section a:visited {
	color: #555;
	text-decoration: none;
	border-radius: 16px 0;
	border-bottom: 2px solid #ddd;
	padding: 0px 6px 1px 0px;
	transition: color 0.2s ease-in-out, border-bottom 0.2s ease-in-out, border-radius 0.6s ease-in-out, padding 0.2s ease-in-out;
}

section a:hover, section a:active{
	color: #e67e22;
	text-decoration: none;
	border-radius: 8px 0;
	border-bottom: 2px solid #e67e22;
	padding: 0px 6px 1px 0px;

}



/* -------------------- */
/* BUTTONS */
/* -------------------- */

.btn:link, .btn:visited, input[type=submit]{
	display: inline-block;
	padding: 10px 30px;
	font-size: 20px;
	font-family: "Montserrat", "sans-serif";
	text-rendering: optimizeLegibility;
	font-weight: 300;
	text-decoration: none;
	border-radius: 4px;
	transition: background-color 0.4s ease-in-out;
	text-shadow: none;
	box-shadow: none;
	margin: 0 50px 0 0;
}

.btn-full:link, .btn-full:visited{
	background: #000000cf;
	border: 1px solid #fff;
	color: #fff;
}

.btn-ghost:link, .btn-ghost:visited{
	border: 1px solid #000;
	color: #fff;
	background: rgba(180, 180, 180, .26);
}





.btn:hover, .btn:active{
	background: rgba(0, 0, 0, .2);
	border: 1px solid rgba(255, 255, 255, 1);
}


.btn-form:link, .btn-form:visited, input[type=submit]{
	border: 1px solid rgb(168 168 168);
	color: #fff;
	background: rgb(136 136 136 / 50%);
}


.btn-form:hover,
.btn-form:active,
input[type=submit]:hover,
input[type=submit]:active{
	background: rgb(17 17 17);
	border: 1px solid rgb(88 88 88);
}






/* -------------------- */
/* PARAGRAPHS */
/* -------------------- */

.long-copy {
	line-height: 145%;
	width: 70%;
	margin: 0 15%;
}

/* -------------------- */
/* icons */
/* -------------------- */

.iconFont-big {
	color: #b1b1b1;
	font-size: 360%;
	display: block;
}

.iconFont-small {
	display: inline-block;
	text-align: center;
	color: #fb954a;
	font-size: 120%;
	padding-right: 4px;

	/*to align text and icons*/
	line-height: 120%;
	vertical-align: middle;
	margin-top: -4px;
}


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


.mainbit-nav-bar{
	border-width: 0;
	border-style: none;
	border-color: transparent;
	border-image: none;
	width: 100%
}

.mainbit-apple-logo{
	max-width: 38%;
	margin: 0 0 10px 0;
}

.mainbit-apple-logo-form{
	max-width: 30%;
	margin: 0 0 10px 0;
	margin-left: 20%;
}

.site-header {
  padding: 30px 0 20px;
}

.header-wrapper{
}


/* -------------------- */
/* HERO */
/* -------------------- */



.hero{
	background-image:
	linear-gradient(
 	rgba(0, 0, 0, 0.1),
 	rgba(0 ,0 ,0, 0.4),
 	rgba(0 ,0 ,0, 1)),
 	url(img/hero.jpg);
	
	background-size: cover;
	background-position: top;
	height: 70vh;
    background-attachment: fixed;
}

.hero-text-box{
	position: absolute;
	width: 1080px;
	top: 66%;
	left: 50%;
	-webkit-transform: translate(-50%, -60%);
	        transform: translate(-50%, -60%);
}

.hero-img-box{
	position: absolute;
	width: 1080px;
	top: 25%;
	left: 100%;
	-webkit-transform: translate(-50%, -60%);
	        transform: translate(-50%, -60%);
}

.mainbitACR{
	width: 400px;
	height: auto;
}


.hero-text-box h1{
	color: #fff;
	margin-bottom: 20px;
	font-family: "Montserrat", "sans-serif";
	font-size: 220%;
}

.error{
	font-size: 72%;
}


.logo {
	height: 54px;
	width: auto;
	float: left;
	margin: 20px 0;
}

.logo-black {
	display: none;
	height: 50px;
	width: auto;
	float: left;
	margin: 5px 0;
}


/*  Main navigation  */


.nav-bar-black{
	background-color: rgba(0, 0, 0, 1);
	box-shadow: 0 3px 4px rgb(0 0 0 / 30%);
}

.main-nav{
	float: right;
	list-style: none;
	margin-top: 50px;
}

.main-nav li{
	display: inline-block;
	/* Q margin: 10px 10px; */
	padding: 0px 10px;
}

.main-nav li a{
	padding: 6px 20px 2px 22px;
	border-radius: 4px 4px 2px 2px;
}

.main-nav li a:link, .main-nav li a:visited {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 70%;
	border-bottom: 1px solid #7d7d7d;
	transition: color 0.4s ease-in-out;
}

.main-nav li a:hover, .main-nav li a:active {
	color: #949494;
	
	border-bottom: 2px solid #ddd;

}

/*  Mobile navigation  */

.mobile-nav-icon{
	float: right;
	margin-top: 12px;
	cursor: pointer;
	display: none;
}


.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}




/*  Sticky navigation  */

.sticky{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
	z-index: 9999;
}

.sticky .main-nav{
	margin: 18px 0;
}



.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
	color: #000;
	transition: font-weight color 0.4s ease-in-out;
}

.sticky .main-nav li a:hover,
.sticky .main-nav li a:active {
	color: #888;
	font-weight: 900;
	border-color: #000;
}


.sticky .logo-black {display: block;}
.sticky .logo {display: none;}


/* -------------------- */
/* SECTION FEATURES */
/* -------------------- */


.section-features h3{
	color: #737373;
	font-weight: 400;
}

.section-features p{
	line-height: 145%;
}


/* -------------------- */
/* SECTION PRODUCT IMAGE */
/* -------------------- */




.section-product-image{
	padding: 0;
}


.product-showcase{
	list-style: none;
	width: 100%;
	margin: 0;
}

.product-showcase li{
	display: block;
	float: left;
	width: 25%;
}

.product-photo{
	width: 100%;
	margin: 0;
	overflow: hidden;
	background: #2c333e5e;
}

.product-photo img{
	opacity: 0.6;
	width: 100%;
	height: auto;
	-webkit-transform: scale(1.40);
	        transform: scale(1.40);
	transition: opacity 0.2s ease-in-out, -webkit-transform 0.5s cubic-bezier(.66,.05,.33,1.46);
	transition: transform 0.5s cubic-bezier(.66,.05,.33,1.46), opacity 0.2s ease-in-out;
	transition: transform 0.5s cubic-bezier(.66,.05,.33,1.46), opacity 0.2s ease-in-out, -webkit-transform 0.5s cubic-bezier(.66,.05,.33,1.46);

}

.product-photo img:hover {
	-webkit-transform: scale(1.16);
	        transform: scale(1.16);
	opacity: 1;
}


/* -------------------- */
/* SECTION PRODUCT DETAIL */
/* -------------------- */


.section-product-one-detail{
	background-color: #eee;
}

.section-product-one-detail p{
	font-size: 16px;
}


.section-product-two-detail{
	background-color: #eee;
	padding-bottom: 80px;
}

.section-product-two-detail p{
	font-size: 16px;
}


.product-one-box{

}

.product-two-box{

}

.product-one-box:first-child{
	text-align: right;
	padding-right: 3%;
	margin-top: 30px;
}

.product-two-box:first-child{
	text-align: left;
	padding-right: 3%;
	margin-top: 30px;
}

.product-one-box:last-child{
	padding-left: 1%;
	padding-right: 5%;
	margin-top: 60px;
}

.product-two-box:last-child{
	padding-left: 1%;
	padding-right: 5%;
	margin-top: 10px;
}

.product-one-data{
	display: inline-block;
	display: -webkit-inline-box;
	margin-bottom: 36px;
}

.product-two-data{
	display: inline-block;
	display: -webkit-inline-box;
	margin-bottom: 36px;
}

.product-one-data div{
	color: #4a4a4a;
	border: 2px solid #b6b6b6;
	display: inline-block;
	display: -webkit-inline-box;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	text-align: center;
	padding: 5px;
	margin-right: 10px;
	float: left;
	font-size: 160%;
}

.product-two-data div{
	color: #4a4a4a;
	border: 2px solid #b6b6b6;
	display: inline-block;
	display: -webkit-inline-box;
	border-radius: 50%;
	height: 35px;
	width: 35px;
	text-align: center;
	padding: 5px;
	margin-right: 10px;
	float: left;
	font-size: 160%;
}

.product-image-V, 
.product-image-H{
	width: 100%;
}

.product-image-H{
display: none;
}


.btn-app:link{
	border: 0;
}

.btn-app img{
	height: 40px;
	width: auto;
	margin-right: 8px;
	padding: 0;
}




/* -------------------- */
/* SECTION PARALAX */
/* -------------------- */

.section-paralax {
    
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.8)),
    url(img/back-paralax.jpg);
    
    background-size: cover;

    /* Q
    padding: 0 48px 0px;
	Q */

    color: #ffffff;
    background-attachment: fixed;
}

.section-form {
    
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.8));
    
    background-size: cover;

    /* Q
    padding: 0 48px 0px;
	Q */

    color: #ffffff;
    background-attachment: fixed;
}


.section-paralax h1, .section-paralax h2{
	color: #fff;
}

.section-paralax blockquote{
	color: #fff;
	font-size: 72%;
	padding: 2%;
	padding-bottom: 32px;
	font-style: normal;
	line-height: 145%;
	position: relative;
	margin-top: 24px;
}

.section-paralax blockquote:before{
	content: "";
	font-size: 600%;
	display: block;
	position: absolute;
	top: 0px;
	left: -4px;
}

.section-paralax cite{
	font-size: 90%;
	display: block;
}



.section-paralax img{
	height: 70px;
	width: auto;
	margin-top: 16px;
	border-radius: 24px 0;
	border-bottom: 3px solid #e67e22;
}



/* -------------------- */
/* SECTION FORM */
/* -------------------- */


.contact-form{
	width: 84%;
	margin: 0 auto 160px;
	font-size: 70%;
}

.label-form{
}

input[type=text],
input[type=email],
select,
textarea{
	width: 100%;
	padding: 4px 18px;
	border-radius: 2px;
	border: 0px;
	border-left: 1px solid #ddd;
	border-bottom: 2px solid #9a9a9a;
	background-color: #f7f7f7;
}

select{
	height: 32px;
}

textarea{
	height: 100px;
}

input[type=checkbox]{
	margin: 10px 5px 10px 0;
}

*:focus {outline: none;}




/*FOOTER MAINBIT*/

.section-copyright{
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
}

section a:link, section a:visited {
	color: #007acc;
	text-decoration: none;
	border-radius: 0;
	border-bottom: none;
	padding: 0;
	margin: 0;
}

section a:hover, section a:focus {
  text-decoration: none;
  color: #FFFFFF;
}


/* -------------------- */
/* ANIMATIONS */



.js--animation-on-scroll-1,
.js--animation-on-scroll-2,
.js--animation-on-scroll-3,
.js--animation-on-scroll-4,
.js--animation-on-scroll-9,
.js--animation-on-scroll-10,
.js--animation-on-scroll-11,
.js--animation-on-scroll-12,
.js--animation-on-scroll-13,
.js--animation-on-scroll-14,
.js--animation-on-scroll-15,
.js--animation-on-scroll-16,
.js--animation-on-scroll-17 {
	opacity: 0;
}

.js--animation-on-scroll-1.animated,
.js--animation-on-scroll-2.animated,
.js--animation-on-scroll-3.animated,
.js--animation-on-scroll-4.animated,
.js--animation-on-scroll-9.animated,
.js--animation-on-scroll-10.animated,
.js--animation-on-scroll-11.animated,
.js--animation-on-scroll-12.animated,
.js--animation-on-scroll-13.animated,
.js--animation-on-scroll-14.animated,
.js--animation-on-scroll-15.animated,
.js--animation-on-scroll-16.animated,
.js--animation-on-scroll-17.animated {
	opacity: 1;
}



