:root {
    --brand: #205c0c;
    --brand-2: #8fd59d;
    --bg: #050606;
    --panel: #0d0f10;
    --panel2: #111416;
    --line: #1a1f22;
    --text: #f8f9f9;
    --muted: #9aa3a6;
    --radius: 16px;
    --shadow: 0 12px 36px rgba(0, 0, 0, .55);
    --ring: 0 0 0 2px rgba(32, 92, 12, .35), 0 0 36px rgba(32, 92, 12, .5);
}
html{
  -webkit-font-smoothing: antialiased;
}

body{
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color:#141414;
  overflow-x:hidden;
  padding-right: 0!important;
  background-color: var(--bg);
}

p{
  font-weight: 400;
}

::-webkit-scrollbar{
  width: 16px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #02bc00;
}

::selection{
  background-color:#02bc00;
  color:#fff;
}

-webkit-::selection{
    background-color:#02bc00;
    color:#fff;
}

::-moz-selection{
    background-color:#02bc00;
    color:#fff;
}



div.headerLink {
  transition: all .3s ease-out;
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
    transition-delay: 1s;
}

.loader{
  position: fixed;
  overflow: hidden;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:#141414;
  color:#fff;
  text-align: center;
}

.loader-brand{
  position: absolute;
  left:0;
  width: 100%;
  top:50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.loader-brand img{
  max-width: 90%;
}





h1,
.h1{ 
  font-size: 50px;
  letter-spacing: 0.1em;
  text-transform: none;
  line-height: 1.3;
  font-weight: 700;
  margin:0;
}

h2,
.h2{ 
  position: relative;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 700;
  color: #141414;
}

h3,
.h3{
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  color:#141414;
  margin-top: 20px;
  margin-bottom: 10px;
}

h4,
.h4{
  font-size: 14px;
  line-height:1.4;
  font-weight: 700;
  color:#141414;
  letter-spacing: 0.05em;
  text-transform: none;
}

h4 a,
.h4 a{
  color: inherit;
}

h4 a:hover,
.h4 a:hover{
  color:#02bc00;
  text-decoration:none;
}

ul,
ol {
  margin-top:0px;
  margin-bottom: 10px;
}

ul{
  list-style: none;
  padding-left: 0;
}

ol li,
ul li{
  margin-top: 10px;
}

li.cart {
  margin-top:5px;
}

span.cart-summary {
  color:#02bc00;
}

blockquote{
  margin:40px 0;
  background-color: #f6f6f6;
  padding: 30px;
  position: relative;
  border-left-color:#02bc00;
  font-size: inherit;
  line-height: 1.7;
  color: #6B6B6B;
}

a {
  color:#02bc00;
  -webkit-transition: all .3s ease-out;
       -o-transition: all .3s ease-out;
          transition: all .3s ease-out;
}

a:hover,
a:focus {
  color:#02bc00;
  outline: none;
  text-decoration: none !important;
}

a:focus{
  text-decoration: none;
}




.form-control,
textarea.form-control{
  height: 54px;
  color: #9F9F9F;
  border-radius:0;
  padding-left: 22px;
  text-transform: none;
  color: #141414;
  background-color: transparent;
  border:2px solid #141414;
  letter-spacing: 0.1em;
  -webkit-box-shadow:none;
          box-shadow:none;
  -webkit-transition: all .15s;
       -o-transition: all .15s;
          transition: all .15s;
}

.form-control-sm,
textarea.form-control-sm{
  font-size:11px;
  letter-spacing: 0.1em;
  height: 40px;
  padding: 13px 13px 13px;
  color: #fff;
  border-radius:0;
  text-transform: none;
  color: #fff;
  background-color: transparent;
  border:2px solid #fff;
  letter-spacing: 0.1em;
  -webkit-box-shadow:none;
          box-shadow:none;
  -webkit-transition: all .15s;
       -o-transition: all .15s;
          transition: all .15s;
}

.form-control-white,
textarea.form-control-white{
  border-color: #fff;
  color: #fff;
}

.form-control:focus,
.form-control-sm:focus {
  border-color:#02bc00;
  outline: 0;
  -webkit-box-shadow:none;
          box-shadow:none;
}

textarea.form-control{
  height: 188px;
  padding-top: 14px;
  resize:none;
}

.form-control::-moz-placeholder {
  color: #141414;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #141414;
}

.form-control::-webkit-input-placeholder {
  color: #141414;
}

.form-control-white::-moz-placeholder{
  opacity: 1;
  color: #fff;
}

.form-control-white::-ms-input-placeholder {
  color: #fff;
}

.form-control-white::-webkit-input-placeholder {
  color: #fff;
}

.form-control-sm::-moz-placeholder{
  color: #fff;
}

.form-control-sm::-ms-input-placeholder {
  color: #fff;
}

.form-control-sm::-webkit-input-placeholder {
  color: #fff;
}

.form-control.error,
.form-control-sm.error{
  border-color:#02bc00;
}

.form-group{
  margin-bottom: 40px;
}

.form-group-sm{
  margin-bottom: 15px;
}

.col-form{
  margin-top: 40px;
}

.row-form{
  margin-top: -40px;
}

.wobble-error{
  -webkit-animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
           animation: hvr-wobble-horizontal 1s ease-in-out 0s 1 normal;
}

label.mc-label,
label.error{
  display: block;
  text-align: left;
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.1em;
  margin:10px 20px 0;
}

label.mc-label{
  margin:10px 13px 0;
}

label.mc-label .fa{
  color: #02bc00;
}

.header-title-chosen {
  color: #02bc00;
}


.btn{
  position: relative;
  display: inline-block;
  border:2px solid #02bc00;
  padding:13px 45px 12px;
  text-decoration: none;
  font-size: 13px;
  color:#000;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 0 !important;
  transform: skewX(-10deg);
  text-transform: none;
  background-color: #02bc00;
  -webkit-transition: all .3s ease-out;
          transition: all .3s ease-out;
}

.btn-checkout {
  overflow-wrap: normal;
}

.btn-round{
  border-radius: 25px;
}

.btn-sm{
  padding: 8px 30px 7px;
  font-size: 11px;
}

.btn-view-config{
  border: 2px solid #02bc00;
  margin: 0px 5px;
  padding:13px 12px 12px;
  text-decoration: none;
  font-size: 13px;
  color:#000;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 0 !important;
  transform: skewX(-10deg);
  text-transform: none;
  background-color: #02bc00;
  -webkit-transition: all .3s ease-out;
          transition: all .3s ease-out;
}

.btn-product-removal{
  border: 2px solid #02bc00;
  margin: 0px 5px;
  padding:13px 12px 12px;
  text-decoration: none;
  font-size: 13px;
  color:#000;
  letter-spacing: 0.1em;
  font-weight: 500;
  border-radius: 0 !important;
  transform: skewX(-10deg);
  text-transform: none;
  background-color: #02bc00;
  -webkit-transition: all .3s ease-out;
          transition: all .3s ease-out;
}

.btn:focus{
  outline: none!important;
  -webkit-box-shadow:none;
  box-shadow: none;
}

.btn:hover,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:hover,
.btn-product-removal:hover,
.btn-view-config:hover,
.btn:focus{
  border-color:#02bc00;
  color:#000;
  background-color: transparent;
}

.btn-light{
  background-color: #f0f5f9;
  border-color:#f0f5f9; 
  color: #141414;
}

.btn-light:hover,
.btn-light:focus{
  color:#fff;
  background-color: #02bc00;
}

.btn-white{
  color: #141414;
  background-color:#fff;
  border-color: #fff;
}

.btn-white:hover,
.btn-white:focus{
  color:#fff;
  background-color: #02bc00;
  border-color: #02bc00;
}

.btn-b-white{
  border:2px solid #fff;
  background-color:transparent;
}

.btn-b-white:hover,
.btn-b-white:focus,
.btn-hvr-white:hover,
.btn-hvr-white:focus{
  color: #141414 !important;
  background-color: #fff;
  border-color: #fff;
}

.btn-b-dark{
  color: #141414;
  border:2px solid #141414;
  background-color:transparent;
}

.btn-b-dark:hover,
.btn-b-dark:focus{
  color:#fff;
  background-color: #02bc00;
}



.icon-circle,
.icon-circle-white{
  display: inline-block;
  text-align: center;
  /* width: 100%; */
  /* height: 382px; */
  line-height: 100px;
  border-radius: 50%;
  border:2px solid #02bc00;
  position: relative;
}

.on-sale-flag {
	display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    background-color: #ff5858;
    padding: 15px 10px;
    border-radius: 25px;
}

.icon-circle .fa,
.icon-circle-white .fa{
  font-size:40px;
  color:#02bc00;
  vertical-align: middle;
}

.icon-circle-white{
    border-color: #fff;
}

.icon-circle-white .fa{
    color: #fff;
}

.icon-circle-2{
  /* padding-top: 24px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background:#02bc00;
}

.icon-circle-2 .fa{
  font-size: 40px;
  color:#fff;
  vertical-align: middle;
}

.icon-circle-3{
  display: inline-block;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  border:2px solid #fff;
}

.icon-circle-3 .fa{
  font-size:30px;
  color:#fff;
  vertical-align: middle;
}

.icon-circle-3.dark{
  border-color: #141414;
}

.icon-circle-3.dark .fa{
  color: #141414;
}

.fa{
  display: inline-block;
  color: inherit;
}

a.fa:hover,
a.fa:focus{
  text-decoration: none;
}



.text-white{
  color:#fff;
}

.text-primary{
  color:#02bc00;
}

.media-right p { 
  font-size: 22px;
}


.bgc-light{
  background-color:#f0f5f9;
  height: 730px;
  font-size: 35px;
  padding: 30px;
}

.bgc-primary{
  background-color:#02bc00;
}



.layout{
  overflow: hidden;
}

.section{
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (max-width: 576px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.sectiongray {
  background: #f0f5f9;
}

.section-title{
  margin:0 0 15px 0;
  position: relative;
  font-size: 28px !important;
  line-height: 1.4 !important;
  letter-spacing: 0.1em;
  text-transform: none;
  font-weight: 700 !important;
  /* color: #141414 !important; */
}

.section-content{
  margin: 120px 0 0 0;
}

@media screen and (max-width: 576px) {
  .section-content {
    margin: 40px 0 0 0;
  }
}

.d-flex.flex-wrap.section-content:not(.detailed-image-module):not(.wysiwyg):not(.embedded) {
  margin: 0px;
  height: 630px;
}

.margintools {
  max-width: 1930px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px){
  .margintools {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.footermargin {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px){
  .footermargin {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* .product-tumb a {
    height: 100%
  } */
}

.spacer,
.spacer-white{
  position: relative;
  width: 50px;
  height: 1px;
  background-color: #02bc00;
  margin:20px auto 20px;
}

.spacer .line,
.spacer-white .line{
  position: absolute;
  line-height: 1;
  left: 0;
  width: 100%;
  top:-10px;
}

.spacer .dot,
.spacer-white .dot{
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #02bc00;
}

.spacer-white{
  background-color: #fff;
}

.spacer-white .dot{
  background-color: #fff;
}

header .spacer{
  margin-bottom: 0;
}

header .spacer + *{
  margin-top: 20px;
}

.bg-left-fluid{
  position: absolute !important;
  padding: 0 !important;
  left:0 !important;
  top:0 !important;
  bottom: 0 !important;
  overflow: hidden !important;
}

.bg-right-fluid{
  position: absolute;
  padding: 0;
  right:0;
  top:0;
  bottom: 0;
  overflow: hidden;
}

.bg-left-fluid.bordered:after,
.bg-right-fluid.bordered:after{
  content:'';
  position: absolute;
  left: 20px;
  top:20px;
  right: 20px;
  bottom: 20px;
  border:1px solid #02bc00;
}

.row-base{
  margin-top: -30px;
}

.col-base{
  margin-top: 30px;
}

.row-columns{
  margin-top: -50px !important; /* important added by reid 2020-11-09 */
}

.row-columns.xidax-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.column{
  margin-top: 50px;
}

.masked{
  position: relative;
}

.masked:before{
  content:'';
  position: absolute;
  left: 0;
  top:0;
  width: 100vw;
  height: 100%;
  background-color: rgba(14,14,14,0.65);
}

.rel-1{
  position: relative;
  z-index:1;
}

.pt-0{
  padding-top: 0;
}

.pb-0{
  padding-bottom: 0;
}

.parallax{
  background-attachment: fixed!important;
}

/*
.mobile .parallax{
  background-attachment: scroll!important;
}
*/



.brand{
  display: inline-block;
  margin:0 0 15px 15px;
  text-align: center;
  font-size:25px;
  line-height: 1;
  text-transform: none;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
}

.brand span{
  display: inline-block;
}

.brand:hover,
.brand:focus{
  text-decoration: none;
}



/* 2.3 Affix */



.navbar.affix{
  position: fixed;
  top:0;
  background-color:rgba(14,14,14,0.95);
  padding-top:20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}


.navbar.affix .navbar-nav > li > a:hover, 
.navbar.affix .navbar-nav > .active > a{
  color: #fff;
}





/*  3. Main*/


/*top selling*/

.yourspecs li {
  margin-top: 0;
}

#sumbox {
  background: #dfdfdf;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    width: auto;
    height: 100%;
}

.product-card {
  width: 100%;
  position: relative;
  box-shadow: 0 2px 7px #6b6c74;
  background: #fafafa;
}

.badge {
  position: absolute;
  left: 0;
  top: 20px;
  text-transform: none;
  font-size: 13px;
  font-weight: 700;
  background: #cc3843;
  color: #fff;
  padding: 3px 10px;
  display: inline-block;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.product-tumb {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 500px; */
  padding: 0px;
  background: #fafafa;
}

.product-tumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.product-tumb2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  padding: 20px;
  background: #f0f0f0;
}

.product-details {
  padding: 30px;
}

.product-details h4 {
  text-transform: none;
  color: #363636;
}

.product-catagory {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
  color: #ccc;
  margin-bottom: 18px;
  text-align: center;
}

.product-details h4 a {
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
  text-transform: none;
  color: #363636;
  text-decoration: none;
  transition: .3s;
}

.product-details h4 a:hover {
  color: #fbb72c;
}

.product-details p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 18px;
  color: #35363b;
}

.specwidth {
  max-width: 270px;
  margin: auto;
}

.specs__title {
  cursor: pointer;
  margin: 0;
  position: relative;
}

.specs__title3 {
  cursor: pointer;
  margin: 0;
  position: relative;
}

.specs__title2 {
  cursor: pointer;
  margin: 0;
  position: relative;
}

.specs__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.specs__icon3 {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.specs__icon2 {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.specs__icon .line-01,
.specs__icon .line-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #35363b;
  transition: .3s;
}

.specs__icon3 .line-01,
.specs__icon3 .line-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #fff;
  transition: .3s;
}

.specs__icon .line-02 {
  transform: rotate(90deg);
}

.specs__icon3 .line-02 {
  transform: rotate(90deg);
}

.specs__content {
  display: none;
}

.specs__content2 {
  display: none;
}

.specs--open .line-02 {
  transform: rotate(0);
}

.specs--open3 .line-02 {
  transform: rotate(0);
}

.specs3 {
  margin-top: -1px;
  border-top: 1px solid #35363b;
  border-bottom: 1px solid #35363b;
  background: 0 0!important;
  border-radius: 0!important;
  margin: 0 0 20px 0;
}

.specs {
  margin-top: -1px;
  border-top: 1px solid #35363b;
  border-bottom: 1px solid #35363b;
  background: 0 0!important;
  border-radius: 0!important;
}

.specs2 {
  margin-top: -1px;
  border-top: 1px solid #35363b;
  border-bottom: 1px solid #35363b;
  border-radius: 0!important;
}

.specs__title3 {
  padding: 20px 9px;
  font-size: 16px;
  transition: .2s;
  color: #fff;
  text-transform: none;
  text-align: left;
}

.specs__title {
  padding: 20px 9px;
  font-size: 16px;
  transition: .2s;
  color: #35363b;
  text-transform: none;
  text-align: left;
}

.specs__title2 {
  padding: 20px 9px;
  font-size: 16px;
  transition: .2s;
  color: #fff;
  text-transform: none;
  text-align: left;
}

.specs__content {
  padding: 24px 16px 16px;
}

.specs__content2 {
  padding: 4px 16px 16px 16px;
}

.specs__content p {
  margin: 0 0 16px;
}

.specs__content2 p {
  margin: 0 0 16px;
}

.specs__title:hover {
  background-color: #02bc00;
  color: #fff;
}

.specs__title3:hover {
  background-color: #02bc00;
  color: #fff;
}

.specs__title2:hover {
  background-color: #02bc00;
  color: #fff;
}

.specs__title2:hover .cartlink {
  color: #fff;
}

.specs__title:hover .line-01,
.specs__title:hover .line-02 {
  background-color: #fff;
}

.specs__title3:hover .line-01,
.specs__title3:hover .line-02 {
  background-color: #fff;
}

.specs--open .specs__title {
  color: #35363b;
}

.specs--open .specs__title3 {
  color: #fff;
}

.specs--open .specs__title:hover {
  color: #fff;
}

.specs--open .specs__title3:hover {
  color: #fff;
}

.specs--open .specs__title2 {
  color: #35363b;
}

.specs--open .specs__title2:hover {
  color: #fff;
}

.specs--open .line-01,
.specs--open .line-02 {
  background-color: #35363b;
}

.specs--open3 .line-01,
.specs--open3 .line-02 {
  background-color: #fff;
}

.specs--open2 .specs__title {
  color: #fff;
}

.specs--open2 .specs__title3 {
  color: #35363b;
}

.specs--open2 .specs__title3:hover {
  color: #fff;
}

.specs--open2 .specs__title:hover {
  color: #fff;
}


.specs--open2 .specs__title2 {
  color: #fff;
}

.specs--open2 .specs__title2:hover {
  color: #fff;
}

.yourspecs {
  font-size: 12px;
  text-align: center;
  padding: 0;
  color: #35363b;
}

.yourspecs3 {
  font-size: 12px;
  text-align: left;
  padding: 0;
  color: #fff;
}

.prod__title {
  cursor: pointer;
  margin: 0;
  position: relative;
}

.prod__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}

.prod__icon .line-01,
.prod__icon .line-02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #35363b;
  transition: .3s;
}

