/* @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    */
/*****************************************/
/* 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: -apple-system,BlinkMacSystemFont,"Segoe UI","Poppins","Century Gothic"",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
}
.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: #57A745;
color: #ffffff;
padding: 10px 15px;
font-size: 15px;
border-radius: 50px;
text-transform: none;
font-weight: bold;
}
.primary-btn:hover {
  color: #ffffff;
  
}
/* End of Body CSS */

/* Footer CSS */
footer {
  background-color: #0F1A29;
  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;
  }
}