/**
 * Fonts
 */

/**
 * Heading styles
 */

/**
 * Paragraph styles
 */

/**
 * Link Styling
 */

/**
 * List Styling
 */

/**
 * Label Arrow
 */

/**
 * Tag
 */

/**
 * Breakpoints
 */

/**
 * Bootstrap Grid
 */

/**
 * Colors
 */

.home-hero {
  padding-top: 110px;
  position: relative;
}

.home-hero-bg-inner {
  position: relative;
  height: 100%;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-hero-bg-inner:before {
  display: block;
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
  top: 45%;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.home-hero-bg-inner img {
  height: auto;
  position: relative;
  z-index: 2;
}

.home-hero-bg-inner-mobile {
  display: none;
  width: 100%;
}

.home-hero-bg-inner-mobile img {
  width: 100%;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  text-align: center;
  margin-bottom: 10px;
}

.home-hero h1 span {
  color: #fff;
}

.home-hero p {
  color: #000;
  font-size: 19px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.home-hero .btn {
  align-self: center;
  width: auto;
}

.home-hero-rate {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.home-hero-rate-stars {
  display: flex;
  align-items: center;
  margin-right: 8px;
}

.home-hero-rate-stars svg {
  width: 18px;
  height: 18px;
  fill: #ffec63;
}

.home-hero-rate-stars svg:not(:last-child) {
  margin-right: 4px;
}

.home-hero-rate-mark {
  font-family: "Sailec";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1f271c;
  margin-right: 10px;
}

.home-hero-rate-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  text-decoration-line: underline;
  color: #000;
}

.home-hero-rate-link:hover {
  text-decoration-line: none;
  color: #000;
}

.home-hero-info {
  align-self: flex-end;
  background: #3f5836;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  max-width: 290px;
  padding: 16px 16px 20px;
  margin-top: 135px;
  margin-bottom: -38px;
}

.home-hero-info-photo {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  margin-right: 10px;
}

.home-hero-info-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-info p {
  color: #000;
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 0;
  color: #fff;
  line-height: 22px;
  font-weight: 500;
  text-align: left;
}

@media (min-width: 992px) {
  .home-hero {
    margin-bottom: 100px;
  }

  .home-hero:before {
    display: block;
    content: "";
    background: #aed2a7;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    width: calc(100% - 24px);
    height: 100%;
    max-width: 1320px;
    overflow: hidden;
  }

  .home-hero-bg {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    width: calc(100% - 24px);
    height: 100%;
    max-width: 1320px;
    overflow: hidden;
  }
}

@media (max-width: 991px) {
  .home-hero {
    padding: 80px 0 0;
    overflow: hidden;
    margin-right: 12px;
    margin-left: 12px;
    background: #aed2a7;
  }

  .home-hero-bg-inner:before {
    top: -30px;
    transform: translateX(-37%);
    width: 450px;
    height: 450px;
  }

  .home-hero-bg-inner-mobile {
    display: block;
    margin-top: 40px;
  }

  .home-hero-bg-inner-desktop {
    display: none;
  }

  .home-hero-info {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-hero {
    padding: 45px 0px 0;
    margin-bottom: 40px;
  }

  .home-hero .container {
    padding: 0px 12px;
  }

  .home-hero-bg-inner:before {
    width: 350px;
    height: 350px;
  }

  .home-hero p {
    font-size: 17px;
    line-height: 27px;
  }

  .home-hero p {
    line-height: 28px;
    margin-bottom: 15px;
  }

  .home-hero .btn {
    padding: 13px 40px;
  }

  .home-hero-rate {
    margin-top: 17px;
  }

  .home-hero-rate-stars svg {
    width: 15px;
    height: 15px;
  }

  .home-hero-rate-stars svg:not(:last-child) {
    margin-right: 3px;
  }

  .home-hero-rate-mark {
    font-size: 14.6px;
    line-height: 19px;
  }
}

@media (max-width: 575px) {
  .home-hero-bg-inner:before {
    bottom: 5%;
    height: 60vw;
    width: 60vw;
  }
}