/*------------------------------------------------------------------

[_nel Framework]

Organization  : Flamecore
Name Project  : _nel Quantum
Version       : 1.0.4
Last Change   : 11/12/2018 [Update]
Github Page   : http://getnel.github.io 
Author        : andikachamberlin.github.io
License       : MIT

-------------------------------------------------------------------*/

/*===== general code =====*/

/*-----------------------------------------------------------------*/
/*code element*/

*,
*:before,
*:after{
  -webkit-box-sizing : border-box;
          box-sizing : border-box;
}

body{
            margin : 0;
       font-family : -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
             color : #777;
         font-size : 15px;
       line-height : 1.5;
  background-color : white;
        overflow-y : auto;
        overflow-x : hidden;
}

a{
  -webkit-text-decoration : none;
          text-decoration : none;
                    color : inherit;
}

p{
  word-wrap : break-word;
  margin    : 0;
  padding   : 0;
}

code,
kbd,
pre,
samp {
  font-family : 'Courier New', Courier, monospace;
}

kbd{
  padding          : 2px 4px;
  font-size        : 14px;
  color            : white;
  background-color : #333;
  border-radius    : 2px;
}

pre{
  position : relative;
}

pre code{ 
  background-color : transparent;
           display : block;
           padding : 1em;
         font-size : 14px;
             color : inherit;
       font-family : 'Courier New', Courier, monospace;
       line-height : 1.3;
          overflow : auto;
            border : 1px solid #ddd;
            margin : 1em 0;
          -moz-tab-size : 4;
            -o-tab-size : 4;
               tab-size : 4;
           -webkit-hyphens : none;
               -ms-hyphens : none;
                   hyphens : none;
       white-space : pre;
}

/*not recommended*/
xmp{
  background-color : transparent;
           display : block;
           padding : 1em;
         font-size : 14px;
             color : inherit;
       font-family : 'Courier New', Courier, monospace;
       line-height : 1.3;
          overflow : auto;
            border : 1px solid #ddd;
            margin : 1em 0;
          -moz-tab-size : 4;
            -o-tab-size : 4;
               tab-size : 4;
           -webkit-hyphens : none;
               -ms-hyphens : none;
                   hyphens : none;
       white-space : pre;
}

h1{
  font-size : 4em;
}
h2{
  font-size : 3em;
}
h3{
  font-size : 2.5em;
}
h4{
  font-size : 2em;
}
h5{
  font-size : 1.5em;
}
h6{
  font-size : 1em;
}

h1,
h2,
h3,
h4,
h5,
h6{
       margin : 0;
  font-weight : 400;
  font-family : inherit;
        color : inherit;
}

b,
strong{
  font-weight: 600;
}

abbr{
  cursor: help;
}

figure{
  margin: 0;
}

figcaption{
  margin-top: 8px;
  font-size: 90%;
  color: #888;
}

blockquote{
  display: block;
  border-left: 3px solid #ddd;
  margin: 0;
  padding-left: 1em;
}

cite{
  display: block;
  margin-top: 1em;
  text-align: right;
  font-size: 14px;
}

address{
  margin-top: 1em;
  display: block;
  font-style: normal;
}

img{
  display   : block;
  max-width : 100%;
  margin    : auto;
}

button,
input,
select,
textarea {
  font-family : inherit;
    font-size : 100%;
        color : inherit;
  line-height : 1.1;
       margin : 0;
}

button{
  background-color: transparent;
  border: none;
}

ul,
ol{
  padding : 0;
  margin  : 0;
}

li{
  list-style-type : none;
  padding         : 0;
  margin          : 0;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: inherit;
}

dt {
  font-weight: 600;
}

dd {
  margin-left: 0;
}

small{
  font-size: 80%;
  color: #999;
}

mark{
  padding: 0 4px;
  background-color: #f0f8ff;
}

sup,
sub{
  font-size: 80%;
}

article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section, 
main,
video,
canvas,
iframe {
  display : block;
}

iframe{
  width: 100%;
  border: none;
}

/*end code element*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*alignment*/

._left-align {
  text-align: left;
}

._right-align {
  text-align: right;
}

._center-align {
  text-align: center;
}

._justify-align {
  text-align: justify;
}

/*end alignment*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*transformation*/

._lowercase{
  text-transform: lowercase;
}

._uppercase{
  text-transform: uppercase;
}

._capitalize{
  text-transform: capitalize;
}

/*end transformation*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*drop caps*/

._drop-caps::first-letter{
  font-size: 4em; 
  float: left;
  margin-right: 8px;
  line-height: 60px;
  text-transform: uppercase;
}

/*end drop caps*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*description side*/

@media (min-width: 601px) {
  ._dl-side dt {
    float: left;
    width: 160px;
    overflow: hidden;
    clear: left;
    text-align: right;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
  }
  ._dl-side dd {
    margin-left: 180px;
  }
}

/*end description side*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*button*/

._btn-default{
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid #ddd;
  background-color: white;
  cursor: pointer;
}

._btn-default:hover{
  background-color: #f5f5f5;
}

._btn{
  display: inline-block;
  padding: 9px 16px;
  cursor: pointer;
}

/*end button*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*position*/

._position-leftmiddle{
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
}

._position-rightmiddle{
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(0%, -50%);
          -ms-transform: translate(0%, -50%);
      transform: translate(0%, -50%);
}

._position-topmiddle{
  position: absolute;
  left: 50%;
  top: 0%;
  -webkit-transform: translate(-50%,0%);
          -ms-transform: translate(-50%,0%);
      transform: translate(-50%,0%);
  text-align: center;
}

