/*-----------------------------------------------------------------------------------
	variables.less
-----------------------------------------------------------------------------------*/
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url(https://fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7CA.ttf) format('truetype');
}
/* ----------------------------------------------------------------
	Base Colors
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Line Height Variables
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Margins
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Font Families
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Font Sizes
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Layouts
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Header
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Primary Menu
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
	Device Variables
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------
	mixins.less
-----------------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*-----------------------------------------------------------------------------------
	global.less
-----------------------------------------------------------------------------------*/
* {
  max-width: 100%;
}
*,
::after,
::before {
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #283c46;
}
h1,
h2,
h3,
h4 {
  font-family: 'Roboto Condensed', serif;
}
header {
  background-color: #2DA562;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px;
}
@media (min-width: 500px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
  }
}
header .logo {
  font-family: 'Roboto Condensed', serif;
  font-size: 1.6rem;
  color: #FFFC88;
  margin: 0 0.25em;
}
@media (min-width: 500px) {
  header .logo {
    font-size: 1.4rem;
  }
}
header .logo a {
  color: #FFFC88;
  text-decoration: none;
}
header .logo span {
  font-weight: bold;
  color: #fff;
}
strong {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5rem;
  width: 100%;
}
@media tablet {
  nav {
    width: auto;
  }
}
nav .nav-item {
  text-decoration: none;
}
nav .nav-item:hover {
  color: #FFFC88;
}
nav .nav-item,
nav .button {
  font-family: 'Roboto Condensed', serif;
  font-size: 1rem;
  letter-spacing: normal;
  color: #fff;
  margin: 0.5rem 1rem 0;
}
@media (min-width: 500px) {
  nav .nav-item,
  nav .button {
    margin: 0 0.5rem;
  }
}
.button {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}
.button:hover {
  text-decoration: none;
  color: #FFFC88;
}
@media (min-width: 500px) {
  .button {
    background-color: #22283A;
    border: 0.1em solid #22283A;
    padding: 0.5rem 1rem;
  }
  .button:hover {
    background-color: #191d2a;
    border-color: #191d2a;
  }
  .button:active {
    background-color: #0f121a;
    border-color: #0f121a;
  }
}
@media (min-width: 500px) {
  .button--secondary {
    background-color: transparent;
    border: 1px solid #fff;
  }
  .button--secondary:hover {
    background-color: transparent;
    border-color: #FFFC88;
    color: #FFFC88;
  }
}
.button-large {
  padding: 1rem;
  font-size: 1.125rem;
  line-height: 1;
}
.button-block {
  width: 100%;
}
.button-cta {
  background-color: #2DA562;
  border-color: #2DA562;
  color: #fff;
}
.button-cta:hover {
  background-color: #289156;
  border-color: #289156;
  color: #fff;
}
.button-cta:active {
  background-color: #227d4a;
  border-color: #227d4a;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-group {
  position: relative;
  margin-bottom: 1rem;
}
.form-group > input,
.form-group > label {
  height: 3.125rem;
  padding: 0.75rem;
}
.form-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #495057;
  pointer-events: none;
  cursor: text;
  /* Match the input under the label */
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: all 0.1s ease-in-out;
}
.form-group input::-webkit-input-placeholder {
  color: transparent;
}
.form-group input:-ms-input-placeholder {
  color: transparent;
}
.form-group input::-ms-input-placeholder {
  color: transparent;
}
.form-group input::-moz-placeholder {
  color: transparent;
}
.form-group input::placeholder {
  color: transparent;
}
.form-group input:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}
.form-group input:not(:placeholder-shown) ~ label {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 12px;
  color: #777;
}
/* Input Focus Styling
  -------------------------------------------------- */
.focus\:border-green:focus {
  border-color: #2DA562;
}
/* Fallback for Edge
  -------------------------------------------------- */
