@charset "UTF-8";
.border-box {
  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */
}
.desaturate,
.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.desaturate:hover,
.gray:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
}
.rmvgray {
  filter: none;
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
}
/* ================ FLEXBOX ================ */
.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.loader--text {
  margin: 0 auto;
  text-align: center;
}
.loader--text:after {
  content: "";
  animation-name: loading-text;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
@-webkit-keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(140px);
  }
  65% {
    transform: translateX(140px);
  }
  95% {
    transform: translateX(0);
  }
}
@-moz-keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(140px);
  }
  65% {
    transform: translateX(140px);
  }
  95% {
    transform: translateX(0);
  }
}
@-ms-keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(140px);
  }
  65% {
    transform: translateX(140px);
  }
  95% {
    transform: translateX(0);
  }
}
@-o-keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(140px);
  }
  65% {
    transform: translateX(140px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(140px);
  }
  65% {
    transform: translateX(140px);
  }
  95% {
    transform: translateX(0);
  }
}
@keyframes loading-text {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
@-moz-keyframes loading-text {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
@-ms-keyframes loading-text {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
@-o-keyframes loading-text {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
@keyframes loading-text {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75% {
    content: "...";
  }
}
.keyframe-loader 15% {
  transform: translateX(0);
}
.keyframe-loader 45% {
  transform: translateX(140px);
}
.keyframe-loader 65% {
  transform: translateX(140px);
}
.keyframe-loader 95% {
  transform: translateX(0);
}
.keyframe-loading-text 0% {
  content: "";
}
.keyframe-loading-text 25% {
  content: ".";
}
.keyframe-loading-text 50% {
  content: "..";
}
.keyframe-loading-text 75% {
  content: "...";
}
@keyframes glowing-btn-yellow {
  0% {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2), 0 0 0 0 #ffbc00;
  }
  100% {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.2), 0 0 0 8px rgba(255, 188, 0, 0);
  }
}
/**
 0. Common
 1. Alignment
 2. Captions
 3. List css
 4. Button
 5. ultility
*/
/*==================================================
=           0. COMMON CSS           			   =
==================================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
input,
textarea {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
img {
  border: 0;
  max-width: 100%;
}
.nopadding {
  padding: 0;
}
.nomargin {
  margin: 0;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover,
a:active {
  color: #FDB813;
  text-decoration: none;
}
.facebook,
.google,
.twitter,
.linkedin,
.youtube,
.rss,
.print,
.email {
  background-color: #1847ba;
  color: #fff;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 18px;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
}
.facebook:hover,
.google:hover,
.twitter:hover,
.linkedin:hover,
.youtube:hover,
.rss:hover,
.print:hover,
.email:hover {
  color: #fff;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
.google {
  background-color: #e23c2c;
}
.linkedin {
  background-color: #0091c6;
}
.rss {
  background-color: #f49711;
}
.email,
.print {
  background-color: #738a8d;
}
.youtube {
  background-color: #CC181E;
}
.ihidden {
  opacity: 0;
}
.ivisible {
  opacity: 1;
}
.show1199 {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .show1199 {
    display: block !important;
  }
}
/*
<div class="loader-container">
    <div class="loader">
        <span class="loader--dot"></span>
        <span class="loader--dot"></span>
        <span class="loader--dot"></span>
        <span class="loader--dot"></span>
        <span class="loader--dot"></span>
        <span class="loader--dot"></span>
    </div>
    <div class="loader--text"></div>
</div>
*/
.loader-container .loader {
  height: 10px;
  width: 150px;
  margin: auto;
  position: relative;
}
.loader-container .loader .loader--dot {
  animation-name: loader;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: black;
  position: absolute;
  border: 2px solid white;
}
.loader-container .loader .loader--dot:first-child {
  background-color: #8cc759;
  animation-delay: 0.5s;
}
.loader-container .loader .loader--dot:nth-child(2) {
  background-color: #8c6daf;
  animation-delay: 0.4s;
}
.loader-container .loader .loader--dot:nth-child(3) {
  background-color: #ef5d74;
  animation-delay: 0.3s;
}
.loader-container .loader .loader--dot:nth-child(4) {
  background-color: #f9a74b;
  animation-delay: 0.2s;
}
.loader-container .loader .loader--dot:nth-child(5) {
  background-color: #60beeb;
  animation-delay: 0.1s;
}
.loader-container .loader .loader--dot:nth-child(6) {
  background-color: #fbef5a;
  animation-delay: 0s;
}
/*==================================================
=            1. Alignment            			   =
==================================================*/
.alignleft {
  display: inline;
  float: left;
}
.alignright {
  display: inline;
  float: right;
}
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin: 0.4em 1.6em 1.6em 0;
}
blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin: 0.4em 0 1.6em 1.6em;
}
blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}
blockquote {
  border-left-color: #404041;
  font-size: 16px;
}
.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2em;
}
/*==================================================
=            2. Captions            			   =
==================================================*/
.wp-caption {
  margin-bottom: 1.6em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin: 0;
}
.wp-caption-text {
  color: #707070;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0.5em 0;
}
/*==================================================
=           3. LIST CSS             			   =
==================================================*/
.list-none {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-none li {
  padding: 10px 0;
  border-bottom: #DEDEDE dotted 1px;
}
.circles-list {
  list-style-type: none;
  list-style-type: decimal !ie;
  /*IE 7- hack*/
  margin: 0;
  margin-left: 40px;
  padding: 0;
  counter-reset: li-counter;
  /* font-size: 14px; */
}
.circles-list > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1.4rem;
  background-color: #d5d5d5;
}
.circles-list > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #FDB813;
  color: #EDEDED;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.boxes-list {
  list-style-type: none;
  list-style-type: decimal !ie;
  /*IE 7- hack*/
  margin: 0;
  margin-left: 40px;
  padding: 0;
  counter-reset: li-counter;
  /* font-size: 14px; */
}
.boxes-list > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.boxes-list > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 18px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.labels-list {
  list-style-type: none;
  list-style-type: decimal !ie;
  /*IE 7- hack*/
  margin: 0;
  padding: 0;
  margin-left: 30px;
  counter-reset: li-counter;
  /* font-size: 14px; */
}
.labels-list > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px 10px 10px 20px;
  background-color: #eaeaea;
}
.labels-list > li:before {
  position: absolute;
  top: -5px;
  left: -30px;
  width: 40px;
  height: 30px;
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  -webkit-transform: rotate(-20deg);
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  z-index: 99;
  overflow: hidden;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.simple-list {
  list-style-type: none;
  list-style-type: decimal !ie;
  /*IE 7- hack*/
  margin: 0;
  margin-left: 40px;
  padding: 0;
  counter-reset: li-counter;
}
.simple-list > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  border-left: 2px solid #CCCCCC;
  /* font-size: 14px; */
}
.simple-list > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 36px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #FDB813;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.tilted-list {
  list-style-type: none;
  list-style-type: decimal !ie;
  /*IE 7- hack*/
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
  counter-reset: li-counter;
}
.tilted-list > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  border-left: 2px solid #CCCCCC;
  background-color: #f5f5f5;
}
.tilted-list > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 36px;
  line-height: 36px;
  font-weight: bold;
  text-align: center;
  color: #FDB813;
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
  z-index: 99;
  overflow: hidden;
  content: counter(li-counter);
  counter-increment: li-counter;
}
.list-thumb {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-thumb li {
  margin: 0 0 10px;
}
.list-thumb li:last-child {
  border-bottom: none;
}
.list-thumb li img {
  float: left;
  margin-right: 10px;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  overflow: hidden;
}
.list-thumb li a {
  display: block;
  padding: 0px 0px;
  color: #000;
  text-align: left;
  -webkit-transition: 'font-size 0.3s ease, background-color 0.3s ease';
  -moz-transition: 'font-size 0.3s ease, background-color 0.3s ease';
  -ms-transition: 'font-size 0.3s ease, background-color 0.3s ease';
  -o-transition: 'font-size 0.3s ease, background-color 0.3s ease';
  transition: 'font-size 0.3s ease, background-color 0.3s ease';
}
.list-thumb li:hover img {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.big-starlist {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-starlist > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-starlist > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-checklist {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-checklist > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-checklist > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-checklist > li:before {
  content: '\f046';
}
.big-q {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-q > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-q > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-q > li:before {
  content: '\f0a3';
}
.big-plus {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-plus > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-plus > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-plus > li:before {
  content: '\f067';
}
.big-yelp {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-yelp > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-yelp > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-yelp > li:before {
  content: '\f1e9';
}
.big-triangle {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-triangle > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-triangle > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-triangle > li:before {
  content: '\f071';
}
.big-arrow {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-arrow > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-arrow > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-arrow > li:before {
  content: '\f054';
}
.big-gift {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-gift > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-gift > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-gift > li:before {
  content: '\f06b';
}
.big-download {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-download > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-download > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-download > li:before {
  content: '\f019';
}
.big-heart {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-heart > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-heart > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-heart > li:before {
  content: '\f004';
}
.big-hand {
  list-style-type: none;
  margin: 0;
  margin-left: 40px;
  padding: 0;
  /* font-size: 14px; */
}
.big-hand > li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f5f5f5;
}
.big-hand > li:before {
  position: absolute;
  top: 0;
  left: -40px;
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  background-color: #FDB813;
  color: #EDEDED;
  content: '\f005';
  font-family: "FontAwesome";
}
.big-hand > li:before {
  content: '\f0a4';
}
.list-item-date {
  display: table;
  padding: 10px 0;
}
.list-item-date .item {
  padding: 10px 0;
}
.list-item-date .item .postdate {
  display: table-cell;
  text-align: center;
  vertical-align: top;
}
.list-item-date .item .postdate .date {
  display: block;
  width: 55px;
  height: 65px;
  margin-right: 30px;
  vertical-align: middle;
  background-color: #FDB813;
  color: #fff;
  position: relative;
}
.list-item-date .item .postdate .date .day {
  display: block;
  padding-top: 10px;
  font-size: 24px;
}
.list-item-date .item .postdate .date .month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 0px;
}
.list-item-date .item .postdate .date:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  right: -12px;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-left-color: #FDB813;
}
.list-item-date .item .postinfo {
  display: table-cell;
  vertical-align: top;
}
.list-item-date .item .postinfo h2,
.list-item-date .item .postinfo h3 {
  margin-top: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.list-item-date .item .postinfo h2 a,
.list-item-date .item .postinfo h3 a {
  color: #000;
  text-decoration: none;
}
.list-item-date .item .postinfo h2:hover a,
.list-item-date .item .postinfo h3:hover a {
  color: #FDB813;
}
/*==================================================
=           3. BUTTON CSS           			   =
==================================================*/
.btn-brand {
  display: inline-block;
  text-decoration: none;
  background-color: #FDB813;
  color: #000;
  border-color: #FDB813;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-brand:hover,
.btn-brand:active {
  background-color: rgba(253, 184, 19, 0.7);
  color: #000;
  border-color: #FDB813;
  text-decoration: none ;
}
.btn-more {
  display: block;
  text-align: center;
  color: #666;
  font-size: 1.6rem;
  text-decoration: none;
  margin: 30px auto;
  background-color: transparent;
}
.btn-more:after {
  content: '';
  display: inline-block;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-top-color: #666;
  margin-left: 10px;
  margin-top: 3px;
}
.btn-more:hover {
  text-decoration: none;
  color: #FDB813;
}
.btn-more:hover:after {
  border-top-color: #FDB813;
}
.btn-loadmore {
  display: inline-block;
  text-align: center;
  color: #0082d5;
  font-size: 1.8rem;
  padding: 5px 30px 5px 15px;
  text-decoration: none;
  margin: 50px auto 0 auto;
  background-color: transparent;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
}
.btn-loadmore:after {
  content: '\f0d7';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  font-size: 16px;
  font-family: 'icomoon';
  color: #0082d5;
}
.btn-loadmore:hover,
.btn-loadmore:active,
.btn-loadmore:focus {
  text-decoration: none;
  background-color: #FDB813;
  color: #fff;
  border-color: #FDB813;
}
.btn-loadmore:hover:after,
.btn-loadmore:active:after,
.btn-loadmore:focus:after {
  color: #fff;
}
/*==================================================
=           5. ULTILITY CSS           			   =
==================================================*/
@media screen and (max-width: 769px) {
  .hidden-768 {
    display: none !important;
  }
}
@media screen and (max-width: 993px) {
  .hidden-992 {
    display: none !important;
  }
}
@media screen and (max-width: 1201px) {
  .hidden-1200 {
    display: none !important;
  }
}
/*==================================================
=           6. CONTACT FROM           			   =
==================================================*/
.wpcf7-incontent {
  background-color: #FDB813;
  color: #fff;
  padding: 15px;
}
.wpcf7-incontent .wpcf7-text,
.wpcf7-incontent .wpcf7-select,
.wpcf7-incontent .wpcf7-textarea {
  width: 100%;
  color: #666;
}
.wpcf7-incontent .wpcf7-submit {
  background-color: #EDEDED;
  border-color: #EDEDED;
  color: #fff;
}
/*==================================================
=           7. ACCORDION CSS          			   =
==================================================*/
.accordion section,
.accordion,
.accordion h2 {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.accordion {
  margin-bottom: 20px;
}
.accordion h2 {
  font-size: 14px !important;
  margin: 0;
  border-bottom: #FDB813 solid 2px;
  cursor: move;
}
.accordion h2 span.text {
  display: inline-block;
  background-color: #FDB813;
  color: #fff;
  height: 25px;
  line-height: 25px;
  padding: 0 30px 0 30px;
  text-align: center;
  position: relative;
}
.accordion h2 span.text:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -25px;
  height: 0;
  width: 0;
  border: 25px solid transparent;
  border-top-color: #fff;
}
.accordion h2 span.text .pointer {
  padding: 0;
  line-height: 20px;
  width: 13px;
  position: absolute;
  left: 10px;
  top: 4px;
  color: #000;
}
.accordion .accord-desc {
  padding: 10px 0px;
}
.accordion section {
  overflow: hidden;
  height: auto;
  max-height: 2000px;
}
.accordion section.ac_hidden {
  height: 30px !important;
  max-height: 30px;
  -webkit-transition: max-height 0.5s ease-in-out;
  -moz-transition: max-height 0.5s ease-in-out;
  -ms-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}
.accordion:not(.ac_hidden) .pointer {
  display: inline-block;
  color: #000 !important;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  padding: 0;
}
/*==================================================
=           3. BUTTON CSS                    =
==================================================*/
.btn-brand {
  display: inline-block;
  text-decoration: none;
  background-color: #fab900;
  color: #000;
  border-color: #fab900;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 20px;
  animation: glowing-btn-yellow 2s infinite;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  border-radius: 3em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-brand [class^='icon-'] {
  font-size: 20px;
  margin-left: 5px;
}
.btn-brand:hover,
.btn-brand:active {
  background-color: rgba(253, 184, 19, 0.7);
  color: #000;
  border-color: #FDB813;
  text-decoration: none ;
}
.btn-brand span {
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .btn-brand {
    font-size: 14px;
  }
}
.btn-green {
  background-color: #6bbd2d;
  border-color: #6bbd2d;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  border-radius: 3em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: uppercase;
  box-shadow: 0 3px 1px #3b8900;
}
.btn-green span {
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .btn-green {
    font-size: 14px;
  }
}
.btn-green .theme-icons {
  background-position-y: -1em;
}
.btn-calltoaction {
  background-color: #31bf59;
  color: #fff;
  font-size: 15px;
  padding: 10px 20px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: #28bf52 solid 1px;
  border-bottom-width: 3px;
  border-bottom-color: #279646;
  -webkit-box-shadow: 0 3px #11bf42;
  -moz-box-shadow: 0 3px #11bf42;
  box-shadow: 0 3px #11bf42;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.btn-calltoaction [class^='icon-'] {
  font-size: 20px;
  margin-left: 5px;
}
.btn-calltoaction:hover {
  background-color: #31bf59;
  border-color: #28bf52;
  border-bottom-color: #279646;
  color: #fff;
}
.btn-calltoaction2 {
  text-transform: uppercase;
  background: #fff;
  color: #000;
  font-weight: 700;
  border: 1px solid #fcb813;
  padding: 10px 20px;
  -webkit-border-radius: 3em;
  -moz-border-radius: 3em;
  border-radius: 3em;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  letter-spacing: 2px;
  box-shadow: 0 6px 13px rgba(0, 0, 0, 0.3);
}
.btn-calltoaction2 [class^='icon-'] {
  font-size: 20px;
  margin-left: 5px;
}
.btn-more {
  display: block;
  text-align: center;
  color: #666;
  font-size: 1.6rem;
  text-decoration: none;
  margin: 30px auto;
  background-color: transparent;
}
.btn-more:after {
  content: '';
  display: inline-block;
  height: 0;
  width: 0;
  border: 6px solid transparent;
  border-top-color: #666;
  margin-left: 10px;
  margin-top: 3px;
}
.btn-more:hover {
  text-decoration: none;
  color: #FDB813;
}
.btn-more:hover:after {
  border-top-color: #FDB813;
}
/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px transparent;
  -moz-box-shadow: 0 0 1px transparent;
  box-shadow: 0 0 1px transparent;
  position: relative;
  background: #fdc746;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.hvr-shutter-out-horizontal:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fecf5f;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover,
.hvr-shutter-out-horizontal:focus,
.hvr-shutter-out-horizontal:active {
  color: white;
}
.hvr-shutter-out-horizontal:hover:before,
.hvr-shutter-out-horizontal:focus:before,
.hvr-shutter-out-horizontal:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang {
  0% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  50% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@-webkit-keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
@keyframes hvr-hang-sink {
  100% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
}
.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
}
/*
.hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}
*/
/* Float Shadow */
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, transparent 80%);
  /* W3C */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform, opacity;
  transition-property: transform, opacity;
}
.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  /* move the element up by 5px */
}
.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
  opacity: 1;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%,
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  100%,
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%,
  100%,
  11.1% {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible!important;
  backface-visibility: visible!important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
@font-face {
  font-family: 'icomoon';
  src: url('assets/icomoon/fonts/icomoon.eot?enynqn');
  src: url('assets/icomoon/fonts/icomoon.eot?enynqn#iefix') format('embedded-opentype'), url('assets/icomoon/fonts/icomoon.ttf?enynqn') format('truetype'), url('assets/icomoon/fonts/icomoon.woff?enynqn') format('woff'), url('assets/icomoon/fonts/icomoon.svg?enynqn#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-check1:before {
  content: "\e90b";
}
.icon-play:before {
  content: "\e909";
}
.icon-home:before {
  content: "\e900";
}
.icon-home3:before {
  content: "\e902";
}
.icon-phone-hang-up:before {
  content: "\e943";
}
.icon-clock:before {
  content: "\e94e";
}
.icon-youtube:before {
  content: "\ea9d";
}
.icon-linkedin2:before {
  content: "\eaca";
}
.icon-phone2:before {
  content: "\e942";
}
.icon-location:before {
  content: "\e947";
}
.icon-location2:before {
  content: "\e948";
}
.icon-download:before {
  content: "\e960";
}
.icon-hangouts:before {
  content: "\ea8e";
}
.icon-whatsapp:before {
  content: "\ea93";
}
.icon-google-plus:before {
  content: "\e90c";
}
.icon-play-circle-o:before {
  content: "\e90a";
}
.icon-play-circle:before {
  content: "\e906";
}
.icon-chevron-circle-right:before {
  content: "\e907";
}
.icon-chevron-circle-left:before {
  content: "\e908";
}
.icon-link:before {
  content: "\e905";
}
.icon-check-circle:before {
  content: "\e901";
}
.icon-briefcase:before {
  content: "\e903";
}
.icon-users:before {
  content: "\e904";
}
.icon-th-large:before {
  content: "\f009";
}
.icon-th:before {
  content: "\f00a";
}
.icon-lock:before {
  content: "\f023";
}
.icon-eye-slash:before {
  content: "\f070";
}
.icon-unlock:before {
  content: "\f09c";
}
.icon-thumbs-up:before {
  content: "\f164";
}
.icon-thumbs-down:before {
  content: "\f165";
}
.icon-long-arrow-down:before {
  content: "\f175";
}
.icon-long-arrow-up:before {
  content: "\f176";
}
.icon-long-arrow-left:before {
  content: "\f177";
}
.icon-long-arrow-right:before {
  content: "\f178";
}
.icon-file-pdf-o:before {
  content: "\f1c1";
}
.icon-search:before {
  content: "\f002";
}
.icon-envelope-o:before {
  content: "\f003";
}
.icon-star:before {
  content: "\f005";
}
.icon-star-o:before {
  content: "\f006";
}
.icon-check:before {
  content: "\f00c";
}
.icon-close:before {
  content: "\f00d";
}
.icon-remove:before {
  content: "\f00d";
}
.icon-times:before {
  content: "\f00d";
}
.icon-tags:before {
  content: "\f02c";
}
.icon-check-square-o:before {
  content: "\f046";
}
.icon-chevron-left:before {
  content: "\f053";
}
.icon-chevron-right:before {
  content: "\f054";
}
.icon-calendar:before {
  content: "\f073";
}
.icon-chevron-up:before {
  content: "\f077";
}
.icon-chevron-down:before {
  content: "\f078";
}
.icon-external-link:before {
  content: "\f08e";
}
.icon-phone:before {
  content: "\f095";
}
.icon-twitter:before {
  content: "\f099";
}
.icon-facebook:before {
  content: "\f09a";
}
.icon-facebook-f:before {
  content: "\f09a";
}
.icon-caret-down:before {
  content: "\f0d7";
}
.icon-caret-up:before {
  content: "\f0d8";
}
.icon-caret-left:before {
  content: "\f0d9";
}
.icon-caret-right:before {
  content: "\f0da";
}
.icon-sort-desc:before {
  content: "\f0dd";
}
.icon-sort-down:before {
  content: "\f0dd";
}
.icon-sort-asc:before {
  content: "\f0de";
}
.icon-sort-up:before {
  content: "\f0de";
}
.icon-comment-o:before {
  content: "\f0e5";
}
.icon-comments-o:before {
  content: "\f0e6";
}
.icon-angle-double-left:before {
  content: "\f100";
}
.icon-angle-double-right:before {
  content: "\f101";
}
.icon-angle-double-up:before {
  content: "\f102";
}
.icon-angle-double-down:before {
  content: "\f103";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-angle-up:before {
  content: "\f106";
}
.icon-angle-down:before {
  content: "\f107";
}
.icon-mobile:before {
  content: "\f10b";
}
.icon-mobile-phone:before {
  content: "\f10b";
}
.icon-quote-left:before {
  content: "\f10d";
}
.icon-quote-right:before {
  content: "\f10e";
}
.icon-paper-plane:before {
  content: "\f1d8";
}
.icon-send:before {
  content: "\f1d8";
}
.icon-paper-plane-o:before {
  content: "\f1d9";
}
.icon-send-o:before {
  content: "\f1d9";
}
.icon-volume-control-phone:before {
  content: "\f2a0";
}
.icon-bars:before {
  content: "\f0c9";
}
.icon-navicon:before {
  content: "\f0c9";
}
.icon-reorder:before {
  content: "\f0c9";
}
.icon-eye:before {
  content: "\f06e";
}
.icon-camera:before {
  content: "\f030";
}
.icon-info-circle:before {
  content: "\f05a";
}
.icon-address-card-o:before {
  content: "\f2bc";
}
.icon-vcard-o:before {
  content: "\f2bc";
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: 0;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: -25px;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -40px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: 0;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #000;
  content: '';
  text-align: center;
  opacity: .25;
  color: black;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
.slick-dots {
  bottom: -60px;
}
.slick-dots li {
  padding: 1px;
  border: transparent solid 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  position: relative;
}
.slick-dots li button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.slick-dots li.slick-active {
  border-color: #FDB813;
}
.slick-dots li.slick-active button:before {
  background-color: #FDB813;
  color: #FDB813;
}
.giaiphap-icons {
  font-size: 75px;
  width: 1em;
  height: 1em;
  background-image: url('assets/images/icons.png');
  background-size: auto 1em;
  display: inline-block;
}
.giaiphap-sme-branding {
  background-position: 0 0;
}
.giaiphap-plp {
  background-position: -1em 0;
}
.giaiphap-pbp {
  background-position: -2em 0;
}
.giaiphap-dbp {
  background-position: -3em 0;
}
.giaiphap-cip {
  background-position: -4em 0;
}
.giaiphap-ccp {
  background-position: -5em 0;
}
.giaiphap-cbp {
  background-position: -6em 0;
}
.giaiphap-brandcare {
  background-position: -7em 0;
}
/** theme icons **/
.theme-icons {
  font-size: 75px;
  width: 1em;
  height: 1em;
  background-image: url('assets/images/theme-icons.png');
  background-size: auto 2em;
  display: inline-block;
  font-family: none!important;
}
.theme-icons:before,
.theme-icons:after {
  content: '';
}
.icon-hand {
  background-position: 0 0;
}
.icon-cellphone {
  background-position: -1em 0;
}
.icon-email {
  background-position: -2em 0;
}
.icon-phone {
  background-position: -3em 0;
}
.icon-email2 {
  background-position: -4em 0;
}
.icon-email3 {
  background-position: -5em 0;
}
/** socials icons **/
.social-icons {
  font-size: 40px;
  width: 1em;
  height: 1em;
  display: inline-block;
  position: relative;
}
.social-icons:before,
.social-icons:after {
  content: '';
  background-image: url("assets/images/socials.png");
  background-size: auto 2em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s all;
}
.social-icons:after {
  opacity: 0;
}
.social-facebook:before {
  background-position: 0 0;
}
.social-twitter:before {
  background-position: -1em 0;
}
.social-youtube:before {
  background-position: -2em 0;
}
.social-instagram:before {
  background-position: -3em 0;
}
.social-zalo:before {
  background-position: -4em 0;
}
.social-messenger:before {
  background-position: -5em 0;
}
.social-skype:before {
  background-position: -6em 0;
}
.social-facebook:after {
  background-position: 0 -1em;
}
.social-twitter:after {
  background-position: -1em -1em;
}
.social-youtube:after {
  background-position: -2em -1em;
}
.social-instagram:after {
  background-position: -3em -1em;
}
.social-zalo:after {
  background-position: -4em -1em;
}
.social-messenger:after {
  background-position: -5em -1em;
}
.social-skype:after {
  background-position: -6em -1em;
}
.social-icons:hover:before {
  opacity: 0;
}
.social-icons:hover:after {
  opacity: 1;
}
/*
Theme Name: Sao Kim Branding
Theme URI: http://www.saokim.com.vn
Author: Sao Kim Branding
Author URI: http://contact@saokim.com.vn
Text Domain: saokim
Description: Sao Kim Project
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1199px) {
  html {
    font-size: 9.3333px;
  }
}
html,
body {
  overflow-x: hidden;
}
body {
  background: #fff;
  color: #000;
  font-family: "Open Sans";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.4rem;
  margin: 0;
  padding: 0;
}
/*================================================
=            1. HEADER          			   =
==================================================*/
#header {
  display: block;
  position: relative;
  -webkit-transition: "padding .5s linear, position .5s linear";
  -moz-transition: "padding .5s linear, position .5s linear";
  -ms-transition: "padding .5s linear, position .5s linear";
  -o-transition: "padding .5s linear, position .5s linear";
  transition: "padding .5s linear, position .5s linear";
  z-index: 99;
}
#header #header-top {
  height: 40px;
  background-color: #f5f5f5;
  color: #666;
  position: relative;
}
#header #header-top #header-top-content {
  font-size: 1.4rem;
}
#header #header-top #header-top-content a {
  color: #666;
  text-decoration: none !important;
}
#header #header-top #header-top-content a:hover {
  color: #FDB813;
}
#header #header-top #header-top-content .header-top-hotline,
#header #header-top #header-top-content #header-top-email {
  margin-right: 3rem;
}
#header #header-top #header-top-content [class^='icon-'] {
  color: #666;
  margin-right: 5px;
  vertical-align: middle;
}
#header #header-top #header-top-content #header-top-search {
  display: none;
  color: #666;
  margin-right: 10px;
  text-align: right;
  overflow: hidden;
}
#header #header-top #header-top-content #header-top-left {
  line-height: 40px;
}
#header #header-top #header-top-content #header-top-left .icon {
  font-size: 1.6rem;
  margin-right: 5px;
  color: #FDB813;
}
#header #header-top #header-top-content #header-top-right ul {
  float: right;
  list-style: none;
  z-index: 999;
  margin: 0;
  padding: 0;
}
#header #header-top #header-top-content #header-top-right ul.menu > li {
  float: left;
  position: relative;
  line-height: 40px;
  margin-left: 3rem;
}
#header #header-top #header-top-content #header-top-right ul.menu > li.english,
#header #header-top #header-top-content #header-top-right ul.menu > li.vietnam {
  padding-left: 28px;
  padding-right: 15px;
}
#header #header-top #header-top-content #header-top-right ul.menu > li.english:before,
#header #header-top #header-top-content #header-top-right ul.menu > li.vietnam:before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 22px;
  line-height: 22px;
  background: url(assets/images/vi.png) left center no-repeat;
  background-size: 23px auto;
  font-size: 1.6rem;
  position: absolute;
  top: 9px;
  left: 0;
}
#header #header-top #header-top-content #header-top-right ul.menu > li.english:after,
#header #header-top #header-top-content #header-top-right ul.menu > li.vietnam:after {
  content: '\f0d7';
  font-family: 'icomoon';
  display: inline-block;
  width: 10px;
  height: 10px;
  line-height: 10px;
  color: #FDB813;
  z-index: 9999;
  font-size: 1.6rem;
  position: absolute;
  top: 15px;
  right: 0;
}
#header #header-top #header-top-content #header-top-right ul.menu > li.english:before {
  background-image: url(assets/images/en.png);
}
#header #header-nav-wrap {
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(145, 145, 145, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(145, 145, 145, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(145, 145, 145, 0.75);
}
#header #header-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
#header #header-nav #mobile-toggle {
  border: 0;
  width: 24px;
  font-size: 24px;
  overflow: hidden;
  color: #000000;
  text-align: center;
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
#header #header-nav #mobile-toggle:hover,
#header #header-nav #mobile-toggle:active {
  color: #FDB813;
}
#header #header-nav #header-logo {
  height: 60px;
}
#header #header-nav #header-logo #logo {
  display: block;
  height: 60px;
}
#header #header-nav #header-logo #logo img {
  height: 46px;
  width: auto;
  margin-top: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header #header-nav #header-menu {
  position: relative;
  flex-grow: 1;
}
#header #header-nav .langs {
  width: 20px;
  display: flex;
}
#header #header-nav .langs a {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(assets/images/eng_icon.png) no-repeat center;
  background-size: auto 100%;
  margin: auto;
}
#header #header-nav #header-contact {
  position: relative;
  width: 160px;
}
#header #header-nav #header-contact .header-contact-content {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
#header #header-nav #header-contact .header-contact-content .btn-contact {
  display: inline-block;
  text-decoration: none;
  background-color: #FDB813;
  color: #000;
  border-color: #FDB813;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#header #header-nav #header-contact .header-contact-content .btn-contact:hover {
  background-color: #fdc02c;
  border-color: #fdc02c;
}
#header #header-nav #header-contact .header-contact-content .header-search-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  background: url(assets/images/search_icon.png) center center no-repeat;
  text-align: right;
  text-indent: 99px;
  overflow: hidden;
  float: left;
  font-size: 0;
}
/* Search desktop form */
.popover-search {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.search-desktop-form input {
  padding-left: 5px;
  padding-right: 5px;
  width: 180px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #eee;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.search-desktop-form button {
  border: 1px solid #DEA111;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 30px;
  padding: 0 10px;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
  font-weight: 600;
  color: #fff;
  background-color: #FDB813;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDB813), to(#fdc746));
  background-image: -webkit-linear-gradient(top, #FDB813, #fdc746);
  background-image: -moz-linear-gradient(top, #FDB813, #fdc746);
  background-image: -ms-linear-gradient(top, #FDB813, #fdc746);
  background-image: -o-linear-gradient(top, #FDB813, #fdc746);
  background-image: linear-gradient(to bottom, #FDB813, #fdc746);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#FDB813, endColorstr=#fdc746);
}
/* Search mobile form */
#search-mobile {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}
#search-mobile .search-mobile-form {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
#search-mobile .search-mobile-form input[type="text"] {
  padding: 15px 0px;
  width: 300px;
  max-width: 80%;
  font-size: 3rem;
  line-height: 4rem;
  background-color: transparent;
  color: #fff;
  border: none;
}
#search-mobile .close {
  color: #fff;
  margin-right: 15px;
  margin-top: 15px;
  font-size: 36px;
}
/* Top menu */
.topmenu {
  display: table;
  float: right;
  text-align: right;
  margin: 0;
  padding: 0;
  font-size: 15px;
  z-index: 111;
  height: 100%;
}
.topmenu li {
  position: relative;
  list-style: none;
  /*float: left;*/
  display: table-cell;
  height: 100%;
  padding: 0 20px;
  text-transform: uppercase;
}
.topmenu li a {
  display: block;
  line-height: 76px;
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
.topmenu li a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FDB813;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
  transition: width 0.3s linear;
}
.topmenu li:hover a,
.topmenu li.current-menu-item a,
.topmenu li.current-menu-ancestor a,
.topmenu li.current-menu-parent a,
.topmenu li.current-page-parent a {
  color: #000;
}
.topmenu li:hover a:after,
.topmenu li.current-menu-item a:after,
.topmenu li.current-menu-ancestor a:after,
.topmenu li.current-menu-parent a:after,
.topmenu li.current-page-parent a:after {
  width: 100%;
}
.topmenu li:hover ul li a,
.topmenu li.current-menu-item ul li a,
.topmenu li.current-menu-ancestor ul li a,
.topmenu li.current-menu-parent ul li a,
.topmenu li.current-page-parent ul li a {
  background-color: #fff;
  color: #000;
}
.topmenu li:hover ul li a:after,
.topmenu li.current-menu-item ul li a:after,
.topmenu li.current-menu-ancestor ul li a:after,
.topmenu li.current-menu-parent ul li a:after,
.topmenu li.current-page-parent ul li a:after {
  display: none;
}
.topmenu li:hover ul li:hover a,
.topmenu li.current-menu-item ul li:hover a,
.topmenu li.current-menu-ancestor ul li:hover a,
.topmenu li.current-menu-parent ul li:hover a,
.topmenu li.current-page-parent ul li:hover a {
  background-color: #fecf5f;
  color: #000;
}
.topmenu li:hover ul li:hover ul,
.topmenu li.current-menu-item ul li:hover ul,
.topmenu li.current-menu-ancestor ul li:hover ul,
.topmenu li.current-menu-parent ul li:hover ul,
.topmenu li.current-page-parent ul li:hover ul {
  top: 0;
}
.topmenu li:hover ul li:hover ul li a,
.topmenu li.current-menu-item ul li:hover ul li a,
.topmenu li.current-menu-ancestor ul li:hover ul li a,
.topmenu li.current-menu-parent ul li:hover ul li a,
.topmenu li.current-page-parent ul li:hover ul li a {
  background-color: #fefefe;
  color: #000;
}
.topmenu li:hover ul li:hover ul li:hover a,
.topmenu li.current-menu-item ul li:hover ul li:hover a,
.topmenu li.current-menu-ancestor ul li:hover ul li:hover a,
.topmenu li.current-menu-parent ul li:hover ul li:hover a,
.topmenu li.current-page-parent ul li:hover ul li:hover a {
  background-color: #fecf5f;
  color: #000;
}
.topmenu li:hover ul li:hover ul li ul,
.topmenu li.current-menu-item ul li:hover ul li ul,
.topmenu li.current-menu-ancestor ul li:hover ul li ul,
.topmenu li.current-menu-parent ul li:hover ul li ul,
.topmenu li.current-page-parent ul li:hover ul li ul {
  top: 0;
}
.topmenu ul {
  position: absolute;
  top: 110%;
  left: 0;
  width: auto;
  display: block;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  float: none;
  text-align: left;
  background-color: #fff;
  padding: 3px;
  margin: 0;
  z-index: 112;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.topmenu ul li {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  background: #fff;
  text-transform: none;
}
.topmenu ul li a {
  display: block ;
  padding: 10px 10px ;
  line-height: 2.4rem !important;
  margin: 0 ;
  color: #fff;
  text-transform: none;
  overflow: hidden;
  line-height: inherit;
  height: auto;
  border-bottom: none;
  font-weight: 500;
}
.topmenu ul li:hover,
.topmenu ul li.current-menu-item {
  background-color: #fecf5f;
  color: #000;
}
.topmenu ul li:hover a,
.topmenu ul li.current-menu-item a {
  background-color: #fecf5f;
  color: #000;
}
.topmenu ul li.menu-item-has-children:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  color: #000;
  z-index: 1;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-left-color: #000;
}
.topmenu li:hover > ul {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.topmenu li:hover > ul li {
  height: auto;
  overflow: visible;
}
.topmenu ul ul {
  position: absolute;
  left: 100%;
  top: 20px;
  padding-top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.topmenu ul ul li {
  width: 300px;
  font-size: 14px;
}
#subnav {
  border-bottom: #FDB813 solid 2px;
  background-color: #f5f5f5;
}
#subnav .subnav-menu {
  display: table;
  float: right;
  text-align: right;
  margin: 0;
  padding: 0;
  font-size: 15px;
  z-index: 111;
  height: 100%;
  float: none;
  width: 100%;
  font-size: 1.8rem;
}
#subnav .subnav-menu li {
  position: relative;
  list-style: none;
  /*float: left;*/
  display: table-cell;
  height: 100%;
  padding: 0 20px;
  text-transform: uppercase;
}
#subnav .subnav-menu li a {
  display: block;
  line-height: 76px;
  margin: 0;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: relative;
}
#subnav .subnav-menu li a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FDB813;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
  transition: width 0.3s linear;
}
#subnav .subnav-menu li:hover a,
#subnav .subnav-menu li.current-menu-item a,
#subnav .subnav-menu li.current-menu-ancestor a,
#subnav .subnav-menu li.current-menu-parent a,
#subnav .subnav-menu li.current-page-parent a {
  color: #000;
}
#subnav .subnav-menu li:hover a:after,
#subnav .subnav-menu li.current-menu-item a:after,
#subnav .subnav-menu li.current-menu-ancestor a:after,
#subnav .subnav-menu li.current-menu-parent a:after,
#subnav .subnav-menu li.current-page-parent a:after {
  width: 100%;
}
#subnav .subnav-menu li:hover ul li a,
#subnav .subnav-menu li.current-menu-item ul li a,
#subnav .subnav-menu li.current-menu-ancestor ul li a,
#subnav .subnav-menu li.current-menu-parent ul li a,
#subnav .subnav-menu li.current-page-parent ul li a {
  background-color: #fff;
  color: #000;
}
#subnav .subnav-menu li:hover ul li a:after,
#subnav .subnav-menu li.current-menu-item ul li a:after,
#subnav .subnav-menu li.current-menu-ancestor ul li a:after,
#subnav .subnav-menu li.current-menu-parent ul li a:after,
#subnav .subnav-menu li.current-page-parent ul li a:after {
  display: none;
}
#subnav .subnav-menu li:hover ul li:hover a,
#subnav .subnav-menu li.current-menu-item ul li:hover a,
#subnav .subnav-menu li.current-menu-ancestor ul li:hover a,
#subnav .subnav-menu li.current-menu-parent ul li:hover a,
#subnav .subnav-menu li.current-page-parent ul li:hover a {
  background-color: #fecf5f;
  color: #000;
}
#subnav .subnav-menu li:hover ul li:hover ul,
#subnav .subnav-menu li.current-menu-item ul li:hover ul,
#subnav .subnav-menu li.current-menu-ancestor ul li:hover ul,
#subnav .subnav-menu li.current-menu-parent ul li:hover ul,
#subnav .subnav-menu li.current-page-parent ul li:hover ul {
  top: 0;
}
#subnav .subnav-menu li:hover ul li:hover ul li a,
#subnav .subnav-menu li.current-menu-item ul li:hover ul li a,
#subnav .subnav-menu li.current-menu-ancestor ul li:hover ul li a,
#subnav .subnav-menu li.current-menu-parent ul li:hover ul li a,
#subnav .subnav-menu li.current-page-parent ul li:hover ul li a {
  background-color: #fefefe;
  color: #000;
}
#subnav .subnav-menu li:hover ul li:hover ul li:hover a,
#subnav .subnav-menu li.current-menu-item ul li:hover ul li:hover a,
#subnav .subnav-menu li.current-menu-ancestor ul li:hover ul li:hover a,
#subnav .subnav-menu li.current-menu-parent ul li:hover ul li:hover a,
#subnav .subnav-menu li.current-page-parent ul li:hover ul li:hover a {
  background-color: #fecf5f;
  color: #000;
}
#subnav .subnav-menu li:hover ul li:hover ul li ul,
#subnav .subnav-menu li.current-menu-item ul li:hover ul li ul,
#subnav .subnav-menu li.current-menu-ancestor ul li:hover ul li ul,
#subnav .subnav-menu li.current-menu-parent ul li:hover ul li ul,
#subnav .subnav-menu li.current-page-parent ul li:hover ul li ul {
  top: 0;
}
#subnav .subnav-menu ul {
  position: absolute;
  top: 110%;
  left: 0;
  width: auto;
  display: block;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  float: none;
  text-align: left;
  background-color: #fff;
  padding: 3px;
  margin: 0;
  z-index: 112;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#subnav .subnav-menu ul li {
  display: block;
  width: 300px;
  max-width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  background: #fff;
  text-transform: none;
}
#subnav .subnav-menu ul li a {
  display: block ;
  padding: 10px 10px ;
  line-height: 2.4rem !important;
  margin: 0 ;
  color: #fff;
  text-transform: none;
  overflow: hidden;
  line-height: inherit;
  height: auto;
  border-bottom: none;
  font-weight: 500;
}
#subnav .subnav-menu ul li:hover,
#subnav .subnav-menu ul li.current-menu-item {
  background-color: #fecf5f;
  color: #000;
}
#subnav .subnav-menu ul li:hover a,
#subnav .subnav-menu ul li.current-menu-item a {
  background-color: #fecf5f;
  color: #000;
}
#subnav .subnav-menu ul li.menu-item-has-children:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  color: #000;
  z-index: 1;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-left-color: #000;
}
#subnav .subnav-menu li:hover > ul {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  visibility: visible;
  top: 100%;
}
#subnav .subnav-menu li:hover > ul li {
  height: auto;
  overflow: visible;
}
#subnav .subnav-menu ul ul {
  position: absolute;
  left: 100%;
  top: 20px;
  padding-top: 0;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
