html, body {
  margin:0;
  padding:0;
}
body {
  background:#fff;
  color:#333;
  -webkit-font-smoothing: antialiased;
}
img, iframe, table, video {
   max-width:100%;
}
.clear {
    clear:both;
}
.vertically_centered {
  position:absolute;
  top:50%;
  right:0;
  left:0;
  -webkit-transform:translateY(-50%);
  -ms-transform:translateY(-50%);
  transform:translateY(-50%);
}
.fullyCentered {
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
}
.no_select {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.half, .third, .forth, .fifth, .sixth {
  display:inline-block;
  vertical-align:top;
  position:relative;
}
.half {
  width:50%;
}
.third {
  width:33.333%;
}
.forth {
  width:25%;
}
.fifth {
  width:20%;
}
.sixth {
  width:16.666%;
}
.bg_image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mwidth_1440,
.mwidth_1280,
.mwidth_1024,
.mwidth_960,
.mwidth_768,
.mwidth_512,
.mwidth_480,
.mwidth_320 {
  margin:0 auto;
}
.mwidth_1440 {
  max-width:1440px;
}
.mwidth_1280 {
  max-width:1280px;
}
.mwidth_1024 {
  max-width:1024px;
}
.mwidth_960 {
  max-width:960px;
}
.mwidth_768 {
  max-width:768px;
}
.mwidth_512 {
  max-width:512px;
}
.mwidth_480 {
  max-width:480px;
}
.mwidth_320 {
  max-width:320px;
}
/* header css */

/*loader stuff*/
#loading {
    background: rgba(0,0,0,0.7);
    width: 260px;
    padding: 20px 10px;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 11;
    text-align:center;
}
#loading .loading_text {
    display:block;
    color: white;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 10px;
}
#loading .spinner {
  margin:0 auto;
  width: 70px;
  text-align: center;
}
#loading .bounce {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
}
#loading .bounce.normal_animation {
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loading .bounce1.specific_animation {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#loading .bounce2.specific_animation {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
#messages_wrap {
  position: fixed;
  left: 0;
  right: 0;
  top:0;
  z-index: 9999;
  background:rgba(0,0,0,0.4);
}
.message {
  color: #eee;
  width: 768px;
  max-width:96%;
  padding: 15px;
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 15px;
  border-radius: 4px;
  font-size: 18px;
  text-align: center;
  box-sizing:border-box;
}
.message.success {
  background:rgb(28, 152, 60);
}
.message.error {
  background:rgb(187, 23, 23);
}

/*bread crumb stuff*/
#breadcrumbs {
  white-space:nowrap;
  padding:15px;
  box-sizing:border-box;
  padding-left:0;
}
.breadcrumb {
  display:inline-block;
  vertical-align:top;
  font-size:16px;
  margin-right:15px;
}
/*end crumb stuff*/

/*form stuff*/
form {
  margin:0 auto;
  max-width:768px;
  padding:15px;
  padding-top:0;
  position:relative;
  box-sizing:border-box;
}
label {
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 15px;
  margin: 20px 0 10px;
  text-align:left;
}
input, select, textarea {
  display: block;
  width: 100%;
  padding:8px;
  margin-bottom:1%;
  box-sizing: border-box;
  border:0;
  border: solid 1px #eee;
  background: none;
  background: #fbfbfb;
  margin-bottom: 15px;
  font-size: 20px;
  color:#656565;
}
select {
  margin-left:0;
  width:auto;
}
input, select, textarea, button {
  outline:none;
}
form .half {
  margin:0 1% 1%;
  display:inline-block;
  vertical-align:top;
  width:48%;
}
form input:focus, form textarea:focus, form select:focus {
  border:solid 1px #ccc!important;
  box-shadow:none;
  color:#7b7b7b;
}
.g-recaptcha {
  margin:15px auto;
  text-align:left;
  overflow:hidden;
}
.g-recaptcha > div {
  width:160px!important;
}
.g-recaptcha iframe {
  width: 160px;
  border-right: solid 1px #d3d3d3;
}
.g-recaptcha div {
  margin:8px auto;
}
.g-recaptcha div {
  margin:0px auto;
}
.required.currently_missing {
  border:solid 1px red!important;
}
._gotcha {
  height: 0!important;
  overflow: hidden!important;
  border: 0!important;
  padding: 0!important;
} 
.submit_button {
  display: block;
  padding: 10px 30px;
  font-size: 21px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-sizing: border-box;
  border: solid 2px rgba(0,0,0,0);
  margin: 15px auto;
  font-weight: bold;
} 
.rounded_button {
  border-radius:30px;
}
.max_300 {
  width:290px;
  max-width:100%;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.float_right {
  float:right;
}
.float_left {
  float:left;
}

/* article body css */
#article, #content {
  box-sizing:border-box;
  position:relative;
}
#article {
  font-size:0;
}
.has_max_width {
  max-width:1440px;
  margin:0 auto;
}
#content.white_panel {
  padding: 15px;
  background: #fff;
}
@media(min-width:420px) {
  #content.white_panel {
    padding: 10px;
  }
}
@media(min-width:560px) {
  #content.white_panel {
    padding: 10px 20px;
  }
}
@media(min-width:768px) {
  #content.white_panel {
    padding: 20px 30px;
    margin:0px;
    min-height:440px;
  }
}


