@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,700&display=swap');

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;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

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;
}

a.btn:hover,
input[type="submit"]:hover {
  transition: all 0.4s ease-in-out;
  opacity: 0.8;
}

/*Header*/
header {
  background-color: #78c41a;
  padding-bottom: 70px;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
}

.logo-wrap {
  background-color: #fff;
  width: 100%;
  min-height: 68px;
  text-align: center;
}

.logo-wrap > img {
  display: inline-block;
  margin: auto;
  padding: 18px 15px;
}

.hero-banner {
  background-image: url('../img/hero-bg.png');
  background-color: #78c41a;
  display: flex;
  justify-content: space-between;
  min-height: 540px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.hero-banner_block {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.banner-description h1 {
  font-size: 54px;
  line-height: 64px;
  color: #fff;
  text-transform: uppercase;
  text-align: left;
}

.hero-form-section {
  background-color: #78c41a;
}

.hero-form-section .container {
  display: flex;
}

.hero-form-section .container > div {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  justify-items: flex-start;
}

.blcokquote {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
}

.blcokquote span {
  display: block;
  position: relative;
}

.form-wrap {
  padding-top: 10px;
}

.blcokquote span.quote-text {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}

.blcokquote span.quote-autor {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  padding-left: 85px;
  padding-right: 85px;
}

.blcokquote span.quote-autor:before {
  content: '';
  width: 70px;
  height: 1px;
  background-color: #93d048;
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
}

.blcokquote span.quote-autor:after {
  content: '';
  width: 70px;
  height: 1px;
  background-color: #93d048;
  display: block;
  position: absolute;
  right: 0;
  top: 10px;
}

.btn-wrap {
  margin-top: 40px;
}

.btn-wrap .btn {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  background-color: #00377a;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 36px;
  border-radius: 4px;
  display: inline-block;
}

.form-wrap form {
  border: 3px solid #fff;
  max-width: 470px;
  width: 100%;
  padding: 40px;
}

.form-wrap form input {
  width: 100%;
  height: 46px;
  color: #fff;
  background-color: #5a9512;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 17px;
  padding-right: 17px;
}

.form-wrap form input[type="submit"] {
  margin-top: 10px;
  color: #fff;
  background-color: #00377a;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  height: auto;
  padding: 15px 36px;
}

.form-wrap form input:focus {
  outline: none;
}

.form-wrap form input::-webkit-input-placeholder {
  color: #fff;
}

.form-wrap form input::-moz-placeholder {
  color: #fff;
}

.form-wrap form input:-moz-placeholder {
  color: #fff;
}

.form-wrap form input:-ms-input-placeholder {
  color: #fff;
}

.form-wrap form input::-webkit-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.form-wrap form input::-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.form-wrap form input:-moz-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.form-wrap form input:-ms-input-placeholder {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.form-wrap form input:focus::-webkit-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-wrap form input:focus::-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-wrap form input:focus:-moz-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-wrap form input:focus:-ms-input-placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.numb {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  margin-top: 18px;
}

/*End Header */

/*Main*/
.main-content {
  display: flex;
  padding-top: 70px;
}

.main-content > div {
  width: 32%;
  margin-right: 2%;
}

.main-content > div:last-child {
  margin-right: 0;
}

.main-content > div.content-item h2 {
  font-size: 30px;
  color: #00377a;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 25px;
}

.main-content > div.content-item p {
  color: #595959;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.btn-border-wrap {
  text-align: center;
  position: relative;
  background-color: #fff;
  z-index: 2;
  display: inline-block;
}

.btn-content-wrap {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  margin-top: 80px;
}

.btn-content-wrap:after {
  background-color: #ececec;
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
}

.btn-content-wrap a {
  display: inline-block;
  color: #fff;
  background-color: #78c41a;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  padding: 13px 36px;
  border-radius: 4px;
  min-width: 230px;
  text-align: center;
  margin-left: 10px;
  margin-right: 10px;
}

/*End Main*/


/*Footer*/
footer {
  background-color: #00377a;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.copyright {
  font-size: 14px;
  color: #fff;
}

/*End Footer*/

#form-result{
  text-align: center;
  font-size: 14px;
  color: #fff;
  display: none;
}
/* Mobile button call*/
.mobile-btn-wrap{
  display: none;
}
/*End Mobile button call*/
/*Responsive*/
@media (max-width: 1530px) {
  .hero-banner {
    background-position: 57% 0px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    background-image: url(../img/hero-bg.png);
    display: block;
    padding-top: 40px;
    min-height: 730px;
    background-size: auto 100%;
    background-position: 77% 0;
  }

  .hero-banner_block {
    display: flex;
    justify-content: center;
  }

  .banner-description h1 {
    text-align: center;
    font-size: 38px;
    line-height: 48px;
    font-weight: bold;
  }

  .hero-form-section .container {
    display: flex;
    flex-direction: column;
  }

  .hero-form-section .container > div {
    width: 100%;
    margin-bottom: 30px;
  }

  .form-wrap form {
    margin: auto;
  }

  .main-content > div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }

  .main-content {
    flex-direction: column;
  }

  .main-content > div.content-item h2,
  .main-content > div.content-item p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-banner {
    display: block;
    background-image: url(../img/hero-mobile-bg.png);
    min-height: 420px;
    background-size: 100%;
    background-position: top center;
  }

  .banner-description h1 {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-weight: bold;
  }

  .blcokquote span.quote-text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
  }

  .blcokquote span.quote-autor {
    font-size: 14px;
  }

  .blcokquote span.quote-autor:before {
    top: 8px;
  }

  .blcokquote span.quote-autor:after {
    top: 8px;
  }

  .blcokquote {
    padding-left: 0;
    padding-right: 0;
    padding-top: 30px;
  }

  .btn-wrap {
    margin-top: 30px;
  }

  .form-wrap form {
    border: none;
    width: 100%;
    padding: 0;
  }

  .btn-wrap .btn {
    width: 100%;
  }

  .btn-content-wrap a {
    min-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .btn-content-wrap a.buy {
    /*display: none;*/
    margin-bottom: 20px;
  }

  .btn-border-wrap {
    display: block;
  }

  .btn-content-wrap {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 0px;
  }

  header {
    padding-bottom: 20px;
  }
  /* Mobile button call*/
  footer {
   
    padding-bottom: 70px;
}
    .mobile-btn-wrap{
      display: flex;
      position: fixed;
    bottom: 0;
    left: 0;
      /*border-top: 1px solid #fff;*/
      width: 100%;
      z-index: 9999;
    }
  .call-to-action-btn{
    background-color: #00377a;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    width: 100%;
    height: 60px;
    align-content: center;
    display: flex;
    justify-content: center;
    padding-top: 15px;
  }
  .back-to-form-btn{
    background-color: #78c41a;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    padding-top: 13px;
    justify-content: center;
  }
  .mobile-btn-wrap a svg{
    width: 30px;
    height: 30px;
    
  }
  .mobile-btn-wrap  .call-to-action-btn svg{
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .mobile-btn-wrap a svg path{
    fill: #fff;
  }
  /*End Mobile button call*/
}

/*End Responsive*/
