/* VARIABLES */
/* MIXINS */
/* FUNCTIONS */
/* ADJUSTMENT */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
  .mt0 {
    margin-top: 0vw !important;
  }
  .mb0 {
    margin-bottom: 0vw !important;
  }
  .mt5 {
    margin-top: 1.3333333333vw !important;
  }
  .mb5 {
    margin-bottom: 1.3333333333vw !important;
  }
  .mt10 {
    margin-top: 2.6666666667vw !important;
  }
  .mb10 {
    margin-bottom: 2.6666666667vw !important;
  }
  .mt15 {
    margin-top: 4vw !important;
  }
  .mb15 {
    margin-bottom: 4vw !important;
  }
  .mt20 {
    margin-top: 5.3333333333vw !important;
  }
  .mb20 {
    margin-bottom: 5.3333333333vw !important;
  }
  .mt25 {
    margin-top: 6.6666666667vw !important;
  }
  .mb25 {
    margin-bottom: 6.6666666667vw !important;
  }
  .mt30 {
    margin-top: 8vw !important;
  }
  .mb30 {
    margin-bottom: 8vw !important;
  }
  .mt35 {
    margin-top: 9.3333333333vw !important;
  }
  .mb35 {
    margin-bottom: 9.3333333333vw !important;
  }
  .mt40 {
    margin-top: 10.6666666667vw !important;
  }
  .mb40 {
    margin-bottom: 10.6666666667vw !important;
  }
  .mt45 {
    margin-top: 12vw !important;
  }
  .mb45 {
    margin-bottom: 12vw !important;
  }
  .mt50 {
    margin-top: 13.3333333333vw !important;
  }
  .mb50 {
    margin-bottom: 13.3333333333vw !important;
  }
}
.merit__item {
  padding: 20px;
  background: #fff;
}

.solar__img {
  padding: 10px;
  background: #fff;
}
.solar__img__caption {
  margin-bottom: 10px;
  padding: 5px;
  background: #717171;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .solar__img__caption {
    font-size: 0.9375rem;
  }
}

.comparison {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  padding: 15px;
  background: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .comparison {
    width: 100%;
    padding: 10px;
  }
}
.comparison__title {
  width: 48%;
  margin-bottom: 10px;
  padding: 5px 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .comparison__title {
    font-size: 0.8125rem;
  }
}
.comparison__title:first-of-type {
  background: #c03;
}
.comparison__title:nth-of-type(2) {
  background: #11913b;
}
.comparison .img {
  width: 100%;
  margin: 0;
}

.point {
  align-items: center;
}
.point .col__item:first-of-type, .point .col__item:nth-of-type(3) {
  width: 48%;
}
.point .col__item:nth-of-type(2) {
  width: 3%;
}
.point .col__item:nth-of-type(2) .img {
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .point .col__item:nth-of-type(2) .img {
    width: 8%;
  }
}

.banner {
  display: block;
  margin: auto;
  background: #fff;
  border: 1px solid #c03;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .banner {
    font-size: 0.75rem;
  }
}
.banner:hover {
  opacity: 0.7;
}
.banner > *:last-child {
  margin-bottom: 0;
}
.banner .img {
  margin: 0 auto;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  .banner .img {
    width: 90%;
  }
}
.banner .txt {
  padding: 10px;
  position: relative;
  background: #c03;
  color: #fff;
}
.banner .txt::after {
  content: "";
  display: block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  right: 8%;
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0);
  border-left-color: rgba(255, 255, 255, 0);
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .banner .txt::after {
    height: 12px;
    width: 12px;
    right: 4%;
  }
}
/*# sourceMappingURL=solar.css.map */