:root {
  --text-color: #58595b;
  --primary-color: #0a2c72;
  --secondary-color: #c41011;
  --white-color: #ffffff;
  --black-color: #000000;
}

.news__magazine-list .news__magazine-title:hover,
.news__main-item .news-title a:hover,
.news-item__content .news-title a:hover,
.solution__slider .slider-content .title a:hover,
.bread__crumb a:hover,
.panination ul li a:hover,
.product__page-list .product-desc .view-more,
.product__page-list .product-item .product-img a,
.filter-list ul li a,
.menu-right ul li a:hover {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.truncate-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
.truncate-10 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ws-sgct blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  border-left: 5px solid #eb2b2d;
}

.ws-sgct blockquote p {
  margin: 0 !important;
}

.ws-sgct code {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
  font-size: 0.85rem;
  color: #e83e8c;
}

.ws-sgct p,
.ws-sgct table {
  margin: 0 0 20px;
  line-height: 2;
}

.ws-sgct table {
  border: 1px solid #ddd;
  margin-bottom: 30px;
}

.ws-sgct table > tbody > tr > td,
.ws-sgct table > tbody > tr > th,
.ws-sgct table > tfoot > tr > td,
.ws-sgct table > tfoot > tr > th,
.ws-sgct table > thead > tr > td,
.ws-sgct table > thead > tr > th {
  border: 1px solid #ddd;
  padding: 7px 10px;
}

.ws-sgct h6 {
  font-size: 18px;
}

.ws-sgct h5 {
  font-size: 21px;
}

.ws-sgct h4 {
  font-size: 24px;
}

.ws-sgct h3 {
  font-size: 27px;
}

.ws-sgct h2 {
  font-size: 30px;
}

.ws-sgct ul,
.ws-sgct ol {
  margin: 0 0 20px;
  padding-left: 20px;
  list-style: disc;
}

.ws-sgct ul li,
.ws-sgct ol li {
  line-height: 1.5;
}

.ws-sgct ol {
  list-style: decimal;
}

.ws-sgct iframe {
  margin: auto;
}

.ws-sgct .syntaxhighlighter {
  padding: 10px 0;
}

.ws-sgct h2,
.ws-sgct h3,
.ws-sgct h4,
.ws-sgct h5,
.ws-sgct h6 {
  margin: 0 0 30px;
}

.header-active {
  position: fixed !important;
  width: 100%;
  left: 0;
  animation: stuck-header 1s;
  z-index: 999;
  top: 0;
  box-shadow: 0px -2px 10px 0px #807474;
}

@keyframes stuck-header {
  0% {
    transform: translateY(-300px);
  }
  100% {
    transform: translateY(0);
  }
}
.menu-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  max-width: 320px;
  background-color: var(--primary-color);
  z-index: 9999;
  transform: translateX(-100%);
  transition: 0.5s;
  padding-bottom: 50px;
}
.menu-mobile ul {
  margin-top: 50px;
  list-style: none;
}
.menu-mobile ul li {
  position: relative;
  border-bottom: 1px solid #ffefef4a;
}
.menu-mobile ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  padding: 15px 10px;
}
.menu-mobile ul li .li-plus {
  position: absolute;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: block;
  top: 0;
  right: 0;
  color: #fff;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.menu-mobile ul li .li-plus:before,
.menu-mobile ul li .li-plus:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  background-color: #fff;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  -moz-transform: translate(-50%, -50%) rotate(-90deg);
  -ms-transform: translate(-50%, -50%) rotate(-90deg);
  -o-transform: translate(-50%, -50%) rotate(-90deg);
}
.menu-mobile ul li .li-plus:before {
  width: 11px;
  height: 1px;
}
.menu-mobile ul li .li-plus:after {
  width: 1px;
  height: 11px;
}
.menu-mobile ul li .clicked {
  transform: rotate(180deg);
}
.menu-mobile ul li .clicked.li-plus:before {
  display: none;
}
.menu-mobile ul li > ul {
  margin-top: 0;
  display: none;
}
.menu-mobile ul li > ul li {
  border: none;
}
.menu-mobile ul li > ul li a {
  padding-left: 25px;
}
.menu-mobile ul .current-menu-item a {
  color: var(--primary-color);
  background: var(--white-color);
}
.menu-mobile ul .current-menu-item ul a {
  color: #fff;
}
.menu-mobile ul .current-menu-parent ul {
  display: block;
}
.menu-mobile .menu-mobile-close {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  top: 0;
  right: 10px;
}
.menu-mobile .menu-mobile-close svg {
  color: #fff;
}
.menu-mobile .menu-mobile-close svg path {
  fill: #fff;
  stroke: #fff;
}
.menu-mobile.menu-mobile-active {
  transform: translate(0);
}

.overlay {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1998;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.overlay.overlay-active {
  opacity: 1;
  visibility: visible;
}

#backTop.show {
  display: block;
}

#backTop {
  border: 1px solid #fff;
  display: none;
  position: fixed;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  z-index: 999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  right: 18px;
  bottom: 65px;
  background: #959595;
  color: #fff;
}

.c-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding-top: 70%;
}
.c-img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.scale-hover {
  display: block;
  overflow: hidden;
  width: 100%;
}
.scale-hover img {
  transition: 2s;
}
.scale-hover:hover > img {
  transform: scale(1.09);
}

.gutter-10 {
  margin: 0 -10px;
}

