/*
* @package      Style
* @description  This package holds style declarations of all
*               included page layouts
*/
/*
* @section Variables
*/
/*
* @subsection Fonts
*/
/*
* @subsection Colors
*/
/*
* @subsection Screen sizes
*/
/*
* @subsection Border radius
*/
/*
* @subsection Shadows
*/
@import "animate.css";
.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;
  }
}
/*================      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;
  }
}
/*
* @section      Main Styles
* @description  This section holds template default elements style
*               declarations
*/
body {
  color: #7c7a76;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 14px/24px;
  line-height: 1.36364;
  -webkit-text-size-adjust: none;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 22px;
  }
}

img {
  max-width: 100%;
  height: auto;
  -moz-backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6,
.heading-1, .heading-2, .heading-3, .heading-4, .heading-5, .heading-6 {
  font-weight: 500;
}

h1, .heading-1 {
  font-size: 125px;
  line-height: 1.2;
}

h2, .heading-2 {
  font-size: 60px;
  line-height: 0.90909;
}
@media (min-width: 768px) {
  h2, .heading-2 {
    font-size: 75px;
  }
}
@media (min-width: 992px) {
  h2, .heading-2 {
    font-size: 95px;
  }
}
@media (min-width: 1400px) {
  h2, .heading-2 {
    letter-spacing: -2.5px;
    font-size: 110px;
  }
}

h3, .heading-3 {
  line-height: 0.83333;
  color: #303334;
  font-size: 50px;
  text-rendering: optimizeLegibility;
  clear: both;
}
@media (min-width: 768px) {
  h3, .heading-3 {
    letter-spacing: -1px;
    font-size: 60px;
  }
}

h4, .heading-4 {
  font-size: 45px;
  line-height: 0.88889;
  color: #303334;
}

h5, .heading-5 {
  font-size: 35px;
  line-height: 0.85714;
  color: #303334;
}

h6, .heading-6 {
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15385;
  color: #303334;
}

p a:hover, .marked-list a:hover, .list a:hover {
  text-decoration: underline;
}
p .fa, .marked-list .fa, .list .fa {
  text-decoration: none;
}

time {
  display: block;
}

a, .link {
  color: #1b8441;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.04348;
  text-decoration: none;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  a, .link {
    font-size: 18px;
  }
}
a:active, a:focus, .link:active, .link:focus {
  outline: none;
  color: #1B8441 /*ff3f3f*/;
}
a:hover, .link:hover {
  color: #000;
}

.link-contrast-variant-1 {
  font: inherit;
  color: #7c7a76;
}
.link-contrast-variant-1:active, .link-contrast-variant-1:focus {
  outline: none;
  color: #7c7a76;
}
.link-contrast-variant-1:hover {
  color: #1B8441 /*ff3f3f*/;
}

a[href^="tel:"],
a[href^="callto:"] {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: normal;
  text-decoration: none;
}
a[href^="tel:"]:hover,
a[href^="callto:"]:hover {
  color: #1B8441 /*ff3f3f*/;
}

dl dt, dl dd {
  display: inline;
}
dl dt:after {
  content: ': ';
}

address {
  display: inline-block;
}

strong {
  font-weight: 700;
}

.light {
  font-size: inherit;
  font-weight: 300;
}

.fa {
  line-height: inherit;
}

[class*='fa-']:before {
  font-weight: 400;
  font-family: "FontAwesome";
}

.page {
  overflow: hidden;
  min-height: 500px;
}
.lt-ie9 .page {
  min-width: 1200px;
}

/*
* @section      Main Layout
* @description  This section holds class declarations for elements
*               indent creation
*/
* + hr {
  margin-top: 15px;
}
@media (min-width: 992px) {
  * + hr {
    margin-top: 20px;
  }
}

hr + * {
  margin-top: 25px;
}
@media (min-width: 992px) {
  hr + * {
    margin-top: 50px;
  }
}

* + dl {
  margin-top: 28px;
}

dl + * {
  margin-top: 36px;
}

* + cite {
  margin-top: 35px;
}

h3 + *,
h3 + .pricing-table,
* + .offset-1,
.offset-1 {
  margin-top: 35px;
}
@media (min-width: 768px) {
  h3 + *,
  h3 + .pricing-table,
  * + .offset-1,
  .offset-1 {
    margin-top: 75px;
  }
}

h6 + * {
  margin-top: 15px;
}

* + .offset-2 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  * + .offset-2 {
    margin-top: 63px;
  }
}

* + .offset-3 {
  margin-top: 40px;
}
@media (min-width: 768px) {
  * + .offset-3 {
    margin-top: 10px;
  }
}

* + .offset-5 {
  margin-top: 81px;
}

* + .offset-7 {
  margin-top: 15px;
}
@media (min-width: 768px) {
  * + .offset-7 {
    margin-top: 0;
  }
}

* + .offset-8 {
  margin-top: 40px;
}

.offset-9 {
  margin-top: 0px /*15px*/;
}

