@import url(animate.css);
/*
* @section Main Styles
*/
body {
  color: #000000;
  font-family: "Roboto", sans-serif;
  background: #fff;
  -webkit-text-size-adjust: none;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
img.circle {
  border-radius: 50%;
}

/*
* @subsection Typography
*/
h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  color: #303334;
}

h1, .heading-1 {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (min-width: 480px) {
  h1, .heading-1 {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  h1, .heading-1 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  h1, .heading-1 {
    font-size: 80px;
  }
}
@media (min-width: 1200px) {
  h1, .heading-1 {
    font-size: 100px;
  }
}

h2, .heading-2 {
  font-size: 24px;
  line-height: 1;
}

h3, .heading-3 {
  font-size: 22px;
  line-height: 1;
}

h4, .heading-4 {
  font-size: 20px;
  line-height: 1;
}

h5, .heading-5 {
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
}

h6, .heading-6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: -0.01em;
}

p, address, .marked-list, .contact-info, .small {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
p a:hover, address a:hover, .marked-list a:hover, .contact-info a:hover, .small a:hover {
  text-decoration: underline;
}
p .fa, address .fa, .marked-list .fa, .contact-info .fa, .small .fa {
  text-decoration: none;
}
@media (min-width: 768px) {
  p, address, .marked-list, .contact-info, .small {
    font-size: 17px;
  }
}

time {
  display: block;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: none;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  color: #F7D708 ;
}
a:focus {
  outline: none;
}
a:active {
  background-color: transparent;
}

a[href^="tel:"],
a[href^="callto:"] {
  color: #000000;
  text-decoration: none;
}
a[href^="tel:"]:hover,
a[href^="callto:"]:hover {
  color: #F7D708 ;
}

a[href^="mailto:"] {
  color: #F7D708 ;
  display: inline-block;
  text-decoration: none;
}
a[href^="mailto:"]:hover {
  text-decoration: underline;
}

[class*='fa-']:before {
  font-weight: 400;
  font-family: "FontAwesome";
}

.page {
  overflow: hidden;
  min-height: 500px;
}
.lt-ie9 .page {
  min-width: 1200px;
}

/*
* @subsection Text Styling
*/
.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.strike {
  text-decoration: line-through;
}

.upper {
  text-transform: uppercase;
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sbold {
  font-weight: 600;
}

.bold, strong {
  font-weight: 700;
}

.ubold {
  font-weight: 900;
}

.small, small {
  font-size: 12px;
}

/*
* @section Type System
*/
/*
* @subsection Alignment
*/
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

@media (min-width: 480px) {
  .text-xs-left {
    text-align: left;
  }

  .text-xs-center {
    text-align: center;
  }

  .text-xs-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }

  .text-sm-center {
    text-align: center;
  }

  .text-sm-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }

  .text-md-center {
    text-align: center;
  }

  .text-md-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }

  .text-lg-center {
    text-align: center;
  }

  .text-lg-right {
    text-align: right;
  }
}
/*
* @subsection Floating
*/
.pull-left {
  float: left;
}

.pull-none {
  float: none;
}

.pull-right {
  float: right;
}

@media (min-width: 480px) {
  .pull-xs-left {
    float: left;
  }

  .pull-xs-none {
    float: none;
  }

  .pull-xs-right {
    float: right;
  }
}
@media (min-width: 768px) {
  .pull-sm-left {
    float: left;
  }

  .pull-sm-none {
    float: none;
  }

  .pull-sm-right {
    float: right;
  }
}
@media (min-width: 992px) {
  .pull-md-left {
    float: left;
  }

  .pull-md-none {
    float: none;
  }

  .pull-md-right {
    float: right;
  }
}
@media (min-width: 1200px) {
  .pull-lg-left {
    float: left;
  }

  .pull-lg-none {
    float: none;
  }

  .pull-lg-right {
    float: right;
  }
}
/*
* @section MainLayout
*/
* + h5 {
  margin-top: 15px;
}

* + p {
	margin-top: 8px;
	color: #000;
}

* + .product {
  margin-top: 40px;
}

* + .btn {
  margin-top: 60px;
}

