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

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/
@font-face {
  font-family: "Magical";
  src:
    url("https://9321553.fs1.hubspotusercontent-na1.net/hubfs/9321553/fonts/MagicalRegular.woff") format("woff");
}
/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.container {
  display: flex;
  flex-wrap: wrap; /* Ensure responsiveness */
  max-width: 1200px;
  margin: 0 auto;
}

.left-column, .right-column {
  box-sizing: border-box;
}

.left-column {
  flex: 60%; /* 60% width */
  padding: 20px 40px;
  background-color: rgba(209, 224, 215, .5);
}

.right-column {
  flex: 40%; /* 40% width */
  text-align: center; /* Center the image if smaller than the column */
}

.right-column img {
  max-width: 100%; /* Make the image responsive */
  height: auto; /* Maintain aspect ratio */
}

.wrapper-head-text {
  color: #305470;
  font-family: 'Prata', sans-serif; 
  font-size: 1.75rem;
  padding-bottom: 7px;
}

.wrapper-p-text {
  line-height: 1.8;
  color: #414042;
}

.wrapper-cta {
  font-weight: bold;
  padding: 15px 0 10px 0;
}

.wrapper-btn {
  background-color: #966944;
  color: #FFF;
  font-size: .65rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px 10px;
  max-width: 200px;
  border: none;
}

.image-column {
  flex: 40%; /* 40% width of the container */
  display: flex; /* Enables flexbox within this div */
  justify-content: center; /* Horizontally centers the image */
  align-items: center; /* Vertically centers the image */
}

.image-column img {
  width: 100%; /* Makes the image fill the container */
  height: 100%; /* Scales the height to match the container */
  object-fit: cover; /* Ensures the image covers the area without losing its aspect ratio */
}

.text-column {
  display: flex; /* Enables Flexbox */
  flex-direction: column; /* Stacks flex items vertically */
  justify-content: center; /* Centers content vertically */
  flex: 60%; /* 60% width of the container, as per your 60/40 layout */
  max-width: 600px;
}

.start-cta {
  color: #FFF;
}

.questionaire-wrapper {
  text-align: center;
}

.questionaire-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* This centers the child elements horizontally */
  width: 100%; /* Takes the full width of the viewport or its parent container */
  margin: 50px 0 20px 0;
}

.questionaire-single-col{
  max-width: 800px; /* Maximum width of the column */
  width: 100%; /* Ensures it takes up available space up to the max-width */
  /* Add padding, margins, or other styles as needed */
  margin-bottom: 20px;
}

.questionaire-single-col > h2 {
  margin-bottom: 10px;
}

.two-columns {
  display: flex; /* Enables Flexbox for the two-column layout */
  width: 100%; /* Takes the full width of the main container */
  max-width: 945px; /* Optional: Ensures the two-column section doesn't exceed 945px */
}

.column-half {
  flex: 1; /* Each column takes up an equal amount of space */
  /* Add padding, margins, or other styles as needed */
}

/* Existing styles for the two-column layout */
.two-columns {
  display: flex;
  width: 100%;
  max-width: 945px;
}

.column-half {
  flex: 1;
  margin-right: 50px;
}

.question {
  /* Ensures the question and its options are treated as a single block */
  margin-bottom: 20px; /* Adds some space between each question */
  text-align: left;
}

.question p {
  margin-bottom: 5px; /* Adds a little space between the question text and the radio buttons */
  margin-left: 20px;
}

.question label {
  margin-right: 15px; /* Adds space between the "Yes" and "No" options */
  display: inline-block; /* Ensures labels are displayed inline */
  cursor: pointer; /* Changes the cursor to a pointer when hovering over the label */
}

.question input[type="radio"] {
  margin-right: 5px; /* Adds a small space between the radio button and its label */
}

.body-container-wrapper form label {
  padding: 10px;
}

.radio-wrapper {
  display: inline-flex;
  padding: 5px;
  margin-left: 40px;
}

.question-number {
  margin-right: 20px; /* Adds some space between the number and the question text */
  font-size: 1.5rem;
  color: #966944;
  font-family: 'Prata', sans-serif; 
}

.question p {
  display: flex; /* Uses Flexbox to align items */
  align-items: center; /* Centers items vertically */
}

.question label {
  margin-right: 15px; /* Adds space between the "Yes" and "No" options */
  display: inline-flex; /* Aligns the radio button and label text inline */
  align-items: center; /* Centers the radio button and label text vertically */
}

.question input[type="radio"] {
  margin-right: 5px; /* Adds a small space between the radio button and its label */
}
/* Media query for mobile devices */
@media (max-width: 768px) {
  .two-columns {
    flex-direction: column; /* Stacks columns vertically on small screens */
  }
}







.question {
  display: flex; 
  flex-direction: column; 
}

.question {
  flex-grow: 1; 
  display: flex;
  flex-direction: column; 
  height: 150px;
}