* + .map {
  margin-top: 70px;
}
@media (min-width: 768px) {
  * + .map {
    margin-top: 110px;
  }
}

* + .btn,
* + .pricing-table,
* + .offset-6 {
  margin-top: 45px;
}

* + .quote {
  margin-top: 50px;
}

* + .inline-list {
  margin-top: 45px;
}
@media (min-width: 768px) {
  * + .inline-list {
    margin-top: 96px;
  }
}

.box-skin + * {
  margin-top: 40px;
}

* + .marked-list-left {
  margin-top: 65px;
}

.terms-list + * {
  margin-top: 36px;
}

p + p {
  margin-top: 11px;
}

p + .btn {
  margin-top: 58px;
}

.btn + .btn {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .btn + .btn {
    margin-top: 0;
    margin-left: 10px;
  }
}

.marked-list + .marked-list {
  margin-top: 25px;
  margin-left: auto;
}
@media (min-width: 430px) {
  .marked-list + .marked-list {
    margin-top: auto;
  }
}
@media (min-width: 480px) {
  .marked-list + .marked-list {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .marked-list + .marked-list {
    margin-left: 87px;
  }
}

.offset-4 {
  margin-top: 55px;
}

.inset-1 {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .inset-1 {
    padding: 18px 115px 0 30px;
  }
}

.inset-2 {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .inset-2 {
    padding-left: 135px;
    padding-right: 0;
  }
}

@media (min-width: 768px) {
  .inset-3 {
    padding-left: 10px;
  }
}

/*
* @section      Helpers
* @description  This section holds various helper classes for conditional
*               page styling
*/
.relative {
  position: relative;
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.inline-block {
  display: inline-block;
}

ul.block, .block {
  display: block;
}

/*
* @section      Components
* @description  This section holds all elements style declarations of
*               template
*/
/*
* @subsection 	Brand
*/
.brand {
  display: inline-block;
}
.brand_name {
  line-height: 85px;
}
.brand_name a {
  font: 400 60px/40px 'Pacifico', sans-serif;
  color: #7c7a76;
  letter-spacing: -0.5px;
}
.brand_name a:focus, .brand_name a:active {
  color: #7c7a76;
}

/*
* @subsection	Contact info
*/
.contact-info {
  position: relative;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-info {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .contact-info {
    text-align: right;
  }
}
.contact-info a {
  position: relative;
  display: inline-block;
  top: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 40px;
  padding-left: 30px;
}
.contact-info a:hover {
  color: #d9d9d9;
}
@media (min-width: 768px) {
  .contact-info a {
    top: 9px;
    font-size: 20px;
  }
}
.contact-info a:before {
  font-family: "FontAwesome";
  font-size: 18px;
  line-height: 1;
  color: inherit;
  position: absolute;
  top: 0;
}
@media (min-width: 768px) {
  .contact-info a:before {
    top: 3px;
  }
}
.contact-info a:before {
  content: '\f041';
  left: 9px;
}
.contact-info a[href*="callto:"] {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contact-info a[href*="callto:"] {
    margin-top: 0;
    margin-left: 28px;
  }
}
.contact-info a[href*="callto:"]:before {
  content: '\f095';
  left: 4px;
}

/*
* @subsection 	Quote
*/
.quote {
  display: block;
  padding-left: 0;
  padding-right: 0;
  max-width: 600px;
}
@media (min-width: 992px) {
  .quote {
    max-width: none;
  }
}
.quote p {
  display: block;
  position: relative;
  padding: 25px;
  background: #7c7a76;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .quote p {
    padding: 35px 40px 50px 40px;
  }
}
.quote p:after {
  content: '';
  position: absolute;
  left: 72px;
  bottom: -32px;
  width: 0;
  height: 0;
  border: 0 solid transparent;
  border-bottom-width: 58px;
  border-top-width: 29px;
  border-left: 19px solid #7c7a76;
  background: transparent;
  -moz-transform: rotate(-130deg) scale(0.8);
  -ms-transform: rotate(-130deg) scale(0.8);
  -o-transform: rotate(-130deg) scale(0.8);
  -webkit-transform: rotate(-130deg) scale(0.8);
  transform: rotate(-130deg) scale(0.8);
}
.quote cite {
  display: block;
}
.quote cite > span {
  display: block;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.36364;
}

/*
* @subsection 	Backgrounds
*/
.bg-default-variant-1 {
  background-color: whitesmoke;
}

[class*="bg-contrast-variant-"] {
  color: #fff;
}
[class*="bg-contrast-variant-"] h1,
[class*="bg-contrast-variant-"] .heading-1 {
  color: #fefefe;
}
[class*="bg-contrast-variant-"] h2, [class*="bg-contrast-variant-"] h3, [class*="bg-contrast-variant-"] h4, [class*="bg-contrast-variant-"] h5, [class*="bg-contrast-variant-"] h6,
[class*="bg-contrast-variant-"] .heading-2, [class*="bg-contrast-variant-"] .heading-3, [class*="bg-contrast-variant-"] .heading-4, [class*="bg-contrast-variant-"] .heading-5, [class*="bg-contrast-variant-"] .heading-6 {
  color: #1b8441;
}
[class*="bg-contrast-variant-"] a {
  color: #1b8441;
}
[class*="bg-contrast-variant-"] a:focus, [class*="bg-contrast-variant-"] a:active {
  color: #fff;
}
[class*="bg-contrast-variant-"] .brand {
  color: #fefefe;
}
[class*="bg-contrast-variant-"] .btn-default {
  color: #fff;
  border-color: #fff;
}
[class*="bg-contrast-variant-"] .btn-default:focus {
  color: #fff;
  border-color: #fff;
}
[class*="bg-contrast-variant-"] .quote p {
  color: #7c7a76;
  background: #fff;

}
[class*="bg-contrast-variant-"] .quote p:after {
  background: transparent !important;
  border-left-color: #fff;
}
[class*="bg-contrast-variant-"] .line {
  background: rgba(255, 255, 255, 0.1);
}

.numbered-section[class*="bg-contrast-variant-"] .number:before {
  color: #fff;
}

.bg-contrast-variant-2 {
  background-color: #2c2b2e;
}

.bg-contrast-variant-3 {
  background-color: #303334;
}

.bg-image {
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-image-1 {
  background-image: url("../images/page-1_slide01.jpg");
}

.bg-image-left {
  background-size: auto 100%;
  background-position: -99999px 0;
  position: relative;
}
@media (max-width: 992px) {
  .bg-image-left * {
    position: relative;
    z-index: 2;
  }
  .bg-image-left:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: -moz-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0.75) 40%, white 72%, white 98%, white 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0.75) 40%, white 72%, white 98%, white 100%);
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.41) 0%, rgba(255, 255, 255, 0.75) 40%, white 72%, white 98%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#69ffffff', endColorstr='#ffffff',GradientType=1 );
    opacity: 0.45;
  }
  .bg-image-left p, .bg-image-left li, .bg-image-left td {
    color: #2c2b2e;
    font-weight: 400;
  }
  .bg-image-left li {
    color: #000;
  }
}
@media (min-width: 480px) {
  .bg-image-left {
    background-position: -300px 0;
  }
}
@media (min-width: 768px) {
  .bg-image-left {
    background-position: -200px 0;
  }
}
@media (min-width: 992px) {
  .bg-image-left {
    background-position: -400px 0;
  }
}
@media (min-width: 1200px) {
  .bg-image-left {
    background-position: -140px 0;
    background-size: auto 100%;
  }
}
@media (min-width: 1500px) {
  .bg-image-left {
    background-position: 0 0;
  }
}

