/*----------------------------------
	Common HTML elements and more for easier usage
------------------------------------*/
html {
  overflow-x: hidden;
}

html, html a, body {
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1rem;
  color: #251e1c;
  line-height: 1.6;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding:0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  margin-bottom: 0.75rem;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #242424;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 a:focus, h1 a:hover,
h2 a:focus,
h2 a:hover,
h3 a:focus,
h3 a:hover,
h4 a:focus,
h4 a:hover,
h5 a:focus,
h5 a:hover,
h6 a:focus,
h6 a:hover {
  color: #1b783a;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 1rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

em,
li {
  font-size: 1rem;
  font-weight: 300;
  color: #242424;
}

em > a,
li > a {
  color: #242424;
}

em > a:hover,
li > a:hover {
  color: #1b783a;
}

small {
  color: #656565;
}

label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #242424;
  margin-bottom: .25rem;
}

i {
  line-height: 1;
}

/* Paragraph */
p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #656565;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #251e1c;
  text-decoration: none;
}

a:focus, a:hover {
  color: #251e1c;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/*----------------------------------
  Selection
------------------------------------*/
::selection {
  color: #fff;
  background: #1b783a;
  text-shadow: none;
}

::-webkit-selection {
  color: #fff;
  background: #1b783a;
  text-shadow: none;
}

:active,
:focus {
  outline: none;
}

/*----------------------------------
  Button
------------------------------------*/
.s-btn {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: none;
  white-space: nowrap;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn:focus, .s-btn:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-btn.focus {
  text-decoration: none;
}

.s-btn:active, .s-btn.active {
  background-image: none;
  outline: 0;
}

.s-btn.disabled, .s-btn:disabled,
fieldset[disabled] .s-btn {
  cursor: not-allowed;
  opacity: .65;
}

.s-btn__element--left, .s-btn__element--right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}

/* Sizes
------------------------------ */
.s-btn--xs {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
}

.s-btn--sm {
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0.75rem 1.25rem;
}

.s-btn--md {
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 1rem 2.5rem;
}

.s-btn-icon--md {
  font-size: 1rem;
  padding: 0.9375rem 1.5625rem 0.75rem;
}

/* Styles
------------------------------ */
.s-btn--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
}

.s-btn--white-brd:focus, .s-btn--white-brd:hover {
  color: #222324;
  background: #fff;
  border-color: #fff;
}

.s-btn--white-bg {
  color: #222324;
  background: #fff;
}

.s-btn--white-bg:focus, .s-btn--white-bg:hover {
  color: #1b783a;
  background: #fff;
}

.s-btn--dark-bg {
  color: #fff;
  background: #222324;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-bg:focus, .s-btn--dark-bg:hover {
  color: #fff;
  background: #1b783a;
  border-color: #1b783a;
}

.s-btn--dark-brd {
  color: #222324;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #222324;
}

.s-btn--dark-brd:focus, .s-btn--dark-brd:hover {
  color: #fff;
  background: #222324;
  border-color: #222324;
}

.s-btn--primary-bg {
  color: #fff;
  background: #1b783a;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #1b783a;
}

.s-btn--primary-bg2 {
  color: #fff;
  background: #4694D1;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #4694D1;
}

.s-btn--primary-bg:focus, .s-btn--primary-bg:hover {
  color: #fff;
  background: #1b783a;
  border-color: #1b783a;
}

.s-btn--primary-bg2:focus, .s-btn--primary-bg2:hover {
  color: #fff;
  background: #4694D1;
  border-color: #4694D1;
}

.s-btn--primary-brd {
  color: #1b783a;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #1b783a;
}

.s-btn--primary-brd:focus, .s-btn--primary-brd:hover {
  color: #fff;
  background: #1b783a;
  border-color: #1b783a;
}

.s-btn-icon--white-brd {
  border-left: none;
}

.s-btn-icon--dark-brd {
  border-left: none;
}

