@import "fonts.css";

body {
  font-family: "Roboto", sans-serif;
  color: #212121;
}

.container {
  display: flex;
  flex-direction: row;
}

.left-col {
  flex-shrink: 0;
  width: 30%;
  padding-left: 32px;
  padding-right: 24px;
  background-color: #eeeeee;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

.logo {
  width: 173px;
  height: 27px;
  margin: 24px 0 30px 0px;
}

.left-col-hl {
  margin-top: 48px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

p {
  margin-bottom: 29px;
  font-size: 14px;
  text-align: left;
  font-weight: 400;
}

a {
  color: #00B064;
}

.right-col {
  margin-left: 48px;
}

.right-col-header {
  display: flex;
  align-items: flex-start;
}

.right-col-hl {
  font-size: 36px;
  font-weight: 700;
  margin-top: 48px;
}

.right-col-sub-hl {
  color: #8c8c8c;
  font-size: 24px;
  padding-top: 13px;
  font-weight: 700;
}

.icon-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin-bottom: 64px;
}

.right-col-section-hl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 13px;
  width: 100%;
}

.img-container {
  background: #fff;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 200px;
  height: 200px;
  margin-top: 12px;
  margin-right: 12px;
  box-sizing: border-box;
}

.img-container:hover {
  outline: 3px solid rgba(0, 226, 129);
  box-shadow: 0px 2px 12px 0px rgba(0, 226, 129, 0.25);
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-container .overlay-text {
  color: #212121;
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  top: 8px;
  left: 8px;
}

.slidecontainer {
  margin-top: 12px;
  display: flex;
}

.slidecontainer label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 10px;
  display: block;
}

.slider {
  -webkit-appearance: none;
  width: 34px;
  height: 14px;
  border-radius: 100px;
  background:  #000;
  outline: none;
  opacity: 0.5;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:  #fafafa;
  filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2))
    drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.14))
    drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.12));
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:  #fafafa;
  filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.2))
    drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.14))
    drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.12));
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .container {
    flex-direction: column;
  }

  .left-col {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .left-col-hl {
    margin-top: 10px;
  }

  p {
    padding-right: 24px;
  }

  .slidecontainer {
    margin-bottom: 12px;
  }

  .right-col {
    width: 100%;
    margin-left: 24px;
  }

  .right-col-hl {
    font-size: 24px;
  }

  .right-col-sub-hl {
    font-size: 20px;
    padding-top: 0px;
    margin-bottom: 24px;
  }

  .right-col-section-hl {
    font-size: 16px;
  }

  .icon-container {
    margin-bottom: 36px;
  }
}