.bg-image-right {
  background-size: auto 100%;
  background-position: right -99999px;
  position: relative;
}
@media (max-width: 992px) {
  .bg-image-right * {
    position: relative;
    z-index: 20;
  }
  .bg-image-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: -moz-radial-gradient(center, ellipse cover, white 0%, white 2%, white 40%, rgba(255, 255, 255, 0.75) 72%, rgba(255, 255, 255, 0.41) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, white 0%, white 2%, white 40%, rgba(255, 255, 255, 0.75) 72%, rgba(255, 255, 255, 0.41) 100%);
    background: radial-gradient(ellipse at center, white 0%, white 2%, white 40%, rgba(255, 255, 255, 0.75) 72%, rgba(255, 255, 255, 0.41) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#69ffffff',GradientType=1 );
    opacity: 0.45;
  }
  .bg-image-right p, .bg-image-right li, .bg-image-right td {
    color: #2c2b2e;
    font-weight: 400;
  }
  .bg-image-right li {
    color: #000;
  }
}
@media (min-width: 480px) {
  .bg-image-right {
    background-position: calc(100% + 250px) 0;
  }
}
@media (min-width: 768px) {
  .bg-image-right {
    background-position: calc(100% + 300px) 0;
  }
}
@media (min-width: 1500px) {
  .bg-image-right {
    background-size: auto 100%;
    background-position: right 0;
  }
}

/*
* @subsection 	Image wrap
*/
.image-wrap {
  position: relative;
  overflow: hidden;
}
.image-wrap > * {
  position: relative;
}
.image-wrap > img {
  position: absolute;
  /*bottom: 0;*/
  height: auto;
  max-width: 75%;
  max-height: 33%;
}
@media (min-width: 480px) {
  .image-wrap > img {
    max-width: 80%;
    max-height: 60%;
  }
}
@media (min-width: 768px) {
  .image-wrap > img {
    max-width: 80%;
    max-height: 50%;
  }
}
@media (min-width: 992px) {
  .image-wrap > img {
    max-width: none;
    max-height: none;
    min-height: 50% /*100%*/;
    min-width: 25% /*50%*/;
    width: auto;
  }
}
@media (min-width: 1920px) {
  .image-wrap > img {
    min-width: 100px;
  }
}