#subnav .subnav-menu ul ul li {
  width: 300px;
  font-size: 14px;
}
#subnav .subnav-menu li {
  text-transform: none;
  padding: 0 30px;
}
#subnav .subnav-menu li.first {
  padding-left: 0;
}
#subnav .subnav-menu li.last {
  padding-right: 0;
}
#subnav .subnav-menu li a {
  border-bottom: 0;
}
#subnav .subnav-menu li:hover ul li a,
#subnav .subnav-menu li.current-menu-item ul li a,
#subnav .subnav-menu li.current-menu-ancestor ul li a,
#subnav .subnav-menu li.current-menu-parent ul li a,
#subnav .subnav-menu li.current-page-parent ul li a {
  background-color: #f5f5f5;
  color: #000;
}
#subnav .subnav-menu ul {
  font-size: 1.5rem;
}
#subnav .subnav-menu ul li a {
  padding: 10px 10px ;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #subnav .subnav-menu li {
    padding: 0;
    width: 33.33%;
    text-align: center;
  }
  #subnav .subnav-menu li ul li {
    text-align: left;
  }
}
@media screen and (max-width: 579px) {
  #subnav .subnav-menu li.first {
    text-align: left;
  }
  #subnav .subnav-menu li.last {
    text-align: right;
  }
}
.topbanner {
  background: url(assets/images/banner_default.jpg?ver=1) top center no-repeat;
  background-size: cover;
  width: 100%;
  height: 355px;
  position: relative;
}
.topbanner .banner-blur {
  display: none;
}
.topbanner .banner-content {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  color: #666;
  text-align: center;
}
.topbanner .banner-content h2 {
  font-size: 36px;
  font-weight: 400;
  color: #000;
  margin-top: 0;
}
.topbanner .banner-content .desc {
  color: #666;
  font-size: 16px;
}
@media screen and (max-width: 991px) {
  .topbanner {
    height: 300px;
  }
  .topbanner .banner-blur {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
  }
  .topbanner .banner-content {
    z-index: 2;
  }
  .topbanner .banner-content h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .topbanner {
    height: 200px;
  }
  .topbanner .banner-content h2 {
    text-align: center;
    font-size: 24px;
  }
  .topbanner .banner-content h2 br.hidesmall {
    display: none;
  }
  .topbanner .banner-content .desc {
    display: none;
  }
}
/*================================================
=            MOBILE MENU         			   =
==================================================*/
#overlay {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  z-index: 8888;
  overflow: hidden;
}
#overlay.active {
  display: block;
}
@media screen and (min-width: 1200px) {
  #overlay {
    display: none;
  }
  #overlay.active {
    display: none;
  }
}
#mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #fff;
  z-index: 99999;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
