/***** BASE STYLES *****/
html, body {
  font-family: Helvetica, Arial, sans-serif;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  height: 100%;
}

/*pre-nav*/
/*nav, pre-nav*/
/***** NAVBAR *****/
/*****PRE NAV *****/
.pre-nav {
  height: 120px;
  width: 100%;
  background-color: yellow;
  color: #1b1b1b;
}

.pre-nav-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr 1fr;
      grid-template-columns: 1fr 3fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  height: 100%;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 28px;
  cursor: pointer;
}

.logo .material-icons {
  font-size: 70px;
  padding: 5px;
}

.logo a {
  color: #1b1b1b;
}

.pre-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  cursor: pointer;
}

.pre-left p {
  margin: 0;
  font-size: 22px;
}

.pre-right {
  cursor: pointer;
}

.pre-right .material-icons {
  font-size: 30px;
}

.display-login {
  display: none;
}

.login {
  position: absolute;
  background-color: #1d1d1d;
  border: 1px solid #8a8a8a;
  width: 400px;
  height: 200px;
  right: 70px;
  top: -500px;
  opacity: 1;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.login input {
  margin: 3px;
  background: #313131;
  color: yellow;
  border: 2px solid grey;
}

.login .login-button {
  background: yellow;
  width: 20%;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
  -webkit-transition: .5s;
  transition: .5s;
}

.login .login-button:hover {
  background: black;
  color: yellow;
  border: 1px solid yellow;
  width: 20%;
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
}

.login .login-button p {
  font-size: .6rem;
}

#loginopen {
  -webkit-transition: .5s;
  transition: .5s;
}

/*****NAVBAR *****/
.navbar {
  background-color: #1b1b1b;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 80px;
  line-height: 80px;
  font-size: 14px;
  padding: 0 0px;
}

.navbar a {
  text-decoration: none;
  color: #fff;
}

.navbar ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  height: inherit;
  line-height: inherit;
  padding: 0 10px;
  margin: 0;
}

.navbar ul li {
  display: inline-block;
}

.navbar ul li a {
  display: block;
  text-align: center;
  min-width: 120px;
  padding: 0 10px;
  -webkit-transition: .5s;
  transition: .5s;
}

.navbar ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-transition: .5s;
  transition: .5s;
}

.navbar ul li a .material-icons {
  font-size: 22px;
  vertical-align: middle;
  margin-left: 10px;
}

.navbar .navbar-toggler {
  display: none;
}

