footer{
  background-color: var(--color-neutral-1200);
  padding: 60px 0; 
}
footer .container{
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  padding-left: 60px;
  padding-right: 60px;
  width: 100%;
}
footer h2.footer-title{
  font-size: 25px;
  font-weight: 200;
  letter-spacing: -0.32px;
  color: #fff;
  font-family: var(--font-secondary-s);
  margin-bottom: 0;
}
footer form{
  margin-top: 60px;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.w-50{
  width: 100%;
}
footer form .hs-input{
  border-bottom: 1px solid #7f7d7d !important;
  background: none;
  border: none;
  width: 100%;
  padding: 6px 0 20px;
  font-size: 19px;
  font-family: var(--font-primary);
  position: relative;
  color: #fff;
  appearance: none;
  border-radius: 0px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
footer form .hs-input:focus{
  outline: none;
  background: none;
  border-bottom: 1px solid #fff !important;
}
/* footer .hs-submit{
  height:50px;
} */
footer .hs-form-field{
  margin-bottom: 0;
  width: 100%;
}
footer .actions{
  height: 100%;
}
footer input.hs-button{
  border-radius: 999px;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 30px;
    text-decoration: none;
    transition: all 0.2s ease-in-out 0s;
    white-space: nowrap;
    background-color: transparent;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    height: 100%;
}
footer input.hs-button:focus{
  outline: 0;
}
footer .hs-submit{
    display: inline-block;
}
footer .footer-menu{
  display: flex;
/*   justify-content: space-between; */
  padding-top: 120px;
}
.footer-menu-block{
  width: 20%;
}
.footer-logo{
  height 32px;
  max-width: 80px;
}
footer .footer-logo img{
  height: 35px;
  max-width: 100%
}
.footer-main-menu{
  padding-top: 70px;
}
.footer-menu-items li a{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-primary);
  color: #fff;
}
.footer-main-menu{
  display: flex;
  align-items: center;
  justify-content: end;
}
.footer-main-menu ul{
  display: flex;
  gap:10px;
}
.footer-main-menu a{
  color: #fff;
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer-main-menu a.copyright-text{
  padding-left: 14px;
}
footer .footer-content{
  margin: 70px 0 0;
}
footer .footer-content p{
  font-size: 11px;
  color: #fff;
  margin: 0;
}
footer .footer-content p a{
  color: #FFF;
  text-underline-offset: 2px;
  text-decoration: underline;
}

/*  Responsive CSS */
@media screen and (min-width: 743px){
  footer .actions{
    margin-top: 8px;
  }
  .w-50{
    max-width:500px
  }
}


@media (min-width: 743px) and (max-width: 992px){
  footer .footer-menu{
    justify-content: space-between;
    padding-top: 100px;
  }
  .footer-main-menu{
    flex-wrap: wrap;
    padding-top: 100px;
  }
  .footer-main-menu a.copyright-text{
    margin-top: 12px;
  }
  
}

@media screen and (max-width: 743px){
  footer .container{
    padding: 0 40px;
  }
  footer .footer-content{
    margin: 30px 0 0;
  }
  .w-50{
    width: 100%;
  }
  footer{
    padding: 100px 0 60px; 
  }
  footer h2.footer-title{
    font-size: 22px;
    font-family: var(--font-primary);
  }
  footer form{
    flex-direction: column;
    margin-top: 40px;
    align-items: start;
    gap: 0;
  }
  footer .hs-submit{
    padding-top: 30px;
  }
  footer form .hs-input{
    padding: 5px 0 10px; 
   }
  footer .footer-menu{
    padding-top: 120px;
  }
  footer .footer-menu{
    flex-wrap: wrap;
  }
  .footer-menu-block{
    width: 100%;
  }
  .footer-menu-block:first-child{
    padding-bottom: 50px;
  }
  .footer-menu-block:not(:first-child){
    width: 50%;
  }
  .footer-menu-items li a{
    font-size: 16px;
  }
  .footer-main-menu{
    padding-top: 60px;
    flex-wrap: wrap;
  }
  .footer-main-menu ul{
    flex-direction: column;
  }
  .d-none{
    display:none;
  }
  .footer-menu-items:not(:last-child){
    margin-bottom: 20px;
  }
  .footer-main-menu a.copyright-text{
    padding-top: 40px;
    text-align: right;
  }
}