._position-bottommiddle{
  position: absolute;
  left: 50%;
  bottom: 0%;
  -webkit-transform: translate(-50%,0%);
          -ms-transform: translate(-50%,0%);
      transform: translate(-50%,0%);
  text-align: center;
}

._position-middle{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
  text-align: center;
}

._position-topleft{
  position: absolute;
  top: 0%;
  left: 0%;
}

._position-topright{
  position: absolute;
  top: 0%;
  right: 0%;
}

._position-bottomright{
  position: absolute;
  bottom: 0%;
  right: 0%;
}

._position-bottomleft{
  position: absolute;
  bottom: 0%;
  left: 0%;
}

/*end position*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*list*/

._list{
  margin-left: -16px;
}

._list li{
  margin-left: 18px;
}

._list-circle li{
  list-style-type: circle;
  margin-left: 18px;
}

._list-square li{
  list-style-type: square;
  margin-left: 18px;
}

._list-upper-roman li{
  list-style-type: upper-roman;
  margin-left: 18px;
}

._list-lower-alpha li{
  list-style-type: lower-alpha;
  margin-left: 18px;
}

._list-number li{
  list-style-type: decimal;
  margin-left: 18px;
}

/*end list*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*font size*/
._font-size-200pc{
  font-size: 200%;
  font-weight: 300;
}

._font-size-190pc{
  font-size: 190%;
  font-weight: 300;
}

._font-size-180pc{
  font-size: 180%;
  font-weight: 300;
}

._font-size-170pc{
  font-size: 170%;
  font-weight: 300;
}

._font-size-160pc{
  font-size: 160%;
  font-weight: 300;
}

._font-size-150pc{
  font-size: 150%;
  font-weight: 300;
}

._font-size-140pc{
  font-size: 140%;
  font-weight: 300;
}

._font-size-130pc{
  font-size: 130%;
  font-weight: 300;
}

._font-size-120pc{
  font-size: 120%;
  font-weight: 300;
}

._font-size-110pc{
  font-size: 110%;
  font-weight: 300;
}

._font-size-100pc{
  font-size: 100%;
}

._font-size-90pc{
  font-size: 90%;
}

._font-size-80pc{
  font-size: 80%;
}

._font-size-70pc{
  font-size: 70%;
}

._font-size-60pc{
  font-size: 60%;
}

._font-size-50pc{
  font-size: 50%;
}

/*end font size*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*helper*/

._warning-default,
._warning-red,
._warning-yellow,
._warning-green,
._warning-blue{
  border: 1px solid #eee;
  padding: 1em;
  margin: 1em 0;
}

._warning-default{
  border-left: 5px solid #ddd;
}

._warning-red{
  border-left: 5px solid #ff6f69;
}

._warning-yellow{
  border-left: 5px solid #ffcc5c;
}

._warning-green{
  border-left: 5px solid #96ceb4;
}

._warning-blue{
  border-left: 5px solid #63ace5;
}

._helper-red,
._helper-yellow,
._helper-green,
._helper-blue{
  padding: 1em;
  color: white;
  margin: 1em 0;
}

._helper-red{
  background-color: #ff6f69;
}

._helper-yellow{
  background-color: #ffcc5c;
}

._helper-green{
  background-color: #96ceb4;
}

._helper-blue{
  background-color: #63ace5;
}

/*end helper*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*position*/

._static{
  position: static;
}

._relative{
  position: relative;
}

._absolute{
  position: absolute;
}

._fixed{
  position: fixed;
}

._sticky{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9998;
}

/*end position*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*badge*/

._badge-text,
._badge{
  display: inline-block;
  overflow: hidden;
  text-align: center;
  background-color: #f5f5f5;
}

._badge-text{
  padding: 2px 8px;
}

._badge{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 30px;
}

/*end badge*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*breadcrumb*/

