﻿



.timeline {
  position: relative;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1300px;
}
.timeline:before {
  content: '';
  position: absolute;
  height: 100%;
  border: 3px solid rgba(255,255,255,0.4);
  right: 40px;
  top: 0;
}
.timeline:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (min-width: 700px) {
  .timeline {
    padding: 2rem;
  }
  .timeline:before {
    left: calc(50% - 1px);
    right: auto;
  }
}

.timeline__item {
  padding: 1rem;
  border: 5px solid #bcbec2;
  border-image: linear-gradient(to right, skyblue 0%, #2196F3 100%);
  border-image-slice: 1;
  position: relative;
  margin: 1rem 3rem 1rem 1rem;
  clear: both;
}
.timeline__item:after, .timeline__item:before {
  content: '';
  position: absolute;
}
.timeline__item:before {
  right: -10px;
  top: calc(50% - 5px);
  border-style: solid;
  border-color: #2196f3 #2196f3 transparent transparent;
  border-width: 10px;
  transform: rotate(45deg);
}
@media screen and (min-width: 700px) {
  .timeline__item {
    width: 44%;
    margin: 1rem;
  }
  .timeline__item:nth-of-type(2n) {
    float: right;
    margin: 1rem;
    border-image: linear-gradient(to right, #2196f3 0%, skyblue 100%);
    border-image-slice: 1;
  }
  .timeline__item:nth-of-type(2n):before {
    right: auto;
    left: -10px;
       border-color: transparent transparent #2498f3 #2196f3;
  }
}

.timeline__item--year {
  text-align: center;
  max-width: 80px;
  margin: 0 48px 0 auto;
  font-size: 21px;
  line-height: 1;
  font-weight: bold;
  border-image: none;
  padding: 24px 4px;
  border-radius:50%;
  background-color:#fff;
}
.timeline__item--year:before {
  display: none;
}
@media screen and (min-width: 700px) {
  .timeline__item--year {
    text-align: center;
    margin: 0 auto;
  }
  .timeline__item--year:nth-of-type(2n) {
    float: none;
    margin: 0 auto;
    border-image: none;
  }
  .timeline__item--year:nth-of-type(2n):before {
    display: none;
  }
}

.timeline__title {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 1.5em;
}

.timeline__blurb {
  line-height: 1.5;
  font-size: 1rem;
  margin: .5rem 0 0;
}


body {
font-family: 'Open Sans', sans-serif;



}

a, div, span {
font-family: 'Open Sans', sans-serif;



}

/*@font-face {
    font-family: 'FontAwesome';
    src: url('/assets/frontend/font-awesome/font-awesome-4.3.0/font-awesome-4.3.0/fonts/fontawesome-webfont.eot?v=4.3.0');
    src: url('/assets/frontend/font-awesome/font-awesome-4.3.0/font-awesome-4.3.0/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('/assets/frontend/font-awesome/font-awesome-4.3.0/font-awesome-4.3.0/fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('/assets/frontend/font-awesome/font-awesome-4.3.0/font-awesome-4.3.0/fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('/assets/frontend/font-awesome/font-awesome-4.3.0/font-awesome-4.3.0/fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('/assets/frontend/font-awesome/font-awesome-4.3.0/font-awesome-4.3.0/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}*/

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0,0);
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571429em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}

    .fa-ul > li {
        position: relative;
    }

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714286em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.fa.pull-left {
    margin-right: .3em;
}

.fa.pull-right {
    margin-left: .3em;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    transform: scale(-1,1);
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);
    -webkit-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    transform: scale(1,-1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
    filter: none;
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-gear:before, .fa-cog:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-rotate-right:before, .fa-repeat:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before, .fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before, .fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-warning:before, .fa-exclamation-triangle:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-gears:before, .fa-cogs:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before, .fa-users:before {
    content: "";
}

.fa-chain:before, .fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before, .fa-scissors:before {
    content: "";
}

.fa-copy:before, .fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-save:before, .fa-floppy-o:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-unsorted:before, .fa-sort:before {
    content: "";
}

.fa-sort-down:before, .fa-sort-desc:before {
    content: "";
}

.fa-sort-up:before, .fa-sort-asc:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before, .fa-undo:before {
    content: "";
}

.fa-legal:before, .fa-gavel:before {
    content: "";
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-flash:before, .fa-bolt:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-paste:before, .fa-clipboard:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before, .fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-unlink:before, .fa-chain-broken:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
    content: "";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
    content: "";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
    content: "";
}

.fa-euro:before, .fa-eur:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before, .fa-usd:before {
    content: "";
}

.fa-rupee:before, .fa-inr:before {
    content: "";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
    content: "";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
    content: "";
}

.fa-won:before, .fa-krw:before {
    content: "";
}

.fa-bitcoin:before, .fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before, .fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-turkish-lira:before, .fa-try:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
    content: "";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before, .fa-car:before {
    content: "";
}

.fa-cab:before, .fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
    content: "";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
    content: "";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
    content: "";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before, .fa-rebel:before {
    content: "";
}

.fa-ge:before, .fa-empire:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-hacker-news:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before, .fa-weixin:before {
    content: "";
}

.fa-send:before, .fa-paper-plane:before {
    content: "";
}

.fa-send-o:before, .fa-paper-plane-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-genderless:before, .fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-hotel:before, .fa-bed:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

iframe {
    max-width: 100%;
}

.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

@media(min-width:760px) {
    .no-p-l {
        padding-left: 0 !important;
    }
}

.col-xs-15 {
    width: 20%;
    float: left;
}

@media(min-width:768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media(min-width:992px) {
    .col-md-15 {
        width: 20% !important;
        float: left;
    }
}

@media(min-width:1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

@media(min-width:640px)and (max-width:767px) {
    .col-50 {
        width: 50%;
        float: left;
    }
}

#top ul li {
    display: inline-block;
    margin-right: 10px;
}

    #top ul li a {
        color: #000;
        font-size: 14px;
    }

    #top ul li i {
        margin-right: 5px;
        color: #0059A9;
    }

.position-relative {
    position: relative;
}

.mg-30 {
    margin-bottom: 30px;
}

.header {
    position: relative;
    background-color: #fff;
    padding: 11px 0;
}

.hideschroll::-webkit-scrollbar {
    display: none;
}

.clear-fix::after {
    display: block;
    content: '.';
    height: 0;
    visibility: hidden;
    clear: both;
}

.no-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.header-logo {
    width: 100%;
}

.search-form {
    display: table;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
}

    .search-form div {
        display: table-cell;
        width: 100%;
    }

    .search-form input[type='text'] {
        padding: 10px;
        background: #fff;
        border: none;
        width: 100%;
        outline: none;
    }

.header-logo div {
    display: table-cell;
}

.search-form button {
    background: #000;
    color: #fff;
    padding: 5px;
    border: none;
    width: 45px;
    font-size: 16px;
    height: 45px;
    border-radius: 0px 5px 5px 0px;
}

.hotregion {
    margin-top: 25px;
}

    .hotregion a {
        display: inline-block;
        position: relative;
    }

    .hotregion .numcart {
        position: absolute;
        display: block;
        top: 6px;
        right: -12px;
        background: #da393f;
        color: #fff;
        border-radius: 50%;
        width: 20px;
        font-size: 14px;
        height: 20px;
        font-weight: bold;
        line-height: 20px;
        text-align: center;
    }

.header-logo div img {
    max-width: 100%;
    height: auto;
    width: 100px;
}

.hotl {
    display: block;
    color: #cb3438;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.1;
}

.ar {
    color: #fff !important;
    background: #23b14d;
    padding: 10px;
    background-size: 10px !important;
}

.hd {
    display: block;
    color: rgba(0,0,0,.8);
    font-size: 14px;
    font-weight: bold;
}

.belowmenu {
}

    .belowmenu .btnmd {
        background: #068a4f;
        color: #fff;
        padding: 10px;
        position: relative;
        display: block;
        font-size: 14px;
        font-weight: bold;
    }

        .belowmenu .btnmd i {
            padding-right: 5px;
        }

        .belowmenu .btnmd .c {
            display: block;
            position: absolute;
            top: 13px;
            right: 10px;
        }

.col-reg-slide {
    position: relative;
}

.menud li {
    display: inline-block;
    position: relative;
}

    .menud li a {
        color: #fff;
        font-size: 15px;
        padding: 5px 20px;
        display: block;
        text-transform: uppercase;
        border-right: 1px solid #5a96c1;
    }

    .menud li i.fa-chs {
        position: absolute;
        top: 17px;
        right: 18px;
        display: block;
    }

@media(min-width:768px) {
    .menud li a {
        padding: 6px 20px;
    }
}

@media(min-width:991px) {
    .menud li a {
        padding: 12px 21px;
    }
}

