.main .inner {
  display: flex;
  flex-direction: column;
  color: #42474c;
}
.main .inner > * {
  margin:10px;
}
h2 {
  align-self: center;
}
/* Slider begins here */
.sliderAndDescriptionContainer {
   display: flex;
}
.slider{
  min-width: 50%;
  width:600px;
  height: 400px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  position: relative;
  background-color: #56b0d2;
  border-radius: 20px;
}
.slider img {
  opacity: 0;
  position: absolute;
  top:0;
  transition: 1s opacity;
  max-width:100%;
  max-height:100%;
}
.slider img.active {
  opacity: 1;
}

.arrowLeft,
.arrowRight {
  position: absolute;
  top: 0;
  bottom: 0;
  font-size: 36px;
  background-color: #56b0d2;
  padding: 5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}
.arrowLeft {
  left: 0;
}
.arrowRight {
  right: 0;
}
.arrowLeft:hover,
.arrowRight:hover {
  background-color: #63d2af;
}
.arrowLeft span,
.arrowRight span {
  display: block;
}
/*slider ends here*/
.descriptionSmall {
  padding: 20px;
  font-size: 20px;
}
.descriptionSmall p {
  margin-bottom: 10px;
}
.descriptionSmall p.noMargin {
  margin: 0;
}
.descriptionSmall .bold {
  font-weight: bold;
}
.descriptionSmall p.dot {
  padding-left: 15px;
  position: relative;
}
.descriptionSmall p.dot:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50%);
  height: 6px;
  width: 6px;
  background-color: #63d2af;
  border-radius: 100%;
}

.main .inner .description {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
  font-size: 20px;
}
.description h3 {
  margin-bottom: 10px;
}
.description h3:first-child {
  align-self: center;
}
.description p {
  margin-bottom: 10px;
}
.description p.dot {
  padding-left: 15px;
  position: relative;
}
.description p.dot:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50%);
  height: 6px;
  width: 6px;
  background-color: #63d2af;
  border-radius: 100%;
}
.description .bold {
  font-weight: bold;
}

@media (max-width: 1200px) {
  .main .inner .description {
    padding: 0 3%;
  }
}
@media (max-width: 768px) {
  .sliderAndDescriptionContainer {
    flex-direction: column;
  }
  .slider {
    width: 100%;
  }
  .slider img {
    height: 100%;
    object-fit: contain;
    width: 80%;
  }
}
