/*----------------------------------
	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;
  font-family: Lato, sans-serif;
  color: #222324;
  line-height: 1.6;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-family: Montserrat, sans-serif;
  line-height: 1.2;
  color: #242424;
  margin-top: 0;
  margin-bottom: .5rem;
}

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: #000;
  transition-duration: 200ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

h1 {
  font-size: 2.5rem;
}

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;
  list-style: none;
}

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

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

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: #000;
  text-decoration: none;
}

a:focus, a:hover {
  color: black;
  text-decoration: none;
}

a:focus {
  outline: none;
}

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

::-webkit-selection {
  color: #fff;
  background: #000;
  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: #000;
  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: #000;
  border-color: #000;
}

.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: #000;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #000;
}

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

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

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

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

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

/*----------------------------------
  Clients v1
------------------------------------*/
.s-clients-v1 {
  display: block;
  float: left;
  width: 22.8rem;
  height: auto;
  margin: 0 auto;
  opacity: 1;
  /*cursor: pointer;
	@include cubic-transition($delay: 0, $duration: 200ms, $property: (all));

	@include hover {
		opacity: .8;
		@include cubic-transition($delay: 0, $duration: 200ms, $property: (all));
	}*/
}

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

/*----------------------------------
  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: #000;
  border-color: #000;
}

.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: #000;
  background: #fff;
  border-color: #fff;
}

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

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

.s-icon--primary-bg {
  color: #fff;
  background: #000;
  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%, #000 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%, #000 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(0, 0, 0, 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(0, 0, 0, 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%, black 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(0, 0, 0, 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: #000;
}

.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: 2.55rem;
  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: transparent;
  padding-left: 7px;
  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: .0rem 0.4rem;
  /*
   opacity: 0;
   right: 0;*/
}

.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;*/
  padding-left: 1.1875rem;
  padding-right: 1.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;
  margin-top: 5px;
  margin-left: 5px;
  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 {
  max-width: 158px;
}

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

@media (min-width: 48em) {
  .s-header__logo-img {
    max-width: 258px;
  }
}

/* Trigger
------------------------------ */
.s-header__trigger {
  position: relative;
  z-index: 9999;
  width: 3.125rem;
  height: 3.125rem;
  float: right;
  overflow: hidden;
  transition-duration: 100ms;
  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.0625rem;
  background: #fff;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  transition-duration: 200ms;
  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 rect {
  -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: 140%;
  padding: 4.5rem 0 0;
}

.s-header__nav__height {
  height: 600px;
}

/* 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 5.625rem;
  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: .1225rem .2125rem;
  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: -1.5rem;
  width: 1.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: 1.5rem;
}

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

.s-header__nav-menu-link-divider.-is-active:before {
  right: 0;
  background: white;
}

/* 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: transparent;
}

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

.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__logo-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: #000;
  }
}

/* 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: #000 !important;
}

.s-header-v2__dropdown-menu-link.-is-active {
  color: #000 !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: #000;
  }
  .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: #000;
  }
}

/*----------------------------------
  Footer
------------------------------------*/
footer span {
  width: 8px;
  height: 1px;
  background: #b2b2b2;
  display: block;
  margin-top: 16px;
}

.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: " ";
}

footer .g-hor-divider__dashed--white-opacity-lightest a {
  color: #eee !important;
}

footer .g-hor-divider__dashed--white-opacity-lightest a:hover {
  color: #9b9b9b !important;
}

footer li:nth-child(odd) {
  float: left;
  width: 50%;
  line-height: 190%;
}

footer li:nth-child(even) {
  float: right;
  width: 50%;
  line-height: 190%;
}

footer ul {
  line-height: 200%;
}

footer ul:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.office-wrap {
  clear: both;
}

@media (min-width: 32em) {
  footer ul {
    margin-bottom: 0px;
  }
  footer li:nth-child(odd),
  footer li:nth-child(even) {
    float: none;
  }
  .office-wrap {
    clear: none;
  }
  .office-wrap p {
    margin-bottom: 0;
  }
}

/*----------------------------------
  Back To Top
------------------------------------*/
.s-back-to-top {
  position: fixed;
  right: 0.5rem;
  bottom: -0.5rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 9;
  background: #000;
  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: 2.5rem;
  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: #fff;
}

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

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

/* The button becomes visible */
.s-back-to-top.-is-visible {
  bottom: 0.5rem;
  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: #000 !important;
  font-weight: bold;
}

.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(0, 0, 0, 0);
  content: " ";
/*  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);*/
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  z-index:10;
}

.s-portfolio__item:hover .s-portfolio__img-effect:after {
/*  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);*/
	background: rgba(0, 0, 0, 0.5);
}

.s-portfolio__img-effect:hover .s-portfolio__img-effect:after {
/*  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);*/
	background: rgba(0, 0, 0, 0.5);
}


/* Position
------------------------------ */
.s-portfolio__caption-hover--cc {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;

  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  z-index:200;


}

.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: #000;
}

/* Tab v1
------------------------------ */
.s-tab__filter-v1 {
  display: block;
  font-size: 1.75rem;
  color: #fff;
  text-align: center;
  border: none;
  cursor: pointer;
  letter-spacing: .02rem;
  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: 4rem;
  height: 0.0525rem;
  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: #000;
}

.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: #000;
  opacity: 1;
}

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

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

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

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

.s-header__navbar {
  background: #000;
}

.s-header__logo {
  margin-top: 0px !important;
}

.s-header__navbar-row-col-text {
  display: none;
  /*font-weight: bold;
   font-size: 9px;
   width: 200px;
   color: #fff !important;
   display: inline-block;
   font-family: Lato, sans-serif;*/
}

.border-box {
  height: 1px;
  width: 100%;
  background: #dfdfdf;
}

/* Small screen / phone */
/* Medium screen / tablet */
@media (min-width: 50em) {
  .s-header__logo {
    margin-top: 0px;
  }
  .s-header__navbar-row-col-text {
    display: block !important;
    position: absolute;
    font-weight: bold;
    left: 280px;
    top: 20px;
    margin-top: 0px;
    font-size: 18px;
    width: 500px;
    color: #fff;
    display: inline-block;
    font-family: Lato, sans-serif;
  }
}

/* Extra large screen / wide desktop */
.kyevisual-text {
  width: 100%;
  color: #000 !important;
  position: relative;
  /* padding-top: 30% !important; */
  padding-top: 30% !important;
  margin-right: 70px;
}

.icon-pos {
  margin-top: -3px;
}

.kyevisual-text__title {
  line-height: 80% !important;
  letter-spacing: -2px;
  position: relative;
}