@media (max-width: 990px) {
  .pre-nav {
    height: 100px;
    width: 100%;
  }
  .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 18px;
  }
  .logo .material-icons {
    font-size: 50px;
    padding: 5px;
  }
  .login {
    width: 300px;
    height: 200px;
    right: 10px;
    top: -500px;
    z-index: 11;
  }
  .pre-left p {
    margin: 0;
    font-size: 13px;
    display: none;
  }
  .pre-right .material-icons {
    font-size: 20px;
    padding: 5px;
  }
  .navbar {
    padding: 0;
    height: 50px;
  }
  .navbar ul {
    display: block;
    margin-top: 50px;
    width: 100%;
    padding: 0;
    background-color: #353535;
    height: auto;
    /* height: 100vh; */
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all ease-in-out .5s;
    transition: all ease-in-out .5s;
    float: right;
  }
  .navbar ul.open {
    max-height: 100vh;
  }
  .navbar ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .navbar ul li a {
    padding: 0;
  }
  .navbar .navbar-toggler {
    display: block;
    position: absolute;
    height: 40px;
    top: 107px;
    right: 20px;
    background-color: transparent;
    color: #fff;
    /* border: 3px solid #fff; */
    border: none;
    /* border-radius: 4px; */
    outline: none;
    padding: 0 5px;
    cursor: pointer;
  }
  .navbar .navbar-toggler span,
  .navbar .navbar-toggler span::before,
  .navbar .navbar-toggler span::after {
    display: block;
    content: '';
    background-color: yellow;
    height: 3px;
    width: 28px;
    border-radius: 4px;
    -webkit-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
  }
  .navbar .navbar-toggler span::before {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  .navbar .navbar-toggler span::after {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  .navbar .navbar-toggler.open-navbar-toggler span {
    /* transform: rotate(90deg); */
    background-color: transparent;
    /* transform: scale(0.85) rotate(270deg); */
  }
  .navbar .navbar-toggler.open-navbar-toggler span::before {
    -webkit-transform: translateY(0px) rotate(45deg);
            transform: translateY(0px) rotate(45deg);
    /* transform: translateY(0px) scale(0.75) rotate(45deg); */
  }
  .navbar .navbar-toggler.open-navbar-toggler span::after {
    -webkit-transform: translateY(-3px) rotate(-45deg);
            transform: translateY(-3px) rotate(-45deg);
    /* transform: translateY(-3px) scale(0.75) rotate(-45deg); */
  }
}

/***** DROPDOWN BIKES *****/
.dropdown-content {
  display: none;
  color: #424242;
  background-color: white;
  position: absolute;
  left: 10%;
  top: 185px;
  width: 50%;
  border: 1px solid grey;
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 10;
}

.dropdown-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

.colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.colum h3 {
  height: 45px;
  padding: 0 10px;
  color: #1b1b1b;
}

.colum a {
  color: black;
  line-height: 35px;
  padding: 0 10px;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 50px;
}

.colum a:hover {
  background-color: #ececec;
}

@media (max-width: 990px) {
  .dropdown-content {
    display: block;
    color: #e9e9e9;
    background-color: #252525;
    position: absolute;
    top: 150px;
    left: -110%;
    width: 100%;
    border: none;
    border-top: 1px solid grey;
    border-bottom-right-radius: 1px solid grey;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .dropdown:hover .dropdown-content {
    left: 0px;
  }
  .dropdown-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .colum a {
    color: white;
  }
  .colum h3 {
    color: yellow;
  }
}

/***** DROPDOWN BIKE PARTS *****/
.dropdown-parts-content {
  display: none;
  color: #424242;
  background-color: white;
  position: absolute;
  left: 20%;
  top: 185px;
  width: 30%;
  border: 1px solid grey;
}

.dropdown-parts:hover .dropdown-parts-content {
  display: block;
  z-index: 10;
}

.dropdown-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.colum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.colum h3 {
  height: 45px;
  padding: 0 10px;
  color: #1b1b1b;
}

.colum a {
  color: black;
  line-height: 35px;
  padding: 0 10px;
  -webkit-transition: .5s;
  transition: .5s;
  border-radius: 50px;
}

.colum a:hover {
  background-color: #ececec;
}

@media (max-width: 990px) {
  .dropdown-parts-content {
    display: block;
    color: #e9e9e9;
    background-color: #252525;
    position: absolute;
    top: 150px;
    left: -110%;
    width: 100%;
    border: none;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    -webkit-transition: .5s;
    transition: .5s;
  }
  .dropdown-parts:hover .dropdown-parts-content {
    left: 0px;
  }
  .dropdown-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .colum a {
    color: white;
  }
  .colum h3 {
    color: yellow;
  }
}

/***** SLIDER *****/
.arrows {
  text-align: center;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  background-color: transparent;
  margin-top: -70px;
  margin-left: -520px;
}

.arrows i {
  font-size: 80px;
  color: #1b1b1b;
  margin-top: 30px;
  cursor: pointer;
}

.slider {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  width: 100%;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.slider.gold {
  background-color: yellow;
}

.slider.blue {
  background-color: #00c3ff;
}

.slider.green {
  background-color: #bbff00;
}

.slider-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.slider-content h1 {
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #292929;
  padding: 10px;
  border-left: none;
  border-bottom: none;
}

.slider-content h2 {
  text-transform: uppercase;
  font-weight: 100;
}

.slider-content h1,
.slider-content h2 {
  margin-top: 0;
  margin-bottom: 0;
  color: #1b1b1b;
}

.button {
  background-color: transparent;
  border: 1px solid #494949;
  border-radius: 50px;
  cursor: pointer;
  padding: 10px;
  margin-top: 15px;
  color: #1b1b1b;
  -webkit-transition: 1s;
  transition: 1s;
}

.button:hover {
  background-color: rgba(51, 51, 51, 0.322);
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  color: white;
}

.button a {
  text-decoration: none;
  color: #1b1b1b;
}

.triangle {
  background-color: rgba(0, 0, 0, 0.123);
  -webkit-clip-path: polygon(69% 29%, 0% 100%, 100% 100%);
          clip-path: polygon(69% 29%, 0% 100%, 100% 100%);
  height: 300px;
  width: 200px;
  position: absolute;
  margin-left: -100px;
  margin-top: -50px;
}

.slider-pic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 110%;
  background-size: cover;
  background-position: center bottom;
  -webkit-clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
}

.slider-pic.gold {
  background-image: url(/img/bike1med.jpeg);
}

.slider-pic.blue {
  background-image: url(/img/bike-service-med.jpeg);
}

.slider-pic.green {
  background-image: url(/img/bike-passion-med.jpeg);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fader;
          animation-name: fader;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

@-webkit-keyframes fader {
  from {
    opacity: .1;
  }
  to {
    opacity: 1;
  }
}

@keyframes fader {
  from {
    opacity: .1;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 790px) {
  .slider {
    height: 250px;
  }
  .slider-content h1 {
    font-size: 19px;
  }
  .slider-content h2 {
    font-size: 15px;
  }
  .arrows i {
    font-size: 50px;
  }
  .arrows {
    margin-top: -55px;
    margin-left: -175px;
  }
  .triangle {
    height: 200px;
    width: 100px;
    margin-left: -50px;
    margin-top: -30px;
  }
}

/***** HOT CARDS *****/
.hot-cards-wrapper {
  margin-top: 0px;
  margin-bottom: 0px;
}

.hot-cards-wrapper h2 {
  text-align: right;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 1rem;
  background-color: #585858;
  width: 55%;
  color: white;
  padding: 10px 25px 10px 0px;
  -webkit-clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
}

.hot-cards {
  height: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 2px;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: hidden;
}

.hot-cards:hover {
  border: 1px solid white;
  -webkit-box-shadow: 0px 0px 30px -5px #3f3f3f;
          box-shadow: 0px 0px 30px -5px #3f3f3f;
}

.hot-cards-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 5px;
  margin: 0 0px;
}

.hot-card-head {
  overflow: hidden;
}

.hot-card-images {
  position: relative;
}

.hot-card-images .sale {
  position: absolute;
  top: 0px;
  font-size: 15px;
  padding: 4px;
  background-color: #252525;
  color: yellow;
  border-radius: 2px;
}

.hot-card-images .sale.new {
  position: absolute;
  top: 0px;
  font-size: 15px;
  padding: 4px;
  background-color: #fdf900;
  color: #383838;
  border-radius: 2px;
}

.hot-card-images img {
  width: 100%;
  height: 100%;
  -webkit-transition: .5s;
  transition: .5s;
}

.hot-card-images img:hover {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

.card-title {
  position: relative;
}

.card-title,
.prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
}

.card-title h3 {
  font-size: 1rem;
}

.add-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.add {
  opacity: 0;
  margin-bottom: 20px;
  background-color: yellow;
  border-radius: 50px;
  padding: 6px;
  -webkit-transition: .5s;
  transition: .5s;
  width: 70px;
  text-align: center;
  cursor: pointer;
}

.hot-cards:hover .add {
  opacity: 1;
}

.prices {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 1rem;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: grey;
}

.discount {
  color: #78c900;
}

@media (max-width: 990px) {
  .hot-cards-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }
  .add {
    opacity: 1;
    padding: 3px;
    width: 50px;
  }
  .card-title h3 {
    font-size: .8rem;
  }
  .prices {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    font-size: .8rem;
  }
  .hot-cards {
    border: 1px solid white;
    -webkit-box-shadow: 0px 0px 15px -8px #3f3f3f;
            box-shadow: 0px 0px 15px -8px #3f3f3f;
  }
  .hot-cards-wrapper h2 {
    width: 70%;
  }
  .hot-card-images .sale {
    font-size: 11px;
  }
  .hot-card-images .sale.new {
    font-size: 11px;
  }
  .add-cart .material-icons {
    font-size: 15px;
  }
}

/***** IMPRESSIONS-SECTION *****/
.impressions-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.new-coop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 7px;
  margin-bottom: 5px;
}

.new-coop h2 {
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  background-color: #585858;
  width: 55%;
  font-size: 1rem;
  color: white;
  padding: 10px 5px 10px 35px;
  -webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
}

.impressions-section img {
  width: 100%;
  height: auto;
}

.impression {
  text-align: center;
}

.impression.one {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 50% 0, 75% 100%, 0 100%);
          clip-path: polygon(0 0, 50% 0, 75% 100%, 0 100%);
  margin-right: -24%;
}