.image-wrap--offset-1 > img {
  max-height: 30%;
}
@media (min-width: 480px) {
  .image-wrap--offset-1 > img {
    max-height: 44%;
  }
}
@media (min-width: 768px) {
  .image-wrap--offset-1 > img {
    max-height: 50%;
  }
}
@media (min-width: 992px) {
  .image-wrap--offset-1 > img {
    max-height: none;
  }
}

/*
* @subsection Box skin
*/
.box-skin:before, .box-skin:after {
  display: table;
  content: "";
  line-height: 0;
}
.box-skin:after {
  clear: both;
}
.box-skin * {
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.box-skin > * + * {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .box-skin > * + * {
    margin-top: 0;
    margin-left: -0.25em;
  }
}
.box-skin__body {
  display: inline-block;
  max-width: 270px;
}

div.box-skin-2 {
  display: inline-block;
  text-align: left;
  padding: 20px 15px 30px 20px;
  background: #fff;
  color: #7c7a76;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width:340px;
}
div.box-skin-2:before, div.box-skin-2:after {
  display: table;
  content: "";
  line-height: 0;
}
div.box-skin-2:after {
  clear: both;
}
@media (max-width: 768px) {
  div.box-skin-2 {
    max-width: 272 /*350px*/;
  }
}
@media (min-width: 768px) {
  div.box-skin-2 {
    padding: 37px 33px 52px 42px;
  }
}
@media (max-width: 992px) {
  div.box-skin-2 {
    color: #000;
  }
}
div.box-skin-2 h1, div.box-skin-2 h2, div.box-skin-2 h3, div.box-skin-2 h4, div.box-skin-2 h5, div.box-skin-2 h6,
div.box-skin-2 .heading-1, div.box-skin-2 .heading-2, div.box-skin-2 .heading-3, div.box-skin-2 .heading-4, div.box-skin-2 .heading-5, div.box-skin-2 .heading-6 {
  color: #303334;
}
div.box-skin-2 * {
  text-align: left;
}

/*
* @subsection 	Icons
*/
.icon {
  display: inline-block;
}

a.icon-md {
  font-size: 26px;
  line-height: 1.38462;
}

.icon-lg {
  font-size: 50px;
  line-height: 1;
}

.icon-primary {
  color: #1B8441 /*ff3f3f*/;
}

.icon-contrast-variant-3 {
  color: #303334;
}

/*
* @subsection 	Buttons
*/
.btn {
  display: inline-block;
  position: relative;
  text-align: center;
  font-weight: 500;
  top: 0;
}
@media (min-width: 992px) {
  .btn:hover {
    top: -10px;
    -moz-transform: rotateX(20deg);
    -ms-transform: rotateX(20deg);
    -o-transform: rotateX(20deg);
    -webkit-transform: rotateX(20deg);
    transform: rotateX(20deg);
  }
  .btn:hover:after {
    height: 10px;
  }
  .btn:focus, .btn:active {
    top: 0;
  }
}
.btn:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 0;
}

.btn-xs {
  padding: 15px 30px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
}

.btn-sm {
  padding: 15px 51px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
}

.btn-md {
  padding: 21px 5px;
  width: 284px;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}

