/* Global Font Family */
* {
  font-family: "Aktiv Grotesk";
}
/* Base Styles */
.page-Subheader {
  width: 650px;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 42px; /* 131.25% */
  letter-spacing: 0.16px; 
}

.header-CTA {
  width: 402px;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px; /* 130% */
  letter-spacing: 0.4px; 
}

.section-Title {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
  letter-spacing: 0.48px; 
  padding-bottom: 30px;
}

.section-Subtitle {
  font-size: 40px;
  font-weight: 100;
  line-height: 48px; /* 120% */
  padding-top: 20px;
  width: 60%;
}

.contact-Us-Header {
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 800px;
  flex-shrink: 0;
  word-wrap: normal;
}
.body-Copy-Title{
  color:#ff8392;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  padding-top:25px;
}
.body-Copy{
  color:#D9D2DE;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 200;
  line-height: 22px; 
}
 .body-Copy-Title, .product-Feature-Title, .blog-Post-Intro, .byline-Date, .author, .form-text, .input, .footer-Text-Link, .footer-Title {
  color: #401E5B;
}

.body-Copy, .body-Copy-Title, .blog-Post-Body, .blog-Post-Body-Title, .blog-CTA {
  font-size: 16px;
  line-height: 22px; /* 137.5% */
}

.product-Feature-Title, .blog-Post-title-Large, .form-text {
  font-size: 24px;
  line-height: 24px; /* 100% */
}

/* Blog Styles */
.blog-Post-title-Large {
  font-size: 36px;
  line-height: 38px; /* 105.556% */
}

.blog-Post-Title-Small {
  font-size: 20px;
  line-height: 24px; /* 120% */
}

#hs_cos_wrapper_widget_1711339226219 input[type="submit"]{
text-decoration: none;
}

form {
  display: flex;
  flex-flow: wrap;
  width: 60%;
  /* background: green; */
  gap: 20px;
  background-color: transparent;
  padding: 0px;
}
.form-text{
  color: #401E5B;
  font-family: "Aktiv Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px; /* 120% */
}
.input{
  width: 325px;
}
form input[type=email],form input[type=text], form textarea {
  height: 40px;
  flex-shrink: 0;
  font-family: "Aktiv Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  background-color:#E5E4EB;
  border-bottom: 2px solid #8b87a0;
}

form label {
  color: #C52042;
  /*font-family: "Aktiv Grotesk";*/
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
}

form .hs-error-msgs {
  background: transparent;
  color: purple;
}

form input[type=submit] {
  font-size: 14px;
  padding: 10px 20px;
  background-color: #D3D2DA;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  max-width: 150px;
}

form .hs-button, form input[type=submit] {
  color: #908A95;
  text-align: center;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: #D3D2DA;
}

form input[type=submit] text {
  color: #908A95;
  text-align: center;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

/* Style for the focus state of the input */
form input[type="text"]:focus,
form input[type="email"]:focus {
  outline: none;
  border-color: #007BFF;
  border-bottom: 2px solid #8b87a0;
}
form .hs-error-msg{
  display: none;
}

/* Style for the hover state of the input */
form input[type="text"]:hover,
form input[type="email"]:hover {
  border-bottom: 2px solid #8b87a0;
}

form > div:nth-child(1), 
form > div:nth-child(2), 
form > div:nth-child(3), 
form > div:nth-child(4) { 
  flex-grow: 0.5;
}
form > div:nth-child(5) { flex-grow: 1; width: 100%; }

@media (max-width: 923px) {
  form {
    width: 100%;
  }
  form > div:nth-child(1), 
  form > div:nth-child(2), 
  form > div:nth-child(3), 
  form > div:nth-child(4) { 
    flex-grow: 1;
    width: 100%;
  }
  .formText{
    padding-right: 0px;
  }
  .contact-Us-Header{
    width:100%;
  }
}


 
/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeftToRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade, .fadeUp, .fadeLtoR, .fadeLeftToRight > div {
  animation: fadeIn 1s ease-in-out forwards;
}

.fadeUp { animation-name: fadeInUp; }
.fadeLtoR { animation-name: fadeInLeftToRight; }
.fadeLeftToRight > div { transform: translateX(-200px); }

/* Footer */
.footer-Module {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding: 1%;
  border-top: 1px solid #401E5B;
  padding-bottom:120px;
}
.footer-Text-Link{
  width: 107px;
  color: #401E5B;
  font-family: "Aktiv Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
}

.footer-Title{
  color: #401E5B;
  font-family: "Aktiv Grotesk";
  font-size: 40px;
  font-style: normal;
  font-weight: 200;
  line-height: 48px; /* 120% */
  max-width: 413px;
}

.footer-Module > div {
  flex-grow: 1;
  flex-shrink: 1;
  padding: 10px;
  text-align: left;
  height:100%;
}

.footer-Module > div:nth-child(1) {
  flex-basis: 20%;
  
}

.footer-Module > div:nth-child(2) {
  flex-basis: 40%;
}

.footer-Module > div:nth-child(3) {
  flex-basis: 20%;
  color: #C52042;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */

}

.footer-Module > div:nth-child(4) {
  flex-basis: 20%;
  color: #401E5B;
  font-family: "Aktiv Grotesk";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
}
.follow-us{
  color: #401E5B;
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 100% */
  padding-left:12px;
}
.icons{
  align-items: flex-end;
}

.icons a {
    margin: 0 12px; /
    display: inline-block; 
}

.icons img {
    width: 24px; 
    height: 24px; 
    vertical-align: middle; 
}
.policy-wrapper{
  color: #401E5B;
  max-width: 700px; 
  margin:0 auto;
  font-weight:200px;
}
.policy-wrapper h4{
  font-family: "Aktiv Grotesk";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}
.policy-wrapper a{
    color: #401E5B;
}
  .footer-column a:hover{
   font-weight:400; 
  }
@media (max-width: 768px) {

  .footer-Module > div {
    flex-basis: 50%;
  }
  .footer-Title {
    color: #401e5b;
    font-family: Aktiv Grotesk;
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    min-width: 238px;
}
  .body-Copy-Title{
  padding:unset;
  }
  .benefits-wrapper img{
    padding: 20px 0;
  }
}