.menud li a:hover {
    color: #ffffff;
    background-color: #045089;
}

.menud li a.mdm-active {
    color: #000;
}

    .menud li a.mdm-active::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #ffdb06;
        margin: 10px auto 0 auto;
    }

.menud li ul.frchild {
    position: absolute;
    top: 48px;
    left: 0;
    width: 220px;
    z-index: -99;
    background-color: #ffdb06;
    opacity: 0;
    transition: 400ms ease-out;
}

.menud li:hover ul.frchild {
    opacity: 1;
    z-index: 99;
}

.menud li ul.frchild li {
    display: block;
    padding: 0;
}

    .menud li ul.frchild li a {
        text-transform: capitalize;
        font-size: 14px;
        padding: 10px;
    }

.menud li .menu-hover-products {
    background: rgba(255,255,255,.9);
    position: absolute;
    top: 48px;
    left: 15px;
    right: 15px;
    height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: -99;
    opacity: 0;
    transition: 500ms ease-out;
    padding: 10px 20px;
    text-transform: capitalize;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(51,51,51,.4);
    -moz-box-shadow: 2px 2px 5px 0 rgba(51,51,51,.4);
    box-shadow: 2px 2px 5px 0 rgba(51,51,51,.4);
    border: 1px solid #ddd;
}

.menud li:hover .menu-hover-products {
    opacity: 1;
    z-index: 9229;
}

.menu-hover-products .title-cate-hover-a {
    color: #fff;
    background-color: #00afef;
    border-bottom: 1px solid #00afef;
    padding: 10px;
    font-size: 16px;
}

.list-menu-hover li {
    display: block;
    position: relative;
}

    .list-menu-hover li:after {
        content: '';
        font-family: FontAwesome;
        position: absolute;
        top: 6px;
        left: 10px;
        color: #00afef;
    }

    .list-menu-hover li a {
        font-size: 14px;
        transition: 400ms ease-out;
        padding-bottom: 5px;
        padding-top: 5px;
        padding-left: 25px;
        color: #333;
    }

    .list-menu-hover li:hover a {
        padding-left: 40px;
    }

.menu__cart {
    position: relative;
    max-height: 50px;
}

.xscv {
    font-size: 20px;
    color: #333;
    margin-top: 0;
}

    .xscv:after {
        content: '';
        display: block;
        border-bottom: 2px solid #23b14d;
        padding-bottom: 10px;
        margin-bottom: 10px;
        width: 30px;
    }

.link-list li a {
    color: #333;
    font-size: 14px;
    margin: 7px 0;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 7px;
    display: block;
}

.menu__cart > a, .menu__cart > div {
    display: block;
    background: url(/assets/frontend/img/icon-cart.png?v=1) 20px center no-repeat #cb3438;
    padding: 10px 24px 15px 60px;
    color: #fff;
    height: 48px;
    overflow: hidden;
    font-size: 13px;
    line-height: normal;
}

.members {
    background-image: url(/assets/frontend/img/icon-users.png?v=1) !important;
}

@media(min-width:991px) {
    .menu__cart > a {
        padding: 10px 24px 10px 60px;
    }
}

.menu__cart > a > span {
    display: block;
}

.bg-black {
    background: rgba(0,0,0,.8);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    transition: 500ms ease-out;
    width: 0;
    overflow: hidden;
}

.bg-black-show {
    width: 100%;
}

#menu-mobile, #menu-mobile-product, #menu-dichvu {
    position: fixed;
    background: rgba(10, 10, 10, 0.86);
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: -9999;
    width: 0;
    transition: 500ms ease-out;
    top: 0;
    bottom: 0;
}

.w {
    width: 80% !important;
    z-index: 999999999 !important;
}

.headerd {
    position: relative;
    height: 60px;
}

    .headerd div {
    background: #0083cb;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    font-size: 17px;
    padding: 10px 26px;
    white-space: nowrap;
}

#btn-close-menu-child, #btn-close-menu-child1, #btn-close-menu-child2 {
    color: #fff;
    display:none;
    position: absolute;
    font-weight: bold;
    font-size: 16px;
    right: 12px;
    top: 13px;
}

.menu-mobile-s li {
    position: relative;
}

    .menu-mobile-s li a {
        display: block;
        text-transform: uppercase;
        font-weight: 500;
        color: #f2f2f2;
        font-size: 13px;
        padding: 14px 28px;
        border-bottom: 1px solid #515151;
        white-space: nowrap;
    }

.menuchildmible {
    display: none;
}

    .menuchildmible li a {
        padding-left: 33px;
        text-transform: capitalize !important;
    }
     .menuchildmible_grand_child li a{
         padding-left:73px;
     }

.menu-mobile-s li i.myli {
    position: absolute;
    right: 0;
    top: 0;
    padding: 14px;
    display: block;
    cursor: pointer;
    color: #fff;
}

.cmc {
    background: #fff;
    padding: 5px;
    box-shadow: 2px 0 4px 0 rgba(0,0,0,.2);
    border-left: 1px solid #ddd;
    height: 300px;
    overflow-y: auto;
}

.menu-step {
    background: #fff;
    box-shadow: 2px 0 4px 0 rgba(0,0,0,.2);
    padding: 5px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 99;
    width: 300px;
}

.tmb-sld {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    position: relative;
}

.seiv .icon-left1, .seiv .icon-left2, .seiv .icon-left3, .seiv .icon-left4, .seiv .icon-left5 {
    display: inline-block;
    height: 71px;
    width: 100%;
    position: relative;
    vertical-align: top;
    margin-right: 0;
    opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    transition: all 500ms ease 0s;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -ms-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    transform: rotateY(180deg);
    background: url(/assets/images/service-icons.png?v=1) no-repeat scroll;
    background-color: rgba(0,0,0,0);
}

.service-content:hover .icon-left1, .service-content:hover .icon-left2, .service-content:hover .icon-left3, .service-content:hover .icon-left4, .service-content:hover .icon-left5 {
    transform: translate(0,-10px);
}

.seiv .icon-left1 {
    background-position: center 17px;
}

.seiv .icon-left2 {
    background-position: center -360px;
}

.seiv .icon-left3 {
    background-position: center -550px;
}

.seiv .icon-left4 {
    background-position: center -170px;
}

.product_banner_inner {
    position: relative;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
    display: block;
}

    .product_banner_inner img {
        transition: 400ms ease-out;
    }

    .product_banner_inner .product_img1 {
        margin-right: 5px;
        overflow: hidden;
        position: relative;
        display: inline-block;
        vertical-align: top;
    }

        .product_banner_inner .product_img1 .static-inner {
            box-sizing: border-box;
            display: block;
            margin: 0 auto;
            padding: 4px;
            position: absolute;
            width: 100%;
            text-align: center;
            z-index: 9;
            top: 0;
            bottom: 0;
            background: rgba(0,0,0,.5);
            padding-top: 15%;
        }

    .product_banner_inner:hover img {
        transform: scale(1.1);
    }

.static-inner .text1.static-text {
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 200;
    padding: 12px 30px 4px;
    text-transform: capitalize;
    letter-spacing: .48px;
}

@media(min-width:768px) {
    .static-inner .text1.static-text {
        font-size: 26px;
        padding: 15px 30px 4px;
    }
}

@media(min-width:991px) {
    .static-inner .text1.static-text {
        font-size: 32px;
    }
}

.static-inner .text-button {
    border: none;
    text-transform: uppercase;
    margin: 10px 0;
    color: #ffdb06;
    font-weight: 700;
    position: relative;
    vertical-align: top;
    font-size: 13px;
    display: block;
    text-decoration: underline;
}

.service-right {
    text-align: center;
    padding: 10px 0;
}

    .service-right .title {
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        color: #000;
        letter-spacing: .2px;
    }

    .service-right .sub-title {
        color: #8d8d8d;
        font-size: 12px;
        font-weight: normal;
        line-height: 24px;
        margin-bottom: 0;
        text-transform: capitalize;
    }

@media(min-width:768px) {
    .tmb-sld {
        height: 400px;
    }
}

.cxx {
    margin: 10px;
}

    .cxx a {
        font-size: 14px;
        color: #333;
    }

        .cxx a:hover {
            color: #23b14d;
        }

        .cxx a:before {
            content: '';
            font-family: FontAwesome;
            color: #23b14d;
            padding-right: 10px;
            display: inline-block;
        }

.tim-doitac {
    display: block;
    padding: 10px;
    position: relative;
    height: 120px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 150px;
    transition: 400ms ease-out;
}

    .tim-doitac:hover {
        box-shadow: 2px 0 4px 0 rgba(35,177,77,.6);
        transform: translate(0,-10px);
    }

.tl {
    text-align: center;
    font-size: 25px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: block;
}

    .tl:after {
        content: '';
        margin: auto;
        width: 30px;
        height: 2px;
        border-bottom: 2px solid #23b14d;
        display: block;
        margin-bottom: 10px;
        margin-top: 10px;
    }