.btn-primary {
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.btn-primary:focus {
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
}
.btn-primary:active {
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
  box-shadow: 0 0 0 rgba(255, 63, 63, 0);
}
.btn-primary:hover {
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
  box-shadow: 0 10px 10px rgba(255, 63, 63, 0.2);
}

.btn-default {
  color: #000;
  border: 1px solid #000;
  background: transparent;
}
.btn-default:active, .btn-default:focus {
  color: #000;
  background: transparent;
}

/*
* @subsection 	Pricing table
*/
.pricing-table {
  display: inline-block;
}

.pricing-table-left td {
  padding: 2px 17px 7px 0;
}
@media (min-width: 768px) {
  .pricing-table-left td {
    padding: 2px 25px 11px 0;
  }
}
@media (min-width: 992px) {
  .pricing-table-left td {
    padding: 2px 25px 18px 0;
  }
}
.pricing-table-left td:first-child {
  color: #1B8441 /*ff3f3f*/;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.pricing-table-right td {
  padding: 2px 0 7px 17px;
}
@media (min-width: 768px) {
  .pricing-table-right td {
    padding: 2px 0 11px 25px;
  }
}
@media (min-width: 992px) {
  .pricing-table-right td {
    padding: 2px 0 12px 25px;
  }
}
@media (min-width: 1200px) {
  .pricing-table-right td {
    padding: 2px 0 18px 25px;
  }
}
.pricing-table-right td:last-child {
  color: #1B8441 /*ff3f3f*/;
  font-weight: 500;
  letter-spacing: -0.25px;
}

/*
* @subsection 	Marked list
*/
.marked-list {
  display: inline-block;
  min-width: 200px;
  font-weight: 300;
  line-height: 2;
}
.marked-list:first-child {
  margin-left: -0.25em;
}
@media (min-width: 768px) {
  .marked-list {
    line-height: 2.27273;
  }
}
.marked-list li {
  position: relative;
}
.marked-list li:before, .marked-list li:after {
  font-family: "FontAwesome";
  line-height: 1;
  color: #7c7a76;
  position: absolute;
  top: 8px;
}
@media (min-width: 768px) {
  .marked-list li:before, .marked-list li:after {
    top: 12px;
  }
}

.marked-list-left li {
  padding-left: 15px;
}
.marked-list-left li:before {
  content: '\f105';
  left: 0;
}

.marked-list-right li {
  padding-right: 19px;
}
.marked-list-right li:after {
  content: '\f104';
  right: 0;
}

/*
* @subsection 	Inline list
*/
.inline-list li {
  display: inline-block;
}
.inline-list li a:active, .inline-list li a:focus {
  color: #303334;
}
.inline-list li a:hover {
  color: #1B8441 /*ff3f3f*/;
}
.inline-list li + li {
  margin-left: 16px;
}

/*
* @subsection 	Terms List
*/
.terms-list dt, .terms-list dd {
  display: block;
}
.terms-list dt:after {
  content: '';
}
.terms-list dt + dd {
  margin-top: 13px;
}
.terms-list dd + dt {
  margin-top: 37px;
}

/*
* @subsection 	Numbered section
*/
.numbered-section .number {
  display: block;
  position: relative;
  width: 100%;
  height: 130px;
  overflow: hidden;
}
.numbered-section .number:before {
  content: counter(section,decimal-leading-zero);
  counter-increment: section;
  display: block;
  line-height: 1;
  font-weight: 500;
  color: rgba(48, 51, 52, 0.1);
  position: absolute;
  top: 0;
  font-size: 200px;
}
@media (min-width: 992px) {
  .numbered-section .number:before {
    min-width: 595px;
  }
}
.numbered-section .number-left:before {
  left: -10px;
}
.numbered-section .number-right:before {
  right: -39px;
}
.numbered-section .number-right-2:before {
  right: -7px;
}
@media (min-width: 768px) {
  .numbered-section .number {
    height: 193px;
  }
  .numbered-section .number:before {
    font-size: 300px;
  }
  .numbered-section .number-left:before {
    left: -15px;
  }
  .numbered-section .number-right:before {
    right: -60px;
  }
}
@media (min-width: 992px) {
  .numbered-section .number {
    height: 281px;
  }
  .numbered-section .number:before {
    font-size: 450px;
    letter-spacing: -15px;
  }
  .numbered-section .number-height-2 {
    height: 300px;
  }
  .numbered-section .number-left:before {
    left: -21px;
  }
  .numbered-section .number-right:before {
    right: -85px;
  }
  .numbered-section .number-right-2:before {
    right: -2px;
  }
}
@media (min-width: 1920px) {
  .numbered-section .number {
    height: 385px;
  }
  .numbered-section .number:before {
    font-size: 610px;
    letter-spacing: -34px;
  }
  .numbered-section .number-height-2 {
    height: 402px;
  }
  .numbered-section .number-left {
    left: 3px;
  }
  .numbered-section .number-right-2:before {
    right: 5px;
  }
}

/*
* @subsection 	Section directions
*/
.section-left > img {
  right: 0;
}
@media (min-width: 992px) {
  .section-left > img {
    right: auto;
    left: 50%;
  }
}
@media (min-width: 1920px) {
  .section-left > img {
    right: 0;
    left: auto;
    height: auto;
  }
}
.section-left .line {
  float: left;
  left: 0;
}
@media (min-width: 768px) {
  .section-left {
    text-align: right;
  }
  .section-left * {
    text-align: left;
  }
}

@media (min-width: 992px) and (max-width: 1920px) {
  .section-left.image-wrap--offset-1 > img {
    left: calc(100% - 41.66667%);
  }
}

.section-right {
  text-align: right;
}
.section-right > img {
  left: 0;
}
@media (min-width: 992px) {
  .section-right > img {
    left: auto;
    right: 65% /*50%*/;
  }
}
@media (min-width: 1920px) {
  .section-right > img {
    left: 0;
    right: auto;
    height: auto;
  }
}
.section-right .number {
  right: 0;
}
.section-right .line {
  float: right;
  right: 0;
}
@media (min-width: 992px) {
  .section-right {
    text-align: left;
  }
  .section-right * {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .section-right.image-wrap--offset-1 > img {
    right: calc(100% - 41.66667%);
  }
}

/*
* @subsection Br
*/
[class*=br-] {
  font-size: 0;
}

.br-visible {
  display: block;
}

@media (min-width: 768px) {
  .br-sm-none {
    display: none;
  }
}

@media (min-width: 992px) {
  .br-md-none {
    display: none;
  }
}

/*
* @subsection 	Line
*/
.line {
  position: relative;
  display: block;
  right: 0;
  height: 1px;
  width: 260px;
  background: rgba(0, 0, 0, 0.1);
  border: 0;
}
.line:before, .line:after {
  display: table;
  content: "";
  line-height: 0;
}
.line:after {
  clear: both;
}
@media (min-width: 768px) {
  .line {
    width: 400px;
  }
}
@media (min-width: 992px) {
  .line {
    width: 510px;
  }
}
@media (min-width: 1920px) {
  .line {
    width: 633px;
  }
}

/*
* @subsection 	Imported modules
*/
/*==================     Box     ======================*/
.box {
  letter-spacing: -0.03px;
}

.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: none;
}
.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-xs .box_left,
.box-sm .box_left,
.box-md .box_left,
.box-lg .box_left {
  padding-bottom: 40px;
}
.box-xs .box_right,
.box-sm .box_right,
.box-md .box_right,
.box-lg .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 {
    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;
    vert-align: top;
  }
  .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 {
    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;
    vert-align: top;
  }
  .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 {
    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;
    vert-align: top;
  }
  .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 {
    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;
    vert-align: top;
  }
  .box-lg-clear .box_left {
    padding-bottom: 40px;
  }
  .box-lg-clear .box_right {
    padding-top: 40px;
  }
}
/*
* @subsection 	Script modules
*/
/*========================   Menu   ==========================*/
.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: 14px;
}
.sf-menu a {
  font-weight: 500;
}