._breadcrumb{
  display: block;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

._breadcrumb span{
  position: relative;
  display: inline-block;
}

._breadcrumb span:last-child:after{
  display: none;
}

._breadcrumb span:after{
  content: "/";
  margin-left: 4px;
}

/*end breadcrumb*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*article*/

._article{
  margin: 1em 0;
}

._article-heading{
  margin-bottom: 8px;
}

._article-publish{
  margin-bottom: 1em;
  color: #999;
  font-size: 14px;
}

._article-publish a:hover{
  color: #777;
}

._article-content{
  margin-top: 1em;
}

._article-btn{
  margin: 1em 0;
}

._article-btn a{
  display: inline-block;
  margin-right: 1em;
}

._article-btn a:hover{
  color: #999;
}

/*end article*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*pagination*/

._pagination{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

._pagination li:first-child{
  border-left: 1px solid #ddd;
}

._pagination li{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 6px 16px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

._pagination li:hover{
  background-color: #f5f5f5;
}

/*end pagination*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*table-scroll*/

._table-scroll{
  overflow-x: auto;
  width: 100%;
  display: block;
}

._table-scroll table{
  border-collapse : collapse;
   border-spacing : 0;
          display : table;
            width : 100%;
}

._table-scroll table th{
  font-weight: 600;
  background-color: #f9f9fa;
}

._table-scroll table td, 
._table-scroll table th{
         display : table-cell;
      text-align : left;
  vertical-align : middle;
         padding : 12px 16px;
          border : 1px solid #ddd;
}

/*end table scroll*/
/*-----------------------------------------------------------------*/

/*===== end general code =====*/

/*===== Layout =====*/

/*-----------------------------------------------------------------*/
/*grid flexbox*/

._grid{
  padding: 8px;
}

._grid-s{
  padding: 4px;
}

._grid-m{
  padding: 16px;
}

._grid-l{
  padding: 24px;
}

._grid-g{
  padding: 32px;
}

._row-flex{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

._flex._s12 {width: 100%}
._flex._s11 {width: 91.66666667%}
._flex._s10 {width: 83.33333333%}
._flex._s9  {width: 75%}
._flex._s8  {width: 66.66666667%}
._flex._s7  {width: 58.33333333%}
._flex._s6  {width: 50%}
._flex._s5  {width: 41.66666667%}
._flex._s4  {width: 33.33333333%}
._flex._s3  {width: 25%}
._flex._s2  {width: 16.66666667%}
._flex._s1  {width: 8.33333333%}

@media only screen and (min-width:601px){
  ._flex._m12 {width: 100%}
  ._flex._m11 {width: 91.66666667%}
  ._flex._m10 {width: 83.33333333%}
  ._flex._m9  {width: 75%}
  ._flex._m8  {width: 66.66666667%}
  ._flex._m7  {width: 58.33333333%}
  ._flex._m6  {width: 50%}
  ._flex._m5  {width: 41.66666667%}
  ._flex._m4  {width: 33.33333333%}
  ._flex._m3  {width: 25%}
  ._flex._m2  {width: 16.66666667%}
  ._flex._m1  {width: 8.33333333%}
}

@media only screen and (min-width:993px){
  ._flex._l12 {width: 100%}
  ._flex._l11 {width: 91.66666667%}
  ._flex._l10 {width: 83.33333333%}
  ._flex._l9  {width: 75%}
  ._flex._l8  {width: 66.66666667%}
  ._flex._l7  {width: 58.33333333%}
  ._flex._l6  {width: 50%}
  ._flex._l5  {width: 41.66666667%}
  ._flex._l4  {width: 33.33333333%}
  ._flex._l3  {width: 25%}
  ._flex._l2  {width: 16.66666667%}
  ._flex._l1  {width: 8.33333333%}
}

/*end grid flexbox*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*layout*/

._lily-pad{
  display: block;
  padding: 1em;
}

._layout-d,
._container{
  max-width: 1024px;
  margin: auto;
}

._layout-t{
  max-width: 300px;
  margin: auto;
}

._layout-s{
  max-width: 600px;
  margin: auto;
}

._layout-m{
  max-width: 800px;
  margin: auto;
}

._layout-l{
  max-width: 1280px;
  margin: auto;
}

._layout-g{
  max-width: 1600px;
  margin: auto;
}

/*end layout*/
/*-----------------------------------------------------------------*/

/*===== end layout ===*/

/*===== Utilities ======*/

/*-----------------------------------------------------------------*/
/*mq hide*/

@media (max-width: 600px){
  ._hs{display: none!important}
}

@media (max-width:992px) and (min-width:601px){
  ._hm{display: none!important}
}

@media (min-width:993px){
  ._hl{display: none!important}
}

/*end mq hide*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*border*/

._circle{
  border-radius: 50%;
  text-align: center;
}

._border-none{
  border: none!important;
}

._border{
  border: 1px solid #ddd;
}

._border-t{
  border-top: 1px solid #ddd;
}

._border-r{
  border-right: 1px solid #ddd;
}

._border-b{
  border-bottom: 1px solid #ddd;
}

._border-l{
  border-left: 1px solid #ddd;
}

/*end border*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*display*/

._block{
  display: block;
}

._inline-block{
  display: inline-block;
}

._inline{
  display: inline;
}

/*end display*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*height*/

._height-d{
  height: 400px;
}

._height-t{
  height: 100px;
}

._height-s{
  height: 200px;
}

._height-m{
  height: 600px;
}

._height-l{
  height: 800px;
}

._height-g{
  height: 1000px;
}

/*end height*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*width*/

._width-d{
  width: 400px;
}

._width-t{
  width: 100px;
}

._width-s{
  width: 200px;
}

._width-m{
  width: 600px;
}

._width-l{
  width: 800px;
}

._width-g{
  width: 1000px;
}

._width-100pc{
  width: 100%;
}

._width-90pc{
  width: 90%;
}

._width-80pc{
  width: 80%;
}

._width-70pc{
  width: 70%;
}

._width-60pc{
  width: 60%;
}

._width-50pc{
  width: 50%;
}

._width-40pc{
  width: 40%;
}

._width-30pc{
  width: 30%;
}

._width-20pc{
  width: 20%;
}

._width-10pc{
  width: 10%;
}

/*end width*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*_nel color*/

._nel-red{
  color: #ff6f69;
}

._nel-yellow{
  color: #ffcc5c;
}

._nel-green{
  color: #96ceb4;
}

._nel-blue{
  color: #63ace5;
}

._nel-bg-red{
  background-color: #ff6f69;
  color: white;
}

._nel-bg-yellow{
  background-color: #ffcc5c;
  color: white;
}

._nel-bg-green{
  background-color: #63ace5;
  color: white;
}

._nel-bg-blue{
  background-color: #63ace5;
  color: white;
}

/*end _nel color*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*push*/

._push-d{
  margin: 1em;
}

._push-s{
  margin: 4px;
}

._push-m{
  margin: 8px;
}

._push-l{
  margin: 24px;
}

._push-g{
  margin: 32px;
}

._mpush-d{
  margin: -1em;
}

._mpush-s{
  margin: -4px;
}

._mpush-m{
  margin: -8px;
}

._mpush-l{
  margin: -24px;
}

._mpush-g{
  margin: -32px;
}

._push-t-d{
  margin-top: 1em;
}

._push-t-s{
  margin-top: 4px;
}

._push-t-m{
  margin-top: 8px;
}

._push-t-l{
  margin-top: 24px;
}

._push-t-g{
  margin-top: 32px;
}

._mpush-t-d{
  margin-top: -1em;
}

._mpush-t-s{
  margin-top: -4px;
}

._mpush-t-m{
  margin-top: -8px;
}

._mpush-t-l{
  margin-top: -24px;
}

._mpush-t-g{
  margin-top: -32px;
}

._push-r-d{
  margin-right: 1em;
}

._push-r-s{
  margin-right: 4px;
}

._push-r-m{
  margin-right: 8px;
}

._push-r-l{
  margin-right: 24px;
}

._push-r-g{
  margin-right: 32px;
}

._mpush-r-d{
  margin-right: -1em;
}

._mpush-r-s{
  margin-right: -4px;
}

._mpush-r-m{
  margin-right: -8px;
}

._mpush-r-l{
  margin-right: -24px;
}

._mpush-r-g{
  margin-right: -32px;
}

._push-b-d{
  margin-bottom: 1em;
}

._push-b-s{
  margin-bottom: 4px;
}

._push-b-m{
  margin-bottom: 8px;
}

._push-b-l{
  margin-bottom: 24px;
}

._push-b-g{
  margin-bottom: 32px;
}

._mpush-b-d{
  margin-bottom: -1em;
}

._mpush-b-s{
  margin-bottom: -4px;
}

._mpush-b-m{
  margin-bottom: -8px;
}

._mpush-b-l{
  margin-bottom: -24px;
}

._mpush-b-g{
  margin-bottom: -32px;
}

._push-l-d{
  margin-left: 1em;
}

._push-l-s{
  margin-left: 4px;
}

._push-l-m{
  margin-left: 8px;
}

._push-l-l{
  margin-left: 24px;
}

._push-l-g{
  margin-left: 32px;
}

._mpush-l-d{
  margin-left: -1em;
}

._mpush-l-s{
  margin-left: -4px;
}

._mpush-l-m{
  margin-left: -8px;
}

._mpush-l-l{
  margin-left: -24px;
}

._mpush-l-g{
  margin-left: -32px;
}



/*end push*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*embed*/

._embed {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

._embed ._embed-item,
._embed iframe,
._embed embed,
._embed object,
._embed video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

._ratio-21by9{
  padding-top: 42.857143%;
}

._ratio-16by9{
  padding-top: 56.25%;
}

._ratio-4by3{
  padding-top: 75%;
}

._ratio-1by1{
  padding-top: 100%;
}

/*embed*/
/*-----------------------------------------------------------------*/

/*===== End Utilities ======*/

/*===== Components ======*/

/*-----------------------------------------------------------------*/
/*load*/

._load{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: black;
  z-index: 9999;
}
._load-middle{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
}
._load-circle {
  border: 3px solid #333;
  border-radius: 50%;
  border-top: 3px solid #f5f5f5;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); 
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); 
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); 
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); 
  }
}

/*end load*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*ie alert*/

._IE-alert{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: 10000;
  overflow: hidden;
}

._IE-alert:before{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
  text-align: center;
  content: "Not Support IE";
  color: #fff;
}

/*end ie alert*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*sidebar ultimate*/

._sidebar-btn{
  position: absolute;
  top: 1em;
  left: 1em;
  height: 40px;
  width: 40px;
  z-index: 9997;
  cursor: pointer;
}

._sidebar-btn-icon{
  position: absolute;
  display: inline-block;
  width: 28px;
  height: 3px;
  background-color: #666;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
}

._sidebar-btn-icon:before,
._sidebar-btn-icon:after{
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: #666;
}

._sidebar-btn-icon:before{
  content: "";
  left: 0;
  top: -8px;
}

._sidebar-btn-icon:after{
  content: "";
  left: 0;
  bottom: -8px;
}

._sidebar-btn:hover ._sidebar-btn-icon,
._sidebar-btn:hover ._sidebar-btn-icon:before,
._sidebar-btn:hover ._sidebar-btn-icon:after{
  background-color: #111;
}

/*sidebar*/
._sidebar{
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  overflow-x: hidden;
  white-space: nowrap;
  background-color: white;
  overflow-y: auto;
  z-index: 9998;
  color: #666;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  border-right: 1px solid #ddd;
}

@media (min-width: 993px){
  ._sidebar{
    width: 270px;
    opacity: 1;
  }
}

._sidebar._sidebar-active{
  width: 220px;
  opacity: 1;
}

@media (min-width: 601px){
  ._sidebar._sidebar-active{
    width: 270px;
  }
}

/*sidebar header*/
._sidebar-header{
  position: relative;
  height: 200px;
  border-bottom: 1px solid #ddd;
}

/*sidebar items*/
._sidebar-items{
  position: relative;
}

/*sidebar accordion*/
._sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

._sidebar-toggle{
  position: relative;
}

._sidebar-list li a{
  display: block;
  padding: 0 32px 0 16px;
  line-height: 50px;
  -webkit-text-decoration: none;
          text-decoration: none;
  overflow: hidden;
     -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

._sidebar-list li a._sidebar-active:before,
._sidebar-list li a._sidebar-active:after{
  background-color: #ddd;
  height: 50%;
}

._sidebar-list li._sidebar-visited a:before,
._sidebar-list li._sidebar-visited a:after{
  height: 50%;
}

._sidebar-list li a:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #ddd;
}

._sidebar-list li a:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #ddd;
}