.impression.two {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 50% 0, 75% 100%, 25% 100%);
          clip-path: polygon(0 0, 50% 0, 75% 100%, 25% 100%);
}

.impression.three {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
  margin-left: -24%;
  background: yellow;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 4px solid white;
}

.impression.three h2 {
  font-size: 3vh;
  font-family: 'Courier New', Courier, monospace;
  margin-top: -5px;
}

.impression.three .firefly-logo {
  font-size: 15vh;
}

.impression.three h3 {
  font-size: 2vh;
  border: 1px solid black;
  padding: 10px;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.impression.three h3 a {
  text-decoration: none;
  color: black;
}

.impression.three h3 a:hover {
  color: yellow;
}

.impression.three h3:hover {
  background: #2e2e2e;
  color: yellow;
}

.firefly {
  margin-right: -14%;
}

.impression.three .arrow {
  font-size: 3vh;
}

@media (max-width: 790px) {
  .impressions-section img {
    width: 100%;
    height: auto;
  }
  .impression.three .firefly-logo {
    font-size: 5vh;
    margin-top: 20px;
  }
  .impression.three h2 {
    font-size: 2vh;
  }
  .impression.three h3 {
    font-size: 1.5vh;
    padding: 5px;
  }
}

/***** COOPERATIONS *****/
.cooperations {
  margin-top: -5px;
}

.cooperations .material-icons {
  font-size: 4rem;
  margin-top: 16px;
}

.brands, .brand-names {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 0;
}

@media (max-width: 790px) {
  .cooperations .material-icons {
    font-size: 2rem;
  }
  .brand-names {
    font-size: 0.7rem;
  }
}

/***** LATEST NEWS *****/
.latest-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 1px;
  margin-bottom: 5px;
}