* + .icon {
  margin-top: 80px;
}

* + .marked-list {
  margin-top: 40px;
}

img + h5 {
  margin-top: 28px;
}

p + p {
  margin-top: 24px;
}

h1 + p {
  margin-top: 75px;
}

.image-wrap + h5 {
  margin-top: 28px;
}

.icon + h5 {
  margin-top: 20px;
}

.marked-list + p {
  margin-top: 40px;
}

.terms-list + a {
  margin-top: 27px;
}

.box + .box {
  margin-top: 50px;
}

.quote + .quote {
  margin-top: 50px;
}

@media (min-width: 480px) {
  * + .product {
    margin-top: 62px;
  }
}
@media (min-width: 768px) {
  * + .product {
    margin-top: 62px;
  }

  * + .marked-list {
    margin-top: 68px;
  }

  .icon + h5 {
    margin-top: 70px;
  }

  .marked-list + p {
    margin-top: 68px;
  }

  .box + .box {
    margin-top: 72px;
  }

  .quote + .quote {
    margin-top: 72px;
  }
}
/*
* @subsection Offsets
*/
* + .offset-1 {
  margin-top: 50px;
}

* + .offset-2 {
  margin-top: 40px;
}

* + .offset-3 {
  margin-top: 40px;
}

* + .offset-4 {
  margin-top: 60px;
}

* + .offset-5 {
  margin-top: 50px;
}

* + .offset-6 {
  margin-top: 50px;
}

* + .offset-7 {
  margin-top: 50px;
}

* + .offset-8 {
  margin-top: 40px;
}

@media (min-width: 480px) {
  * + .offset-1 {
    margin-top: 93px;
  }

  * + .offset-2 {
    margin-top: 67px;
  }

  * + .offset-3 {
    margin-top: 67px;
  }

  * + .offset-6 {
    margin-top: 83px;
  }
}
@media (min-width: 768px) {
  * + .offset-2 {
    margin-top: 43px;
  }

  * + .offset-4 {
    margin-top: 98px;
  }

  * + .offset-5 {
    margin-top: 103px;
  }

  * + .offset-7 {
    margin-top: 119px;
  }
}
@media (min-width: 992px) {
  * + .offset-8 {
    margin-top: 138px;
  }
}
/*
* @subsection Insets
*/
.inset-1 {
  padding: 0 9px;
}

/*
* @subsection Flow-Offsets
*/
.flow-offset-1 > * + * {
  margin-top: 40px;
}
@media (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}

@media (min-width: 480px) {
  .flow-offset-1 > * + * {
    margin-top: 62px;
  }
}
@media (min-width: 480px) and (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) and (min-width: 480px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-xs-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-xs-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-xs-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-xs-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-xs-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-xs-12:nth-child(n + 2) {
    margin-top: 62px;
  }
}
@media (min-width: 480px) and (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) and (min-width: 768px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-sm-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-sm-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-sm-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-sm-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-sm-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-sm-12:nth-child(n + 2) {
    margin-top: 62px;
  }
}
@media (min-width: 480px) and (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) and (min-width: 992px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-md-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-md-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-md-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-md-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-md-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-md-12:nth-child(n + 2) {
    margin-top: 62px;
  }
}
@media (min-width: 480px) and (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-5:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-7:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-8:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-9:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-10:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-11:nth-child(n), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) and (min-width: 1200px) {
  html:not(.lt-ie10) .flow-offset-1 > .col-lg-1:nth-child(n + 13), html:not(.lt-ie10) .flow-offset-1 > .col-lg-2:nth-child(n + 7), html:not(.lt-ie10) .flow-offset-1 > .col-lg-3:nth-child(n + 5), html:not(.lt-ie10) .flow-offset-1 > .col-lg-4:nth-child(n + 4), html:not(.lt-ie10) .flow-offset-1 > .col-lg-6:nth-child(n + 3), html:not(.lt-ie10) .flow-offset-1 > .col-lg-12:nth-child(n + 2) {
    margin-top: 62px;
  }
}