#mobile-nav .nav-info {
  background-color: #fafafa;
  color: #000;
  margin: 0;
  padding: 30px 15px;
  font-size: 14px;
  color: #666;
}
#mobile-nav .nav-info .copyright {
  color: #666;
  margin-bottom: 20px;
}
#mobile-nav .nav-info a {
  color: #000;
}
#mobile-nav .nav-info a:hover {
  color: #FDB813;
}
#mobile-nav .nav-info .icon {
  color: #FDB813;
  font-size: 16px;
}
#mobile-nav.active {
  left: 0;
}
@media screen and (min-width: 1200px) {
  #mobile-nav {
    left: -100%;
  }
  #mobile-nav.active {
    left: -100%;
  }
}
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  display: block;
  position: relative;
}
#cssmenu {
  width: 100%;
}
#cssmenu #moblogo {
  display: block;
  margin: 0;
  text-align: center;
  padding: 20px 15px;
  border-bottom: #EDEDED solid 1px;
}
#cssmenu #moblogo img {
  max-width: 100%;
}
#cssmenu ul ul {
  display: none;
}
#cssmenu ul li a {
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  font-size: 1.6rem;
  margin-bottom: 1px;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: #EDEDED solid 1px;
  position: relaitve;
  z-index: 20;
}
#cssmenu ul li a .arrow {
  position: absolute;
  content: '';
  width: 40px;
  height: 100%;
  top: 0;
  right: 0;
}
#cssmenu ul li.active a,
#cssmenu ul li.open a,
#cssmenu ul li.current-menu-parent a {
  color: #FDB813;
}
#cssmenu ul li.active ul li a,
#cssmenu ul li.open ul li a,
#cssmenu ul li.current-menu-parent ul li a {
  color: #000;
}
#cssmenu ul li.active ul li a:hover,
#cssmenu ul li.open ul li a:hover,
#cssmenu ul li.current-menu-parent ul li a:hover {
  color: #FDB813;
}
#cssmenu ul li.menu-item-has-children::after {
  display: inline-block;
  position: absolute;
  content: "+";
  top: 20px;
  right: 15px;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  z-index: 10;
  font-size: 24px;
}
#cssmenu ul li.open::after {
  content: '-';
}
#cssmenu ul li ul li a {
  cursor: pointer;
  padding: 10px 20px;
  z-index: 20;
  text-decoration: none;
  text-transform: none;
  margin-bottom: 1px;
}
/*================================================
=            TOPSLIDER           			   =
==================================================*/
.topslider {
  margin-bottom: 40px;
  background-color: #f5f5f5;
  padding: 20px 0;
}
.topslider .slider-main-wrap {
  position: relative;
}
.topslider .slider-main-wrap .slider-main .slider-item {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 24px;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .short-text {
  text-align: justify;
  color: #4d4d4d;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-top: 0 !important;
  margin-bottom: 10px;
  color: #000;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .item-img img {
  width: 100%;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta {
  margin-bottom: 15px;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta .slider-author {
  font-weight: bold;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta .slider-cat {
  font-weight: bold;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta-bottom {
  margin-top: 30px;
  font-weight: 600;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta-bottom .slider-meta-left {
  text-align: left;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta-bottom .slider-meta-right {
  text-align: right;
}
.topslider .slider-main-wrap .slider-main .slider-item .item-right .slider-meta-bottom .slider-meta-right .post-share {
  margin-left: 15px;
  text-transform: uppercase;
}
.topslider .slider-main-wrap .slider-button {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 100px);
}
.topslider .slider-main-wrap .slider-button .slider-btn {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  background-color: #FDB813;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: relative;
}
.topslider .slider-main-wrap .slider-button .slider-btn i.fa {
  font-size: 16px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .topslider .slider-main-wrap .slider-main .slider-item .slider-meta {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .topslider {
    display: none;
  }
}
/*================================================
	=           DEFAULT HEADLINE 			   =
==================================================*/
.headline {
  text-align: center;
  font-size: 3.8rem;
  line-height: 4.8rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 58px;
  margin-top: 58px;
}
.headline.has-sub {
  margin-bottom: 25px;
}
.headline:after {
  content: '';
  display: block;
  width: 175px;
  border-bottom: #FDB813 solid 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .headline {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.sub-headline {
  text-align: center;
  margin-bottom: 58px;
  font-size: 1.5rem;
  color: #666;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.sub-headline.quote {
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
  font-size: 15px;
}
.sub-headline.quote:before {
  content: '';
  display: block;
  background: url(assets/images/quote_open.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.sub-headline.quote:after {
  content: '';
  display: block;
  background: url(assets/images/quote_close.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .sub-headline {
    margin-bottom: 5rem;
    max-width: 90%;
  }
}
/*================================================
	=            WHYUS CSS        			   =
==================================================*/
.whyus1 {
  display: block;
  margin-bottom: 30px;
  background: url(assets/images/world_map_whyus.png) bottom center no-repeat;
}
.whyus1 .whyus1-heading {
  text-align: center;
  font-size: 3.8rem;
  line-height: 4.8rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 58px;
  margin-top: 58px;
}
.whyus1 .whyus1-heading.has-sub {
  margin-bottom: 25px;
}
.whyus1 .whyus1-heading:after {
  content: '';
  display: block;
  width: 175px;
  border-bottom: #FDB813 solid 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .whyus1 .whyus1-heading {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.whyus1 .whyus1-sub-heading {
  text-align: center;
  margin-bottom: 58px;
  font-size: 1.5rem;
  color: #666;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.whyus1 .whyus1-sub-heading.quote {
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
  font-size: 15px;
}
.whyus1 .whyus1-sub-heading.quote:before {
  content: '';
  display: block;
  background: url(assets/images/quote_open.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.whyus1 .whyus1-sub-heading.quote:after {
  content: '';
  display: block;
  background: url(assets/images/quote_close.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .whyus1 .whyus1-sub-heading {
    margin-bottom: 5rem;
    max-width: 90%;
  }
}
.whyus1 .whyus-counter .counter-item {
  margin-bottom: 20px;
}
.whyus1 .whyus-counter .counter-item .counter-icon {
  display: block;
  margin: 0 auto 30px auto;
  text-align: center;
}
.whyus1 .whyus-counter .counter-item .number-group {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.whyus1 .whyus-counter .counter-item .number-group .counter-number {
  font-size: 6rem;
  font-weight: 800;
  color: #FDB813;
}
.whyus1 .whyus-counter .counter-item .number-group .counter-after {
  color: #000;
  font-size: 6rem;
}
.whyus1 .whyus-counter .counter-item .counter-text {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 20px;
}
.whyus1 .whyus-img {
  text-align: center;
  margin: 55px auto;
}
.whyus1 .whyus-img img {
  margin: 0 auto;
}
.whyus1 .whyus-button {
  text-align: center;
}
.whyus1 .whyus-button a.btn {
  background-color: #FDB813;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .whyus1 .whyus-counter .counter-item .number-group {
    margin-bottom: 10px;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .whyus1 .whyus-counter .counter-item .counter-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .whyus1 .whyus-counter .counter-item .number-group {
    margin-bottom: 0px;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
}
.whyus2 {
  background: #fafafa url(assets/images/whyusbg2.jpg) top left no-repeat;
  padding: 3rem 0 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}
.whyus2 .whyus2-heading {
  text-align: center;
  font-size: 3.8rem;
  line-height: 4.8rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 58px;
  margin-top: 58px;
}
.whyus2 .whyus2-heading.has-sub {
  margin-bottom: 25px;
}
.whyus2 .whyus2-heading:after {
  content: '';
  display: block;
  width: 175px;
  border-bottom: #FDB813 solid 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .whyus2 .whyus2-heading {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.whyus2 .lydo {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 30px 20px;
  /*margin-bottom: 30px;
		display: -ms-grid;
		display: grid;
    	grid-gap: 30px;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;*/
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 0 -15px 30px -15px;
  -webkit-box-shadow: 0px 8px 10px 0px #f4f4f4;
  -moz-box-shadow: 0px 8px 10px 0px #f4f4f4;
  box-shadow: 0px 8px 10px 0px #f4f4f4;
}
.whyus2 .lydo .lydo-item {
  width: calc(20% - 30px);
  margin: 15px;
}
.whyus2 .lydo .lydo-item .lydo-icon {
  text-align: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: #ececec solid 1px;
  position: relative;
}
.whyus2 .lydo .lydo-item .lydo-icon img {
  max-width: 100px;
  max-height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.whyus2 .lydo .lydo-item .lydo-text {
  text-align: center;
  color: #666;
  font-size: 15px;
}
.whyus2 .whyus-counter .counter-item {
  margin-bottom: 20px;
  border-right: #ececec solid 1px;
}
.whyus2 .whyus-counter .counter-item:last-child,
.whyus2 .whyus-counter .counter-item.last {
  border-right: 0;
}
.whyus2 .whyus-counter .counter-item .counter-icon {
  display: block;
  margin: 0 auto 30px auto;
  text-align: center;
}
.whyus2 .whyus-counter .counter-item .number-group {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.whyus2 .whyus-counter .counter-item .number-group .counter-number {
  font-size: 6rem;
  font-weight: 800;
  color: #FDB813;
}
.whyus2 .whyus-counter .counter-item .number-group .counter-after {
  color: #000;
  font-size: 6rem;
}
.whyus2 .whyus-counter .counter-item .counter-text {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 20px;
}
@media screen and (max-width: 1199px) {
  .whyus2 .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .whyus2 .whyus-counter .counter-item .number-group {
    margin-bottom: 10px;
  }
  .whyus2 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus2 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .whyus2 .whyus-counter .counter-item .counter-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .whyus2 {
    background: #fafafa;
  }
  .whyus2 .lydo {
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    padding: 0;
    margin: 0 0 30px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .whyus2 .lydo .lydo-item {
    width: 100%;
    margin: 0;
    border-bottom: #e5e5e5 solid 1px;
    position: relative;
    counter-increment: itemIndex;
  }
  .whyus2 .lydo .lydo-item .lydo-icon {
    text-align: center;
    width: 80px;
    height: 100px;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    position: relative;
  }
  .whyus2 .lydo .lydo-item .lydo-icon img {
    max-width: 40px;
    height: 34px;
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .whyus2 .lydo .lydo-item .lydo-icon:after {
    content: counter(itemIndex);
    position: absolute;
    bottom: 3px;
    left: 50%;
    color: #e8e8e9;
    font-size: 4rem;
    font-weight: 700;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .whyus2 .lydo .lydo-item .lydo-text {
    text-align: left;
    position: absolute;
    top: 20px;
    left: 80px;
    right: 20px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .whyus2 .lydo .lydo-item:nth-child(1) {
    border-top: #e5e5e5 solid 1px;
  }
  .whyus2 .whyus-counter .whyus-counter .counter-item .number-group {
    margin-bottom: 0px;
  }
  .whyus2 .whyus-counter .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus2 .whyus-counter .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
}
.whyus3 {
  display: block;
  margin-bottom: 30px;
  background: url(assets/images/world_map_whyus.png) bottom center no-repeat;
  background: url(assets/images/world_map_whyus.png) center center no-repeat;
}
.whyus3 .whyus1-heading {
  text-align: center;
  font-size: 3.8rem;
  line-height: 4.8rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 58px;
  margin-top: 58px;
}
.whyus3 .whyus1-heading.has-sub {
  margin-bottom: 25px;
}
.whyus3 .whyus1-heading:after {
  content: '';
  display: block;
  width: 175px;
  border-bottom: #FDB813 solid 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .whyus3 .whyus1-heading {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.whyus3 .whyus1-sub-heading {
  text-align: center;
  margin-bottom: 58px;
  font-size: 1.5rem;
  color: #666;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.whyus3 .whyus1-sub-heading.quote {
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
  font-size: 15px;
}
.whyus3 .whyus1-sub-heading.quote:before {
  content: '';
  display: block;
  background: url(assets/images/quote_open.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.whyus3 .whyus1-sub-heading.quote:after {
  content: '';
  display: block;
  background: url(assets/images/quote_close.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .whyus3 .whyus1-sub-heading {
    margin-bottom: 5rem;
    max-width: 90%;
  }
}
.whyus3 .whyus-counter .counter-item {
  margin-bottom: 20px;
}
.whyus3 .whyus-counter .counter-item .counter-icon {
  display: block;
  margin: 0 auto 30px auto;
  text-align: center;
}
.whyus3 .whyus-counter .counter-item .number-group {
  display: block;
  text-align: center;
  margin-bottom: 30px;
}
.whyus3 .whyus-counter .counter-item .number-group .counter-number {
  font-size: 6rem;
  font-weight: 800;
  color: #FDB813;
}
.whyus3 .whyus-counter .counter-item .number-group .counter-after {
  color: #000;
  font-size: 6rem;
}
.whyus3 .whyus-counter .counter-item .counter-text {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  margin-top: 20px;
}
.whyus3 .whyus-img {
  text-align: center;
  margin: 55px auto;
}
.whyus3 .whyus-img img {
  margin: 0 auto;
}
.whyus3 .whyus-button {
  text-align: center;
}
.whyus3 .whyus-button a.btn {
  background-color: #FDB813;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 14px;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .whyus3 .whyus-counter .counter-item .number-group {
    margin-bottom: 10px;
  }
  .whyus3 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus3 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .whyus3 .whyus-counter .counter-item .counter-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .whyus3 .whyus-counter .counter-item .number-group {
    margin-bottom: 0px;
  }
  .whyus3 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus3 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
}
.whyus3 .whyus-img {
  margin: 0px auto;
  position: relative;
}
.whyus3 .whyus-img .whyus-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -30%);
  -moz-transform: translate(-50%, -30%);
  -ms-transform: translate(-50%, -30%);
  -o-transform: translate(-50%, -30%);
}
@media screen and (max-width: 579px) {
  .whyus3 .whyus-img .whyus-button {
    top: 0;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
}
/*================================================
  TESTIMONIALs
==================================================*/
.testimonial {
  display: block;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 30px;
}
.testimonial .item {
  padding-left: 15px;
  padding-right: 15px;
}
.testimonial .item .item-content {
  background-color: #fafafa;
  color: #666;
  border: #eee solid 1px;
  padding: 25px 15px;
  height: 222px;
  position: relative;
  -webkit-transition: background-color 0.25s linear;
  -moz-transition: background-color 0.25s linear;
  -ms-transition: background-color 0.25s linear;
  -o-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.testimonial .item .item-content:after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  border: 10px solid transparent;
  border-top-color: #fafafa;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transition: border-top-color 0.25s linear;
  -moz-transition: border-top-color 0.25s linear;
  -ms-transition: border-top-color 0.25s linear;
  -o-transition: border-top-color 0.25s linear;
  transition: border-top-color 0.25s linear;
}
.testimonial .item .item-content .item-rating {
  text-align: center;
  color: #FDB813;
}
.testimonial .item .item-content .item-text {
  height: 140px;
  line-height: 24px;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.testimonial .item .item-client-info {
  margin-top: 20px;
  text-align: center;
}
.testimonial .item .item-client-info .item-client-img {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin: 0 auto 20px auto;
  background-color: #fafafa;
  position: relative;
  -webkit-box-shadow: 0px 0px 2px 0px #888888;
  -moz-box-shadow: 0px 0px 2px 0px #888888;
  box-shadow: 0px 0px 2px 0px #888888;
}
.testimonial .item .item-client-info .item-client-img:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: transparent solid 2px;
  transition: border-top-color 0.25s linear, border-right-color 0.25s linear 0.1s, border-bottom-color 0.25s linear 0.2s, border-left-color 0.25s linear 0.3s;
}
.testimonial .item .item-client-info .item-client-img img {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.testimonial .item .item-client-info h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 0;
}
.testimonial .item .item-client-info .item-client-position {
  font-size: 15px;
  color: #666;
  font-weight: 400;
  text-align: center;
}
.testimonial .item:hover .item-content {
  background-color: #FDB813;
  color: #fff;
}
.testimonial .item:hover .item-content .item-rating {
  color: #fff;
}
.testimonial .item:hover .item-content:after {
  border-top-color: #FDB813;
}
.testimonial .item:hover .item-client-info .item-client-img:before {
  border-top-color: #FDB813;
  border-right-color: #FDB813;
  border-bottom-color: #FDB813;
  border-left-color: #FDB813;
}
.testimonial .slick-dots {
  position: absolute;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  bottom: -60px;
  bottom: -40px;
}
.testimonial .slick-dots li {
  padding: 1px;
  border: transparent solid 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  position: relative;
}
.testimonial .slick-dots li button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.testimonial .slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.testimonial .slick-dots li.slick-active {
  border-color: #FDB813;
}
.testimonial .slick-dots li.slick-active button:before {
  background-color: #FDB813;
  color: #FDB813;
}
.testimonial .slick-dots li {
  padding: 1px;
  border: transparent solid 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  position: relative;
}
.testimonial .slick-dots li button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.testimonial .slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.testimonial .slick-dots li.slick-active {
  border-color: #FDB813;
}
.testimonial .slick-dots li.slick-active button:before {
  background-color: #FDB813;
  color: #FDB813;
}
@media screen and (max-width: 479px) {
  .testimonial {
    margin-bottom: 30px;
  }
  .testimonial .item.slick-current .item-content {
    background-color: rgba(253, 184, 19, 0.8);
    color: #fff;
  }
  .testimonial .item.slick-current .item-content .item-rating {
    color: #fff;
  }
  .testimonial .item.slick-current .item-content:after {
    border-top-color: rgba(253, 184, 19, 0.8);
  }
  .testimonial .item.slick-current .item-client-info .item-client-img:before {
    border-top-color: #fdc746;
    border-right-color: #fdc746;
    border-bottom-color: #fdc746;
    border-left-color: #fdc746;
  }
}
/*.home-testimonial*/
/*================================================
  1. project-menu
  2. project-list
==================================================*/
/*.multi-column-dropdown li a {
	display: block;
	clear: both;
	line-height: 1.428571429;
	color: #333;
	white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none;
	color: #262626;
	background-color: #f5f5f5;
}*/
@media (max-width: 767px) {
  .dropdown-menu.multi-column {
    min-width: 240px !important;
    overflow-x: hidden;
  }
}
.project-menu {
  position: relative;
  height: 48px;
}
.project-menu #search-form-mobile {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 48px;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.project-menu #search-form-mobile .search-form-content {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  background-color: #fff;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: normal;
  border-bottom: #f5f5f5 solid 1px;
}
.project-menu #search-form-mobile .search-form-content .btn-search {
  width: 40px;
  border: none;
  text-align: center;
  height: 48px;
  background-color: transparent;
}
.project-menu #search-form-mobile .search-form-content .search-text {
  width: calc(100% - 42px);
  float: right;
  height: 48px;
  border: none;
  text-align: left;
  font-style: italic;
  color: #9ea2a6;
  margin: 0;
  padding: 0;
}
.project-menu #search-form-mobile .search-close {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 101;
}
.project-menu .search-bar {
  background-color: #f5f5f5;
  /*margin-bottom: 30px;*/
}
.project-menu .search-bar .container {
  position: relative;
  height: 48px;
}
.project-menu .search-bar ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 48px;
}
.project-menu .search-bar ul li {
  float: left;
  height: 48px;
  line-height: 48px;
  text-align: left;
}
.project-menu .search-bar ul li a {
  color: #0082d5;
  text-decoration: none;
}
.project-menu .search-bar ul li.search-form {
  width: 290px;
  height: 48px;
  position: relative;
}
.project-menu .search-bar ul li.search-form #search-mobile-trigger {
  display: none;
}
.project-menu .search-bar ul li.search-form form {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  background-color: #fff;
  border: #ccc solid 1px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 33px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
  line-height: normal;
}
.project-menu .search-bar ul li.search-form form .btn-search {
  width: 40px;
  border: none;
  text-align: center;
  height: 31px;
  background-color: transparent;
}
.project-menu .search-bar ul li.search-form form .search-text {
  width: calc(100% - 42px);
  float: right;
  height: 31px;
  border: none;
  text-align: left;
  font-style: italic;
  color: #9ea2a6;
  margin: 0;
  padding: 0;
}
.project-menu .search-bar ul li div.mega-full {
  position: absolute;
  top: 120%;
  left: 15px;
  right: 15px;
  background-color: #fff;
  z-index: 1000;
  padding: 15px 0;
  display: block;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 2px 0px #919191;
  -moz-box-shadow: 0px 0px 2px 0px #919191;
  box-shadow: 0px 0px 2px 0px #919191;
}
.project-menu .search-bar ul li div.mega-full ul {
  font-size: 15px;
}
.project-menu .search-bar ul li div.mega-full ul li {
  line-height: normal;
  height: auto;
  padding: 10px 15px;
}
.project-menu .search-bar ul li div.mega-full ul li a {
  color: #666;
}
.project-menu .search-bar ul li div.mega-full ul li:hover a {
  color: #FDB813;
}
.project-menu .search-bar ul li.gap {
  border-right: #adadaf solid 1px;
  height: 30px;
  color: #adadaf;
  margin: 9px 0;
}
.project-menu .search-bar ul li.loaisanpham {
  padding-left: 40px;
  padding-right: 25px;
}
.project-menu .search-bar ul li.loaisanpham a {
  position: relative;
}
.project-menu .search-bar ul li.linhvuc {
  padding-left: 25px;
  padding-right: 25px;
}
.project-menu .search-bar ul li.linhvuc a {
  position: relative;
}
.project-menu .search-bar ul li.sapxep {
  float: right;
  position: relative;
}
.project-menu .search-bar ul li.sapxep ul {
  position: absolute;
  top: 120%;
  right: 0;
  width: 180px;
  height: auto;
  background-color: #fff;
  z-index: 1000;
  padding: 15px 0;
  display: block;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 2px 0px #919191;
  -moz-box-shadow: 0px 0px 2px 0px #919191;
  box-shadow: 0px 0px 2px 0px #919191;
}
.project-menu .search-bar ul li.sapxep ul:before {
  content: '';
  display: inline-block;
  height: 0;
  width: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  top: -20px;
  right: 40px;
  z-index: 1001;
}
.project-menu .search-bar ul li.sapxep ul li {
  float: none;
  display: block;
  height: auto;
  font-size: 15px;
  padding: 10px 15px;
  line-height: normal;
}
.project-menu .search-bar ul li.sapxep ul li a {
  display: block;
  color: #666;
}
.project-menu .search-bar ul li.sapxep ul li:hover a {
  color: #FDB813;
}
.project-menu .search-bar ul li:hover.linhvuc a:after,
.project-menu .search-bar ul li.open.linhvuc a:after,
.project-menu .search-bar ul li:hover.loaisanpham a:after,
.project-menu .search-bar ul li.open.loaisanpham a:after {
  content: '';
  display: inline-block;
  height: 0;
  width: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  z-index: 1001;
}
.project-menu .search-bar ul li:hover div.mega-full,
.project-menu .search-bar ul li.open div.mega-full {
  visibility: visible;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  top: 100%;
}
.project-menu .search-bar ul li:hover.sapxep ul,
.project-menu .search-bar ul li.open.sapxep ul {
  visibility: visible;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  top: 100%;
}
@media screen and (max-width: 767px) {
  .project-menu .search-bar ul li.search-form {
    width: auto;
  }
  .project-menu .search-bar ul li.search-form #search-mobile-trigger {
    display: inline-block;
    font-size: 16px;
    color: #666;
  }
  .project-menu .search-bar ul li.search-form form {
    display: none;
  }
  .project-menu .search-bar ul li.sapxep {
    margin-right: 0;
    margin-left: 0;
  }
  .project-menu .search-bar ul li.linhvuc {
    margin-right: 0;
    margin-left: auto;
  }
  .project-menu .search-bar ul li:hover:not(.open).linhvuc a:after,
  .project-menu .search-bar ul li:hover:not(.open).loaisanpham a:after {
    display: none;
  }
  .project-menu .search-bar ul li:hover:not(.open) div.mega-full {
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  .project-menu .search-bar ul li:hover:not(.open).sapxep ul {
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}
@media screen and (max-width: 579px) {
  .project-menu .search-bar .hidden-mobile {
    display: none;
  }
  .project-menu .search-bar ul li.search-form {
    width: 30px;
  }
  .project-menu .search-bar ul li.linhvuc {
    width: calc((100% - 110px)/2);
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    text-transform: capitalize;
  }
  .project-menu .search-bar ul li.loaisanpham {
    width: calc((100% - 110px)/2);
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    text-transform: capitalize;
  }
  .project-menu .search-bar ul li.gap {
    display: none;
  }
  .project-menu .search-bar ul li.sapxep {
    float: left;
    width: 80px;
    text-align: right;
    text-transform: capitalize;
  }
}
@media screen and (max-width: 479px) {
  .project-menu .search-bar .hidden-mobile {
    display: none;
  }
  .project-menu .search-bar ul li.linhvuc {
    font-size: 13px;
  }
  .project-menu .search-bar ul li.linhvuc ul li {
    font-size: 14px;
  }
  .project-menu .search-bar ul li.loaisanpham {
    font-size: 13px;
  }
  .project-menu .search-bar ul li.loaisanpham ul li {
    font-size: 14px;
  }
  .project-menu .search-bar ul li.sapxep {
    font-size: 13px;
  }
  .project-menu .search-bar ul li.sapxep ul li {
    font-size: 14px;
  }
}
.filter-selected {
  display: block;
  margin-top: 30px;
}
.filter-selected a {
  display: inline-block;
  padding: 5px 15px;
  margin-right: 15px;
  text-align: center;
  font-size: 1.5rem;
  background-color: #0082d6;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.filter-selected a.clearall {
  width: 120px;
  background-color: #ed1b26;
}
.filter-selected a:hover,
.filter-selected a:focus,
.filter-selected a:active {
  background-color: #fdc746;
}
.filter-selected a:hover.clearall,
.filter-selected a:focus.clearall,
.filter-selected a:active.clearall {
  background-color: #c51019;
}
@media screen and (max-width: 767px) {
  .filter-selected {
    text-align: center;
  }
  .filter-selected a {
    margin-left: 7.5px;
    margin-right: 7.5px;
    margin-bottom: 15px;
  }
  .filter-selected a.lv,
  .filter-selected a.lsp {
    max-width: calc((100% - 165px)/2);
    white-space: nowrap;
    overflow: hidden;
    float: left;
  }
  .filter-selected a.lv span.txt,
  .filter-selected a.lsp span.txt {
    display: inline-block;
    max-width: calc((100% - 10px));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
  }
}
@media screen and (max-width: 579px) {
  .filter-selected {
    text-align: center;
  }
  .filter-selected a {
    font-size: 12px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
  }
  .filter-selected a.lv,
  .filter-selected a.lsp {
    max-width: calc((100% - 100px)/2);
  }
  .filter-selected a.lv span.txt,
  .filter-selected a.lsp span.txt {
    max-width: calc((100% - 10px));
  }
  .filter-selected a.clearall {
    width: 70px;
  }
  .filter-selected a.clearall .hide-txt {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  .filter-selected {
    /*a{
			margin-left: 3px;
			margin-right: 3px;
			margin-bottom: 10px;
			padding: 5px 10px;
			span.txt{

			}
		}*/
  }
}
.project-list .project-loop {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: -15px;
}
.project-list .project-loop .item {
  display: block;
  width: calc(33.33333% - 30px);
  margin: 15px;
  overflow: hidden;
  position: relative;
  /*border: #fafafa solid 1px;
			.border-radius(2px);*/
  /* Tools */
}
.project-list .project-loop .item .item-img {
  position: relative;
}
.project-list .project-loop .item .item-img .item-bg {
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fdc746;
  z-index: -1;
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.project-list .project-loop .item .item-img .item-content {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.project-list .project-loop .item .item-img .item-content .item-content-inner {
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 0 15px;
}
.project-list .project-loop .item .item-img .item-content .item-content-inner h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  color: #fff;
  text-transform: uppercase;
}
.project-list .project-loop .item .item-img .item-content .item-content-inner h4 {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-top: 0;
  color: #fafafa;
}
.project-list .project-loop .item .item-img .item-content .item-content-inner .more {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: #fff solid 2px;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
.project-list .project-loop .item .item-img .hits {
  display: inline-block;
  position: absolute;
  bottom: 15px;
  right: -100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  color: #fff;
}
.project-list .project-loop .item .edit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 30;
}
.project-list .project-loop .item .edit .dropdown-menu {
  padding: 10px;
}
.project-list .project-loop .item:hover .item-img .item-bg,
.project-list .project-loop .item:active .item-img .item-bg {
  left: 0;
  z-index: 10;
}
.project-list .project-loop .item:hover .item-img .item-content .item-content-inner,
.project-list .project-loop .item:active .item-img .item-content .item-content-inner {
  left: 0;
  z-index: 11;
}
.project-list .project-loop .item:hover .item-img .hits,
.project-list .project-loop .item:active .item-img .hits {
  right: 15px;
  z-index: 11;
}
@media screen and (max-width: 991px) {
  .project-list .project-loop .item .item-img .item-content .more {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .project-list .project-loop .item {
    width: calc(50% - 30px);
  }
  .project-list .project-loop .item .item-img .item-content h3 {
    font-size: 18px;
    font-weight: 400;
  }
  .project-list .project-loop .item .item-img .item-content h4 {
    font-size: 14px;
  }
  .project-list .project-loop .item .item-img .item-content .preview {
    display: none;
  }
}
@media screen and (max-width: 579px) {
  .project-list .project-loop {
    margin: -7.5px;
  }
  .project-list .project-loop .item {
    width: calc(50% - 15px);
    margin: 7.5px;
  }
  .project-list .project-loop .item .item-img .item-content h3 {
    font-size: 16px;
  }
  .project-list .project-loop .item .item-img .item-content h4 {
    display: none;
  }
  .project-list .project-loop .item .item-img .item-content .more {
    width: auto;
    height: auto;
    line-height: normal;
    border: none;
    padding: 5px;
  }
}
@media screen and (max-width: 479px) {
  .project-list .project-loop .item .item-img .item-content h3 {
    font-size: 14px;
  }
  .project-list .project-loop .item .item-img .hits {
    display: none;
  }
}
/*===============================================================
                            CUSTOMER
================================================================*/
.slick-dots {
  bottom: -40px;
}
.slick-dots li {
  padding: 1px;
  border: transparent solid 1px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  position: relative;
}
.slick-dots li button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.slick-dots li button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.slick-dots li.slick-active {
  border-color: #FDB813;
}
.slick-dots li.slick-active button:before {
  background-color: #FDB813;
  color: #FDB813;
}
.cust-single h1.cust-name {
  font-size: 3.6rem;
  font-weight: 400;
  margin-top: 0;
}
.cust-single .cust-project-name {
  font-size: 2.4rem;
  font-weight: 400;
  margin-top: 0;
}
.cust-single .headline {
  text-align: center;
  font-size: 3.8rem;
  line-height: 4.8rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 58px;
  margin-top: 58px;
}
.cust-single .headline.has-sub {
  margin-bottom: 25px;
}
.cust-single .headline:after {
  content: '';
  display: block;
  width: 175px;
  border-bottom: #FDB813 solid 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .cust-single .headline {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.cust-single .sub-headline {
  text-align: center;
  margin-bottom: 58px;
  font-size: 1.5rem;
  color: #666;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.cust-single .sub-headline.quote {
  position: relative;
  padding-left: 70px;
  padding-right: 70px;
  font-size: 15px;
}
.cust-single .sub-headline.quote:before {
  content: '';
  display: block;
  background: url(assets/images/quote_open.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
}
.cust-single .sub-headline.quote:after {
  content: '';
  display: block;
  background: url(assets/images/quote_close.png) top center no-repeat;
  width: 44px;
  height: 40px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .cust-single .sub-headline {
    margin-bottom: 5rem;
    max-width: 90%;
  }
}
#main {
  padding: 30px 0;
  /*.project-single*/
}
#main.nopadding {
  padding: 0;
}
#main.nomargin {
  margin: 0;
}
#main .project-single .project-name {
  position: relative;
}
#main .project-single .project-name .row {
  display: flex;
  align-items: center;
}
#main .project-single .project-name .project-name-inner {
  position: static;
  top: 50%;
  left: 0;
  width: 100%;
}
#main .project-single .project-name .project-name-inner h1 {
  margin: 0;
  padding: 0;
  font-size: 7rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}
#main .project-single .project-name .project-name-inner h1 sup {
  font-size: 12px;
  font-weight: 400;
  border: #FDB813 solid 2px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  position: absolute;
  top: 0;
  right: -50px;
}
#main .project-single .project-name .project-name-inner h2 {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #666;
}
#main .project-single #project-single-sidebar {
  padding-left: 35px;
}
#main .project-single #project-single-sidebar .sidebar-inner {
  border-top: #ccc solid 1px;
  padding-top: 30px;
  color: #666;
}
#main .project-single #project-single-sidebar .sidebar-inner a {
  color: #666;
}
#main .project-single #project-single-sidebar .sidebar-inner a:hover {
  color: #FDB813;
}
#main .project-single #project-single-sidebar .sidebar-inner .heading-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
}
#main .project-single #project-single-sidebar .sidebar-inner ul {
  list-style: none;
  padding: 0;
}
#main .project-single #project-single-sidebar .sidebar-inner ul li {
  padding: 5px 0;
  position: relative;
}
#main .project-single #project-single-sidebar .sidebar-inner .tagclound {
  padding-top: 20px;
  border-top: 1px solid #d5d5d5;
  margin-top: 20px;
}
#main .project-single #project-single-sidebar .sidebar-inner .tagclound ul {
  margin: 0 -3px;
}
#main .project-single #project-single-sidebar .sidebar-inner .tagclound ul li {
  float: left;
  margin: 3px;
}
#main .project-single #project-single-sidebar .sidebar-inner .tagclound ul li a {
  border: 1px solid #d5d5d5;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 12px;
}
#main .project-single #project-single-sidebar .sidebar-inner .tagclound a {
  white-space: nowrap;
}
#main .project-single #project-single-content {
  padding-right: 35px;
}
#main .project-single #project-single-content .content-inner {
  border-top: #ccc solid 1px;
  padding-top: 30px;
  color: #666;
}
#main .project-single .project-img {
  margin: 30px 0;
}
#main .project-single .project-img p {
  text-align: center;
}
#main .project-single .project-img p img {
  margin: 0 auto;
  max-width: 100%;
  /*max-height: 100vh;*/
}
#main .project-single .project-bottom {
  margin: 30px auto;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #main .project-single #project-single-sidebar {
    padding-left: 15px;
  }
  #main .project-single #project-single-content {
    padding-right: 15px;
  }
  #main .project-single .project-related .project-related-list .item .item-content h3 {
    font-size: 18px;
    font-weight: 400;
  }
  #main .project-single .project-related .project-related-list .item .item-content h4 {
    font-size: 14px;
    font-weight: 400;
  }
  #main .project-single .project-related .project-related-list .item .item-content .more {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  #main .project-single .project-name {
    height: 150px;
  }
  #main .project-single .project-name .project-name-inner h1 {
    font-size: 4rem;
  }
  #main .project-single .project-name .project-name-inner h2 {
    font-size: 1.5rem;
  }
  #main .project-single .project-related .project-related-list {
    margin: 0 -7.5px;
  }
  #main .project-single .project-related .project-related-list .item {
    margin: 0 7.5px;
  }
  #main .project-single .project-related .project-related-list .item .item-content h3 {
    font-size: 18px;
    font-weight: 400;
  }
  #main .project-single .project-related .project-related-list .item .item-content h4 {
    display: none;
  }
  #main .project-single .logo_congty {
    display: none;
  }
}
@media screen and (max-width: 579px) {
  #main .project-single .project-name sup {
    display: none;
  }
  #main .project-single .project-name .project-name-inner h1 {
    font-size: 28px;
  }
  #main .project-single .project-related .project-related-list .item .item-content h3 {
    font-size: 14px;
  }
}
/* main */
.project-related {
  padding: 30px 0;
}
.project-related h2.related_heding {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ced0d2;
}
.project-related .project-related-list {
  margin: -15px;
}
.project-related .project-related-list .item {
  display: block;
  margin: 0 15px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.project-related .project-related-list .item .item-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fdc746;
  z-index: -1;
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.project-related .project-related-list .item .item-content {
  position: absolute;
  top: 50%;
  left: -100%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 0 15px;
}
.project-related .project-related-list .item .item-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  color: #fff;
  text-transform: uppercase;
}
.project-related .project-related-list .item .item-content h4 {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 400;
  margin-top: 0;
  color: #fafafa;
}
.project-related .project-related-list .item .item-content .more {
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  width: 50px;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: #fff solid 2px;
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}
.project-related .project-related-list .item:hover .item-bg {
  left: 0;
  z-index: 1;
}
.project-related .project-related-list .item:hover .item-content {
  left: 0;
  z-index: 2;
}
.paging-section {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: right;
}
.paging-section .wp-pagenavi a,
.paging-section .wp-pagenavi span {
  text-decoration: none;
  border: none;
  padding: 5px 5px;
  width: 32px;
  height: 32px;
  line-height: 22px;
  display: inline-block;
  color: #000;
  text-align: center;
}
.paging-section .wp-pagenavi a.current,
.paging-section .wp-pagenavi span.current {
  background-color: #d0d2d3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.paging-section .wp-pagenavi a.pages,
.paging-section .wp-pagenavi span.pages,
.paging-section .wp-pagenavi a.last,
.paging-section .wp-pagenavi span.last,
.paging-section .wp-pagenavi a.first,
.paging-section .wp-pagenavi span.first {
  width: auto;
}
@media screen and (max-width: 767px) {
  .paging-section {
    text-align: center;
  }
}
.related-item {
  display: block;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
  font-size: 1.5rem;
}
.related-item img {
  width: 100px;
  height: auto;
  float: left;
  margin-right: 10px;
}
.related-item:hover {
  text-decoration: none;
}
.related-item .post-date {
  color: #666;
  font-size: 14px;
}
#callback::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
#callback .close {
  font-size: 3.6rem;
  z-index: 999999;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #FDB813;
  color: #fff;
}
#callback .close:hover {
  background-color: #FDB813;
  color: #fff;
}
#callback .modal-dialog.as-container {
  width: 100%;
  margin: 0 auto;
  /*@media (min-width: 768px) {
			width: 750px;
		}
		@media (min-width: 992px) {
		    width: 970px;
		}
		@media (min-width: 1200px) {
		    width: 1170px;
		}*/
}
#callback .modal-dialog.as-container .modal-content {
  float: none;
  margin: auto;
  background: #e8e9eb url(assets/images/bgmodal.jpg?ver=1.0) center center no-repeat;
  background-size: cover;
}
#callback .modal-dialog.as-container .modal-content .modal-header {
  padding: 5px 15px;
  border-bottom: none;
}
#callback .modal-dialog.as-container .modal-content .modal-body {
  min-height: 100vh;
  padding: 0 15px;
}
#callback .contactform {
  padding: 0 5rem;
  font-size: 15px;
  line-height: 24px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 0 -15px;
}
#callback .contactform .column-form {
  width: calc(50% - 30px);
  margin: 0 15px;
  -webkit-box-ordinal-group: 2;
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}
#callback .contactform .column-form .ct-form {
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.17);
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 2rem 3rem 2rem 3rem;
}
#callback .contactform .column-form .ct-form .wpcf7-form-control-wrap {
  /*display: block;*/
}
#callback .contactform .column-form .ct-form .require {
  color: #f00;
}
#callback .contactform .column-form .ct-form .wpcf7-text {
  display: block;
  width: 100%;
  padding: 2px 5px;
  border: 1px solid #c0c6cf;
  margin-bottom: 5px;
}
#callback .contactform .column-form .ct-form label {
  font-weight: 400;
  display: block;
  margin-bottom: 5px;
}
#callback .contactform .column-form .ct-form textarea {
  width: 100%;
  padding: 5px;
  height: 80px;
  border: 1px solid #c0c6cf;
}
#callback .contactform .column-form .ct-form select {
  width: 100%;
  padding: 5px;
  border: 1px solid #c0c6cf;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 5px;
}
#callback .contactform .column-form .ct-form .select2-container {
  width: 100% !important;
}
#callback .contactform .column-form .ct-form .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #c0c6cf;
}
#callback .contactform .column-form .ct-form .select2-container .select2-search--inline {
  display: block;
  width: 100%;
}
#callback .contactform .column-form .ct-form .select2-container--default .select2-selection--multiple {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#callback .contactform .column-form .ct-form .select2-container--default .select2-search--inline .select2-search__field {
  width: 100% !important;
  margin: 0;
}
#callback .contactform .column-form .ct-form .wpcf7-submit {
  display: block;
  margin: 0 auto;
  background: #FDB813 url(assets/images/envelope.png) 20px 8px no-repeat;
  color: #000;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-transform: uppercase;
  border: none;
  padding: 8px 20px 8px 67px;
}
#callback .contactform .column-form .ct-form .wpcf7-submit:hover {
  background-color: #fdc746;
  color: #000;
}
#callback .contactform .column-form .ct-form .wpcf7-submit.disabled {
  background-color: #eee;
  color: #000;
}
#callback .contactform .column-info {
  width: calc(50% - 30px);
  margin: 0 15px;
  -webkit-box-ordinal-group: 1;
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
  position: relative;
}
#callback .contactform .column-info .ct-info {
  font-size: 15px;
  padding-top: 40px;
  color: #666;
}
#callback .contactform .column-info .ct-info .ct-logo {
  display: block;
  width: 230px;
  height: 60px;
  background: url(https://www.saokim.com.vn/wp-content/uploads/2020/04/logo-saokim-cong-ty.png) center center no-repeat;
  text-align: left;
  text-indent: -9999px;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 40px;
}
#callback .contactform .column-info .ct-info h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}
#callback .contactform .column-info .ct-info .info-head {
  background: url(assets/images/buiding.png) left top no-repeat;
  height: 32px;
  font-weight: 600;
  padding-left: 40px;
  font-size: 18px;
  margin-bottom: 10px;
  padding-top: 5px;
}
#callback .contactform .column-info .ct-info .info-email {
  background: url(assets/images/mail.png) left top no-repeat;
  height: 32px;
  font-weight: 600;
  padding-left: 40px;
  font-size: 18px;
  margin-bottom: 10px;
  padding-top: 5px;
}
#callback .contactform .column-info .ct-info .info-txt {
  line-height: 3.2rem;
  font-size: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #callback {
    height: 100%;
  }
  #callback .modal-dialog.as-container .modal-content {
    background-position: bottom right;
  }
  #callback .modal-dialog.as-container .modal-content .modal-header {
    padding: 5px 15px;
    border-bottom: none;
  }
  #callback .modal-dialog.as-container .modal-content .modal-body {
    padding: 0;
  }
  #callback .contactform {
    padding: 0;
    font-size: 14px;
    margin: 0;
  }
  #callback .contactform .column-form {
    width: 100%;
    margin: 0 0 30px;
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  #callback .contactform .column-form .ct-form {
    padding: 15px;
  }
  #callback .contactform .column-form .ct-form textarea {
    height: 60px;
  }
  #callback .contactform .column-info {
    width: 100%;
    margin: 0 0 30px;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  #callback .contactform .column-info .ct-info {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
}
.contact-loading {
  color: #FDB813;
  font-size: 16px;
  text-align: center;
}
/* FOOTER SECTION */
#bottom {
  height: 176px;
  background: #FDB813;
  color: #fff;
  position: relative;
}
#bottom #bottom-content {
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
#bottom #bottom-content .bottom-txt {
  color: #fff;
  font-size: 3.8rem;
  line-height: 4.4rem;
  text-align: right;
}
#bottom #bottom-content .bottom-btn a {
  text-transform: uppercase;
  background: #fff;
  color: #000;
  font-weight: 400;
  border: 1px solid #fcb813;
  padding: 10px 20px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