.kyevisual-text__title .css-action {
  background: #000;
  position: absolute;
  left: 0;
  bottom: -22px;
  height: 10px;
  width: 100%;
  /*-webkit-animation: motion_ktt 1.2s ease-in 0s ;
         -moz-animation: motion_ktt 1.2s ease-in 0s ;
          -ms-animation: motion_ktt 1.2s ease-in 0s ;
           -o-animation: motion_ktt 1.2s ease-in 0s ;
              animation: motion_ktt 1.2s ease-in 0s forwards;

      @-webkit-keyframes motion_ktt {
         0%                 { -webkit-transform: scaleX(0);}
         50%                { -webkit-transform: scaleX(1);}
         70%                { -webkit-transform: scaleX(0.2);}
         100%               { -webkit-transform: scaleX(1);}
         }
      @-moz-keyframes motion_ktt {
         0%                 { -moz-transform: scaleX(0);}
         50%                { -moz-transform: scaleX(1);}
         70%                { -moz-transform: scaleX(0.2);}
         100%               { -moz-transform: scaleX(1);}
         }
      @-ms-keyframes motion_ktt {
         0%                 { -ms-transform: scaleX(0);}
         50%                { -ms-transform: scaleX(1);}
         70%                { -ms-transform: scaleX(0.2);}
         100%               { -ms-transform: scaleX(1);}
         }
      @-o-keyframes motion_ktt {
         0%                 { -o-transform: scaleX(0);}
         50%                { -o-transform: scaleX(1);}
         70%                { -o-transform: scaleX(0.2);}
         100%               { -o-transform: scaleX(1);}
         }
      @keyframes motion_ktt {
         0%                 {
            transform-origin:0 0;
            transform: scaleX(0);
            width: 0px;
         }
         25%                {
            transform-origin:0 0;
            transform: scaleX(0);
            width: 100%;
         }
         50%                {
            transform-origin:0 0;
            transform: scaleX(0);
            width: 100%;
         }
         70%                {
            transform-origin:0 0;
            transform: scaleX(1);
            width: 100%;
         }
         100%               {
            transform-origin:0 0;
            transform: scaleX(1);
            height: 10px;
            width: 100%;
         }
      }*/
}

.kyevisual-text__read {
  font-size: 18px;
  margin-top: 20px;
  color: #000 !important;
  position: absolute;
  line-height: 140%;
}

.kyevisual-text__arrow {
  /*display: none;*/
  position: absolute;
  bottom: -50px;
  left: 0;
}

.kyevisual-text__arrow a {
  color: #000 !important;
}