/*
* @subsection Wells
*/
[class^="well"] {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  .well-md {
    padding-top: 82px;
    padding-bottom: 101px;
  }
  .well-md--inset-1 {
    padding-bottom: 39px;
  }
  .well-md--inset-2 {
    padding-top: 39px;
  }
  .well-md--inset-3 {
    padding-bottom: 85px;
  }
  .well-md--inset-4 {
    padding-top: 26px;
  }
}
/*
* @section Components
*/
/*
* @subsection Brand
*/
.brand {
  display: inline-block;
  position: relative;
}
.brand_name {
  font-family: "Lato", sans-serif;
 
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.03em;
  overflow: hidden;
  color: #004771;
  font-weight: 300;
}
.brand_name:hover {
	color: #303334;
	 font-size: 30px;
}
@media (min-width: 480px) {
  .brand_name {
    font-size: 30px;
  }
}
.brand_logo {
  position: absolute;
  bottom: 46%;
  left: 104%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F7D708 ;
  color: #fff;
  text-align: center;
  line-height: 30px;
}
.brand_logo:before {
  content: "\e556";
  font-family: "Material Icons";
}

/*
* @subsection Icons
*/
.icon {
  display: inline-block;
  text-align: left;
}
.icon-md {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
}
.icon-primary {
  color: #F7D708 ;
}

.fa-facebook:after {
  content: "\f09a";
}

.fa-twitter:after {
  content: "\f099";
}

.fa-google-plus:after {
  content: "\f0d5";
}