.prod__icon .line-02 {
  transform: rotate(90deg);
}

.prod__content {
  display: none;
  padding: 0;
}

.prod--open .line-02 {
  transform: rotate(0);
}

.prod {
  margin-top: -1px;
  border-top: 1px solid #35363b;
  background: 0 0!important;
  border-radius: 0!important;
}

.prod__title {
  padding: 10px 0;
  font-size: 26px;
  transition: .2s;
  color: #35363b;
  text-transform: none;
  text-align: left;
}

.prod__content p {
  margin: 0 0 16px;
}

.prod__title:hover {
  background-color: #02BC00;
  color: #fff;
}

.prod__title:hover .line-01,
.prod__title:hover .line-02 {
  background-color: #fff;
}

.prod--open .line-01,
.prod--open .line-02 {
  background-color: #fff;
}

.prod--open .prod__title {
  color: #fff;
  background-color: #02bc00;
}

.prod--open .header-title-chosen {
  color: #000 !important;
}

.focus .header-title-chosen {
  color: #000 !important;
}

.prod--open .header-title-category {
  color: #ffffff;
}

.prod--open .prod__title:hover {
  color: #fff;
}

.prod--open .line-01,
.prod--open .line-02 {
  background-color: #35363b;
}

.zoom {
  transition: transform .2s;
}