._sidebar-list li a:hover:before,
._sidebar-list li a:hover:after{
  height: 50%;
}

._sidebar-dropdown {
  display: none;
  background-color: white;
}

._sidebar-sub-1 li a{
  padding-left: 24px;
}

._sidebar-sub-2 li a{
  padding-left: 32px;
}

._sidebar-sub-3 li a{
  padding-left: 42px;
}

._sidebar-arrow{
  position: absolute;
  right: 16px;
  top: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: solid #888;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
          -webkit-transform: rotate(45deg);
                  -ms-transform: rotate(45deg);
              transform: rotate(45deg);
}

._sidebar-arrow-active{
          -webkit-transform: rotate(222.5deg);
                  -ms-transform: rotate(222.5deg);
              transform: rotate(222.5deg);
}

/*window close*/
._sidebar-window{
  position: fixed;
  z-index: 9997;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  background-color: rgba(0,0,0,0.8);
  overflow: hidden;
}

/*sidebar content*/
._sidebar-content{
  margin-left: 270px;
}

@media (max-width: 992px){
  ._sidebar-content{
    margin-left: 0;
  }
}

._sidebar-overflow{
  overflow: hidden;
}

/*end sidebar ultimate*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*tab*/

._tabs {
    overflow: hidden;
}

._tab-list {
    border: 1px solid #ddd;
    overflow: hidden;
}