.search-reg {
    background: #23b14d;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .search-reg select, .search-reg button {
        margin: 10px 0 5px;
    }

@media(min-width:768px) {
    .search-reg {
        margin: 0;
    }

        .search-reg select, .search-reg button {
            margin: 15px 0;
        }
}

.search-reg select {
    padding: 5px;
    width: 100%;
    border: 1px solid #eee;
}

.search-reg button {
    color: #fff;
    padding: 5px 20px;
    font-size: 14px;
    display: block;
    width: 100%;
    background: #23b14d;
    border: 1px solid #fff;
}

.thumb-product-image {
    display: block;
    background-color: #fff;
    overflow: hidden;
    border-bottom: none;
    position: relative;
}

    .thumb-product-image .thumb-product-image-border {
        background: rgba(236,211,52,0);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: 400ms ease-out;
        opacity: 0;
        z-index: 99;
    }

    .thumb-product-image:hover .thumb-product-image-border {
        opacity: 1;
        background: rgba(236,211,52,.8);
    }

    .thumb-product-image:before {
        content: '';
        padding-top: 100%;
        display: block;
    }

    .thumb-product-image img {
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

.sh-w {
    background: rgba(255,255,255,.9);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    padding: 10px;
    z-index: 99;
    opacity: 0;
    transition: 400ms ease-out;
}

    .sh-w ul li {
        color: #333;
        font-size: 14px;
        margin-bottom: 10px;
    }

        .sh-w ul li span.pr-d {
            font-weight: bold;
        }

.thumb-product-image:hover .sh-w {
    opacity: 1;
}

.thumb-product-image .disco {
    position: absolute;
    top: 5px;
    right: 5px;
    text-align: center;
    background: #ffdb06;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    width: 40px;
    height: 25px;
    z-index: 9;
    line-height: 25px;
}

.item-sp-s {
    border-top: none;
    padding: 10px;
    position: relative;
    background: #fff;
}

.cmctitle {
    font-size: 16px;
    color: #000;
    display: block;
    font-weight: 600;
    height: 30px;
    overflow: hidden;
}

.sds {
    border: 1px solid #ddd;
    border-top: none;
    padding: 10px;
}

.sumd {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    height: 100px;
    overflow: hidden;
}

.te-sp {
    font-size: 14px;
    margin: 10px 0 0 0;
    height: 40px;
    overflow: hidden;
    display: block;
    color: #8d8d8d;
    font-weight: bold;
}

.priced {
    margin-top: 7px;
}

    .priced div {
        display: inline-block;
    }

    .priced .newprice {
        font-size: 16px;
        font-weight: 600;
        color: #d0021b;
    }

    .priced .original-price {
        font-size: 14px;
        text-decoration: line-through;
        color: rgba(0,0,0,.7);
        padding-left: 4px;
    }

.loadmore {
    text-align: center;
    margin-bottom: 30px;
}

    .loadmore .gridcount {
        background-color: #ffdb06;
        padding: 10px 40px;
        font-weight: 700;
        width: auto;
        line-height: 20px;
        letter-spacing: .8px;
        border: none;
        text-transform: uppercase;
        text-align: center;
        white-space: nowrap;
        outline: none;
        border-radius: 0;
        display: inline-block;
        color: #000;
    }

        .loadmore .gridcount.small-gridcount {
            padding: 7px 15px;
        }

        .loadmore .gridcount:hover {
            background-color: #333;
            color: #ffdb06;
        }

.sse {
    display: inline-block;
    padding: 5px 20px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    border: 1px solid #23b14d;
    color: #23b14d;
    transition: 400ms ease-out;
    margin-top: 0;
    position: relative;
}

.thumb-product-image:hover .sse {
    margin-top: calc(50% - 10px);
}

.sse:hover {
    background-color: #23b14d;
    color: #fff;
}

.bg-fff {
    padding: 20px 0;
    background: #fff;
}

.txtxs {
    display: inline-block;
    margin-left: 6px;
    color: #23b14d;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    font-style: italic;
}

@media(min-width:768px) {
    .txtxs {
        font-size: 20px;
    }
}

.txtxs span {
    color: #cb3438;
}

.tmb-imgcc {
    border: 2px solid transparent;
    transition: .5s ease-out;
    display: block;
    overflow: hidden;
    background: #fff;
    position: relative;
    padding: 5px;
    border: 1px solid #ddd;
}

    .tmb-imgcc:hover {
        border-color: #068a4f;
    }

.pd5 {
    padding: 6px;
}

.tlc-s {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .3px;
    margin-bottom: 10px;
    line-height: 1.5;
    text-transform: uppercase;
    color: #000;
    display: block;
}

    .tlc-s.small-tlc-s {
        color: rgba(0,0,0,.8);
        font-size: 14px;
        text-transform: capitalize;
    }

        .tlc-s.small-tlc-s:hover {
            color: rgba(0,0,0,1);
        }

.region-ft {
    margin-top: 50px;
    padding: 0;
    background-color: #141A2C;
    color: #000;
    position: relative;
    font-size: 13px;
    z-index: 3;
    clear: both;
    padding: 25px 0px;
    vertical-align: top;
}

    .region-ft .widget-title {
        font-weight: 600;
        letter-spacing: 1.4px;
        margin-bottom: 10px;
        position: relative;
        text-transform: uppercase;
        font-size: 20px;
        color: #b9b8b8;
        line-height: 24px;
        margin-bottom: 30px;
        margin-top: 30px;
    }

.diachifooter {
    margin: 15px 0;
    color: rgba(255,255,255,.9);
    font-size: 16px;
}

.tds {
    display: table;
}

    .tds .tdcell {
        display: table-cell;
        padding-right: 4px;
    }

.diachifooter i {
    background: #ed1c24;
    color: #fff;
    text-align: center;
    padding: 5px;
    width: 25px;
    height: 25px;
    margin-right: 4px;
}

.cargohub-social-links-widget a {
    color: #fff;
    padding: 15px;
    padding-bottom: 0;
    display: inline-block;
    font-size: 16px;
    -webkit-transition: .5s;
    transition: .5s;
}

    .cargohub-social-links-widget a:first-child {
        padding-left: 0;
    }

.menu li {
    padding: 8px 0;
    border: 0;
    position: relative;
}

    .menu li a {
        color: #fff;
        padding-left: 0;
        font-size: 13px;
        text-transform: capitalize;
        transition: 300ms ease-in-out;
    }

.copyright {
    background: #0a0d1b;
    border-top: 1px solid #bebebe;
    padding: 10px 0;
}

.copyri {
    color: #333;
    font-size: 14px;
}

.breadcrumb-bg {
    overflow: hidden;
    position: relative;
    padding: 0;
    margin-right: auto;
    margin-left: auto;
    background: linear-gradient(rgba(15, 21, 26, 0.92) 100%,rgba(15, 21, 26, 0.90) 100%),url(/assets/images/nevvimage/BreadcumBackground.jpg) center;
    background-size: cover;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.pad-30 {
    padding: 30px;
}

.pad-10 {
    padding-left: 20px;
    padding-right: 20px;
}

.breadcrumb-bg .breadcrumb {
    background: none;
    margin-bottom: 0;
}

.breadcrumb-item {
    padding: 5px 0;
    font-size: 14px;
    color: #000;
}

    .breadcrumb-item a {
        color: #fff;
    }

        .breadcrumb-item a:hover {
            font-weight: 600;
        }

.breadcrumb-bg .bread-title {
    margin: 8px 0;
    text-transform: capitalize;
    float: none;
    font-size: 22px;
    padding: 0;
    border-bottom: none;
    color: #000;
    font-weight: 600;
    line-height: 24px;
    position: relative;
}

.breadcrumb-bg .breadcrumb > li + li:before {
    padding: 0 5px;
    color: #fff;
    content: "/ ";
}

.breadcrumb-bg .breadcrumb > .active {
    color: #fff;
}

.videoreg {
    background: url(/assets/frontend/img/left_info.png?v=1) repeat-x top;
    border: 1px solid #eee;
    padding: 10px;
}

.news-detail {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 20px;
}

    .news-detail img {
        max-width: 100%;
        height: auto !important;
    }

    .news-detail iframe, .videoreg iframe {
        max-width: 100%;
        margin: auto;
        display: block;
    }

.col-child-menu {
    width: 100%;
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    z-index: 999999;
    display: none;
}

    .col-child-menu .cmc {
        height: auto !important;
        width: 300px;
    }

    .col-child-menu .col-menu {
        float: none;
        width: auto;
    }

    .col-child-menu .menu-step {
        left: 300px;
    }

.menu.footer-menu li i, .lienhe-footer li strong i {
    color: #ffffff;
    margin-right: 5px;
}

.lienhe-footer li strong i {
    width: 20px;
    height: 20px;
    display: inline-block;
    font-size: 15px;
}

.copyri {
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
}

.mxh {
    padding: 10px;
    margin-top: 20px;
    font-size: 20px;
}

    .mxh a {
        color: #fff;
    }

        .mxh a i {
            margin: 0 10px;
        }

.tab-email {
    display: table;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}

.tab-td-email {
    display: table-cell;
}

    .tab-td-email input {
        padding: 10px;
        width: 100%;
        border: none;
        color: #333;
    }

    .tab-td-email button {
        background: #cb3438;
        border: none;
        color: #fff;
        padding: 10px;
    }

.ncnt {
    line-height: 1.6;
    color: #fff;
    font-size: 12px;
    font-style: normal;
}

    .ncnt span {
        color: #fff;
        font-weight: bold;
    }

.hotlxm {
    display: block;
    position: fixed;
    bottom: 10px;
    left: 10px;
    background: red;
    color: #fff;
    font-size: 20px;
    padding-top: 10px;
    border-radius: 50%;
    width: 45px;
    z-index: 999;
    height: 45px;
    text-align: center;
}

    .hotlxm i {
        -webkit-animation: .5s callme linear infinite;
        animation: .5s callme linear infinite;
    }

@-webkit-keyframes callme {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    25% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    75% {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
}

.mcx {
    display: block;
    color: rgba(0,0,0,.8);
    text-align: center;
    border: 1px solid #ddd;
    height: 75px;
    overflow-y: hidden;
    padding: 5px;
}

    .mcx:hover {
        border-color: #cb3438;
    }

    .mcx img {
        margin: 5px auto;
        max-width: 20px;
    }

.title-cate-home {
    position: relative;
    background: #fff;
    padding: 0 25px;
}

.title-cate-view-all {
    position: absolute;
    top: 22px;
    right: 25px;
    font-style: italic;
    color: #23b14d;
}

.title-cate-home .title-cate-home-a {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    padding: 20px 0;
    text-transform: uppercase;
    display: inline-block;
    border-top: 2px solid #23b14d;
}

.body-cate-home {
    background: #fff;
    padding: 10px 25px;
}

@media(min-width:1200px) {
    .cate-home-child-d {
        position: absolute;
        top: 20px;
        right: 115px;
        width: 60%;
    }
}

.cate-home-child-d a {
    color: #333;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid transparent;
}

.hover-cate-home-banner {
    display: block;
    overflow: hidden;
}

    .hover-cate-home-banner img {
        transition: 400ms ease-out;
    }

    .hover-cate-home-banner:hover img {
        transform: scale(1.04);
    }

.cate-home-child-d a:hover {
    border-color: #23b14d;
}

@media(min-width:768px) {
    .col-cate {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

    .col-cate-home-1, .col-cate-home-2 {
        float: left;
        padding: 0 7.5px;
    }

    .col-cate-home-1 {
        width: 26%;
    }

    .col-cate-home-2 {
        width: 74%;
    }
}

.statis {
    margin-top: 3px;
    padding: 5px;
    -webkit-animation: 10s linear 0s normal none infinite loop;
    -moz-animation: 10s linear 0s normal none infinite loop;
    -ms-animation: 10s linear 0s normal none infinite loop;
    -o-animation: 10s linear 0s normal none infinite loop;
    animation: 10s linear 0s normal none infinite loop;
}

@-webkit-keyframes loop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 0;
    }
}

@-moz-keyframes loop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 0;
    }
}