.l_justify {
  text-align:left;
}
.c_justify {
  text-align:center;
}
.r_justify {
  text-align:right;
}

/* #1 Small Mobile: 320px - 410px */
h1, h2, h3, h4, h5, h6 {
  margin:0;
  padding:15px 0;
  font-family: 'Lexend Deca', sans-serif;
}
h1 {
  font-size:31px;
  padding:0;
}
h2 {
  font-size:26px;
}
h3 {
  font-size:22px;
} 
h4 {
  font-size:19px;
}
h5 {
  font-size:17px;
}
h6 {
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:2px;
}

/* #2 Large Mobile: 411px - 589px */
@media only screen and (min-width: 411px) and (max-width: 589px)  {
  h1 {
    font-size:33px;
  }
  h2 {
    font-size:28px;
  }
  h3 {
    font-size:24px;
  } 
  h4 {
    font-size:21px;
  }
  h5 {
    font-size:19px;
  }
}

/* #3 Small Tablet: 590px - 767px */
@media only screen and (min-width: 590px) and (max-width: 767px)  {
  h1 {
    font-size:35px;
  }
  h2 { 
    font-size:30px;
  }
  h3 {
    font-size:26px;
  } 
  h4 {
    font-size:23px;
  }
  h5 {
    font-size:21px;
  }
}

/* #4 Large Tablet: 768px - 1024px */
@media only screen and (min-width: 768px) and (max-width: 1024px)  {
  h1 {
    font-size:37px;
  }
  h2 {
    font-size:32px;
  }
  h3 {
    font-size:28px;
  } 
  h4 {
    font-size:25px;
  }
  h5 {
    font-size:23px;
  }
}

/* #5 Small Computer: 1025px - 1280px */
@media only screen and (min-width: 1025px) and (max-width: 1280px)  {
  h1 {
    font-size:39px;
  }
  h2 {
    font-size:34px;
  }
  h3 {
    font-size:30px;
  } 
  h4 {
    font-size:27px;
  }
  h5 {
    font-size:25px;
  }
}

/* #6 Large Computer: 1280px and UP */
@media(min-width:1280px) {
  h1 {
    font-size:41px;
  }
  h2 {
    font-size:36px;
  }
  h3 {
    font-size:32px;
  } 
  h4 {
    font-size:29px;
  }
  h5 {
    font-size:27px;
  }
}


#short_desc,
p,
span,
a,
li {
  font-size: 19px;
  line-height: 31px;
}
a {
  text-decoration:none;
}
p {
  margin:15px 0;
}
ul {
  list-style-position: inside;
  padding:8px 20px;
  padding-right:0;
  box-sizing:border-box;
}   
li {
  margin:8px 0;
}
.sticky_top_full {
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:99;
}

/* cart */
#cart_items {
  display:none;
  position:fixed;
  border-radius:6px;
  background:white;
  top:0;
  right:0;
  z-index:10;
  width:768px;
  max-width:94%;
  text-align: center;
  box-shadow:0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
#cart_items.cart_shown {
  transform:translate(-50%,-50%);
  top:50%;
  left:50%;
  right:auto;
}
#cart_title {
  margin: 0;
  position:relative;
  height: 50px;
  background: #fff;

  border-bottom:solid 1px #eee;
  border-top-right-radius:6px;
  border-top-left-radius:6px;
}
#cart_title, #cart_title span {
  letter-spacing: 1px;
  font-size: 22px;
  line-height: 50px;
}
#cart_title i {
  position:absolute;
  width:50px;
  height:50px;
  line-height:50px;
  font-size:30px;
  text-align:center;
  right:0;
  color:#ccc;
  border-top-right-radius:3px;
  cursor:pointer;
}
#item_grid {
  max-height:400px;
  overflow-y:auto;
  padding:10px;
  padding-bottom:0;
  font-size:0;
  background:#fbfbfb;
}
#cart_empty {
  font-size: 20px;
  text-transform: uppercase;
  padding: 25px;
  letter-spacing: 2px;
}
.cart_item {
  width: 49%;
  margin-bottom: 2%;
  margin-right: 2%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 6px;
  display: inline-block;
  vertical-align: top;
  box-shadow:0 1px 1px 0 rgba(0,0,0,0.10), 0 3px 1px -3px rgba(0,0,0,0.10), 0 1px 5px 0 rgba(0,0,0,0.1);
}
.cart_item:nth-of-type(2n+2) {
  margin-right:0;
}
.cart_item img {
    float: left;
    margin: 10px;
    max-width: 20%;
    border-right: solid 1px #eee;
    padding-right: 10px;
}
.cart_item i {
    float: right;
    margin: 7px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}