.sf-menu > li > a {
  display: inline;
  position: relative;
  padding: 8px 22px;
  color: #1b8441;
  background: transparent;
  top: 0;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.sf-menu > li > a:hover {
  background: #1b8441;
  -webkit-box-shadow: 0 10px 10px rgba(27, 132, 65, 0.2);
  -moz-box-shadow: 0 10px 10px rgba(27, 132, 65 0.2);
  box-shadow: 0 10px 10px rgba(27, 132, 65, 0.2);
}
@media (min-width: 992px) {
  .sf-menu > li > a:hover {
    top: -10px;
    -moz-transform: rotateX(20deg);
    -ms-transform: rotateX(20deg);
    -o-transform: rotateX(20deg);
    -webkit-transform: rotateX(20deg);
    transform: rotateX(20deg);
  }
}
.sf-menu > li > a:hover:after {
  height: 7px;
}
.sf-menu > li > a:focus, .sf-menu > li > a:active {
  top: 0;
  color: #fff;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.sf-menu > li > a:active:not(:focus) {
  background: #1B8441 /*ff3f3f*/;
  box-shadow: 0 0 0 rgba(255, 63, 63, 0);
}
.sf-menu > li > a:focus:not(:active) {
  background: transparent;
}
.sf-menu > li > a:focus:active {
  top: 0;
}
.sf-menu > li > a:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 0;
}
.sf-menu > li.sfHover > a, .sf-menu > li > a:hover {
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
}
.sf-menu > li > a:hover {
  top: -10px;
  -moz-transform: rotateX(20deg);
  -ms-transform: rotateX(20deg);
  -o-transform: rotateX(20deg);
  -webkit-transform: rotateX(20deg);
  transform: rotateX(20deg);
  color: #fff;
  background: #1b8441;
}
.sf-menu > li.active > a {
  top: 0;
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  color: #fff;
  background: #1b8441;
}

.sf-menu ul {
  display: none;
  position: absolute;
  top: 35px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.11);
  -moz-box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.11);
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.11);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-top: 20px;
  width: 237px;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 999;
  text-align: center;
  background: whitesmoke;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sf-menu ul:before {
  position: absolute;
  left: 50%;
  top: -5px;
  content: '';
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4.5px 5px 4.5px;
  border-color: transparent transparent whitesmoke transparent;
}

.sf-menu ul > li {
  position: relative;
  line-height: 24px;
}
.sf-menu ul > li > a {
  color: #2c2b2e;
}
.sf-menu ul > li > a:active, .sf-menu ul > li > a:focus {
  color: #2c2b2e;
}
.sf-menu ul > li.sfHover > a, .sf-menu ul > li > a:hover {
  color: #7c7a76;
}
.sf-menu ul > li + li {
  margin-top: 9px;
}

.sf-menu ul ul {
  display: block;
  position: absolute;
  top: -95%;
  left: 157%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  float: left;
  padding-top: 26px;
  padding-bottom: 29px;
  text-align: center;
  background: #2c2b2e;
  line-height: 24px;
  -webkit-box-shadow: 1px 1px 1px 0 rgba(255, 255, 255, 0.11);
  -moz-box-shadow: 1px 1px 1px 0 rgba(255, 255, 255, 0.11);
  box-shadow: 1px 1px 1px 0 rgba(255, 255, 255, 0.11);
}
.sf-menu ul ul:before {
  position: absolute;
  left: -1%;
  top: 11px;
  content: '';
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 6px 5px 0;
  border-color: transparent #2c2b2e transparent transparent;
}

.sf-menu ul ul > li {
  display: block;
}
.sf-menu ul ul > li > a {
  color: #fff;
  padding-left: 8px;
}
.sf-menu ul ul > li > a:active, .sf-menu ul ul > li > a:focus {
  color: #fff;
}
.sf-menu ul ul > li.sfHover > a, .sf-menu ul ul > li > a:hover {
  color: #7c7a76;
}

.sf-menu > li > .sf-with-ul {
  position: relative;
}