._tab {
    display: block;
    float: left;
    padding: 8px 1em;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
}

._tab._tab-active:before,
._tab._subtab-active:before,
._tab._endsubtab-active:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ddd;
}

._tab-content,
._subtab-content,
._endsubtab-content {
    display: none;
    padding: 1em;
    border: 1px solid #ddd;
    border-top: none;
}

._tab-show {
    display: block;
}

/*end tab*/
/*-----------------------------------------------------------------*/


/*-----------------------------------------------------------------*/
/*navbar default*/

._nav-default {
  overflow: hidden;
  border: 1px solid #ddd;
}

._nav-default a {
  float: left;
  display: block;
  text-align: center;
  line-height: 50px;
  padding: 0 1em;
}

._nav-default a:hover {
  color: #111;
}

._nav-default-active {
  color: #111;
}

._nav-default a:last-child{
  float: right;
}

@media screen and (max-width: 600px) {
  ._nav-default a:not(:first-child) {display: none;}
  ._nav-default a._nav-default-btn {
    float: right;
    display: block;
    position: relative;
    height: 50px;
    width: 50px;
    cursor: pointer;
  }
  ._nav-default-toggle{
    position: absolute;
    display: inline-block;
    width: 28px;
    height: 3px;
    background-color: #666;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
  }

  ._nav-default-toggle:before,
  ._nav-default-toggle:after{
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: #666;
  }

  ._nav-default-toggle:before{
    content: "";
    left: 0;
    top: -8px;
  }

  ._nav-default-toggle:after{
    content: "";
    left: 0;
    bottom: -8px;
  }

  ._nav-default-ntn:hover ._nav-default-toggle,
  ._nav-default-ntn:hover ._nav-default-toggle:before,
  ._nav-default-ntn:hover ._nav-default-toggle:after{
    background-color: #111;
  }
}

@media screen and (max-width: 600px) {
  ._nav-default._nav-default-responsive {position: relative;}
  ._nav-default._nav-default-responsive ._nav-default-btn {
    position: absolute;
    right: 0;
    top: 0;
  }
  ._nav-default._nav-default-responsive ._nav-default-btn ._nav-default-toggle,
  ._nav-default._nav-default-responsive ._nav-default-btn ._nav-default-toggle:before,
  ._nav-default._nav-default-responsive ._nav-default-btn ._nav-default-toggle:after{
    background-color: #111;
  }
  ._nav-default._nav-default-responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/*end navbar default*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*navbar ultimate*/

._nav-clearfix{
  clear: both;
}

._nav{
  position: relative;
  height: 50px;
  background-color: #333;
}

._nav-logo{
  float: left;
}

._nav-logo a{
  display: block;
  padding: 0 16px;
  line-height: 50px;
  color: rgba(255,255,255,0.85);
}

._nav-search{
  float: right;
  position: relative;
  height: 50px;
  width: 50px;
  cursor: pointer;
}

._nav-search svg{
  position: absolute;
  top: 50pc;
  left: 50pc;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
  height: 25px;
  width: 25px;
  fill: rgba(255,255,255,0.85);
}

._nav-search-input{
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background-color: rgba(0,0,0,0.85);
}

._nav-search-close{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: transparent;
}

._nav-search-input input{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
  width: 100%;
  display: block;
  border: none;
  padding: 10px 1em;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: 300px;
  margin: auto;
  color: rgba(255,255,255,0.85);
  font-size: 150%;
}

._nav-search-input input::-webkit-input-placeholder{
  color: rgba(255,255,255,0.1);
}

._nav-search-input input:-ms-input-placeholder{
  color: rgba(255,255,255,0.1);
}

._nav-search-input input::-ms-input-placeholder{
  color: rgba(255,255,255,0.1);
}

._nav-search-input input::placeholder{
  color: rgba(255,255,255,0.1);
}

._nav-search-input input::-webkit-input-placeholder{
  text-align: center;
}

._nav-search-input input:-ms-input-placeholder{
  text-align: center;
}

._nav-search-input input::-ms-input-placeholder{
  text-align: center;
}

._nav-search-input input::placeholder{
  text-align: center;
}

._nav-items{
  float: right;
}

._nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}

._nav-list > li{
  float: left;
}

._nav-list ._nav-toggle,
._nav-subtoggle,
._nav-link{
  position: relative;
}

._nav-list li a{
  position: relative;
  display: block;
  padding: 0 32px 0 16px;
  line-height: 50px;
  -webkit-text-decoration: none;
          text-decoration: none;
  overflow: hidden;
     -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
}

._nav-list li._nav-link a{
  padding: 0 16px;
}