/*----------------------------------
  Clients v1
------------------------------------*/
.s-clients-v1 {
  display: block;
  width: 6.25rem;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  cursor: pointer;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-clients-v1:hover {
  opacity: .8;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/*----------------------------------
  FAQ
------------------------------------*/
.s-faq__pseudo {
  position: relative;
}

.s-faq__pseudo:before {
  position: absolute;
  left: 12.5rem;
  bottom: -1rem;
  z-index: -1;
  font-size: 9.375rem;
  font-family: Playfair Display, serif;
  color: rgba(245, 248, 249, 0.8);
  content: "\0026";
}

.s-faq-grid__divider {
  display: inline-block;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  margin: .3125rem 0;
}

.s-faq-grid__title {
  font-size: 1rem;
  color: #fff;
  margin: .3125rem 0 0 .5rem;
}

.s-faq .cbp-caption {
  border-bottom: none;
}

/*----------------------------------
  Form Input
------------------------------------*/
/* Form Input v1 */
.s-form-v1__input {
  height: 3.375rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-color: #fff;
  border-right: none;
  box-shadow: none;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: .625rem 2.5rem;
}

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

.s-form-v1__input::-moz-placeholder {
  color: #fff;
}

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

.s-form-v1__input::placeholder {
  color: #fff;
}

.s-form-v1__input:focus {
  box-shadow: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Form Input v2 */
.s-form-v2__input {
  height: 3.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: #656565;
  border: none;
  box-shadow: none;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: .625rem 1.25rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input::placeholder {
  color: #656565;
}

.s-form-v2__input:focus {
  font-weight: 400;
  color: #656565;
  box-shadow: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v2__input:focus::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::-moz-placeholder {
  color: #656565;
}

.s-form-v2__input:focus:-ms-input-placeholder {
  color: #656565;
}

.s-form-v2__input:focus::placeholder {
  color: #656565;
}

/* Form Input v3 */
.s-form-v3__input {
  position: relative;
  height: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: 0 1.25rem 0 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v3__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.s-form-v3__input:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.99);
  box-shadow: none;
}

.s-form-v3__input:focus::-webkit-input-placeholder {
  color: #fff;
}

.s-form-v3__input:focus::-moz-placeholder {
  color: #fff;
}

.s-form-v3__input:focus:-ms-input-placeholder {
  color: #fff;
}

.s-form-v3__input:focus::placeholder {
  color: #fff;
}

/* Form Input v4 */
.s-form-v4__input {
  position: relative;
  height: 3.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(34, 35, 36, 0.5);
  border: none;
  border-bottom: .0625rem solid;
  background: rgba(34, 35, 36, 0.3);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: 0 1.25rem .3125rem 1rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-form-v4__input::-webkit-input-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input::-moz-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input:-ms-input-placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input::placeholder {
  color: rgba(34, 35, 36, 0.5);
}

.s-form-v4__input:focus {
  color: #222324;
  border-color: #222324;
  box-shadow: none;
}

.s-form-v4__input:focus::-webkit-input-placeholder {
  color: #222324;
}

.s-form-v4__input:focus::-moz-placeholder {
  color: #222324;
}

.s-form-v4__input:focus:-ms-input-placeholder {
  color: #222324;
}

.s-form-v4__input:focus::placeholder {
  color: #222324;
}

.s-form-v4__icon {
  font-size: 1.125rem;
  color: rgba(34, 35, 36, 0.7);
  border-bottom: 0.0625rem solid #222324;
  padding: 0 .75rem .95rem;
}

/* Form Input v5 */
.s-form-v5__input {
  height: 3.375rem;
  color: #656565;
  font-size: 0.875rem;
  font-weight: 300;
  background: transparent;
  border-color: #222324;
  border-right: none;
  box-shadow: none;
  letter-spacing: .1rem;
  text-transform: uppercase;
  padding: .625rem 2.5rem;
}

.s-form-v5__input::-webkit-input-placeholder {
  color: #656565;
}

.s-form-v5__input::-moz-placeholder {
  color: #656565;
}

.s-form-v5__input:-ms-input-placeholder {
  color: #656565;
}

.s-form-v5__input::placeholder {
  color: #656565;
}

.s-form-v5__input:focus {
  color: #222324;
  box-shadow: none;
  border-color: #222324;
}

.s-form-v5__input:focus::-webkit-input-placeholder {
  color: #222324;
}

.s-form-v5__input:focus::-moz-placeholder {
  color: #222324;
}

.s-form-v5__input:focus:-ms-input-placeholder {
  color: #222324;
}

.s-form-v5__input:focus::placeholder {
  color: #222324;
}

/*----------------------------------
  Table
------------------------------------*/

table.top_t{color: #fff;
line-height: 3;}
table.top_t th{border-bottom:  solid thin #fff;
}

table.top_t td{border-bottom:  dotted thin #fff;
}
@media (max-width: 48em) {
table{display: block;
  white-space: nowrap;
  overflow-x: scroll;
	}
}

/*----------------------------------
  Icons
------------------------------------*/
.s-icon {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-icon:focus, .s-icon:hover {
  text-decoration: none;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Sizes
------------------------------ */
.s-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8125rem;
  padding: 0.6875rem;
}

.s-icon--md {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  padding: 0.75rem;
}

.s-icon--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.625rem;
  padding: 0.5625rem 1rem;
}

/* Styles
------------------------------ */
.s-icon--white-brd {
  color: #fff;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-brd:focus, .s-icon--white-brd:hover {
  color: #fff;
  background: #1b783a;
  border-color: #1b783a;
}

.s-icon--white-bg {
  color: #222324;
  background: #fff;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #fff;
  line-height: 1.4;
}

.s-icon--white-bg:focus, .s-icon--white-bg:hover {
  color: #1b783a;
  background: #fff;
  border-color: #fff;
}

.s-icon--primary-brd {
  color: #1b783a;
  background: transparent;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #1b783a;
  line-height: 1.4;
}

.s-icon--primary-brd:focus, .s-icon--primary-brd:hover {
  color: #fff;
  background: #1b783a;
  border-color: #1b783a;
}

.s-icon--primary-bg {
  color: #fff;
  background: #1b783a;
  line-height: 1.6;
}

/*----------------------------------
  Promo Block
------------------------------------*/
/* Promo Block v1 */
.s-promo-block-v1__square-effect {
  position: relative;
}

.s-promo-block-v1__square-effect:before {
  position: absolute;
  top: -5rem;
  left: -1.875rem;
  width: 18.75rem;
  height: 10.9375rem;
  border: .625rem solid;
  border-color: rgba(255, 255, 255, 0.2);
  content: " ";
}

.s-promo-block-v1__square-effect:after {
  position: absolute;
  right: 0;
  bottom: -2rem;
  width: 9.375rem;
  height: 9.375rem;
  border: .625rem solid;
  z-index: -1;
  border-color: rgba(108, 184, 237, 0.9);
  content: " ";
}

/* Promo Block v2 */
.s-promo-block-v2 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v2:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.7) -25%, #1b783a 100%);
  background-repeat: repeat-x;
  content: " ";
}

.s-promo-block-v2__form {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 61.9em) {
  .s-promo-block-v2__form {
    position: static;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Promo Block v3 */
.s-promo-block-v3__divider {
  position: relative;
  padding-bottom: 1.875rem;
}

.s-promo-block-v3__divider:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0.1875rem;
  background-image: linear-gradient(145deg, rgba(152, 119, 234, 0.9) -25%, #1b783a 100%);
  background-repeat: repeat-x;
  content: " ";
}

.s-promo-block-v3__date {
  line-height: .8;
  margin-right: 1rem;
}

.s-promo-block-v3__month, .s-promo-block-v3__year {
  display: block;
  line-height: 1.3;
}

.s-promo-block-v3__month {
  vertical-align: top;
}

/* Promo Block v4 */
.s-promo-block-v4 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v4:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(34, 35, 36, 0.3) 0%, rgba(19, 177, 205, 0.6) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v5 */
.s-promo-block-v5 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v5:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(28, 123, 172, 0.93) 0%, rgba(19, 177, 205, 0.93) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v6 */
.s-promo-block-v6 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v6:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(-180deg, rgba(28, 123, 172, 0.1) 0%, #1b783a 80%);
  background-repeat: repeat-x;
  content: " ";
}

/* Promo Block v7 */
.s-promo-block-v7 {
  position: relative;
  z-index: 1;
}

.s-promo-block-v7:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(145deg, rgba(19, 177, 205, 0.97) 0%, rgba(152, 119, 234, 0.97) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/*----------------------------------
  Mockup
------------------------------------*/
/* Mockup v1 */
.s-mockup-v1 {
  position: relative;
  width: 55rem;
  height: auto;
  z-index: 1;
}

@media (max-width: 61.9em) {
  .s-mockup-v1 {
    width: 100%;
    height: auto;
  }
}

/* Mockup v2 */
.s-mockup-v2 {
  position: absolute;
  left: 6.25rem;
  bottom: 6.25rem;
  width: 25rem;
  height: auto;
}

@media (max-width: 33.9em) {
  .s-mockup-v2 {
    display: none;
  }
}

@media (min-width: 34em) {
  .s-mockup-v2 {
    position: absolute;
    left: 0.625rem;
    bottom: 0.625rem;
    width: 18.75rem;
    height: auto;
  }
}

@media (min-width: 48em) {
  .s-mockup-v2 {
    position: absolute;
    left: 5rem;
    bottom: 5rem;
    width: 18.75rem;
    height: auto;
  }
}

/*----------------------------------
  Plan
------------------------------------*/
/* Plan v1 */
.s-plan-v1 {
  box-shadow: 0.625rem 0.625rem 0.9375rem 0 rgba(31, 31, 31, 0.075);
}

.s-plan-v1__price-mark, .s-plan-v1__price-tag {
  color: #1b783a;
}

.s-plan-v1__price-mark {
  font-size: 1.375rem;
  vertical-align: top;
}

.s-plan-v1__price-tag {
  font-size: 1.875rem;
  line-height: 1.1;
}

/* Plan v2 */
@media (min-width: 62em) {
  .s-plan-v2__main {
    position: relative;
    z-index: 1;
    box-shadow: 0 -1.25rem 3.125rem 0 rgba(34, 35, 36, 0.05);
    margin-top: -.4375rem;
  }
}

/*----------------------------------
  Process v1
------------------------------------*/
.s-process-v1 {
  position: relative;
}

.s-process-v1:before {
  position: absolute;
  top: 3.125rem;
  left: 60%;
  width: 80%;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.2);
  content: " ";
  margin-top: -.03125rem;
}

@media (max-width: 47.9em) {
  .s-process-v1:before {
    display: none;
  }
}

.s-process-v1:last-child:before {
  display: none;
}

/*----------------------------------
  Scroll To Section
------------------------------------*/
/* Scroll To Section v1 */
.s-scroll-to-section-v1--bc {
  position: absolute;
  left: 50%;
  bottom: 0.625rem;
  z-index: 1;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  text-align: center;
}

/*----------------------------------
  Team v1
------------------------------------*/
.s-team-v1 {
  position: relative;
  cursor: pointer;
}

.s-team-v1:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-team-v1:hover:before {
  box-shadow: 0 0 1.25rem 0.3125rem rgba(34, 35, 36, 0.07);
}

/*----------------------------------
  Video
------------------------------------*/
.s-video__bg {
  position: relative;
}

.s-video__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: linear-gradient(145deg, rgba(103, 181, 241, 0.8) 0, rgba(152, 119, 234, 0.8) 100%);
  background-repeat: repeat-x;
  content: " ";
}

/* Video v2 */
.s-video-v2__bg {
  position: relative;
}

.s-video-v2__bg:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(34, 35, 36, 0.85);
  content: " ";
}

/*----------------------------------
  Header
------------------------------------*/
.s-header__navbar {
  background: #fff;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Container
------------------------------ */
.s-header__container {
  width: 100%;
  height: auto;
  display: table;
  padding: .55rem 1rem;
}

.s-header__container:before, .s-header__container:after {
  content: " ";
  display: table;
}

.s-header__container:after {
  clear: both;
}

.container-fluid {
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}

/* Navbar Row
------------------------------ */
.s-header__navbar-row {
  position: relative;
  display: table-row;
  clear: both;
}

.s-header__navbar-row-col {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}

/* Logo
------------------------------ */
.s-header__logo {
  position: relative;
  z-index: 9999;
  width: 100%;
  height: auto;
  float: left;
}

.s-header__logo-link {
  display: inline-block;
  padding: 1rem 0;
}

.s-header__logo-link:focus, .s-header__logo-link:hover {
  text-decoration: none;
}

.s-header__logo-img-default, .s-header__logo-img-shrink {
  display: block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__mail-link {
  display: inline-block;
  padding: 1rem 0;
}

.s-header__mail-link:focus, .s-header__mail-link:hover {
  text-decoration: none;
}

.s-header__mail-img-default, .s-header__mail-img-shrink {
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__logo-img-default {
  opacity: 1;
}

.s-header__logo-img-shrink {
  position: absolute;
  top: 1rem;
  left: 0;
  opacity: 0;
}

@media (max-width: 61.9em) {
  .s-header__logo {
    width: auto;
    height: auto;
    float: left;
  }
}

/* Trigger
------------------------------ */
.s-header__trigger {
  position: relative;
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  float: right;
  overflow: hidden;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

/* Trigger Icon */
.s-header__trigger-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  width: 1.375rem;
  height: 0.1rem;
  background: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__trigger-icon:before, .s-header__trigger-icon:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: " ";
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: transform 0.5s, width 0.5s, top 0.3s;
  transition: transform 0.5s, width 0.5s, top 0.3s;
}

.s-header__trigger-icon:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, 0.4375rem, 0);
  transform: translate3d(0, 0.4375rem, 0);
}

.s-header__trigger-icon:after {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: translate3d(0, -0.4375rem, 0);
  transform: translate3d(0, -0.4375rem, 0);
}

.s-header__trigger--dark .s-header__trigger-icon {
  background: #222324;
}

.s-header__trigger svg {
  position: absolute;
  top: 0;
  left: 0;
}

.s-header__trigger circle {
  -webkit-transition: stroke-dashoffset 0.4s 0s;
  transition: stroke-dashoffset 0.4s 0s;
}

/* Trigger Is Active Style */
.-is-active.s-header__trigger {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.-is-active .s-header__trigger-icon {
  background: #fff;
}

.-is-active .s-header__trigger-icon:before, .-is-active .s-header__trigger-icon:after {
  width: 50%;
  -webkit-transition: transform 0.5s, width 0.5s;
  transition: transform 0.5s, width 0.5s;
}

.-is-active .s-header__trigger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.-is-active .s-header__trigger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.-is-active.s-header__trigger circle {
  stroke-dashoffset: 0;
  -webkit-transition: stroke-dashoffset 0.4s 0.3s;
  transition: stroke-dashoffset 0.4s 0.3s;
}

/* Overlay
------------------------------ */
.s-header-bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(34, 35, 36, 0);
  visibility: hidden;
  -webkit-transition: all 1s ease-in 0.4s;
  transition: all 1s ease-in 0.4s;
}

.s-header-bg-overlay.-is-open {
  background: rgba(34, 35, 36, 0.99);
  visibility: visible;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

/* Nav
------------------------------ */
.s-header__nav {
  height: 100%;
  padding: 7.5rem 0;
}

/* Menu List */
.s-header__nav-menu {
  width: 18.75rem;
  float: right;
  text-align: right;
  margin-bottom: 0;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu {
    width: 50%;
  }
}

@media (max-width: 33.9em) {
  .s-header__nav-menu {
    width: 100%;
    float: none;
  }
}

.s-header__nav-menu-item {
  padding: 0 0 0 4rem;
  margin-bottom: .3125rem;
}

@media (max-width: 47.9em) {
  .s-header__nav-menu-item {
    padding-left: 0;
  }
}

.s-header__nav-menu-link {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  opacity: .85;
  padding: .3125rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider {
  position: relative;
}

.s-header__nav-menu-link-divider:before {
  position: absolute;
  top: 50%;
  right: -2.5rem;
  width: 2.1875rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0);
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header__nav-menu-link-divider[href]:focus, .s-header__nav-menu-link-divider[href]:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider[href]:hover:before {
  right: 0;
  background: white;
}

.s-header__nav-menu-link-divider:focus, .s-header__nav-menu-link-divider:hover {
  color: #fff;
}

.s-header__nav-menu-link-divider:hover {
  opacity: 1;
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active {
  padding-right: 2.5rem;
}

.s-header__nav-menu-link-divider.-is-active:before {
  right: 0;
  background: white;
}
.s-header__w
{
  padding: 12px 0 12px 12px;
  font-size: 0.85rem;
  float: right;
  position: relative;
  top:2px;
right:0;
}

/* Action
------------------------------ */
.s-header__action {
  margin-bottom: 0;
}

.s-header__action--lb {
  position: absolute;
  left: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action--rb {
  position: absolute;
  right: 1.875rem;
  bottom: 1.875rem;
}

.s-header__action-item {
  padding: 0;
  margin-left: .1875rem;
  margin-right: .3125rem;
}

.s-header__action-link {
  position: relative;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  padding: .3125rem;
}

.s-header__action-link:first-child {
  padding-left: 0;
}

.s-header__action-link:last-child {
  padding-right: 0;
}

.s-header__action-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.s-header__action-link.-is-active {
  color: white;
}

/* Menu Open/Close
------------------------------ */
.s-header-bg-overlay .s-header__nav-menu-item {
  opacity: 0;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
  -webkit-transform: translate3d(0, 1.25rem, 0);
  transform: translate3d(0, 1.25rem, 0);
}

.s-header-bg-overlay .s-header__action-item {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

@media (max-width: 47.9em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item,
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
}

@media (min-width: 34em) {
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.2s ease-out;
    transition: all 0.4s 0.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(3) {
    -webkit-transition: all 0.4s 0.6s ease-out;
    transition: all 0.4s 0.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(4) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(5) {
    -webkit-transition: all 0.4s 1s ease-out;
    transition: all 0.4s 1s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(6) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(7) {
    -webkit-transition: all 0.4s 1.4s ease-out;
    transition: all 0.4s 1.4s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(8) {
    -webkit-transition: all 0.4s 1.6s ease-out;
    transition: all 0.4s 1.6s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(9) {
    -webkit-transition: all 0.4s 1.8s ease-out;
    transition: all 0.4s 1.8s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__nav-menu-item:nth-child(10) {
    -webkit-transition: all 0.4s 2s ease-out;
    transition: all 0.4s 2s ease-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .s-header-bg-overlay.-is-open .s-header__action-item {
    opacity: 1;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(1) {
    -webkit-transition: all 0.4s 0.4s ease-out;
    transition: all 0.4s 0.4s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(2) {
    -webkit-transition: all 0.4s 0.8s ease-out;
    transition: all 0.4s 0.8s ease-out;
  }
  .s-header-bg-overlay.-is-open .s-header__action-item:nth-child(3) {
    -webkit-transition: all 0.4s 1.2s ease-out;
    transition: all 0.4s 1.2s ease-out;
  }
}

/* Shrink
------------------------------ */
/* Navbar */
.s-header__shrink .s-header__navbar {
  box-shadow: 0 0 0.9375rem 0 rgba(34, 35, 36, 0.05);
}

.s-header__shrink.-is-open .s-header__navbar {
  background: #fff;
}

/* Logo */
.s-header__shrink.-is-open .s-header__logo-img-default {
  opacity: 1;
}

.s-header__shrink.-is-open .s-header__mail-img-default {
  opacity: 1;
}

.s-header__shrink.-is-open .s-header__mail-img-shrink {
  opacity: 0;
}
.s-header__shrink.-is-open .s-header__logo-img-shrink {
  opacity: 0;
}

.s-header__shrink .s-header__navbar {
  background: #fff;
}

.s-header__shrink .s-header__logo-img-default {
  opacity: 0;
}
.s-header__shrink .s-header__mail-img-default {
  opacity: 0;
}

.s-header__shrink .s-header__logo-img-shrink {
  opacity: 1;
}
.s-header__shrink .s-header__mail-img-shrink {
  opacity: 1;
}

/* Trigger Icon */
.s-header__shrink.-is-open .s-header__trigger-icon {
  background: #fff;
}

.s-header__shrink .s-header__trigger-icon {
  background: #222324;
}

/*----------------------------------
  Header v2
------------------------------------*/
/* Navbar
------------------------------ */
.s-header-v2__navbar {
  position: relative;
  z-index: 1000;
  min-height: 3.125rem;
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.3);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__navbar:before, .s-header-v2__navbar:after {
  content: " ";
  display: table;
}

.s-header-v2__navbar:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
}

/* Navbar Row
------------------------------ */
.s-header-v2__navbar-row {
  display: table-row;
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-row {
    display: inherit;
  }
}

/* Columns */
.s-header-v2__navbar-col {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col {
    display: block;
  }
}

/* Space */
.s-header-v2__navbar-col-width--180 {
  width: 11.250rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-col-width--180 {
    width: auto;
  }
}

/* Variations */
@media (min-width: 62em) {
  .s-header-v2__navbar-col--left {
    float: left;
  }
  .s-header-v2__navbar-col--left .dropdown__mega-menu {
    right: auto;
    left: 10rem;
  }
}

@media (min-width: 62em) {
  .s-header-v2__navbar-col--right {
    float: right;
  }
}

/* Navbar Toggle
------------------------------ */
.s-header-v2__toggle {
  position: relative;
  display: none;
  float: right;
  background: transparent;
  border: none;
  outline: none;
  line-height: 4.3rem;
  padding: .5625rem .3125rem .5625rem .625rem;
  margin: 0;
}

.s-header-v2__toggle-icon-bar {
  position: relative;
  width: 1.315rem;
  height: 0.0625rem;
  display: inline-block;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar, .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  background: #222324;
}

.s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle-icon-bar:after {
  position: absolute;
  left: 0;
  content: " ";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__toggle-icon-bar:before {
  width: 0.625rem;
  height: 0.0625rem;
  bottom: .625rem;
}

.s-header-v2__toggle-icon-bar:after {
  width: 1rem;
  height: 0.0625rem;
  top: -.3125rem;
}

.s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:before, .s-header-v2__toggle:hover .s-header-v2__toggle-icon-bar:after {
  width: 1.315rem;
  height: 0.0625rem;
}

@media (max-width: 61.9em) {
  .s-header-v2__toggle {
    display: block;
  }
}

/* Logo
------------------------------ */
.s-header-v2__logo {
  width: 100%;
  height: auto;
  float: left;
}

.s-header-v2__logo-link {
  display: inline-block;
  padding: 1rem 1.25rem 1rem 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__logo-link:focus, .s-header-v2__logo-link:hover {
  text-decoration: none;
}

.s-header-v2__logo-img {
  display: inline-block;
}

.s-header-v2__logo-img--default {
  display: block;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--default {
    display: none;
  }
}

.s-header-v2__logo-img--shrink {
  display: none;
}

@media (max-width: 61.9em) {
  .s-header-v2__logo-img--shrink {
    display: block;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__logo {
    width: auto;
    height: auto;
    float: left;
  }
  .s-header-v2__logo-link {
    padding-left: .875rem;
    padding-right: .625rem;
  }
}

/* Collapse
------------------------------ */
@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse {
    width: 100%;
    padding: 0 .9375rem !important;
  }
}

@media (max-width: 61.9em) {
  .s-header-v2__navbar-collapse.collapse {
    display: none !important;
  }
  .s-header-v2__navbar-collapse.collapse.in {
    display: block !important;
    max-height: 35rem;
    overflow-y: auto !important;
  }
}

/* Nav Menu
------------------------------ */
.s-header-v2__nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.s-header-v2__nav:before, .s-header-v2__nav:after {
  content: " ";
  display: table;
}

.s-header-v2__nav:after {
  clear: both;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav {
    background: #fff;
    padding: 1.25rem 0;
  }
}

.s-header-v2__nav-item {
  position: relative;
  display: block;
  float: left;
}

.s-header-v2__nav-item:last-child .s-header-v2__nav-link {
  margin-right: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-item {
    float: none;
  }
}

.s-header-v2__nav-item .dropdown-backdrop {
  position: relative;
}

.s-header-v2__nav-link {
  position: relative;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  color: rgba(255, 255, 255, 0.75);
  line-height: 5.5rem;
  text-transform: uppercase;
  margin: 0 .9rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__nav-link:hover {
  color: #fff;
}

.s-header-v2__nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.s-header-v2__nav-link.-is-active {
  color: #fff;
}

@media (max-width: 61.9em) {
  .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
    line-height: 1.6;
    margin: 1.5rem 0;
  }
  .s-header-v2__nav-link:focus, .s-header-v2__nav-link:hover {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header-v2__nav-link.-is-active {
    color: #1b783a;
  }
}

/* Dropdown
------------------------------ */
.s-header-v2__dropdown-menu {
  display: none;
  font-size: 0.8125rem;
  min-width: 13.750rem;
  background: #fff;
  border: none;
  border-radius: 0;
  box-shadow: 0 0.3125rem 0.75rem rgba(34, 35, 36, 0.05);
  padding: .9375rem 0;
  margin-top: 0;
}

@media (max-width: 61.9em) {
  .s-header-v2__dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
  }
}

.s-header-v2__dropdown-menu:focus .s-header-v2__dropdown-menu-link, .s-header-v2__dropdown-menu:hover .s-header-v2__dropdown-menu-link {
  background: transparent;
}

.s-header-v2__dropdown-menu-link {
  font-size: 0.875rem;
  font-weight: 400;
  font-family: Lato, sans-serif;
  color: rgba(34, 35, 36, 0.7) !important;
  padding: .4375rem 2rem .4375rem 1.375rem !important;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-header-v2__dropdown-menu-link:hover {
  color: #1b783a !important;
}

.s-header-v2__dropdown-menu-link.-is-active {
  color: #1b783a !important;
}

/* Dropdown Menu Open On Hover
------------------------------ */
@media (min-width: 62em) {
  .s-header-v2__dropdown-on-hover:hover > .s-header-v2__dropdown-menu {
    display: block;
  }
}

/* Shrink
------------------------------ */
@media (min-width: 62em) {
  .s-header__shrink .s-header-v2__navbar {
    background: #fff;
    box-shadow: 0 0 0.9375rem 0.25rem rgba(34, 35, 36, 0.05);
  }
  /* Toggle */
  .s-header__shrink .s-header-v2__toggle-icon-bar--white, .s-header__shrink .s-header-v2__toggle-icon-bar--white:before, .s-header__shrink .s-header-v2__toggle-icon-bar--white:after {
    background: #222324;
  }
  /* Logo */
  .s-header__shrink .s-header-v2__logo-img--default {
    display: none;
  }
  .s-header__shrink .s-header-v2__logo-img--shrink {
    display: block;
  }
  /* Nav Link */
  .s-header__shrink .s-header-v2__nav-link {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link:hover {
    color: #1b783a;
  }
  .s-header__shrink .s-header-v2__nav-link:focus {
    color: rgba(34, 35, 36, 0.7);
  }
  .s-header__shrink .s-header-v2__nav-link.-is-active {
    color: #1b783a;
  }
}

/*----------------------------------
  Footer
------------------------------------*/
.s-footer__logo {
  position: relative;
  z-index: 1;
}

.s-footer__logo:before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  bottom: 0;
  width: 70%;
  height: auto;
  z-index: -1;
  background: url("../img/widgets/worldmap.png") no-repeat center center;
  background-size: cover;
  content: " ";
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 1rem;
  bottom: -3rem;
  display: block;
  width: 3rem;
  height: 3rem;
  z-index: 9;
  background: #c73b26;
  border-radius: 3rem;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top2 {
  position: fixed;
  right: 3.125rem;
  bottom: -3.125rem;
  display: block;
  width: 1.875rem;
  height: 3rem;
  z-index: 9;
  background: #4694D1;
  border-radius: 3.125rem;
  text-align: center;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.s-back-to-top:before {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  font-family: themify;
  color: #fff;
  line-height: 3rem;
  content: "\e627";
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-back-to-top:hover {
  background: #ccc;
}

.s-back-to-top:hover:before {
  color: #fff;
}

.s-back-to-top:focus, .s-back-to-top:hover {
  text-decoration: none;
}

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 3.125rem;
  opacity: .8;
}

.s-back-to-top.-is-visible:hover {
  opacity: 1;
}

/* If the user keeps scrolling down, the button is out of focus and becomes less visible */
.s-back-to-top.-zoom-out {
  opacity: .6;
}

/*----------------------------------
  Cubeportfolio
------------------------------------*/
.s-portfolio__filter-v1-item {
  font-size: 0.8125rem;
  color: #656565 !important;
  text-transform: uppercase;
  margin-bottom: 0 !important;
}

.s-portfolio__filter-v1-item:hover {
  color: #242424 !important;
}

.s-portfolio__filter-v1-item.cbp-filter-item-active {
  color: #1b783a !important;
}

.s-portfolio__filter-v1.cbp-l-filters-text {
  margin-bottom: 0;
}

/* Image Effect
------------------------------ */
.s-portfolio__img-effect {
  position: relative;
  display: block;
}

.s-portfolio__img-effect:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 177, 205, 0.95);
  content: " ";
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  padding: 1.875rem;
  opacity: 0;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition-duration: 400ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-portfolio__item:hover .s-portfolio__caption-hover--cc {
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

/* Paginations v1
------------------------------ */
.s-portfolio__paginations-v1 .cbp-nav-controls {
  display: none;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination {
  padding-left: .625rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-item {
  margin: 0 .9375rem;
}

.s-portfolio__paginations-v1 .cbp-nav-pagination-active {
  background: #1b783a;
}

/* Tab v1
------------------------------ */
.s-tab__filter-v1 {
  display: block;
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .0625rem;
  line-height: 2rem;
  padding: 0 0 2rem;
  margin: 0 0 2rem;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-tab__filter-v1:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5rem;
  height: 0.0625rem;
  background: rgba(255, 255, 255, 0.3);
  content: " ";
  margin-left: -2.5rem;
}

.s-tab__filter-v1:last-child {
  padding: 0;
  margin: 0;
}

.s-tab__filter-v1:last-child:before {
  display: none;
}

.s-tab__filter-v1.cbp-filter-item-active {
  color: #1b783a;
}

.s-tab__grid-v1-item {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #656565;
}

/*----------------------------------
  Google Map
------------------------------------*/
/* Custom Style */
.s-google-map,
.s-google-map .s-google-container {
  position: relative;
}

/* Info Window: White background and box outline */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

/* Info Window: Arrow colour */
.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div > div > div {
  background-color: #fff !important;
  box-shadow: none !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:first-child > div:first-child {
  display: none;
}

/* Info Window: Let's remove image icon inside close button */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child > img {
  display: none;
}

/* Info Window: New arrow style */
.gm-style > div:first-child > div + div > div:last-child > div > div:last-child {
  overflow: inherit !important;
}

.gm-style > div:first-child > div + div > div:last-child > div > div:last-child:after {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.75rem;
  font-family: themify;
  color: #656565;
  content: "\e646";
}

/* Info Window: Positioning of infowindow */
.gm-style-iw {
  top: 1.375rem !important;
  left: 1.375rem !important;
}

/*----------------------------------
  Swiper
------------------------------------*/
.s-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Arrows v1
------------------------------ */
.s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

@media (max-width: 47.9em) {
  .s-swiper__arrow-v1--left, .s-swiper__arrow-v1--right {
    opacity: 0;
  }
}

.s-swiper__arrow-v1--left {
  left: 2rem;
}

.s-swiper__arrow-v1--right {
  right: 2rem;
}

@media (max-width: 47.9em) {
  .s-swiper:hover .s-swiper__arrow-v1--left, .s-swiper:hover .s-swiper__arrow-v1--right {
    opacity: 1;
  }
}

/* Pagination v1
------------------------------ */
.s-swiper__pagination-v1--bc {
  position: absolute;
  bottom: 1.875rem !important;
  text-align: center;
  z-index: 1;
}

.s-swiper__pagination-v1 .swiper-pagination-bullet {
  width: 1rem;
  height: 0.5625rem;
  border-radius: 0.9375rem;
  opacity: .7;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.s-swiper__pagination-v1 .swiper-pagination-bullet-active {
  width: 1.875rem;
  background: #1b783a;
  opacity: 1;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet {
  background: #fff;
}

.s-swiper__pagination-v1--white .swiper-pagination-bullet-active {
  background: #1b783a;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet {
  background: #b2b2b2;
}

.s-swiper__pagination-v1--dark .swiper-pagination-bullet-active {
  background: #1b783a;
}

/* SLIDER */

.slider {
	height:50vw;
	max-height:525px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px!important;
	position:relative;
}

.slider {
    background-position: center top\0;
    background-repeat: repeat-x\0;
}

.slider-txt { 
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	max-width:1050px;
	width:100%;
	}
	
.slider-txt img { 
	width:100%;
	height:auto;
	}

*+html .slider {
    background-position: center top;
    background-repeat: repeat-x;
}

.s-header__w a
{color:#ffffff ;}

.s-header__shrink .s-header__w a
{color:#333;}


/* mail icon */

.mail.icon {
  display: inline;
  position: absolute;
  margin-left: 2px;
  margin-top: 4px;
  width: 26px;
  height: 15px;
  border-radius: 1px;
  border: solid 2px currentColor;
}
.mail.icon:before {
  content: '';
  position: absolute;
  left: 10px;
  top: -4px;
  width: 2px;
  height: 12px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(-54deg);
          transform: rotate(-54deg);
}
.mail.icon:after {
  content: '';
  position: absolute;
  left: 10px;
  top: -4px;
  width: 2px;
  height: 12px;
  background-color: currentColor;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: rotate(54deg);
          transform: rotate(54deg);
}

/*2026*/

a:hover img { opacity:0.7;filter: alpha(opacity=70);-ms-filter: "alpha( opacity=70 )"; }


	
.slider-sp {
    width: 100%;
	
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 0;
	position:relative;
}

.slider-sp {
    background-position: center top\0;
    background-repeat: repeat-x\0;
}

.slider-txt-sp { 
	width:100%;
	}
	
.slider-txt-sp img { 
	width:100%;
	height:auto;
	}

*+html .slider {
    background-position: center top;
    background-repeat: repeat-x;
}

*+html .slider-sp {
    background-position: center top;
    background-repeat: repeat-x;
}


.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}
.noto-sans-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
}

.shippori {
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.shippori-bold {
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.stix {
  font-family: "STIX Two Text", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.gantari {
  font-family: "Gantari", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.gantari-light {
  font-family: "Gantari", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.gantari-bold {
  font-family: "Gantari", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.italic { font-style:italic;}
.txt-c { text-align:center;}
.txt-j { text-align:justify;}
.txt-r { text-align:right;}
.yakumono { font-feature-settings: "palt";}

.font10 { font-size:10px;}
.font11 { font-size:11px;}
.font12 { font-size:12px;}
.font13 { font-size:13px;}
.font14 { font-size:14px;}
.font15 { font-size:15px;}
.font16 { font-size:16px;}
.font17 { font-size:17px;}
.font18 { font-size:18px;}
.font20 { font-size:20px;}
.font22 { font-size:22px;}
.font23 { font-size:23px;}
.font24 { font-size:24px;}
.font26 { font-size:26px;}
.font28 { font-size:28px;}
.font30 { font-size:30px;}
.font32 { font-size:32px;}
.font34 { font-size:34px;}
.font36 { font-size:36px;}
.font38 { font-size:38px;}
.font40 { font-size:40px}
.font50 { font-size:50px;}
.font60 { font-size:60px;}
.font100 { font-size:100px;}
.font120 { font-size:120px;}
.f30 { font-size:30px;}
.f22 { font-size:22px;}
.f22-1 { font-size:22px;}
.f23 { font-size:23px;}
.f15 { font-size:15px;}
.f40 { font-size:40px}
.f24 { font-size:24px;}
.f12 { font-size:12px;}
.f12-1 { font-size:12px;}
.f13 { font-size:13px;}
.f20 { font-size:20px;}
.f16 { font-size:16px;}
.f34 { font-size:34px;}

.lh18 { line-height:1.8;}
.lh13 { line-height:1.3;}
.lh15 { line-height:1.5;}
.f-wide { letter-spacing:0.8vw;}
.f-wide1 { letter-spacing:0.06em;}
.f-wide2 { letter-spacing:0.1em;}
.txt-wht { color:#fff;}
.txt-red { color:#c73b26;}
.txt-green { color:#377a40;}
.kv-ttl { font-size: clamp(12px, 10.5vw, 120px); line-heigt:1.3; margin:0; padding:0;}
.kv-ttl-1 { font-size: clamp(12px, 4vw, 50px); line-heigt:1.3; margin-top:-3vw; padding:0;}
.kv-ttl-2 { font-size: clamp(12px, 2.5vw, 20px); line-heigt:1.3; margin-top:-1vw; padding:0;}

.w838 { width:838px; margin:0 auto; padding:0;}
.w840 { width:840px; margin:0 auto; padding:0;}
.w900 { width:900px; margin:0 auto; padding:0; }
.position { position:relative;}
.lead-txt { 
	position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
	width:100%;
	}
	
.lead-block-txt { font-size:16px;}
.lead-block-txt1 { font-size:16px;}
.lead-h { padding-top:20px;}
	
.mt80 { margin-top:80px!important; }
.mt70 { margin-top:70px!important; }
.mt60 { margin-top:60px!important; }
.mt60s { margin-top:60px!important; }
.mt50 { margin-top:50px!important; }
.mt40 { margin-top:40px!important; }
.mt30 { margin-top:30px!important; }
.mt20 { margin-top:20px!important; }
.mt20sp { margin-top:20px!important; }
.mt20sp1 { margin-top:20px!important; }
.mt15 { margin-top:15px!important; }
.mt10 { margin-top:10px!important; }
.mt10sp { margin-top:10px!important; }
.mt10sp1 { margin-top:10px!important; }
.mt10sp2 { margin-top:10px!important; }
.mt5 { margin-top:5px!important; }
.mt5sp { margin-top:5px!important; }
.mt-10  { margin-top:-10px!important; }
.pt50 { padding-top:50px;}
.pt20 { padding-top:20px;}
.pb50 { padding-bottom:50px;}
.pb60 { padding-bottom:60px;}
.pb80 { padding-bottom:80px;}

.bg-gray1 { background-color:#f7f7f5;}


.catalog-photo img { width:100%; height:auto;}
.top-cata { display:flex; justify-content: space-between; align-items: center;}
.top-cata div.catalog-txt { width:350px; margin:0;}
.top-cata div.catalog-photo { width:442px;}
.top-cata div.catalog-photo img { width:100%; height:auto;}
.icon-check { position:absolute; top:-32px; right:-32px; width:65px;}
.icon-check img { width:100%; height:auto;}
.obi { background-color:#f7f7f5; position:absolute; height:180px; width:100%; z-index:-9999; top: 50%; left: 0%; transform: translateY(-50%);}
.top-recommend-bd { border:solid 15px #f7f7f5; width:838px; box-sizing:border-box; margin:0 auto; padding:15px 25px 25px 25px; }
.top-recommend { display:flex; justify-content: space-between; align-items: center; }
.top-recommend div:nth-child(1) { width:220px;}
.top-recommend div:nth-child(2) { width:240px;}
.top-recommend div:nth-child(3) { width:240px;}
.top-recommend div img { width:100%; height:auto;}
.top-recommend1 { display:flex; justify-content: space-between; align-items: center; width:715px; margin:0 auto;}
.top-recommend1 div:nth-child(1) { width:340px;}
.top-recommend1 div:nth-child(2) { width:340px;}
.top-recommend1 div img { width:100%; height:auto;}
.top-recommemd-ttl { display: flex; align-items: center; font-size:26px;}
.top-ec-ttl { font-size:26px;}
.top-ec { display:flex; justify-content: space-between; width:838px; margin:0 auto; padding:0; align-items:stretch;}
.top-ec div.top-ec-photo { width:350px; }
.top-ec div.top-ec-photo img { width:100%; height:auto; }
.top-ec div.top-ec-txt { width:450px; border-top:1px solid #c8c9c9; border-bottom:1px solid #c8c9c9; position:relative;}
.top-ec-txt-block { position:absolute; top: 45%; left: 0%; transform: translateY(-50%);}
.icon-more { position:absolute; right:0; bottom:15px;}
.top-products { font-size:30px;}
.product-ttl { font-size:24px;}

.top-date { width:838px; margin:0 auto; padding:0.6em 0; border-top:1px solid #c8c9c9; }
.top-date-box { width:830px; display:flex; justify-content: space-between; align-items: center; font-size:16px;}
.top-date-box div:nth-child(1) {width:90px;} 
.top-date-box div:nth-child(2) {width:75px;} 
.top-date-box div:nth-child(3) {width:610px;} 
.top-date-box div.all { width:830px; text-align:right;} 
.top-date a:link { color:#251e1c;}
.top-date a:link:hover { color:#251e1c; text-decoration:underline;}
.top-date a:visited { color:#251e1c;}

.top-product-btn { display:flex; justify-content:center; align-items: center; font-size:26px;}
.top-product-btn span:nth-child(1) { margin-right:0.5em;}


.bg-blk { background-color:#3f3c3c; padding:40px 0;}
.ft-logo { width:210px;}
.ft-txt { display:flex; justify-content: space-between; align-items:flex-end; }
.ft-txt div:first-child { width:65%; font-size:12px;}
.ft-txt div:last-child { width:35%; font-size:10px;}
.ft-txt a:link { color:#fff;}
.ft-txt a:link:hover { color:#fff; text-decoration:underline;}
.ft-txt a:visited { color:#fff;}

/*キービジュアル*/
.kv-box-company { 
	height:50vw; 
	max-height:300px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px;
	position:relative;
	background-image: url("/img/kv-company.png")
	}
	
.kv-box-product { 
	height:50vw; 
	max-height:300px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px;
	position:relative;
	background-image: url("/img/kv-product.png")
	}
	
.kv-box-recommend { 
	height:50vw; 
	max-height:300px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px;
	position:relative;
	background-image: url("/img/kv-recommend.png")
	}
	
.kv-box-news { 
	height:50vw; 
	max-height:300px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px;
	position:relative;
	background-image: url("/img/kv-news.png")
	}

.kv-box-contact { 
	height:50vw; 
	max-height:300px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px;
	position:relative;
	background-image: url("/img/kv-contact.png")
	}
	
.kv { width:1050px; height:300px; margin:0 auto; position:relative; }
.kv-txt { position:absolute; top: 50%; left: 0%; transform: translateY(-50%); padding-left:80px;}
.recommend-box { display:flex; justify-content: space-between; width:840px; margin:0 auto;}
.recommend-box div { width:400px;}
.recommend-box div.detail-box { border-top:solid 1px #251e1c;}
.recommend-box div:last-child img { width:400px;}
.check-block { display:flex; justify-content: space-between; align-items: center;}
.check-block div.hinban { width:335px;}
.check-block div.icon-check-mark { width:65px;}
.check-block div.icon-check-mark img { width:100%; height:auto;}


/*NEWS*/
.news-box { display:flex; justify-content: space-between; width:830px; margin:0 auto; padding:0;}
.news-txt { width:450px;}
.news-photo { width:340px;}
.news-photo img { width:100%; height:auto;}
.news-date { display:flex; align-items: center; height:30px; line-height:30px;}
.news-date img { vertical-align: middle; margin:-0.2em 0 0 0.5em;}
.news-bd { width:840px; margin:0 auto; padding:20px 0; border-top:1px solid #c8c9c9; }
.underline { text-decoration: underline;}

/*PRODUCT*/
.features { position:absolute; top:-15px; left: 50%; transform: translateX(-50%); text-align: center; width:300px;}
.product-box { width:730px; display:flex; justify-content: space-between; align-items: center;}
.product-box-r { width:730px; display:flex; justify-content: space-between; align-items: center; margin:0 0 0 auto;}
.product-photo { width:350px;}
.product-photo img { width:100%; height:auto;}
.product-txt { width:348px; margin-top:0;}
 .p-box-1 { order:1; }
 .p-box-2 { order:2; }

/*会社概要*/
.company-box { width:838px; margin:0 auto; padding:0; display: flex; justify-content: space-between; }
.company-left { width:570px; }
.company-txt { border-top:solid 1px #c8c9c9; height:3.95em;}
.company-position { width:570px; display:flex; justify-content: space-between; align-items: center; position:absolute; top: 50%; left: 0%; transform: translateY(-50%); }
.year { width:55px; }
.year-detail { width:498px;}
.company-photo { width:230px;}
.company-photo img { width:100%; height:auto;}
.company-border { border-top:solid 1px #c8c9c9; height:1em;}

.c-data { display:flex; justify-content: space-between; flex-wrap: wrap; width:840px; gap: 40px 0;}
.c-box1,.c-box3 { width:575px; }
.c-box2,.c-box4 { width:230px; }
.c-box2 img,.c-box4 img { width:100%; height:auto; }

ul.corporate-box { list-style:none; display:flex; justify-content: space-between; flex-wrap: wrap; width:100%; margin:0; padding:0; }
ul.corporate-box li.cn { width:20%; font-size:16px; padding:0; margin:0;}
ul.corporate-box li.cd  { width:76%; font-size:16px; padding:0; margin:0;}
ul.corporate-box li.cn1 { width:20%; font-size:16px; padding:0; margin:0;}
ul.corporate-box li.cd1  { width:76%; font-size:16px; padding:0; margin:0;}
.bk-border { border-top:solid 1px #c8c9c9;}

/*EC*/
.features-box { width:840px; display: flex; justify-content: space-between; flex-wrap: wrap; margin:0 auto; padding:0; align-items:flex-end;}
.f-box-1 { order:1;}
.f-box-2 { order:3; margin-top:40px;}
.f-box-3 { order:2; align-self: flex-start;}
.f-box-4 { order:4;}
.f-box-1,.f-box-2,.f-box-3,.f-box-4 { width:400px;}
.f-box-2 img { width:100%; height:auto;}
.f-box-3 img { width:100%; height:auto;}
.indent { padding-left:1em; text-indent:-1em;}

.property { width:840px; display:flex; margin:0 auto; border-bottom:1px solid #c8c9c9; padding:0.5em 0; background-color:#fff;}
.flex-items:nth-child(1) { width:240px; padding-left:0.5em; box-sizing: border-box;}
.flex-items:nth-child(2) { width:155px;}
.flex-items:nth-child(3) { width:170px;}
.flex-items:nth-child(4) { width:150px;}
.flex-items:nth-child(5) { width:125px;}

.property-ttl { width:840px; display:flex; margin:0 auto; padding:0.5em 0; background-color:#377a40; color:#fff;}
.flex-items:nth-child(1) { width:240px; padding-left:0.5em; box-sizing: border-box;}
.flex-items:nth-child(2) { width:155px;}
.flex-items:nth-child(3) { width:170px;}
.flex-items:nth-child(4) { width:150px;}
.flex-items:nth-child(5) { width:125px;}

.ec-kv { 
	height:50vw; 
	max-height:525px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 45px;
	position:relative;
	background-image:url("../img/ec-kv.png");}

/*ヘッダー*/
.header { position:fixed; height:70px; width:100%; background-color:#fff; z-index:1000; top:0; left:0;}
.header-menu { display:flex; height:70px; justify-content: space-between; position:relative;}
.header-logo { min-width:190px; max-width:190px; width:19%; line-height:65px; padding-left:20px; box-sizing: border-box;  position:static; z-index:11111;}
.header-link { width:80%; text-align: right; line-height:65px; font-size:15px;}
.header-link-mail { margin-right:63px;}
.header-link-mail a:link { color:#251e1c;}
.header-link-mail a:hover { text-decoration: underline;}
.header-link-mail a:visited { color:#251e1c;}
.icon-mail { margin-left:10px;}

/*お問い合わせ*/
ul.contact-cap { list-style: none; margin:0; padding:0; width:100%;}
ul.contact-cap li { text-indent: -1em; padding-left:1em; font-size:14px;}
ul.contact-cap li a:link { color:#251e1c; text-decoration: underline;}
ul.contact-cap li a:hover { text-decoration: underline;}
ul.contact-cap li a:visited { color:#251e1c;}

.form-box { width:100%; border-top:1px solid #c8c9c9;}
td.form-ttl { width:24%; background-color:#f7f7f5; padding:0.8em; font-size:16px;}
td.form-ttl span { font-size:14px; color:#c73b26;}
td.form-input { width:76%; background-color:#fff; padding:0.8em; font-size:14px;}
tr {border-bottom:1px solid #c8c9c9;}
.input-txt { font-size:16px; width:100%; border:1px solid #c8c9c9; appearance: none; border-radius: 0; }
.f-red { color:#c73b26;}

/*ボタン*/
input[type="button"],
input[type="submit"],
input[type="reset"] {
border-radius: 0;
background-color:#f7f7f5;
border:solid 1px #c8c9c9;
color:#251e1c;
padding:0.25em;
font-size:16px;
font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}
input[type="checkbox"] { appearance: none; border-radius: 0; border:solid 1px #c8c9c9; width:16px; height:16px;}
input[type="text"] { appearance: none; border-radius: 0; border:solid 1px #c8c9c9; width:100%; font-size:16px;}

/* overlay-styles.css */
.hamburger-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #251e1c;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #251e1c;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(247,247,245, 1);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100%;
  text-align: right;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.8s; }

.nav-overlay__link {
  display: inline-block;
  padding: 10px;
  color: #251e1c;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: #ccc;
}

.sp { display:none;}
.sp-1 { display:none;}
.pc{ display:block; margin:0 auto;}



@media screen and (min-width: 960px) { 

}


@media screen and (max-width: 767px) {

.sp { display:block;}
.sp-1 { display:block;}
.pc{ display:none;}
.pc-1{ display:none;}

.font10 { font-size:1.5vw;}
.font11 { font-size:1.6vw;}
.font12 { font-size:3.2vw;}
.font13 { font-size:1.8vw;}
.font14 { font-size:3.28vw;}
.font15 { font-size:3.1vw;}
.font16 { font-size:3.3vw;}
.font17 { font-size:3.5vw;}
.font18 { font-size:2.3vw;}
.font20 { font-size:2.5vw;}
.font22 { font-size:2.7vw;}
.font23 { font-size:2.8vw;}
.font24 { font-size:2.9vw;}
.font26 { font-size:3.1vw;}
.font30 { font-size:4.1vw;}
.font32 { font-size:3.7vw;}
.font34 { font-size:3.9vw;}
.font36 { font-size:4.1vw;}
.font38 { font-size:5vw;}
.font40 { font-size:4.5vw;}
.font50 { font-size:9.7vw;}

.f30 { font-size:10vw;}
.f22 { font-size:6vw;}
.f22-1 { font-size:3vw;}
.f23 { font-size:4.4vw;}
.f15 { font-size:3.2vw;}
.f40 { font-size:8vw; text-align: center;}
.f24 { font-size:4.6vw;}
.f12 { font-size:2.6vw;}
.f12-1 { font-size:2.3vw;}
.f13 { font-size:2.7vw;}
.f20 { font-size:3vw;}
.f16 { font-size:2.6vw;}
.f34 { font-size:4.3vw;}

.mt80 { margin-top:8%!important; }
.mt70 { margin-top:70px!important; }
.mt60 { margin-top:6%!important; }
.mt60s { margin-top:10%!important; }
.mt50 { margin-top:5%!important; }
.mt40 { margin-top:4%!important; }
.mt30 { margin-top:30px!important; }
.mt20 { margin-top:2%!important; }
.mt20sp { margin-top:0%!important; }
.mt20sp1 { margin-top:6%!important; }
.mt15 { margin-top:15px!important; }
.mt10 { margin-top:1%!important; }
.mt10sp { margin-top:0.2%!important; }
.mt10sp1 { margin-top:2.5%!important; }
.mt10sp2 { margin-top:2%!important; }
.mt5 { margin-top:0.5%!important; }
.mt5sp { margin-top:2%!important; }
.mt6 { margin-top:6%!important; margin-bottom:6%!important; }
.mt-10  { margin-top:-10px!important; }
.pt50 { padding-top:5%;}
.pt20 { padding-top:2%;}
.pb50 { padding-bottom:5%;}
.pb60 { padding-bottom:6%;}
.pb80 { padding-bottom:8%;}


.w838 { width:85%; margin:0 auto; padding:0;}
.w840 { width:85%; margin:0 auto; padding:0;}
.w900 { width:90%; margin:0 auto; padding:0; }
.p100 { width:100%; height:auto;}

.mat { width:85%; margin:0 auto; overflow-x: scroll;}
.property { width:570px; display:flex; margin:0 auto; border-bottom:1px solid #c8c9c9; padding:0.5em 0.2em; align-items: center;}
.flex-items:nth-child(1) { width:150px; padding-left:0.5em; box-sizing: border-box;}
.flex-items:nth-child(2) { width:100px;}
.flex-items:nth-child(3) { width:120px;}
.flex-items:nth-child(4) { width:100px;}
.flex-items:nth-child(5) { width:100px;}

.property-ttl { width:570px; display:flex; margin:0 auto; border-bottom:1px solid #c8c9c9; padding:0.5em 0.2em; background-color:#377a40; color:#fff; }
.flex-items:nth-child(1) { width:150px; padding-left:0.5em; box-sizing: border-box;}
.flex-items:nth-child(2) { width:100px;}
.flex-items:nth-child(3) { width:120px;}
.flex-items:nth-child(4) { width:100px;}
.flex-items:nth-child(5) { width:100px;}


/*ヘッダー*/
.header { position:fixed; height:60px; width:100%; background-color:#fff; z-index:1000; top:0; left:0;}
.header-menu { display:flex; height:60px; justify-content: space-between; position:relative;}
.header-logo { width:40%; max-width:40%; min-width: 40%; line-height:60px; padding-left:4%; box-sizing: border-box;  position:static; z-index:11111;}
.header-logo img { width:100%; height:auto;}
.header-link { width:60%; text-align: right; line-height:65px; font-size:12px; }
.header-link-mail { margin-right:25%;}

/*
.slider {
	height:50vw;
	max-height:390px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: 175%;
    -moz-background-size: 175%;
    -o-background-size: 175%;
    background-size: 175%;
     margin-top: 35px!important;
	position:relative;
}
*/
.slider { 
height:50vw;
	max-height:390px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 35px!important;
	position:relative;
}

.slider-txt { 
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	max-width:100%;
	width:100%;
	}
	
.slider-txt img { 
	width:100%;
	height:auto;
	}
.slider-sp { margin-top:45px!important;}
/*TOP*/
.top-cata { display:block; justify-content: space-between; align-items: center;}
.top-cata div.catalog-txt { width:100%; margin:10% 0 0 0;}
.top-cata div.catalog-photo { width:80%; margin:5% auto 0 auto;}
.top-cata div.catalog-photo img { width:100%; height:auto;}
.icon-check { position:absolute; top:-20px; right:-20px; width:40px;}
.icon-check img { width:100%; height:auto;}
.obi { background-color:#f7f7f5; position:absolute; height:70vw; width:100%; z-index:-9999; top: 50%; left: 0%; transform: translateY(-50%);}
.lead-txt { 
	position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
	width:100%;
	padding:0;
	}
.lead-block-txt { font-size:2.8vw;}
.lead-block-txt1 { font-size:3vw; letter-spacing:-0.03em;}
.lead-h { height:64vw; }
.top-product-btn { display:flex; justify-content:center; align-items: center; font-size:4.1vw; width:90%; letter-spacing: -0.1em; margin:0 4.7% 0 5.3%;  }
.top-product-btn span:nth-child(1) { margin-right:0.5em;}
.top-product-btn span:nth-child(1) { width:22.5vw;}
.top-product-btn span:nth-child(1) img { width:100%; height:auto;}
.top-product-btn span:nth-child(2) { margin-top:0.1em;}
	
.sp-lead-bg { margin-top:18%;}
.top-recommend-bd { border:solid 12px #f7f7f5; width:85%; box-sizing:border-box; margin:0 auto; padding:4%; }
.top-recommend { display:block; }
.top-recommend div:nth-child(1) { width:100%;}
.top-recommend div:nth-child(2) { width:85%; margin:0 auto;}
.top-recommend div:nth-child(3) { width:85%; margin:0 auto;}
.top-recommend div img { width:100%; height:auto;}
.top-recommend1 { display:block; width:100%; margin:0 auto;}
.top-recommend1 div:nth-child(1) { width:85%; margin:0 auto;}
.top-recommend1 div:nth-child(2) { width:85%; margin:0 auto;}
.top-recommend1 div img { width:100%; height:auto;}

.top-recommemd-ttl { display: block; font-size:4.1vw; letter-spacing: -0.1em;}
.top-recommemd-ttl span { display: block; }
.top-recommemd-ttl span:last-child { margin-top:2%;}
.top-recommemd-ttl span img { width:35vw; height:auto;}
.top-ec { display:block; width:85%; margin:0 auto; padding:0; }
.top-ec div.top-ec-photo { width:100%; }
.top-ec div.top-ec-photo img { width:100%; height:auto; }
.top-ec div.top-ec-txt { width:100%; border-top:none; border-bottom:1px solid #c8c9c9; position:static; margin-top:0; padding-bottom:2%; }
.top-ec-txt-block { position:static!important; margin:2% 0 0 0; padding:0; top:0%; transform: translateY(0%);}
.icon-more { position:static;  width:10vw; text-align: right; margin:0 0 0 auto; padding:0;}
.icon-more img {width:100%; height:auto;}
.top-products { font-size:5vw;}
.top-ec-ttl { font-size:4vw;}
.product-ttl { font-size:4.1vw;}

.top-date { width:85%; margin:0 auto; padding:0.6em 0; border-top:1px solid #c8c9c9;  }
.top-date-box { width:98%; display:flex; justify-content:flex-start; flex-wrap: wrap; align-items: center; font-size:3.1vw;}
.top-date-box div:nth-child(1) {width:25%;} 
.top-date-box div:nth-child(2) {width:20%;} 
.top-date-box div:nth-child(2) img {width:100%; height:auto; margin-top:-0.15em;} 
.top-date-box div:nth-child(3) {width:97%; line-height:1.3;} 
.top-date-box div:nth-child(4) {width:2%;} 
.top-date-box div.all { width:100%; text-align:right;} 

.ft-logo { width:210px;}
.ft-txt { display:block;  }
.ft-txt div:first-child { width:100%; font-size:2.6vw;}
.ft-txt div:last-child { width:100%; font-size:2.4vw; margin-top:4%;}
.ft-txt a:link { color:#fff;}
.ft-txt a:link:hover { color:#fff; text-decoration:underline;}
.ft-txt a:visited { color:#fff;}

/*リコメンド*/
.kv { width:100%; height:80px; margin:0 auto; position:relative; }
.kv img { width:100%; height:auto; }
.kv-txt { position:absolute; top: 50%; left: 0%; transform: translateY(-50%); padding-left:10%;}

.kv-box-product { 
	height:30vw; 
	max-height:80px;
    width: 100%;
    background-color: #ccc;
    background-position: center top;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 35px;
	position:relative;
	background-image: url("/img/kv-product.png")
	}
	
.kv-box-recommend { 
	height:30vw; 
	max-height:80px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 35px;
	position:relative;
	background-image: url("/img/kv-recommend.png")
	}
	
.kv-box-news { 
	height:30vw; 
	max-height:80px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 35px;
	position:relative;
	background-image: url("/img/kv-news.png")
	}
	
.kv-box-company { 
	height:30vw; 
	max-height:80px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 35px;
	position:relative;
	background-image: url("/img/kv-company.png")
	}
	
.kv-box-contact { 
	height:30vw; 
	max-height:80px;
    width: 100%;
    background-color: #ccc;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
     margin-top: 35px;
	position:relative;
	background-image: url("/img/kv-contact.png")
	}
	
/*PRODUCT*/
.features { position:absolute; top:-7px; left: 50%; transform: translateX(-50%); text-align: center; width:50%;}
.product-box { width:100%; display:block;}
.product-box-r { width:100%; display:flex; flex-direction:column; margin:0 auto;}
.product-photo { width:80%; margin:0 auto;}
.product-photo img { width:100%; height:auto;}
.product-txt { width:100%; margin-top:3%;}
 .p-box-1 { order:2; }
 .p-box-2 { order:1; }
 
 .recommend-box { display:block; width:85%; margin:0 auto;}
.recommend-box div { width:100%;}
.recommend-box div.detail-box { border-top:solid 1px #251e1c;}
.recommend-box div.rec-photo { width:75%; margin:4% auto 8% auto; }
.recommend-box div.rec-photo img { width:100%;}
.check-block { display:flex; justify-content: space-between; align-items: center;}
.check-block div.hinban { width:100%;}
.check-block div.icon-check-mark { width:45px;}
.check-block div.icon-check-mark img { width:100%; height:auto;}

/*NEWS*/
.news-box { display:block; width:100%; margin:0 auto; padding:0;}
.news-txt { width:100%;}
.news-photo { width:75%; margin:0 auto; padding:0;}
.news-photo img { width:100%; height:auto;}
.news-date { display:flex; align-items: center; height:20px; line-height: 20px;}
.news-date img { vertical-align: middle; width:auto; height:16px; margin:-0.3em 0 0 0.5em;}
.news-bd { width:85%; margin:0 auto; padding:3.5% 0; border-top:1px solid #c8c9c9; }
.info-icon { width:200px; height:auto; margin-left:0; text-align: center;}
.info-icon img { width:100%; height:auto;}
.underline { text-decoration: underline;}

/*会社概要*/
.company-box { width:100%; margin:0 auto; padding:0; display: block; }
.company-left { width:100%; }
.company-txt { border-top:solid 1px #c8c9c9; height:4em;}
.company-position { width:100%; display:flex; justify-content: space-between; align-items: center; position:absolute; top: 50%; left: 0%; transform: translateY(-50%); }
.year { width:14%; }
.year-detail { width:84%;}
.company-photo { width:100%; display:flex; justify-content: space-between; flex-wrap: wrap; }
.company-photo div.photo { width:47%;}
.company-photo img { width:100%; height:auto;}
.company-border { border-top:solid 1px #c8c9c9; height:1em;}

.c-data { display:flex; justify-content: space-between; flex-wrap: wrap; width:100%; gap: 4% 0;}
.c-box1,.c-box3 { width:100%; }
.c-box2,.c-box4 { width:48%; margin-top:4%; }
.c-box2 img,.c-box4 img { width:100%; height:auto; }
.c-box1 { order:1;}
.c-box2 { order:3;}
.c-box3 { order:2; margin-top:4%;}
.c-box4 { order:4;}

ul.corporate-box { list-style:none; display:flex; justify-content: space-between; flex-wrap: wrap; width:100%; margin:0; padding:0; }
ul.corporate-box li.cn { width:29%; font-size:3.3vw; }
ul.corporate-box li.cd { width:67%; font-size:3.3vw;}
ul.corporate-box li.cn1 { width:100%; font-size:3.3vw; }
ul.corporate-box li.cd1 { width:100%; font-size:3.3vw;}
.bk-border { border-top:solid 1px #c8c9c9;}

/*EC*/
.features-box { width:85%; display: flex; justify-content: space-between; flex-wrap: wrap; margin:0 auto; padding:0; align-items:flex-end; }
.f-box-1 { order:1;}
.f-box-2 { order:4;}
.f-box-3 { order:2; align-self: flex-start;}
.f-box-4 { order:3; margin-top:4%;}
.f-box-1,.f-box-4 { width:100%;}
.f-box-2,.f-box-3 { width:75%; margin:4% auto 0 auto;}
.f-box-2 img { width:100%; height:auto;}
.f-box-3 img { width:100%; height:auto;}

/*お問い合わせ*/
ul.contact-cap { list-style: none; margin:0; padding:0; width:100%;}
ul.contact-cap li { text-indent: -1em; padding-left:1em; font-size:2.5vw;}

.form-box { width:100%; border-top:1px solid #c8c9c9;}
td.form-ttl { width:24%; background-color:#f7f7f5; padding:0.8em; font-size:2.6vw;}
td.form-ttl span { font-size:1.9vw; color:#c73b26;}
td.form-input { width:76%; background-color:#fff; padding:0.8em; font-size:2.3vw;}
tr {border-bottom:1px solid #c8c9c9;}
.input-txt { font-size:3vw; width:100%; border:1px solid #c8c9c9; appearance: none; border-radius: 0; }
.f-red { color:#c73b26;}

/*ボタン*/
input[type="button"],
input[type="submit"],
input[type="reset"] {
background-color:#f7f7f5;
border:solid 1px #c8c9c9;
color:#251e1c;
padding:0.25em;
font-size:3.5vw;
font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}
input[type="checkbox"] { appearance: none; border-radius: 0; border:solid 1px #c8c9c9; width:12px; height:12px;}
input[type="text"] { appearance: none; border-radius: 0; border:solid 1px #c8c9c9; width:100%; font-size:3vw;}
.bg-blk { background-color:#3f3c3c; padding:6% 0;}
}