.gutter-10 [class*="col-"] {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.gutter-20 {
  margin: 0 -20px;
}

.gutter-20 [class*="col-"] {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.gutter-25 {
  margin: 0 -25px;
}

.gutter-25 [class*="col-"] {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 991px) {
  .col-lg-1-5 {
    width: 20% !important;
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}
.lazyflickity {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.lazyflickity.flickity-lazyloaded,
.lazyflickity.flickity-lazyerror {
  opacity: 1;
}

img.lazy {
  background-image: url("https://media.giphy.com/media/3oEjI6SIIHBdRxXI40/giphy.gif");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  box-sizing: border-box;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
button:focus {
  outline: none;
}

a:hover {
  text-decoration: none;
  color: currentColor;
}

*:before,
*:after {
  box-sizing: border-box !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Text-level semantic
 */
:active {
  outline: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-size: inherit;
  font-weight: inherit;
}

p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

/**
 * Embedded content
 */
img {
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: middle;
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

/**
 * Grouping content
 */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 16px;
}

/**
 * Forms
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button,
input[type="submit"] {
  padding: 0;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
  border-radius: 0;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: none;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 6px 10px 12px;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MA.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MASemibold.ttf");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MAItalic.ttf");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MALight.ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Myriad Pro";
  src: url("../fonts/MASemi.ttf");
  font-weight: 500;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Myriad Pro";
  font-size: 14px;
  line-height: 1.5;
  color: #363636;
  font-weight: 500;
}

@media (min-width: 1200px) {
  .container {
    width: 1230px;
    max-width: 100%;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.header__top {
  padding: 20px 0;
}
.header__top-logo-img img {
  width: 130px;
  height: 64px;
}
.header__top-logo-img span {
  color: #8e8e8e;
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
}
@media only screen and (max-width: 576px) {
  .header__top-logo-img span {
    font-size: 9px;
  }
}
.header__top-contact .hotline {
  line-height: 26px;
  color: #a2a2a2;
}
.header__top-contact .hotline img {
  width: 22px;
  height: 22px;
  margin-right: 4px;
}
@media only screen and (max-width: 576px) {
  .header__top-contact .hotline img {
    width: 16px;
    height: 16px;
  }
}
.header__top-contact .hotline a {
  color: #cb0236;
  font-size: 17px;
  letter-spacing: 1px;
}
@media only screen and (max-width: 576px) {
  .header__top-contact .hotline a {
    font-size: 14px;
    letter-spacing: 0px;
  }
}
.header__top-contact .work-time {
  color: #a2a2a2;
  font-size: 11px;
  text-align: right;
}
@media only screen and (max-width: 576px) {
  .header__top-contact .work-time {
    display: none;
  }
}
.header__top-contact {
  position: relative;
}
@media only screen and (max-width: 576px) {
  .header__top-search {
    position: absolute;
    top: 177px;
    left: 22px;
    z-index: 99;
    display: none;
  }
}
.header__top-search input {
  width: 256px;
  height: 33px;
  border: 1px solid #d3d3d3;
  padding: 0 35px 0 10px;
  color: #8e8e8e;
  font-style: italic;
  font-size: 13px;
}
.header__top-search input[type="submit"] {
  background: url(../img/search.png) no-repeat;
  width: 20px;
  height: 16px;
  border: 0;
  position: absolute;
  top: 39px;
  bottom: 0;
  right: -14px;
  font-size: 0;
  margin: auto;
}

.header__nav {
  background: #cb0236;
}
.header__nav .header__top-search {
  display: none;
}
@media (max-width: 576px) {
  .header__nav .header__top-search {
    display: block;
  }

  .header__nav.header-active .header__top-search {
    top: 7px;
  }
}

.header__nav-main ul {
  display: flex;
  align-items: center;
}
.header__nav-main ul li {
  display: inline-block;
  vertical-align: top;
  line-height: 50px;
  position: relative;
}
.header__nav-main ul li a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 0 10px;
  display: block;
}
.header__nav-main ul li:first-child a {
  padding-left: 0;
}

.header__nav-main ul li::before {
  content: "";
  position: absolute;
  background: #fff;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
.header__nav-main ul li:hover::before {
  opacity: 1;
}
.header__nav-menu-right {
  position: relative;
}
.header__nav-menu-right .menu-btn img {
  cursor: pointer;
  max-width: 30px;
}
@media only screen and (max-width: 991px) {
  .header__nav-menu-right .menu-btn {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0;
  }
}

.menu-right {
  position: fixed;
  top: 33px;
  background: rgba(72, 72, 72, 0.9);
  padding-left: 25px;
  padding-right: 25px;
  right: -1000%;
  z-index: 999;
  transition: all 0.5s ease;
  height: 100vh;
  width: 500px;
  opacity: 0;
  /*
      &::after {
          position: absolute;
          content: "";
          background: rgba(72, 72, 72, 0.9);
          height: 100%;
          width: 1000px;
          left: 100%;
          top: 0;
          @include Responsive(rps991) {
              display: none;
          }
      }
  */
}
.menu-right ul {
  width: 250px;
  line-height: 24px !important;
}
.menu-right ul li {
  padding: 4px 0;
}
.menu-right ul li a {
  font-size: 15px;
  color: #fff;
}
.menu-right ul li a:hover {
  color: #cb0236;
}
.menu-right ul.menu-top {
  border-bottom: 1px solid #6d6d6d;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-top: 20px;
  text-transform: uppercase;
}
.menu-right ul.menu-bottom a {
  font-size: 13px;
}

.menu-right.open {
  right: 0;
  opacity: 1;
  visibility: visible;
  top: 206px;
}
@media (min-width: 768px) {
  .menu-right.open {
    width: 373px;
  }
}
@media (max-width: 767px) {
  .menu-right.open {
    width: 300px;
    top: 216px;
  }
}
@media (max-width: 480px) {
  .menu-right.open {
    width: 300px;
  }
}

.header__nav.header-active .menu-right.open {
  top: 50px;
}

footer {
  background: #e6e7e9;
}

.footer__wrapper {
  padding: 35px 15px;
}
.footer__wrapper .footer-logo img {
  max-width: 150px;
  max-height: 70px;
}
.footer__wrapper .footer-followUs {
  margin-top: 75px;
  font-size: 12px;
}
@media only screen and (max-width: 991px) {
  .footer__wrapper .footer-followUs {
    margin-top: 0;
  }
}
.footer__wrapper .footer-followUs ul {
  display: flex;
}
.footer__wrapper .footer-followUs li a {
  background: #363636;
  display:flex;
  justify-content:center;
  align-items:center;
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.footer__wrapper .footer-followUs li a svg {
  max-width: 20px;
  max-height: 20px;
}
.footer__wrapper .footer__content h2 {
  margin-top: 0;
  font-size: 16px;
  color: #313131;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
.footer__wrapper .footer__content ul li {
  margin-bottom: 2px;
}
.footer__wrapper .footer__content ul li a {
  color: #313131;
  transition: all 0.5s ease;
}
.footer__wrapper .footer__content ul li a:hover {
  color: #cb0236;
}

.coppy-right {
  border-top: 2px solid #cecece;
}
.coppy-right p {
  font-size: 14px;
  color: #929291;
  padding: 10px 0;
}

.home__slider-wrapper .flickity-slider {
  transform: none !important;
}
.home__slider-wrapper .home__slider-item {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.home__slider-wrapper .home__slider-item.is-selected {
  opacity: 1;
  z-index: 0;
}
.home__slider-wrapper .flickity-button {
  background: transparent;
}
.home__slider-wrapper .flickity-button svg {
  display: none;
}
.home__slider-wrapper .flickity-button.previous::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 4L7 12L15 20' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
}
.home__slider-wrapper .flickity-button.next::before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 20L17 12L9 4' stroke='%23fff' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  right: 10px;
  top: 0;
  width: 100%;
  height: 100%;
}

.home__service {
  position: relative;
}
@media only screen and (max-width: 991px) {
  .home__service .home__service-wrapper {
    margin-top: -150px;
  }
}

.home__service-item {
  position: relative;
  min-height: 170px;
}
.home__service-item .service-item {
  background: #cb0236;
  border-radius: 10px;
  padding: 45px 25px;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .home__service-item .service-item {
    margin-bottom: 20px;
    position: static;
  }
}
.home__service-item .service-item img {
  max-height: 76px;
  max-width: 76px;
  margin: auto;
}
.home__service-item .service-item .service-title {
  font-size: 18px;
  margin-bottom: 15px;
  margin-top: 20px;
  text-transform: uppercase;
}
.home__service-item .service-item .service-desc {
  height: 88px;
  margin: 0 auto;
}
.home__service-item .service-item .read-more {
  margin-top: 15px;
  display: none;
}
.home__service-item .service-item .read-more a {
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 5px 15px;
  border: 2px solid #fff;
  border-radius: 25px;
  transition: all 0.5s ease;
}
.home__service-item .service-item .read-more a:hover {
  color: #cb0236;
  background: #fff;
  border: 2px solid #fff;
}
.home__service-item .service-item:hover {
  background: #df164b;
  background: -moz-linear-gradient(
    45deg,
    #df164b 0%,
    #df164b 13%,
    #d1083e 22%,
    #e02157 37%,
    #d1083e 37%,
    #e02157 46%,
    #e02157 55%,
    #d1083e 56%,
    #e02157 63%,
    #d50c41 72%,
    #d1083e 72%,
    #ed245a 79%,
    #ee255b 91%,
    #de1549 96%,
    #de1549 100%
  );
  background: -webkit-gradient(
    left bottom,
    right top,
    color-stop(0%, #df164b),
    color-stop(13%, #df164b),
    color-stop(22%, #d1083e),
    color-stop(37%, #e02157),
    color-stop(37%, #d1083e),
    color-stop(46%, #e02157),
    color-stop(55%, #e02157),
    color-stop(56%, #d1083e),
    color-stop(63%, #e02157),
    color-stop(72%, #d50c41),
    color-stop(72%, #d1083e),
    color-stop(79%, #ed245a),
    color-stop(91%, #ee255b),
    color-stop(96%, #de1549),
    color-stop(100%, #de1549)
  );
  background: -webkit-linear-gradient(
    45deg,
    #df164b 0%,
    #df164b 13%,
    #d1083e 22%,
    #e02157 37%,
    #d1083e 37%,
    #e02157 46%,
    #e02157 55%,
    #d1083e 56%,
    #e02157 63%,
    #d50c41 72%,
    #d1083e 72%,
    #ed245a 79%,
    #ee255b 91%,
    #de1549 96%,
    #de1549 100%
  );
  background: -o-linear-gradient(
    45deg,
    #df164b 0%,
    #df164b 13%,
    #d1083e 22%,
    #e02157 37%,
    #d1083e 37%,
    #e02157 46%,
    #e02157 55%,
    #d1083e 56%,
    #e02157 63%,
    #d50c41 72%,
    #d1083e 72%,
    #ed245a 79%,
    #ee255b 91%,
    #de1549 96%,
    #de1549 100%
  );
  background: -ms-linear-gradient(
    45deg,
    #df164b 0%,
    #df164b 13%,
    #d1083e 22%,
    #e02157 37%,
    #d1083e 37%,
    #e02157 46%,
    #e02157 55%,
    #d1083e 56%,
    #e02157 63%,
    #d50c41 72%,
    #d1083e 72%,
    #ed245a 79%,
    #ee255b 91%,
    #de1549 96%,
    #de1549 100%
  );
  background: linear-gradient(
    45deg,
    #df164b 0%,
    #df164b 13%,
    #d1083e 22%,
    #e02157 37%,
    #d1083e 37%,
    #e02157 46%,
    #e02157 55%,
    #d1083e 56%,
    #e02157 63%,
    #d50c41 72%,
    #d1083e 72%,
    #ed245a 79%,
    #ee255b 91%,
    #de1549 96%,
    #de1549 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#df164b", endColorstr="#de1549", GradientType=1);
}

@media (min-width: 768px) {
  .home__service-wrapper .gutter {
    margin: 0 -7px;
  }
  .home__service-wrapper .gutter [class*="col-"] {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }
}
.home__weAre-wrapper {
  background: #e6e7e9;
  padding: 40px 0;
  text-align: center;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .home__weAre-wrapper {
    display: block;
  }
}
.home__weAre-wrapper .weAre-title {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 2px;
  width: 90px;
}
@media only screen and (max-width: 991px) {
  .home__weAre-wrapper .weAre-title {
    display: block;
    text-align: center;
    margin: auto;
  }
}
.home__weAre-wrapper .weAre-title span {
  height: 40px;
  padding: 10px 12px 12px;
  position: relative;
  display: block;
  text-align: left;
  color: #cb0236;
  text-transform: uppercase;
  font-size: 13px;
}
.home__weAre-wrapper .select-one {
  width: 150px;
  margin-right: 10px;
}
.home__weAre-wrapper .select-two {
  width: 330px;
}
.home__weAre-wrapper .select-two span.select-label {
  padding-left: 35px;
  background: #fff url(../img/arr_w_blue.png) no-repeat 12px center;
}
.home__weAre-wrapper .select-two li {
  padding: 4px 0 4px 23px !important;
  background-image: url(../img/arr_w_black.png);
  background-repeat: no-repeat;
  background-position: left center;
}
.home__weAre-wrapper .select-two li:hover {
  background-image: url(../img/arr_w_red.png);
}
.home__weAre-wrapper .weAre-select {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0 2px;
}
@media only screen and (max-width: 991px) {
  .home__weAre-wrapper .weAre-select {
    width: 80%;
  }
}
.home__weAre-wrapper .weAre-select .select-label {
  height: 40px;
  border: 1px dashed #ccc;
  border-radius: 5px;
  padding: 10px 12px 12px;
  padding-right: 34px;
  background: #fff;
  position: relative;
  display: block;
  text-align: left;
  cursor: pointer;
}
.home__weAre-wrapper .weAre-select .select-label::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' focusable='false' data-prefix='fas' data-icon='caret-down' class='svg-inline--fa fa-caret-down fa-w-10' role='img' viewBox='0 0 320 512'%3E%3Cpath fill='currentColor' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'/%3E%3C/svg%3E");
  position: absolute;
  width: 10px;
  height: 5px;
  line-height: 40px;
  right: 10px;
  top: 2px;
}
.home__weAre-wrapper .select-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  padding: 5px 12px;
  z-index: 999;
  text-align: left;
}
.home__weAre-wrapper .select-menu li {
  padding: 7px 0 4px;
  cursor: pointer;
}
.home__weAre-wrapper .select-menu li:hover {
  color: #cb0236;
}
.home__weAre-wrapper .select-menu li.active {
  color: #cb0236;
}
.home__weAre-wrapper .select-menu::before {
  position: absolute;
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  bottom: 100%;
  right: 12px;
  z-index: 5;
}
.home__weAre-wrapper .select-menu::after {
  position: absolute;
  content: "";
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 8px solid #e1e1e1;
  bottom: 100%;
  right: 10px;
  z-index: 2;
}
.home__weAre-wrapper .select-menu.active {
  display: block;
}
.home__weAre-wrapper .btnWeAre {
  display: inline-block;
  vertical-align: top;
}
@media only screen and (max-width: 991px) {
  .home__weAre-wrapper .btnWeAre {
    display: block;
    margin-top: 15px;
  }
}
.home__weAre-wrapper .btnWeAre a {
  background: #0096cd;
  background-image: -webkit-gradient(linear, left top, right top, from(#cb0236), to(#ee2c2c));
  background-image: linear-gradient(to right, #cb0236, #ee2c2c);
  border: 0;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  height: 39px;
  line-height: 42px;
  position: relative;
  padding-left: 25px;
  padding-right: 25px;
  text-transform: uppercase;
  margin-left: 2px;
  transition: 0.3s all;
}
.home__weAre-wrapper .btnWeAre a:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 10px #ee2c2c;
  box-shadow: 0 0 10px #ee2c2c;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.home__aboutUs-wrapper {
  text-align: justify;
  padding: 75px 0 50px;
}
@media only screen and (max-width: 767px) {
  .home__aboutUs-wrapper {
    padding: 15px 0 50px;
  }
}
@media only screen and (max-width: 991px) {
  .home__aboutUs-wrapper .aboutUs-desc {
    margin-bottom: 30px;
  }
}
.home__aboutUs-wrapper .aboutUs-desc h2 {
  font-size: 36px;
  color: #b3b3b3;
  margin-top: 0;
  font-weight: normal;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 40px;
}
.home__aboutUs-wrapper .aboutUs-desc h2 span {
  color: #3a3a3a;
  display: block;
  font-weight: bold;
  line-height: 40px;
}
.home__aboutUs-wrapper .aboutUs-desc h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #cb0236;
  left: 0;
  bottom: 0;
}
.home__aboutUs-wrapper .aboutUs-desc .read-more a {
  color: #cb0236;
  font-weight: bold;
  font-size: 14px;
}
.home__aboutUs-wrapper .aboutUs-item {
  margin-bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .home__aboutUs-wrapper .aboutUs-item {
    margin-bottom: 0;
  }
}
.home__aboutUs-wrapper .aboutUs-item__img {
  display: inline-block;
  vertical-align: top;
  margin-right: 18px;
}
.home__aboutUs-wrapper .aboutUs-item__content {
  width: calc(100% - 74px);
  width: -webkit-calc(100% - 74px);
  width: -moz-calc(100% - 74px);
  display: inline-block;
  vertical-align: top;
}
.home__aboutUs-wrapper .aboutUs-item__content h3 {
  margin-top: 0;
  font-size: 18px;
  color: #3a3a3a;
  font-weight: bold;
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.home__aboutUs-wrapper .aboutUs-item__content h3::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  background: #e5e5e5;
  left: 0;
  bottom: 0;
}
.home__aboutUs-wrapper .aboutUs-item__content p {
  color: #606060;
  line-height: 20px;
}

@media only screen and (max-width: 991px) {
  .aboutUs-cate .item:nth-of-type(2n + 1) {
    background: #eee;
  }
  .aboutUs-cate .item {
    margin-bottom: 0;
    padding: 25px 15px;
  }
}
.aboutUs-cate .item:nth-of-type(2n + 1) {
  animation: slideInUp 1s;
}
.aboutUs-cate .item {
  animation: slideInUp 1.25s;
}

.home__market-wrapper {
  background: url(../img/market.png) no-repeat bottom center;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 180px;
  position: relative;
  min-height: 585px;
}
@media only screen and (max-width: 991px) {
  .home__market-wrapper {
    padding-top: 0;
  }
}
@media only screen and (max-width: 576px) {
  .home__market-wrapper {
    background-size: auto 380px;
    background-position: top center;
    padding-bottom: 25px;
  }
}
.home__market-wrapper .home__market-hand {
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 991px) {
  .home__market-wrapper .home__market-hand {
    position: static;
  }
}
.home__market-wrapper .home__market-hand .main__hand-img {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .home__market-wrapper .home__market-hand .main__hand-img {
    display: block;
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .home__market-wrapper .home__market-hand .main__hand-img {
    float: right;
    width: 350px;
  }
}
.home__market-wrapper .home__market-hand .sub__hand-img {
  width: 372px;
  height: 357px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .home__market-wrapper .home__market-hand .sub__hand-img {
    display: none;
  }
}
.home__market-wrapper .home__market-hand .cate__arr {
  width: 91px;
  height: 91px;
  bottom: 2px;
  left: 11px;
  position: absolute;
}
@media only screen and (max-width: 1199px) {
  .home__market-wrapper .home__market-hand .cate__arr {
    display: none;
  }
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(1) {
  bottom: 82px;
  left: 0;
  -moz-transform: rotate(-20deg);
  -ms-transform: rotate(-20deg);
  -o-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(2) {
  top: -65px;
  left: -53px;
  -moz-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  -o-transform: rotate(-55deg);
  -webkit-transform: rotate(-55deg);
  transform: rotate(-55deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(3) {
  top: 0;
  left: -72px;
  bottom: 0;
  margin: auto;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(4) {
  top: 55px;
  left: -51px;
  -moz-transform: rotate(52deg);
  -ms-transform: rotate(52deg);
  -o-transform: rotate(52deg);
  -webkit-transform: rotate(52deg);
  transform: rotate(52deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(5) {
  top: 90px;
  left: 8px;
  -moz-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(6) {
  top: 87px;
  left: 70px;
  -moz-transform: rotate(-19deg);
  -ms-transform: rotate(-19deg);
  -o-transform: rotate(-19deg);
  -webkit-transform: rotate(-19deg);
  transform: rotate(-19deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(7) {
  top: 49px;
  right: -53px;
  -moz-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  -o-transform: rotate(-55deg);
  -webkit-transform: rotate(-55deg);
  transform: rotate(-55deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item:nth-of-type(8) {
  top: 0;
  right: -65px;
  bottom: 0;
  margin: auto;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.home__market-wrapper .home__market-hand .cate__arr .item {
  position: absolute;
}
.home__market-wrapper .home__market-hand .cate__hand {
  width: 91px;
  height: 91px;
  bottom: 2px;
  left: 11px;
  position: absolute;
}

.home__market-wrapper .home__market-hand .cate__hand .item img {
  max-width: 91px;
}
@media only screen and (max-width: 1199px) {
  .home__market-wrapper .home__market-hand .cate__hand {
    display: none;
  }
}

.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(1) {
  top: -204px;
  left: -67px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(2) {
  top: -135px;
  left: -165px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(3) {
  top: -21px;
  left: -195px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(4) {
  top: 107px;
  left: -157px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(5) {
  top: 178px;
  left: -50px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(6) {
  top: 174px;
  left: 70px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(7) {
  top: 110px;
  left: 166px;
}
.home__market-wrapper .home__market-hand .cate__hand .item:nth-of-type(8) {
  top: 0;
  left: 201px;
}
.home__market-wrapper .home__market-hand .cate__hand .item {
  position: absolute;
}
/*
.home__market-wrapper .mysprite {
  background-image: url(../img/mysprite.sprite.png);
  background-repeat: no-repeat;
  display: inline-block;
} */
.home__market-wrapper .mysprite.h9 {
  width: 25px;
  height: 101px;
  background-position: -10px -834px;
}
.home__market-wrapper .mysprite.h8 {
  width: 93px;
  height: 93px;
  background-position: -10px -731px;
}
.home__market-wrapper .mysprite.h7 {
  width: 93px;
  height: 93px;
  background-position: -10px -628px;
}
.home__market-wrapper .mysprite.h6 {
  width: 93px;
  height: 93px;
  background-position: -10px -525px;
}
.home__market-wrapper .mysprite.h5 {
  width: 93px;
  height: 93px;
  background-position: -10px -422px;
}
.home__market-wrapper .mysprite.h4 {
  width: 93px;
  height: 93px;
  background-position: -10px -319px;
}
.home__market-wrapper .mysprite.h3 {
  width: 93px;
  height: 93px;
  background-position: -10px -216px;
}
.home__market-wrapper .mysprite.h2 {
  width: 93px;
  height: 93px;
  background-position: -10px -113px;
}
.home__market-wrapper .mysprite.h1 {
  width: 93px;
  height: 93px;
  background-position: -10px -10px;
}

.home__market-desc h2 {
  font-size: 36px;
  color: #3a3a3a;
  margin-top: 0;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 40px;
  text-transform: uppercase;
}
.home__market-desc h2::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #cb0236;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 576px) {
  .home__market-desc h2 {
    font-size: 24px;
    font-weight: 500;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 15px 0;
    margin: 20px auto;
    width: 75%;
  }
}
.home__market-desc .read-more a {
  display: inline-block;
  padding: 5px 25px;
  border-radius: 25px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 11px;
  transition: 0.3s all;
  margin-top: 25px;
  background-image: -webkit-gradient(linear, left top, right top, from(#cb0236), to(#ee2c2c));
  background-image: linear-gradient(to right, #cb0236, #ee2c2c);
}
.home__market-desc .read-more a:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 10px #ee2c2c;
  box-shadow: 0 0 10px #ee2c2c;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.clr {
  clear: both;
}

.home__partner-wrapper {
  background: url(../img/inter.png) no-repeat top right;
  padding: 65px 0 65px;
}
.home__partner-wrapper .home__partner-title {
  color: #3a3a3a;
  margin-top: 0;
  font-weight: normal;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
  font-size: 36px;
}
.home__partner-wrapper .home__partner-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #cb0236;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.home__partner-wrapper .home__partner-desc {
  text-align: center;
  color: #00b0ea;
  font-size: 18px;
  font-weight: bold;
  display: block;
}
.home__partner-wrapper .partner-list {
  margin-top: 25px;
}
.home__partner-wrapper .partner-list .partner-item {
  background: #fff;
  width: 170px;
  height: 130px;
  border: 1px solid #ececec;
  margin-left: -1px;
  margin-bottom: -1px;
  float: left;
  position: relative;
}
@media (max-width: 576px) {
  .home__partner-wrapper .partner-list .partner-item {
    height: 90px;
    width: 33.333%;
  }
}
.home__partner-wrapper .partner-list .partner-item::before {
  position: absolute;
  content: "";
  background: url(../img/shadow.png) no-repeat;
  left: 0;
  top: 100%;
  height: 15px;
  width: 100%;
  z-index: 2;
  background-size: 100%;
}
.home__partner-wrapper .partner-list .partner-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.home__partner-wrapper .partner-list .partner-item a img {
  max-width: 100%;
  max-height: 110px;
}
.home__partner-wrapper .read-more {
  padding-right: 18px;
  margin-top: 25px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home__partner-wrapper .read-more a {
  color: #313131;
}
.home__partner-wrapper .read-more img {
  margin-left: 2px;
  margin-top: -2px;
  width: 10px;
}

.section__header-wrapper {
  background-size: cover;
  background-repeat: no-repeat;
  height: 285px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section__header-wrapper .section__header-title {
  font-size: 40px;
  color: #cb0236;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  text-transform: capitalize;
}
.section__header-wrapper .bread-crumb {
  font-size: 15px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .section__header-wrapper {
    height: 200px;
  }
}

.product__page-wrapper {
  padding: 40px 0;
}
.product__page-wrapper .product__sidebar-box {
  margin-bottom: 30px;
}
.product__page-wrapper .product__sidebar-box .title {
  font-size: 25px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.product__page-wrapper .product__sidebar-box .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #cb0236;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category li {
  display: block;
  position: relative;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category li a {
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #fff;
  background: #f1f1f1;
  position: relative;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category li span {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 9.5L11.5 14.5L16.5 9.5' stroke='%23333333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  right: 7px;
  top: 11px;
  cursor: pointer;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category li.active a {
  background: #cb0236;
  color: #fff;
  transition: 0.5s;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category li.active .sub-category a {
  background: #cf5151;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category li.active .sub-category a:hover {
  background: #a01f1f;
}
.product__page-wrapper .product__sidebar-box .product__sidebar-category .sub-category {
  display: none;
}

.filter-form {
  position: relative;
  margin-bottom: 15px;
}
.filter-form input {
  height: 40px;
  border-radius: 0;
  border: 1px solid #cb0236;
  padding-left: 10px;
  color: #666;
  font-size: 13px;
}
.filter-form input:focus {
  box-shadow: none;
  border-color: #cb0236;
}
.filter-form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: #cb0236;
}

.filter-list ul {
  height: 170px;
  overflow: auto;
}
.filter-list ul li {
  margin-bottom: 15px;
}
.filter-list ul li a {
  font-size: 16px;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.filter-list ul li a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  margin-right: 10px;
}
.filter-list ul li a:hover::before {
  background-color: #cb0236;
}
.filter-list ul li a.active::before {
  background: #cb0236;
}

.product__page-content .product__page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.product__page-content .product__page-title h2,
.product__page-content .product__page-title h1 {
  font-size: 30px;
  color: #cb0236;
  text-transform: uppercase;
  font-weight: bold;
}
.product__page-content .product__page-title .filter-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 414px) {
  .product__page-content .product__page-title .filter-products {
    margin-top: 20px;
  }
}
.product__page-content .product__page-title .filter-products span {
  display: block;
  font-size: 16px;
  color: #666;
  padding-right: 10px;
}
.product__page-content .product__page-title .filter-products form {
  margin: 0;
}
.product__page-content .product__page-title .filter-products form select {
  height: 40px;
  border: 1px solid #cb0236;
  border-radius: 5px;
  font-size: 15px;
  color: #666;
  padding-left: 10px;
  margin: 0;
  min-width: 190px;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url(../img/arrow-down.png);
  background-repeat: no-repeat;
  background-position: 96% 50%;
  background-size: 15px;
}

.product__page-list .product-item {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .product__page-list .product-item {
    margin-bottom: 30px;
  }
}
.product__page-list .product-item .product-img {
  text-align: center;
}
.product__page-list .product-item .product-img a img {
  width: 100%;
  height: 170px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}
.product__page-list .product-desc {
  padding-left: 15px;
}
@media only screen and (max-width: 767px) {
  .product__page-list .product-desc {
    text-align: center;
  }
}
.product__page-list .product-desc .product-name {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product__page-list .product-desc .desc {
  margin-bottom: 15px;
}
.product__page-list .product-desc .desc p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
.product__page-list .product-desc .view-more {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  font-size: 15px;
  color: #fff;
  border-radius: 50px;
  background-image: -webkit-gradient(linear, left top, right top, from(#cb0236), to(#ee2c2c));
  background-image: linear-gradient(to right, #cb0236, #ee2c2c);
}
.product__page-list .product-desc .view-more:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 10px #ee2c2c;
  box-shadow: 0 0 10px #ee2c2c;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
@media only screen and (max-width: 767px) {
  .product__page-list .product-desc .view-more {
    margin: auto;
  }
}

.panination {
  margin: 20px 0px;
}
.panination ul {
  display: flex;
  justify-content: start;
}
.panination ul li.active a {
  background: #cb0236;
  color: #fff;
}
.panination ul li a {
  float: left;
  margin: 0 2.5px;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  background: #f6f6f6;
  border: solid 1px #e3e3e3;
  text-align: center;
  font-size: 14px;
  padding: 0;
  line-height: 35px;
  color: #282828;
  text-decoration: none;
}
.panination ul li a:hover {
  background: #cb0236;
  color: #fff;
}
.panination ul li a:hover svg path {
  stroke: #fff;
}

.bread__crumb {
  margin-bottom: 20px;
}
.bread__crumb .bread-crumb {
  margin-bottom: 30px;
  padding: 8px 15px;
}
.bread__crumb .bread-crumb a {
  color: #000;
  font-style: italic;
  display: inline-block;
}
.bread__crumb .bread-crumb span {
  color: #8e8e8e;
  font-style: italic;
  font-size: 13px;
  display: inline-block;
  margin: 0 5px 0 8px;
}
.bread__crumb nav {
  margin-left: 16px;
}
.bread__crumb a:hover {
  color: #cb0236;
}

.solution__wrapper {
  margin-bottom: 40px;
}

.heading-title {
  font-size: 28px;
  color: #3a3a3a;
  margin-top: 0;
  font-weight: normal;
  position: relative;
  line-height: normal;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.heading-title::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #cb0236;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 576px) {
  .heading-title {
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.solution__content-desc {
  display: block !important;
  width: 765px;
  max-width: 95%;
  margin: 0 auto;
  line-height: 26px;
  text-align: center;
  color: #00b0ea;
  font-size: 18px;
  font-weight: bold;
}
@media only screen and (max-width: 576px) {
  .solution__content-desc {
    font-size: 14px;
    line-height: 16px;
  }
}

.solution-item {
  padding: 10px 0;
}
.solution-item .title {
  display: block;
  width: 100%;
  padding-right: 10px;
  color: #313131;
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  padding-left: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .solution-item .title {
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding-left: 0;
  }
}
.solution-item .title .number {
  margin-left: 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 46px;
  height: 46px;
  text-align: center;
  font-weight: bold;
  background: #fff;
  padding: 8px;
  border-radius: 50%;
  position: relative;
}
.solution-item .title .number i {
  background: #fff;
  display: block;
  font-style: normal;
  line-height: 30px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.3);
}
.solution-item .title .number::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid transparent;
  top: 0;
  bottom: 0;
  left: 98.5%;
  margin: auto;
  opacity: 0;
}
@media only screen and (max-width: 576px) {
  .solution-item .title .number {
    margin-left: 0;
    margin-right: 15px;
  }
}
.solution-item .title:hover span.number::before {
  opacity: 1;
}

.solution-item.bg01 .number {
  background: #f75f30;
  color: #f75f30;
}
.solution-item.bg01 .number::before {
  border-left-color: #f75f30;
}
.solution-item.bg01:hover .title {
  color: #f75f30;
}

.solution-item.bg02 .number {
  background: #8cc540;
  color: #8cc540;
}
.solution-item.bg02 .number::before {
  border-left-color: #8cc540;
}
.solution-item.bg02:hover .title {
  color: #8cc540;
}

.solution-item.bg03 .number {
  background: #64c7cd;
  color: #64c7cd;
}
.solution-item.bg03 .number::before {
  border-left-color: #64c7cd;
}
.solution-item.bg03:hover .title {
  color: #64c7cd;
}

.solution-item.bg04 .number {
  background: #93268f;
  color: #93268f;
}
.solution-item.bg04 .number::before {
  border-left-color: #93268f;
}
.solution-item.bg04:hover .title {
  color: #93268f;
}

.solution-item.bg05 .number {
  background: #0083cb;
  color: #0083cb;
}
.solution-item.bg05 .number::before {
  border-left-color: #0083cb;
}
.solution-item.bg05:hover .title {
  color: #0083cb;
}

.solution-item.bg06 .number {
  background: #eb7a9b;
  color: #eb7a9b;
}
.solution-item.bg06 .number::before {
  border-left-color: #eb7a9b;
}
.solution-item.bg06:hover .title {
  color: #eb7a9b;
}

@media (min-width: 768px) {
  .solution-item.bg02 .title,
  .solution-item.bg04 .title,
  .solution-item.bg06 .title {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .solution-item.bg02 .title .number,
  .solution-item.bg04 .title .number,
  .solution-item.bg06 .title .number {
    margin-left: 0;
    margin-right: 18px;
  }

  .solution-item.bg01 span.number::before,
  .solution-item.bg03 span.number::before,
  .solution-item.bg05 span.number::before {
    left: auto;
    right: 97%;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.solution__list-wrapper {
  background: #c5ebf8;
  padding: 75px 0;
}

.solution__category .solution__category-item:nth-of-type(2n + 1) {
  background: #efefef;
}
.solution__category .solution__category-item:nth-of-type(2n + 1) .solution-desc {
  animation: fadeInLeft 1.5s;
}
.solution__category .solution__category-item:nth-of-type(2n + 1) .solution__content-img {
  animation: fadeInRight 1.5s;
}

.solution__category .solution__category-item:nth-of-type(2n) {
  background: #fff;
}
.solution__category .solution__category-item:nth-of-type(2n) .solution__content {
  flex-direction: row-reverse;
}
.solution__category .solution__category-item:nth-of-type(2n) .solution__content .solution-desc {
  text-align: right;
  animation: fadeInRight 1.5s;
}
.solution__category .solution__category-item:nth-of-type(2n) .solution__content .solution__content-img {
  animation: fadeInLeft 1.5s;
}

.solution__category-item {
  padding: 15px 0;
  min-height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
}
.solution__category-item .solution__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.solution__category-item .solution__content .solution-desc {
  width: 60%;
  display: inline-block;
  vertical-align: middle;
  padding-right: 45px;
}
@media only screen and (max-width: 991px) {
  .solution__category-item .solution__content .solution-desc {
    width: 100%;
    padding-right: 0;
  }
}
.solution__category-item .solution__content .solution-desc .ulArr {
  margin-bottom: 15px;
}
.solution__category-item .solution__content .solution-desc .ulArr li {
  background: url(../img/arr_red.png) no-repeat left 6px;
  padding-left: 20px;
  margin-bottom: 5px;
}
.solution__category-item .solution__content .solution__content-img {
  width: 40%;
  display: inline-block;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .solution__category-item .solution__content .solution__content-img {
    width: 100%;
  }
}
.solution__category-item .solution__content .solution__content-img img {
  max-width: 360px;
  max-height: 450px;
  margin: auto;
}
.solution__category-item .solution-desc h2 {
  font-size: 26px;
  color: #313131;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: normal;
}

.solution__category .read-more {
  margin-top: 35px;
}
.solution__category .read-more a {
  background-image: -webkit-gradient(linear, left top, right top, from(#cb0236), to(#ee2c2c));
  background-image: linear-gradient(to right, #cb0236, #ee2c2c);
  display: inline-block;
  height: 35px;
  padding-left: 15px;
  transition: 0.3s all;
  color: #fff;
  border-radius: 3px;
}
.solution__category .read-more a:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 10px #ee2c2c;
  box-shadow: 0 0 10px #ee2c2c;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.solution__category .read-more a p {
  line-height: 36px;
}
.solution__category .read-more a p i {
  position: relative;
  padding: 0 9px;
  display: inline-block;
  border-radius: 0 3px 3px 0;
  margin-left: 15px;
  vertical-align: top;
  line-height: 35px;
  top: 12px;
}
.solution__category .read-more a p i::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 0 solid transparent;
  border-top: 35px solid #00d0b7;
  bottom: 0;
  right: 100%;
  opacity: 0;
}
.solution__category .read-more a p i::before img {
  margin-left: 2px;
  margin-top: -2px;
  position: relative;
  top: 0;
}

.solution__slider-wrapper {
  margin: 0 -15px;
}

.solution__slider .solution__slider-item {
  border: 1px solid #e1e1e1;
}
.solution__slider .heading-title {
  text-align: left;
}
.solution__slider .heading-title::before {
  margin: 0;
}
.solution__slider .slider-img {
  position: relative;
}
.solution__slider .slider-img p.date {
  position: absolute;
  top: 0;
  left: 0;
  background: #cb0236;
  width: 65px;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
.solution__slider .slider-img p.date span {
  border-top: 2px solid #fff;
  padding-top: 4px;
  margin-top: 2px;
  display: block;
}
.solution__slider .slider-content {
  padding: 15px;
  background: #fff;
  text-align: justify;
}
.solution__slider .slider-content .title {
  font-size: 18px;
  color: #313131;
  margin-bottom: 25px;
  text-align: left;
}
.solution__slider .slider-content .title a:hover {
  color: #cb0236;
}
.solution__slider .flickity-button {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #b9b9b9;
  line-height: 45px;
}
.solution__slider .flickity-button svg {
  display: none;
}
.solution__slider .flickity-button.next {
  top: -45px;
  right: 15px;
}
.solution__slider .flickity-button.next::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='24' height='24' focusable='false' data-prefix='fas' data-icon='angle-right' class='svg-inline--fa fa-angle-right fa-w-8' role='img' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
}
.solution__slider .flickity-button.previous {
  top: -45px;
  right: 53px;
  left: unset;
}
.solution__slider .flickity-button.previous::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='24' height='24' focusable='false' data-prefix='fas' data-icon='angle-left' class='svg-inline--fa fa-angle-left fa-w-8' role='img' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
}
.solution__slider .read-more {
  margin-top: 25px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.solution__slider .read-more a {
  color: #313131;
}
.solution__slider .read-more img {
  margin-left: 2px;
  margin-top: 1px;
  width: 10px;
}

.solution .home__partner-wrapper .heading-title::before {
  margin: 0;
}

@media (max-width: 991px) {
  .solution__content .solution-desc {
    text-align: left !important;
  }

  .solution__category-item {
    padding: 25px 0;
  }
}
.news .heading-title {
  text-align: left;
}
.news .heading-title::before {
  margin: 0;
}
.news .read-more {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.news .read-more a {
  color: #313131;
}
.news .read-more img {
  margin-left: 2px;
  margin-top: 1px;
  width: 10px;
}

.news__content-wrapper {
  margin: 0 -15px;
  padding: 30px 0;
}
.news__content-wrapper .flickity-button {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #b9b9b9;
  line-height: 45px;
}
.news__content-wrapper .flickity-button svg {
  display: none;
}
.news__content-wrapper .flickity-button.next {
  top: -45px;
  right: 15px;
}
.news__content-wrapper .flickity-button.next::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='24' height='24' focusable='false' data-prefix='fas' data-icon='angle-right' class='svg-inline--fa fa-angle-right fa-w-8' role='img' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
}
.news__content-wrapper .flickity-button.previous {
  top: -45px;
  right: 53px;
  left: unset;
}
.news__content-wrapper .flickity-button.previous::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' width='24' height='24' focusable='false' data-prefix='fas' data-icon='angle-left' class='svg-inline--fa fa-angle-left fa-w-8' role='img' viewBox='0 0 256 512'%3E%3Cpath fill='%23fff' d='M31.7 239l136-136c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9L127.9 256l96.4 96.4c9.4 9.4 9.4 24.6 0 33.9L201.7 409c-9.4 9.4-24.6 9.4-33.9 0l-136-136c-9.5-9.4-9.5-24.6-.1-34z'/%3E%3C/svg%3E");
  top: 0;
  left: 0;
}

.news-item {
  padding-bottom: 10px;
}
.news-item__img {
  height: 200px;
  position: relative;
}
.news-item__img img {
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.news-item__content .date {
  font-size: 12px;
  color: #8e8e8e;
  margin: 10px 0;
}
.news-item__content .news-title {
  margin-bottom: 10px;
}
.news-item__content .news-title a {
  margin-top: 0;
  font-size: 16px;
  color: #363636;
  font-weight: bold;
  line-height: 22px;
  display: block;
}
.news-item__content .news-title a:hover {
  color: #cb0236;
}
.news-item__content .desc {
  text-align: justify;
  color: #606060;
  line-height: 18px;
  display: block;
  display: -webkit-box;
  margin: 0 auto;
}

.news__main-content {
  padding: 30px 0;
}
.news__main-content .c-img {
  padding-top: 60%;
}
.news__main-content .news-bg {
  background: #f1f1f1;
}
@media only screen and (max-width: 991px) {
  .news__main-content .news-bg {
    margin-bottom: 15px;
  }
}
.news__main-content .desc {
  font-size: 13px;
  line-height: 1.8;
}
.news__main-content .views-detail {
  color: #cb0236;
  font-size: 11px;
  font-weight: bold;
  margin-top: 10px;
}
.news__main-content .news-item__content {
  padding: 44px 0;
}
.news__main-content .read-more {
  margin-top: 25px;
}

.news__main-item {
  margin-bottom: 15px;
}
.news__main-item .news-title a {
  font-size: 12px;
  display: block;
}
.news__main-item .news-title a:hover {
  color: #cb0236;
}

.news__magazine-list {
  margin: 0 -15px;
}
.news__magazine-list .news__magazine-item img {
  object-fit: cover;
}
@media (min-width: 768px) {
  .news__magazine-list .news__magazine-item img {
    min-height: 377px;
  }
}
.news__magazine-list .news__magazine-title {
  font-size: 16px;
  color: #363636;
  font-weight: bold;
  line-height: 22px;
  height: 44px;
  overflow: hidden;
  display: block;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  text-align: center;
}
.news__magazine-list .news__magazine-title:hover {
  color: #cb0236;
}

.section-pd {
  padding: 30px 0;
}

.news__doccument {
  padding-bottom: 30px;
}

.news__detail .bread-crumb span.last {
  color: #8e8e8e;
  font-style: italic;
  font-size: 13px;
}

.news__detail-content,
.recruitment-detail__wrapper {
  width: 860px;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 100%;
  text-align: justify;
}
.news__detail-content .news__detail-title,
.recruitment-detail__wrapper .news__detail-title {
  font-size: 20px;
  color: #cb0236;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 25px;
}
.news__detail-content .content img,
.recruitment-detail__wrapper .content img {
  max-width: 400px;
  margin: auto;
  margin-bottom: 20px;
}

.date__share {
  width: 100%;
  border-bottom: 1px dotted #a3a3a3;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.date__share .date {
  color: #949494;
  font-size: 12px;
}
.date__share .share {
  background: #1877f2;
  color: #fff;
  font-size: 11px;
  padding: 1px 6px;
  font-weight: bold;
}
.date__share .share svg {
  margin-right: 3px;
}

.news__related,
.recruitment__related {
  margin-top: 60px;
  margin-bottom: 40px;
  overflow: hidden;
}
.news__related h2,
.recruitment__related h2 {
  color: #fff;
  display: inline-block;
  line-height: 30px;
  border-radius: 30px;
  padding: 3px 35px 0;
  position: relative;
  background: #cb0236;
  font-size: 15px;
  font-weight: normal;
  margin: 0 0 15px 0;
}
.news__related h2::before,
.recruitment__related h2::before {
  position: absolute;
  content: "";
  width: 1000px;
  left: 100%;
  height: 1px;
  background: #cb0236;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news__related ul,
.recruitment__related ul {
  list-style: none;
  padding-left: 0;
}
.news__related ul li,
.recruitment__related ul li {
  background: url(../img/arr_red.png) no-repeat left center;
  padding-left: 20px;
  margin-bottom: 10px;
}
.news__related ul li a,
.recruitment__related ul li a {
  color: #2d2d2d;
  font-size: 14px;
  transition: all 0.3s ease;
}
.news__related ul li a:hover,
.recruitment__related ul li a:hover {
  color: #cb0236;
}
.news__related ul li a .date,
.recruitment__related ul li a .date {
  color: #9c9c9c;
  font-style: italic;
}

.recruitment .heading-title {
  text-transform: uppercase;
}

.recruitment-wrapper {
  background: url(../img/tuyendungbg.jpg) no-repeat top center;
  background-size: cover;
  margin-bottom: 55px;
  padding-bottom: 15px;
  min-height: 760px;
}

.recruitment-item {
  border: 1px solid #dbdbdb;
  padding: 25px;
  background: #fff;
  margin-bottom: 30px;
  min-height: 183px;
  max-width: 365px;
}
.recruitment-item__title {
  font-size: 16px;
  color: #363636;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
}
.recruitment-item .read-more {
  margin-top: 15px;
}
.recruitment-item .read-more a {
  font-size: 12px;
  font-weight: bold;
  color: #cb0236;
}

.recruitment__content {
  max-height: 570px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.recruitment__content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.recruitment__content::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.recruitment__content::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

/*Scroll bar firefox*/
.recruitment__content {
  scrollbar-width: thin;
  scrollbar-color: #555 transparent;
}

.recruitment__content::-webkit-scrollbar {
  width: 6px;
}

.recruitment__content::-webkit-scrollbar-track {
  background: transparent;
}

.recruitment__content::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 6px;
  border: 3px solid transparent;
}

.remuneration__content {
  margin-top: 45px;
}

@media (max-width: 767px) {
  .remuneration__content .col-12:nth-of-type(2n + 1) .remuneration-item {
    background: #e6e6e6;
  }
}
.remuneration-item {
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .remuneration-item {
    margin-bottom: 25px;
    padding: 25px;
  }
}
.remuneration-item img {
  margin-bottom: 5px;
  max-width: 139px;
  max-height: 139px;
  margin: auto;
}
.remuneration-item .remuneration-title {
  font-size: 16px;
  color: #363636;
  font-weight: bold;
}
.remuneration-item .desc {
  display: block;
  display: -webkit-box;
  height: 88px;
  margin: 0 auto;
}
.remuneration-item .read-more {
  margin-top: 25px;
  text-align: center;
}
.remuneration-item .read-more a {
  display: inline-block;
  font-size: 14px;
  color: #b4b4b4;
  padding: 5px 15px;
  border: 1px solid #b4b4b4;
  border-radius: 2px;
  background: #fff;
}

.training {
  margin-top: 55px;
  min-height: 558px;
}

.training-wrapper {
  text-align: center;
  padding: 0 15px;
  padding: 265px 0 90px 0;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .training-wrapper {
    padding: 265px 15px 90px 15px;
  }
}
.training-wrapper .read-more {
  margin-top: 35px;
}
.training-wrapper .read-more a {
  background: #0096cd;
  background: -moz-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #0096cd), color-stop(100%, #00c6af));
  background: -webkit-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: -o-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: -ms-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: linear-gradient(to right, #0096cd 0%, #00c6af 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0096cd",endColorstr="#00c6af",GradientType=1);
  font-weight: bold;
  color: #fff;
  font-size: 13px;
  display: inline-block;
  vertical-align: top;
  padding: 3px 15px;
  margin: 0 2px;
  margin-bottom: 4px;
}

.recruitment-detail__wrapper strong {
  display: block;
}

.contact .heading-title {
  text-align: left;
}
.contact .heading-title::before {
  margin: 0;
}

.contact__form-wrapper {
  padding: 60px 0 70px;
}
@media (max-width: 991px) {
  .contact__form-wrapper {
    padding: 0px 0px 60px;
  }
}

.contact__form-img {
  max-width: 550px;
  margin: auto;
}
.contact__form-main form .reset {
  border: none;
  background: none;
  padding: 0;
  height: auto;
}
.contact__form-main form input,
.contact__form-main form textarea {
  font-size: 14px;
  height: 40px;
}
@media (min-width: 991px) {
  .contact__form-main form input,
  .contact__form-main form textarea {
    width: 80%;
  }
}
.contact__form-main form textarea {
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  height: 150px;
  padding: 6px 12px;
  resize: none;
}

.form__btn .form__btn-item {
  background: #0096cd;
  background: -moz-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #0096cd), color-stop(100%, #00c6af));
  background: -webkit-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: -o-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: -ms-linear-gradient(left, #0096cd 0%, #00c6af 100%);
  background: linear-gradient(to right, #0096cd 0%, #00c6af 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0096cd",endColorstr="#00c6af",GradientType=1);
  border: 0;
  border-radius: 2px;
  color: #fff;
  display: inline-block;
  vertical-align: top;
  height: 35px;
  line-height: 35px;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 4px;
}
.form__btn .form__btn-item .arrwhite {
  background: url(../img/arrWhite.png);
  width: 11px;
  height: 9px;
  display: inline-block;
  margin-left: 10px;
}
.form__btn .btn-refresh .arrRefresh {
  background: url(../img/arrRefresh.png);
  width: 13px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.contact__info-item {
  border: 1px solid #cdcdcd;
  padding: 30px 20px;
  position: relative;
  box-shadow: 5px 5px 1px 1px #ddd;
  margin-bottom: 30px;
}
.contact__info-item .contact__info-title {
  color: #cb0236;
  font-size: 16px;
  font-weight: bold;
  margin-top: 0;
}
.contact__info-item ul li {
  color: #606060;
  padding: 5px 0 5px 25px;
}
.contact__info-item ul li.local {
  background: url(../img/dc.png) no-repeat left 8px;
}
.contact__info-item ul li.phone {
  background: url(../img/ph.png) no-repeat left 8px;
}
.contact__info-item ul li.fax {
  background: url(../img/fax.png) no-repeat left 8px;
}

@media (min-width: 991px) {
  .contact__map-list .heading-title {
    padding-left: 30px;
  }
}
@media (min-width: 991px) {
  .contact__map-list .heading-title:before {
    margin-left: 30px;
  }
}
.contact__map-list ul li {
  display: block;
  margin-bottom: 3px;
}
.contact__map-list ul li span {
  padding: 10px 25px;
  display: inline-block;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 991px) {
  .contact__map-list ul li span {
    display: block;
  }
}
.contact__map-list ul li:nth-of-type(1) span {
  background: #e2395a;
}
.contact__map-list ul li:nth-of-type(2) span {
  background: #ec7c2a;
}
.contact__map-list ul li:nth-of-type(3) span {
  background: #e2ac0d;
}
.contact__map-list ul li:nth-of-type(4) span {
  background: #23b4bd;
}
.contact__map-list ul li:nth-of-type(5) span {
  background: #23a6d7;
}
.contact__map-list ul li:nth-of-type(6) span {
  background: #168bde;
}

.contact__map-iframe {
  position: relative;
}
.contact__map-iframe iframe {
  width: 100%;
  height: 100%;
  min-height: 508px;
}
.contact__map-iframe::before {
  position: absolute;
  content: "";
  background: url(../img/shadow3.png);
  width: 22px;
  height: 482px;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.contact__map-wrapper {
  margin: 55px 0;
}
@media (min-width: 991px) {
  .contact__map-wrapper .col-lg-8 {
    padding-right: 0;
  }
}
@media (min-width: 991px) {
  .contact__map-wrapper .col-lg-4 {
    padding-left: 0;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

/*# sourceMappingURL=style.css.map */
.hazo-pagination li {
  display: inline-block;
}
.hazo-pagination li a {
  padding: 5px 10px;
  border: 1px solid #cb0236;
  color: #cb0236;
}
.hazo-pagination li a:hover,
.hazo-pagination li.active a {
  background: #cb0236;
  color: #fff;
}
.gnws-product-height img {
  height: 20rem;
  object-fit: contain;
}
.gnws-product-height .carousel-nav img {
  height: 4rem;
  object-fit: contain;
}
.gnws-product-height .carousel-nav .is-selected img {
  border: 1px solid #cb0236;
}
.single-product__description h2,
.single-product__description h1 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}
.single-product__description .contact-details {
  padding: 15px 0px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.single-product__description .contact-details a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  text-align: center;
  padding: 0px 30px;
  background: #cb0236;
  color: #fff;
  font-weight: bold;
}
.single-product__description .des {
  margin-bottom: 20px;
}
.single-product__description .des p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 0;
}
.single-product__info {
  margin-bottom: 30px;
  margin-top: 30px;
}
.single-product__info .info__title {
  border-bottom: 1px solid #ccc;
}
.single-product__info .info__title li {
  margin-right: 5px;
  border-bottom: none;
  display: inline-block;
  min-width: 203px;
  height: 40px;
  text-align: center;
  margin-bottom: -2px;
}
.single-product__info .info__title a {
  font-size: 15px;
  color: #cb0236;
  margin: 0;
  line-height: 38px;
  font-weight: 600;
  padding: 0 10px;
}
.single-product__info .info__title .active {
  background: #cb0236;
  color: #fff;
}
.single-product__info .info__detail {
  background: #fff;
}
.single-product__info .info__detail-text {
  max-height: 155px;
  overflow: hidden;
}
.single-product__info .info__detail-text p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}
.single-product__info .info__detail-text h6 {
  margin-bottom: 10px;
  font-family: sfui-semibold;
}
.single-product__info .info__detail .info__detail-show {
  max-height: max-content;
}
.single-product__info .tab-content {
  padding: 20px;
}
.single-product__info .info__detail .hide-more:before {
  display: none !important;
}
.single-product__info .info__detail .show-more {
  text-align: center;
  display: block;
  position: -webkit-sticky;
  position: sticky;
}
.single-product__info .info__detail .show-more:before {
  height: 30px;
  margin-top: 0px;
  content: -webkit-gradient(linear, 0% 100%, 0% 0%, from(#fff), color-stop(0.2, #fff), to(rgba(255, 255, 255, 0)));
  display: block;
}
.single-product__info .info__detail .show-more a {
  width: 90px;
  display: block;
  overflow: hidden;
  position: relative;
  line-height: 40px;
  font-size: 16px;
  margin: 10px auto;
  cursor: pointer;
  color: #cb0236;
}
.single-product__info .info__detail .show-more a i {
  margin-left: 4px;
}
.single-product__info .video-youtube {
  background: #fff;
}
.single-product__info .video-youtube iframe {
  width: 100%;
  height: 700px;
}
@media screen and (max-width: 767px) {
  .single-product__info .video-youtube iframe {
    height: 300px;
  }
}
.related__product {
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
.related__product h4 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}
.site-pp-contact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.site-pp-contact .box-contact {
  max-width: 800px;
  width: 100%;
  background: #fff;
  padding: 30px;
  position: relative;
}
.site-pp-contact .box-contact .times {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  color: #333;
}
.site-pp-contact .box-contact .times svg {
  width: 30px;
  height: 30px;
}
.site-pp-contact .box-contact h2 {
  font-size: 35px;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}
.site-pp-contact .box-contact .img {
  text-align: center;
}
.site-pp-contact .box-contact .img h3 {
  font-size: 20px;
  font-weight: bold;
  color: #cb0236;
  line-height: 1.5;
  margin-top: 10px;
}
.site-pp-contact .box-contact .form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.site-pp-contact .box-contact .form label {
  display: block;
  font-size: 14px;
  color: #333;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
  max-width: 30%;
}
.site-pp-contact .box-contact .form input {
  height: 35px;
  border-radius: 0;
  border: 1px solid #ccc;
  margin: 0 auto;
}
.site-pp-contact .box-contact .form .btn-custom {
  border: 0;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  font-size: 15px;
  color: #fff;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-image: -webkit-gradient(linear, left top, right top, from(#cb0236), to(#36c2f7));
  background-image: linear-gradient(to right, #cb0236, #bf8191);
}
.site-pp-contact .box-contact .form .btn-custom:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 10px #cb0236;
  box-shadow: 0 0 10px #cb0236;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.active-pp {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