@media (min-width: 993px){
  ._nav-items{
    display: block!important;
  }
  ._nav-dropdown,
  ._nav-subdropdown,
  ._nav-endsubdropdown,
  ._nav-megadropdown{
    display: none!important;
  }

  ._nav-active{
    background-color: transparent!important;
  }

  ._nav-arrow{
    -webkit-transform: rotate(45deg)!important;
            -ms-transform: rotate(45deg)!important;
        transform: rotate(45deg)!important;
  }

  ._nav-arrow{
    -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
        transform: rotate(0deg);
  }

  ._nav-dropdown li:hover{
    background-color: rgba(255,255,255,0.1);
  }

  ._nav-list > li:hover ._nav-dropdown{
    display: block!important;
  }

  ._nav-list > li:hover ._nav-arrow{
    -webkit-transform: rotate(222.5deg)!important;
            -ms-transform: rotate(222.5deg)!important;
        transform: rotate(222.5deg)!important;
  }

  ._nav-dropdown > li:hover ._nav-subdropdown{
    display: block!important;
  }

  ._nav-dropdown > li._nav-subtoggle ._nav-arrow{
    -webkit-transform: rotate(45deg)!important;
            -ms-transform: rotate(45deg)!important;
        transform: rotate(45deg)!important;
  }

  ._nav-dropdown > li._nav-subtoggle:hover ._nav-arrow{
    -webkit-transform: rotate(-45deg)!important;
            -ms-transform: rotate(-45deg)!important;
        transform: rotate(-45deg)!important;
  }

  ._nav-subdropdown > li:hover ._nav-endsubdropdown{
    display: block!important;
  }

  ._nav-dropdown ._nav-subdropdown > li._nav-subtoggle i._nav-arrow{
    -webkit-transform: rotate(45deg)!important;
            -ms-transform: rotate(45deg)!important;
        transform: rotate(45deg)!important;
  }

  ._nav-dropdown ._nav-subdropdown > li._nav-subtoggle:hover ._nav-arrow{
    -webkit-transform: rotate(-45deg)!important;
            -ms-transform: rotate(-45deg)!important;
        transform: rotate(-45deg)!important;
  }
}

._nav-list > li:before{
  content: "";
}

._nav-list > li:hover,
._nav-search:hover,
._nav-active{
  background-color: #444;
}

._nav-dropdown {
  position: absolute;
  top: auto;
  left: 0;
  display: none;
  width: 160px;
  background-color: rgba(0,0,0,0.85);
  z-index: 100;
  font-size: 90%;
}

._nav-subdropdown,
._nav-endsubdropdown{
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  width: 160px;
  background-color: rgba(0,0,0,0.85);
}

._nav-dropdown li a:hover{
  color: white;
}

._nav-dropdown li a{
  line-height: 40px;
}

._nav-megadropdown{
  width: 100%;
}

._nav-megadropdown li a{
  line-height: 40px;
}

._nav-dropdown._nav-megadropdown > li:hover{
  background-color: transparent;
}

._nav-arrow{
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: solid rgba(255,255,255,0.85);
  border-width: 0 1px 1px 0;
  display: inline-block;
  -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
  padding: 3px;
  -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

._nav-arrow-active{
  -webkit-transform: rotate(222.5deg);
          -ms-transform: rotate(222.5deg);
      transform: rotate(222.5deg);
}

@media (max-width: 992px){
  ._nav-items{
    display: none;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #333;
    z-index: 20;
  }

  ._nav-dropdown li:hover{
    background-color: #353535;
  }

  ._nav-list,
  ._nav-list li{
    float: none;
  }

  ._nav-dropdown,
  ._nav-subdropdown,
  ._nav-endsubdropdown {
    position: relative;
    width: 100%;
    left: 0;
    border: none;
    background-color: #292929;
  }

  ._nav-subdropdown{
    background-color: #252525;
  }

  ._nav-endsubdropdown{
    background-color: #222;
  }

  ._nav-icon{
    float: right;
    position: relative;
    height: 50px;
    width: 50px;
    cursor: pointer;
  }

  ._nav-icon:hover{
    background-color: #444;
  }

  ._nav-icon i{
    position: absolute;
    display: inline-block;
    width: 28px;
    height: 3px;
    background-color: #666;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    background-color: rgba(255,255,255,0.85);
  }

  ._nav-icon i:before,
  ._nav-icon i:after{
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: rgba(255,255,255,0.85);
  }

  ._nav-icon i:before{
    content: "";
    left: 0;
    top: -8px;
  }

  ._nav-icon i:after{
    content: "";
    left: 0;
    bottom: -8px;
  }
}

/*end navbar ultimate*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*navbar small*/

._nav-small{
  position: relative;
  height: 40px;
  overflow: hidden;
}

._nav-small-left{
  float: left;
}

._nav-small-left ul li,
._nav-small-right ul li{
  float: left;
}

._nav-small-left ul li a,
._nav-small-right ul li a{
  line-height: 40px;
  display: block;
  padding: 0 1em;
  font-weight: 600;
  font-size: 80%;
}

._nav-small-left ul li a:hover,
._nav-small-right ul li a:hover{
  color: #111;
}

._nav-small-right{
  float: right;
}

@media(min-width: 993px){
  ._nav-small-mobile{
    display: block!important;
  }
}

@media (max-width: 992px){

  ._nav-small-mobile{
    display: none;
  }
  
  ._nav-small{
    height: 0;
    padding-bottom: 20px;
  }

  ._nav-small-left,
  ._nav-small-right{
    float: none;
  }
  ._nav-small-left ul li,
  ._nav-small-right ul li{
    float: none;
    display: block;
    text-align: left;
  }

  ._nav-small:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #444;
  }

  ._nav-small-toggle{
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
            -ms-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    cursor: pointer;
    padding: 8px 1em;
    z-index: 9997;
    margin-top: -12px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  ._nav-small-toggle._nav-small-active{
    -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    margin-top: -24px;
    margin-left: -16px;
  }

  ._nav-small-toggle i{
    border: solid rgba(255,255,255,0.85);
      border-width: 0 3px 3px 0;
      display: inline-block;
      padding: 3px;
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
  }
}

/*end navbar small*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*navbar inside*/

._nav-inside{
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%,-0%);
          -ms-transform: translate(-50%,-0%);
      transform: translate(-50%,-0%);
  background-color: rgba(0,0,0,0.85);
  width: 100%;
}