.kyevisual-text__title,
.kyevisual-text__read,
.kyevisual-text__arrow {
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.intro-text {
  position: relative;
}

.intro-text .cover {
  position: absolute;
  left: 0;
  top: 0;
  /*width: 100%;*/
  background: #000;
  height: 0px;
}

.intro-text__title {
  letter-spacing: -1px;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.intro-text__read {
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
}

.intro-text__arrow a {
  color: #fff !important;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

/*changing top page 0815 2019 from here*/

.top .kyevisual-text__title {
   animation: upText 1s ease-in-out forwards;
}

.top .kyevisual-text {
   z-index: 1;
   padding-top: 50vh !important;
}

.top .kyevisual-text-white-box {
   width:1000px;
   height:400px;
   position:absolute;
   top:38vh;
   left:-30px;
   right:0;
   bottom:0;
   margin:auto;
   background:url(/img/home/2019/white_box.svg) no-repeat;
   background-size: contain;
   vertical-align: middle;
   z-index: -2;
   opacity:0;
   animation: fadeInText .5s ease-in-out .5s forwards;
}

.top .green-box {
   position:absolute;
   top:20vh;
   right:10%;
   height:60vh;
   opacity:0;
   animation: fadeInText .5s ease-in-out .5s forwards;
}

.top .green-box-shadow {
   position:absolute;
   top:25vh;
   right:15%;
   width:60vh;
   opacity:0;
   animation: fadeInText .5s ease-in-out .7s forwards;
}

.top .line-right {
   position:absolute;
   top:0;
   right:15%;
   height:100vh;
   opacity:0;
   animation: fadeInText .5s ease-in-out .5s forwards;
}

.top .line-center {
   position:absolute;
   top:0;
   right:20%;
   height:100vh;
   opacity:0;
   animation: fadeInText .5s ease-in-out .5s forwards;
}

.top .line-left {
   position:absolute;
   top:0;
   right:23%;
   height:100vh;
   opacity:0;
   animation: fadeInText .5s ease-in-out .5s forwards;
}

.top .underline {
   background: linear-gradient(transparent 85%, #F198A5 0%);
   display: inline;
   padding: 0 1px 4px;
   animation: underLine 1.5s ease-in-out forwards;
   -webkit-animation: underLine 1.5s ease-in-out forwards;
}

@keyframes fadeInText {
   0% {
      opacity:0;
   }
   100% {
      opacity:1;
   }
}

@keyframes upText {
   0% {
      opacity:0;
      transform: translate(0,30px)
   }

   40% {
      opacity:0;
   }

   100% {
      opacity:1;
      transform: translate(0,0)
   }
}

@media (max-width: 61.9em){
   .top .kyevisual-text {
      padding-top: 30vh !important;
   }

   .top .kyevisual-text-white-box {
      top:33vh;
   }
}


@media (max-width: 650px){

   .top .kyevisual-text-white-box {
      width:1000px;
      height:400px;
      position:absolute;
      top:250px;
      left:-30px;
      right:0;
      bottom:0;
      margin:auto;
      background:url(/img/home/2019/white_box.svg) no-repeat;
      background-size: contain;
      vertical-align: middle;
      z-index: -2;
   }
}

@media (max-width: 425px){
   .top .kyevisual-text {
      padding-top:25vh!important;
   }

   .top .bottom-cursor {
      margin-bottom:60px;
   }

   .top .kyevisual-text-white-box {
      width:1000px;
      height:400px;
      position:absolute;
      top:250px;
      left:-30px;
      right:0;
      bottom:0;
      margin:auto;
      background:url(/img/home/2019/white_box.svg) no-repeat;
      background-size: contain;
      vertical-align: middle;
      z-index: -2;
   }
}

.gallery{
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
}
.gallery-item{
flex: 1 1 25%;
-ms-flex: 1 1 25%;
}

@media screen and (max-width: 500px){
   .gallery-item{
   flex: 1 1 33%;
   -ms-flex: 1 1 33%;
   }
}

.gallery-item img{
max-width: 90%;
height: auto;
padding-bottom:10%;
}

.ig-icn {
   width:50px;
}

/* to here*/




.service-text {
  position: relative;
}

.service-text .cover {
  position: absolute;
  left: 0;
  top: 0;
  /*width: 100%;*/
  background: #fff;
  height: 0px;
}

.service-text__title {
  letter-spacing: 0px;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.service-text__subtitle {
  letter-spacing: 1px;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.service-text__read {
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
}

.service-text__arrow a {
  color: #fff !important;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

/*------------changing service page 5/2 2019 --------------*/

@font-face {
  font-family: 'CgPhenixAmerican';
  src: url('/font/CgPhenixAmerican.woff') format('woff'),
  url('/font/CgPhenixAmerican.ttf') format('truetype');
}

.service-wrapper {
   width:100%;
   height:auto;
}

.service-wrapper p {
   color:#000;
   font-size:18px;
}

.service-box {
   margin:0 auto;
   padding-top:107px;
   width:1200px;
}


.bg_pink {
   background-color:#fee3df;
}

.bg_yellow {
   background-color:#f8fde5;
}

.bg_gray{
   background-color:#bebebe;
}

.heading_black {
   color:#505050;
}

.heading_gray {
   color:#bebebe;
}

.service-heading{
   font-family:'CgPhenixAmerican';
   font-size:8rem;
   line-height:1em;
   padding-bottom:30px;
}

.service-top-heading{
   font-family:'CgPhenixAmerican';
   font-size:8rem;
   line-height:1em;
   padding-bottom:30px;
}

.ec .service-heading{
   padding-bottom:0;
}

.webdesign img {
   width:60%;
   height: 700px;
}


.webdesign-textarea {
   width:38%;
}

.webdesign-flex {
   display:flex;
   justify-content:space-between;
}


.branding-flex {
   display:flex;
   justify-content:space-between;
}

.ec-flex {
   display:flex;
   justify-content:space-between;
}

.branding h2 {
   text-align:right;
}

.branding img {
   width:50%;
   height:500px;
   margin-bottom:40px;
}

.branding p {
   width:50%;
}


.service-subheading {
   font-family:'CgPhenixAmerican';
   font-size:3rem;
   padding-bottom:30px;
}

.horizontal-list {
   text-align:center;
   width:100%;
   padding-bottom:70px;
}

.service-item {
   display:inline-block;
   width:22.5%;
   height:auto;
   margin:16px;
   font-size: 48px;
}

.service-item:first-child {
   padding-left:0px;
   margin-left:0px;
}

.service-item:last-child {
   padding-right:0px;
   margin-right:0px;
}

.service-adjust-box {
   position:relative;
   width:100%;
   height:auto;
   background:#fee3df;
}

.service-adjust-box:before {
   content:"";
   display:block;
   padding-top:100%;
}

.service-item-inner {
   position:absolute;
   top:0;
   left: 0;
   width:100%;
   height:100%;
   overflow: hidden;
}

.boolean1 {
   position:absolute;
   top:25%;
   left: -5%;
   width:50%;
}

.boolean2 {
   position:absolute;
   top: 25%;
   right: -5%;
   width:50%;
}

.ipad-order {
   position:absolute;
   width:60%;
   top: 12%;
   right: -5%;
}

.training1 {
   position:absolute;
   width:80%;
   top: 20%;
   right: -5%;
}

.training2 {
   position:absolute;
   width:80%;
   top: 45%;
   right: -5%;
}

.training3 {
   position:absolute;
   width:80%;
   top: 70%;
   right: -5%;
}

.custom1 {
   position:absolute;
   top: 10%;
   left: 0;
   right: 0;
   bottom: 0;
   margin: 0 auto;
   width:80%;
}

.custom2 {
   position:absolute;
   top: 10%;
   left: 0;
   right: 0;
   bottom: 0;
   margin: 0 auto;
   width:80%;
}


.service-item h3 {
   font-family:'CgPhenixAmerican';
   font-size:4.3rem;
   padding-top:10px;
   line-height:1em;
}

.service-item p {
   width:185px;
   margin:0 auto;
   font-size:18px;
   line-height:1em;
   color:#f8fde5;
}

.service-item-btn {
   font-size:16px;
   color:#fff;
   border:solid 1px #fee3df;
   margin:26px;
   padding:10px 0 10px 0;
}

.service-item-btn img {
   width:13px;
   padding:0 0 3px 5px;
}

.ec-textarea {
   text-align:right;
}

.ec img {
   width:60%;
   height:auto;
   padding-top:150px;
   padding-right:30px;
}

.ec-desc {
   width: 50%;
   text-align:left;
}


.end {
   padding-bottom:65px;
}

.end .service-heading {
   text-align:center;
}

.service-wrapper p {
   line-height: 1.3em;
}

.row {
   margin-right:0px;
   margin-left:0px;
}

/*-------------animation-------------*/

.service-heading {
   transition: all ease .5s;
   opacity: 0;
   transform: translateY(50px);
}

.service-text__read {
   transition: all ease .5s;
   opacity: 0;
   transform: translateY(50px);
}

.service-subheading {
   transition: all ease .5s;
   opacity: 0;
   transform: translateY(50px);
}

 .service-item {
    transition: all ease .5s;
    opacity: 0;
    transform: translateY(50px);
 }

.webdesign-img {
   transition: all ease 0.8s;
   opacity: 0;
   transform: translateY(0px);
}

.branding-img {
   transition: all ease 0.8s;
   opacity: 0;
   transform: translateY(0px);
}

.ec-img {
   transition: all ease 0.8s;
   opacity: 0;
   transform: translateY(0px);
}

.merits-subheading {
   transition: all ease .5s;
   opacity: 0;
   transform: translateY(50px);
}


.overall-list {
   transition: all ease .5s;
   opacity: 0;
   transform: translateY(50px);
}

.ramen1 {
   transition: all ease 0.8s;
   opacity: 0;
   transform: translateY(0px);
}

.ramen2 {
   transition: all ease 1.5s;
   opacity: 0;
   transform: translateY(0px);
}

.boolean1 {
   transition: all ease 1.5s;
   opacity: 0;
   transform: translateX(-200px);
}

.boolean2 {
   transition: all ease 1.5s;
   opacity: 0;
   transform: translateX(200px);
}

.ipad-order {
   transition: all ease 1.5s;
   opacity: 0;
   transform: translateX(400px);
}

.training1 {
   transition: all ease 1s;
   opacity: 0;
   transform: translateX(600px);
}

.training2 {
   transition: all ease 1s;
   transition-delay: 0.5s;
   opacity: 0;
   transform: translateX(600px);
}

.training3 {
   transition: all ease 1s;
   transition-delay: 1s;
   opacity: 0;
   transform: translateX(600px);
}

.custom1 {
   transition: all ease 1s;
   opacity: 0;
   transform: translateY(300px);
}

.custom2 {
   transition: all ease 1s;
   transition-delay: 1s;
   opacity: 0;
}

@media (min-width:768px){

   .restaurant-box {
     transition: all ease .5s;
     opacity: 0;
     transform: translate(200px,200px);
   }

   .customers-box {
     transition: all ease .5s;
     opacity: 0;
     transform: translate(200px,200px);
   }
}

.fadein {
   opacity: 1;
   transform: translateX(0px);
   transform: translateY(0px);
   transform: scale(1);
}


@keyframes slide {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
}

@keyframes fadein {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.service-top-heading {
   animation-name: slide;
   animation-duration: 2s;
   animation-timing-function: ease;
}

.ipad-img {
   animation-name: fadein;
   animation-duration: 3s;
   animation-timing-function: ease;
}

/*-------------responsive-------------*/

@media (max-width: 1200px){
.service-box {
    width: 100%;
}

.webdesign-textarea {
   padding-left:50px;
}

.branding-textarea {
   padding-right:50px;
}

.app {
   padding-right:40px;
   padding-left:40px;
}

.ec-textarea {
   padding-right:50px;
}

.service-item{
   width: 20%;
}

.webdesign img {
   width:50%;
   object-fit: cover;
   height: 750px;
   object-position: 0 100%;
}

.branding img {
   width:50%;
   object-fit: cover;
   height: 500px;
   object-position: 100% 100%;
}


.ec img {
   width:50%;
   object-fit: cover;
   height: 600px;
   object-position: 100% 100%;
}

.app h3 {
   font-size:45px;
}

.app p {
   font-size:13px;
   width:100%;
   height:2em;
}

.service-item-btn {
   font-size:13px;
   margin:26px;
   padding:10px 0 10px 0;
}

.service-item-btn img {
   width:13px;
   padding:0 0 3px 5px;
}

}

@media (max-width: 768px){

   .webdesign-flex {
      justify-content:none;
      flex-direction:column;
   }

   .webdesign img {
      width:100%;
      height: 500px;
      object-position:	50% 50%;
      margin:0 auto;
      padding-top:40px;
   }


   .webdesign-textarea {
      width:100%;
      padding:0 50px;
   }

   /* .branding h2 {
      text-align:right;
   } */

   .branding-flex {
      justify-content:none;
      flex-direction:column-reverse;
   }

   .branding .service-heading {
      text-align:left;
      padding:0 50px 30px 50px;
   }

   .branding img {
      margin:40px auto;
      width:90%;
      height: auto;
      object-fit:scale-down;
      object-position:top;

   }

   .branding p {
      width:90%;
      padding-left:50px;
   }

   .app {
      padding-left:0;
      padding-right:0;
   }

   .app .service-heading {
      padding:0 50px 30px 50px;
   }

   .horizontal-list {
      overflow-x:auto;
      white-space:nowrap;
      -webkit-overflow-scrolling: touch;
      padding-left:50px;
   }

   .service-item{
      display:inline-block;
      width: 190px;
      height:380px;
      margin:16px;
      /* background: rgba(255, 0, 0, 0.4); */
   }


   .service-item:last-child {
      margin-right:50px;
   }


   .service-item p{
      white-space:normal;
   }


   .ec-textarea {
      text-align:left;
      padding-right:0;
   }

   .ec img {
      width:90%;
      height: auto;
      object-fit:scale-down;
      object-position:top;
      padding-right:0;
      padding-top:60px;
      margin:0 auto;
   }

   .ec-desc {
      width: 90%;
      padding:0 50px;
   }

   .ec-flex {
      justify-content:center;
      flex-direction:column-reverse;
   }

   .ec .service-heading {
      padding:0 50px;
   }

   .ec .service-subheading {
      padding:0 50px 30px 50px;

   }

   .service-heading {
      font-size:5.6rem!important;
   }

   .branding-textarea {
      padding-right:0px;
   }
}

@media (max-width: 425px){

   .service-heading {
      font-size:4.5rem!important;
   }

   .service-subheading {
      font-size:2rem;
   }

   .branding .service-heading {
      text-align:left;
      padding:0 20px 30px 20px;
   }

   .app .service-heading {
      padding:0 20px 30px 20px;
   }

   .ec .service-subheading {
      padding:0 20px 30px 20px;

   }

   .branding p {
      width:90%;
      padding-left:20px;
   }

   .webdesign-textarea {
      padding-left:20px;
   }

   .horizontal-list {
      padding-left:20px;
   }

   .ec .service-heading {
      padding:0 20px;
   }

   .ec-desc {
      padding: 0 20px;
   }

   .service-box {
      padding-top:50px;
   }

}

/*------------till here 5/16 2019 --------------*/

/*------------changing service page ipad order 5/31 2019 --------------*/

@font-face {
  font-family: 'BrushScriptStd';
  src: url('/font/BrushScriptStd.woff') format('woff'),
  url('/font/BrushScriptStd.ttf') format('truetype');
}

.ipad {
   padding-bottom:60px;
   text-align:center;
   padding-right:50px;
   padding-left:50px;
}

.ipad-text {
   font-size:0.6em;
}

.ipad-flex {
   display:flex;
   flex-direction:column;
   align-items:center;
}

.ipad img {
   max-width:180px;
}

.merits {
   text-align:center;
   width:100%;
}

.bg_skyblue {
   background-color:#dffbff;
}

.merits .service-heading{
   font-size:6em;
}

.merits-subheading {
   font-size:1.5em;
   max-width:1200px;
   width:90%;
   margin:0 auto;
}

.merits-flex {
   display:flex;
   align-items: flex-start;
   justify-content:center;
   padding:90px 0 200px 0;
   overflow: hidden;
   width:100%;

}

.restaurant-box {
   background-color:#fff;
   padding:50px 20px 40px 20px;
   max-width:700px;
   position: relative;
}

.restaurant-box:before,
.restaurant-box:after {
  content: "";
  position: absolute;
}

.restaurant-box:before {
  width: 1000px;
  height: 105%;
  top: 0;
  left: 100%;
  background-image: linear-gradient(to right, rgba(151, 237, 228,1), rgba(151, 237, 228,1));
  transform: skew(0, 45deg);
  transform-origin: 0 0 0;

}

.restaurant-box:after {
  width: 100%;
  height: 1000px;
  top: 100%;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(151, 237, 228,1), rgba(151, 237, 228,1));
  transform: skew(45deg, 0);
  transform-origin: 0 0 0;
}

.customers-box {
   background-color:#fffdea;
   margin:330px 0px 0 30px;
   padding:50px 30px 40px 30px;
   z-index:3;
   position: relative;
}

.customers-box:before,
.customers-box:after {
  content: "";
  position: absolute;
}

.customers-box:before {
  width: 500px;
  height: 100%;
  top: 0;
  left: 100%;
  background-image: linear-gradient(to right, rgba(234, 200, 196,1), rgba(234, 200, 196,1));
  transform: skew(0, 45deg);
  transform-origin: 0 0 0;
}

.customers-box:after {
  width: 105%;
  height: 500px;
  top: 100%;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(234, 200, 196,1), rgba(234, 200, 196,1));
  transform: skew(45deg, 0);
  transform-origin: 0 0 0;
}

.box-heading {
   font-family:"CgPhenixAmerican";
   font-size:5em;
   position:relative;
}

.happy_pink::before {
   color:#eac8c4;
   font-family:"BrushScriptStd";
   content:"Happy";
   font-size:0.7em;
   position:absolute;
   top:-28px;
   left:0;
   right:0;
}


.happy_blue::before {
   color:#94ece3;
   font-family:"BrushScriptStd";
   content:"Happy";
   font-size:0.7em;
   position:absolute;
   top:-28px;
   left:0;
   right:0;
}

.merits li {
   text-align:left;
   font-size:1.3em;
   font-weight:bold;
   padding-top:20px;
   line-height:1.2em;
}

.overall li {
   text-align:left;
   font-size:1.5em;
   font-weight:bold;
   padding-top:30px;
   line-height:1.2em;
   list-style:disc;

}

.overall ul {
   padding-bottom:50px;
}

.bg_lightgray {
   background-color:#eee;
}

.overall-flex {
   display:flex;
   justify-content:space-between;
}

.overall-flex img {
   object-fit: cover;
   object-position:0 100%;

}

.overall .service-heading {
    font-size: 6em;
}

.qa {
   text-align:center;
   padding-right:50px;
   padding-left:50px;
}

.qa .service-heading {
    font-size: 6em;
}

.qa-subheading {
   max-width:850px;
   margin:0 auto;
   font-size:1.3em;
   line-height:2em;
   text-align:left;
}

.arrow-bottom {
   padding:30px 0;
}

._underline{
   display:inline;
   border-bottom:solid #94ece3 10px;
background: linear-gradient(transparent 90%, #94ece3 0%);
   line-height:1.2em; */
}

.qa .service-heading p {
   padding-top:30px;
   font-size:0.7em;
   color:#505050;
}

.example .service-heading {
   font-size:3.5em;
   margin:0 auto;
   background:#97ede4;
   padding:80px 50px;
   text-align:center;
   width:250px;
}

.example-flex {
   margin:0 auto;
   max-width:1000px;
   width:90%;
   display:flex;
   flex-wrap:wrap;
   justify-content:center;
   padding:60px 0 80px;
}

.example img {
   display:inline-block;
   margin:0 auto;
   padding-bottom:20px;
   width:100%;
}

.example-item {
   padding:40px 40px;
   max-width:400px;
   width:100%;
}

.example .service-text__read {
   text-align:center;
}

.contact-btn {
   padding:20px 40px;
   background:#000;
   max-width:400px;
   margin:0 auto;
   width:90%;
   color:#fff!important;
   text-align:center;
}

.back-btn {
   text-align:center;
   padding:40px 0;
}

@media (max-width: 1200px){
   .merits li {
      font-size:1.2em;
   }

   .overall-textarea {
      padding-left:5%;
   }

   .example-item {
      max-width:360px;
   }

}

@media (max-width: 768px){
   .service-heading {
      font-size:6em;
   }

   .service-top-heading {
      font-size:6em;
   }

   .merits-flex{
      flex-direction:column;
      align-items:center;
   }

   .customers-box {
      margin:70px 0 0 0;
   }



   .customers-box:before {
     z-index:1;
     height: 100%;
     top: 0;
     left: 0%;
     background-image: linear-gradient(to right, rgba(234, 200, 196,1), rgba(234, 200, 196,1));
     transform: skew(-45deg, 90deg);
     transform-origin: 0 0 0;
   }

   .customers-box:after {
     width: 100%;
     top: 100%;
     left: 0;
     background-image: linear-gradient(to bottom, rgba(234, 200, 196,1), rgba(234, 200, 196,1));
     transform: skew(-45deg, 0);
     transform-origin: 0 0 0;
   }

   .merits-flex {
      padding-bottom:80px;
   }

   .overall .service-heading {
      text-align:center;
   }

   .overall-flex {
      flex-direction:column;

   }

   .overall-flex img{
      object-fit:none;
      object-position:center;

   }

   .overall-box ul{
      width:90%;
      margin:0 auto;
   }

   .overall-textarea {
      padding-left:0;
   }

   .qa-textarea {
      width:95%;
      margin:0 auto;
   }

   .qa .service-heading {
      font-size:3rem!important;
   }

   .merits .service-heading {
      font-size:3.7rem!important;
   }

   .example .service-heading {
      font-size:3rem!important;
   }

   .merits-subheading {
      line-height:1.5em;
      font-size:1.2rem;
   }

   .qa-subheading {
      line-height:1.5em;
      font-size:1.2rem;
   }

   .example-item {
      max-width:300px;
   }

}

@media (max-width: 425px){
   .overall-flex img{
      object-fit:scale-down;
      object-position:bottom;
      width:320px;
   }

   .overall .service-heading {
      font-size:4rem!important;
   }

   .qa .service-heading {
      text-align:left;
   }

   .service-top-heading {
      font-size:4.2rem!important;
   }

   .merits-subheading {
      font-size:1rem;
   }

   .merits-subheading {
      font-size:1rem;
   }

   .merits-flex li {
      font-size:1rem;
   }

   .overall-box li {
      font-size:1.1rem;
   }

   .ipad {
      padding-top:100px;
   }

   .example .service-heading {
      padding:60px 0;
      width:180px;
   }

}

/*------------till here 5/31 2019 --------------*/

.about-wrap {
  position: relative;
}

.about-wrap a {
  color: #000 !important;
}

.about-text {
  padding: 0px 0px 10px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.about-text__title {
  letter-spacing: 0px;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.about-text__read {
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.about-text__arrow a {
  color: #fff !important;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.about-wrap {
  color: #000;
}

.about-bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.logo-area {
  padding: 30px 0;
}

.logo-area img {
  width: 40%;
  margin-right: 1em;
  margin-left: 1em;
}

.team-text-wrap {
  border: 3px solid #fff;
  padding: 20px 20px 10px;
}

.team-text__title {
  letter-spacing: 0px;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

.team-text__read {
  font-family: Roboto, sans-serif !important;
  font-weight: 400 !important;
  margin-bottom: 0;
  letter-spacing: 1px;
}

.team-text__arrow a {
  color: #fff !important;
  font-family: Roboto, sans-serif !important;
  font-weight: 700 !important;
}

/* Small screen / phone */
@media (min-width: 34em) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
}

/* Medium screen / tablet */
@media (min-width: 48em) {
  .team-text-wrap {
    padding: 60px 40px 30px;
  }
  .kyevisual-text__read {
    top: 445px;
  }
}

/* Extra large screen / wide desktop */
@media (min-width: 62em) {
  .kyevisual-text {
    max-width: 32em;
  }
  .kyevisual-text__title {
    line-height: 80% !important;
    letter-spacing: -2px;
    position: absolute;
    margin-left: -8px;
    top: 60%;
  }
  .kyevisual-text__read {
    top: 445px;
  }
  .kyevisual-text__arrow {
    display: block;
    bottom: -70px;
  }
  .kyevisual-text__arrow i {
    font-size: 20px;
  }
  .kyevisual-text__arrow a {
    color: #000 !important;
  }
  .about-wrap {
    height: auto;
    position: relative;
  }
  .about-wrap i,
  .team-text-wrap i,
  .intro-text i {
    font-size: 22px;
  }
  .service-text__title {
    letter-spacing: -1px;
  }
  .intro-text {
    position: relative;
  }
  .intro-text .cover {
    height: 580px;
  }
  /*
   .kyevisual-text{
   }
   .js-largelogo{

   }
   .kyevisual-text__title{
      line-height: 80% !important;
      letter-spacing: -2px;
      position:absolute;
      top:60%;
      left: 200px;
   }
   .kyevisual-text__read{
      font-size: 18px;
      color: #000 !important;
      position:absolute;
      top:140%;
      left: 200px;
      width: 500px;
   }
   .kyevisual-text__arrow{
      position:absolute;
      top:190%;
      left: 200px;
      i{
         font-size: 22px;
      }
      a{
         color: #000 !important;
      }
   }*/
  .about-wrap {
    height: auto;
    position: relative;
  }
  .about-wrap i,
  .team-text-wrap i,
  .intro-text i {
    font-size: 22px;
  }
  .intro-text__title {
    line-height: 100%;
  }
  .service-text__title {
    letter-spacing: -1px;
  }
  .intro-text,
  .service-text {
    position: relative;
  }
  .intro-text .cover,
  .service-text .cover {
    height: 580px;
  }
  .logo-area {
    max-width: 60em;
    margin: auto;
  }
  .logo-area img {
    width: 21%;
    margin-right: 1em;
    margin-left: 1em;
  }
  .about-bg {
    height: 400px !important;
  }
  .about-bg dl {
    width: 10%;
    height: 400px !important;
    float: left;
    opacity: 0.7;
  }
  .about-bg dl:nth-child(1) {
    background: url(../img/top/about/01.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(2) {
    background: url(../img/top/about/02.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(3) {
    background: url(../img/top/about/03.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(4) {
    background: url(../img/top/about/04.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(5) {
    background: url(../img/top/about/05.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(6) {
    background: url(../img/top/about/06.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(7) {
    background: url(../img/top/about/07.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(8) {
    background: url(../img/top/about/08.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(9) {
    background: url(../img/top/about/09.jpg) center center no-repeat #c3c3c3;
  }
  .about-bg dl:nth-child(10) {
    background: url(../img/top/about/10.jpg) center center no-repeat #c3c3c3;
  }
}

@media (min-width: 80em) {
  .kyevisual-text__read {
    font-size: 21px;
    color: #000 !important;
    position: absolute;
    top: 465px;
    margin-top: 0;
  }
}

.bg-scale {
  position: relative;
  overflow: hidden;
  padding: 20px 0 60px;
}

.bg-scale h1 {
  z-index: 1000;
  position: absolute;
  top: 63px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  height: 40px;
  margin: auto;
  text-align: center;
}

.bg-scale:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(/img/service/service.jpg) 50% 50% no-repeat fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 26s ease-out;
  -moz-transition: all 26s ease-out;
  -ms-transition: all 26s ease-out;
  transition: all 26s ease-out;
}

.bg-slanting:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transform: skew(-25deg);
  transform-origin: left top;
}

.bg-slanting.on:before {
  width: 30%;
  transform: skew(-25deg);
  display: none;
}

.br-sp {
  display: block;
}

.bg-scale:after {
  background: url(/img/service/service.jpg) no-repeat fixed #fff;
  background-size: 190% auto;
  width: 100%;
  height: 100%;
}

.bg-scale.bg-com:after {
  background: url(/img/company/company.jpg) no-repeat fixed #fff;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.bg-scale.bg-info:after {
  background: url(/img/information/information.jpg) no-repeat fixed #fff;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.bg-scale.bg-infodetail:after {
  background: url(/img/information/informationdetail.jpg) no-repeat fixed #fff;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.bg-scale.bg-recruit:after {
  background: url(/img/recruit/recruit.jpg) no-repeat fixed #fff;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
}

.title-pa {
  padding: 62px 0 40px;
}

/* Small screen / phone */
/* Medium screen / tablet */
/* Extra large screen / wide desktop */
@media (min-width: 62em) {
  .bg-scale {
    padding: 60px 0 60px;
  }
  .bg-scale h1 {
    left: 60px;
    top: 150px;
    margin: 0;
    text-align: left;
  }
  .bg-scale:after {
    background: url(/img/service/service.jpg) 50% 50% 0 no-repeat fixed;
    background-size: 100% auto;
  }
  .bg-scale.bg-com:after {
    background: url(/img/company/company.jpg) no-repeat fixed;
        background-size:cover;
  }
  .bg-scale.bg-info:after {
    background: url(/img/information/information.jpg) 50% 50% 0 no-repeat fixed;
  }
  .bg-scale.bg-infodetail:after {
    background: url(/img/information/informationdetail.jpg) no-repeat fixed;
  }
  .bg-scale.bg-recruit:after {
    background: url(/img/recruit/recruit.jpg) no-repeat fixed;
    width: 100%;
    height: 100%;
    background-size:100%;
  }
  .br-sp {
    display: none;
  }
  .bg-scale-start:after {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
/*changing works page 0202 2019 */

.works .outer {
	background:white;
	height:100px;
}

.works .inner {
	padding:8px 10px 20px 20px;
	position: relative;
	height:100px;
}

.works .inner p {
   margin: 0.5em 0px;
   line-height: 1.3;
}

.works__btn--link {
	position:absolute;
	width:25px;
	height:25px;
	right:10px;
	top:10px;
    opacity:0;
	z-index:0;
	transition: all 0.3s;
}

.cbp-item-wrapper:hover >.works__btn--link {
    opacity:1;
	z-index:500;
}

.cbp-item-wrapper:hover >.works__btn--link:hover{
    opacity:0.7;

}


.s-portfolio__img-effect > a {
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
	z-index:400;
}


.works__btn--detail b {
	border:solid 1.5px #fff;
	padding:8px 30px;
	border-radius:30px;
}

@media (max-width: 425px) {
	.works__btn--detail b {
		display:none;
	}
}

/*changing works page 5/2 2019 */

.heading {
   border-bottom: solid 1px #414141;
   padding:0px 0 10px 0;
   width:100%;
   letter-spacing:1.2px;
}

.pickup-box {
   border-bottom:solid 1px #414141;
   padding-bottom:60px;
   margin-bottom:40px;
}

.pager {
   margin:0 auto;
   padding-bottom:70px;
}

.pager-pagenum {
   margin-bottom:30px;
}

.pager-num {
   font-size:17px;
   padding:10px 15px;
   margin:10px;
   background:#fff;
}

.pager-num-cr {
   font-size:17px;
   padding:10px 15px;
   margin:10px;
   color:#fff;
   background:#222223;
}

.pager-num:hover {
   color:#fff;
   background:#616161;
   transition:all ease 0.2s;
}

.pager-cursor {
   display:inline-block;
   width:30px;
}

.pager-cursor:hover {
   opacity:0.6;
   transition:all ease 0.2s;
}

.pager-cursor img {
   width:100%;
   padding-bottom:3px;
}

@media screen and (max-width:360px) {
   .pager {
      margin:0 auto;
      padding-bottom:30px;
   }

   .pager-num {
      font-size:12px;
      padding:7px 10px;
      margin:2px;
   }

   .pager-num-cr {
      font-size:15px;
      padding:8px 13px;
      margin:7px;
   }

   .pager-cursor {
      width:20px;
   }
}


/*------------------*/

.works .release_text {
	position: absolute;
	bottom: 0;
}

.works {
  background: #eee;
  /* Small screen / phone */
  /* Medium screen / tablet */
  /* Extra large screen / wide desktop */
}

.works h1 span {
  width: 8px;
  height: 1px;
  background: #000;
  display: block;
  margin-top: 16px;
}

.works .key-visual {
  max-width: 1140px;
  margin: 80px auto 20px;
  /*box-shadow:0 3px 6px rgba(0,0,0,0.12),0 3px 6px rgba(0,0,0,0.19);*/
}

.works .key-visual img {
  padding-bottom: 0 !important;
  /*animation-name: fadein;*/
  /* animation-duration: 2s; */
}

/* @keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
} */

.works .clear {
  clear: both;
}

.works .area-solution {
  margin-bottom: 20px;
}

.works .area-solution p {
  border: 1px solid #656565;
  line-height: 120%;
  width: 7rem;
  text-align: center;
  border-radius: 10px;
  float: left;
  font-size: 6px !important;
  padding: 2px 0;
  margin: 0 4px 4px  0;
  color: #000;
}

.works .cate-list-wrap {
  width: 100% !important;
}

.works .cate-list {
  min-width: 50%;
  float: left;
  padding: 0px 12px !important;
}

.works .works-menu-area {
  padding-bottom: 20px;
}

.works .works-menu-area h1 {
  font-size: 15em;
}

.works .works-spec {
  position: relative;
}

.works .works-spec p {
  font-size: 12px;
}

.works .works-meta-release {
  margin-bottom: 0;
  color: #000;
}

.works .works-meta-platform img {
  margin-right: 5px;
}

.works .container-fluid.works-menu-area-under {
  padding: 0;
}

.works .s-portfolio__filter-v1 {
  text-align: left !important;
}

.works .cbp-filter-item {
  margin-bottom: 0px !important;
}

.works .more-btn {
  padding: 3px 30px;
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
}

.works .portfolio-list h4 {
  margin-bottom: 0px;
}

.works .portfolio-list p {
  margin-bottom: 0;
}

.works .cbp-item-text h4 {
  margin: 0;
  color: #fff !important;
}

.works #btn-goToContact {
  background: #000;
  padding: 16px 0 14px;
  text-align: center;
  line-height: 160%;
  font-size: 14px;
}

.works #btn-goToContact a {
  color: #fff;
  display: block;
}

.works #btn-goToContact i, .works #btn-goToContact span {
  font-size: 22px;
}

.works .pageback {
  text-align: center;
  padding: 40px 0 26px;
  font-size: 15px;
}

.works h1 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.works .message h1 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

@media (min-width: 48em) {
  .works .works-meta-release {
    position: absolute;
    right: 10px;
    top: -3px;
  }
  .works .pageback {
    text-align: center;
    padding: 40px 0 20px;
  }
  .works .works-meta-platform {
    position: absolute;
    right: 10px;
    top: 31px;
  }
  .works .works-meta-platform img {
    margin-left: 5px;
    margin-right: 0px;
  }
  .works .area-solution {
    margin-bottom: 20px;
    max-width: 800px;
  }
  .works .area-solution p {
    width: 7rem;
    font-size: 7px;
    margin: 0 6px 8px  0;
  }
  .works .cate-list {
    min-width: 33%;
  }
  .works .cbp-item-wrap {
    max-width: 1766px;
    margin: 0 auto;
  }
  .works .message {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .works .message h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .works .text-uppercase {
    width: 80%;
  }
  .works #btn-goToContact {
    padding: 20px 0;
  }
}

@media (min-width: 62em) {
  .works .key-visual {
    margin: 110px auto 55px;
  }
}

.company {
  /* Small screen / phone */
  /* Medium screen / tablet */
  /* Extra large screen / wide desktop */
}

.company .companyList-basic {
  margin-bottom: 30px;
}

.company p {
  margin-bottom: 0;
  color: #000;
}

.company p span {
  width: 8px;
  height: 1px;
  background: #b2b2b2;
  display: block;
  margin-top: 16px;
}

.company dl {
  margin-bottom: 50px;
}

.company dl dt {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.company dl dd {
  font-size: 0.9rem;
}

.company .companyList-wrap {
  margin-bottom: 20px;
}

.company table th {
  color: #656565 !important;
}

.company table th, .company table td {
  display: block;
  padding: 4px 0;
}

.company table td {
  margin-bottom: 10px;
}

.company #bodyContent {
  margin-bottom: 20px;
}

@media (min-width: 48em) {
  .company .companyList-wrap {
    width: 44%;
    float: right;
  }
  .company .companyList-wrap:nth-child(2n) {
    float: left;
  }
}

.recruit {
  /* Small screen / phone */
  /* Medium screen / tablet */
  /* Extra large screen / wide desktop */
}

.recruit h2 {
  font-weight: bold;
  line-height: 140%;
}

.recruit .recruit-bg {
  padding-top: 60px;
}

.recruit .recruit-visual {
  width: 100%;
  background: #eee;
  margin-bottom: 6%;
}

.recruit .recruit-visual img {
  width: 100%;
}

.recruit .list-no-wrap {
  display: flex;
}

.recruit .list-no-wrap .list-no {
  padding-left: 20px;
  padding-top: 3px;
  font-family: 'Carrois Gothic', sans-serif !important;
}

.recruit .list-no-wrap .list-text {
  text-align: left;
  flex: 1;
}

.recruit .list-no-wrap .list-text p {
  font-size: 0.95rem;
}

.recruit .g-hor-centered-row--md {
  padding: 0 1%;
}

.recruit table {
  font-size: 0.85rem;
  line-height: 180%;
}

.recruit .job-kind-wrap {
  padding: 0 1%;
}

.recruit .recruit-visual-min-wrap {
  margin-bottom: 50px;
  /*display: flex;
      justify-content:space-between;*/
}

.recruit .recruit-visual-min {
  width: 49%;
  background: #eee;
  margin-bottom: 20px;
}

.recruit .recruit-visual-min img {
  width: 100%;
}

.recruit .recruit-bg {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
}

.recruit .job-kind {
  margin-bottom: 30px;
  padding: 20px 20px;
  line-height: 180%;
  font-size: 16px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.recruit table {
  text-align: left;
  width: 100%;
}

.recruit table td {
  padding: 8px 10px 0;
  display: block;
  margin-bottom: 20px;
}

.recruit table th {
  padding: 0px 10px 0;
  display: block;
}

.recruit .link-button {
   position:relative;
   width:300px;
   height:70px;

}

.recruit .link-button a {
   display:block;
   position:absolute;
   top:0;
   left:0;
   height:100%;
   width:100%;
   padding-top:16px;
}

@media (min-width: 34em) {
  .recruit .list-no-wrap {
    display: -webkit-block;
    display: block;
  }
  .recruit .list-no-wrap .list-no {
    padding-left: 0px;
  }
  .recruit .list-no-wrap .list-text {
    text-align: center;
  }
  .recruit .list-no-wrap .list-text p {
    font-size: 0.93rem;
  }
  .recruit .recruit-visual-min {
    margin-bottom: 80px;
  }
}

@media (min-width: 62em) {
  .recruit .recruit-bg {
    padding-top: 30px;
  }
  .recruit .job-kind {
    margin-bottom: 30px;
    padding: 10px 10px;
    line-height: 180%;
    font-size: 16px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .recruit table {
    width: 50%;
    float: left;
    text-align: left;
  }
  .recruit table:first-child {
    float: left;
  }
  .recruit .g-hor-centered-row--md {
    padding: 0 5%;
  }
  .recruit .job-kind-wrap {
    padding: 0 5%;
  }
}

.information {
  /* Small screen / phone */
  /* Medium screen / tablet */
  /* Extra large screen / wide desktop */
}

.information .detail-title {
  line-height: 160%;
}

.information .detail-img img {
  margin-bottom: 40px;
}

.information .service-text__title {
  vertical-align: baseline;
  color: #757575 !important;
  font-family: 'Carrois Gothic', sans-serif !important;
}

.information .service-text__title span {
  width: 8px;
  height: 1px;
  background: #b2b2b2;
  display: block;
  margin-top: 16px;
}

.information .service-text__title span.center {
  margin: 30px auto;
}

.information .paging {
  margin: 0px auto;
  padding: 15px 0;
}

.information a .maru {
  color: #fff !important;
}

.information .maru {
  background: #000;
  padding: 0 6px 2px;
  margin: 0 10px;
}

.information .maru:hover {
  background: #000;
  color: #fff;
}

.information .detail-img {
  max-width: 621px;
  margin: auto;
}

.information .detail-img img {
  width: 100% !important;
}

.information .detail-text {
  text-align: center;
}

.information .detail-text img {
  margin-bottom: 20px;
  /*margin-bottom: 3rem;
         box-shadow:0 3px 6px rgba(0,0,0,0.18),0 3px 6px rgba(0,0,0,0.25);
         border-top: 1px solid #e3e3e3;*/
}

.information .detail-img-list {
  max-width: 295px;
  float: left;
  margin-right: 40px;
}

.information .detail-text {
  max-width: 621px;
  margin: auto;
}

.information .detail-text img {
  width: 100% !important;
}

.information .detail-img-list p {
  margin-bottom: 0;
}

.information .back-list-button {
  padding: 6px 30px;
  border: 1px solid #000;
}

@media (min-width: 48em) {
  .information .paging {
    width: 60%;
  }
  .information .detail-text img {
    margin-bottom: 40px;
    width: 621px !important;
  }
}

@media (min-width: 62em) {
  .information .detail-title {
    max-width: 600px;
    margin: auto;
  }
}

.team {
  /**
   * webkit
   */
  /*@-webkit-keyframes anime_in{
      0%{-webkit-transform:scale(0,0);}
      50%{-webkit-transform:scale(0,1);}
      100%{-webkit-transform:scale(1,1);}
   }*/
  /* Small screen / phone */
  /* Medium screen / tablet */
  /* Extra large screen / wide desktop */
}

.team h1 span {
  width: 8px;
  height: 1px;
  background: #000;
  display: block;
  margin-top: 10px;
}

.team .title-team {
  clear: both;
}

.team .scale-team {
  overflow: hidden;
  position: relative;
}

.team .scale-team-height:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* 1:1 */
}

.team .scale-team img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.team .team-box {
  opacity: 0;
  display: inline-block;
  transform: translateY(45px);
}

.team .is-active .team-box {
  opacity: 1;
  transform: translateY(0px);
}

.team .is-active .team-box:nth-child(1) {
  transition: all 0.5s ease;
}

.team .is-active .team-box:nth-child(2) {
  transition: all 0.5s ease 0.1s;
}

.team .is-active .team-box:nth-child(3) {
  transition: all 0.5s ease 0.2s;
}

.team .is-active .team-box:nth-child(4) {
  transition: all 0.5s ease 0.3s;
}

.team .is-active .team-box:nth-child(5) {
  transition: all 0.5s ease 0.4s;
}

.team .is-active .team-box:nth-child(6) {
  transition: all 0.5s ease 0.5s;
}

.team .is-active .team-box:nth-child(7) {
  transition: all 0.5s ease 0.6s;
}

.team .is-active .team-box:nth-child(8) {
  transition: all 0.5s ease 0.7s;
}

.team .is-active .team-box:nth-child(9) {
  transition: all 0.5s ease 0.8s;
}

.team .is-active .team-box:nth-child(10) {
  transition: all 0.5s ease 0.9s;
}

.team .is-active .team-box:nth-child(11) {
  transition: all 0.5s ease 1s;
}

.team .scale-team img {
  -moz-transition: -moz-transform 0.2s ease-out;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  -o-transition: -o-transform 0.2s ease-out;
  -ms-transition: -ms-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

.team .scale-team img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.team .team-box {
  min-height: auto;
}

@media (min-width: 34em) {
  .team .team-box {
    min-height: 500px;
    /*min-height:700px;*/
  }
}

@media (min-width: 62em) {
  .team h1 span {
    margin-top: 16px;
  }
}

.contact {
  /* Small screen / phone */
  /* Medium screen / tablet */
  /* Extra large screen / wide desktop */
}

.contact .error {
  color: #ff0000;
  text-align: center;
  padding: 3rem;
  margin-top: -3em;
}

.contact .s-form-v2__input.pa {
  padding: 1.25rem !important;
}