@media screen and (max-width: 991px) {
  #bottom #bottom-content .bottom-txt {
    font-size: 3.2rem;
    line-height: 3.2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  #bottom #bottom-content .bottom-btn {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #bottom #bottom-content .bottom-txt {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}
#footer {
  padding: 4rem 0 0;
  font-size: 1.5rem;
  color: #666;
  overflow: hidden;
}
#footer .panel-group {
  display: block;
  margin: 0 -15px;
}
#footer .panel-group .panel {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#footer .panel-group .panel.panel-default {
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
#footer .panel-group .panel.panel-default .panel-heading {
  color: #000;
  background-color: #fff;
  border-color: transparent;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#footer .panel-group .panel.panel-default .panel-heading .panel-title > a {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
#footer .panel-group .panel.panel-default .panel-heading .panel-title > a .arrow {
  float: right;
  margin-right: 5px;
  font-size: 16px;
  display: none;
}
#footer .panel-group .panel.panel-default .panel-collapse .tag-style ul {
  padding: 0;
  list-style: none;
  margin: -5px;
}
#footer .panel-group .panel.panel-default .panel-collapse .tag-style ul li {
  float: left;
  margin: 5px;
  white-space: nowrap;
}
#footer .panel-group .panel.panel-default .panel-collapse .tag-style ul li a {
  font-size: 14px;
  display: block;
  color: #000;
  background: #f9b825;
  padding: 5px;
  border-radius: 4px;
  line-height: 1.1em;
}
#footer .panel-group .panel.panel-default .panel-collapse .tag-style ul li a:hover {
  color: #fff;
}
#footer .panel-group .panel.panel-default .panel-collapse .tag-style ul:before,
#footer .panel-group .panel.panel-default .panel-collapse .tag-style ul:after {
  content: '';
  display: block;
  clear: both;
}
#footer .panel-group .panel.panel-default .panel-collapse .panel-body:not(.tag-style) {
  border-top: none;
  /*padding: 15px 0;*/
}
#footer .panel-group .panel.panel-default .panel-collapse .panel-body:not(.tag-style) ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#footer .panel-group .panel.panel-default .panel-collapse .panel-body:not(.tag-style) ul li {
  padding: 5px 0 5px 2.4rem;
  line-height: 2.4rem;
  font-size: 1.5rem;
  /*white-space: nowrap;
							    overflow:hidden !important;
							    text-overflow: ellipsis;*/
  position: relative;
}
#footer .panel-group .panel.panel-default .panel-collapse .panel-body:not(.tag-style) ul li:before {
  content: '\f0da';
  font-family: 'icomoon';
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  color: #FDB813;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}
#footer .panel-group .panel.panel-default .panel-collapse .panel-body:not(.tag-style) ul li a {
  color: #666;
}
#footer .panel-group .panel.panel-default .panel-collapse .panel-body:not(.tag-style) ul li:hover a {
  color: #FDB813;
}
#footer .clearfooter {
  display: none;
}
#footer #footer-right #footer-logo {
  display: block;
  width: 186px;
  margin-bottom: 20px;
}
#footer #footer-right h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 0 10px;
  padding: 0;
  font-weight: 600;
  color: #000;
}
#footer #footer-right b,
#footer #footer-right strong {
  color: #000;
}
#footer #footer-right .kksr-legend {
  font-size: 11px !important;
}
#footer .socials {
  padding: 20px 0;
  text-align: center;
}
#footer .socials .social {
  display: inline-block;
  text-decoration: none;
  width: 44px;
  height: 44px;
  line-height: 44px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  text-align: center;
  border: #a1a1a4 solid 1px;
  margin: 0 7.5px;
  color: #a1a1a4;
  font-size: 20px;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
