@charset "UTF-8";

/* cta
---------------------------------------------------------------------------*/
.odm-top-margin {
  margin-top: 60px;
}

.odm-cta {
  display: flex;
  justify-content: center;
}
.odm-cta-container {
  padding: 12px 20px;
  color: #fff;
  background-color: #1d4898;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  width: 368px;
  height: 72px;
  transition-duration: 0.3s;
  transition-property: transform;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
}

.odm-cta-container:hover {
  transform: scale(1.1);
}

.odm-cta-container._odm-page {
  margin-top: 30px;
  width: auto;
}

.odm-cta-subtext {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.odm-cta-text {
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* cta */
.cta-contact-first-view {
  position: absolute;
  bottom: -48px;
  right: 20px;
  display: flex;
  gap: 20px;
}

.cta-contact-first-view > .cta-circle {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #1d4898;
  gap: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.8);
}

.cta-contact-first-view > .cta-circle > a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid #f1f1f1;
  border-radius: 100%;
  width: 100%;
  height: 100%;
}

.cta-contact-first-view > .cta-circle > a > div {
  letter-spacing: 0;
  font-size: 13px;
  line-height: 20px;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 782px) {
  .odm-top-margin {
    margin-top: 48px;
  }

  .odm-cta-container {
    max-width: 280px;
  }

  .odm-cta-container:hover {
    transform: scale(1);
  }

  .odm-cta-container._odm-page {
    margin-top: 24px;
  }

  /* cta */
  .cta-contact-first-view {
    bottom: -48px;
    right: 20px;
    gap: 10px;
  }
  .cta-contact-first-view > .cta-circle {
    padding: 4px;
    gap: 12px;
    width: 80px;
    height: 80px;
  }

  .cta-contact-first-view > .cta-circle > a {
  }

  .cta-contact-first-view > .cta-circle > a > div {
    font-size: 12px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
