/* -------------------------------- 

Primary style

-------------------------------- */

@media only screen and (max-width: 1199px) {
  body.nav-on-left.overflow-hidden {
    overflow: hidden;
  }
}

a {
  color: #69aa6f;
  text-decoration: none;
}

img {
  /* make images responsive */
  max-width: 100%;
}

input {
  font-family: sans-serif;
  font-size: 1.6rem;
}

input[type="search"]::-ms-clear {
  /* removes close icon - IE */
  display: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content, .cd-main-header {
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.cd-main-content, .cd-main-header {
  position: relative;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
@media only screen and (max-width: 1199px) {
  .cd-main-content.nav-is-visible, .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-main-content.nav-is-visible, .nav-on-left .cd-main-header.nav-is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
}

.cd-main-content {
  background: #e2e3df;
  min-height: 85px;
  z-index: 2;
}

.cd-main-header {
  height: 85px; width:100%; position:fixed;
  background: #ffffff;
  z-index: 3;
}
.nav-is-fixed .cd-main-header {
  /* add .nav-is-fixed class to body if you want a fixed navigation on > 1200px */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .cd-main-header {
    height: 80px;
  }
  .cd-main-header::after {
    clear: both;
    content: "";
    display: table;
  }
}

.cd-logo {
  position: absolute;
  top: 10px;
  left: 15px; height:60px; display:flex; align-items: center; justify-content:center;
}
.cd-logo img {
  display: block; max-height:60px;  
  
}

@media only screen and (max-width: 420px) {
.cd-logo img {
  display: block; max-height:50px; height:auto !important; width:auto; max-width:210px !important;
  
}
}

@media only screen and (max-width: 360px) {
.cd-logo img {
  display: block; max-height:50px; height:auto !important; width:auto; max-width:180px !important;
  
}
}

@media only screen and (max-width: 320px) {
.cd-logo img {
  display: block; max-height:50px; height:auto !important; width:auto; max-width:150px !important;
  
}
}


@media only screen and (max-width: 1199px) {
  .nav-on-left .cd-logo {
    left: auto;
    right: 5%;
  }
}
@media only screen and (min-width: 1200px) {
  .cd-logo {
    top: 26px;
    left: 4em;
  }
}

.cd-header-buttons {
  position: absolute;
  display: inline-block;
  top: 20px;
  right: 15px;
}
.cd-header-buttons li {
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .nav-on-left .cd-header-buttons {
    right: auto;
    left: 5%;
  }
  .nav-on-left .cd-header-buttons li {
    float: right;
  }
}
@media only screen and (min-width: 1200px) {
  .cd-header-buttons {
    top: 18px;
    right: 4em;
  }
}

.cd-search-trigger, .cd-nav-trigger {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  /* hide text */
  color: transparent;
  z-index: 3;
}

.cd-search-trigger::before, .cd-search-trigger::after {
  /* search icon */
  content: '';
  position: absolute;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.cd-search-trigger::before {
  /* lens */
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #2e3233;
}
.cd-search-trigger::after {
  /* handle */
  height: 3px;
  width: 8px;
  background: #2e3233;
  bottom: 14px;
  right: 11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span {
  /* container for the X icon */
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.cd-search-trigger span::before, .cd-search-trigger span::after {
  /* close icon */
  content: '';
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 22px;
  top: 50%;
  margin-top: -2px;
  left: 50%;
  margin-left: -11px;
  background: #2e3233;
  opacity: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
}
.cd-search-trigger span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cd-search-trigger span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cd-search-trigger.search-is-visible::before, .cd-search-trigger.search-is-visible::after {
  /* hide search icon */
  opacity: 0;
}
.cd-search-trigger.search-is-visible span::before, .cd-search-trigger.search-is-visible span::after {
  /* show close icon */
  opacity: 1;
}
.cd-search-trigger.search-is-visible span::before {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cd-search-trigger.search-is-visible span::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-nav-trigger span, .cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #2e3233;
}
.cd-nav-trigger span {
  /* line in the center */
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  -webkit-transition: background 0.3s 0.3s;
  -moz-transition: background 0.3s 0.3s;
  transition: background 0.3s 0.3s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* other 2 lines */
  content: '';
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.cd-nav-trigger span::before {
  /* menu icon top line */
  top: -6px;
}
.cd-nav-trigger span::after {
  /* menu icon bottom line */
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  /* hide line in the center */
  background: rgba(46, 50, 51, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  /* keep visible other 2 lines */
  background: #2e3233;
}
.cd-nav-trigger.nav-is-visible span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}
@media only screen and (min-width: 1200px) {
  .cd-nav-trigger {
    display: none;
  }
}

.cd-primary-nav, .cd-primary-nav ul {
	list-style:none;
	padding:0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background: #2e3233;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-primary-nav a, .cd-primary-nav ul a {
  display: block;
  padding: 20px 30px;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  border-bottom: 1px solid rgba(255,255,255,0.2);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
}
.cd-primary-nav.is-hidden, .cd-primary-nav ul.is-hidden {
  /* secondary navigations hidden by default */
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.cd-primary-nav.moves-out > li > a, .cd-primary-nav ul.moves-out > li > a {
  /* push the navigation items to the left - and lower down opacity - when secondary nav slides in */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 1199px) {
  .nav-on-left .cd-primary-nav, .nav-on-left .cd-primary-nav ul {
    right: auto;
    left: 0;
  }
}
.cd-primary-nav .see-all a {
  /* different style for the See all button on mobile and tablet */
  color: #69aa6f;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item, .cd-primary-nav .cd-nav-icons .cd-nav-item {
  /* items with picture (or icon) and title */
  height: 80px;
  line-height: 80px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item h3, .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item {
  padding-left: 90px;
}
.cd-primary-nav .cd-nav-gallery .cd-nav-item img {
  position: absolute;
  display: block;
  height: 40px;
  width: auto;
  left: 20px;
  top: 50%;
  margin-top: -20px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item {
  padding-left: 75px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item p {
  color: #2e3233;
  font-size: 1.3rem;
  /* hide description on small devices */
  display: none;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item::before {
  /* item icon */
  content: '';
  display: block;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-1::before {
  background-image: url("../img/line-icon-1.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-2::before {
  background-image: url("../img/line-icon-2.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-3::before {
  background-image: url("../img/line-icon-3.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-4::before {
  background-image: url("../img/line-icon-4.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-5::before {
  background-image: url("../img/line-icon-5.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-6::before {
  background-image: url("../img/line-icon-6.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-7::before {
  background-image: url("../img/line-icon-7.svg");
}
.cd-primary-nav .cd-nav-icons .cd-nav-item.item-8::before {
  background-image: url("../img/line-icon-8.svg");
}
@media only screen and (max-width: 1199px) {
  .cd-primary-nav {
    /* by default .cd-primary-nav is hidden - trick for iOS devices where you can see the navigation if you pull down */
    visibility: hidden;
    -webkit-transition: visibility 0s 0.3s;
    -moz-transition: visibility 0s 0.3s;
    transition: visibility 0s 0.3s;
  }
  .cd-primary-nav.nav-is-visible {
    visibility: visible;
    -webkit-transition: visibility 0s 0s;
    -moz-transition: visibility 0s 0s;
    transition: visibility 0s 0s;
  }
}

@media only screen and (min-width: 1200px) {
  .cd-primary-nav {
    position: static;
    padding: 0 150px 0 0;
    height: auto;
    width: auto;
    float: right;
    overflow: visible;
    background: transparent;
  }
  .cd-primary-nav::after {
    clear: both;
    content: "";
    display: table;
  }
  .cd-primary-nav.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav ul {
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    overflow: visible;
    z-index: 3;
  }
  .cd-primary-nav ul.is-hidden {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-primary-nav ul.moves-out > li > a {
    /* reset mobile style */
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  .cd-primary-nav > li {
    float: left;
    margin-left: 3em;
  }
  .cd-primary-nav > li > a {
    /* main navigation buttons style */
    position: relative;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    padding: 0 10px;
    color: #2e3233;
    overflow: visible;
    border-bottom: none;
    -webkit-transition: color 0.3s, box-shadow 0.3s;
    -moz-transition: color 0.3s, box-shadow 0.3s;
    transition: color 0.3s, box-shadow 0.3s;
  }
  .cd-primary-nav > li > a:hover {
    color: #69aa6f;
  }
  .cd-primary-nav > li > a.selected {
    color: #69aa6f;
    box-shadow: inset 0 -2px 0 #69aa6f;
  }
  .cd-primary-nav .go-back, .cd-primary-nav .see-all {
    display: none;
  }
  .cd-primary-nav .cd-secondary-nav, .cd-primary-nav .cd-nav-gallery, .cd-primary-nav .cd-nav-icons {
    /* dropdown menu style */
    position: absolute;
    top: 80px;
    width: 100vw;
    background: #ffffff;
    padding: 48px 64px 130px;
    box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
  }
  .cd-primary-nav .cd-secondary-nav::after, .cd-primary-nav .cd-nav-gallery::after, .cd-primary-nav .cd-nav-icons::after {
    clear: both;
    content: "";
    display: table;
  }
  .cd-primary-nav .cd-secondary-nav.is-hidden, .cd-primary-nav .cd-nav-gallery.is-hidden, .cd-primary-nav .cd-nav-icons.is-hidden {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all, .cd-primary-nav .cd-nav-gallery > .see-all, .cd-primary-nav .cd-nav-icons > .see-all {
    /* this is the BIG See all button at the bottom of the dropdown menu */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 80px;
    width: 100%;
    overflow: hidden;
    /* reset some inherited style */
    margin: 0;
    padding: 0;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a, .cd-primary-nav .cd-nav-gallery > .see-all a, .cd-primary-nav .cd-nav-icons > .see-all a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 2.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 80px;
    border-top: 1px solid #e2e3df;
    /* reset some inherited style */
    border-bottom: none;
    margin: 0;
    padding: 0;
    -webkit-transition: color 0.2s, background 0.2s, border 0.2s;
    -moz-transition: color 0.2s, background 0.2s, border 0.2s;
    transition: color 0.2s, background 0.2s, border 0.2s;
  }
  .cd-primary-nav .cd-secondary-nav > .see-all a:hover, .cd-primary-nav .cd-nav-gallery > .see-all a:hover, .cd-primary-nav .cd-nav-icons > .see-all a:hover {
    background: #2e3233;
    border-color: #2e3233;
    color: #ffffff;
  }
  .cd-primary-nav .cd-secondary-nav > li {
    /* change the height according to your needs - you can even set height: auto */
    height: 340px;
    /* here you set the number of columns - use width percentage */
    width: 23%;
    float: left;
    margin-right: 2.66%;
    border-right: 1px solid #e2e3df;
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cd-primary-nav .cd-secondary-nav > li:nth-child(4n+2) {
    /* +2 because we have 2 list items with display:none */
    margin-right: 0;
    border-right: none;
  }
  .cd-primary-nav .cd-secondary-nav > li > a {
    /* secondary nav title */
    color: #69aa6f;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-secondary-nav a {
    height: 30px;
    line-height: 30px;
    padding: 0 18% 0 0;
    color: #2e3233;
    border-bottom: none;
    font-size: 1.4rem;
  }
  .cd-primary-nav .cd-secondary-nav a:hover {
    color: #69aa6f;
  }
  .cd-primary-nav .cd-secondary-nav ul {
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  .cd-primary-nav .cd-secondary-nav ul ul {
    /* tertiary navigation */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .cd-primary-nav .cd-secondary-nav ul ul.is-hidden {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .go-back a {
    color: transparent;
  }
  .cd-primary-nav .cd-secondary-nav ul ul .see-all {
    display: block;
  }
  .cd-primary-nav .cd-secondary-nav .moves-out > li > a {
    /* push the navigation items to the left - and lower down opacity - when tertiary nav slides in */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-primary-nav .cd-nav-gallery li {
    /* set here number of columns - use width percentage */
    width: 22%;
    float: left;
    margin: 0 4% 40px 0;
  }
  .cd-primary-nav .cd-nav-gallery li:nth-child(4n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item {
    border-bottom: none;
    padding: 0;
    height: auto;
    line-height: 1.2;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item img {
    position: static;
    margin-top: 0;
    height: auto;
    width: 100%;
    margin-bottom: .6em;
  }
  .cd-primary-nav .cd-nav-gallery .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
    padding: 0 .4em;
  }
  .cd-primary-nav .cd-nav-icons li {
    /* set here number of columns - use width percentage */
    width: 32%;
    float: left;
    margin: 0 2% 20px 0;
  }
  .cd-primary-nav .cd-nav-icons li:nth-child(3n+2) {
    /* +2 because we have two additional list items with display:none */
    margin-right: 0;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item {
    border-bottom: none;
    height: 80px;
    line-height: 1.2;
    padding: 24px 0 0 85px;
    position: relative;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item:hover {
    background: #f6f6f5;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item h3 {
    color: #69aa6f;
    font-weight: bold;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item p {
    display: block;
  }
  .cd-primary-nav .cd-nav-icons .cd-nav-item::before {
    left: 25px;
  }
}
.has-children > a, .go-back a {
  position: relative;
}
.has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
  /* arrow icon in CSS - for element with nested unordered lists */
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -1px;
  display: inline-block;
  height: 2px;
  width: 10px;
  background: #fff;  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.has-children > a::before, .go-back a::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.has-children > a::after, .go-back a::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (min-width: 1200px) {
  .has-children > a::before, .has-children > a::after, .go-back a::before, .go-back a::after {
    background: #c9cbc4;
  }
  .has-children > a:hover::before, .has-children > a:hover::after, .go-back a:hover::before, .go-back a:hover::after {
    background: #69aa6f;
  }
}

.has-children > a {
  padding-right: 40px;
}
.has-children > a::before, .has-children > a::after {
  /* arrow goes on the right side - children navigation */
  right: 20px;
  -webkit-transform-origin: 9px 50%;
  -moz-transform-origin: 9px 50%;
  -ms-transform-origin: 9px 50%;
  -o-transform-origin: 9px 50%;
  transform-origin: 9px 50%;
}

.cd-primary-nav .go-back a {
  padding-left: 40px;
}
.cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
  /* arrow goes on the left side - go back button */
  left: 20px;
  -webkit-transform-origin: 1px 50%;
  -moz-transform-origin: 1px 50%;
  -ms-transform-origin: 1px 50%;
  -o-transform-origin: 1px 50%;
  transform-origin: 1px 50%;
}

@media only screen and (min-width: 1200px) {
  .has-children > a::before, .has-children > a::after {
    right: 15%;
  }

  .cd-primary-nav > .has-children > a {
    /* main navigation arrows on larger devices */
    padding-right: 30px !important;
  }
  .cd-primary-nav > .has-children > a::before, .cd-primary-nav > .has-children > a::after {
    width: 9px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    background: #c9cbc4;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: width 0.3s, -webkit-transform 0.3s;
    -moz-transition: width 0.3s, -moz-transform 0.3s;
    transition: width 0.3s, transform 0.3s;
  }
  .cd-primary-nav > .has-children > a::before {
    right: 12px;
  }
  .cd-primary-nav > .has-children > a::after {
    right: 7px;
  }
  .cd-primary-nav > .has-children > a.selected::before, .cd-primary-nav > .has-children > a.selected::after {
    width: 14px;
  }
  .cd-primary-nav > .has-children > a.selected::before {
    -webkit-transform: translateX(5px) rotate(-45deg);
    -moz-transform: translateX(5px) rotate(-45deg);
    -ms-transform: translateX(5px) rotate(-45deg);
    -o-transform: translateX(5px) rotate(-45deg);
    transform: translateX(5px) rotate(-45deg);
  }
  .cd-primary-nav > .has-children > a.selected::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .cd-secondary-nav > .has-children > a::before, .cd-secondary-nav > .has-children > a::after {
    /* remove arrows on secondary nav titles */
    display: none;
  }

  .cd-primary-nav .go-back a {
    padding-left: 20px;
  }
  .cd-primary-nav .go-back a::before, .cd-primary-nav .go-back a::after {
    left: 1px;
  }
}
.cd-search {
  position: absolute;
  height: 50px;
  width: 100%;
  top: 50px;
  left: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-search form {
  height: 100%;
  width: 100%;
}
.cd-search input {
  border-radius: 0;
  border: none;
  background: #ffffff;
  height: 100%;
  width: 100%;
  padding: 0 5%;
  box-shadow: inset 0 1px 0 #e2e3df, 0 3px 6px rgba(0, 0, 0, 0.05);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-search input::-webkit-input-placeholder {
  color: #c9cbc4;
}
.cd-search input::-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-moz-placeholder {
  color: #c9cbc4;
}
.cd-search input:-ms-input-placeholder {
  color: #c9cbc4;
}
.cd-search input:focus {
  outline: none;
}
.cd-search.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.nav-is-fixed .cd-search {
  position: fixed;
}
@media only screen and (min-width: 1200px) {
  .cd-search {
    height: 120px;
    top: 80px;
  }
  .cd-search input {
    padding: 0 2em;
    font-size: 3.2rem;
    font-weight: 300;
  }
}

.cd-overlay {
  /* shadow layer visible when navigation is active */
  position: fixed;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(105, 170, 111, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0.3s 0s;
}
.cd-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s, -webkit-transform 0.3s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s, -moz-transform 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, transform 0.3s 0s;
}
@media only screen and (max-width: 1199px) {
  .cd-overlay.is-visible {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
    transform: translateX(-260px);
  }
  .nav-on-left .cd-overlay.is-visible {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    -ms-transform: translateX(260px);
    -o-transform: translateX(260px);
    transform: translateX(260px);
  }
  .cd-overlay.is-visible.search-is-visible, .nav-on-left .cd-overlay.is-visible.search-is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}

/* -------------------------------- 

support for no js 

-------------------------------- */
.no-js .cd-primary-nav {
  position: relative;
  height: auto;
  width: 100%;
  overflow: visible;
  visibility: visible;
  z-index: 2;
}

.no-js .cd-search {
  position: relative;
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1200px) {
  .no-js .cd-primary-nav {
    position: absolute;
    z-index: 3;
    display: inline-block;
    width: auto;
    top: 0;
    right: 150px;
    padding: 0;
  }

  .no-js .nav-is-fixed .cd-primary-nav {
    position: fixed;
  }
}
.home-wel {
  font-size: 22px;
  line-height: 1.5;
  margin: 50px 0 0 0;
}
.home-wel img {
  display: none;
}
.about-name {
  font-size: 36px;
  font-weight: 600;
  color: #ff5722;
  line-height: 1.5;
}
.about-name img {
  display: none;
}
.detail-home {
  line-height: 1.5;
  margin: 25px 0 0 0;
}
.detail-home img {
  display: none;
}
.detail-home-2 {
  line-height: 1.5;
  margin: 25px 0 0 0;
}
.detail-home-2 img {
  width: auto;
  max-width: 100%;
}
.home-6-col {
  width: 16.66%;
  float: left;
  position: relative;
  padding-bottom: 60px;
}
.home-6-col-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-img img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-1 {
  width: 16.66%;
  float: left;
  position: relative;
}
.home-6-col-1-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-1-img img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-1:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-2 {
  width: 16.66%;
  float: left;
  position: relative;
  padding-bottom: 60px;
}
.home-6-col-2-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-2-img img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-2:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-3 {
  width: 16.66%;
  float: left;
  position: relative;
}
.home-6-col-3-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-3-img img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-3:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-h {
  background: #440e62;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-6-col-d {
  background: #ff5722;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 14px;
}
.home-6-col:hover .home-6-col-h {
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-6-col-2:hover .home-6-col-h {
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menuspecial {
  margin: 30px 0 0 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.menuspecial:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-6-col-icon img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.home-4-col {
  width: 270px;
  height: 180px;
  line-height: 0;
}
.home-4-col img {
  width: 270px;
  height: 180px;
  box-shadow: 0 0 10px #ccc;
  object-fit: cover;
  object-position: center;
}
.home-4-col-icon img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.home-3-col {
  width: 370px;
  height: 247px;
  line-height: 0;
}
.home-3-col img {
  width: 370px;
  height: 247px;
  box-shadow: 0 0 10px #ccc;
  object-fit: cover;
  object-position: center;
}
.home-2-col {
  width: 570px;
  height: 380px;
  line-height: 0;
}
.home-2-col img {
  width: 570px;
  height: 380px;
  box-shadow: 0 0 10px #ccc;
  object-fit: cover;
  object-position: center;
}
.home-4-col-semi {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51,51,51,0.5);
}
.home-4-col-semi-img {
  width: 270px;
  height: 180px;
  line-height: 0;
}
.home-4-col-semi-img img {
  width: 270px;
  height: 180px;
  object-fit: cover;
  object-position: center;
}
.home-4-col-semi-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  padding: 0 15px;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-4-col-semi-detail {
  color: #232323;
  height: 63px;
  overflow: hidden;
  padding: 0 15px;
  margin: 0 0 15px 0;
}
.home-4-col-semi:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-3-col-semi {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51,51,51,0.5);
}
.home-3-col-semi-img {
  width: 370px;
  height: 247px;
  line-height: 0;
}
.home-3-col-semi-img img {
  width: 370px;
  height: 247px;
  object-fit: cover;
  object-position: center;
}
.home-3-col-semi-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  padding: 0 15px;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-3-col-semi-detail {
  color: #232323;
  height: 63px;
  overflow: hidden;
  padding: 0 15px;
  margin: 0 0 15px 0;
}
.home-3-col-semi:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-2-col-semi {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 15px 0 190px;
  height: 170px;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51,51,51,0.5);
}
.home-2-col-semi-img {
  width: 170px;
  height: 170px;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.home-2-col-semi-img img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.home-2-col-semi-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-2-col-semi-detail {
  color: #232323;
  height: 110px;
  overflow: hidden;
}
.home-2-col-semi:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-title {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 10px 0;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-title img {
  display: none;
}
.home-title table {
  display: none;
}
.home-detail {
  color: #232323;
  height: 43px;
  overflow: hidden;
}
.home-detail img {
  display: none;
}
.home-detail table {
  display: none;
}
.home-title-2 {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 10px 0;
  color: #232323;
  text-align: left;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-title-2 img {
  display: none;
}
.home-title-2 table {
  display: none;
}
.home-detail-2 {
  color: #232323;
  height: 43px;
  overflow: hidden;
  text-align: left;
}
.home-detail-2 img {
  display: none;
}
.home-detail-2 table {
  display: none;
}
.aboutimg {
  position: relative;
  margin: 50px 0 0 0;
}
.about-img {
  line-height: 0;
  text-align: center;
}
.about-img img {
  width: 570px;
  height: 380px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .detail-home-2 table td {
    display: table-row;
  }
  .home-wel {
    font-size: 18px;
    line-height: 0px;
    margin: 50px 0 0 0;
  }
  .about-name {
    font-size: 30px;
  }
  .detail-home {
    line-height: 1.5;
    margin: 15px 0 0 0;
  }
  .about-img {
    margin: 30px 0 0 0;
  }
  .about-img img {
    width: 100%;
    height: auto;
  }
  .home-6-col {
    width: 50%;
  }
  .home-6-col-img img {
    height: 200px;
  }
  .home-6-col-h {
    font-size: 14px;
  }
  .home-6-col-1 {
    width: 50%;
  }
  .home-6-col-1-img img {
    height: 200px;
  }
  .home-6-col-2 {
    width: 50%;
  }
  .home-6-col-2-img img {
    height: 300px;
  }
  .home-6-col-3 {
    width: 50%;
  }
  .home-6-col-3-img img {
    height: 300px;
  }
  .home-4-col {
    width: 100%;
    height: auto;
  }
  .home-4-col img {
    width: 100%;
    height: auto;
  }
  .home-3-col {
    width: 100%;
    height: auto;
  }
  .home-3-col img {
    width: 100%;
    height: auto;
  }
  .home-2-col {
    width: 100%;
    height: auto;
  }
  .home-2-col img {
    width: 100%;
    height: auto;
  }
  .home-4-col-semi-img {
    width: 100%;
    height: auto;
  }
  .home-4-col-semi-img img {
    width: 100%;
    height: auto;
  }
  .home-3-col-semi-img {
    width: 100%;
    height: auto;
  }
  .home-3-col-semi-img img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-wel {
    margin: 30px 0 0 0;
  }
  .about-img {
    margin: 30px 0 0 0;
  }
  .about-img img {
    width: 100%;
    height: auto;
  }
  .home-6-col {
    width: 33.33%;
  }
  .home-6-col-img img {
    height: 250px;
  }
  .home-6-col-1 {
    width: 33.33%;
  }
  .home-6-col-1-img img {
    height: 250px;
  }
  .home-6-col-2 {
    width: 33.33%;
  }
  .home-6-col-2-img img {
    height: 375px;
  }
  .home-6-col-3 {
    width: 33.33%;
  }
  .home-6-col-3-img img {
    height: 375px;
  }
  .home-4-col {
    width: 345px;
    height: 230px;
  }
  .home-4-col img {
    width: 345px;
    height: 230px;
  }
  .home-4-col-icon {
    width: 220px;
    height: 147px;
  }
  .home-3-col {
    width: 345px;
    height: 230px;
  }
  .home-3-col img {
    width: 345px;
    height: 230px;
  }
  .home-2-col {
    width: 345px;
    height: 230px;
  }
  .home-2-col img {
    width: 345px;
    height: 230px;
  }
  .home-4-col-semi-img {
    width: 345px;
    height: 230px;
  }
  .home-4-col-semi-img img {
    width: 345px;
    height: 230px;
  }
  .home-3-col-semi-img {
    width: 345px;
    height: 230px;
  }
  .home-3-col-semi-img img {
    width: 345px;
    height: 230px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home-wel {
    margin: 30px 0 0 0;
  }
  .about-img {
    margin: 30px 0 0 0;
  }
  .about-img img {
    width: 455px;
    height: 303px;
  }
  .home-6-col {
    width: 33.33%;
  }
  .home-6-col-img img {
    height: 340px;
  }
  .home-6-col-1 {
    width: 33.33%;
  }
  .home-6-col-1-img img {
    height: 340px;
  }
  .home-6-col-2 {
    width: 33.33%;
  }
  .home-6-col-2-img img {
    height: 585px;
  }
  .home-6-col-3 {
    width: 33.33%;
  }
  .home-6-col-3-img img {
    height: 585px;
  }
  .home-4-col {
    width: 212px;
    height: 141px;
  }
  .home-4-col img {
    width: 212px;
    height: 141px;
  }
  .home-3-col {
    width: 295px;
    height: 197px;
  }
  .home-3-col img {
    width: 295px;
    height: 197px;
  }
  .home-2-col {
    width: 455px;
    height: 303px;
  }
  .home-2-col img {
    width: 455px;
    height: 303px;
  }
  .home-4-col-semi-img {
    width: 293px;
    height: 195px;
  }
  .home-4-col-semi-img img {
    width: 293px;
    height: 195px;
  }
  .home-3-col-semi-img {
    width: 293px;
    height: 195px;
  }
  .home-3-col-semi-img img {
    width: 293px;
    height: 195px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .home-6-col {
    width: 16.6%;
  }
  .home-6-col-img img {
    height: 230px;
  }
  .home-6-col-1 {
    width: 16.6%;
  }
  .home-6-col-1-img img {
    height: 230px;
  }
  .home-6-col-2 {
    width: 16.6%;
  }
  .home-6-col-2-img img {
    height: 330px;
  }
  .home-6-col-3 {
    width: 16.6%;
  }
  .home-6-col-3-img img {
    height: 330px;
  }
}
.red {
  color: #f00;
}
a {
  color: #ff5722;
}
a:hover {
  color: #440e62;
}
#movement {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#con-center {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
#middle {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
#rorate90 {
  -ms-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#rorate45 {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#circle {
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
#fade {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#texthidden {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#hidden {
  overflow: hidden;
}
#zoom {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#zoom-in {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#zoom-out {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
#opacity-0 {
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-1 {
  opacity: 0.1;
  filter: alpha(opacity=10);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-2 {
  opacity: 0.2;
  filter: alpha(opacity=20);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-3 {
  opacity: 0.3;
  filter: alpha(opacity=30);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-4 {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-5 {
  opacity: 0.5;
  filter: alpha(opacity=50);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-6 {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-7 {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-8 {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity-9 {
  opacity: 0.9;
  filter: alpha(opacity=90);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#opacity {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
#img-fit {
  object-fit: cover;
  object-position: center;
}
body {
  background: #fcd404;
  color: #232323;
  font-weight: 300;
  font-family: Mitr;
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  border: 0px;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  padding: 0 5px;
  font-family: Mitr;
}
p,
div {
  padding: 0px;
}
.back {
  text-align: center;
  margin: 50px 0 0 0;
  color: #440e62;
}
.back:hover {
  color: #ff5722;
}
.backtop {
  background: #440e62;
  width: 40px;
  height: 40px;
  padding-bottom: 5px;
  position: fixed;
  z-index: 4;
  bottom: 0;
  right: 0;
  margin: 0 15px 15px 0;
  color: #fcd404;
  border: 1px solid #fcd404;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.backtop:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#bullet {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.bulletset {
  margin: 20px 0 0 0;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.bulletset .bullet-over {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: #440e62;
}
.bulletset .bullet {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: solid 2px #440e62;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.bulletset .bullet:hover {
  width: 13px;
  height: 13px;
  margin: 0 5px;
  cursor: pointer;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  background: #ff5722;
  border: solid 2px #ff5722;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#number {
  width: 30px;
  height: 30px;
  margin: 50px 5px 0 0;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.numpage {
  background: #f5f5f5;
  color: #232323;
  border: solid 1px #ccc;
  width: 30px;
  height: 30px;
  margin: 50px 5px 0 0;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.numpage-over {
  background: #ff5722;
  color: #fcd404;
  width: 30px;
  height: 30px;
  margin: 50px 5px 0 0;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.numpage:hover {
  background: #ff5722;
  color: #fff;
  width: 30px;
  height: 30px;
  margin: 50px 5px 0 0;
  -moz-border: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.numpage-next {
  background: #ff5722;
  color: #fcd404;
  width: 60px;
  height: 30px;
  margin: 50px 5px 0 0;
  -moz-border: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  text-align: center;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.numpage-next:hover {
  margin-left: 5px;
}
header.under-head {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
header.under-head .under-logo img {
  max-height: 80px;
}
footer.under-footer {
  padding: 20px 0 0 0;
}
footer.under-footer .under-social {
  text-align: center;
  margin: 30px 0 0 0;
  padding: 30px 0 0 0;
}
footer.under-footer .under-social a {
  color: #fcd404;
  margin: 0 7px;
  font-size: 20px;
}
.under-detail {
  padding: 50px 0;
  font-size: 36px;
  text-align: center;
  font-weight: 500;
}
#layoutlist-title {
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
#layoutlist-detail {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-01 {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 145px;
  position: relative;
  padding: 0px 0 30px 170px;
}
.layoutlist-01-img {
  line-height: 0;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0px;
  overflow: hidden;
}
.layoutlist-01-img img {
  width: 170px;
  height: 113px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01-img img.circle {
  width: 170px;
  height: 170px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01-detail {
  padding: 0 0 0 20px;
}
.layoutlist-01-h {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.layoutlist-01-d {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-01:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.layoutlist-01:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01:hover img.circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01-circle {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 200px;
  position: relative;
  padding: 0px 0 30px 170px;
}
.layoutlist-02 {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 0 30px 0;
}
.layoutlist-02-img {
  line-height: 0;
  overflow: hidden;
}
.layoutlist-02-img img {
  width: 270px;
  height: 180px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-02-img img.circle {
  width: 270px;
  height: 270px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-02-detail {
  padding: 7px 0 0 0;
}
.layoutlist-02-h {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.layoutlist-02-d {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-02:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.layoutlist-02:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-02:hover img.circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03 {
  margin: 30px 0 0 0;
  padding: 0 0 30px 0;
}
.layoutlist-03-img {
  line-height: 0;
  overflow: hidden;
}
.layoutlist-03-img img {
  width: 370px;
  height: 247px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03-img img.circle {
  width: 270px;
  height: 270px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03-detail {
  padding: 7px 0 0 0;
}
.layoutlist-03-h {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.layoutlist-03-d {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-03:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.layoutlist-03:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03:hover img.circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-04 {
  margin: 30px 0 0 0;
  position: relative;
}
.layoutlist-04 i {
  position: absolute;
  top: 0px;
  left: 0px;
}
.layoutlist-titledetail {
  margin: 30px 0 0 0;
  font-size: 24px;
  font-weight: 500;
}
.gallerydetail-01 {
  margin: 30px 0 0 0;
  line-height: 0;
  text-align: center;
}
.gallerydetail-01 img {
  width: 100%;
  cursor: pointer;
}
.gallerydetail-02 {
  margin: 30px 0 0 0;
}
.gallerydetail-02 img {
  border: solid 1px #ff5722;
}
.gallerydetail-02-bgshort {
  background: #ff5722;
  height: 105px;
  overflow: hidden;
  width: 100%;
  padding: 5px 49px;
  position: relative;
}
.gallerydetail-02-short {
  padding: 5px;
  width: 96px;
  height: 96px;
  float: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gallerydetail-02-short img {
  height: 86px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}
#gallerydetail-arrow {
  position: absolute;
  top: 50%;
  font-size: 80px;
  line-height: 0;
  cursor: pointer;
  margin: -44px 0 0 0;
  color: #fcd404;
}
.gallerydetail-02-arrowleft {
  position: absolute;
  top: 50%;
  font-size: 80px;
  line-height: 0;
  cursor: pointer;
  margin: -44px 0 0 0;
  color: #fcd404;
  left: 12px;
}
.gallerydetail-02-arrowright {
  position: absolute;
  top: 50%;
  font-size: 80px;
  line-height: 0;
  cursor: pointer;
  margin: -44px 0 0 0;
  color: #fcd404;
  right: 12px;
}
.gallerydetail-03 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-03 img {
  width: 170px;
  height: 113px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-03 video {
  width: 170px;
  height: 113px;
}
.gallerydetail-03 iframe {
  width: 170px;
  height: 113px;
}
.gallerydetail-04 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-04 img {
  width: 236px;
  height: 157px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-04 video {
  width: 236px;
  height: 157px;
}
.gallerydetail-04 iframe {
  width: 236px;
  height: 157px;
}
.gallerydetail-05 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-05 img {
  width: 370px;
  height: 247px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-05 video {
  width: 370px;
  height: 247px;
}
.gallerydetail-05 iframe {
  width: 370px;
  height: 247px;
}
.gallerydetail-06 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-06 img {
  width: 170px;
  height: 113px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-06 video {
  width: 170px;
  height: 113px;
}
.gallerydetail-06 iframe {
  width: 170px;
  height: 113px;
}
.gallerydetail-07 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-07 img {
  width: 270px;
  height: 180px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-07 video {
  width: 270px;
  height: 180px;
}
.gallerydetail-07 iframe {
  width: 270px;
  height: 180px;
}
.gallerydetail-08 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-08 img {
  width: 370px;
  height: 247px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-08 video {
  width: 370px;
  height: 247px;
}
.gallerydetail-08 iframe {
  width: 370px;
  height: 247px;
}
.gallerydetail-09 {
  margin: 30px 0 0 0;
  position: relative;
}
.gallerydetail-09 img {
  width: 570px;
  height: 380px;
  object-fit: cover;
  object-position: center;
}
.gallerydetail-09 video {
  width: 570px;
  height: 380px;
}
.gallerydetail-09 iframe {
  width: 570px;
  height: 380px;
}
.vdo-play {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.vdo-play i {
  font-size: 60px;
}
.vdo-detail {
  width: 100%;
  margin: 30px 0 0 0;
}
.vdo-detail video {
  width: 770px;
  height: 433px;
}
.vdo-detail iframe {
  width: 770px;
  height: 433px;
}
.category-title {
  margin: 30px 0 0 0;
  font-size: 20px;
  padding: 12px 15px;
  background: #440e62;
  color: #fcd404;
}
.category {
  padding: 12px 15px;
  border-bottom: solid 1px #eee;
  color: #232323;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category:hover {
  color: #ff5722;
  background: rgba(255,255,255,0.3);
}
.category-over {
  padding: 12px 15px;
  color: #ff5722;
  background: rgba(255,255,255,0.3);
  border-bottom: solid 1px #ff5722;
  border-top: solid 1px #ff5722;
}
.category-over .categorysub-1 .category-name {
  color: #440e62;
  font-weight: 500;
}
.categorysub-1 {
  cursor: pointer;
}
.category-name {
  color: #232323;
  position: relative;
  padding: 0px 12px 0px 25px;
}
.category-name i {
  position: absolute;
  top: 1px;
  left: 0px;
  color: #440e62;
}
.category-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 16px;
  display: none;
}
.categorysub-detail {
  margin: 10px 0 0 0;
}
.categorysub-2 {
  padding: 5px 0;
  margin: 0 0 0 25px;
  border-bottom: dotted 1px #eee;
  color: #232323;
}
.categorysub-name {
  padding: 5px 0px 5px 23px;
  position: relative;
}
.categorysub-name i {
  position: absolute;
  top: 8px;
  left: 0;
  font-size: 13px;
}
.categorysub-name-active {
  padding: 5px 0px 5px 23px;
  position: relative;
  color: #440e62;
}
.categorysub-name-active i {
  position: absolute;
  top: 8px;
  left: 0;
  font-size: 13px;
  color: #440e62;
}
.categorysub-2:hover {
  color: #999;
}
.download-01 {
  padding: 30px 0 30px 50px;
  border-bottom: dotted 1px #440e62;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.download-01-icon {
  font-size: 30px;
  line-height: 0;
  color: #440e62;
  position: absolute;
  left: 0;
}
.download-01-title {
  height: 42px;
  overflow: hidden;
  color: #232323;
}
.download-01:hover .download-01-icon {
  color: #440e62;
}
.download-01:hover .download-01-title {
  color: #440e62;
}
.download-02 {
  margin: 30px 10px 0 10px;
}
.download-02-icon {
  font-size: 50px;
  text-align: center;
  color: #440e62;
  border-bottom: solid 1px #000;
}
.download-02-title {
  height: 42px;
  text-align: center;
  margin: 12px 0 0 0;
  color: #232323;
}
.download-03 {
  margin: 30px 10px 0 10px;
}
.download-03-icon {
  font-size: 50px;
  text-align: center;
  color: #440e62;
  border-bottom: solid 1px #000;
}
.download-03-title {
  height: 42px;
  text-align: center;
  margin: 12px 0 0 0;
  color: #232323;
}
.download-04 {
  margin: 30px 0 0 0;
  overflow: hidden;
}
.download-04 img {
  width: 270px;
  height: 270px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  object-fit: cover;
  object-position: center;
}
.download-04:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.download-05 {
  margin: 30px 0 0 0;
  overflow: hidden;
}
.download-05 img {
  width: 370px;
  height: 370px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  object-fit: cover;
  object-position: center;
}
.download-05:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.productlist {
  margin: 30px 0 0 0;
}
.productlist-h {
  margin: 10px 0 0 0;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.productlist-01 img {
  width: 195px;
  height: 195px;
  object-fit: cover;
  object-position: center;
}
.productlist-02 img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  object-position: center;
}
.productlist-03 img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.productlist-04 img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.productlist-05 img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  object-position: center;
}
.productlist-06 img {
  width: 370px;
  height: 370px;
  object-fit: cover;
  object-position: center;
}
.productlist-07 img {
  width: 570px;
  height: 570px;
  object-fit: cover;
  object-position: center;
}
.productdetail {
  margin: 30px 0 0 0;
}
.productdetail-h {
  margin: 30px 0 0 0;
  font-size: 24px;
  font-weight: 500;
  color: #ff5722;
}
.productdetail-d {
  margin: 12px 0 0 0;
  line-height: 28px;
}
.productdetail-01 img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.productdetail-02 img {
  width: 570px;
  height: 570px;
  object-fit: cover;
  object-position: center;
}
.productdetail-03 img {
  width: 370px;
  height: 370px;
  object-fit: cover;
  object-position: center;
  border: solid 1px #ff5722;
}
.productdetail-01-bgshort {
  background: #ff5722;
  height: 80px;
  overflow: hidden;
  width: 100%;
  padding: 5px 30px;
  position: relative;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.productdetail-01-short {
  padding: 5px;
  width: 70px;
  height: 70px;
  float: left;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.productdetail-01-short img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}
#productdetail-arrow {
  position: absolute;
  top: 50%;
  font-size: 60px;
  line-height: 0;
  cursor: pointer;
  margin: -30px 0 0 0;
  color: #fcd404;
}
.productdetail-01-arrowleft {
  position: absolute;
  top: 50%;
  font-size: 60px;
  line-height: 0;
  cursor: pointer;
  margin: -30px 0 0 0;
  color: #fcd404;
  left: 10px;
}
.productdetail-01-arrowright {
  position: absolute;
  top: 50%;
  font-size: 60px;
  line-height: 0;
  cursor: pointer;
  margin: -30px 0 0 0;
  color: #fcd404;
  right: 10px;
}
.productdescription-h {
  margin: 30px 0 0 0;
  font-size: 20px;
  font-weight: 500;
  color: #440e62;
}
.productdescription-d {
  margin: 12px 0 0 0;
  line-height: 28px;
}
.productdetail-price-normal {
  margin: 30px 0 0 0;
  text-decoration: line-through;
  color: #999;
}
.productdetail-price-sale {
  font-weight: 600;
  color: #440e62;
  font-size: 20px;
}
.contactaddress {
  margin: 35px 0 0 0;
}
.contactfrom {
  margin: 48px 0 0 0;
}
.contactimg {
  margin: 48px 0 0 0;
  height: 835px;
  display: flex;
  align-items: flex-end;
}
.contactimg img {
  max-height: 835px;
  object-fit: cover;
  object-position: center;
  display: flex;
  align-items: flex-end;
}
.title-contact {
  font-size: 32px;
  color: #440e62;
  font-weight: 500;
}
.contact_address {
  font-size: 16px;
  margin: 5px 0 0 0;
}
.contact_h {
  width: 25%;
  float: left;
  margin: 10px 0 0 0;
  padding: 0 0 0 30px;
}
.contact_colon {
  width: 5%;
  float: left;
  margin: 10px 0 0 0;
}
.contact_d {
  width: 70%;
  float: left;
  margin: 10px 0 0 0;
}
.contact_information {
  margin: 10px 0 0 0;
  font-size: 20px;
  font-weight: 500;
}
.contactform_h {
  width: 25%;
  float: left;
  margin-top: 10px;
  padding-top: 20px;
}
.contactform_input {
  width: 75%;
  float: left;
  margin-top: 10px;
}
.contactform_input input {
  width: 100%;
  border: solid 1px #ccc;
  padding: 10px;
  margin-top: 10px;
}
.contactform_input select {
  width: 100%;
  border: solid 1px #ccc;
  padding: 6px 10px;
  margin-top: 10px;
}
.contactform_input textarea {
  width: 100%;
  border: solid 1px #ccc;
  padding: 10px;
  margin-top: 10px;
}
.contactform_input .contact-btn {
  text-align: center;
  border: solid 1px #fff;
  padding: 10px 0;
  width: 150px;
  margin: 10px 0 0 0;
  cursor: pointer;
  background: #440e62;
  color: #fff;
}
#contact-tabmap {
  border: solid 1px ;
  border-bottom: none;
  text-align: center;
  float: left;
  margin-left: 5px;
  width: 120px;
  -moz-border: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
  padding-top: 3px;
  cursor: pointer;
}
.contact-tabmap-over {
  background: #440e62;
  color: #fff;
  border: solid 1px ;
  border-bottom: none;
  text-align: center;
  float: left;
  margin-left: 5px;
  width: 120px;
  -moz-border: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
  padding-top: 3px;
  cursor: pointer;
}
.contact-tabmap {
  background: #fff;
  color: #440e62;
  border: solid 1px ;
  border-bottom: none;
  text-align: center;
  float: left;
  margin-left: 5px;
  width: 120px;
  -moz-border: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
  padding-top: 3px;
  cursor: pointer;
}
.contact-tabmap:hover {
  background: #ff5722;
  color: #fff;
  border: solid 1px ;
  border-bottom: none;
  text-align: center;
  float: left;
  margin-left: 5px;
  width: 120px;
  -moz-border: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
  padding-top: 3px;
  cursor: pointer;
}
.contact-tabmap:focus {
  background: #440e62;
  color: #fff;
  border: solid 1px ;
  border-bottom: none;
  text-align: center;
  float: left;
  margin-left: 5px;
  width: 120px;
  -moz-border: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
  padding-top: 3px;
  cursor: pointer;
}
.contact-map {
  width: 100%;
  height: 200px;
  border: solid 1px #440e62;
  overflow: hidden;
}
.contact-map img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.contact-map iframe {
  width: 100%;
  height: 200px;
}
.login-fb {
  height: 80px;
  background: #3b5998;
  border: solid 1px #fff;
  text-align: center;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin: 20px 0 0 0;
}
.connect-title {
  font-size: 30px;
  margin: 30px 0 0 0;
}
.connect-line {
  border-top: solid 1px #ccc;
  box-shadow: 0 1px 0 #eee;
  margin: 50px 0 30px 0;
}
.member-forget-login {
  text-align: right;
  margin: 10px 0 0 0;
  font-size: 14px;
}
.member-forget-login a:hover {
  color: #fcd404;
}
.contentdetail {
  margin: 30px 0 0px 0;
  line-height: 1.5;
}
.contentimg {
  line-height: 1.5;
  margin: 30px 0px 0px 0;
  text-align: center;
}
.contentimg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg01 {
  line-height: 1.5;
  margin: 30px 0px 30px 0;
  text-align: center;
}
.contentimg01 img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg02-left {
  line-height: 1.5;
  margin: 0 30px 0px 0;
  width: 30%;
  float: left;
  text-align: center;
}
.contentimg02-left img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg02-right {
  line-height: 1.5;
  margin: 0 0px 0px 30px;
  width: 30%;
  float: right;
  text-align: center;
}
.contentimg02-right img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg03-left {
  line-height: 1.5;
  margin: 0 40px 10px 0;
  width: 40%;
  float: left;
  text-align: center;
}
.contentimg03-left img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg03-right {
  line-height: 1.5;
  margin: 0 0px 10px 40px;
  width: 40%;
  float: right;
  text-align: center;
}
.contentimg03-right img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg-circle {
  line-height: 1.5;
  margin: 30px 0px 30px 0;
  text-align: center;
}
.contentimg-circle img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg01-circle {
  line-height: 1.5;
  margin: 30px 0px 30px 0;
  text-align: center;
}
.contentimg01-circle img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg02-left-circle {
  line-height: 1.5;
  margin: 0 30px 0px 0;
  width: 30%;
  float: left;
  text-align: center;
}
.contentimg02-left-circle img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg02-right-circle {
  line-height: 1.5;
  margin: 0 0px 0px 30px;
  width: 30%;
  float: right;
  text-align: center;
}
.contentimg02-right-circle img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg03-left-circle {
  line-height: 1.5;
  margin: 0 40px 10px 0;
  width: 40%;
  float: left;
  text-align: center;
}
.contentimg03-left-circle img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.contentimg03-right-circle {
  line-height: 1.5;
  margin: 0 0px 10px 40px;
  width: 40%;
  float: right;
  text-align: center;
}
.contentimg03-right-circle img {
  width: auto;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .title-contact {
    font-size: 24px;
  }
  .contact_h {
    width: 35%;
    padding: 0 0 0 10px;
    font-size: 14px;
  }
  .contact_colon {
    width: 5%;
    font-size: 14px;
  }
  .contact_d {
    width: 60%;
    font-size: 14px;
  }
  .contactform_h {
    width: 100%;
  }
  .contactform_input {
    width: 100%;
    margin-top: 0px;
  }
  .contact-map {
    height: auto;
  }
  .contact-map img {
    width: 100%;
    height: auto;
  }
  .contact-map iframe {
    width: 100%;
    height: auto;
  }
  .contentdetail td {
    display: table-row;
    width: 100% !important;
  }
  .gallerydetail-03 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-04 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-05 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-06 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-07 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-08 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-09 img {
    width: 100%;
    height: auto;
  }
  .gallerydetail-03 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-04 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-05 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-06 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-07 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-08 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-09 video {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-03 iframe {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-04 iframe {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-05 iframe {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-06 iframe {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-07 iframe {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-08 iframe {
    width: 100%;
    height: 200px;
  }
  .gallerydetail-09 iframe {
    width: 100%;
    height: 200px;
  }
  .vdo-detail video {
    width: 100%;
    height: auto;
  }
  .vdo-detail iframe {
    width: 100%;
    height: auto;
  }
  .productlist-01 img {
    width: 100%;
    height: auto;
  }
  .productlist-02 img {
    width: 100%;
    height: auto;
  }
  .productlist-03 img {
    width: 100%;
    height: auto;
  }
  .productlist-04 img {
    width: 100%;
    height: auto;
  }
  .productlist-05 img {
    width: 100%;
    height: auto;
  }
  .productlist-06 img {
    width: 100%;
    height: auto;
  }
  .productlist-07 img {
    width: 100%;
    height: auto;
  }
  .productdetail-d {
    margin: 30px 0 0 0;
  }
  .productdetail-01 img {
    width: 100%;
    height: auto;
  }
  .productdetail-02 img {
    width: 100%;
    height: auto;
  }
  .download-04 img {
    width: 100%;
    height: auto;
  }
  .download-05 img {
    width: 100%;
    height: auto;
  }
  .productdetail-03 img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .gallerydetail-03 img {
    width: 157px;
    height: 105px;
  }
  .gallerydetail-04 img {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-05 img {
    width: 345px;
    height: 230px;
  }
  .gallerydetail-06 img {
    width: 157px;
    height: 105px;
  }
  .gallerydetail-07 img {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-08 img {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-09 img {
    width: 345px;
    height: 230px;
  }
  .gallerydetail-03 video {
    width: 157px;
    height: 105px;
  }
  .gallerydetail-04 video {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-05 video {
    width: 345px;
    height: 230px;
  }
  .gallerydetail-06 video {
    width: 157px;
    height: 105px;
  }
  .gallerydetail-07 video {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-08 video {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-09 video {
    width: 345px;
    height: 230px;
  }
  .gallerydetail-03 iframe {
    width: 157px;
    height: 105px;
  }
  .gallerydetail-04 iframe {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-05 iframe {
    width: 345px;
    height: 230px;
  }
  .gallerydetail-06 iframe {
    width: 157px;
    height: 105px;
  }
  .gallerydetail-07 iframe {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-08 iframe {
    width: 220px;
    height: 147px;
  }
  .gallerydetail-09 iframe {
    width: 345px;
    height: 230px;
  }
  .vdo-detail video {
    width: 720px;
    height: 405px;
  }
  .vdo-detail iframe {
    width: 720px;
    height: 405px;
  }
  .productlist-01 img {
    width: 157px;
    height: 105px;
  }
  .productlist-02 img {
    width: 220px;
    height: 147px;
  }
  .productlist-03 img {
    width: 345px;
    height: 230px;
  }
  .productlist-04 img {
    width: 157px;
    height: 105px;
  }
  .productlist-05 img {
    width: 220px;
    height: 147px;
  }
  .productlist-06 img {
    width: 220px;
    height: 147px;
  }
  .productlist-07 img {
    width: 345px;
    height: 230px;
  }
  .productdetail-01 img {
    width: 345px;
    height: 345px;
  }
  .productdetail-02 img {
    width: 345px;
    height: 345px;
  }
  .download-04 img {
    width: 345px;
    height: 345px;
  }
  .download-05 img {
    width: 345px;
    height: 345px;
  }
  .productdetail-03 img {
    width: 345px;
    height: 345px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .gallerydetail-02-bgshort {
    height: 96px;
  }
  .gallerydetail-02-short {
    width: 86px;
    height: 86px;
  }
  .gallerydetail-02-short img {
    height: 71px;
  }
  .gallerydetail-03 img {
    width: 131px;
    height: 87px;
  }
  .gallerydetail-04 img {
    width: 185px;
    height: 123px;
  }
  .gallerydetail-05 img {
    width: 293px;
    height: 195px;
  }
  .gallerydetail-06 img {
    width: 131px;
    height: 87px;
  }
  .gallerydetail-07 img {
    width: 212px;
    height: 141px;
  }
  .gallerydetail-08 img {
    width: 293px;
    height: 195px;
  }
  .gallerydetail-09 img {
    width: 455px;
    height: 303px;
  }
  .gallerydetail-03 video {
    width: 131px;
    height: 87px;
  }
  .gallerydetail-04 video {
    width: 185px;
    height: 123px;
  }
  .gallerydetail-05 video {
    width: 293px;
    height: 195px;
  }
  .gallerydetail-06 video {
    width: 131px;
    height: 87px;
  }
  .gallerydetail-07 video {
    width: 212px;
    height: 141px;
  }
  .gallerydetail-08 video {
    width: 293px;
    height: 195px;
  }
  .gallerydetail-09 video {
    width: 455px;
    height: 303px;
  }
  .gallerydetail-03 iframe {
    width: 131px;
    height: 87px;
  }
  .gallerydetail-04 iframe {
    width: 185px;
    height: 123px;
  }
  .gallerydetail-05 iframe {
    width: 293px;
    height: 195px;
  }
  .gallerydetail-06 iframe {
    width: 131px;
    height: 87px;
  }
  .gallerydetail-07 iframe {
    width: 212px;
    height: 141px;
  }
  .gallerydetail-08 iframe {
    width: 293px;
    height: 195px;
  }
  .gallerydetail-09 iframe {
    width: 455px;
    height: 303px;
  }
  .vdo-detail video {
    width: 617px;
    height: 347px;
  }
  .vdo-detail iframe {
    width: 617px;
    height: 347px;
  }
  .productlist-01 img {
    width: 131px;
    height: 87px;
  }
  .productlist-02 img {
    width: 185px;
    height: 123px;
  }
  .productlist-03 img {
    width: 293px;
    height: 195px;
  }
  .productlist-04 img {
    width: 131px;
    height: 87px;
  }
  .productlist-05 img {
    width: 212px;
    height: 141px;
  }
  .productlist-06 img {
    width: 293px;
    height: 195px;
  }
  .productlist-07 img {
    width: 455px;
    height: 303px;
  }
  .productdetail-01 img {
    width: 375px;
    height: 375px;
  }
  .productdetail-02 img {
    width: 375px;
    height: 375px;
  }
  .productdetail-03 img {
    width: 375px;
    height: 375px;
  }
  .download-04 img {
    width: 293px;
    height: 293px;
  }
  .download-05 img {
    width: 293px;
    height: 293px;
  }
}
.home-wel {
  font-size: 22px;
  line-height: 1.5;
  margin: 50px 0 0 0;
}
.home-wel img {
  display: none;
}
.about-name {
  font-size: 36px;
  font-weight: 600;
  color: #ff5722;
  line-height: 1.5;
}
.about-name img {
  display: none;
}
.detail-home {
  line-height: 1.5;
  margin: 25px 0 0 0;
}
.detail-home img {
  display: none;
}
.detail-home-2 {
  line-height: 1.5;
  margin: 25px 0 0 0;
}
.detail-home-2 img {
  width: auto;
  max-width: 100%;
}
.home-6-col {
  width: 16.66%;
  float: left;
  position: relative;
  padding-bottom: 60px;
}
.home-6-col-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-img img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-1 {
  width: 16.66%;
  float: left;
  position: relative;
}
.home-6-col-1-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-1-img img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-1:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-2 {
  width: 16.66%;
  float: left;
  position: relative;
  padding-bottom: 60px;
}
.home-6-col-2-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-2-img img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-2:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-3 {
  width: 16.66%;
  float: left;
  position: relative;
}
.home-6-col-3-img {
  line-height: 0;
  border: solid 1px #eee;
  overflow: hidden;
}
.home-6-col-3-img img {
  width: 100%;
  height: 475px;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-3:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.home-6-col-h {
  background: #440e62;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  height: 60px;
  position: absolute;
  bottom: 0;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-6-col-d {
  background: #ff5722;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 14px;
}
.home-6-col:hover .home-6-col-h {
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home-6-col-2:hover .home-6-col-h {
  margin-bottom: 40px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.menuspecial {
  margin: 30px 0 0 0;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.menuspecial:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-6-col-icon img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.home-4-col {
  width: 270px;
  height: 180px;
  line-height: 0;
}
.home-4-col img {
  width: 270px;
  height: 180px;
  box-shadow: 0 0 10px #ccc;
  object-fit: cover;
  object-position: center;
}
.home-4-col-icon img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.home-3-col {
  width: 370px;
  height: 247px;
  line-height: 0;
}
.home-3-col img {
  width: 370px;
  height: 247px;
  box-shadow: 0 0 10px #ccc;
  object-fit: cover;
  object-position: center;
}
.home-2-col {
  width: 570px;
  height: 380px;
  line-height: 0;
}
.home-2-col img {
  width: 570px;
  height: 380px;
  box-shadow: 0 0 10px #ccc;
  object-fit: cover;
  object-position: center;
}
.home-4-col-semi {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51,51,51,0.5);
}
.home-4-col-semi-img {
  width: 270px;
  height: 180px;
  line-height: 0;
}
.home-4-col-semi-img img {
  width: 270px;
  height: 180px;
  object-fit: cover;
  object-position: center;
}
.home-4-col-semi-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  padding: 0 15px;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-4-col-semi-detail {
  color: #232323;
  height: 63px;
  overflow: hidden;
  padding: 0 15px;
  margin: 0 0 15px 0;
}
.home-4-col-semi:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-3-col-semi {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51,51,51,0.5);
}
.home-3-col-semi-img {
  width: 370px;
  height: 247px;
  line-height: 0;
}
.home-3-col-semi-img img {
  width: 370px;
  height: 247px;
  object-fit: cover;
  object-position: center;
}
.home-3-col-semi-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  padding: 0 15px;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-3-col-semi-detail {
  color: #232323;
  height: 63px;
  overflow: hidden;
  padding: 0 15px;
  margin: 0 0 15px 0;
}
.home-3-col-semi:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-2-col-semi {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 15px 0 190px;
  height: 170px;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px rgba(51,51,51,0.5);
}
.home-2-col-semi-img {
  width: 170px;
  height: 170px;
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.home-2-col-semi-img img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  object-position: center;
}
.home-2-col-semi-title {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 5px 0;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-2-col-semi-detail {
  color: #232323;
  height: 110px;
  overflow: hidden;
}
.home-2-col-semi:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.home-title {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 10px 0;
  color: #232323;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-title img {
  display: none;
}
.home-title table {
  display: none;
}
.home-detail {
  color: #232323;
  height: 43px;
  overflow: hidden;
}
.home-detail img {
  display: none;
}
.home-detail table {
  display: none;
}
.home-title-2 {
  font-size: 20px;
  font-weight: 600;
  margin: 15px 0 10px 0;
  color: #232323;
  text-align: left;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-title-2 img {
  display: none;
}
.home-title-2 table {
  display: none;
}
.home-detail-2 {
  color: #232323;
  height: 43px;
  overflow: hidden;
  text-align: left;
}
.home-detail-2 img {
  display: none;
}
.home-detail-2 table {
  display: none;
}
.aboutimg {
  position: relative;
  margin: 50px 0 0 0;
}
.about-img {
  line-height: 0;
  text-align: center;
}
.about-img img {
  width: 570px;
  height: 380px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .detail-home-2 table td {
    display: table-row;
  }
  .home-wel {
    font-size: 18px;
    line-height: 0px;
    margin: 50px 0 0 0;
  }
  .about-name {
    font-size: 30px;
  }
  .detail-home {
    line-height: 1.5;
    margin: 15px 0 0 0;
  }
  .about-img {
    margin: 30px 0 0 0;
  }
  .about-img img {
    width: 100%;
    height: auto;
  }
  .home-6-col {
    width: 50%;
  }
  .home-6-col-img img {
    height: 200px;
  }
  .home-6-col-h {
    font-size: 14px;
  }
  .home-6-col-1 {
    width: 50%;
  }
  .home-6-col-1-img img {
    height: 200px;
  }
  .home-6-col-2 {
    width: 50%;
  }
  .home-6-col-2-img img {
    height: 300px;
  }
  .home-6-col-3 {
    width: 50%;
  }
  .home-6-col-3-img img {
    height: 300px;
  }
  .home-4-col {
    width: 100%;
    height: auto;
  }
  .home-4-col img {
    width: 100%;
    height: auto;
  }
  .home-3-col {
    width: 100%;
    height: auto;
  }
  .home-3-col img {
    width: 100%;
    height: auto;
  }
  .home-2-col {
    width: 100%;
    height: auto;
  }
  .home-2-col img {
    width: 100%;
    height: auto;
  }
  .home-4-col-semi-img {
    width: 100%;
    height: auto;
  }
  .home-4-col-semi-img img {
    width: 100%;
    height: auto;
  }
  .home-3-col-semi-img {
    width: 100%;
    height: auto;
  }
  .home-3-col-semi-img img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .home-wel {
    margin: 30px 0 0 0;
  }
  .about-img {
    margin: 30px 0 0 0;
  }
  .about-img img {
    width: 100%;
    height: auto;
  }
  .home-6-col {
    width: 33.33%;
  }
  .home-6-col-img img {
    height: 250px;
  }
  .home-6-col-1 {
    width: 33.33%;
  }
  .home-6-col-1-img img {
    height: 250px;
  }
  .home-6-col-2 {
    width: 33.33%;
  }
  .home-6-col-2-img img {
    height: 375px;
  }
  .home-6-col-3 {
    width: 33.33%;
  }
  .home-6-col-3-img img {
    height: 375px;
  }
  .home-4-col {
    width: 345px;
    height: 230px;
  }
  .home-4-col img {
    width: 345px;
    height: 230px;
  }
  .home-4-col-icon {
    width: 220px;
    height: 147px;
  }
  .home-3-col {
    width: 345px;
    height: 230px;
  }
  .home-3-col img {
    width: 345px;
    height: 230px;
  }
  .home-2-col {
    width: 345px;
    height: 230px;
  }
  .home-2-col img {
    width: 345px;
    height: 230px;
  }
  .home-4-col-semi-img {
    width: 345px;
    height: 230px;
  }
  .home-4-col-semi-img img {
    width: 345px;
    height: 230px;
  }
  .home-3-col-semi-img {
    width: 345px;
    height: 230px;
  }
  .home-3-col-semi-img img {
    width: 345px;
    height: 230px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home-wel {
    margin: 30px 0 0 0;
  }
  .about-img {
    margin: 30px 0 0 0;
  }
  .about-img img {
    width: 455px;
    height: 303px;
  }
  .home-6-col {
    width: 33.33%;
  }
  .home-6-col-img img {
    height: 340px;
  }
  .home-6-col-1 {
    width: 33.33%;
  }
  .home-6-col-1-img img {
    height: 340px;
  }
  .home-6-col-2 {
    width: 33.33%;
  }
  .home-6-col-2-img img {
    height: 585px;
  }
  .home-6-col-3 {
    width: 33.33%;
  }
  .home-6-col-3-img img {
    height: 585px;
  }
  .home-4-col {
    width: 212px;
    height: 141px;
  }
  .home-4-col img {
    width: 212px;
    height: 141px;
  }
  .home-3-col {
    width: 295px;
    height: 197px;
  }
  .home-3-col img {
    width: 295px;
    height: 197px;
  }
  .home-2-col {
    width: 455px;
    height: 303px;
  }
  .home-2-col img {
    width: 455px;
    height: 303px;
  }
  .home-4-col-semi-img {
    width: 293px;
    height: 195px;
  }
  .home-4-col-semi-img img {
    width: 293px;
    height: 195px;
  }
  .home-3-col-semi-img {
    width: 293px;
    height: 195px;
  }
  .home-3-col-semi-img img {
    width: 293px;
    height: 195px;
  }
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .home-6-col {
    width: 16.6%;
  }
  .home-6-col-img img {
    height: 230px;
  }
  .home-6-col-1 {
    width: 16.6%;
  }
  .home-6-col-1-img img {
    height: 230px;
  }
  .home-6-col-2 {
    width: 16.6%;
  }
  .home-6-col-2-img img {
    height: 330px;
  }
  .home-6-col-3 {
    width: 16.6%;
  }
  .home-6-col-3-img img {
    height: 330px;
  }
}
#banner {
  width: 100%;
}
#banner img {
  width: 100%;
  height: auto;
}
#banner div#layerslider {
  width: 1920px;
  height: 940px;
}
header {
  margin: 0 auto;
  position: fixed;
  z-index: 9999999999999999;
  height: 250px;
  width: 100%;
}
section {
  margin: 0 auto;
  padding: 0 0 50px 0;
}
aside {
  margin: 0 auto;
}
footer {
  margin: 0 auto;
  background: #440e62;
  color: #fff;
}
.menutop {
  background: #440e62;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}
.iconsocial {
  font-size: 20px;
}
.iconsocial i {
  color: #fcd404;
  margin: 0 10px;
  cursor: pointer;
}
.footer-iconsocial {
  color: #fcd404;
  font-size: 20px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 30px 0 0 0;
  padding: 20px 0 0 0;
  border-top: solid 1px #fcd404;
}
.footer-iconsocial i {
  margin: 0 10px;
  cursor: pointer;
  color: #fcd404;
}
.hotline {
  float: right;
  color: #232323;
  font-size: 30px;
  font-weight: 500;
}
.hotline i {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.logo {
  float: left;
  margin: 20px 0;
  font-size: 40px;
  font-weight: 600;
}
.logo img {
  width: auto;
  height: auto;
  max-height: 90px;
}
nav.navmenu {
  min-height: 40px;
}
ul.menufix {
  list-style: none;
  text-decoration: none;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
}
ul.menufix li {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
ul.menufix li a {
  color: #ffffff;
  float: right;
}
ul.menufix li a:hover {
  color: #fcd404;
  text-decoration: none;
}
ul.menufix li a:focus {
  color: #ff5722;
  text-decoration: none;
}
ul.menufix li.active a {
  color: #fcd404;
}
ul.sitemapfix {
  padding: 0;
  list-style: none;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
ul.sitemapfix li {
  float: left;
  padding: 0 20px;
  margin: 30px 0 0 0;
}
ul.sitemapfix li a {
  color: #fff;
  text-decoration: none;
}
ul.sitemapfix li a:hover {
  color: #fcd404;
}
ul.sitemapfix li a:active {
  color: #fcd404;
}
ul.sitemapfix li a:focus {
  color: #fcd404;
}
ul.sitemapfix li.active a {
  color: #fcd404;
}
.footer-tab {
  background: #ff5722;
  padding: 20px 0;
  position: relative;
}
.foot-icon {
  width: 50px;
  height: 50px;
  color: #fcd404;
  background: #440e62;
  font-size: 20px;
  -moz-border: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  position: absolute;
  left: 15px;
}
.foot-set-tab {
  border-left: solid 1px #440e62;
}
.foot-set-tab:first-child {
  border-left: none;
}
.foot-tab-detail {
  padding-left: 65px;
}
.foot-tab-h {
  color: #fff;
  text-transform: uppercase;
}
.foot-tab-d {
  color: #fcd404;
  font-weight: 500;
  font-size: 1vw;
}
.foot-tab-d a {
  color: #fcd404;
}
.footer-center {
  text-align: center;
}
.footer-company {
  font-size: 22px;
  margin: 30px 0 0 0;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-contact {
  font-size: 16px;
  margin: 10px 0 0 0;
}
.copy {
  text-align: center;
  font-size: 14px;
  background: #000;
}
.copy a {
  color: #fff;
}
.title-home {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  padding: 0 0 15px 0;
  color: #232323;
  margin: 50px 0 0 0;
}
.title-home:after,
.title-home:before {
  bottom: 0;
  left: 50%;
  margin: 0 0 0 -60px;
  content: " ";
  position: absolute;
  pointer-events: none;
  width: 120px;
  height: 3px;
  background: #232323;
}
.title-inner {
  position: relative;
  font-size: 40px;
  text-align: center;
  font-weight: 600;
  padding: 0 0 15px 0;
  color: #232323;
  margin: 50px 0 0 0;
}
.title-inner:after,
.title-inner:before {
  bottom: 0;
  left: 50%;
  margin: 0 0 0 -60px;
  content: " ";
  position: absolute;
  pointer-events: none;
  width: 120px;
  height: 3px;
  background: #232323;
}
#layoutlist-title {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
#layoutlist-detail {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-01 {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 145px;
  position: relative;
  padding: 0px 0 30px 170px;
  border-bottom: dotted 1px #ddd;
}
.layoutlist-01-img {
  line-height: 0;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0px;
  overflow: hidden;
}
.layoutlist-01-img img {
  width: 170px;
  height: 113px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01-img img.circle {
  width: 170px;
  height: 170px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01-detail {
  padding: 0 0 0 20px;
}
.layoutlist-01-h {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.layoutlist-01-d {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-01:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.layoutlist-01:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01:hover img.circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-01-circle {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 200px;
  position: relative;
  padding: 0px 0 30px 170px;
  border-bottom: dotted 1px #ddd;
}
.layoutlist-02 {
  margin: 30px 0 0 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  padding: 0 0 30px 0;
  border-bottom: dotted 1px #ddd;
}
.layoutlist-02-img {
  line-height: 0;
  overflow: hidden;
}
.layoutlist-02-img img {
  width: 270px;
  height: 180px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-02-img img.circle {
  width: 270px;
  height: 270px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-02-detail {
  padding: 7px 0 0 0;
}
.layoutlist-02-h {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.layoutlist-02-d {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-02:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.layoutlist-02:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-02:hover img.circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03 {
  margin: 30px 0 0 0;
  padding: 0 0 30px 0;
  border-bottom: dotted 1px #ddd;
}
.layoutlist-03-img {
  line-height: 0;
  overflow: hidden;
}
.layoutlist-03-img img {
  width: 370px;
  height: 247px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03-img img.circle {
  width: 270px;
  height: 270px;
  border: solid 1px #eee;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03-detail {
  padding: 7px 0 0 0;
}
.layoutlist-03-h {
  color: #ff5722;
  font-weight: 500;
  font-size: 20px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
}
.layoutlist-03-d {
  margin: 10px 0 0 0;
  height: 64px;
  overflow: hidden;
  color: #232323;
  font-size: 16px;
  font-weight: 300;
  line-height: inherit;
}
.layoutlist-03:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
}
.layoutlist-03:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-03:hover img.circle {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.layoutlist-04 {
  margin: 30px 0 0 0;
  padding: 0 0 30px 30px;
  border-bottom: dotted 1px #ddd;
  position: relative;
}
.layoutlist-04 i {
  position: absolute;
  top: 0px;
  left: 0px;
}
.layoutlist-titledetail {
  margin: 30px 0 0 0;
  font-size: 24px;
  font-weight: 500;
}
.layoutlist-05 {
  margin: 45px 0 0 0;
  border: solid 2px #440e62;
  padding: 30px 15px 15px 15px;
  position: relative;
}
.layoutlist-05-title {
  position: absolute;
  top: 0;
  left: 0;
  margin: -28px 0 0 15px;
  padding: 0 15px;
  background: #fcd404;
  font-size: 36px;
}
.line-h-40 {
  height: 40px;
}
.line-h-10 {
  height: 10px;
}
.txt-head-color {
  color: #ffffff;
}
header.desktop_show.sticky {
  height: 100px;
  background: #000;
  border-bottom: solid 1px #ccc;
  box-shadow: 0 0 20px #ccc;
}
header.desktop_show {
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.title-color {
  color: #440e62;
}
.dropdown-menu {
  left: 75% !important;
  right: auto !important;
  text-align: center !important;
  transform: translate(-50%,0) !important;
}
.link-footer>a {
  color: #ffffff;
}
.ls-inner {
  background-color: rgba(255,255,255,0) !important;
}
.footer-contact>li>a {
  color: #ffffff;
}
@media (max-width: 767px) {
  .title-home {
    font-size: 30px;
    padding: 0 0 10px 0;
    margin: 30px 0 0 0;
  }
  .title-home:after,
  .title-home:before {
    margin: 0 0 0 -60px;
    width: 120px;
    height: 2px;
  }
  .title-inner {
    font-size: 30px;
    padding: 0 0 10px 0;
    margin: 30px 0 0 0;
  }
  .title-inner:after,
  .title-inner:before {
    margin: 0 0 0 -60px;
    width: 120px;
    height: 2px;
  }
  .layoutlist-02-img img {
    width: 100%;
    height: auto;
  }
  .layoutlist-03-img img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 400px) {
  .layoutlist-01 {
    height: inherit;
    padding: 200px 0 30px 0;
  }
  .layoutlist-01-img img {
    width: 100%;
    height: 200px;
  }
  .layoutlist-01-img img.circle {
    width: 170px;
    height: 170px;
    border: solid 1px #eee;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
  .layoutlist-01-detail {
    width: 100%;
    margin: 0;
    padding: 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .title-home {
    font-size: 30px;
    padding: 0 0 10px 0;
    margin: 30px 0 0 0;
  }
  .title-home:after,
  .title-home:before {
    margin: 0 0 0 -60px;
    width: 120px;
    height: 2px;
  }
  .title-inner {
    font-size: 30px;
    padding: 0 0 10px 0;
    margin: 30px 0 0 0;
  }
  .title-inner:after,
  .title-inner:before {
    margin: 0 0 0 -60px;
    width: 120px;
    height: 2px;
  }
  .layoutlist-02-d {
    margin: 5px 0 0 0;
    height: inherit;
    overflow: inherit;
  }
  .layoutlist-titledetail {
    font-size: 24px;
  }
  .layoutlist-01-img img {
    width: 170px;
    height: 113px;
  }
  .layoutlist-01-img img.circle {
    width: 170px;
    height: 170px;
  }
  .layoutlist-02-img img {
    width: 220px;
    height: 147px;
  }
  .layoutlist-02-img img.circle {
    width: 220px;
    height: 220px;
  }
  .layoutlist-03-img img {
    width: 345px;
    height: 230px;
  }
  .layoutlist-03-img img.circle {
    width: 345px;
    height: 345px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .title-home {
    font-size: 30px;
    padding: 0 0 10px 0;
    margin: 30px 0 0 0;
  }
  .title-home:after,
  .title-home:before {
    margin: 0 0 0 -60px;
    width: 120px;
    height: 2px;
  }
  .title-inner {
    font-size: 30px;
    padding: 0 0 10px 0;
    margin: 30px 0 0 0;
  }
  .title-inner:after,
  .title-inner:before {
    margin: 0 0 0 -60px;
    width: 120px;
    height: 2px;
  }
  .layoutlist-titledetail {
    font-size: 24px;
  }
  .layoutlist-01-img img {
    width: 170px;
    height: 113px;
  }
  .layoutlist-01-img img.circle {
    width: 170px;
    height: 170px;
  }
  .layoutlist-02-img img {
    width: 212px;
    height: 141px;
  }
  .layoutlist-02-img img.circle {
    width: 212px;
    height: 212px;
  }
  .layoutlist-03-img img {
    width: 293px;
    height: 195px;
  }
  .layoutlist-03-img img.circle {
    width: 293px;
    height: 293px;
  }
}
.dropdown {
  color: #fcd404;
}
.headmobile {
  background: #ffffff;
}
.colormain {
  color: #440e62;
}
.bgmain {
  background: #440e62;
}
.cd-nav-trigger span,
.cd-nav-trigger span::before,
.cd-nav-trigger span::after {
  background: #440e62;
}
.cd-nav-trigger.nav-is-visible span::before,
.cd-nav-trigger.nav-is-visible span::after {
  background: #440e62;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
  color: #440e62;
  outline: none;
}
.btn-default {
  color: #440e62;
}
.btn-default:focus,
.btn-default.focus {
  color: #440e62;
}
.btn-default:hover {
  color: #440e62;
}
.cd-primary-nav,
.cd-primary-nav ul {
  background: #440e62;
  z-index: 99;
}
.cd-primary-nav a,
.cd-primary-nav ul a {
  color: #ffffff;
}
.cd-primary-nav a:hover {
  color: #fcd404;
}
.cd-primary-nav ul a:hover {
  color: #fcd404;
}
#headmobile {
  border-bottom: solid 1px #ccc;
  border-top: solid 4px #440e62;
}
.iconsocial-mobile {
  font-size: 16px;
  margin: 20px 20px;
}
.iconsocial-mobile a {
  float: left;
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.iconsocial-mobile i {
  color: #fcd404;
  margin: 0 10px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #main {
    width: 100%;
  }
  #banner img {
    width: 100%;
    height: auto;
  }
  #banner div#layerslider {
    width: 800px;
    height: 450px;
  }
  header {
    border-bottom: solid 1px #ccc;
    border-top: solid 4px #440e62;
  }
  section {
    margin: 0 auto;
    padding: 0 0 40px 0;
  }
  .footer-tab {
    padding: 10px 0;
  }
  .foot-set-tab {
    border-left: none;
    padding: 10px 0;
  }
  .foot-set-tab:first-child {
    border-left: none;
  }
  .foot-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .foot-tab-detail {
    padding-left: 70px;
  }
  .foot-tab-h {
    font-size: 14px;
  }
  .foot-tab-d {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #main {
    width: 100%;
  }
  #banner img {
    width: 100%;
    height: auto;
  }
  header {
    border-bottom: solid 1px #ccc;
    border-top: solid 4px #440e62;
  }
  section {
    margin: 0 auto;
    padding: 0 0 40px 0;
  }
  ul.sitemapfix li {
    font-size: 14px;
    padding: 0 12px;
  }
  .foot-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .foot-tab-detail {
    padding-left: 55px;
  }
  .foot-tab-h {
    font-size: 14px;
  }
  .foot-tab-d {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #main {
    width: 100%;
  }
  #banner img {
    width: 100%;
    height: auto;
  }
  header {
    border-bottom: solid 1px #ccc;
    border-top: solid 4px #440e62;
  }
  section {
    margin: 0 auto;
    padding: 0 0 50px 0;
  }
  .foot-tab-d {
    font-size: 16px;
  }
}