@media (max-width: 767px) {
  .sf-menu {
    display: none;
  }
}
/*==================   RD Mobile Menu    =====================*/
.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: #fff;
  background: #7c7a76;
  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: 13px 25px 16px;
  color: #fff;
  font-size: 17px;
  line-height: 1.375;
  font-weight: 500;
}
.rd-mobilemenu_ul a.active {
  background: #000;
  color: #2c2b2e;
}
.rd-mobilemenu_ul a:hover {
  background: whitesmoke;
  color: #2c2b2e;
}
.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: #7c7a76;
  color: #fff;
}
.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: #7c7a76;
  color: #fff;
  -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: #fff;
  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: #fff;
  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;
  }
}
/*==================  Stuck menu  ======================*/
.stuck_container {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 17px;
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  .stuck_container {
    padding-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .stuck_container {
    padding-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  .stuck_container {
    padding-bottom: 18px;
  }
}

.isStuck {
  z-index: 999;
  height: 74px;
  right: 0;
  background: #F5F5F5;
  padding-left: 30px;
  padding-right: 30px;
}
.isStuck .brand {
  float: left;
}
.isStuck .brand_name a {
  font-size: 45px;
}
.isStuck .nav {
  float: right;
  top: 7px;
}
.isStuck .nav .sf-menu > li a:hover {
  top: 0;
  box-shadow: none;
}

@media only screen and (max-width: 979px) {
  .isStuck {
    display: none !important;
  }
}
/*==================     ToTop     ======================*/
.toTop {
  width: 39px;
  height: 39px;
  font-family: "FontAwesome";
  font-size: 29px;
  line-height: 1.24138;
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
  border-radius: 50%;
  -webkit-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.4);
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  z-index: 20;
}
.toTop:focus, .toTop:active {
  color: #fff;
  background: #1B8441 /*ff3f3f*/;
}
.toTop:hover {
  color: #fff;
  background: #303334;
  text-decoration: none;
}

.mobile .toTop,
.tablet .toTop {
  display: none !important;
}

/*=================       Tabs     ======================*/
.resp-tabs {
  padding-top: 30px;
  text-align: left;
}
@media (min-width: 768px) {
  .resp-tabs {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .resp-tabs {
    padding-top: 0;
  }
}

.resp-tabs-default-variant-1 .resp-tabs-list .resp-tab-active:after {
  background: whitesmoke;
}

.resp-tabs-list-wrap {
  position: relative;
  border-bottom: 1px solid #dedede;
}
@media (min-width: 480px) {
  .resp-tabs-list-wrap {
    min-height: 60px;
  }
}
@media (min-width: 992px) {
  .resp-tabs-list-wrap {
    min-height: 92px;
  }
}

.resp-tabs-list {
  display: inline-block;
}
@media (min-width: 480px) {
  .resp-tabs-list {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .resp-tabs-list {
    text-align: center;
    white-space: nowrap;
  }
}
@media (min-width: 1200px) {
  .resp-tabs-list {
    position: relative;
    display: inline-block;
    padding: 0;
  }
}
@media (min-width: 1400px) {
  .resp-tabs-list {
    width: 1170px;
    text-align: left;
  }
}
.resp-tabs-list li {
  position: relative;
  left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 50px;
  cursor: pointer;
  color: #303334;
  font-weight: 500;
}
@media (min-width: 480px) {
  .resp-tabs-list li {
    display: inline-block;
    height: 52px;
    padding: 0 0 10px 0;
    left: 0;
  }
}
@media (min-width: 768px) {
  .resp-tabs-list li {
    padding-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .resp-tabs-list li {
    height: 84px;
  }
}
.resp-tabs-list li:hover {
  color: #1B8441 /*ff3f3f*/;
}
@media (min-width: 480px) {
  .resp-tabs-list li + li {
    margin-left: 25px;
  }
}
@media (min-width: 992px) {
  .resp-tabs-list li + li {
    margin-left: 52px;
  }
}
.resp-tabs-list .resp-tab-active {
  color: #1B8441 /*ff3f3f*/;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .resp-tabs-list .resp-tab-active:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 100%;
    left: calc(50% - 5px);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 15px;
    width: 15px;
    background: #fff;
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.resp-tabs-container {
  margin-top: 65px;
}
@media (min-width: 992px) {
  .resp-tabs-container {
    margin-top: 93px;
  }
}

.resp-accordion {
  display: none;
}

.resp-tab-content {
  display: none;
}

.resp-tab-content-active {
  display: block;
}

.thumb {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.thumb img {
  -moz-transition: 0.45s;
  -o-transition: 0.45s;
  -webkit-transition: 0.45s;
  transition: 0.45s;
  min-width: 101%;
  height: auto;
  max-height: 676px;
  overflow: hidden;
}
.thumb_overlay {
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.thumb_overlay:after {
  content: '\f00e';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-family: "FontAwesome";
  font-size: 100px;
  line-height: 1;
  color: rgba(245, 245, 245, 0.5);
}
@media (min-width: 768px) {
  .thumb_overlay:after {
    font-size: 150px;
  }
}
.thumb:hover img {
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -moz-transition: 0.45s;
  -o-transition: 0.45s;
  -webkit-transition: 0.45s;
  transition: 0.45s;
}
.thumb:hover .thumb_overlay {
  opacity: 1;
}

/*
* @section      Page Header
* @description  This section holds specific style redeclarations for
*               some of common elements in page header
*/
header {
  position: relative;
}
header .brand {
  position: relative;
  display: inline-block;
  top: 10px;
  left: auto;
}
@media (min-width: 987px) {
  header .brand {
    top: -7px;
    left: -7px;
  }
}
@media (min-width: 994px) {
  header .brand {
    top: -7px;
    left: 60px;
  }
}
@media (min-width: 1200px) {
  header .brand {
    top: -10px;
    left: 112px;
  }
}
@media (min-width: 992px) {
  header .nav {
    float: right;
    position: relative;
    right: 30px;
  }
}
@media (min-width: 1200px) {
  header .nav {
    top: 10px;
    right: 117px;
  }
}
@media (max-width: 992px) {
  header {
    text-align: center;
  }
}
header .header_content {
  position: absolute;
  top: 325px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  header .header_content {
    top: 200px;
  }
}
@media (min-width: 1620px) {
  header .header_content {
    top: 367px;
  }
}

/*
* @section      Page Content
* @description  This section holds specific style redeclarations for
*               some of common elements in page content
*/
main {
  display: block;
  counter-reset: section;
}

/*
* @subsection 	Well
*/
.well {
  padding-top: 35px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .well {
    padding-bottom: 90px;
  }
}
@media (min-width: 1400px) {
  .well {
    padding-top: 192px;
    padding-bottom: 299px;
  }
}

.well-1 {
  padding-top: 100px;
  padding-bottom: 175px;
}
@media (min-width: 992px) {
  .well-1 {
    padding-top: 135px;
    padding-bottom: 275px;
  }
}

.well-1.image-wrap {
  padding-top: 35px;
  padding-bottom: 100%;
}
@media (min-width: 480px) {
  .well-1.image-wrap {
    padding-bottom: 90%;
  }
}
@media (min-width: 768px) {
  .well-1.image-wrap {
    padding-bottom: 80%;
  }
}
@media (min-width: 992px) {
  .well-1.image-wrap {
    padding-top: 135px;
    padding-bottom: 275px;
  }
}

@media (min-width: 992px) {
  .well-1--inset-1 {
    padding-bottom: 252px;
  }
}

.well-1--inset-2 {
  padding-bottom: 0;
}

.well-1--inset-3 {
  padding-bottom: 150px;
}
@media (min-width: 992px) {
  .well-1--inset-3 {
    padding-bottom: 245px;
  }
}

@media (min-width: 992px) {
  .well-1--inset-4 {
    padding-bottom: 190px;
  }
}

.well-1--inset-5 {
  padding-bottom: 190px;
}

.well-2 {
  padding-top: 105px;
  padding-bottom: 85px;
}
@media (min-width: 992px) {
  .well-2 {
    padding-top: 145px;
  }
}

.image-wrap.well-2 {
  padding-top: 45px;
  padding-bottom: 125%;
}
@media (min-width: 480px) {
  .image-wrap.well-2 {
    padding-bottom: 90%;
  }
}
@media (max-width: 992px) {
  .image-wrap.well-2 {
    padding-bottom: 50%;
  }
}
@media (min-width: 992px) {
  .image-wrap.well-2 {
    padding-top: 145px;
    padding-bottom: 85px;
  }
}

.well-2--inset-1 {
  padding-bottom: 255px;
}

.well-2--inset-2 {
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .well-2--inset-2 {
    padding-bottom: 275px;
  }
}

@media (min-width: 992px) {
  .well-2--inset-3 {
    padding-bottom: 360px;
  }
}

.well-3 {
  padding-top: 120px;
  padding-bottom: 100%;
}
@media (min-width: 480px) {
  .well-3 {
    padding-bottom: 90%;
  }
}
@media (min-width: 768px) {
  .well-3 {
    padding-bottom: 65%;
  }
}
@media (min-width: 992px) {
  .well-3 {
    padding-bottom: 0;
  }
}

.well-3--inset-1 {
  padding-bottom: 120px;
}
@media (min-width: 992px) {
  .well-3--inset-1 {
    padding-bottom: 290px;
  }
}

.well-3--inset-2 {
  padding-bottom: 120px;
}
@media (min-width: 992px) {
  .well-3--inset-2 {
    padding-bottom: 255px;
  }
}

.well-4 {
  padding-top: 108px;
  padding-bottom: 108px;
}

.well-4--inset-1 {
  padding-bottom: 0;
}

/*
* @section      Page Footer
* @description  This section holds specific style redeclarations for
*               some of common elements in page footer
*/
footer a {
  display: inline-block;
  font-size: 22px;
  line-height: 1.36364;
}

/*# sourceMappingURL=style.css.map */