._nav-inside-list{
  overflow: hidden;
}

._nav-inside-list li{
  display: inline-block;
  padding: 8px;
}

._nav-inside-list li a{
  display: inline-block;
  color: rgba(255,255,255,0.5);
  font-size: 90%;
}

._nav-inside-list li a:hover{
  color: rgba(255,255,255,0.85);
}

@media (min-width: 993px){
  ._nav-inside-list{
    display: block!important;
  }
}

@media (max-width: 992px){
  ._nav-inside-list li,
  ._nav-inside-list li a{
    display: block;
    text-align: left;
  }
  
  ._nav-inside-list{
    display: none;
  }

  ._nav-inside-toggle{
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,0);
            -ms-transform: translate(-50%,0);
        transform: translate(-50%,0);
    cursor: pointer;
    padding: 0px 1em;
    z-index: 9997;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
  }

  ._nav-inside-toggle i._nav-inside-active{
    -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    margin-bottom: 3px;
  }

  ._nav-inside-toggle i{
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: solid rgba(255,255,255,0.85);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }
}

/*end navbar inside*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*nav scroll*/

._nav-scroll._nav-scroll-sticky{
  top: 0;
  background-color: rgba(0,0,0,0.85);
}

._nav-scroll-header{
  position: relative;
  height: 100vh;
  background-color: #63ace5;
}

._nav-scroll-header:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.85);
}

._nav-scroll:before,
._nav-scroll:after{
  content: "";
  display: table;
  clear: both;
}

._nav-scroll{
  position: fixed;
  top: 20px;
  right: 0;
  left: 0;
  height: 60px;
  z-index: 9998;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

._nav-scroll-logo{
  float: left;
}

._nav-scroll-logo a{
  display: block;
  line-height: 60px;
  padding: 0 1em;
  color: rgba(255,255,255,0.85);
  font-size: 150%;
}

._nav-scroll-items{
  float: right;
}

._nav-scroll-list li{
  float: left;
  position: relative;
}

._nav-scroll-list li a{
  position: relative;
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 0 1em;
  line-height: 60px;
  cursor: pointer;
}

._nav-scroll-list li a._nav-scroll-active:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #63ace5;
}

@media (min-width: 993px){
  ._nav-scroll-items{
    display: block!important;
  }
}

@media (max-width: 992px){

  ._nav-scroll-items{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 400px;
    float: none;
    background-color: rgba(255,255,255,0.85);
  }

  ._nav-scroll-list li{
    float: none;
  }

  ._nav-scroll-list li a{
    line-height: 40px;
  }

  ._nav-scroll-list li a._nav-scroll-active:before{
    width: 3px;
    height: 100%;
  }

  ._nav-scroll-toggle{
    position: relative;
    float: right;
    width: 60px;
    height: 60px;
    cursor: pointer;
  }

  ._nav-scroll-toggle i{
      position: absolute;
      display: inline-block;
      width: 28px;
      height: 3px;
      background-color: #666;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%,-50%);
              -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
      background-color: rgba(255,255,255,0.85);
   }

  ._nav-scroll-toggle i:before,
  ._nav-scroll-toggle i:after{
      position: absolute;
      width: 28px;
      height: 3px;
      background-color: rgba(255,255,255,0.85);
    }

  ._nav-scroll-toggle i:before{
      content: "";
      left: 0;
      top: -8px;
    }

  ._nav-scroll-toggle i:after{
      content: "";
      left: 0;
      bottom: -8px;
  }
}
/*end nav scroll*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*slick*/