@-ms-keyframes loop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 0;
    }
}

@-o-keyframes loop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 0;
    }
}

@keyframes loop {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 500px 0;
    }
}

.luottruycap {
}

    .luottruycap li {
        color: rgba(255,255,255,.8);
        font-size: 13px;
        margin: 5px;
    }

        .luottruycap li i {
            margin-right: 4px;
        }

.xemthem {
    display: inline-block;
    background: #23b14d;
    color: #fff;
    padding: 7px 15px;
    font-size: 14px;
    border: 1px solid #23b14d;
    transition: 400ms ease-out;
    text-transform: capitalize;
}

    .xemthem:hover {
        background: #fff;
        color: #23b14d;
    }

.groupservice {
    padding: 13px 30px 10px 15px;
    color: rgba(0,0,0,.8);
    display: block;
    font-size: 13px;
    height: auto !important;
    letter-spacing: .6px;
    line-height: 23.5px;
    position: relative;
    text-transform: capitalize;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

    .groupservice:hover {
        color: rgba(0,0,0,.5);
    }

.right .title {
    color: #000;
    background-color: #eee;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: bold;
}

    .right .title.bg-yellow {
        background: #ffdb06;
    }

.xchld {
    padding: 6px 0;
}

    .xchld .groupchild {
        background: 0 0 !important;
        padding-left: 35px;
        border: none;
        font-size: 14px;
        color: #333;
        display: block;
        padding-bottom: 6px;
        padding-top: 6px;
        font-weight: 600;
    }

        .xchld .groupchild:hover {
            color: #068a4f;
        }

.truycap {
    padding: 0;
    list-style: none;
    margin: 5px 0;
}

    .truycap li {
        display: block;
        font-size: 15px;
        color: red;
        background: url(/assets/frontend/img/arrow.png?v=1) left 5px center no-repeat #eee;
        font-weight: 600;
        padding: 6px 0 6px 20px;
    }

.videoreg span {
    font-size: 15px;
    display: block;
    font-weight: 600;
    padding-bottom: 5px;
}

    .videoreg span.red {
        color: red;
        white-space: nowrap;
    }

.titl {
    font-size: 28px;
    color: #000;
    line-height: 40px;
    vertical-align: top;
    font-weight: 400;
}

.bg-ddd {
    background-color: #f5f5f5;
}

.tmb-sp {
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

    .tmb-sp:hover {
        border-color: #068a4f;
    }

.tmb-img {
    margin-bottom: 5px;
    overflow: hidden;
    display: block;
}

    .tmb-img img {
        margin: auto;
        vertical-align: middle;
        transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        transition: .3s ease-out;
    }

    .tmb-img:hover img {
        transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        -webkit-transform: scale(1.1);
    }

.tmp-title {
    font-size: 14px;
    font-weight: 700;
    display: block;
    height: 40px;
    overflow: hidden;
}

.p-sum {
    line-height: 22px;
    margin: 5px 0;
    font-size: 14px;
    padding: 10px;
}

.tmb-sp .p-sum {
    height: 79px;
    overflow: hidden;
}

.lienhe-footer {
    margin-top: 7px;
    color: white;
}

    .lienhe-footer li {
        margin-bottom: 11px;
        line-height: 2;
        font-size: 13px;
    }

}

.link-mxh {
    margin-top: 10px;
}

    .link-mxh li {
        display: inline-block;
        margin: 3px;
    }

        .link-mxh li a {
            display: block;
            width: 35px;
            height: 35px;
            line-height: 35px;
            /*background-color: #000;*/
            text-align: center;
            color: #fff;
            font-size: 16px;
            border-radius: 50%;
        }

.diachi {
    font-size: 11px;
    color: #666;
    display: block;
    text-decoration: none;
    padding: 8px 0 7px;
}

#tmcmsbannerblock {
    margin: 25px 0;
    width: 100%;
}

    #tmcmsbannerblock .cmsbanner {
        background: #020c26 none repeat scroll 0 0;
        padding: 11px;
        width: 100%;
    }

        #tmcmsbannerblock .cmsbanner .service-content {
            color: #fff;
            letter-spacing: -.5px;
        }

            #tmcmsbannerblock .cmsbanner .service-content .service-text2 {
                font-size: 25px;
                letter-spacing: .5px;
                line-height: 25px;
                margin: 8px 15px 0 10px;
                padding-right: 20px;
            }

            #tmcmsbannerblock .cmsbanner .service-content .service-text1 {
                font-size: 17px;
                line-height: 25px;
                margin-right: 50px;
                margin-top: 8px;
                padding-left: 30px;
            }

@media(min-width:768px) {
    #tmcmsbannerblock .cmsbanner {
        height: 104px;
        padding: 31px;
    }

        #tmcmsbannerblock .cmsbanner .service-content .service-text1 {
            border-left: 1px solid #dcdcdc;
            float: left;
        }

        #tmcmsbannerblock .cmsbanner .service-content .service-text2 {
            margin: 8px 15px 0 120px;
            float: left;
        }
}

.service-text1::before {
    background: rgba(0,0,0,0) url(/assets/frontend/img/call.png?v=1) no-repeat scroll 0 0;
    content: "";
    float: left;
    height: 30px;
    margin-right: 10px;
    width: 30px;
}

