* {
	box-sizing: border-box;
  font-family: 'Source Sans Pro', sans-serif;
  -webkit-font-smoothing: antialiased;
}
html,
body {
	padding: 0;
  margin: 0;
}
.btn-one {
  display: inline-block;
  position: relative;
  background-color: #0076dd;
  padding: 24px 41px;
  font-size: 16px; 
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: #ffffff;  
  text-decoration: none;
  overflow: hidden;
}
.btn-one:hover {
  color: #ffffff;  
  text-decoration: none;  
}
.btn-one:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255,255,255,0.234);
  transition: width 0s ease .3s, transform .3s ease 0s;
  transform: translateX(100%);
} 
.btn-one:hover:before {
  width: 100%;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  transform: translateX(0);
}
.btn-two {
  display: inline-block;
  position: relative;
  background-color: #fff;
  padding: 24px 41px;
  font-size: 16px; 
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: #000;  
  text-decoration: none;  
  overflow: hidden;
}
.btn-two:hover {
  color: #000;  
  text-decoration: none;  
}
.btn-two:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0,0,0,0.09);
  transition: width 0s ease .3s, transform .3s ease 0s;
  transform: translateX(100%);
} 
.btn-two:hover:before {
  width: 100%;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  transform: translateX(0);
}
.btn-three {
  display: inline-block;
  position: relative;
  padding: 24px 41px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  border: solid 1px rgba(0, 0, 0, 0.25);
}
.btn-three:hover {
  color: #000;  
  text-decoration: none;  
}
.btn-three:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: -1;
  background-color: #fff;
  transition: width 0s ease .3s, transform .3s ease 0s;
  transform: translateX(100%);
} 
.btn-three:hover:before {
  width: 100%;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  transform: translateX(0);
}
.featured-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
  color: #000000;  
  padding: 0 0 0 80px;
}
.featured-link:hover {
	color: #000;
  text-decoration: none;
}
.featured-link:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  height: 1px;
}
.featured-link:hover:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  border: none;
  height: 100%;
  background: url(//cdn2.hubspot.net/hubfs/885542/images/list-arrow.svg?t=1530044988858) no-repeat left center;
  background-size: contain;
}
.container {
	max-width: 1170px;
}
h1 {
  font-family: 'Ubuntu';
  font-size: 48px;
  font-weight: normal;
  line-height: 1.17;
  letter-spacing: normal;
  color: #000;
}
h2 {
  font-family: 'Ubuntu';
  font-size: 40px;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #000;
}
h3 {
  font-family: 'Ubuntu';
  font-size: 32px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #000;
}
h4 {
  font-family: 'Ubuntu';
  font-size: 24px;
  font-weight: normal;
  line-height: 1.67;
  letter-spacing: normal;
  color: #000;
}
h5 {
  font-family: 'Ubuntu';
  font-size: 20px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #000;
}
p {
  font-size: 20px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.7);
}
small {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: normal;
  text-align: left;
  color: rgba(0, 0, 0, 0.7);
  display: block;
}
a {
	color: #000;
}
a:hover {
	text-decoration: none;  
  color: #0076dd;
}


/**********************/
/******* HEADER *******/
/**********************/
header .header-wrapper {
  padding: 26px 0;
  position: relative;
}
header .menu-flexbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: static;
}
header .masthead-menu-mobile {
  display: none;
}
header .masthead-menu-desktop {
  display: flex;
  align-items: center;
}
header .masthead-menu-desktop ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
header .masthead-menu-desktop ul li {
  margin: 0 40px 0 0;
}
header .masthead-menu-desktop ul li a {
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: normal;
}
header .masthead-menu-desktop .btn-one,
header .masthead-menu-desktop .btn-three {
  padding: 12px 17px;
  font-size: 14px;
  line-height: 1.17;
}
header .masthead-menu-desktop .btn-three {
  padding: 11px 17px;
  margin-right: 16px;
}
header button.masthead-hamburger {
  display: none;
}
@media(max-width: 990px) {
  header .masthead-menu-desktop {
    display: none;
  }
  header button.masthead-hamburger {
    display: block;
  }
  header button.masthead-hamburger:active,
  header button.masthead-hamburger:focus {
    outline: none;
  }
  header button.masthead-hamburger .hamburger-box {
  	height: 14px;
  }
  header .hamburger--collapse .hamburger-inner:after {
  	display: none;
  }
  header .masthead-menu-desktop.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background: #fff;
    width: 100%;
    align-items: flex-start;
    padding: 0 30px 30px 30px;
  }
  header .masthead-menu-desktop.active .menu-header-menu-container {
    width: 100%;
  }
  header .masthead-menu-desktop.active ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  header .masthead-menu-desktop .btn-three {
    margin: 16px 0;
    padding: 11px 18px;
  }
}


/**********************/
/******* FOOTER *******/
/**********************/
footer {
	padding: 64px 0 0 0;
}
footer .footer-top {
	display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
footer .footer-top .btn-one,
footer .footer-top .btn-three {
  padding: 12px 17px;
  font-size: 14px;
  line-height: 1.17;
}
footer .footer-top .btn-three {
  padding: 11px 17px;
  margin-right: 16px;
}
footer .footer-menu-row {
	display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
}
footer .footer-menu-row .address span {
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  color: rgba(0, 0, 0, 0.7);
}
footer .footer-menu-row .address span:first-of-type {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.78;
  color: #000000;
}
footer .footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
footer .footer-menu ul li {
  margin: 0 0 0 56px;
}
footer .footer-menu ul li a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.78;
  letter-spacing: normal;
  text-align: left;
}
footer .footer-social-row {
	display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
footer .footer-social-row .support a {
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: normal;
  display: block;
}
footer .footer-social-row .social-links a {
  display: inline-block;
  margin: 0 0 0 16px;
}
footer .footer-social-row .social-links a:hover svg path {
	fill: #0076dd;
}
footer .footer-copyright {
	padding: 40px 0;
  opacity: 0.5;
  font-size: 12px;
  font-weight: normal;
  line-height: 2;
  text-align: center;
  color: #000000;
}
@media(max-width: 767px) {
  footer .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-top .footer-logo {
  	margin-bottom: 40px; 
  }
  footer .footer-menu-row {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-menu {
    order: -1;
    margin: 0 0 40px;
  }
  footer .footer-menu ul li {
    margin: 0 32px 0 0;
  }
  footer .footer-social-row {
  	flex-direction: column;
  }
  footer .footer-social-row .support {
  	margin: 0 0 40px;
  }
  footer .footer-social-row .social-links a {
  	margin: 0 8px 0 0;
  }
}