.zoom:hover {
  transform: scale(1.2);
}

.pickacard {
  border: 2px solid #b8b8b8;
  transition: transform .1s;
}

.pickacard:hover {
  border: 2px solid #35363b;
  cursor: pointer;
}

.product-slider__cart {
  box-shadow: 0 7px 69px 0 rgb(22, 175, 6);
  background: #02bc00;
  border: none;
  color: #fff;
  padding: 10px 30px;
  /* border-radius: 50px; */
  transform: skewX(-10deg);
  min-height: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-right: 40px;
  cursor: pointer;
}

.product-slider__cart2 {
  background: #02bc00;
  border: none;
  color: #fff;
  padding: 10px 30px;
  /* border-radius: 50px; */
  transform: skewX(-10deg);
  min-height: 50px;
  font-weight: 700;
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
}

.product-slider__cart3 {
  background: #02bc00;
  border: none;
  color: #fff;
  padding: 15px 30px;
  /* border-radius: 50px; */
  transform: skewX(-10deg);
  min-height: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: auto;
  width: 158px;
  color: white !important;
}

@media (max-width: 1440px){
  .product-slider__cart3 {
    padding: 4px;
    min-height: 0px;
    font-size: 10px;
  }
  .product-details {
    padding: 12px;
  }
  .product-tumb {
    height: 180px;
  }
  .about-square2 {
    padding: 40px;
    font-size: 17px
  }
  .icon-title {
    font-size: 16px;
  }
}

.parallelogram {
  transform: skewX(-15deg);
  border-radius: 0px !important;
}

.product-price-home small {
  font-size: 80%;
  font-weight: 400;
  text-decoration: line-through;
  display: inline-block;
  margin-right: 5px;
}

.product-price-home {
    font-size: 18px;
    color: #02bc00;
    font-weight: 600;
    margin-top: 4px;
}

/*top selling*/

.main-about{
  background: url(../img/bg/main-about.jpg) center 0 no-repeat;
  background-size:cover;
}

.main-about2{
  background: url(../img/bg/main-about2.jpg) center 0 no-repeat;
  background-size:cover;
}

.opener{
  color:#fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 200px 0 150px;
}

.opener h2{
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.4em;
  margin: 0;
  font-weight:600;
}

.rev_slider{
  color: #fff;
  min-height: 420px;
  background-color: #141414;
}

.tp-caption{
  text-align: center;
}

.main .btn{
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 0px !important;
}

.ares.tparrows{
  min-width: 50px;
  min-height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: rgba(255,255,255,0.9);
}

.ares.tparrows.tp-leftarrow{
  margin-left: 40px;
}

.ares.tparrows.tp-rightarrow{
  margin-right: 40px;
}

.ares.tparrows.tp-leftarrow:before,
.ares.tparrows.tp-rightarrow:before{
  font-family: 'FontAwesome';
  line-height: 50px;
  color:#02bc00;
}  

.ares.tparrows.tp-leftarrow:before{
  content: "\f104";
}

.ares.tparrows.tp-rightarrow:before{
  content: "\f105";
}

.ares.tparrows:hover{
  background-color: rgba(14,14,14,0.9);
}

.ares.tparrows:hover .ares.tparrows.tp-leftarrow:before, 
.ares.tparrows:hover .ares.tparrows.tp-rightarrow:before{
  color: #fff;
}