.sex-v {
    background: #ffd200 none repeat scroll 0 0;
    border: 1px solid #ffd200;
    color: #020c26;
    font-size: 18px;
    font-weight: bold;
    padding: 11px 22px;
    text-transform: capitalize;
    transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    display: inline-block;
}

    .sex-v:hover {
        color: #fff;
        background: none;
    }

.newsletter {
    background-color: #ffdb06;
    padding: 30px 0;
}

    .newsletter .title {
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }

    .newsletter h3 {
        margin-top: 5px;
        padding-left: 40px;
    }

    .newsletter .title::before {
        background: url(/assets/frontend/img/email.png?v=1) no-repeat 0 0;
        content: "";
        height: 18px;
        width: 26px;
        position: absolute;
        margin-top: 9px;
        left: 0;
    }

    .newsletter .news-text {
        display: inline-block;
        padding: 0 25px;
        border-left: 1px solid #c9ad05;
        margin: 7px 25px;
        font-size: 13px;
        font-weight: 300;
    }

    .newsletter .newsletter_form {
        width: 100%;
    }

        .newsletter .newsletter_form tr td:first-child {
            width: 90%;
        }

.newsletter_form input[type='email'] {
    width: 100%;
    padding: 10px;
    border: none;
}

.newsletter_form button {
    background: url('/assets/frontend/img/mail.png?v=1') no-repeat center;
    background-color: #000;
    display: block;
    border: none;
    width: 38px;
    height: 38px;
}

.btn.btnclick {
    background-color: #306AFF;
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 10px;
    font-size: 16px;
}

    .btn.btnclick:hover {
        background-color: #000;
        color: #fff;
    }

.footer_lienhe {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 9999;
    padding: 5px 0;
    border-top: 1px solid #ddd;
}

    .footer_lienhe img {
        width: 35px;
        margin: auto;
    }

.footer_lienhe_title {
    margin-top: 5px;
    font-size: 11px;
    display: block;
    text-align: center;
    color: #333;
}

.bg-avx {
    position: relative;
}

    .bg-avx::before {
        content: '';
        padding-top: 50%;
        display: block;
    }

    .bg-avx img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

.uoptop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #084F91;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 16px;
    transition: 500ms ease-out;
    transform: translate(0,0);
    padding: 10px 0;
    border-radius: 50%;
    display: none;
    z-index: 9999999;
    border: none;
}


.menu-chdl {
    position: absolute;
    left: 0;
    margin: 0;
    z-index: 1000;
    width: 100%;
    top: 48px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.05);
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.1);
    padding: 0 15px;
    display: none;
}

    .menu-chdl .titlees {
        color: #333;
        font-size: 14px;
        padding: 10px;
        display: block;
        border-bottom: 1px solid #ffdb06;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .menu-chdl .list-procate {
        display: block;
        color: #333;
        font-size: 14px;
        margin-top: 15px;
    }

        .menu-chdl .list-procate:hover {
            color: #ffdb06;
        }

        .menu-chdl .list-procate::before {
            content: '';
            width: 5px;
            height: 5px;
            background: #ffdb06;
            position: relative;
            top: -3px;
            margin-right: 10px;
            display: inline-block;
        }

.tab-search {
    background: #fff;
}

    .tab-search .form-control {
        border-radius: 0;
    }

.vun-tim-kiem {
    margin: 0 -10px;
}

.oc-5 {
    padding: 0 10px;
}

@media(min-width:768px) {
    .oc-5 {
        width: calc(100%/5);
        float: left;
    }
}

.oc-5 .danhsach {
    position: absolute;
    top: 50px;
    left: 10px;
    right: 10px;
    z-index: 999;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    display: none;
}

    .oc-5 .danhsach:before {
        content: '';
        width: 0;
        height: 0;
        position: absolute;
        bottom: 100%;
        left: 45%;
        border-bottom: 10px solid #d9d9d9;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
    }

.oc-5 .tbmd {
    margin-bottom: 10px;
}

    .oc-5 .tbmd .xchld {
        padding: 0;
    }

        .oc-5 .tbmd .xchld .groupchild {
            padding-left: 20px;
        }

.oc-5 .danhsach .cm {
    color: #333;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

    .oc-5 .danhsach .cm i {
        margin-right: 5px;
        font-size: 16px;
        position: relative;
        top: 1px;
        color: rgba(0,0,0,.5);
        cursor: pointer;
    }

    .oc-5 .danhsach .cm:hover {
        color: #23b14d;
    }

.oc-5 .timkiem {
    border: none;
    width: 100%;
    display: block;
    padding: 8px;
    font-size: 15px;
    background: none;
    color: rgba(0,0,0,.8);
    border: 1px solid #ddd;
    position: relative;
    text-align: left;
    outline: none;
}

.oc-5 #ddlxapxep {
    padding: 9.5px;
    font-size: 14px;
    border: 1px solid #ddd;
    width: 100%;
}

.oc-5 .timkiem, .oc-5 #ddlxapxep {
    margin-bottom: 30px;
}

    .oc-5 .timkiem i {
        position: absolute;
        top: 13px;
        right: 10px;
        display: block;
    }

.header_menu {
    /*background-color:#306AFF;*/
}

nav#top {
    background-color: #f9f9f9;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next, .swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-color: rgba(18, 18, 18, 0.34);
    padding: 21px 19px;
}

.menuright_title {
    padding: 9px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
}

    .menuright_title i {
        font-size: 19px;
        margin-right: 5px;
    }

.menuright_ul {
    border: 1px solid #c7c7c7;
}

    .menuright_ul ul {
        padding: 0px;
        margin: 0px;
    }

        .menuright_ul ul li {
            display: block;
        }

            .menuright_ul ul li a {
                display: block;
            }

            .menuright_ul ul li i {
                margin-right: 5px;
            }

.khung_box {
    margin-top: 10px;
}

    .khung_box img {
        max-width: 100%;
        height: auto !important;
    }

.mleft {
    float: left;
    width: 40%;
}

.mright {
    float: right;
    width: 55%;
    margin-left: 5%;
}

.mbox {
    padding: 7px;
}

.mright_title {
    color: #333333;
    font-weight: 500;
    font-size: 13px;
}

    .mright_title a {
        color: #333333;
        font-weight: 500;
        font-size: 13px;
    }

.menuright_box {
    margin-top: 10px;
}

.product-home {
    margin-bottom: 20px;
}

    .product-home .pro-head {
        background: #fff;
    }

        .product-home .pro-head .title {
            color: #fff;
            background-image: url(../images/bg_title.jpg);
            background-repeat: no-repeat;
            background-position: right center;
        }

        .product-home .pro-head .title {
            margin-top: 10px;
            margin-bottom: 0;
            text-transform: uppercase;
            font-size: 16px;
            line-height: 40px;
            padding: 0 40px 0 24px;
        }

            .product-home .pro-head .title a {
                color: #fff;
                -webkit-transition: 0.5s ease-in-out;
                transition: 0.5s ease-in-out;
            }

        .product-home .pro-head .filter-price {
            margin-right: 10px;
        }