._slick {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

._slick-img,
._header-background{
  position: relative;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 600px){
  ._slick,
  ._slick-img{
    height: 300px;
  }
}

._slick-img:before,
._header-background:before{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}


@media (min-width: 993px){
  ._slick:hover .slick-prev.slick-arrow,
  ._slick:hover .slick-next.slick-arrow{
    opacity: 1;
  }
  ._slick .slick-prev.slick-arrow,
  ._slick .slick-next.slick-arrow{
    opacity: 0;
  }
  ._slick:hover .slick-prev.slick-arrow,
  ._slick:hover .slick-next.slick-arrow,
  ._slick:hover .slick-dots{
    -webkit-transform: translate(0);
            -ms-transform: translate(0);
        transform: translate(0);
  }
  ._slick .slick-dots{
    -webkit-transform: translateY(50px);
            -ms-transform: translateY(50px);
        transform: translateY(50px);
  }
  ._slick .slick-prev.slick-arrow{
    -webkit-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
        transform: translateX(-100%);
  }
  ._slick .slick-next.slick-arrow{
    -webkit-transform: translateX(100%);
            -ms-transform: translateX(100%);
        transform: translateX(100%);
  }
  ._slick .slick-next.slick-arrow{
    right: 30px;
  }
}

@media(max-width: 992px){
  ._slick .slick-prev.slick-arrow{
    -webkit-transform: translateX(-100px);
            -ms-transform: translateX(-100px);
        transform: translateX(-100px);
  }
  ._slick .slick-next.slick-arrow{
    -webkit-transform: translateX(100px);
            -ms-transform: translateX(100px);
        transform: translateX(100px);
  }
}

._slick .slick-prev.slick-arrow,
._slick .slick-next.slick-arrow{
  z-index: 9997;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

._slick .slick-prev.slick-arrow{
  left: 16px;
}

._slick .slick-next.slick-arrow{
  right: 32px;
}

._slick .slick-prev.slick-arrow:before,
._slick .slick-next.slick-arrow:before {
  font-size: 30px;
  padding: 6px;
}

._slick .slick-dots{
  bottom: 16px;
  z-index: 9997;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.slick-dots li{
  padding: 0;
  background-color: rgba(255,255,255,0.85);
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.85);
          box-shadow: 1px 1px 1px rgba(0,0,0,0.85);
}

/*end slick*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*text header*/

._text-header{
  display: block;
  text-align: center;
  margin: 3em 1em;
}

._text-header h5{
  text-transform: uppercase;
  font-weight: bold;
}

._text-header p{
  margin-top: 8px;
  margin-bottom: 1em;
}

._text-header a._text-header-link{
  font-weight: bold;
  color: #63ace5;
}

._text-header a._text-header-link:hover{
  opacity: 0.8;
}

/*end text header*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*content grid*/
._content-grid,
._content-grid-bg,
._content-grid-img{
  position: relative;  
}

._content-grid-bg,
._content-grid-img{
  height: 300px;
}

._content-grid-bg{
  background-color: #f9f9fa;
}

._content-grid{
  margin-bottom: 50px;
}

._content-grid-img{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

._content-grid-bg ._position-middle{
  width: 100%;
}
/*end content grid*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*footer*/

._footer{
  margin-top: 50px;
  position: relative;
  padding: 1em 0 0 0;
  background-color: #111;
}

._footer ._list li:first-child{
  font-weight: bold;
  color: white;
  font-size: 100%;
  text-transform: uppercase;
}

._footer ._list li{
  font-size: 80pc;
  padding: 4px 0;
  color: rgba(255,255,255,0.5);
}

._footer ._list li a:hover,
._footer-nav-left a:hover,
._footer-nav-right a:hover{
  color: white;
}

._footer-nav{
  border-top: 1px solid rgba(255,255,255,0.1);
}

._footer-nav{
  overflow: hidden;
  padding: 0 8px;
}

._footer-nav-left{
  float: left;
}

._footer-nav-left a,
._footer-nav-right a{
  color: rgba(255,255,255,0.5);
}

._footer-nav-left a,
._footer-nav-right a{
  float: left;
  display: block;
  padding: 8px;
  font-size: 80%;
  overflow: hidden;
}

._footer-nav-right{
  float: right;
}

@media(max-width: 600px){
  ._footer-nav-left,
  ._footer-nav-right,
  ._footer-nav-left a,
  ._footer-nav-right a{
    float: none;
  }
  ._footer{
    padding-bottom: 1em;
  }
}

/*end footer*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*fixed background*/

._parallax-fixed{
  background-attachment: fixed;
}

/*end fixed background*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*mixitup*/

.mix-controls {
  position: relative;
  text-align: center;
  margin: 1em;
}

.mix-controls button{
  position: relative;
  display: inline-block;
  border: 1px solid #ddd;
  padding: 9px 1em;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-bottom: 6px;
}

.mix-controls button:before,
.mix-controls button:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #ddd;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.mix-controls button:after{
  left: 0;
  right: 0;
}

.mix-control:hover:before,
.mix-control:hover:after{
  width: 50%;
}

.mixitup-control-active:before{
  width: 50%!important;
  background-color: #63ace5!important;
  opacity: 0.6;
}

.mixitup-control-active:after{
  width: 50pc!important;
  background-color: #63ace5!important;
  opacity: 0.6;
}

.mix-container {
  padding: 1rem;
  text-align: justify;
  font-size: 0.1px;
}

.mix-container:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.mix,
.gap {
  display: inline-block;
  vertical-align: top;
}

.mix {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mix a{
  display: block;
  overflow: hidden;
  outline: none;
}
.mix a:after{
  content: "";
  position: absolute;
  top: 1em;
  right: -50%;
  width: 50%;
  height: 100%;
  background-color: rgba(255,255,255,0.1);
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.mix a:hover:after{
  right: 100%;
}
.mix a:before{
  content: "";
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
}

.mix img{
  display: block;
}

.mix:before {
  content: "";
  display: block;
  padding-top: 16px;
}

/* Grid Breakpoints
---------------------------------------------------------------------- */

/* 2 Columns */

.mix,
.gap {
  width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
}

/* 3 Columns */

@media screen and (min-width: 601px) {
  .mix,
  .gap {
    width: calc(100%/3 - (((3 - 1) * 1rem) / 3));
  }
}

/* 4 Columns */

@media screen and (min-width: 993px) {
  .mix,
  .gap {
    width: calc(100%/4 - (((4 - 1) * 1rem) / 4));
  }
}

@media (max-width: 300px){
  .mix-control{
    display: block;
    width: 100%;
  }
}

/*end mixitup*/
/*-----------------------------------------------------------------*/

/*-----------------------------------------------------------------*/
/*scroll Top*/

._scroll-top{
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 9998;
  height: 40px;
  width: 40px;
  background-color: rgba(0,0,0,0.85);
  cursor: pointer;
  overflow: hidden;
  border-radius: 50%;
  display: none;
}

._scroll-top:hover{
  background-color: rgba(0,0,0,0.5);
}

._scroll-top a{
  text-align: center;
  display: block;
  line-height: 40px;
  cursor: pointer;
}

._scroll-top i{
  border: solid rgba(255,255,255,0.85);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transform: rotate(-135deg);
          -ms-transform: rotate(-135deg);
      transform: rotate(-135deg);
}

._scroll-top._scroll-top-active{
  display: block;
}

/*end scroll top*/
/*-----------------------------------------------------------------*/

/*===== End Components ======*/