.scroll-bottom{
  display:inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #02bc00;
}

.scroll-bottom .fa{
  position: relative;
  line-height: 50px;
  font-size: 17px;
  color: #fff;
}

.scroll-bottom:hover{
  background-color: #fff;
}

.scroll-bottom:hover .fa{
  color:#02bc00;
}

.corp-logos {
  overflow: hidden;
  width: 100%;
}

.partners{
  overflow: hidden;
  min-height: 1100px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  section.partners.text-center.section {
    min-height: 940px;
  }
}

#home {
	height: 800px;
}

@media screen and (max-width: 576px) {
  #home {
    height: 600px;
    padding-top: 90px;
  }
}

.bg-about-1 {
  background:url(../img/brand.png) center no-repeat;
  background-size: cover;
}

.bg-about-1.visible {
  background:url(../img/bg/about1.webp) center no-repeat;
  background-size: cover;
}


.bg-about-2 {
  background:url(../img/brand.png) center no-repeat;
  background-size: cover;
}

.bg-about-2.visible {
  background:url(../img/bg/carlos.webp) center no-repeat;
  background-size: cover;
}

.bg-about-3{
  background:url(../img/salepage/about3.jpg) center no-repeat;
  background-size: cover;
}

.bg-about-4{
  background:url(../img/bg/about4.jpg) center no-repeat;
  background-size: cover;
}

.bg-about-5{
  background:url(../img/bg/about5.jpg) center no-repeat;
  background-size: cover;
}