.latest-news h2 {
  text-align: right;
  text-transform: uppercase;
  margin: 0px;
  font-size: 1rem;
  background-color: #585858;
  width: 55%;
  color: white;
  padding: 10px 25px 10px 0px;
  -webkit-clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
}

.latest-news-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news {
  width: 99%;
}

.news-head img {
  width: 100%;
}

.news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: -4px;
  cursor: pointer;
}

.news-content h2 {
  font-size: 1.4rem;
  padding: 15px;
  margin: 0;
  font-weight: 200;
}

.news-content p {
  margin-bottom: 0;
  margin-top: 30px;
  font-size: .8rem;
}

@media (max-width: 790px) {
  .news {
    width: 98%;
  }
  .news-content h2 {
    font-size: .9rem;
  }
  .news-content p {
    font-size: .7rem;
  }
  .latest-news-section {
    margin: 0px 2px 0px 2px;
  }
}

/***** TESTIMONIAL *****/
.testimonial-wrapper {
  background: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 70%;
  position: relative;
}

.testimonial-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 100%;
  margin-top: -10%;
}

.testimonial-slider-pic {
  margin-top: 50px;
}

.testimonial-slider-pic img {
  width: 25%;
  -webkit-clip-path: circle(35% at 50% 50%);
          clip-path: circle(35% at 50% 50%);
}

.testimonial-slider-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonial-slider-content p {
  width: 65%;
}

.arrows-testimonial {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 5%;
}

.arrows-testimonial i {
  font-size: 50px;
  cursor: pointer;
}

.customers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5px;
  margin-bottom: 5px;
}

.customers h2 {
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  background-color: #585858;
  width: 55%;
  font-size: 1rem;
  color: white;
  padding: 10px 5px 10px 35px;
  -webkit-clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(2% 0, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 790px) {
  .testimonial-slider-pic img {
    width: 65%;
  }
  .testimonial-slider-content * {
    font-size: .8rem;
  }
  .testimonial-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    width: 100%;
    margin-top: -35%;
  }
}

/***** FOOTER *****/
.footer {
  height: 100px;
  background: #1b1b1b;
  color: yellow;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.copyright p {
  margin: 0;
  font-size: 1rem;
}

.footer-menu a {
  text-decoration: none;
  color: yellow;
  padding: 5px;
  -webkit-transition: .5s;
  transition: .5s;
  text-transform: uppercase;
  font-size: 1rem;
}

.footer-menu a:hover {
  color: #fcfcfc;
}

.social-media ion-icon {
  font-size: 1.5rem;
  cursor: pointer;
  -webkit-transition: .5s;
  transition: .5s;
}

.social-media ion-icon:hover {
  color: white;
}

@media (max-width: 790px) {
  .footer {
    height: 60px;
  }
  .copyright p {
    font-size: .7rem;
  }
  .footer-menu a {
    font-size: .7rem;
  }
  .social-media ion-icon {
    font-size: .7rem;
  }
}

/***** SHOP *****/
.shop-banner {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1))), url(/img/shop/shop-banner.jpg);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url(/img/shop/shop-banner.jpg);
  width: 100%;
  height: 20%;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop-banner h2 {
  margin: 0;
  color: white;
  font-weight: 200;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.604);
  padding: 10px;
  border-radius: 3px;
}