/*
* @subsection Buttons
*/
.btn {
  display: inline-block;
  text-align: center;
  line-height: 1.2;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 700;
}
.btn-primary {
  position: relative;
  color: #fff;
  background: #004771 ;
  border-radius: 13px;
  border: 15px solid #004771 ;
  text-transform: uppercase;
  font-weight: 400;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-primaryblue {
  position: relative;
  color: #fff;
  background:  #004771 ;
  border-radius: 30px;
  border: 1px solid  #004771 ;
  text-transform: uppercase;
  font-weight: 400;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.btn-primary:hover, .btn-primary:active {
  color: #F7D708 ;
  background: #fff;
}
.btn-sm {
  font-size: 12px;
  line-height: 49px;
  width: 144px;
  height: 49px;
}
.btn-md {
  font-size: 12px;
  line-height: 49px;
  width: 184px;
  height: 49px;
	color: #fff;
  background:  #004771 ;
  border-radius: 13px;
  border: 1px solid  #004771 ;
}

/*
* @subsection Box
*/
.box .box__middle, .box-xs .box__middle, .box-sm .box__middle, .box-md .box__middle, .box-lg .box__middle {
  vertical-align: middle;
}
.box .box__bottom, .box-xs .box__bottom, .box-sm .box__bottom, .box-md .box__bottom, .box-lg .box__bottom {
  vertical-align: bottom;
}

.box .box_left img, .box .box_right img {
  max-width: 100%;
}
.box .box_left, .box .box_right, .box .box_cnt {
  padding: 0;
  display: table-cell;
  vertical-align: top;
}
.box .box_left {
  padding-right: 40px;
}
.box .box_right {
  padding-left: 40px;
}

.box-clear .box_left img, .box-clear .box_right img {
  max-width: 100%;
}
.box-clear .box_left, .box-clear .box_right, .box-clear .box_cnt {
  padding: 0;
  display: block;
}
.box-clear .box_left {
  padding-bottom: 40px;
}
.box-clear .box_right {
  padding-top: 40px;
}

@media (min-width: 480px) {
  .box-xs .box_left img, .box-xs .box_right img {
    max-width: none;
  }
  .box-xs .box_left, .box-xs .box_right, .box-xs .box_cnt {
    padding: 0;
    display: table-cell;
    vertical-align: top;
  }
  .box-xs .box_left {
    padding-right: 40px;
  }
  .box-xs .box_right {
    padding-left: 40px;
  }

  .box-xs-clear .box_left img, .box-xs-clear .box_right img {
    max-width: 100%;
  }
  .box-xs-clear .box_left, .box-xs-clear .box_right, .box-xs-clear .box_cnt {
    padding: 0;
    display: block;
  }
  .box-xs-clear .box_left {
    padding-bottom: 40px;
  }
  .box-xs-clear .box_right {
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .box-sm .box_left img, .box-sm .box_right img {
    max-width: none;
  }
  .box-sm .box_left, .box-sm .box_right, .box-sm .box_cnt {
    padding: 0;
    display: table-cell;
    vertical-align: top;
  }
  .box-sm .box_left {
    padding-right: 40px;
  }
  .box-sm .box_right {
    padding-left: 40px;
  }

  .box-sm-clear .box_left img, .box-sm-clear .box_right img {
    max-width: 100%;
  }
  .box-sm-clear .box_left, .box-sm-clear .box_right, .box-sm-clear .box_cnt {
    padding: 0;
    display: block;
  }
  .box-sm-clear .box_left {
    padding-bottom: 40px;
  }
  .box-sm-clear .box_right {
    padding-top: 40px;
  }
}
@media (min-width: 992px) {
  .box-md .box_left img, .box-md .box_right img {
    max-width: none;
  }
  .box-md .box_left, .box-md .box_right, .box-md .box_cnt {
    padding: 0;
    display: table-cell;
    vertical-align: top;
  }
  .box-md .box_left {
    padding-right: 40px;
  }
  .box-md .box_right {
    padding-left: 40px;
  }

  .box-md-clear .box_left img, .box-md-clear .box_right img {
    max-width: 100%;
  }
  .box-md-clear .box_left, .box-md-clear .box_right, .box-md-clear .box_cnt {
    padding: 0;
    display: block;
  }
  .box-md-clear .box_left {
    padding-bottom: 40px;
  }
  .box-md-clear .box_right {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .box-lg .box_left img, .box-lg .box_right img {
    max-width: none;
  }
  .box-lg .box_left, .box-lg .box_right, .box-lg .box_cnt {
    padding: 0;
    display: table-cell;
    vertical-align: top;
  }
  .box-lg .box_left {
    padding-right: 40px;
  }
  .box-lg .box_right {
    padding-left: 40px;
  }

  .box-lg-clear .box_left img, .box-lg-clear .box_right img {
    max-width: 100%;
  }
  .box-lg-clear .box_left, .box-lg-clear .box_right, .box-lg-clear .box_cnt {
    padding: 0;
    display: block;
  }
  .box-lg-clear .box_left {
    padding-bottom: 40px;
  }
  .box-lg-clear .box_right {
    padding-top: 40px;
  }
}
/*
* @subsection List
*/
.list li + li {
  margin-top: 17px;
  font-weight: 300;
}

/*
* @subsection Inline list
*/
.inline-list > li {
  display: inline-block;
}
.inline-list > li a {
  position: relative;
  transition: .2s;
}
.inline-list > li a:after {
  position: absolute;
  left: 0;
  top: 2px;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: inherit;
  font-family: "FontAwesome";
  opacity: 1;
}
.inline-list > li a:hover:after {
  -moz-transform: scale(3);
  -ms-transform: scale(3);
  -o-transform: scale(3);
  -webkit-transform: scale(3);
  transform: scale(3);
  opacity: 0;
}
.inline-list * + li {
  margin-left: 120px;
}
@media (max-width: 480px) {
  .inline-list * + li {
    margin-left: 50px;
  }
}

/*
* @subsection Marked list
*/
.marked-list > li {
  position: relative;
  list-style: none;
  padding-left: 26px;
}
.marked-list > li + li {
  margin-top: 12px;
}
.marked-list > li a {
  color: #555555;
}
.marked-list > li:before {
  position: absolute;
  top: 0px;
  left: -5px;
  font-family: 'Material Icons';
  font-size: 17px;
  color: #F7D708 ;
  content: '\e5cc';
}

/*
* @subsection Indexed List
*/
.index-list {
  counter-reset: li;
}
.index-list li {
  position: relative;
  padding-left: 0;
  text-align: center;
}
.index-list li:before {
  content: counter(li,decimal-leading-zero);
  counter-increment: li;
  position: relative;
  margin-bottom: 8px;
  display: inline-block;
  border-bottom: 4px solid #F7D708 ;
  width: 70px;
  height: 62px;
  line-height: 36px;
  color: #F7D708 ;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 50px;
  font-weight: 500;
}
@media (min-width: 480px) {
  .index-list li {
    padding-left: 101px;
    text-align: left;
  }
  .index-list li:before {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.index-list li + li {
  margin-top: 73px;
}
.index-list * + p {
  margin-top: 7px;
}

/*
* @subsection News post
*/
.news-post {
  position: relative;
  display: inline-block;
}
.news-post img {
  width: 100%;
  height: auto;
}
.news-post h5 {
  letter-spacing: -0.011em;
}
.news-post .post-meta {
  color: #aab0b0;
}
.news-post .caption {
  padding-right: 5px;
}
.news-post img + .post-meta {
  margin-top: 23px;
}
.news-post .post-meta + .caption {
  margin-top: 15px;
}
.news-post img + .caption {
  margin-top: 28px;
}

/*
* @subsection Blockquote
*/
.quote {
  position: relative;
}
.quote .box_left img {
  width: auto;
}
@media (min-width: 992px) {
  .quote .box_left {
    border-right: 1px solid #dadada;
    padding: 17px 29px 0 0;
  }
  .quote .box_cnt {
    padding: 39px 20px 48px 31px;
  }
}
.quote time {
  color: #dadada;
}
.quote cite {
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  color: #303334;
}
.quote p + p {
  margin-top: 3px;
}
.quote time + p {
  margin-top: 17px;
}
.quote--mod-1 {
  padding-left: 53px;
}
.quote--mod-1:before {
  content: '\e244 ';
  position: absolute;
  top: -12px;
  left: -9px;
  display: block;
  font-family: 'Material Icons';
  font-size: 50px;
  color: #F7D708 ;
}

/*
* @subsection Product
*/
.product {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.product img {
  width: 100%;
  height: auto;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.product .caption {
  position: relative;
  z-index: 2;
  background: #fff;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  padding-top: 27px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.product .caption .box_left {
  height: 105px;
  padding: 42px 0 0 0;
  min-width: 91px;
  font-weight: 500;
  border-right: 1px solid #dadada;
}
.product .caption .box_cnt {
  padding: 3px 5px 5px 29px;
}
.product .caption .small {
  font-size: 12px;
  line-height: 24px;
  color: #aab0b0;
}
.product .caption p {
  letter-spacing: -0.001em;
}
.product .caption a:hover {
  text-decoration: none;
}
@media (max-width: 479px) {
  .product .caption .box-clear .box_left {
    height: auto;
    border: none;
    padding: 0;
  }
  .product .caption .box-clear .box_cnt {
    padding: 10px 0 0 0;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .product .caption .box-xs-clear .box_left {
    height: auto;
    border: none;
    padding: 0;
  }
  .product .caption .box-xs-clear .box_cnt {
    padding: 10px 0 0 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .product .caption .box-sm-clear .box_left {
    height: auto;
    border: none;
    padding: 0;
  }
  .product .caption .box-sm-clear .box_cnt {
    padding: 10px 0 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product .caption .box-md-clear .box_left {
    height: auto;
    border: none;
    padding: 0;
  }
  .product .caption .box-md-clear .box_cnt {
    padding: 10px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .product .caption .box-lg-clear .box_left {
    height: auto;
    border: none;
    padding: 0;
  }
  .product .caption .box-lg-clear .box_cnt {
    padding: 10px 0 0 0;
  }
}

/*
* @subsection Contact info
*/
.contact-info dl {
  line-height: 2;
  font-weight: 400;
  margin-top: 14px;
}
.contact-info dl dt, .contact-info dl dd {
  display: inline-block;
}
.contact-info dl + dl {
  margin-top: 0px;
}
.contact-info a[href^="mailto:"] {
  text-decoration: none;
}
.contact-info a[href^="mailto:"]:hover {
  color: inherit;
  text-decoration: underline;
}

/*
* @subsection Privacy policy
*/
.terms-list dd {
  color: #555555;
  line-height: 1.5;
}
.terms-list * + dt {
  margin-top: 72px;
}
.terms-list * + dd {
  margin-top: 6px;
}

/*
* @subsection Lines
*/
.line {
  margin-top: 0;
  border: none;
  width: 100%;
  height: 1px;
  background-color: #dedede;
  color: #dedede;
}

/*
* @bugfix Container, containing a line, have height according to the font size
*/
.reset-font-size {
  font-size: 0;
}

/**
* @subsection Superfish
*
* @description Superfish is an enhanced Suckerfish-style menu jQuery plugin.
*
* @author     Joel Birch
* @link http://users.tpg.com.au/j_birch/plugins/superfish/
* @license MIT license - http://opensource.org/licenses/MIT
*/
.sf-menu {
  display: inline-block;
}
.sf-menu:before, .sf-menu:after {
  display: table;
  content: "";
  line-height: 0;
}
.sf-menu:after {
  clear: both;
}
.sf-menu > li {
  position: relative;
  float: left;
}
.sf-menu > li + li {
  margin-left: 37px;
}
.sf-menu a {
  display: block;
}

.sf-menu > li > a {
  color: #cacccc;
  font-size: 19px;
  width: 83px;
  height: 26px;
  border-bottom: 2px solid #cacccc;
}
.sf-menu > li.sfHover > a, .sf-menu > li > a:hover {
  color: #F7D708 ;
  border-bottom: 2px solid #F7D708 ;
}
.sf-menu > li.active > a {
  color: #303334;
  border-bottom: 2px solid #303334;
}

.sf-menu ul {
  display: none;
  position: absolute;
  top: 62px;
  left: 0;
  width: 187px;
  background: #fff;
  z-index: 2;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.175);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sf-menu ul > li {
  position: relative;
}
.sf-menu ul > li > a {
  color: #000000;
  background: none;
  padding: 5px 20px;
  line-height: 21px;
}
.sf-menu ul > li.sfHover > a, .sf-menu ul > li > a:hover {
  color: #cacccc;
  background-color: #000000;
  box-shadow: 0px 1px 1px 1px lightgray;
}

.sf-menu ul ul {
  position: absolute;
  top: 0;
  left: 100%;
  width: 187px;
  background: #fff;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.175);
  z-index: 4;
}

.sf-menu ul ul > li > a {
  color: #000000;
  background: none;
}
.sf-menu ul ul > li.sfHover > a, .sf-menu ul ul > li > a:hover {
  color: #cacccc;
  background-color: #000000;
  box-shadow: 0px 1px 1px 1px lightgray;
}

.sf-menu > li > .sf-with-ul {
  position: relative;
}

@media (max-width: 767px) {
  .sf-menu {
    display: none;
  }
}
/**
* @subsection   RD Mobile Menu
*
* @description  mobile navbar
*
* @author       Evgeniy Gusarov (Diversant)
* @link         http://cms.devoffice.com/diversant/rd-navbar/
*/
.rd-mobilemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9999999;
  text-align: left;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.rd-mobilemenu.active {
  right: 0;
}

.rd-mobilemenu_ul {
  position: fixed;
  top: -56px;
  left: 0;
  bottom: -56px;
  width: 240px;
  padding: 132px 0 76px;
  color: #666;
  background: #FFF;
  font-size: 14px;
  line-height: 20px;
  overflow: auto;
  -webkit-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  -webkit-transform: translateX(-240px);
  transform: translateX(-240px);
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -moz-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -o-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.rd-mobilemenu.active .rd-mobilemenu_ul {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.rd-mobilemenu_ul a {
  display: block;
  padding: 14px 25px 16px;
}
.rd-mobilemenu_ul a.active {
  background: #f5f5f5;
  color: #2d2d2d;
}
.rd-mobilemenu_ul a:hover {
  background: #F7D708 ;
  color: #FFF;
}
.rd-mobilemenu_ul a .rd-submenu-toggle {
  position: absolute;
  top: 50%;
  right: 11px;
  margin-top: -17.5px;
  width: 32px;
  height: 32px;
  font: 400 10px "FontAwesome";
  line-height: 32px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
}
.rd-mobilemenu_ul a .rd-submenu-toggle:after {
  content: '\f078';
}
.rd-mobilemenu_ul a .rd-submenu-toggle:hover {
  background: #FFF;
  color: #666;
}
.rd-mobilemenu_ul a.rd-with-ul {
  position: relative;
}
.rd-mobilemenu_ul a.rd-with-ul.active .rd-submenu-toggle {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rd-mobilemenu_ul ul a {
  padding-left: 40px;
}
.rd-mobilemenu_ul ul ul a {
  padding-left: 60px;
}
.rd-mobilemenu_ul:after {
  content: '';
  display: block;
  height: 20px;
}

.rd-mobilepanel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #FFF;
  color: #000;
  -webkit-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 99999991;
}

.rd-mobilepanel_title {
  position: fixed;
  top: 4px;
  left: 56px;
  right: 56px;
  color: #000;
  font-size: 24px;
  line-height: 48px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rd-mobilepanel_toggle {
  position: fixed;
  top: 4px;
  left: 8px;
  width: 48px;
  height: 48px;
}
.rd-mobilepanel_toggle span {
  position: relative;
  display: block;
  margin: auto;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rd-mobilepanel_toggle span:after, .rd-mobilepanel_toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -8px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.rd-mobilepanel_toggle span:after {
  top: 8px;
}
.rd-mobilepanel_toggle span:after, .rd-mobilepanel_toggle span:before, .rd-mobilepanel_toggle span {
  width: 24px;
  height: 4px;
  background-color: #000;
  backface-visibility: hidden;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.rd-mobilepanel_toggle span {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.rd-mobilepanel_toggle span:before, .rd-mobilepanel_toggle span:after {
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
  -moz-transform-origin: 1.71429px center;
  -ms-transform-origin: 1.71429px center;
  -o-transform-origin: 1.71429px center;
  -webkit-transform-origin: 1.71429px center;
  transform-origin: 1.71429px center;
}
.rd-mobilepanel_toggle.active span {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.rd-mobilepanel_toggle.active span:before, .rd-mobilepanel_toggle.active span:after {
  top: 0;
  width: 15px;
}
.rd-mobilepanel_toggle.active span:before {
  -webkit-transform: rotate3d(0, 0, 1, -40deg);
  transform: rotate3d(0, 0, 1, -40deg);
}
.rd-mobilepanel_toggle.active span:after {
  -webkit-transform: rotate3d(0, 0, 1, 40deg);
  transform: rotate3d(0, 0, 1, 40deg);
}

@media (max-width: 767px) {
  body {
    padding-top: 56px;
  }

  .rd-mobilemenu, .rd-mobilepanel {
    display: block;
  }
}
@media (max-width: 359px) {
  .rd-mobilepanel_title {
    font-size: 18px;
  }
}
/**
* @subsection   Stuck menu   
*/
.stuck_container {
  min-height: 90px;
}

.isStuck {
  background: #fff;
  z-index: 999;
  min-height: 75px;
  box-shadow: 0 1px 2px #bbb;
}
.isStuck .sf-menu ul {
  top: 50px;
}
.isStuck .sf-menu ul ul {
  top: 0;
}

@media only screen and (max-width: 979px) {
  .isStuck {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .stuck_container .sf-menu ul {
    top: 46px;
    text-align: left;
  }
  .stuck_container .sf-menu ul ul {
    top: 0;
  }

  .isStuck .brand {
    display: none;
  }
  .isStuck .sf-menu ul {
    top: 50px;
  }
}
@media (min-width: 768px) {
  .stuck_container {
    min-height: 105px;
  }

  .isStuck {
    min-height: 75px;
  }
}
/**
* @subsection   ToTop   
*/
.toTop {
  width: 50px;
  height: 50px;
  font-size: 52px;
  line-height: 46px;
  color: #303334;
  position: fixed;
  right: 8.87%;
  bottom: 40px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}
.toTop:hover {
  color: #F7D708 ;
  text-decoration: none;
}

.mobile .toTop,
.tablet .toTop {
  display: none !important;
}

/*
* @section Header
*/
header {
  text-align: center;
}
header .brand, header .nav {
  float: none;
  display: inline-block;
  margin-top: 20px;
}
header .brand + .nav {
  margin-bottom: 20px;
}
header .isStuck .brand {
  margin-top: 12px;
}
header .isStuck .nav {
  margin-top: 25px;
}
@media (min-width: 992px) {
  header {
    text-align: left;
  }
  header .brand {
    float: left;
    margin-top: 23px;
  }
  header .nav {
    float: right;
    margin-top: 43px;
  }
}
@media (max-width: 767px) {
  header .nav {
    margin-top: 0;
  }
}

/*
* @section Content
*/
main {
  display: block;
}
main h1 {
	position: relative;
	letter-spacing: -0.04em;
	color: #004771;
}
main h1:before {
  content: "";
  position: absolute;
  top: 119%;
  left: 0;
  width: 125px;
  height: 1px;
  background: #004771;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (min-width: 480px) {
  main h1:before {
    height: 2px;
  }
}
@media (min-width: 768px) {
  main h1:before {
    height: 3px;
  }
}
@media (min-width: 992px) {
  main h1:before {
    height: 4px;
  }
}
main *:hover > h1:before {
  width: 100%;
}
main .box .box_left h6 {
  line-height: 1.5;
  font-weight: 600;
}
main .image-wrap {
  display: inline-block;
  position: relative;
  width: 100%;
  text-align: center;
}

/*
* @section Footer
*/
footer {
  padding-top: 97px;
  padding-bottom: 59px;
  background: #f9f9f9;
  color: #000000;
  font-size: 17px;
  font-weight: 300;
}
footer address {
  line-height: 1.3;
}
footer a[href="./"]:hover {
  color: inherit;
}
footer a[href^="mailto:"] {
  color: #000000;
}
footer a[href^="mailto:"]:hover {
  text-decoration: none;
  color: #F7D708 ;
}
footer .flow-offset-1 > * + * {
  margin-top: 40px;
}
@media (min-width: 480px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-1:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-2:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-3:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-4:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-5:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-6:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-7:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-8:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-9:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-10:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-11:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 480px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-1:nth-child(n + 13), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-2:nth-child(n + 7), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-3:nth-child(n + 5), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-4:nth-child(n + 4), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-6:nth-child(n + 3), html:not(.lt-ie10) footer .flow-offset-1 > .col-xs-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-1:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-2:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-3:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-4:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-5:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-6:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-7:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-8:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-9:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-10:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-11:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-1:nth-child(n + 13), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-2:nth-child(n + 7), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-3:nth-child(n + 5), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-4:nth-child(n + 4), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-6:nth-child(n + 3), html:not(.lt-ie10) footer .flow-offset-1 > .col-sm-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 992px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-md-1:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-2:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-3:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-4:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-5:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-6:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-7:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-8:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-9:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-10:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-11:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-md-1:nth-child(n + 13), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-2:nth-child(n + 7), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-3:nth-child(n + 5), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-4:nth-child(n + 4), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-6:nth-child(n + 3), html:not(.lt-ie10) footer .flow-offset-1 > .col-md-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-1:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-2:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-3:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-4:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-5:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-6:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-7:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-8:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-9:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-10:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-11:nth-child(n), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-12:nth-child(n) {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-1:nth-child(n + 13), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-2:nth-child(n + 7), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-3:nth-child(n + 5), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-4:nth-child(n + 4), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-6:nth-child(n + 3), html:not(.lt-ie10) footer .flow-offset-1 > .col-lg-12:nth-child(n + 2) {
    margin-top: 40px;
  }
}

.spoa_cntnmb {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.spoa_cntnmb .spoa_cntnmb_list {
	width: 50%;
	padding: 0 30px;
	border-right: 1px solid #dbdbdb;
}
.spoa_cntnmb .spoa_cntnmb_list:nth-child(2) {
	border: 0 !important;
}

@media (max-width:767px){
    .spoa_cntnmb .spoa_cntnmb_list {
	width: 100%;
	padding: 0 0 30px;
	border-bottom: 1px solid #dbdbdb;
	border-right: 0;
	margin: 0 0 30px;
}
}