<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
</style>

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
/* Header CSS */
header {
  height: 75px;
  display: flex !important;
  align-items: center;
  background: #ffffff;
}
.header-logo {
  max-width: 200px;
}
/* End of Header CSS */

/*Body CSS */
body {
  font-family: "Poppins",Century Gothic,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
  font-weight: 400;
  line-height: 1.3em;
}
.container-fluid {
padding: 0 !important;
}
.container-fluid:before, .container-fluid:after {
  display: none;
}
.row-fluid:before, .row-fluid:after {
  display: none;
}
.body-container-wrapper {
  min-height: calc(100vh - 70px);
}
.primary-btn {
background: #63D616;
color: #233A5C;
padding: 10px 15px;
font-size: 14px;
border-radius: 50px;
text-transform: none;
font-weight: 600;
font-family: 'Poppins', sans-serif;
}
.primary-btn:hover {
  color: #ffffff;
  
}
/* End of Body CSS */

/* Footer CSS */
footer {
  background-color: #0F1A29;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  padding: 10px 0;
  min-height: 40px;
  position: relative;
  height: 70px;
}
footer .container {
  position: relative;
}
.social-links-wrap {
  position: absolute;
    right: 0;
  top: 0;
}
footer .footer-wrap {
  padding: 10px 0;
}
footer .footer-wrap .copy-right-text {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  opacity: 0.49;
}
footer .footer-wrap .copy-right-text p {
  margin: auto;
  font-family: 'Poppins', sans-serif;
}
footer .footer-wrap .copy-right-text a {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
}
ul.social-links {
  list-style-type: none;
  display: flex;
}
ul.social-links li {
  margin: 5px;
  background: #425563;
  border-radius: 25px;
  padding: 5px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.social-links li a {
  color: #ffffff;
  opacity: 0.49;
}
.hs-form-field {
  margin: 15px 0;
}
/* End of Footer CSS */

@media screen and (max-width: 767px) {
  footer {
    height: 100%;
  }
  .social-links-wrap {
    position: relative;
    top: auto;
    right: auto;
  }
  ul.social-links {
    padding: 10px 0;
    margin: auto;
  }
}