.theme-1 .hero {
  background-color: linear-gradient(90deg, #4ADD6F -1.28%, #012FFB 106.2%);
  background-image: linear-gradient(90deg, #4ADD6F -1.28%, #012FFB 106.2%);
  color: #fff;
}
.theme-1 .cta__whatsapp {
  border-color: #68CA42;
}
.theme-1 .cta__call {
  border-color: #2488B9;
}
.theme-1 .cta__form {
  border-color: #0230FB;
}
.theme-1 .btn-stub-primary {
    background-color: #288daf;
    color: #fff;
}
.theme-1 .btn-stub-primary:hover {
  background-color: #e6e6e6;
}

.theme-2 .hero {
  background-color: #FF163E;
  background-image: #FF163E;
  color: #fff;
}
.theme-2 .cta__whatsapp {
  border-color: #68CA42;
}
.theme-2 .cta__call {
  border-color: #48CBF6;
}
.theme-2 .cta__form {
  border-color: #FFB829;
}
.theme-2 .btn-stub-primary {
  background-color: #FFB829;
  color: #000;
}
.theme-2 .btn-stub-primary:hover {
  background-color: #f5a400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.header {
  padding: 50px;
}
@media (max-width: 767px) {
  .header {
    padding: 30px;
  }
}

.hero {
  padding: 60px 0;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 767px) {
  .hero {
    font-size: 18px;
    padding: 40px 0;
  }
}

.cta {
  margin-bottom: 30px;
}
.cta__item {
  position: relative;
  transition: all ease-in-out 0.2s;
  border-radius: 10px;
  margin: 15px;
  flex: 1;
  padding: 55px;
  text-align: center;
  background: #FFF;
  box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  user-select: none;
  color: black;
  border: none;
  border-bottom: solid 5px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .cta__item {
    padding: 20px 35px 20px 15px;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }
}
.cta__item:hover {
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .cta__item::after {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 21px;
    background: url(/assets/images/icon-arrow.svg);
    background-repeat: no-repeat;
    right: 10px;
  }
}
.cta__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 18px;
    text-align: left;
    margin-bottom: 5px !important;
  }
}
.cta__description {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  .cta__description {
    font-size: 14px;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cta__icon {
    margin: 0 10px 0 !important;
  }
}
.form {
  margin: 30px 0;
}
.form .wrapper-btn {
  display: flex;
}
.form .btn {
  flex: 1;
}/*# sourceMappingURL=style.min.css.map */