@media (max-width: 790px) {
  .shop-banner {
    height: 20%;
  }
  .shop-banner h2 {
    font-size: .8rem;
    padding: 7px;
  }
}

/***** CHECKBOX *****/
.checkbox-section {
  width: 40%;
  margin: 0;
  margin-left: 25px;
}

.checkbox-section h2 {
  font-weight: 500;
}

.checkbox-section h3 {
  font-weight: 200;
}

.checkbox-section label {
  font-size: 1rem;
}

/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-top: 5px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  -webkit-transition: .5s;
  transition: .5s;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: black;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid yellow;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-filter {
  display: none;
}

@media (max-width: 790px) {
  .checkbox-section {
    position: absolute;
    left: -900px;
    z-index: 13;
    background: #f8f8f8;
    width: 50%;
    margin: 0;
    padding-left: 10px;
    -webkit-transition: .5s;
    transition: .5s;
  }
  #filter {
    position: absolute;
  }
  .mobile-filter {
    display: block;
    z-index: 25;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 10px;
    padding-right: 25px;
    margin-top: -45px;
    cursor: pointer;
  }
}

/***** SHOP-GRID *****/
.shop-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.shop-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 5px;
  margin: 0 25px;
  margin-bottom: 5px;
}

.shop-cards-wrapper {
  margin-top: 0px;
  margin-bottom: 0px;
}

.shop-cards-wrapper h2 {
  text-align: right;
  text-transform: uppercase;
  margin-top: 5px;
  margin-left: 25px;
  margin-bottom: 5px;
  font-size: 1rem;
  background-color: #585858;
  width: 50%;
  color: white;
  padding: 10px 25px 10px 0px;
  -webkit-clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 98% 0, 100% 100%, 0 100%);
}

@media (max-width: 790px) {
  .shop-grid {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    margin: 0;
    margin-bottom: 5px;
  }
  .shop-cards-wrapper h2 {
    margin-left: 0;
  }
  .shop-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/***** SERVICE *****/
.background-services {
  background: #f7f7f7;
}

.service-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
  padding-bottom: 10px;
}

.service-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  width: 70%;
}

.services {
  border: 1px solid #292929;
  border-radius: 2px;
}

.services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-icon {
  padding: 5%;
  margin: 10%;
  border: 1px solid #2e2e2e;
  border-radius: 2px;
  background: yellow;
  color: #272727;
}

.service-name {
  padding-bottom: 5%;
}

.service-icon .material-icons {
  font-size: 4rem;
}

@media (max-width: 790px) {
  .service-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    width: 95%;
  }
}

/***** ABOUT *****/
.team-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}

.team-image {
  height: 300px;
  background-position: center;
}

.team-image.one {
  height: 300px;
  background-image: url(/img/team/team3.jpeg);
  background-size: cover;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1/4;
}

.team-image.two {
  background-image: url(/img/team/team2.jpeg);
  background-size: cover;
}

.team-image.three {
  background-image: url(/img/team/team1.jpeg);
  background-size: cover;
}

.team-image.four {
  background-image: url(/img/team/team4.jpeg);
  background-size: cover;
}

.team-image.five {
  background-image: url(/img/team/team5.jpeg);
  background-size: cover;
  background-position: top;
}

.team-image.six {
  background-image: url(/img/team/team6.jpeg);
  background-size: cover;
}

.team-image.seven {
  background-image: url(/img/team/team7.jpeg);
  background-size: cover;
}

.team-image.eight {
  background-image: url(/img/team/team8.jpeg);
  background-size: cover;
  margin-bottom: 20px;
}

.team-grid p {
  color: white;
  background: rgba(0, 0, 0, 0.575);
  text-align: center;
  margin: 0;
}

@media (max-width: 790px) {
  .team-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
  }
  .team-image.one {
    height: 200px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .team-image {
    height: 200px;
  }
  .team-grid p {
    font-size: .8rem;
  }
  .team-image.eight {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=main.css.map */