.item {
    position: relative;
    overflow: hidden;
}

    .item img {
        max-width: 100%;
        -moz-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transitisssson: all 0.3s;
    }

    .item:hover img {
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

body {
    background-color: #ffffff;
    font-size: 16px;
}

.sanpham_thongtin {
    background-color: #fff;
    padding: 5px;
}

.sanpham_name {
    padding-bottom: 5px;
}

    .sanpham_name a {
        font-weight: 700;
        font-size: 20px;
        padding: 2px 10px;
        line-height: 25px;
        display: block;
        color: #333;
        color: #009d48;
    }

        .sanpham_name a:hover {
            color: #333;
        }

.sanpham_sum {
    color: #909090;
    padding: 0 10px;
    padding-top: 5px;
    min-height: 77px;
}

.sanpham_hover {
    display: none;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #f5f2f2;
    padding: 0 20px;
    height: 100%;
    width: 100%;
    opacity: 0.93;
}

.sanpham_box {
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    background: #fff;
}

    .sanpham_box:hover {
        box-shadow: 0 10px 40px rgba(0,0,0,.1);
    }

.sanpham_img {
    position: relative;
    background-color: #fff;
}

.sanpham_box:hover .sanpham_hover {
    display: block;
}

.sanpham_price {
    padding: 10px 5px;
    font-size: 20px;
    color: #cb3438;
}

.ulleft {
    float: left;
    padding-top: 7px;
}

.ulright {
    float: right;
    padding-top: 7px;
}

.input_header {
    position: relative;
    margin-top: 29px;
}

    .input_header input {
        padding-left: 10px;
        border: 1px solid #e8e8e8;
        width: 100%;
        height: 34px;
    }

.icon_header {
    position: absolute;
    right: 0px;
    top: 0px;
}

.header_slogun {
    margin-top: 23px;
    font-size: 22px;
    color: #0059A9;
    font-weight: bold;
    text-transform: capitalize;
}

.mbox {
    padding: 13px 10px;
    border-bottom: 1px solid #e9e9e9;
    background: white;
}

    .mbox:hover {
        background-color: #0059A9;
    }

        .mbox:hover .mright_title a {
            color: #fff !important;
        }

h4.wt-title.m-t0.m-b5.text-left a {
    color: #333333;
}

.news_sumary {
    color: #717171;
}


.mxh_khung {
    padding: 5px 10px;
    background-color: #42A8F2;
}

.icon_header i {
    background-color: red;
    padding: 10px 40px;
    color: white;
}

.myleft {
    float: left;
    width: 30%;
}

.myright {
    float: right;
    width: 70%;
}

.myboder {
    border: 1px solid #333;
    margin-bottom: 40px;
    padding: 5px 5px;
}


.menu_right_logo {
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

    .menu_right_logo img {
        margin: 0px auto;
        width: 100px;
        background-color: #fff;
    }

.thanhtuu_box {
    margin: 70px 0px;
    text-align: center;
}

.thanhtuu_img {
    display: inline-block;
    margin: 0px auto;
    border: 1px solid #009d48;
    border-radius: 50%;
    padding: 27px;
}

    .thanhtuu_img img {
        margin: 0 auto;
        width: 85px;
        background-color: #009D48;
        border-radius: 50%;
        padding: 16px;
    }

.thanhtuu_sumary {
    text-align: center;
    font-weight: bold;
    font-size: 35px;
    color: #D71921;
    margin: 5px 0px;
}

.thanhtuu_title {
    text-align: center;
    color: #747e84;
    font-size: 16px;
}

.Gioithieu_box {
    position: relative;
}

.GioiThieu_Child {
    position: absolute;
    left: 13%;
    top: 19%;
    margin-top: 17px;
}

.Gioithieu_title {
    color: #fff;
    font-size: 38px;
    line-height: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.Gioithieu_img {
    margin: 15px 0;
    margin-left: 5px;
}

.Gioithieu_sumary {
    color: #fff;
    line-height: 22px;
    font-size: 13px;
    font-weight: 400;
    font-size: 15px;
    max-width: 326px;
}

.Gioithieu_Xemthem {
    margin-top: 30px;
    display: inline-block;
}

    .Gioithieu_Xemthem a {
        display: inline-block;
        border: 1px solid #fff;
        padding: 10px 30px;
        color: #fff;
        z-index: 5;
        position: relative;
    }

        .Gioithieu_Xemthem a:hover {
            color: #e9e9e9;
        }

        .Gioithieu_Xemthem a:before {
            position: absolute;
            content: '';
            left: 0px;
            top: 0px;
            width: 0px;
            height: 100%;
            background-color: #cb3438;
            transition: 300ms ease-out;
            z-index: -1;
        }

        .Gioithieu_Xemthem a:hover:before {
            width: 100%;
        }

.backdichvu {
    position: absolute;
    right: 0px;
    top: 0px;
}

    .khungnen img, .backdichvu img {
        height: 250px;
    }

.svc_1 {
    position: absolute;
    right: 416px;
    font-weight: 400;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    top: 185px;
}

.svc_2 {
    position: absolute;
    right: 239px;
    font-weight: 400;
    line-height: 30px;
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
    top: 23px;
}

.svc_3 {
    position: absolute;
    right: 59px;
    font-weight: 400;
    line-height: 30px;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    top: 185px;
}

.svca a {
    color: #fff;
}

    .svca a:hover {
        text-decoration: underline;
        color: #D71921;
    }

.title_all {
    line-height: 30px;
    font-size: 38px;
    font-weight: 600;
    color: #D71921;
    text-align: center;
    text-transform: uppercase;
    margin: 10px 0px;
    margin-bottom: 35px;
}

.khachhang_logo {
    position: absolute;
    left: 50%;
    width: 50%;
    top: -64px;
}

.guithongtin_box {
    padding: 50px 0;
    width: 100%;
    background: #ffffff;
}

.gttlh {
    font-size: 26px;
    font-weight: 600;
    line-height: 29px;
    color: #222;
    text-align: center;
}

.vldtc {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: #222;
    text-align: center;
    padding: 10px 0px;
    margin-bottom: 20px;
}

.lienhe_box {
}

    .lienhe_box input {
        width: 100%;
        margin-bottom: 20px;
        padding-left: 30px;
        height: 40px;
        background-color: transparent;
        border: 1px solid #000;
    }

    .lienhe_box textarea {
        background-color: transparent;
        width: 100%;
        padding-left: 30px;
        height: 100px;
        border: 1px solid #000;
        padding-top: 20px;
    }

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #fff;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}

.lienhe_input {
    position: relative;
}

    .lienhe_input i {
        position: absolute;
        left: 0px;
        font-size: 18px;
        top: 31%;
        transform: translate(10px,-50%);
        color: #000;
    }

.lienhe_gui {
    text-align: center;
    margin: 20px 0px;
}

    .lienhe_gui a {
        display: inline-block;
        background-color: #D71921;
        color: #fff;
        padding: 13px 45px;
        border-radius: 5px;
        text-transform: uppercase;
    }

.mcolumn {
    float: left;
    width: 50%;
}

/* Clear floats after the columns */
.mrow:after {
    content: "";
    display: table;
    clear: both;
}

.dichvu_box {
    padding: 30px 20px;
}

.dichvu_box_title {
    font-size: 27px;
    display: inline-block;
    line-height: 30px;
    font-weight: 600;
    color: #009d48;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.dichvu_box_sumary {
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: #2e2e2e;
    max-width: 450px;
}

.sanpham_sum {
    margin-bottom: 30px;
}

    .sanpham_sum ul li {
        display: block;
    }

    .sanpham_sum ul {
        margin: 0px;
        padding: 0px;
    }

.news-detail ul li {
    display: inline-block;
}

.news-detail ul {
    margin: 0px;
    padding: 0px;
}

.colleft {
    float: left;
    width: 35%;
}

.colright {
    float: right;
    width: 60%;
    margin-left: 5%;
}

.tlq_head {
    background-color: #D71921;
    padding: 10px 20px;
}

.tlq_head {
    background-color: #009d48;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}

.colright_date {
    color: #3b4245;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}

.colright_title {
    font-weight: 400;
    line-height: 16px;
    text-transform: uppercase;
    font-size: 13px;
    max-height: 52px;
    overflow: hidden;
}

    .colright_title a {
        color: #333;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        text-transform: uppercase;
    }

.colbox {
    border-bottom: 1px solid #b1b1b1;
    padding: 10px 0px;
}

.tintucdetail_title {
    line-height: 30px;
    font-size: 21px;
    font-weight: 600;
    color: #009d48;
    margin: 15px 0px;
    text-transform: uppercase;
}

.menuleft_box ul {
    margin: 0px;
    padding: 0px;
}

    .menuleft_box ul li {
        display: block;
    }

        .menuleft_box ul li a {
            padding: 5px 0px;
            font-weight: 700;
            line-height: 21px;
            text-transform: capitalize;
            font-size: 14px;
            color: #000;
            line-height: 21px;
            display: block;
            padding-bottom: 3px;
            border-bottom: 1px solid #bfbfbf;
            position: relative;
            height: 37px;
            text-transform: uppercase;
        }

            .menuleft_box ul li a:hover {
                color: #d71921;
            }

.menuleft_box {
    /*box-shadow: 0 5px 20px rgba(0,0,0,.1);*/
    padding: 20px;
}

/*.Dichvu2_tt {
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    padding: 10px 15px;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
}*/

/*.Dichvu2_tt a {
        color: #333333;
    }*/

.Dichvu2_box {
    background-color: #009D48;
    padding: 30px 0px;
}

.Dichvu2_boxsss {
    background-color: #009D48;
    padding-top: 20px;
}

.Dichvu2_title {
    color: #fff;
    font-size: 38px;
    line-height: 30px;
    text-transform: uppercase;
    text-align: center;
}

.Dichvu2_sumary {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
    text-align: center;
}


.khachhang_box {
    height: 440px;
    background: url(/assets/images/bg-customer-home.png);
    background: #009d48;
    background-size: cover;
}

.sanphams_khung {
    padding: 50px 0px;
    background: url('/assets/images/nevvimage/bg-product-home.jpg');
    background-size: cover;
    background-position: center;
}

.sanpham_name2 a {
    font-size: 15px;
}

.back_gioithieu {
    background-color: #009d48;
    padding: 40px 20px;
}

.gioithieubechungtoi_title {
    text-align: center;
    color: #293337;
    font-weight: 600;
    font-size: 38px;
    line-height: 30px;
}

.gt_sumary {
    font-size: 15px;
    margin-top: 30px;
    text-align: justify;
}

@media(max-width:1024px) {
    .gioithieubechungtoi_title {
        font-size: 34px;
    }

    .khungnen img, .backdichvu img {
        height: 218px !important;
    }

    .Gioithieu_title {
        color: #fff;
        font-size: 30px;
        line-height: 4px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .gt_sumary {
        margin-bottom: 30px;
    }

    .tintuc_khung {
        margin-bottom: 30px;
    }

    .GioiThieu_Child {
        left: 6%;
    }
}

.slick-slide {
   
}

.slick-prev {
       left: 40px;
}

.slick-next {
        right:40px;
}

@media(max-width:640px) {
    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }

    .slick-slide {
        padding: 0px 0px !important;
    }

    .GioiThieu_Child {
        position: absolute;
        left: 50%;
        /* width: 100%; */
        text-align: center;
        top: 7%;
        transform: translate(-50%, 10px);
        margin-top: 0px;
    }

    .Gioithieu_sumary {
        color: #fff;
        line-height: 22px;
        font-size: 15px;
        font-weight: 400;
        margin: 0px auto;
        font-size: 13px;
        max-width: 100%;
    }

    .gioithieubechungtoi_title {
        text-align: center;
        color: #293337;
        font-weight: 600;
        font-size: 23px;
        line-height: 37px;
    }

    .mcolumn {
        width: 100%;
    }

    .thanhtuu_img {
        display: inline-block;
        margin: 0px auto;
        border: 1px solid #009d48;
        border-radius: 50%;
        padding: 18px;
    }

        .thanhtuu_img img {
            margin: 0 auto;
            width: 56px;
            background-color: #009D48;
            border-radius: 50%;
            padding: 0px;
        }

    .thanhtuu_box {
        margin: 20px 0px;
        text-align: center;
    }

    .GioiThieu_Child {
        top: 7%;
        margin-top: 0px;
    }

    .khachhang_box {
        height: 420px;
    }

    .Gioithieu_title {
        font-size: 24px;
        text-align: center;
    }

    .Gioithieu_Xemthem {
        margin-top: 30px;
        text-align: center;
        display: block;
    }


    .khachhang_logo {
        position: absolute;
        left: 50%;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        bottom: 0;
        transform: translate(-50%,71%);
    }

    .sanpham_box {
        margin: 10px 10px;
        margin-bottom: 20px;
    }

    .sanpham_name2 a {
        font-size: 12px;
        line-height: 19px;
    }

    .khachhang_box {
        background: none;
        background-color: #009D48;
    }
}

.colbox {
    padding: 10px 0px;
    border-bottom: 1px solid #eee;
}

.title_all img {
    margin: 0px auto;
}

i.arright {
    float: right;
    color: red;
    font-size: 15px;
    margin-top: -13px;
    border-left: 1px solid #eee;
    padding: 15px 10px;
    padding-left: 18px;
}

.gioithieu1_box {
    margin-top: 20px;
    color: #2e2e2e;
    line-height: 26px;
    font-size: 15px;
    text-align: justify;
    font-weight: 400;
}

.danhsachgioithieu_title {
    width: 100%;
    position: absolute;
    max-width: 213px;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translate(-50%,-50%);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

    .danhsachgioithieu_title a {
        color: #fff;
    }

.thongtlh_box {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999999;
}

    .thongtlh_box ul {
        margin: 0px;
        padding: 0px;
    }

        .thongtlh_box ul li {
            position: relative;
            margin-bottom: 10px;
        }

            .thongtlh_box ul li:hover .autoAdsMaxLead-widget-tooltiptext {
                visibility: visible;
            }

.autoAdsMaxLead-widget-tooltiptext-style1-bottom-left.autoAdsMaxLead-widget-tooltiptext, .autoAdsMaxLead-widget-tooltiptext-style1-middle-left.autoAdsMaxLead-widget-tooltiptext, .autoAdsMaxLead-widget-tooltiptext-style1-top-left.autoAdsMaxLead-widget-tooltiptext {
    left: 127%;
}

.autoAdsMaxLead-widget-tooltiptext {
    visibility: hidden;
    text-align: center;
    border-radius: 5px !important;
    white-space: nowrap !important;
    width: auto !important;
    height: 35px !important;
    line-height: 25px !important;
    padding: 5px 10px !important;
    position: absolute;
    z-index: 1;
    left: 10px;
    top: 4px;
    font-size: 12px !important;
    color: #fff;
}

    .autoAdsMaxLead-widget-tooltiptext::after {
        border-color: transparent rgba(29, 36, 62, 0.7) transparent transparent !important;
    }

    .autoAdsMaxLead-widget-tooltiptext::after {
        content: "";
        position: absolute;
        top: 38%;
        left: -5px;
        left: -10px;
        border-width: 5px;
        border-style: solid;
    }

.delailoinhan_box {
    display: none;
    position: fixed;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999999;
    background-color: #F5F6FA;
    padding: 20px;
    width: 30%;
    padding-top: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.delailoinhan_box2 {
    display: none;
    position: fixed;
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999999;
    background-color: #ffffff;
    padding: 20px;
    width: 30%;
    padding-top: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

.deloailoinhan_title {
    padding: 25px 0px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    text-transform: capitalize;
}

.deloailoinhan_title2 {
    padding: 25px 0px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
}

.delailoinhan_form.text-center {
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
}

.ycgl {
    position: absolute;
    right: 4px;
    top: 4px;
}

    .ycgl button {
        background-color: #00B151;
        color: #fff !important;
        padding: 9px 12px;
        border-radius: 5px;
        outline: none;
        border: none;
    }

.delailoinhan_input input {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 15px;
    border-radius: 3px;
    outline: none;
    border: 1px solid #ebebeb;
    padding-left: 15px;
    position: relative;
}

.delailoinhan_input textarea {
    height: 100px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 3px;
    outline: none;
    padding-left: 15px;
    padding-top: 20px;
    border: 1px solid #ebebeb;
}

.guingay button {
    text-align: center;
    background-color: #007FFF;
    border-radius: 3px;
    color: white;
    width: 100%;
    padding: 9px 0px;
    border: none;
    display: block;
}

.guingay a {
    color: #fff;
    display: block;
    padding: 10px 0px;
}

.close_button {
    position: absolute;
    top: 0px;
    right: 3px;
}

.slideshow_title {
    position: absolute;
    left: 20px;
    bottom: 20%;
    color: #ffffff;
    line-height: 78px;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}

.menua_box {
    padding: 2px 0px;
    text-align: center;
    border: 2px solid #009D48;
}

.bodyd {
    padding: 30px 0px;
}

.menua_box a {
    height: 90px;
    width: 90px;
    display: inline-block;
    border: 2px solid #009D48;
    border-radius: 50%;
    padding: 10px 10px;
}

    .menua_box a:hover {
        border: 2px solid #2af9e2;
        box-shadow: 0 0 20px 2px rgba(42, 249, 226, 0.78);
    }

.menua_box img {
    max-width: 45px;
    padding: 7px;
    padding-bottom: 6px;
    padding-top: 3px;
}

.menua_box_title {
    color: #ceffeb;
    text-transform: capitalize;
    font-size: 12px;
}

.menuleft_box a span {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(0px,-50%);
    left: 0;
    text-align: right;
    transition: 0.6s;
    white-space: nowrap;
}

.spanactive {
    right: 100% !important;
    color: #d71921 !important;
}

    .spanactive i.iright {
        display: none;
    }

.menuleft_box a:hover span {
    right: 90%;
}

.menuleft_box i.iright {
    position: absolute;
    display: none;
    top: 50%;
    right: 0px;
    transform: translate(0px,-50%);
    font-size: 20px;
}

.menuleft_box a:hover i.iright {
    display: block;
}

.menuleft_box i.ileft {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translate(0px,-50%);
    font-size: 20px;
}

.menuleft_box a:hover i.ileft {
    display: none;
}

.menuleft_box ul ul a {
    /*color:#a39f9f!important;*/
    text-transform: capitalize;
}

.menuleft_box ul ul {
    display: none;
}

.menuleft_box ul li:hover ul {
    display: block;
}

.mg-20 {
    margin-bottom: 20px;
}

ul.no-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.lisde li:before {
    content: '';
    width: 5px;
    height: 5px;
    background: #23b14d;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: -2px;
    transform: rotate(45deg);
}

ul.lisde li {
    padding-bottom: 4px;
    font-size: 14px;
}

    ul.lisde li div:first-child {
        margin-right: 6px;
    }

    ul.lisde li div {
        display: inline-block;
    }

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.duan_map {
    padding: 5px 15px;
    margin-bottom: 0px;
    min-height: 58px;
}

.duan_map_nam {
    padding: 5px 15px;
    margin-bottom: 0px;
}

.duan_map_sanpham {
    padding: 5px 15px;
    min-height: 82px;
    margin-bottom: 0px;
}

    .duan_map i, .duan_map_sanpham i, .duan_map_nam i {
        margin-right: 5px;
        color: #005AAB;
    }

    .duan_map span, .duan_map_sanpham span, .duan_map_nam span {
        font-weight: 400;
        font-size: 13px;
        line-height: 15px;
    }

.duan_input input {
    padding-left: 20px;
    margin-right: 3px;
    width: 160px;
    border: none;
    font-size: 12px;
    border: 1px solid #eee;
    border-bottom: 1px solid #eee;
    height: 30px;
    outline: none;
}

.duan_input a {
    background-color: #005AAB;
    padding: 7px 10px;
}

.duan_input i {
    color: #fff;
}

.section-document-list table {
    float: left;
    width: 100%;
    margin-top: 33px;
    display: table;
    font-size: 16px;
    border: 2px solid #dae2e7 !important;
    color: #3b4245;
}

    .section-document-list table thead tr {
        border: none !important;
    }

    .section-document-list table tr td a {
        color: #0071b9;
    }

    .section-document-list table tr td:nth-child(1) {
        font-weight: 500;
        font-size: 15px;
        border-right: 2px solid #dae2e7;
    }

    .section-document-list table tr td {
        font-size: 13px;
        border: 1px solid #dae2e7;
        line-height: 26px;
        vertical-align: middle;
    }

    .section-document-list table tr:hover {
        border: 2px solid #0071b9;
        border-top: 3px solid #0071b9;
    }

.sanpham_box_img {
    border-bottom: 1px solid #eee;
}

.c-icon:before {
    content: '';
    background: #009d48;
    width: 5px;
    height: 5px;
    display: inline-block;
    transform: rotate(45deg);
    position: relative;
    top: -3px;
    margin-right: 5px;
}

.lis-info-pro li {
    margin-bottom: 3px !important;
}

ul.no-ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sanpham_box_ct {
    padding: 10px 10px;
    font-size: 14px;
}

.table thead th {
    vertical-align: bottom;
    font-size: 14px;
    padding: .75rem;
    border-bottom: 2px solid #dee2e6;
}

.table td, .table th {
    padding: 7px;
    font-size: 14px;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

@media(min-width:1024px) {
    .khungnen img, .backdichvu img {
        height: 250px !important;
    }
}


.lienhe_gui button {
    background: #D71921;
    border-radius: 5px;
    color: white;
    padding: 11px 40px;
    border: none;
    outline: navajowhite;
}

ul.no-ul.lisde {
    font-size: 13px;
}

.fixed_search {
    margin-top: 15px;
    text-align: center;
}

    .fixed_search img {
        width: 65%;
    }

.khungsearch {
    position: relative;
}

    .khungsearch input {
        width: 100%;
        padding: 5px 0px;
        border: none;
        outline: none;
        font-size: 15px;
        padding-left: 10px;
    }

    .khungsearch i {
        position: absolute;
        right: 10px;
        top: 8px;
        color: gray;
    }

.close_khungsearch i {
    color: white;
    border: 1px solid;
    padding: 10px 10px;
    margin-top: 11px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.close_khungsearch a {
    cursor: pointer;
}

.fixed_search a {
    cursor: pointer;
}

.myimage img {
    width: 165px;
    /*box-shadow: 0 5px 10px rgba(33, 33, 33, 0.7);*/
}

.close_button i {
    color: #5f5f5f;
    font-size: 17px;
}

.close_button a {
    display: block;
    padding: 6px 10px;
    cursor: pointer;
    -webkit-transition: -webkit-transform .4s ease-in-out;
    transition: transform .4s ease-in-out;
}

.guingay button:hover {
    background-color: #096fd6;
}

.close_button a:hover {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.splq_title {
    margin-top: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    border-bottom: 1px dotted #7b7b7b;
}

.splq_xemthem {
    margin-top: 20px;
}

    .splq_xemthem a {
        background-color: #009d48;
        color: white;
        display: inline-block;
        padding: 10px 16px;
        font-weight: bold;
        text-transform: uppercase;
    }

.Dichvu2_tt {
    position: absolute;
    bottom: 0px;
    text-align: center;
    /*box-shadow: 0 5px 20px rgba(0,0,0,.1);*/
    padding: 10px 15px;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    color: white;
    left: 50%;
    transform: translate(-50%,0px);
    width: 80%;
    transition: 500ms ease-out;
}

    .Dichvu2_tt a {
        color: #cb3438;
        font-size: 15px;
        font-weight: bold;
    }

    .Dichvu2_tt:hover {
        transform-origin: center bottom;
        transform: translate(-50%,-10px);
        color: #ce1f24;
        font-weight: bold;
    }

@media(max-width:640px) {
    .khungden {
        display: none !important;
    }

    .dichvu_box {
        padding: 30px 20px;
        text-align: center;
    }

    .delailoinhan_box {
        display: none !important;
    }

    .imgslide img {
        height: 300px !important;
        object-fit: cover;
    }

    .slideshow_title {
        position: absolute;
        left: 20px;
        bottom: 13%;
        color: #ffffff;
        line-height: 28px;
        font-size: 17px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .gioithieuback_mobile {
        margin-top: 10px;
    }

        .gioithieuback_mobile img {
            height: 409px !important;
            object-fit: cover;
        }

    .Gioithieu_img {
        text-align: center;
    }

    .Gioithieu_sumary {
        text-align: center;
    }

    .Dichvu2_box {
        background-color: #009D48;
        padding: 15px 0px;
    }

    .dichvu3 {
        background-color: #009d48;
        padding: 5px 0px;
    }



    .sanpham_box_ct li {
        font-size: 12px;
    }

    .sanpham_box_ct {
        padding: 5px 10px;
    }

    .khachhang_logo {
        width: 100% !important;
    }
}

.thongtlh_box {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999999;
}

    .thongtlh_box ul li {
        position: relative;
        margin-bottom: 10px;
    }

        .thongtlh_box ul li:hover .autoAdsMaxLead-widget-tooltiptext {
            visibility: visible;
        }

.text-right.Gioithieu_Xemthem.wow.lightSp.eedIn.animated.animated.animated {
    float: right;
    margin-top: 20px !important;
}

.khungden {
    background-color: rgba(0, 0, 0, 0.68);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999;
}

.tailieu_download {
    border: 1px solid #eee;
    margin-bottom: 10px;
    padding: 10px;
}

    .tailieu_download i {
        color: #666;
    }

.tailieu_icon i {
    background-color: #ffffff;
    color: #009D48;
    /* padding: 7px 3px; */
    height: 18px;
    width: 28px;
    font-size: 26px;
}

.tailieu_title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.tailieu_box1 {
    margin-bottom: 5px;
}

.tailieu_date {
    font-size: 12px;
    color: #999;
}

.tailieu_box1 a, .xemtailieu a {
    color: #333;
}
.slick-next, .slick-prev{
    z-index:2!important;
}
.autoplayfaded .slick-prev{display:none!important;}
/*ipad*/
@media(max-width:768px) {
    .slick-prev {
        left: 0px;
    }

    .slick-next {
        right: 0px;
    }

    .delailoinhan_box {
        width: 50%;
    }

    .delailoinhan_box2 {
        width: 50%;
    }

    .Gioithieu_sumary {
        max-width: 100%;
    }

    .khachhang_box {
        height: 596px;
        text-align: center;
    }

    .khachhang_logo {
        position: absolute;
        left: 5%;
        width: 90%;
        top: 125px;
    }

    .GioiThieu_Child {
        position: absolute;
        left: 50%;
        width: 90%;
        top: 3%;
        transform: translate(-50%, -1%);
        margin-top: 17px;
    }

    .myimage img {
        width: 165px;
        /* box-shadow: 0 5px 10px rgba(33, 33, 33, 0.7); */
    }
}

.lqleft {
    float: left;
    width: 25%;
    padding: 20px;
    border: 1px solid #eee;
}

.lqright {
    float: right;
    width: 72%;
    margin-left: 3%;
}

.dichvu3 {
    background: #009d48;
}

@media(max-width:640px) {
    .delailoinhan_box {
        width: 88%;
    }

    .lqleft {
        width: 100%;
    }

    .lqright {
        width: 100%;
    }

    .khachhang_box {
        height: 542px;
        text-align: center;
    }


    .khachhang_logo {
        top: -51%;
        transform: translate(-5%,55%);
    }

    .myimage img {
        width: 100%;
        /* box-shadow: 0 5px 10px rgba(33, 33, 33, 0.7); */
    }
}

@media(max-width:480px) {
    .khachhang_box {
        height: 542px;
        text-align: center;
    }


    .khachhang_logo {
        top: -51%;
        transform: translate(-5%,55%);
    }
}
