/**
 * Fonts
 */

/**
 * Heading styles
 */

/**
 * Paragraph styles
 */

/**
 * Link Styling
 */

/**
 * List Styling
 */

/**
 * Label Arrow
 */

/**
 * Tag
 */

/**
 * Breakpoints
 */

/**
 * Bootstrap Grid
 */

/**
 * Colors
 */

.page-cta {
  background: #fcf6ed;
  padding: 70px 0;
  position: relative;
}

.page-cta h1,
.page-cta h2,
.page-cta h3,
.page-cta h4,
.page-cta h5,
.page-cta h6 {
  font-family: "Sailec";
  font-weight: 500;
  color: #1f271c;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 15px;
}

.page-cta-info {
  max-width: 40%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.page-cta-info h5 {
  margin-bottom: 15px;
}

.page-cta-info h5 span {
  color: #619a43;
}

.page-cta-info p {
  margin: 0;
}

.page-cta-photo-left {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 192px;
}

.page-cta-photo-left img {
  display: block;
  width: 100%;
}

.page-cta-photo-right {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 50px;
  width: 180px;
}

.page-cta-photo-right:before {
  display: block;
  content: "";
  width: 212px;
  height: 212px;
  background: #fff;
  position: absolute;
  left: -15px;
  top: 0;
  border-radius: 50%;
}

.page-cta-photo-right:after {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  height: 39px;
  background: url(../img/icons/label-arrow.svg) no-repeat center center/100% auto;
  background-image: url(../../img/icons/label-arrow.svg);
  width: 25px;
  height: 65px;
  left: -40px;
  bottom: -20px;
  transform: rotate(265deg);
}

.page-cta-photo-right img {
  position: relative;
  display: block;
  width: 100%;
}

@media (max-width: 991px) {
  .page-cta {
    padding: 70px 40px;
  }

  .page-cta-info {
    margin: 0;
    max-width: 60%;
  }

  .page-cta-photo-left {
    display: none;
  }
}

@media (max-width: 767px) {
  .page-cta h1,
  .page-cta h2,
  .page-cta h3,
  .page-cta h4,
  .page-cta h5,
  .page-cta h6 {
    font-size: 20px;
    line-height: 28px;
  }

  .page-cta {
    padding: 20px;
  }

  .page-cta-info {
    max-width: 100%;
  }

  .page-cta-info h5 {
    margin-bottom: 10px;
  }

  .page-cta-photo-right {
    position: static;
    transform: translate(0);
    margin-top: 30px;
    margin: 30px auto 0;
  }

  .page-cta-photo-right:after {
    width: 20px;
    height: 50px;
    left: -30px;
    bottom: 150px;
    transform: rotate(0);
  }
}