#footer .socials .social:hover {
  color: #FDB813;
  border-color: #FDB813;
}
#footer .socials .social.ico-facebook:hover {
  color: #4267b2;
  border-color: #4267b2;
}
#footer .socials .social.ico-youtube:hover {
  color: #ff0000;
  border-color: #ff0000;
}
#footer .socials .social.ico-twitter:hover {
  color: #1da1f2;
  border-color: #1da1f2;
}
#footer .socials .social.ico-linkedin:hover,
#footer .socials .social.ico-linkedin2:hover {
  color: #0084bf;
  border-color: #0084bf;
}
#footer #copyright {
  background-color: #f5f5f5;
  color: #666;
  padding: 10px 0;
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
}
/* footer */
.project-container .loader-container,
.project-container .item-center {
  text-align: center;
}
.project-container .project-item {
  padding-top: 15px;
  padding-bottom: 15px;
}
.project-container .project-item .holder {
  padding-top: 80%;
}
.project-container .project-item .holder .back_ground {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s all;
  background-color: #FDB813;
}
.project-container .project-item .project-item-img {
  position: relative;
  margin-bottom: 10px;
  border: 1px solid #cfcfcf;
}
.project-container .project-item .project-item-img .content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 15px;
  transition: 0.3s all;
}
.project-container .project-item .project-item-img .content > *:first-child {
  margin-top: auto;
}
.project-container .project-item .project-item-img .content > *:last-child {
  margin-bottom: auto;
}
.project-container .project-item .project-item-img .content .btn {
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  padding: 10px 30px;
  border-color: #fff;
  margin-top: 40px;
  color: #fff;
  text-transform: uppercase;
  border-width: 2px;
}
.project-container .project-item .project-item-img:hover .content {
  opacity: 1;
}
.project-container .project-item .project-item-img:hover .back_ground {
  opacity: 0.65;
}
@media (max-width: 992px) {
  .project-container .project-item .project-item-img .content {
    display: none;
  }
  .project-container .project-item .project-item-img .back_ground {
    display: none;
  }
}
.project-container .project-item .title {
  font-size: 20px;
  font-weight: 700;
}
.project-container .project-item .service {
  font-size: 14px;
  text-transform: uppercase;
}
.project-container .project-item:nth-child(3n+1) {
  clear: both;
}
@media (max-width: 992px) {
  .project-container .project-item:nth-child(3n+1) {
    clear: none;
  }
  .project-container .project-item:nth-child(2n+1) {
    clear: both;
  }
}
.project-container .project_slide .project-item {
  clear: none;
  padding: 15px;
}
.project-readmore {
  padding-top: 30px;
}
.project-readmore .viewmore {
  font-size: 18px;
  color: #666;
  text-align: center;
}
.project-readmore .viewmore .icon-sort-down {
  color: #fdb813;
  font-size: 30px;
}
.holder {
  position: relative;
  display: block;
  padding-top: 70%;
}
.holder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/** top header **/
.sticky .top-header.stik-header {
  transform: translateY(0);
}
.top-header {
  padding: 10px 0;
  font-size: 18px;
  position: relative;
}
.top-header.stik-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  transition: 0.3s all;
}
.top-header.stik-header .slogo img {
  height: 45px;
}
.top-header .wrap-search {
  float: left;
  position: relative;
  z-index: 300;
}
.top-header .wrap-search form {
  position: relative;
  width: 30px;
  height: 30px;
  margin-top: 7px;
}
.top-header .wrap-search form input[type="text"] {
  left: 0;
  padding-left: 30px;
  padding-right: 10px;
  position: absolute;
  transition: .3s all;
  opacity: 0;
  top: -4px;
  height: 38px;
  width: 0;
}
.top-header .wrap-search form input[type="text"]:focus {
  width: 230px;
  opacity: 1;
}
.top-header .wrap-search form button {
  font-size: 16px;
  line-height: 30px;
  width: 30px;
  position: absolute;
  left: 0;
  background: none;
  border: none;
}
.top-header .wrap-search form:hover input[type="text"] {
  width: 230px;
  opacity: 1;
}
.top-header .wraps-info {
  float: right;
}
.top-header .wraps-info .info-menu {
  float: left;
  padding-top: 8px;
}
.top-header .wraps-info .info-menu span.strong {
  font-weight: 700;
}
.top-header .wraps-info .info-menu a {
  display: inline-block;
}
.top-header .wraps-info .info-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.top-header .wraps-info .info-menu ul li {
  float: left;
  margin-right: 30px;
}
.top-header .wraps-info .info-menu ul li span,
.top-header .wraps-info .info-menu ul li a {
  vertical-align: middle;
}
.top-header .wraps-info .btn-lienhe {
  float: right;
}
.top-header .theme-icons {
  font-size: 28px;
  vertical-align: middle;
}
.btn-brand .theme-icons,
.btn-green .theme-icons {
  margin-right: 10px;
  font-size: 28px;
  vertical-align: middle;
}
.btn-brand .theme-icons.icon-email3,
.btn-green .theme-icons.icon-email3 {
  margin-top: -9px;
  margin-bottom: -9px;
  font-size: 40px;
}
.lienhe-mobile {
  display: none;
}
.lienhe-mobile .btn-lienhe {
  margin: auto 0 auto auto;
}
.bg-grey {
  background-color: #f5f5f5;
}
.break-banner {
  height: 41rem;
  position: relative;
  background: url(assets/images/tuvan_bg.png) bottom center no-repeat;
  background-size: cover;
}
.break-banner .center-top {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  z-index: 2;
  text-align: center;
}
.break-banner .center-top .tit-heading {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.break-banner .center-top .tit-sub-heading {
  font-size: 18px;
  color: #666666;
  line-height: 1.3em;
  width: 515px;
  max-width: 100%;
  margin: auto;
}
.break-banner .center-top .banner-desc {
  width: 460px;
  max-width: 100%;
  font-size: 1.5rem;
  color: #000;
}
.break-banner .center-top .btn-action {
  margin-top: 3rem;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 2em;
  padding-right: 2em;
}
.break-banner .banner-ovelay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
  display: none;
}
@media screen and (max-width: 991px) {
  .break-banner .banner-ovelay {
    display: block;
  }
}
.widget {
  margin-bottom: 20px;
}
.widget.nopadding {
  padding: 0;
}
.widget.nomargin {
  margin: 0;
}
.widget .widget-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}
.footer {
  border-top: 5px solid #fab900;
  background: url('assets/images/footer_bg.png') no-repeat center #fafafa;
  background-size: auto;
}
.footer .widget-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.footer .footer-logo img {
  max-width: 200px;
}
.footer strong {
  color: #000;
}
.footer .bottom-footer .lien_he strong {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.footer .bottom-footer .lien_he strong a {
  font-size: 20px;
}
.footer .bottom-footer .lien_he .icon {
  width: 20px;
  text-align: center;
  line-height: 20px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  vertical-align: middle;
  display: inline-block;
  font-size: 14px;
  margin-right: 5px;
}
.footer-widgets .widget .menu {
  padding: 0;
}
.footer-widgets .widget .menu li {
  padding: 5px 0;
  list-style: none;
}
.footer-widgets .widget .menu a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
}
.footer-widgets .widget .menu a:before {
  content: '';
  display: inline-block;
  position: absolute;
  border-width: 4px 7px;
  border-style: solid;
  border-color: transparent transparent transparent #fdb813;
  left: 0;
  top: 8px;
}
#support {
  position: fixed;
  z-index: 1000;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -55%);
  -moz-transform: translate(0, -55%);
  -ms-transform: translate(0, -55%);
  -o-transform: translate(0, -55%);
  /*
	@media screen and (max-width:767px) {
		top: auto;
		left: 0;
		right: 0;
		bottom: 0;
		.translate(0,0);
		background-color: rgba(0, 0, 0, 0.5);
	    text-align: left;
	    padding: 10px 15px;
		.support-inner{
			height: auto;
			position: static;
			.ul{
				position: static;
				top: auto;
				right: auto;
              .li{
                  margin-bottom: 0;
                  margin-right: 15px;
                  float: left;
                  .support-title, .support-content{
                  	display: none;
                  }
                  a.support-menu{
                  	width: 36px;
                  	height: 36px;
                  	line-height: 36px;
                  	background-color: @color-brand;

                  	[class^='icon-']{
						font-size: 20px;
						line-height: 36px;
					}
                  	&.extra{
                  		width: auto;
                  		.border-radius(20px);
                  		text-align: left;
                  		padding-left:20px;
                  		padding-right: 20px;
                  		.show-if-small{
                  			display: inline-block;
                  			float: right;
                  			padding-left: 5px;
                  			line-height: 36px;
                  			font-size: 14px;
                  		}
                  	}
                  }
              	} //.li
			}//.ul
		} //.support-inner
	} //767
	*/
}
#support .support-inner {
  position: relative;
  height: 190px;
}
#support .support-inner .ul {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}
#support .support-inner .ul .li {
  margin-bottom: 20px;
}
#support .support-inner .ul .li a.support-menu {
  display: block;
  text-decoration: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #61c357;
  color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#support .support-inner .ul .li a.support-menu [class^='icon-'] {
  font-size: 28px;
  line-height: 50px;
}
#support .support-inner .ul .li a.support-menu .show-if-small {
  display: none;
}
#support .support-inner .ul .li:last-child {
  margin-bottom: 0;
}
#support .support-inner .ul .li.current a.support-menu,
#support .support-inner .ul .li:hover a.support-menu {
  position: relative;
  background-color: rgba(253, 184, 19, 0.9);
  color: #000;
}
#support .support-inner .ul .li .support-content {
  display: block;
  width: 0;
  position: absolute;
  top: 0;
  right: 90px;
  bottom: 0;
  min-height: 180px;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: right 0.5s linear;
  -moz-transition: right 0.5s linear;
  -ms-transition: right 0.5s linear;
  -o-transition: right 0.5s linear;
  transition: right 0.5s linear;
  overflow: hidden;
}
#support .support-inner .ul .li .support-content .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 15px;
  height: 100%;
  width: calc(100% - 15px);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgba(253, 184, 19, 0.9);
  line-height: normal;
  /*&:after{
							content: '';
							position: absolute;
							top: 15px;
							right: -19px;
							display: block;
							.make-arrow(10px);
							border-left-color: rgba(red(@color-brand), green(@color-brand), blue(@color-brand), 0.9);
						}*/
}
#support .support-inner .ul .li .support-content .inner .sp-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
#support .support-inner .ul .li .support-content .inner .sp-location {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
#support .support-inner .ul .li .support-content .inner a {
  font-size: 16px;
  line-height: 24px;
  width: auto;
  height: auto;
  display: inline-block;
  color: #000;
}
#support .support-inner .ul .li .support-title {
  display: block;
  position: absolute;
  top: 50%;
  right: 90px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  width: 0;
  text-align: center;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: rgba(253, 184, 19, 0.9);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  -webkit-transition: right 0.5s linear;
  -moz-transition: right 0.5s linear;
  -ms-transition: right 0.5s linear;
  -o-transition: right 0.5s linear;
  transition: right 0.5s linear;
  /*overflow: hidden;*/
}
#support .support-inner .ul .li.support-hotline:hover .support-content {
  width: 215px;
  right: 50px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