.row-about{
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

.col-about-margin{
  margin-top: 70px;
}

.img-frame{
  display: inline-block;
  position: relative;
}

.img-frame:after{
  content:'';
  position: absolute;
  left:-15px;
  top:-15px;
  bottom: 15px;
  right: 15px;
  border:5px solid #f0f5f9;
}

.img-frame img{
  position: relative;
  z-index: 1;
}

.about-title{
  margin-top:0;
  margin-bottom: 10px;
  font-size: 24px;
  text-transform: none;
  letter-spacing: 0.05em;
}

.col-about-content{
  margin-top: 45px;
}

.progress-bar-title{
  margin-bottom: 3px;
}

.progress-bar-title,
.progress-bar{
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: none;
}

.progress{
  height: 10px;
  margin-bottom: 25px;
  box-shadow: none;
  background:none;
  border-radius: 0;
  overflow: visible;
}

.progress-bar{
  position: relative;
  border-radius: 4px;
  background-color: #02bc00;
  box-shadow: none;
  color: inherit;
  width: 20%;
}

.progress-bar span{
  position: absolute;
  top: -30px;
  right: 0px;
}

.statistic{
  text-align: center;
  padding:80px 0;
}

.counter-value{
  font-size:60px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.counter-details{
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.panel-group{
  margin-bottom: 0;
}

.panel-group .panel+.panel{
  margin-top: 15px;
}

.panel{
  background-color: transparent;
  border:0;
}

.panel-heading{
  background-color: #02bc00;
  border-radius: 0;
  padding: 0;
}

.panel-title{
  text-transform: none;
  color:#fff;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.panel-title a{
  color:#fff;
  position: relative;
  display: block;
  padding: 14px 50px 12px 20px;
}

.panel-title a:hover{
  color:#fff;
  text-decoration: none;
}

.panel-title a:before {
  position: absolute;
  top: 13px;
  right: 20px;
  bottom: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  content: "+";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.panel-title a[aria-expanded="true"]:before {
  content: "-";
}

.panel-group .panel-heading+.panel-collapse>.panel-body, 
.panel-group .panel-heading+.panel-collapse>.list-group{
  border:2px solid #02bc00;
}

.panel-body{
  margin-top: 15px;
  padding: 20px;
  border:2px solid #02bc00;
}

.panel-body-title{
  font-size: 14px;
  color:#02bc00;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 500;
  margin-top:12px;
}

.partner{
  /* removing margin seems to help the "customize yours" buttons not blow out - Reid 2020-11-11
  margin:0 15px;
  */
  padding: 20px 25px;
  border:2px solid #f7f7f7;
}

.partner img{
  max-width: 100%;
}

.image-section h2{
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 25px;
}

.image-section .btn{
  margin-top: 15px;
}

.banner-section{
  padding: 50px 0;
}

.banner-section h2{
  font-size:22px;
  letter-spacing: 0.05em;
  margin:10px 0 0;
}

.banner-section .btn{
  margin-top: 30px;
}



.main-services{
  background: url(../img/bg/main-services.jpg) center 0 no-repeat;
  background-size:cover;
}

.service-column p {
  margin-bottom: 0;
}

.entry{
  font-size:20px;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.border-column{
  padding: 40px;
  background: #02bc00;
  border-radius: 20px;
  color: #fff;
}

.border-column .entry{
  color: #fff;
}


.main-portfolio{
  background: url(../img/bg/main-portfolio.jpg) center 0 no-repeat;
  background-size:cover;
}

.main-portfolio2{
  background: url(../img/bg/main-portfolio2.jpg) center 0 no-repeat;
  background-size:cover;
}

.main-portfolio3{
  background: url(../img/bg/main-portfolio3.jpg) center 0 no-repeat;
  background-size:cover;
}

.filter{
  margin:50px 0 0 0;
  text-transform: none;
  font-size:12px;
  letter-spacing: 0.1em;
}

.filter li{
  display: inline-block;
  margin: 20px 10px 0;
}

.filter li a{
  display: block;
  color: inherit;
  padding:8px 18px;
  border:2px solid #f0f5f9;
}

.filter li a:hover,
.filter .active a{
  border-color: #02bc00;
  background-color: #02bc00;
  text-decoration:none;
  color: #fff;
}

.filter-top{
  margin-top: -20px;
}

.isotope-padding{
  margin:0 15px;
}

.isotope-padding .isotope-item{
  padding: 15px;
}

.isotope .isotope-item{
  width: 100%;
}

.isotope .isotope-item.w2{
  width: 100%;
}

.isotope.col-2 .isotope-item{
  width: 100%;
}

.isotope.col-3 .isotope-item{
  width: 100%;
}

.showcase-item{
  color: #fff;
}

.showcase-item-thumbnail img{
  display: block;
  width: 100%;
}

.showcase-item-hover{
  position: absolute;
  overflow: hidden;
  z-index: 1;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  opacity: 0;
  color: #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor:url(../img/zoom-in.cur), zoom-in;
}

.isotope-padding .showcase-item-hover{
  top:15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
}

.showcase-item-hover:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(2,188,0,0.8);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.showcase-item-info{
  position: absolute;
  top:50%;
  left: 0;
  width: 100%;
  padding: 0 20px;
  -webkit-transform:translateY(-50%) scale(0);
  -ms-transform:translateY(-50%) scale(0);
  transform:translateY(-50%) scale(0);
  -webkit-transition: transform  0.3s;
  -ms-transition: transform  0.3s;
  transition: transform  0.3s;
}

.showcase-item-category{
  font-size:20px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0.1em;
}

.showcase-item-title{
  font-size:25px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.showcase-item:hover .showcase-item-hover {
  opacity: 1;
}

.showcase-item:hover .showcase-item-hover:after{
  opacity: 1;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.showcase-item:hover .showcase-item-info{
  -webkit-transform:translateY(-50%) scale(1);
  -ms-transform:translateY(-50%) scale(1);
  transform:translateY(-50%) scale(1);
}


.mfp-figure{
  box-shadow: none;
}

.mfp-iframe-scaler{
  overflow: visible;
}

.mfp-image-holder .mfp-close, 
.mfp-iframe-holder .mfp-close{
  padding: 0;
  margin-top: -10px;
  font-family: inherit;
  font-size: 40px;
  font-weight: 300;
  line-height: 0;
}

img.mfp-img{
  min-height: 250px;
}

.mfp-bottom-bar{
  margin-top: -30px;
}

.mfp-title{
  padding-right: 40px;
  font-size: 18px;
  margin-top: 3px;
  text-transform: none;
  letter-spacing: 0.1em;
}

.mfp-counter{
  top:5px;
}

.mfp-bg{
  background-color: #141414;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b{
  display: none;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b{
  display: none;
}

.mfp-wrap .mfp-content {
  -webkit-perspective: 1300px;
          perspective: 1300px
  
}

.mfp-wrap .mfp-figure,
.mfp-wrap .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform:scale(0) rotateY(60deg);
  -o-transform:scale(0) rotateY(60deg);
  transform:scale(0) rotateY(60deg);
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: .5s;
       -o-transition: .5s;
          transition: .5s;
}

.mfp-wrap .mfp-figure,
.mfp-wrap .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
       -o-transition: .3s ease-in-out;
          transition: .3s ease-in-out;
  -webkit-transform: rotateY(-60deg);
      -ms-transform: rotateY(-60deg);
       -o-transform: rotateY(-60deg);
          transform: rotateY(-60deg);
}

.mfp-bg {
  opacity: 0;
  -webkit-transition: .5s;
       -o-transition: .5s;
          transition: .5s;
}

.mfp-wrap.mfp-ready .mfp-figure,
.mfp-wrap.mfp-ready .mfp-iframe-scaler {
  opacity: 1;
  -webkit-transform:rotateX(0);
      -ms-transform:rotateX(0);
       -o-transform:rotateX(0);
          transform:rotateX(0);
}

.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-wrap.mfp-removing .mfp-figure ,
.mfp-wrap.mfp-removing .mfp-iframe-scaler {
  opacity: 0;
  -webkit-transform: rotateX(-60deg);
      -ms-transform: rotateX(-60deg);
       -o-transform: rotateX(-60deg);
          transform: rotateX(-60deg);
  
}

.mfp-zoom-out-cur, 
.mfp-zoom-out-cur 
.mfp-image-holder .mfp-close{
  cursor:url(../img/zoom-out.cur), zoom-out;
}

.mfp-removing.mfp-bg {
  opacity: 0;
}

.team-profile{
  position: relative;
  overflow: hidden;
}

.team-profile-img img{
  width: 100%;
}

.team-profile-hover{
  position: absolute;
  overflow: hidden;
  z-index: 1;
  top:12px;
  bottom: 12px;
  left: 12px;
  right: 12px;
  opacity: 0;
  color: #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team-profile-hover:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(2,188,0,0.8);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.team-profile-info{
  position: absolute;
  top:50%;
  left: 0;
  width: 100%;
  padding: 0 20px;
  -webkit-transform:translateY(-50%) scale(0);
  -ms-transform:translateY(-50%) scale(0);
  transform:translateY(-50%) scale(0);
  -webkit-transition: transform  0.3s;
  -ms-transition: transform  0.3s;
  transition: transform  0.3s;
}

.team-profile-social{
  position:relative;
  top:-30px;
  opacity: 0;
  -webkit-transition:all 1s;
  -o-transition:all 1s;
  transition:all 1s;
  margin-bottom: 50px;
}

.team-profile-social a{
  display: inline-block;
  vertical-align: middle;
  margin:0 10px;
  font-size: 25px;
}

.team-profile-social a:hover{
  color: #141414;
}

.team-profile-name{
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.1em;
}

.team-profile-spec{
  font-size:13px;
  line-height: 1.6;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}

.team-profile-descr{
  position:relative;
  top:90px;
  opacity: 0;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  padding: 0px 5px;
}

.team-profile:hover .team-profile-hover {
  opacity: 1;
}

.team-profile:hover .team-profile-hover:after{
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.team-profile:hover .team-profile-info{
  -webkit-transform:translateY(-50%) scale(1);
  -ms-transform:translateY(-50%) scale(1);
  transform:translateY(-50%) scale(1);
}

.team-profile:hover .team-profile-social{
  opacity: 1;
  top:0;
}

.team-profile:hover .team-profile-descr{
  opacity: 1;
  top:0;
}


.main-features{
  background: url(../img/bg/main-features.jpg) center 0 no-repeat;
  background-size:cover;
}

.icon-title{
  font-size:22px;
  text-transform: none;
  letter-spacing: 0.1em;
  margin:0 0 15px;
}

.feature-column .icon-title{
  margin-top: 25px;
}

.icon-feature{
  font-size: 35px;
}

.col-feature p{
  margin-bottom: 0;
}

.feature-box{
  margin-top:30px;
  padding: 30px 20px 25px;
  border:2px solid #f0f5f9;
}

.feature-descr{
  font-size:13px;
  margin-bottom: 0;
}

.reviews{
  background:url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
  min-height: 700px;
}

@media screen and (max-width: 576px) {
  .reviews {
    height: 850px;
  }
}

.warranty-section {
  background:url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
}

.system-types {
  background:url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
}

.featured-video {
  background:url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
}

/* @media screen and (max-width: 576px) {
  .system-types {
    height: 1330px;
  }
} */

/* CLS Mitigation 2023 */

img.home-products {
  height: 450px;
  width: 450px;
}

/* img.partner-logo {
  height: 119px;
  width: 119px;
} */

/* img.service {
  height: 176px;
  width: 176px;
} */

img.promo-config {
	height: 240px;
    width: auto;
}

/* img.aff-profile-image {
  height: 227px;
  width: 227px;
} */

.service-column-body .icon-circle {
  display: inline-block;
  text-align: center;
  width: 290px;
  height: 290px;
  line-height: 100px;
  border-radius: 50%;
  border: 2px solid #02bc00;
}

/* @media screen and (max-width: 1399px) {
  img.partner-logo {
    height: 97px;
    width: 97px;
  }
} */

@media screen and (max-width: 1199px) {
  img.home-products {
    height: 340px;
    width: 340px;
  }
  img.partner-logo {
    height: 120px;
    width: 120px;
  }
  /* img.service {
    width: 176px;
    height: 176px;
  } */
  img.promo-config {
    width: 290px;
    height: 290px;
  }
  .service-column-body .icon-circle {
    width: 290px;
    height: 290px;
  }
  img.aff-profile-image {
    width: 231px;
    height: 231px;
  }
}

@media screen and (max-width: 991px) {
  img.home-products {
    height: 270px;
    width: 270px;
  }
  img.partner-logo {
    height: 211px;
    width: 211px;
  }
  /* img.service {
    width: 216px;
    height: 216px;
  } */
  img.promo-config {
    width: 320px;
    height: 320px;
  }
  .service-column-body .icon-circle {
    width: 320px;
    height: 320px;
  }
  img.aff-profile-image {
    width: 330px;
    height: 330px;
  }
}

@media screen and (max-width: 767px) {
  img.home-products {
    height: 239px;
    width: 239px;
  }
  img.partner-logo {
    height: 236px;
    width: 236px;
  }
  img.service {
    width: 360px;
    height: 360px;
  }
  img.promo-config {
    width: 350px;
    height: 350px;
  }
  .service-column-body .icon-circle {
    width: 350px;
    height: 350px;
  }
  img.aff-profile-image {
    width: 502px;
    height: 502px;
  }
}

@media screen and (max-width: 576px) {
  img.home-products {
    height: 296px;
    width: 296px;
  }
  img.partner-logo {
    height: 140px;
    width: 140px;
  }
  img.service {
    width: 280px;
    height: 280px;
  }
  img.promo-config {
    width: 350px;
    height: 350px;
  }
  .service-column-body .icon-circle {
    width: 350px;
    height: 350px;
  }
  img.aff-profile-image {
    width: 352px;
    height: 352px;
  }
}

/* END CLS MITIGATION 2023 */

.review-name{
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0.1em;
  margin-top: 35px;
}

.review-spec{
  font-size:14px;
  text-transform: none;
  letter-spacing: 0.1em;
  color:#02bc00;
  font-weight: 400;
  margin:0;
}

.review-description{
  margin-top: 30px;
}

@media screen and (max-width: 576px) {
  .review-description {
    font-size: 0.85em;
  }
}

.review-carousel-2 .review{
  position: relative;
  margin:0 15px;
  padding:0 50px 40px;
}

.review-carousel-2 .review:before{
  content:'';
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top:50px;
  bottom:0;
  border:2px solid #f0f5f9;
}

.review-carousel-2 .owl-controls .owl-pagination{
  margin-top: 80px;
}

.review-carousel-3 .col-review-text{
  margin-top: 50px;
  padding: 50px;
  border:2px solid #eff4f8;
}

.review-carousel-3 .review-name{
  margin-top: 0;
}


.owl-controls .owl-pagination{
  text-align: center;
  margin-top: 35px;
}

.owl-controls .owl-page{
  display: inline-block;
  margin:0 4px;
}

.owl-controls .owl-page span{
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border:2px solid #02bc00;
  -webkit-transition: .2s linear;
       -o-transition: .2s linear;
          transition: .2s linear;
}

.owl-controls .owl-page.active span, 
.owl-controls .owl-page:hover span{
  background-color:#02bc00;
}

.dots-white .owl-controls .owl-page span{
  border-color: #fff;
}

.dots-white .owl-controls .owl-page.active span, 
.dots-white  .owl-controls .owl-page:hover span{
  background-color:#fff;

}


.col-price{
  max-width: 100%;
  width: 350px;
  display:inline-block;
  position: relative;
  padding: 7px;
  text-align: center;
}

.price-box{
  position: relative;
  border:2px solid #f0f5f9;
}

.price-header{
  padding: 35px 20px;
  line-height: 1;
  color: #000;
  background-color:#f0f5f9;
}

.price-title{
  font-size:14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.price-amount{
  font-size: 50px;
  font-weight: 600;
}

.price-currency{
  display: inline-block;
  vertical-align: top;
  margin:2px 0 0 -10px;
  font-size: 18px;
  font-weight: 500;
}

.price-period{
  margin-top: 2px;
  font-size:14px;
  text-transform: none;
  letter-spacing: 0.1em;
}

.price-features{
  font-size:12px;
  letter-spacing: 0.1em;
  padding:40px 20px;
}

.price-features ul{
  margin: 0;
}

.price-features ul li{
  position: relative;
  margin:0 0 25px 0;
}

.price-features ul li .fa{
  position: absolute;
  top:3px;
  left: 25px;
  font-size: 14px;
}

.price-features .btn{
  margin-top: 8px;
}

.leading.col-price .price-box{
  border-color:#02bc00;
}

.leading.col-price .price-header{
  background-color: #02bc00;
  color: #fff;
}

.leading.col-price .price-title{
  color: #fff;
}


.main-blog{
  background: url(../img/bg/main-blog.jpg) center 0 no-repeat;
  background-size:cover;
}

.main-blog-details{
  background: url(../img/bg/main-blog-details.jpg) center 0 no-repeat;
  background-size:cover;
}

.blog-article-thumbnail{
  position: relative;
}

.blog-article-thumbnail img{
  width: 100%;
}

.blog-article-thumbnail .date{
  position: absolute;
  z-index: 1;
  right: 0;
  top:0;
  padding:8px 14px;
  background-color: #02bc00;
  text-transform: none;
  color: #fff;
  line-height: 1.3;
}

.blog-article-title{
  font-size:15px;
  letter-spacing: 0.1em;
  text-transform: none;
  margin-bottom: 8px;
}

.blog-article-category{
  font-size:14px;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #8a8888;
}

.read-more{
  display: inline-block;
  font-size:12px;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.read-more .fa{
  margin-left: 4px;
}

.blog-article-details .read-more{
  margin-top: 10px;
}


.video-mask{
  position: absolute;
  overflow: hidden;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.video-mask:after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(14,14,14,0.6);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.video-mask .fa{
  position: absolute;
  z-index: 2;
  top:50%;
  left: 50%;
  font-size:50px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery-carousel .owl-prev, 
.gallery-carousel .owl-next{
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  line-height: 34px;
  background:#fff;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.gallery-carousel .owl-prev{
  left: 20px;
}

.gallery-carousel .owl-next {
  right: 20px;
}

.gallery-carousel .owl-prev .fa, 
.gallery-carousel .owl-next .fa{
  color: #02bc00;
}

.gallery-carousel .owl-prev:hover, 
.gallery-carousel .owl-next:hover{
  background-color:#02bc00;
}

.gallery-carousel .owl-prev:hover .fa, 
.gallery-carousel .owl-next:hover .fa{
  color: #fff;
}


.main-contact{
  background:url(../img/bg/main-contact.jpg) center 0 no-repeat;
  background-size: cover;
}

.main-contact2{
  background:url(../img/bg/main-contact2.jpg) center 0 no-repeat;
  background-size: cover;
}

.contact{
  background:url(../img/bg/contact.jpg) center 0 no-repeat;
  background-size: cover;
}

.contact-2 .social{
  margin-top: 40px;
}

.contact-row{
  margin-bottom: 42px;
}

.contact-row .icon-title{
  font-size:14px;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.contact-2 .social{
  text-align: center;
}

.map{
  margin-top: 80px;
  width: 100%;
  height: 450px;
  border: 0;
  text-align: center;
}

.map-info{
  text-align: left;
}

.map-title{
  margin-bottom: 20px;
}

.map-info .fa{
  margin-right: 5px;
}

.contact-address{
  margin-top: 50px;
  text-align: center;
}

.contact-address-item .icon-title{
  font-size: 14px;
  letter-spacing: 0;
  margin-top: 35px;
}

/* footer styles */

.site-footer
{
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
  width: 100%
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:none;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}

.site-footer ul.social-icons {
  display: flex !important;
  justify-content: center !important;
}

.site-footer ul.social-icons li {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.site-footer .social-icons a
{
  width:40px;
  height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d;
  display:flex;
  justify-content: center;
  align-items: center;
  /* padding-top: 11px; */
  /* padding-bottom: 11px; */
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }

  .bgc-light {
    padding-top: 56px;
  }

  .checklist-item {
    margin-top: 20px;
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
  .bg-about-1{
    background: #f1f1f1;
  }
  .bg-about-2{
    background: #fff;
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:none;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.instagram:hover
{
  background-color:#e91e63
}
.social-icons a.youtube:hover
{
  background-color:#f44336
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}

.footer{
  font-size:13px;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-top{
  padding:55px 0;
  background-color: #1a1a1a;
}

.footer .widget-title .brand{
  margin-top: 8px;
}

.footer .widget-title{
  position: relative;
  font-size:13px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 32px;
}

.footer .widget-title:before{
  content:'';
  position: absolute;
  top:100%;
  margin-top: 8px;
  left: 0;
  width: 20px;
  border-top: 1px solid #02bc00;
}

.footer .widget-links{
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: none;
}

.footer .widget-links li{
  margin-bottom: 14px;
}

.footer .widget-links a{
  color: inherit;
}

.footer .widget-links a:hover{
  color:#02bc00;
  text-decoration: none;
}

.footer-bottom{
  padding: 28px 0;
  background-color: #141414;
}

.copy{
  margin-bottom: 15px;
}

.social{
  margin-top: -7px;
  margin-left: -30px;
  width: 100vw;
}

.social a{
  font-size: 15px;
  display: inline-block;
  padding: 20px;
  /* margin-left:30px; */
  margin-top: 7px;
  color: #C2C2C2;
}

.social a:hover{
  color: #02bc00;
}

.social-round a{
  margin-left:10px;
  text-align: center;
  width: 42px;
  height: 42px;
  line-height: 40px;
  border:2px solid #02bc00;
  border-radius: 50%;
}

.social-round a .fa{
  color:#141414;
}

.social-round a:hover{
  background-color:  #02bc00;
}

.social-round a:hover .fa{
  color:  #fff;
}

.modal-open{
  overflow: visible;
  padding-right: 0!important;
}

.modal{
  color: #fff;
  text-align: center;
}

.modal .form-control{
  height: 50px;
  font-size:12px;
  border-width: 1px;
}

.modal textarea.form-control{
  height: 120px;
}

.modal label.error{
  color: #fff;
}

.modal-dialog{
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 90%;
  margin:25px auto;
}

.modal-content{
  border:0;
  opacity: 0;
  background-color:rgba(20,20,20,0.95);
  padding: 20px 30px 40px;
  border-radius:0;
  -webkit-box-shadow:none;
  box-shadow: none;
}

.modal.fade .modal-dialog{
  -webkit-perspective: 1300px;
     -moz-perspective: 1300px;
          perspective: 1300px;
}

.modal.fade .modal-content{
  -webkit-transform-style: preserve-3d;
     -moz-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(-3000px) rotateY(90deg);
     -moz-transform: translateZ(-3000px) rotateY(90deg);
      -ms-transform: translateZ(-3000px) rotateY(90deg);
          transform: translateZ(-3000px) rotateY(90deg);
  opacity: 0;
}

.modal.fade.in .modal-content{
    -webkit-animation: slit .7s forwards ease-out;
    -moz-animation: slit .7s forwards ease-out;
    animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
  50% { -webkit-transform: translateZ(-250px) rotateY(60deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
  100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
  50% { -moz-transform: translateZ(-250px) rotateY(60deg); opacity: .5; -moz-animation-timing-function: ease-out;}
  100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
  50% { transform: translateZ(-250px) rotateY(60deg); opacity: 1; animation-timing-function: ease-in;}
  100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

.modal-header{
  border:0;
  min-height: 0;
  text-align: center;
}

.close{
  display: block;
  font-size: 12px;
  font-weight: 100;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-shadow: none; 
  cursor: pointer;
  border-radius: 50%;
  opacity: 1;
  filter: alpha(opacity=1);
  -webkit-transition: all 0.2s linear;
       -o-transition: all 0.2s linear;
          transition: all 0.2s linear;
}

.close span{
  display: block;
}

.close:hover,
.close:focus {
  color: #02bc00;
  opacity:1;
  filter: alpha(opacity=1);
}

.modal-header .close{
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 20px;
  font-size: 40px;
}

.modal-title{
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
}

.modal-subtitle{
  font-size: 12px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.1em;
}

.modal-body{
  padding:20px 0 0;
}

.modal-body .form-group{
  margin-bottom: 30px;
}

.modal-message .modal-content{
  padding-top: 55px;
  padding-bottom: 55px;
}



/*Responsive styles*/




/* 14.1 Min width 768px */



@media (min-width: 768px){



  /* Header */



  .navbar {
    padding-top: 50px;
  }

  .brand{
    margin:0;
  }


  /* Main */



  .opener{
    padding: 300px 0;
  }



  /* Portfolio */



  .isotope .isotope-item{
    width: 50%;
  }

  .isotope .isotope-item.w2{
    width: 100%;
  }

  .isotope.col-3 .isotope-item{
    width: 50%;
  }



  /* Footer */



  .copy{
    float: left;
    margin-bottom: 0;
  }


  .footer-bottom .social{
    text-align: center;
    margin-left: 0;
  }



  /* Modals */



  .modal:before {
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
  }

  .modal-dialog {
    width: 550px;
  }
}



/* 14.2 Min width 992px */



@media (min-width: 992px){



  /* Content styles */



  .md-pull-right{
    float: right;
  }

  .text-right-md{
    text-align: right;
  }



  /* Backgrouns */



  .bgc-light-md{
    background-color: #f0f5f9;
    
  }



  /* About */



  .col-about-right{
    padding-left:30px;
  }

  .col-about-left{
    padding-right: 30px;
  }

  .banner-section .btn{
    margin-top:0;
  }



  /* Navigation */



  .navbar-nav > li{
    border-bottom: 0;
    margin-left: 36px;
  }

  .navbar.affix .navbar-nav > li > a{
    margin-bottom: 0;
  }



  /* Portfolio */



  .isotope .isotope-item{
    width: 33.333333%;
  }

  .isotope .isotope-item.w2{
    width: 66.666666%;
  }

  .isotope.col-2 .isotope-item{
    width: 50%;
  }


  /* Contact */



  .col-contact{
    border-left:1px solid #E1E1E1;
  }
}



/* 14.3 Min width 1200px */




@media (min-width: 1200px){



  /* Portfolio */



  .isotope .isotope-item{
    width: 25%;
  }

  .isotope .isotope-item.w2{
    width: 50%;
  }

  .isotope.col-3 .isotope-item{
    width: 33.333333%;
  }



  /* About */



  .col-about-right{
    padding-left: 60px;
  }

  .col-about-left{
    padding-right: 80px;
    padding-left: 80px;
  }

  .feature-box-wrap{
    margin-top: 50px;
  }
}

.review-img{
    display: flex;
    flex-direction: column;
    align-items: center
}

.about-square1 {
  max-height: 500px;
  padding: 20px 20px 20px 20px;
  object-position: 50% 50%;
  object-fit: fill;
}

.about-square2 {
  padding: 80px;
  font-size: 30px;
  min-height: 620px;
  display: table;
}

.about-square2 p {
  display: table-cell;
  vertical-align: middle;
}

.module-about-square {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  font-size: 30px;
  min-height: 620px;
}

.about-square3 {
  padding: 80px;
  font-size: 24px;
}

.about-square4 {
  max-height: 500px;
  padding: 20px 20px 20px 20px;
  object-position: 50% 50%;
  object-fit: cover;
}

.about-img {
  max-height: inherit;
  object-position: 50% 50%;
  object-fit: contain;
}


/* affiliate page stuff here! */

iframe {
  width: 100%;
  height: 460px;
  margin-top: 70px;
}

.affiliate-featured-image {
  padding: 0px !important;
  Margin: 0px !important;
}

.affiliate-featured-image p {
  padding: 0px !important;
  Margin: 0px !important;
}

/* promo page stuff here! */

.promo-featured-image {
  padding: 0px !important;
  Margin: 0px !important;
}

.promo-featured-image p {
  padding: 0px !important;
  Margin: 0px !important;
}

.promo-banner-image {
  padding-top: 40px;
  padding-bottom: 40px;
}


/* moved from affiliate_template.tpl */

#rev_slider {
  height: 800px;
}
.rev_slider_wrapper {
  height: 800px;	
  max-height: 800px !important;
}
.tp-fullwidth-forcer {
  height: 800px;
  max-height: 800px !important;
}

/* media overrides */
.MuiTypography-h6 {

}
.aboutpad {
  padding-bottom: 120px !important;
  width: 1210px !important;
}
@media (max-width: 1440px){
  .product-slider__cart3 {
    padding: 4px;
    min-height: 0px;
    font-size: 10px;
  }
  .about-square3 {
    padding: 40px;
    font-size: 17px;
    min-height: 510px;
  }
  .product-details {
    padding: 12px;
  }
  .product-tumb {
    height: 180px;
  }
  .about-square2 {
    padding: 40px;
    font-size: 17px;
    min-height: 510px;
  }
  .icon-title {
    font-size: 16px;
  }
  .icon-circle-2 {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .specs__content {
    padding: 24px 6px 16px;
  }
  .specs__title {
    padding: 9px 9px;
  }
}

/* customer reviews page */

.review-title {
  color: #02bc00;
  text-align: center;
  font-weight: 300;
  width: 100%;
  margin: 30px 0;
}

.testimonial-wrap {
  margin: 10px auto;
  text-align: left;
}
.testimonial-wrap:before, .testimonial-wrap:after {
  content: "";
  display: table;
}
.testimonial-wrap:after {
  clear: both;
}

.testimonial {
  background: white;
  border-radius: 3px;
  border: none;
  box-shadow: 0 2px 0 0 rgba(1, 1, 1, 0.1);
  position: relative;
  color: #666;
  padding: 20px;
  margin-bottom: 30px;
}
.testimonial:before, .testimonial:after {
  position: absolute;
  visibility: visible;
  width: 0;
  height: 0;
  content: "";
  border-style: solid;
  border-color: transparent;
  border-bottom: 0;
}
.testimonial:before {
  border-width: 17px;
  border-top-color: rgba(1, 1, 1, 0.15);
  bottom: -17px;
  left: 14px;
}
.testimonial:after {
  border-width: 15px;
  border-top-color: #fff;
  bottom: -15px;
  left: 16px;
}
.testimonial strong {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.testimonial-author {
  display: block;
  line-height: 1.2;
}
.testimonial-author .name {
  color: #76b0f5;
}
.testimonial-author strong {
  display: block;
  font-weight: 600;
  font-size: 22px;
  color: white;
}
.testimonial-author .name,
.testimonial-author .stars {
  display: block;
  float: left;
}
.testimonial-author .stars {
  display: inline-block;
  margin-left: 20px;
  font-size: 25px;
  line-height: 45px;
  color: #ffbe3e;
}

.cart-summary-line .label {
  padding-left: 0;
  font-weight: 600;
  white-space: inherit;
  padding-right: 10px;
  color:#02bc00;
  text-transform: none;
}

i.referral-confirmed {
  position: relative;
  top: -5px;
}

span.referral-confirmed {
  padding-bottom: 5px;
}

.focus > .prod__title {
  background-color: #02bc00;
}

/* about section responsive fixes */

@media screen and (max-width: 576px) {

  .media-right p {
    font-size: 10px !important;
}

  .media-right h4 {
    font-size: 16px !important;
  }

  .col-about-content > .row > .column {
    margin-top: 20px;
  }

}

@media screen and (max-width: 1199px) {
  .media-right p {
      font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .checklist-item {
    margin-top: 50px;
  }

  .icon-title {
    font-size: 20px;
  }

}

/* seo optimization */

h1.subheader, h2.subheader {
  font-family: 'Hind', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color:#141414;
  overflow-x:hidden;
  padding-right: 0!important;
}

.coupon-block:hover {
    background-color: #ff7d79;
}

.coupon-block {
	color: white !important;
    background-color: #d9534f;
    padding: 10px 13px !important;
    font-size: 12pt;
    position: relative !important;
    max-width: inherit !important;
	border: none;
}
.cart-summary-voucher {
	background-color: #00acff !important;
    color: white !important;
    padding: 5px;
    line-height: 1;
}
.label-voucher {
	color: #fff !important;
}
.activated-vouchers {
	font-weight: 600;
    text-transform: none;
}
.block-promo.promo-highlighted {
    font-weight: 600 !important;
}
.block-promo .promo-name a {
    float: right;
    margin: -4px;
    padding: 0;
}

/* for /desktops and /laptops */

.abt-text-r {
  min-height: 400px;
  padding-top: 50px;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-text-l {
  min-height: 400px;
  padding-top: 50px;
  padding-right: 30px; 
  padding-bottom: 50px;
  padding-left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-img-l {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.abt-img-r {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.abt-img-checklist {
  background: url(../img/bg/about1.webp) center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.abt-img-youtube {
  background: url(../img/bg/carlos.webp) center no-repeat;
  background-size: cover;
  min-height: 400px;
}

.abt-img-desktop1 {
  background:url(../img/bg/abt-img-desktop1.png) center no-repeat;
  background-size: cover;
}

.abt-img-desktop2 {
  background:url(../img/bg/abt-img-desktop2.png) center no-repeat;
  background-size: cover;
}

.abt-img-laptop1 {
  background:url(../img/bg/abt-img-laptop1.png) center no-repeat;
  background-size: cover;
}

.abt-img-laptop2 {
  background:url(../img/bg/abt-img-laptop2.png) center no-repeat;
  background-size: cover;
}

.abt-bg-1 {
  background:url(../img/bg/about-bg-1.webp) center no-repeat;
  background-size: cover;
}

.abt-bg-2 {
  background:url(../img/bg/about-bg-2.webp) center no-repeat;
  background-size: cover;
}

.abt-bg-3 {
  background:url(../img/bg/about-bg-3.webp) center no-repeat;
  background-size: cover;
}

.abt-bg-4 {
  background:url(../img/bg/about-bg-4.webp) center no-repeat;
  background-size: cover;
}


.abt-green-border {
  height: 90%;
  width: 98%;
  padding: 10px 10px 10px 10px;
  border:1px solid #02bc00;
}

@media screen and (max-width: 991px) {

  .abt-row-2 {
    flex-direction: column-reverse;
  }

  .abt-img-l {
    height: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .abt-img-r {
    height: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .abt-green-border {
    height:380px;
  }

  .abt-text-l, .abt-text-r {
    padding-top: 20px;
  }

}

.warranty-section {
  padding-top: 0px;
  padding-bottom: 40px;
}

/* HOME BANNER FIXES */

/* for banners with foreground images... */
img.banner-image-fg {
  max-height: 600px;
  /* padding-top: 50px; */
  width: 100% !important;
}

.container.image-banner {
  height: 80% !important;
}

.row.image-banner {
  justify-content: center;
  height: 125%;
}

/* for normal text banners... */

@media screen and (max-width: 576px) {
  .forcefullwidth_wrapper_tp_banner {
    margin-top: -180px !important;
    margin-bottom: -160px !important;
  }

  img.banner-image-fg {
    max-height: 400px;
  }
}

/* BIG HOMEPAGE BUTTONS */

.container.bhbuttons {
  background-color: white;
}

.bh-button-row {
  padding-top: 20px;
  padding-bottom: 20px;
}

.bh-button-txt {
  
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}

.big-homepage-button:hover {
  color: black !important;
}

.big-homepage-button-outer {
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.big-homepage-button {
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 300px;
  font-size: 28px;
  padding: 10px;
}

@media screen and (max-width: 576px) {

  .big-homepage-button {
      height: 80px;
      width: 200px;
      font-size: 15px;
  }
}

.contact-faq {
  background:url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
}

.players-banner {
  background:url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
}

.promo-banner-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
}

@media screen and (max-width: 575px) {
  .promo-banner-image-wrapper {
    min-height: 200px;
    width: 100%;
  }
}

.promo-config-headings {
  height: 104px;
}

@media screen and (max-width: 575px) {
  .promo-config-headings {
    height: 104px;
  }
}

/* moved from promotion_module_template.tpl */

.yourspecs li {
	font-size: 10pt;
  line-height: 1.6;
}

@media (max-width: 1400px) {
	.section-padding { 	padding: 0px 0px; }
	.yourspecs li {
		line-height: 1.6;
		font-size: 12pt;
	}
}

.herobg4 {
  background: url(../img/slider/herobg4.webp) center 0 no-repeat;
  background-size: cover;
  min-height: 700px;
}