.question-number {
  font-weight: bold; 
  align-self: flex-start; 
}

.question-content {
  padding-left: 20px; 
}



.score-container {
  display: flex; 
  max-width: 740px;
  align-items: center;
  margin: 0 auto
}

.column {
  padding: 10px; 
}

.column-70 {
  flex: 60%; 
}

.column-30 {
  flex: 40%; 
  background-color: #FFF;
  padding: 20px 20px;
}

.score-title {
  color: #966944;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
   
}

.score-wrapper {
  max-width: 940px;
  background-color: rgba(221, 215, 202, .25);
  margin: 0 auto;
  padding: 60px 0;
  margin-bottom: 40px;
}


.video-container {
  position: relative;
  display: flex;
  width: 100%; 
  height: auto; 
  background-image: url('https://9321553.fs1.hubspotusercontent-na1.net/hubfs/9321553/Imported%20images/bg_field_3.jpg'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  margin-bottom: 40px;
}


.video-column {
  flex: 50%; 
  
  margin-top: 5%;
  
}

.text-column {
  flex: 50%; 
  padding-left: 30px;
}

.holistic-wrapper {
  max-width: 790px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.holistic-wrapper > h2 {
  font-family: 'Prata', sans-serif;
  font-size: 24px;
}

.holistic-wrapper > p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.holistic-container {
  display: flex; /* Activates Flexbox */
  justify-content: space-between; /* Distributes space between and around columns */
  max-width: 940px; /* Maximum width of the container */
  margin: auto; /* Centers the container in the parent element */
}

.text-col-holistic > h3{
  max-width: 300px; /* Maximum width for each column */
  flex: 1; /* Allows columns to grow and fill the container space */
  color: #966944;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.text-col-holistic > p {
  max-width: 300px;
}

.holistic-text-inner {
  line-height: 1.4em !important;
}

.layout_cta_item {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
/*     flex: 0 0 100%; */
    max-width: 100%;
    display: flex;
}

.layout_cta_item__inner {
    position: relative;
    background: #fff;
    padding: 2.25rem 2.625rem 0 2.25rem;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.1);
    margin: 0.625rem;
    width: 100%;
    margin-bottom: 3rem;
}

.layout_cta_item.has-light-sage-background-color [class*=__inner]:before {
    background-color: #D1E0D7;
}

.layout_cta_item__inner:before {
    position: absolute;
    content: "";
    top: -0.625rem;
    right: -0.625rem;
    left: -0.625rem;
    height: 50%;
    z-index: -1;
    background-color: #D1E0D7;
}

.column-30 {
    position: relative;
    background: #fff;
    padding: 2.25rem 2.625rem 0 2.25rem;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.1);
    margin: 0.625rem;
    width: 100%;
    margin-bottom: 3rem;
}

.column-30 [class*=__inner]:before {
    background-color: #D2E5EB;
}

.column-30:before {
    position: absolute;
    content: "";
    top: -0.625rem;
    right: -0.625rem;
    left: -0.625rem;
    height: 50%;
    z-index: -1;
    background-color: #D2E5EB;
}

.hs-form label {
  font-size: 13px;
}

.hs-submit {
    text-align: center;
    background-color: #966944;
    color: #FFF;
    margin-bottom: 30px;
}

form [type=submit]:not([href]) {
color: #FFF;
}


.video-container {
  position: relative;
  width: 100%;
  display: flex;
}


.video-wrapper {
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 20px 0 20px;
}

.testimonial-header {
  font-family: 'magical', script;
  font-size: 2.5rem;
  color: #FFF;
}

.testimonial-text {
  color: #FFF;
}

#yesCountDisplay {
   font-size: 1.1rem;
   font-family: 'Montserrat', sans-serif;
   font-weight: 600;
   margin-bottom: 40px;
}
/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  
  .holistic-wrapper > p {
    margin: 0 10px 0 10px;
  }
  .left-column, .right-column {
    flex: 100%; /* Stack the columns on small screens */
  }
  
   .text-column, .image-column {
    flex: 100%; /* Each column takes full width on small screens */
  }
  
  .text-column {
    margin-top: 20px;
  }
  

  .image-column img {
    width: auto; /* Adjusts width to be auto to maintain aspect ratio */
/*     max-height: 300px; /* Optional max-height to prevent the image from becoming too tall on narrow screens */ */
  }
  
  .score-container {
    flex-direction: column; /* Stacks the flex items (columns) vertically */
  }
  
    .holistic-container {
    flex-direction: column; /* Stacks the columns vertically */
  }

  .text-col-holistic {
    max-width: 100%; /* Each column takes the full width of the container */
    margin: 10px 0; /* Adjusts margin for vertical stacking */
  }
}

@media (min-width: 992px) {
  .left-column {
    margin-top: -5%;
  }
}