#support .support-inner .ul .li.support-hotline:hover .support-content .inner {
  padding: 15px;
}
#support .support-inner .ul .li.support-common:hover {
  position: relative;
}
#support .support-inner .ul .li.support-common:hover .support-title {
  width: auto;
  white-space: nowrap;
  min-width: 200px;
  right: 65px;
  padding: 5px 15px;
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
@media screen and (max-width: 320px) {
  #support .support-inner .ul .li {
    margin-right: 8px;
  }
  #support .support-inner .ul .li a.support-menu {
    width: 32px;
    height: 32px;
    line-height: 32px;
  }
  #support .support-inner .ul .li a.support-menu [class^='icon-'] {
    line-height: 32px;
  }
  #support .support-inner .ul .li a.support-menu.extra {
    padding-left: 15px;
    padding-right: 15px;
  }
  #support .support-inner .ul .li a.support-menu.extra .show-if-small {
    line-height: 32px;
    font-size: 12px;
  }
}
.mobile-phone-contact {
  display: none;
}
.support-menu {
  -webkit-animation: uptocallmini 1.5s 0s ease-out infinite;
  animation: uptocallmini 1.5s 0s ease-out infinite;
}
.support-menu .icon-phone {
  -webkit-animation: calltrap_spin 3s infinite linear;
  animation: calltrap_spin 3s infinite linear;
  display: inline-block;
  font-size: 35px;
  margin: 5px;
  background-position-y: 1em;
}
.btn-border {
  border-radius: 3em;
}
.project-readmore {
  padding-top: 30px;
}
.project-readmore .viewmore {
  font-size: 18px;
  color: #666;
  text-align: center;
}
.project-readmore .viewmore .icon-sort-down {
  color: #fdb813;
  font-size: 30px;
}
.align-center {
  text-align: center;
}
.project_nav_desk {
  padding-top: 45px;
  margin: 0 -5px;
}
.project_nav_desk > .item {
  float: left;
  white-space: nowrap;
  border: 1px solid #dedede;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.3;
  margin: 5px;
}
.project_nav_desk > .item > a.link {
  display: inline-block;
  padding: 5px 10px 5px 10px;
}
.project_nav_desk > .item > a.remove {
  padding: 5px 10px 5px 5px;
}
.project_nav_desk > .item.current {
  background: #fab900;
  color: #fff;
  border-color: #fab900;
}
/* Go to top */
#gotop {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 9999;
  width: 46px;
  height: 46px;
  display: none;
}
#gotop a {
  display: block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0 1px 8px 0px rgba(145, 145, 145, 0.75);
  -moz-box-shadow: 0 1px 8px 0px rgba(145, 145, 145, 0.75);
  box-shadow: 0 1px 8px 0px rgba(145, 145, 145, 0.75);
  background-color: #FDB813;
  color: #fff;
  text-align: center;
  font-size: 32px;
  text-decoration: none !important;
  position: relative;
}
#gotop:hover a {
  background-color: #FDB813;
}
@media screen and (min-width: 768px) {
  #gotop {
    right: 30px;
  }
}
/* Custom, iPhone Retina */
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  #footer .panel-group .panel.panel-default .panel-collapse .panel-body ul li {
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
  }
}
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  #overlay,
  #overlay.active {
    display: none;
  }
  #mobile-nav,
  #mobile-nav.active {
    left: -100%;
  }
}
/*==========  Non-Mobile First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1199px) {
  /*html{font-size: 58.59375%;}*/
  font-size: 9.375px;
  #header {
    /*.box-shadow(0px 0px 5px 0px rgba(216,216,216,1));*/
  }
  #header #header-top #header-top-right .menu {
    display: none;
  }
  #header #header-nav #header-logo {
    margin-left: 40px;
  }
  #header #header-nav #header-logo #logo.hidelogo {
    display: none;
  }
  #header #header-nav #header-menu {
    display: none;
  }
  #header #header-nav #mobile-toggle {
    display: inline-block;
  }
  .topmenu li {
    padding: 0 7px;
  }
  .topbanner .banner-text-image {
    height: 400px;
  }
  .topbanner .banner-text-image .banner-content {
    z-index: 2;
  }
  .topbanner .banner-text-image .banner-content .banner-text.bn-left,
  .topbanner .banner-text-image .banner-content .banner-text.bn-right {
    float: none;
    width: 100%;
  }
  .topbanner .banner-text-image .banner-content .banner-text h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .whyus2 .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .home-solution .panel-group .panel.panel-default {
    height: auto;
    width: calc(33.33333% - 30px);
  }
  /** onego **/
  .top-header {
    padding: 4px 0;
    background: none;
    border-bottom: 1px solid #d7d7d7;
    font-size: 15px;
  }
  .top-header .wrap-search {
    display: none;
  }
  .top-header .wraps-info {
    float: none;
  }
  .top-header .wraps-info li:first-child {
    display: none;
  }
  .top-header .wraps-info .info-menu {
    padding-top: 0;
  }
  .top-header .wraps-info .theme-icons {
    font-size: 18px;
  }
  .top-header .btn-lienhe {
    display: none;
  }
  .top-header .langs {
    float: right;
  }
  .top-header .langs a {
    width: 24px;
    height: 14px;
    background: url(assets/images/en.png) no-repeat center;
    display: inline-block;
    vertical-align: middle;
  }
  .top-header .wraps-info .info-menu ul li {
    margin-right: 0;
  }
  #header #header-nav-wrap {
    box-shadow: none;
  }
  .header-nav .langs {
    display: none!important;
  }
  .lienhe-mobile {
    display: block;
    float: right;
    padding-top: 8px;
    margin-right: 0;
    margin-left: auto;
  }
  #header #header-nav #header-logo #logo img {
    margin-top: 7px;
  }
  .header-tuyendung #mobile-toggle {
    display: inline-block;
  }
  .header-tuyendung .responsive_menu {
    display: none;
  }
  .header-tuyendung .logo {
    margin-left: 30px;
  }
  .header-tuyendung .logo img {
    height: 46px;
    margin-top: 7px;
    margin-bottom: 7px;
  }
  .header-tuyendung .btn {
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header-tuyendung .btn .icon-contact {
    width: 18px;
    height: 18px;
  }
  #header-nav-wrap.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 888;
    -webkit-box-shadow: 0px 0px 1px 0px rgba(225, 225, 225, 0.75);
    -moz-box-shadow: 0px 0px 1px 0px rgba(225, 225, 225, 0.75);
    box-shadow: 0px 0px 1px 0px rgba(225, 225, 225, 0.75);
  }
  #header-nav-wrap.sticky #header-nav #header-logo {
    height: 60px;
  }
  #header-nav-wrap.sticky #header-nav #header-logo #logo {
    height: 60px;
  }
  #header-nav-wrap.sticky #header-nav #header-logo #logo img {
    height: 40px;
    margin: 10px 0;
  }
  #header-nav-wrap.sticky #header-nav .topmenu li a {
    line-height: 60px;
  }
  .top-header.stik-header {
    display: none;
  }
  .section_lienhe {
    background-image: none;
    background-color: #fab900;
    text-align: center;
  }
  .section_lienhe img {
    margin: auto;
  }
}
@media only screen and (max-width: 991px) {
  #header #header-top {
    border-bottom: #EDEDED solid 1px;
  }
  #header #header-top #header-top-content {
    text-align: left;
  }
  #header #header-top #header-top-content .header-top-hotline {
    display: inline-block;
    margin-right: 0;
  }
  #header #header-top #header-top-content .header-top-hotline .txt {
    display: none;
  }
  #header #header-top #header-top-content .header-top-hotline .phone {
    display: inline-block;
  }
  #header #header-top #header-top-content #header-top-email {
    display: none;
  }
  #header #header-top #header-top-content .language-chooser {
    float: right;
  }
  #header #header-top #header-top-content .qtranxs_widget_end {
    display: none;
  }
  .topbanner .banner-text-image {
    height: 350px;
  }
  .topbanner .banner-text-image .banner-blur {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
  }
  .topbanner .banner-text-image .banner-content {
    z-index: 2;
  }
  .topbanner .banner-text-image .banner-content .banner-text.bn-left,
  .topbanner .banner-text-image .banner-content .banner-text.bn-right {
    float: none;
    width: 100%;
    text-align: center;
  }
  .topbanner .banner-text-image .banner-content .banner-text h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .whyus1 .whyus-counter .counter-item .number-group,
  .whyus3 .whyus-counter .counter-item .number-group {
    margin-bottom: 10px;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-number,
  .whyus3 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-after,
  .whyus3 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .whyus1 .whyus-counter .counter-item .counter-text,
  .whyus3 .whyus-counter .counter-item .counter-text {
    font-size: 1.6rem;
  }
  .whyus2 .whyus-counter .counter-item .number-group {
    margin-bottom: 10px;
  }
  .whyus2 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus2 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .whyus2 .whyus-counter .counter-item .counter-text {
    font-size: 1.6rem;
  }
  .home-solution .panel-group .panel.panel-default {
    width: calc(50% - 30px);
  }
  .home-project .project-container .project-item .project-item-img .project-item-content .more {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    line-height: 28px;
    font-size: 16px;
  }
  .home-project .project-container .project-item .project-item-img .project-item-content .preview {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 16px;
  }
  .home-insider-blog {
    margin-bottom: 30px;
  }
  .home-insider-blog h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .all-services .panel-group {
    margin: -15px 0;
  }
  .all-services .panel-group .panel.panel-default {
    width: 100%;
    margin: 15px 0;
  }
  .sticky-services .container {
    width: 100%;
  }
  .tuyendung-moitruonglamviec .item-list .item .col-img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .tuyendung-moitruonglamviec .item-list .item .col-align-right img {
    float: none;
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col img {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col .item-txt {
    padding-left: 0;
    padding-right: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
    position: static;
    top: auto;
    display: block;
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col .item-txt .txt-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col .item-txt .txt-block .txt-inner {
    position: static;
    top: 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col .item-txt h4 {
    font-weight: 600;
    font-size: 1.8rem;
  }
  .tuyendung-moitruonglamviec .item-list.round .item .item-col .item-txt {
    padding-right: 0;
    padding-left: 30px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .sukhacbiet-faq {
    margin: 30px 0;
  }
  .sukhacbiet-faq .controls {
    margin-bottom: 20px;
  }
  .sukhacbiet-faq .controls ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .sukhacbiet-faq .controls ul li {
    padding: 0 15px;
    height: 48px;
    line-height: 48px;
    color: #211d1e;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    background-color: #fafafa;
    margin-bottom: 3px;
  }
  .sukhacbiet-faq .controls ul li.mixitup-control-active {
    background: #fafafa;
    color: #FDB813;
  }
  .sukhacbiet-faq .controls ul li.mixitup-control-active:before {
    content: '';
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    border: 10px solid transparent;
    top: calc(50% + 5px);
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    border-top-color: #FDB813;
  }
  #main #sidebar {
    padding-left: 15px;
  }
  #main #content {
    padding-right: 15px;
    border-right: none;
  }
  #bottom #bottom-content .bottom-txt {
    font-size: 3.2rem;
    line-height: 3.2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  #bottom #bottom-content .bottom-btn {
    text-align: center;
  }
  #footer .clearfooter {
    display: block;
  }
  #footer #footer-1,
  #footer #footer-2,
  #footer #footer-3 {
    width: 50%;
  }
  #footer .panel-group .panel.panel-default .panel-heading .panel-title a {
    font-size: 1.4rem;
  }
  #footer #footer-right {
    width: 50%;
    font-size: 12px;
  }
  #footer #footer-right h2 {
    font-size: 1.4rem;
  }
  .tuyen_dung_content .wrap_content:before {
    display: none;
  }
  .home-project .project-container .project-item .title {
    font-size: 16px;
  }
  .slide_mobile .col-md-3 {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .home-testimonial .item {
    text-align: center;
  }
  .home-testimonial .item .item_wrap:after {
    display: none;
  }
  .home-testimonial .item .item-client-info {
    display: block;
  }
  .home-testimonial .item .item-client-info .item-client-img {
    max-width: 100%;
  }
  .home-testimonial .item .item-client-info .item-client-img img {
    margin: auto;
  }
  .home-testimonial .item .item-client-info .item-client-content,
  .home-testimonial .item .item-client-info .item-client-logo {
    width: 100%;
    padding: 0;
    max-width: 100%;
  }
  .banner_slider .wrap-img {
    display: none;
  }
  .banner_slider .wrap-text {
    width: 100%;
    text-align: center;
  }
  .banner_slider .wrap-text ._wrap {
    width: 100%;
  }
  .banner_slider .wrap-text ._wrap p img.size-full {
    display: block;
    margin-top: 20px;
  }
  .banner_slider .item_wrap:before {
    display: none;
  }
  .banner_slider.style_bg .item_wrap:after {
    content: '';
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .banner_slider.style_bg .item_wrap .wrap-text {
    position: relative;
    z-index: 2;
    color: #fff;
  }
  .banner_slider.style_bg .item_wrap .wrap-text h2,
  .banner_slider.style_bg .item_wrap .wrap-text h1 {
    color: #fff;
  }
  .saokim_service .col-md-3 {
    /*flex: 0 0 50%;
			max-width: 50%;*/
  }
  .footer-widgets .widget-title {
    text-align: center;
    font-size: 16px;
    background: #efefef;
    position: relative;
    line-height: 1.2;
    padding: 5px;
    margin-bottom: 0;
  }
  .footer-widgets .widget-title:after {
    content: "\f0d7";
    font-family: 'icomoon' !important;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer-widgets .widget .content {
    display: none;
  }
  .footer-widgets .widget.open .content {
    display: block;
    padding: 10px 20px;
    border: 1px solid #fab900;
  }
  .footer-widgets .widget.open .widget-title {
    background: #fab900;
  }
  .footer-widgets .widget.open .widget-title:after {
    content: "\f0de";
  }
  .blog-grid .col-md-3 {
    width: 50%;
    flex: 0 0 50%;
  }
  .whyus1 .sub-headline {
    text-align: center;
    padding-top: 15px;
  }
  .solution-branch .solution-branch-container .item:nth-child(2n+1) {
    clear: both;
  }
  .section-item .readmore {
    text-align: center;
  }
  .blog-grid .row:not(.slide_mobile) .item_wrap:nth-child(2n+1) {
    clear: both;
  }
}
/* Small Devices, Tablets */
@media screen and (max-width: 767px) {
  html {
    font-size: 52.734%;
  }
  body {
    padding-bottom: 50px;
  }
  #header #header-top #header-top-content .menu > li:not(.language) {
    display: none;
  }
  #header #header-nav #header-contact .header-contact-content .header-search-icon {
    display: none;
  }
  #header #header-nav .langs {
    display: none;
  }
  .topbanner .banner-text-image {
    min-height: 0;
    height: auto;
  }
  .topbanner .banner-text-image .banner-content {
    position: relative;
    top: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    padding: 50px 0;
  }
  .topbanner .banner-text-image .banner-content .banner-text.bn-left,
  .topbanner .banner-text-image .banner-content .banner-text.bn-right {
    text-align: center;
  }
  .topbanner .banner-text-image .banner-content .banner-text h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .topbanner .banner-text-image .banner-content .banner-text .banner-btn {
    margin-top: 20px;
  }
  .topbanner .banner-text .bn-txt-desc {
    display: none;
  }
  .topbanner .banner-text h2,
  .topbanner .banner-text h1 {
    color: #fff;
  }
  .whyus1 .whyus-counter .counter-item .number-group,
  .whyus3 .whyus-counter .counter-item .number-group {
    margin-bottom: 0px;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-number,
  .whyus3 .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus1 .whyus-counter .counter-item .number-group .counter-after,
  .whyus3 .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .whyus2 {
    background: #fafafa;
  }
  .whyus2 .lydo {
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    padding: 0;
    margin: 0 0 30px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .whyus2 .lydo .lydo-item {
    width: 100%;
    margin: 0;
    border-bottom: #e5e5e5 solid 1px;
    position: relative;
    min-height: 100px;
    counter-increment: itemIndex;
  }
  .whyus2 .lydo .lydo-item .lydo-icon {
    text-align: center;
    width: 80px;
    height: 100%;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: none;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .whyus2 .lydo .lydo-item .lydo-icon img {
    max-width: 40px;
    height: 34px;
    position: absolute;
    top: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .whyus2 .lydo .lydo-item .lydo-icon:after {
    content: counter(itemIndex);
    position: absolute;
    bottom: 3px;
    left: 50%;
    color: #e8e8e9;
    font-size: 4rem;
    font-weight: 700;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .whyus2 .lydo .lydo-item .lydo-text {
    text-align: left;
    /*position: absolute;*/
    padding: 20px 15px 20px 80px;
    /*.translate(0,0);*/
  }
  .whyus2 .lydo .lydo-item:nth-child(1) {
    border-top: #e5e5e5 solid 1px;
  }
  .whyus2 .whyus-counter .whyus-counter .counter-item .number-group {
    margin-bottom: 0px;
  }
  .whyus2 .whyus-counter .whyus-counter .counter-item .number-group .counter-number {
    font-size: 4rem;
  }
  .whyus2 .whyus-counter .whyus-counter .counter-item .number-group .counter-after {
    font-size: 4rem;
  }
  .home-solution .panel-group .panel.panel-default {
    /*width: calc(~'50% - 30px');*/
  }
  .home-project .project-container .project-item .project-item-img .project-item-content h3 {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
  }
  .home-project .project-container .project-item .project-item-img .project-item-content .more {
    width: 30px;
    height: 30px;
    margin-right: 0;
    background-size: 16px 16px;
  }
  .home-project .project-container .project-item .project-item-img .project-item-content .preview {
    display: none;
  }
  .home-insider-blog .insider-container {
    margin-bottom: 30px;
  }
  .home-insider-blog .blog-container ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .home-insider-blog .blog-container ul li a img {
    float: left;
    width: 80px;
    height: auto;
  }
  .all-services .panel-group {
    margin: 0;
  }
  .all-services .panel-group .panel.panel-default {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
    margin: 0 0 10px;
  }
  .all-services .panel-group .panel.panel-default .panel-heading {
    margin: 0;
    padding: 0;
  }
  .all-services .panel-group .panel.panel-default .panel-heading .panel-title {
    background-color: #f5f5f5;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    padding: 10px 15px;
  }
  .all-services .panel-group .panel.panel-default .panel-heading .panel-title a {
    display: block;
  }
  .all-services .panel-group .panel.panel-default .panel-heading .panel-title:after {
    content: '';
    display: inline-block;
    height: 0;
    width: 0;
    border: 6px solid transparent;
    border-top-color: #666;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .all-services .panel-group .panel.panel-default .panel-heading .panel-title.up:after {
    border-top-color: transparent;
    border-bottom-color: #666;
  }
  .all-services .panel-group .panel.panel-default .panel-collapse .panel-body {
    padding: 20px 0 0;
  }
  .all-services .panel-group .panel.panel-default .panel-collapse .panel-body .category-item-img {
    width: 0;
    height: 0;
    float: none;
    display: none;
  }
  .all-services .panel-group .panel.panel-default .panel-collapse .panel-body .category-item-list {
    margin-left: 0;
  }
  .sticky-services .sticky-services-container .item {
    width: calc(50% - 30px);
  }
  .entry .item .item-left,
  .entry .item .item-right {
    width: 100%;
    float: none;
  }
  .entry .item .item-left .item-img {
    margin-bottom: 15px;
  }
  .entry .item .item-right .entry-text {
    display: none;
  }
  .about-nav {
    height: auto;
    background-color: transparent;
  }
  .about-nav .container {
    width: 100%;
    padding: 0;
  }
  .about-nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
  }
  .about-nav ul li {
    display: block;
    width: 33.3333%;
  }
  .about-nhansu .nhansu-container {
    margin: -7.5px;
  }
  .about-nhansu .nhansu-container .nhansu-item {
    width: calc(50% - 15px);
    margin: 7.5px;
  }
  .about-nhansu .nhansu-container .nhansu-item .info {
    left: 10px;
    right: 10px;
  }
  .about-nhansu .nhansu-container .nhansu-item .info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .about-nhansu .nhansu-container .nhansu-item:hover .info {
    bottom: 10px;
  }
  .about-nhansu .nhansu-container .nhansu-item:hover .info .pos {
    font-weight: 400;
  }
  .service-whyus,
  .service-testimonial,
  .service-project {
    padding: 30px 0 0;
  }
  .download-form .modal-content {
    padding: 10px 15px;
  }
  .tuyendung-moitruonglamviec .item-list {
    margin-bottom: 30px;
  }
  .tuyendung-moitruonglamviec .item-list .item {
    display: block;
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col {
    width: 100%;
    position: static;
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col img {
    width: 100%;
    position: static;
    top: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .tuyendung-moitruonglamviec .item-list .item .item-col .item-txt {
    padding-left: 0;
    padding-right: 0;
  }
  .tuyendung-moitruonglamviec .item-list.round .item .item-col .item-txt {
    padding-left: 0;
    padding-right: 0;
  }
  .sukhacbiet-testimonial .testimonial-video .item {
    margin: -20px 0;
  }
  .sukhacbiet-testimonial .testimonial-video .item .item-text {
    width: 100%;
    margin: 20px 0;
    position: static;
  }
  .sukhacbiet-testimonial .testimonial-video .item .item-text .item-text-inner {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .sukhacbiet-testimonial .testimonial-video .item .item-video {
    width: 100%;
    margin: 20px 0;
  }
  .sukhacbiet-testimonial-list .testimonial-list {
    margin: -25px 0;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item {
    width: 100%;
    margin: 25px 0;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item {
    /*grid-row-gap: 50px;
				grid-template-columns: 1fr;*/
    margin: -25px 0;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item .item-img {
    width: 100%;
    margin: 25px 0;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item .item-txt {
    width: 100%;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item .order1 {
    -webkit-order: 1;
    order: 1;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item .order2 {
    -webkit-order: 2;
    order: 2;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item.round .item-img:before {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -45px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .sukhacbiet-quytrinh .quytrinh-list .item.round .item-txt {
    padding-left: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }
  .sukhacbiet-quytrinh .quytrinh-list .item.odd .item-img:before {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -45px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .sukhacbiet-quytrinh .quytrinh-list .item.odd .item-txt {
    padding-right: 0;
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
  }
  #bottom #bottom-content .bottom-txt {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  #footer {
    background-position: center right;
  }
  #footer .panel-group .panel.panel-default .panel-heading .panel-title a {
    font-size: 1.4rem;
  }
  #footer #footer-right h2 {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  #footer #footer-right .socials {
    margin-right: 5px !important;
    margin: 0 -5px;
  }
  #footer #footer-right .socials .social {
    margin: 0 2.5px;
  }
  #footer .langs a {
    padding: 10px 15px;
    font-size: 1.6rem;
    position: relative;
    display: block;
  }
  #footer .langs a span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: url(assets/images/eng_icon.png) no-repeat center;
    vertical-align: middle;
    display: inline-block;
    background-size: auto 100%;
    margin-right: 5px;
  }
  .support .dropup {
    border: 5px solid #61c357;
    border-radius: 50%;
  }
  .support-menu {
    animation: none;
    border: 1px solid #fff;
    box-shadow: 0 0px 0px 5px #61c357;
  }
  .support-menu .icon-phone {
    animation: none;
  }
  .header-lading {
    text-align: center;
  }
  .header-lading .logo {
    width: 178px;
    display: block;
    margin: auto;
    float: none;
  }
  .header-lading .info {
    padding-left: 0;
    background-image: none;
    float: none;
    line-height: 1.2em;
    padding-top: 0;
  }
  .home-banner:before {
    display: none;
  }
  .home-banner .container img {
    float: none;
    width: 100%;
    height: auto;
  }
  .saokim_service .item_wrap {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .saokim_service .item {
    border: 1px solid #dddddd;
  }
  .saokim_service .item .content {
    padding: 10px;
    display: none;
  }
  .saokim_service .item.open {
    border-color: #fab900;
  }
  .saokim_service .item.open .content {
    display: block;
  }
  .saokim_service .item.open .title:after {
    content: "\f0d7";
  }
  .saokim_service .title {
    display: flex;
    padding-right: 50px;
    position: relative;
  }
  .saokim_service .title:after {
    content: "\f0de";
    font-family: 'icomoon' !important;
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 25px;
    transform: translateY(-25%);
    color: #fdb813;
  }
  .saokim_service .title .icon {
    height: auto;
    flex: 0 0 85px;
    height: 80px;
  }
  .saokim_service .title .icon img {
    margin: auto;
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
  }
  .saokim_service .title ._title {
    flex: 0 0 calc(100% - 85px);
    display: flex;
    padding-left: 10px;
  }
  .saokim_service .title h3 {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 16px;
  }
  .saokim_service ul li:before {
    top: 7px;
  }
  .whyus-wrap_text {
    display: flex;
    flex-wrap: wrap;
  }
  .whyus-wrap_text .col-md-8 {
    order: 1;
  }
  .whyus-wrap_text .col-md-4 .sub-headline {
    text-align: center;
  }
  .whyus-counter {
    padding-top: 30px;
  }
  .break-banner .center-top .tit-heading {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .break-banner .center-top .tit-sub-heading {
    font-size: 15px;
  }
  .footer {
    background: #fff;
  }
  .qttk_list .slick-dots button {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
  .qttk_list .slick-dots li {
    margin-left: 25px;
  }
  .service-project .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .service-project .project-container .project-item .title {
    font-size: 16px;
  }
  .service-project .project-container .project-item .project-item-img .content {
    display: none;
  }
  .solution-branch .solution-branch-container .item {
    width: 50%;
  }
  .header-tuyendung .logo img {
    width: 135px;
  }
  .histories {
    margin-left: -15px;
    margin-right: -15px;
    max-width: none;
    width: auto;
  }
  .histories .tab_nav {
    display: none;
  }
  .histories .tabpanel {
    padding: 0 15px;
  }
  .histories .tabpanel .wrap_icon {
    display: block;
    margin: 120px 0 60px;
    border-top: 1px solid #000;
    margin-left: -15px;
    margin-right: -15px;
  }
  .tamnhin_sumenh {
    text-align: center;
  }
  .tamnhin_sumenh h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .tamnhin_sumenh h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .tamnhin_sumenh .item:nth-child(2n) {
    direction: rtl;
  }
  .tamnhin_sumenh .item:nth-child(2n) h3:after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
  .project-container.row {
    margin-left: -8px;
    margin-right: -8px;
  }
  .project-container.row .col-md-4 {
    padding: 8px;
  }
  .project-container .project-item-img .content,
  .project-container .project-item-img .back_ground {
    display: none!important;
  }
  .section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .tuyendung_list .item {
    display: block;
    border-width: 1px;
  }
  .tuyendung_list .item .action {
    max-width: 100%;
    margin-top: 15px;
  }
  .tuyendung_list .item .location {
    padding: 0;
    margin-top: 15px;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 575px) {
  #header #header-nav #header-logo #logo {
    width: 160px;
    height: auto;
  }
  #header #header-nav #header-contact .header-contact-content .btn-contact {
    font-weight: 400;
    padding: 6px 12px;
  }
  .topbanner .banner-text-image .banner-content {
    padding: 30px 0;
  }
  .topbanner .banner-text-image .banner-content .banner-text h2 {
    font-size: 18px;
    line-height: 24px;
  }
  .topbanner .banner-text-image .banner-content .banner-text h2 strong {
    font-weight: normal;
  }
  .topbanner .banner-text-image .banner-content .banner-text .banner-btn .btn-brand {
    padding: 8px 10px;
    font-size: 14px;
  }
  .whyus3 .whyus-img {
    padding-top: 40px;
  }
  .whyus3 .whyus-img .whyus-button {
    top: 0;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
  .home-solution .panel-group {
    margin: 0;
  }
  .home-solution .panel-group .panel.panel-default {
    height: auto;
    width: 100%;
    margin: 0 0 5px;
  }
  .home-solution .panel-group .panel.panel-default {
    background-color: #fafafa;
    padding: 0;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .home-solution .panel-group .panel.panel-default .panel-heading {
    padding: 0;
    margin: 0;
  }
  .home-solution .panel-group .panel.panel-default .panel-heading .panel-title {
    padding: 0;
    margin: 0;
  }
  .home-solution .panel-group .panel.panel-default .panel-heading .panel-title a {
    height: 80px;
    margin: 0;
    font-size: 16px;
    padding-top: 20px;
    position: relative;
    text-align: left;
  }
  .home-solution .panel-group .panel.panel-default .panel-heading .panel-title a span {
    display: block;
    height: 40px;
    position: relative;
  }
  .home-solution .panel-group .panel.panel-default .panel-heading .panel-title a span span {
    display: block;
    position: absolute;
    top: 50%;
    left: 70px;
    right: 15px;
    height: auto;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
  }
  .home-solution .panel-group .panel.panel-default .panel-heading .panel-title a .solution-icon {
    display: inline-block;
    float: left;
    margin: 0 15px 0;
    width: 40px;
    height: auto;
  }
  .home-solution .panel-group .panel.panel-default .panel-heading .panel-title a .giaiphap-icons {
    display: inline-block;
    float: left;
    margin: 0 15px 0;
  }
  .home-solution .panel-group .panel.panel-default .panel-collapse {
    padding: 0 15px 20px 15px;
    /*panel-bottom*/
  }
  .home-solution .panel-group .panel.panel-default .panel-collapse .panel-body {
    text-align: justify;
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .home-solution .panel-group .panel.panel-default .panel-collapse .panel-bottom {
    position: static;
    bottom: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    margin-left: auto;
    margin-right: auto;
  }
  .home-solution .panel-group .panel.panel-default:hover .panel-heading {
    -webkit-animation-name: none;
    animation-name: none;
    -webkit-animation-duration: 0;
    animation-duration: 0;
  }
  .home-solution .panel-group .panel.panel-default:hover .panel-heading .panel-title .solution-icon {
    display: inline-block;
  }
  .home-solution .panel-group .panel.panel-default:hover .panel-collapse .panel-body {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
  }
  .home-solution .readmore {
    background-color: #fafafa;
    color: #0082d5;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    margin: 5px 0;
  }
  .home-solution .readmore:after {
    border-left-color: #0082d5;
    border-top-color: transparent;
    margin-top: 2px;
  }
  .home-solution .readmore:hover {
    background-color: #FDB813;
    color: #fff;
  }
  .home-solution .readmore:hover:after {
    border-left-color: #fff;
  }
  .sticky-services .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .sticky-services .sticky-services-container {
    margin: 0;
  }
  .sticky-services .sticky-services-container .item {
    width: 50%;
    padding: 15px;
    margin: 0;
  }
  .sticky-services .sticky-services-container .item .item-img {
    width: 100px;
    height: 100px;
  }
  #main #content article.single header .post-cat {
    margin-top: 0;
  }
  #main #content article.single header .post-meta .post-meta-left {
    float: none;
    width: 100%;
  }
  #main #content article.single header .post-meta .post-meta-right {
    margin-left: 40px;
    text-align: left;
  }
  .about-nav ul li {
    font-size: 14px;
  }
  .about-nhansu .nhansu-container .nhansu-item .info {
    left: 5px;
    right: 5px;
    padding: 20px 5px;
  }
  .about-nhansu .nhansu-container .nhansu-item .info h3 {
    font-size: 13px;
    white-space: nowrap;
  }
  .about-nhansu .nhansu-container .nhansu-item .info .pos {
    font-size: 12px;
  }
  .about-nhansu .nhansu-container .nhansu-item:hover .info {
    bottom: 5px;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-info h4 {
    font-size: 17px;
    font-weight: 600;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-info .sub-info {
    font-size: 14px;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-txt {
    font-size: 14px;
  }
  .related-list {
    margin: 0 -7.5px 30px -7.5px;
  }
  .related-list .item {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
  .related-list .item h3 {
    font-size: 15px;
  }
  #footer .clearfooter {
    display: none;
  }
  #footer .panel-group {
    margin: 0;
  }
  #footer .panel-group .panel.panel-default .panel-heading {
    color: #000;
    background-color: #FDB813;
    text-transform: uppercase;
    text-align: center;
  }
  #footer .panel-group .panel.panel-default .panel-heading .panel-title a {
    display: block;
    font-size: 1.6rem;
    font-weight: 400;
    padding: 12px 5px;
    color: #fff;
    text-decoration: none;
  }
  #footer .panel-group .panel.panel-default .panel-heading .panel-title a .arrow {
    display: inline-block;
  }
  #footer #footer-1,
  #footer #footer-2,
  #footer #footer-3 {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #footer #footer-right {
    width: 100%;
    margin: 20px 0 0;
    padding: 10px 0;
    text-align: left;
    font-size: 10px;
    line-height: 16px;
  }
  #footer #footer-right h2 {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  #footer #footer-right .kk-star-ratings {
    min-height: 30px;
  }
  .mobile-phone-contact {
    display: flex;
    max-width: 180px;
    font-weight: 600;
    font-size: 15px;
    margin-right: 0;
    margin-left: auto;
  }
  .mobile-phone-contact span {
    vertical-align: middle;
  }
  .mobile-phone-contact a {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mobile-phone-contact .theme-icons {
    font-size: 25px;
    vertical-align: middle;
  }
  .lienhe-mobile.hide_mobile {
    display: none;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 479px) {
  #header #header-top #header-top-content #header-top-right ul.qtranxs_language_chooser > li {
    padding-left: 0;
    margin-left: 0;
  }
  #header #header-top #header-top-content #header-top-right ul.qtranxs_language_chooser > li:after {
    display: none;
  }
  #header #header-top #header-top-content #header-top-right ul.qtranxs_language_chooser > li > a.qtranxs_text > span {
    display: none;
  }
  #header #header-nav #header-logo #logo {
    width: 140px;
  }
  #header #header-nav #header-contact .header-contact-content .btn-contact {
    padding: 5px 6px;
  }
  .topbanner .banner-text-image .banner-content .banner-text h2 {
    /*font-size: 18px;
						line-height: 24px;*/
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-img {
    float: none;
    margin: 0 auto 20px auto;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-info {
    text-align: center;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-txt {
    background-color: #fafafa;
    border: #eee solid 1px;
    padding: 15px;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item .item-txt:before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    height: 0;
    width: 0;
    border: 10px solid transparent;
    border-bottom-color: #eee;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item:hover .item-txt,
  .sukhacbiet-testimonial-list .testimonial-list .item:active .item-txt,
  .sukhacbiet-testimonial-list .testimonial-list .item:focus .item-txt {
    background-color: #fdc746;
    color: #000;
  }
  .sukhacbiet-testimonial-list .testimonial-list .item:hover .item-txt:before,
  .sukhacbiet-testimonial-list .testimonial-list .item:active .item-txt:before,
  .sukhacbiet-testimonial-list .testimonial-list .item:focus .item-txt:before {
    border-bottom-color: #fdc746;
  }
  .qttk_list_slide .slick-dots li {
    margin-left: 25px;
  }
  .qttk_list_slide .slick-dots button {
    font-size: 18px;
  }
  .section_lienhe {
    text-align: center;
  }
  .section_lienhe h3 {
    font-size: 24px;
    font-weight: 700;
  }
}
@media only screen and (max-width: 375px) {
  .btn-lienhe {
    padding-left: 15px;
    padding-right: 15px;
  }
  #header #header-nav #header-logo {
    margin-left: 30px;
  }
  .headline {
    font-size: 20px;
  }
}
/* Apply CSS to iOS affected versions only */
body.iosBugFixCaret.modal-open {
  position: fixed;
  width: 100%;
}
