.call_to_action {
  width: 100%;
  background: #3e635f;
  display: flex;
  margin: 40px 0;
}
.call_to_action_left {
  padding: 60px 10px 60px 50px;
  width: 50%;
}
.call_to_action_title {
  font-weight: 600;
  font-size: 25px;
  font-size: calc(16px + 9 * ((100vw - 370px) / (1920 - 370)));
  line-height: 130%;
  color: #ffffff;
  margin-bottom: 10px;
}
.call_to_action_description {
  font-weight: 400;
  font-size: calc(14px + 2 * ((100vw - 370px) / (1920 - 370)));
  line-height: 130%;
  color: #ffffff;
  margin-bottom: 35px;
}
.call_to_action_btn {
  padding: 20px 5px;
  font-weight: 700;
  font-size: calc(14px + 2 * ((100vw - 370px) / (1920 - 370)));
  line-height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  width: 100%;
  max-width: 260px;
  background: #ab885d;
  cursor: pointer;
  transition: all linear 0.2s;
}
.call_to_action_right {
  width: 50%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(7% 0%, 100% 0, 100% 100%, 0% 100%);
}

@media (hover: hover) {
  .call_to_action_btn:hover {
    background-color: #7e6546;
  }
}
@media screen and (max-width: 1000px) {
  .call_to_action {
    width: calc(100% + 30px);
    margin: 30px -15px;
  }
  .call_to_action_left {
    padding: 40px 10px 40px 30px;
  }
}
@media screen and (max-width: 700px) {
  .call_to_action_right {
    clip-path: none;
  }
  .call_to_action {
    flex-direction: column-reverse;
  }
  .call_to_action_left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 10px;
  }
  .call_to_action_title {
    text-align: center;
  }
  .call_to_action_description {
    text-align: center;
    margin-bottom: 15px;
  }
  .call_to_action_btn {
    padding: 10px 15px;
    width: fit-content;
  }
  .call_to_action_right {
    width: 100%;
    aspect-ratio: 3/1;
  }
}
@media screen and (max-width: 400px) {
  .call_to_action_right {
    width: 100%;
    aspect-ratio: 2.5/1;
  }
}