.cart_item i:hover {
  color:#f26b6b;
}
.cart_item .item_name {
  font-size: 19px;
  padding-top: 15px;
  margin-bottom: 0;
  text-align: left;
}
.cart_item .item_options {
  text-align: left;
  list-style: none;
  margin: 0; 
  padding: 4px 0;
}
.cart_item .item_options li {
  font-size:11px;
}
.cart_item .item_price_info {
  clear: both;
  border-top: solid 1px #eee;
  margin: 0 10px;
}
.cart_item .item_price_info div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 14px;
  margin: 6px 0;
  line-height: 30px;
  border-right: solid 1px #eee;
  box-sizing: border-box;
}
.cart_item .item_price_info div.last {
  border-right:0;
}
.cart_item .update_quantity {
    display: inline-block;
    vertical-align: bottom;
    width: 50px;
    height: 29px;
    padding: 0;
    padding-left: 8px;
    font-size: 17px;
    text-align: center;
    margin: 0;
}
#checkout {
  border-radius:6px;
  border-top-right-radius:0px;
  border-top-left-radius:0px;
}
#checkout, #checkout span {
  color:white;
  font-size:20px;
  text-transform:uppercase;
  letter-spacing:1px;
}
@media only screen and (max-width: 768px)  {
  .cart_item {
    width:100%;
    display:block;
    margin-right:0;
    margin-bottom:15px;
  }
}
#overlay {
    display: none;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    cursor: pointer;
}
/* end cart */


/* start section */
.section {
  padding:15px;
  border-radius:3px;
  margin-top:15px;
  background:white;
  position:relative;
  box-sizing:border-box;
}
.section_title {
  padding-top:0;
  margin-top:0;
  font-weight:normal;
  font-size:23px;
}
.section_content {
  font-size:17px;
}
.section .submit_button {
  float:right;
}
.toggle_section {
  display:none;
}
/* end section */


/* embed responsively */
.embed-wrap {
  max-width:768px;
  width:94%;
  margin:20px auto;
}
.embed-container { 
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background:#333;
}
.embed-container:after {
  content:"Loading Video";
  color:white;
  font-size:22px;
  position:absolute;
  top:50%;
  left:50%;
  padding:15px 20px;
  box-sizing:border-box;
  background:black;
  text-align:center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius:8px;
  box-shadow:0 4px 20px rgba(0,0,0,0.42)
}
.embed-container iframe,
.embed-container object,
.embed-container embed { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index:3;
}
/* end embed responsively */

/* brand services grid */
._bs_columns {
  font-size:0;
  width:100%; 
  max-width:100%;
}
._bs_one {
  width:100%;
  margin-bottom:2%;
  position:relative;
}
._bs_one._bs_noguts {
  margin:0;
}
._bs_two, ._bs_three, ._bs_four, ._bs_five, ._bs_six {
  display:inline-block;
  overflow:auto;
  position:relative;
  margin:0 1% 2% 1%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
._bs_two {
  width:48%;
}
._bs_two._bs_noguts {
  width:50%;
  margin:0;
}
@media (max-width: 480px) {
  ._bs_two._bs_shrink {
    width:100%;
    margin-left:0;
    margin-right:0;
  }
}
._bs_three {
  width:31.333%;
}
._bs_three._bs_noguts {
  width:33.333%;
  margin: 0;
}
@media (max-width: 480px) {
  ._bs_three._bs_shrink {
    width:100%;
    margin-left:0;
    margin-right:0;
  }
}
._bs_four {
  width:23%;
}
._bs_four._bs_noguts {
  width:25%;
  margin:0;
}
@media (max-width: 480px) {
  ._bs_four._bs_shrink {
    width:100%;
    margin-left:0;
    margin-right:0;
  }
}
._bs_five {
  width:18%;
}
._bs_five._bs_noguts {
  width:20%;
  margin:0;
}
@media (max-width: 480px) {
  ._bs_five._bs_shrink {
    width:100%;
    margin-left:0;
    margin-right:0;
  }
}
._bs_six {
  width:14.666%;
}
._bs_six._bs_noguts {
  width:16.666;
  margin:0;
}
@media (max-width: 480px) {
  ._bs_six._bs_shrink {
    width:100%;
    margin-left:0;
    margin-right:0;
  }
}
._bs_overlay {
  position: absolute;
  top: 50%;
  width:100%;
  text-align:center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size:18px;
}
/* end brand services grid */


/*start basic reviews*/
._bs_review {
  padding:20px;
  background:#fbfbfb;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  margin-bottom:20px;
}
._bs_stars {
  text-align:center;
}
._bs_review .ion-star {
  display: inline-block;
  vertical-align: top;
  height: 40px;
  line-height: 40px;
  margin-right: 20px;
  color: #febd69;
  font-size: 32px;
}
._bs_review ._bs_add_quotes {
  font-size:24px;
  position:relative;
  margin:20px;
  margin-bottom:0;
  text-align:center;
}
._bs_add_quotes:before,
._bs_add_quotes:after {
  content: "\f347";
  font-family: "Ionicons";
  font-size: 20px;
  display: inline;
  color: #8e8e8e;
  padding: 7px;
}
._bs_reviewed_by {
  float:right;
  font-style:italic;
  font-size:14px;
}
/*end basic reviews*/



/*start blog*/
._bs_blog_date {
  text-align: center;
  color: #ccc;
}
/*end blog*/