/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

:root {
  --accent-default: #E94F0D;
  --primary: #6B8EC9;
  --text-primary: #1E1E1E;
  --surface-light: #ffffff;
}

h1 {
  font-size: 32px !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

section.spacing-section {
  margin: 70px 0;
  margin-inline: 20px;
}

a.button {
    white-space: nowrap;
}

a.button:hover {
    background: #fff; !important;
  border: 1px solid #1e1e1e;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: unset;
}

.input-condensed {
  max-width: 800px;
}

.image-bubble-text {
  border-radius: 30px;
  border: 2px solid #000;
  background: #FFF;
  display: flex;
  padding: 20px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-shrink: 0;
}

.image-bubble-bottom-left {
  position: absolute;
  left: -1rem;
  bottom: -2.5rem;
  min-width: 250px;
}

.image-bubble-bottom-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2.5rem;
  min-width: 250px;
  align-items: center !important;
}

.rounded-image {
  border-radius: 30px;
  object-fit: cover;
}

@media (max-width: 768px) {
  h1, h2, h3, p {
    text-align: center;
    margin-bottom: 12px;
  }
  .image-bubble-bottom-left {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.5rem;
    max-width: 300px;
  }
  .image-bubble-bottom-center {
    width: 100% !important;
  }
  section.spacing-section {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  div.button-col.button-col {
    display: flex;
    justify-content: center;
  }
}