@supports (-ms-ime-align: auto) {
  .form-group > label {
    display: none;
  }
  .form-group input::-ms-input-placeholder {
    color: #777;
  }
}
/* Fallback for IE
  -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .form-group > label {
    display: none;
  }
  .form-group input:-ms-input-placeholder {
    color: #777;
  }
}
/*-----------------------------------------------------------------------------------
	footer.less
-----------------------------------------------------------------------------------*/
footer {
  background-color: #2DA562;
  color: #fff;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .social__logo {
  opacity: 0.2;
  height: auto;
  width: 2rem;
}
footer .social__logo:hover {
  opacity: 0.3;
}
footer .social__logo:active {
  opacity: 0.6;
}
/*-----------------------------------------------------------------------------------
	home-page.less
-----------------------------------------------------------------------------------*/
.hero {
  background-image: url('/images/robert-lukeman-zNN6ubHmruI-unsplash.jpg');
  background-color: rgba(0, 0, 0, 0.9);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 500px) {
  .hero {
    flex-direction: row;
    justify-content: space-between;
  }
}
.hero .text {
  padding: 1.5rem 1.5rem 0;
}
@media (min-width: 500px) {
  .hero .text {
    width: 70%;
    padding: 1.5rem;
  }
}
@media (min-width: 1000px) {
  .hero .text {
    margin: 30px;
  }
}
.hero .text h2 {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.hero .text p {
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  margin-top: 1rem;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
}
.hero .form {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  height: auto;
  margin: 30px 30px 80px;
  padding: 1.5rem;
}
@media (min-width: 500px) {
  .hero .form {
    margin: 80px 30px;
  }
}
@media (min-width: 1000px) {
  .hero .form {
    margin: 80px 80px 80px 30px;
  }
}
.hero .form h2 {
  font-size: 2rem;
}
.hero .form .sub-heading {
  margin-top: 0.2rem;
}
.hero .form form {
  margin-top: 0.5rem;
}
.feature-container {
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  background-color: #F6F2EF;
}
@media (min-width: 500px) {
  .feature-container {
    padding: 4rem 2rem;
  }
}
.feature-container .text {
  padding: 2rem;
  width: 60%;
}
.feature-container .text h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}
@media (min-width: 500px) {
  .feature-container .text h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1000px) {
  .feature-container .text h2 {
    font-size: 3.5rem;
  }
}
.feature-container .photo {
  width: 40%;
}
.feature-container .photo img {
  height: auto;
  width: 400px;
  border: 4px solid #fff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  box-shadow: 0px 0px 0px 3px #dfd8d3;
}
@media (min-width: 500px) {
  .feature-container .photo img {
    border: 14px solid #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    box-shadow: 0px 0px 0px 3px #dfd8d3;
  }
}
.mentions-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #dfd8d3;
  padding: 2rem;
}
.testimonial-container {
  display: flex;
  flex-direction: column;
  background-color: #F1F4F6;
}
@media (min-width: 500px) {
  .testimonial-container {
    flex-direction: row;
    justify-content: center;
  }
}
.testimonial-container .testimonial-container__item {
  padding: 0.5rem 2rem 1rem;
}
@media (min-width: 500px) {
  .testimonial-container .testimonial-container__item {
    width: 45%;
  }
}
.testimonial-container .testimonial-container__item p {
  font-style: italic;
  font-size: 1.6rem;
}
.testimonial-container .testimonial-container__item .mentions__logo {
  margin-top: 0.5rem;
}
.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #283C46;
  padding: 4rem 1rem;
  color: #fff;
  text-align: center;
}
.cta-container h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}
.cta-container p {
  margin-top: 10px;
}
.cta-container a {
  margin-top: 15px;
}
.mentions__logo {
  opacity: 0.2;
  margin: 1rem 0.6rem;
}
/*-----------------------------------------------------------------------------------
	about-page.less
-----------------------------------------------------------------------------------*/
.main-content {
  display: flex;
  flex-direction: column;
  background-color: #F6F2EF;
  text-align: center;
  padding: 2rem 1rem;
}
.main-content .top-content {
  width: 100%;
  flex-direction: column;
  justify-content: center;
}
.main-content .top-content h1 {
  font-family: 'Roboto Condensed', serif;
  font-size: 3.5rem;
}
.main-content .top-content p {
  margin-top: 15px;
  font-size: 1.8rem;
}
.main-content .central-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
}
@media (min-width: 500px) {
  .main-content .central-content {
    padding: 1rem 0;
  }
}
.main-content .central-content .card {
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 500px) {
  .main-content .central-content .card {
    width: 32%;
  }
}
@media (min-width: 1000px) {
  .main-content .central-content .card {
    width: 24%;
  }
}
