@font-face {
  font-family: 'Poppins-Regular';
  src: url(../fonts/Poppins-Regular.ttf) format('truetype'), url(../fonts/Poppins-Regular.eot) format('eot'), url(../fonts/Poppins-Regular.woff) format('woff'), url(../fonts/Poppins-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Jost-Regular';
  src: url(../fonts/Jost-Regular.ttf) format('truetype'), url(../fonts/Jost-Regular.eot) format('eot'), url(../fonts/Jost-Regular.woff) format('woff'), url(../fonts/Jost-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'Jost-Bold';
  src: url(../fonts/Jost-Bold.ttf) format('truetype'), url(../fonts/Jost-Bold.eot) format('eot'), url(../fonts/Jost-Bold.woff) format('woff'), url(../fonts/Jost-Bold.woff2) format('woff2');
}
@font-face {
  font-family: 'Jost-Black';
  src: url(../fonts/Jost-Black.ttf) format('truetype'), url(../fonts/Jost-Black.eot) format('eot'), url(../fonts/Jost-Black.woff) format('woff'), url(../fonts/Jost-Black.woff2) format('woff2');
}

:root {
  --mibooz-font: "Federo-Regular";
  --mibooz-font-two: 'Rubik-Regular';
  --mibooz-gray: #707070;
  --mibooz-gray-rgb: 112, 112, 112;
  --mibooz-primary: #006834;
  --mibooz-primary-rgb: 221, 4, 41;
  --mibooz-black: #17161a;
  --mibooz-black-rgb: 23, 22, 26;
  --mibooz-base: #ffffff;
  --mibooz-base-rgb: 255, 255, 255;
  --mibooz-extra: #f6f6f6;
  --mibooz-extra-rgb: 246, 246, 246;
  --mibooz-bdr-color: #e3e3e3;
  --mibooz-bdr-color-rgb: 227, 227, 227;
}


body {
  font-family: "Poppins-Regular";
}
p {
  line-height: 2;
}
.ui.container {
  padding: 0 15px;
  position: relative;
  width: 1650px;
}
#header {
  position: fixed;
  z-index: 200;
  width: 100%;
  left: 0;
  top: 0;
  box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}
#header::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #ffffff;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
#header.active::before {
  width: 100%;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid white;
}
#header .nav .ui.menu .logo {
  width: 30%;
  background: url(../images/logo-bg.png) no-repeat right center;
  background-size: cover;
  padding: 25px 0;
  text-align: center;
}
#header .nav .ui.menu .menu-box {
  width: 45%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#header .nav .ui.menu .menu-box .tel {
  margin-left: 20px;
  font-size: 20px;
  font-family: 'Jost-Regular';
}
#header .nav .ui.menu .right {
  width: 25%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #ebebeb;
}
#header .nav .ui.menu .right .language {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-family: 'Jost-Regular';
  text-transform: uppercase;
  margin-left: 45px;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  position: relative;
}
#header .nav .ui.menu .right .language img {
  margin-right: 15px;
}
#header .nav .ui.menu .right .language ul.lang {
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 100%;
}
#header .nav .ui.menu .right .language ul.lang li {
  font-size: 12px;
  line-height: 40px;
  background: #fff;
}
#header .nav .ui.menu .right .language ul.lang li:hover {
  background: #e77116;
  color: #fff;
}
#header .nav .ui.menu .right .language ul.lang li a {
  display: block;
  padding: 0 20px;
}
#header .nav .ui.menu .right .language:hover ul.lang {
  display: block;
}
#header .nav .h-search {
  margin-left: auto;
  margin-right: 50px;
  cursor: pointer;
}
#header .btn {
  margin-left: 60px;
  padding-left: 75px;
  position: relative;
  cursor: pointer;
}
#header .btn::before {
  content: "menu";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 20px;
  font-family: 'Jost-Regular';
  text-transform: uppercase;
}
#header .btn i {
  width: 50px;
  height: 5px;
  border-radius: 5px;
  display: block;
  background-color: black;
  position: relative;
  -webkit-animation: wd 1.5s linear infinite;
  -moz-animation: wd 1.5s linear infinite;
  animation: wd 1.5s linear infinite;
}
#header .btn i.ie1 {
  top: -10px;
}
#header .btn i.ie2 {
  -webkit-animation-delay: .3s;
  -moz-animation-delay: .3s;
  animation-delay: .3s;
}
#header .btn i.ie3 {
  top: 10px;
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}
@-webkit-keyframes wd {
  0% {
    width: 25px;
  }
  20% {
    width: 50px;
  }
  40% {
    width: 25px;
  }
  60% {
    width: 50px;
  }
  to {
    width: 25px;
  }
}
@-moz-keyframes wd {
  0% {
    width: 25px;
  }
  20% {
    width: 50px;
  }
  40% {
    width: 25px;
  }
  60% {
    width: 50px;
  }
  to {
    width: 25px;
  }
}
@keyframes wd {
  0% {
    width: 25px;
  }
  20% {
    width: 50px;
  }
  40% {
    width: 25px;
  }
  60% {
    width: 50px;
  }
  to {
    width: 25px;
  }
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: #fd2318;
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: #fd2318;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: #fd2318;
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
}
table tbody {
  display: table;
  width: 100% !important;
  min-width: 700px;
}
table td,
table th {
  padding: 5px 10px;
  border: 1px solid #666;
  width: auto !important;
  height: auto !important;
  line-height: 30px;
}
table tr {
  width: auto !important;
  height: auto !important;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a {
  width: 50px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a:hover {
  background-color: #fd2318;
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
}
#banner .metaslider .slider-wrapper .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: #fd2318 !important;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: 200;
}
#mobile .yy {
  content: '';
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100vh;
  display: block;
  background: #222;
  padding: 40px 10%;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 30px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: #fd2318;
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 28px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: #e77116;
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active .yy {
  left: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
#banner {
  position: relative;
}
#banner #slider-nav1 {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 104, 52, 0.5);
  color: white;
  font-size: 60px;
  font-family: 'Jost-Regular';
  font-style: italic;
  width: 630px;
  background: url(../images/slider-nav-bg.png) no-repeat left center;
  background-size: cover;
  padding-left: 180px;
}
#banner #slider-nav1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 165px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background-color: white;
}
#banner #slider-nav1 em {
  font-size: 66px;
  font-family: 'Jost-Bold';
  width: 105px;
  display: inline-block;
  text-align: center;
}
#banner #slider-nav1 span {
  font-size: 48px;
  display: inline-block;
  width: 85px;
  text-align: center;
}
#banner ul li {
  position: relative;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#banner .content .left {
  padding-left: 25px;
}
#banner .content h2 {
  font-size: 90px;
  font-style: italic;
  font-family: 'Jost-Black';
  text-transform: uppercase;
  color: #006834;
  line-height: 1.2;
  position: relative;
}
#banner .content h2::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 85px;
  background-color: #006834;
  left: -25px;
  top: 5%;
}
#banner .content h2 small {
  display: block;
  color: white;
  margin-left: 6%;
}
#banner .content p {
  font-size: 24px;
  line-height: 40px;
  color: white;
  margin: 40px 0 70px;
}
#banner .content a {
  display: inline-block;
  font-size: 24px;
  font-family: 'Jost-Regular';
  text-transform: uppercase;
  line-height: 60px;
  background-color: #006834;
  color: white;
  padding: 0 85px;
  border-radius: 30px;
}
h2.home {
  font-size: 60px;
  font-family: 'Jost-Bold';
  text-transform: uppercase;
}
.our-about {
  padding: 150px 0;
}
.our-about::before {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  font-size: 254px;
  right: 0;
  top: 22%;
  color: rgba(0, 104, 52, 0.04);
  font-family: 'Jost-Black';
  font-style: italic;
  text-transform: uppercase;
}
.our-about .title {
  position: absolute;
  z-index: 10;
  top: -185px;
  left: 0;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}
.our-about .title h4 {
  font-size: 48px;
  line-height: 1;
  font-family: 'Jost-Regular';
  text-transform: uppercase;
}
.our-about .title h3 {
  font-size: 100px;
  font-family: 'Jost-Bold';
  text-transform: uppercase;
}
.our-about .title .line {
  width: 85px;
  height: 4px;
  background-color: #006834;
}
.our-about .box {
  padding-left: 430px;
  margin-bottom: -180px;
  position: relative;
  z-index: 1;
}
.our-about .box p {
  font-size: 20px;
  margin-bottom: 60px;
}
.our-about .box a.about {
  font-size: 30px;
  line-height: 45px;
  text-transform: uppercase;
  color: #006834;
  font-family: 'Jost-Bold';
  padding-left: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-about .box a.about::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #006834;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-about .box a.about img {
  vertical-align: middle;
  margin-left: 40px;
}
.our-about .box a.about:hover {
  color: white;
}
.our-about .box a.about:hover::before {
  width: 100%;
}
.our-about .box .tab {
  margin-top: 130px;
}
.our-about .box .tab span {
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  background-color: #f1f1f3;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.our-about .box .tab span:not(:last-child) {
  margin-right: 40px;
}
.our-about .box .tab span img {
  vertical-align: middle;
}
.our-about .video {
  width: 65%;
}
.our-about-bl .play {
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 100%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ffffff;
  cursor: pointer;
  cursor: hand;
}
.our-about-bl .play img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  left: 5px;
  width: auto;
}
.our-about-bl .play::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.35);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.our-about .list {
  position: absolute;
  width: 40%;
  right: 0;
  bottom: 0;
}
.our-about .list ul {
  margin: -3px;
}
.our-about .list ul li {
  padding: 3px;
}
.our-about .list .slick-list {
  padding-right: 165px;
}
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
.wgl-animate_bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}
.wgl-animate_bg div {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  width: 1px;
  background-color: white;
}
.wgl-animate_bg div:nth-child(1) {
  right: 25%;
}
.wgl-animate_bg div:nth-child(2) {
  right: 50%;
}
.wgl-animate_bg div:nth-child(3) {
  right: 75%;
}
.product-cat .cat-img {
  z-index: -1;
  position: relative;
  height: 840px;
}
.product-cat .cat-img li{
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: .3s ease;
}
.product-cat .cat-img li.active{
  z-index: 10;
  opacity: 1;
}
.product-cat .cat-img .img {
  height: 840px;
}
.product-cat .cat-img .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-cat span.left-btn,
.product-cat span.right-btn {
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  border-radius: 50%;
  text-align: center;
  background-color: white;
  position: absolute;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.product-cat span.left-btn img,
.product-cat span.right-btn img {
  vertical-align: middle;
}
.product-cat span.left-btn {
  left: 3%;
}
.product-cat span.right-btn {
  right: 3%;
}
.product-cat .box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.product-cat .box ul li {
  width: 25%;
  position: relative;
}
.product-cat .box ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: rgba(0, 104, 52, 0.85);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.product-cat .box ul li .content {
  color: #fff;
  padding: 10%;
}
.product-cat .box ul li .content h5 {
  font-size: 20px;
}
.product-cat .box ul li .content h2 {
  font-size: 30px;
  min-height: 72px;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: 'Jost-Bold';
  margin: 30px 0;
}
.product-cat .box ul li .content a.more {
  font-size: 18px;
  line-height: 40px;
  padding: 0 30px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #fff;
}
.product-cat .box ul li.active:before {
  width: 100%;
}
.i-advantage {
  background: url(../images/adv-bg.jpg) no-repeat center;
  background-size: cover;
  padding: 120px 0;
}
.i-advantage .list {
  margin-top: 50px;
}
.i-advantage .list ul {
  margin: -15px;
}
.i-advantage .list ul li {
  width: 25%;
  padding: 15px;
}
.i-advantage .list ul li .content {
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
  padding: 45px 15px;
}
.i-advantage .list ul li .content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #006834;
  z-index: -1;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.i-advantage .list ul li .content i {
  display: block;
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #006834;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-advantage .list ul li .content i img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-advantage .list ul li .content i img.img1 {
  opacity: 1;
}
.i-advantage .list ul li .content i img.img2 {
  opacity: 0;
}
.i-advantage .list ul li .content p {
  min-height: 180px;
  margin: 20px 0;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-advantage .list ul li .content a {
  display: inline-block;
  background-color: #006834;
  color: white;
  text-transform: uppercase;
  line-height: 60px;
  padding: 0 20%;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.i-advantage .list ul li .content:hover {
  color: white;
}
.i-advantage .list ul li .content:hover::before {
  width: 100%;
}
.i-advantage .list ul li .content:hover i {
  background-color: white;
}
.i-advantage .list ul li .content:hover i img.img1 {
  opacity: 0;
}
.i-advantage .list ul li .content:hover i img.img2 {
  opacity: 1;
}
.i-advantage .list ul li .content:hover a {
  background-color: white;
  color: #006834;
}
.our-news {
  padding: 150px 0;
}
.our-news .tab span {
  display: inline-block;
  width: 85px;
  height: 85px;
  line-height: 85px;
  background-color: #f1f1f3;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}
.our-news .tab span:not(:last-child) {
  margin-right: 40px;
}
.our-news .tab span img {
  vertical-align: middle;
}
.our-news .list {
  margin-top: 50px;
}
.our-news .list ul {
  margin: -11px;
}
.our-news .list ul li {
  padding: 11px;
}
.our-news .list .img h3 {
  font-size: 20px;
  text-transform: uppercase;
  line-height: 35px;
  min-height: 70px;
  margin-bottom: 25px;
}
.our-news .list .img .text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px;
  background-color: #f1f1f3;
  width: 100%;
  max-width: 90%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.our-news .list .img .text .date time {
  color: #999999;
}
.our-news .list .img .text .date a {
  text-transform: uppercase;
  color: #006834;
}
.our-news .list .img:hover h3 {
  color: white;
}
.our-news .list .img:hover .text {
  background-color: #006834;
}
.our-news .list .img:hover .text .date time {
  color: white;
}
.our-news .list .img:hover .text .date a {
  color: white;
}
#footer {
  background: url(../images/foot-bg.jpg) no-repeat center;
  background-size: cover;
  color: white;
  font-family: 'Jost-Regular';
}
#footer .footer-top {
  padding: 80px 0;
}
#footer .footer-top h2 {
  font-size: 72px;
  color: #006834;
  text-transform: uppercase;
  font-family: 'Jost-Black';
  font-style: italic;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
#footer .footer-top h2::before {
  content: attr(data-text);
  font-family: 'Jost-Bold';
  position: absolute;
  z-index: -1;
  left: 30px;
  top: 15px;
  color: rgba(255, 255, 255, 0.02);
  font-size: 91px;
}
#footer .footer-top .nav {
  text-transform: uppercase;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}
#footer .footer-top .nav ul li {
  display: inline-block;
}
#footer .footer-top .nav ul li:not(:last-child) {
  margin-right: 35px;
}
#footer .footer-top .contact ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .footer-top .contact ul li:not(:last-child) {
  margin-bottom: 45px;
}
#footer .footer-top .contact ul li h5 {
  text-transform: uppercase;
  opacity: .3;
}
#footer .footer-top .contact ul li .social-links a {
  font-size: 18px;
  line-height: 2;
}
#footer .footer-top .contact ul li .social-links a:not(:last-child) {
  margin-right: 30px;
}
#footer .footer-top .contact ul li .social-links a:hover {
  color: #007bc2;
}
#footer .footer-top .contact ul li.wid-100 {
  width: 100%;
}
#footer .footer-top .left {
  width: 50%;
  padding-right: 15px;
}
#footer .footer-top .right {
  width: 50%;
  padding-top: 30px;
  padding-left: 15px;
}
#footer .footer-top .form {
  max-width: 610px;
  margin-left: auto;
}
#footer .footer-top .form input,
#footer .footer-top .form textarea {
  width: 100%;
  background-color: transparent;
  border: 1px solid white;
  font-size: 18px;
  padding: 10px 15px;
}
#footer .footer-top .form textarea {
  min-height: 130px;
}
#footer .footer-top .form button {
  font-size: 18px;
  font-style: italic;
  background-color: transparent;
  border: 1px solid white;
  padding: 10px 35px;
}
#footer .footer-top .form ul {
  margin: -10px -6px;
}
#footer .footer-top .form ul li {
  width: 50%;
  padding: 10px 6px;
}
#footer .footer-top .form ul li.wid-100 {
  width: 100%;
}
#footer .footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #999999;
}
a.footdong {
 white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 650px;
    display: inline-block;
}
#footer .footer-bottom p,
#footer .footer-bottom a {
  font-size: 18px;
 
  vertical-align: middle;
}
#footer .footer-bottom img {
  max-height: 18px;
  vertical-align: middle;
}
#ewm {
  width: 100px;
  margin-left: auto;
  border: 5px solid white;
}
@media screen and (max-width: 1650px) {
  .ui.container {
    width: 1400px;
  }
  #banner .content h2 {
    font-size: 70px;
  }
  #banner .content p {
    font-size: 20px;
    margin: 20px 0 40px;
  }
  .product-cat .box ul li .content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  #header .nav .ui.menu .logo {
    padding: 10px 0;
    border-right: 1px solid #ebebeb;
  }
  #header .nav .ui.menu .right .language {
    margin-left: 30px;
  }
  #header .btn {
    margin-left: 30px;
  }
  #banner .content h2 {
    font-size: 50px;
  }
  #banner .content h2 small {
    margin-left: 0;
  }
  #banner .content p {
    font-size: 18px;
    margin: 20px 0;
  }
  #banner .content a {
    font-size: 18px;
    line-height: 50px;
    padding: 0 60px;
  }
  #banner #slider-nav1 {
    font-size: 40px;
    width: 500px;
    padding-left: 100px;
  }
  #banner #slider-nav1 em {
    font-size: 50px;
  }
  #banner #slider-nav1 span {
    font-size: 30px;
  }
  .our-about .box p {
    font-size: 18px;
  }
  .our-about::before {
    font-size: 200px;
  }
  .our-about .box {
    padding-left: 300px;
  }
  #banner .content p {
    line-height: unset;
  }
}
@media screen and (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #header .nav .ui.menu .logo img {
    width: 200px;
  }
  #header .btn::before {
    font-size: 14px;
  }
  #header .btn {
    padding-left: 50px;
  }
  #header .btn i {
    height: 2px;
  }
  #header .nav .ui.menu .menu-box {
    width: 40%;
  }
  #header .nav .ui.menu .right {
    width: 30%;
  }
  .our-about .box p {
    font-size: 16px;
  }
  .our-about .title h4 {
    font-size: 30px;
  }
  .our-about .title h3 {
    font-size: 70px;
  }
  .our-about .title {
    top: -120px;
  }
  .our-about .box {
    padding-left: 200px;
  }
  .our-about::before {
    font-size: 150px;
    top: 40%;
  }
  .wgl-animate_bg {
    display: none;
  }
  .i-advantage .list ul li {
    width: 50%!important;
  }
  .font-18 {
    font-size: 16px;
  }
  .i-advantage .list ul li .content p {
    min-height: 130px;
  }
  #footer .footer-top .left {
    width: 100%;
    padding-right: 0;
  }
  #footer .footer-top .right {
    width: 100%;
    padding-left: 0;
  }
  #footer .footer-top .form {
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  a.footdong,.lvdongcat {
    display: none;
}
  #header .nav .ui.menu .menu-box {
    display: none;
  }
  #header .btn i {
    display: none;
  }
  #header .btn {
    padding-left: 0;
  }
  #header .btn::before {
    position: relative;
  }
  #header .nav .ui.menu .right {
    margin-left: auto;
    width: auto;
    padding: 0 20px;
  }
  #header .nav .ui.menu .right .language {
    display: none;
  }
  #header .btn {
    margin-left: 0;
  }
  #banner .content h2 {
    font-size: 30px;
  }
  #banner .content .left {
    padding-left: 0;
  }
  #banner .content h2::before {
    display: none;
  }
  #banner #slider-nav1 {
    display: none;
  }
  #banner .content p {
    font-size: 16px;
  }
  #banner .content a {
    font-size: 16px;
  }
  .our-about .title {
    display: none;
  }
  .our-about .box {
    padding-left: 0;
    margin-bottom: 0;
  }
  .our-about::before {
    display: none;
  }
  .our-about .box .tab {
    display: none;
  }
  .our-about .box p {
    margin-bottom: 30px;
  }
  .our-about .box a.about {
    padding: 0 30px;
    font-size: 20px;
  }
  .our-about .box a.about img {
    display: none;
  }
  .our-about .list .slick-list {
    padding-right: 0;
  }
  .our-about .bottom {
    margin-top: 30px;
  }
  .our-about {
    padding: 100px 0;
  }
  h2.home {
    font-size: 40px;
  }
  .product-cat span.left-btn,
  .product-cat span.right-btn {
    display: none;
  }
  .product-cat .cat-img .img {
    height: 600px;
  }
  .our-about .box p {
    font-size: 14px;
  }
  .font-18 {
    font-size: 14px;
    line-height: 30px;
  }
  .our-news .list .img .text {
    position: relative;
    max-width: 100%;
  }
  .our-news .list .img h3 {
    font-size: 18px;
  }
  .our-news .tab {
    display: none;
  }
  #ewm {
    display: none;
  }
  #footer .footer-bottom .fl,
  #footer .footer-bottom .fr {
    float: none;
    text-align: center;
  }
  #footer .footer-bottom p,
  #footer .footer-bottom a {
    font-size: 14px;
    line-height: 30px;
  }
  #footer .footer-bottom img {
    max-height: 14px;
  }
  #header .nav .ui.menu .logo {
    background: transparent;
  }
  .our-news {
    padding: 50px 0;
  }
}
@media screen and (max-width: 700px) {
  .ui.container {
    width: 100%;
  }
  #banner ul li {
    height: 400px;
  }
  #banner ul li > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  h2.home {
    font-size: 30px;
  }
  .our-about .video {
    display: none;
  }
  .our-about .list {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
  }
  .product-cat .box ul li .content h2 {
    margin: 15px 0;
  }
  .product-cat .box ul li .content h5 {
    font-size: 16px;
  }
  .i-advantage {
    display: none;
  }
  #footer .footer-top .nav {
    display: none;
  }
  #footer .footer-top h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  #footer .footer-top .contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  #footer .footer-top h2::before {
    display: none;
  }
  #footer .footer-top .contact ul {
    display: block;
  }
  #footer .footer-top .form input,
  #footer .footer-top .form textarea {
    font-size: 14px;
  }
  .product-cat .box ul li .content {
    padding: 5%;
  }
  #banner .content p {
    font-size: 14px;
    line-height: 30px;
  }
  #banner .content a {
    font-size: 14px;
  }
  #header .nav .ui.menu .logo {
    width: 40%;
  }
  #header .nav .ui.menu .logo img {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .product-cat .cat-img .img {
    height: 400px;
  }
  #footer .footer-top .form ul li {
    width: 100%;
  }
}




/* 内页样式 */
.inner-banner {
  height: 430px;
  background: url("/cngreensports/2022/02/22/about.jpg") no-repeat center;
  background-size: cover;
  padding-top: 245px;
}
.inner-banner h2 {
  font-size: 20px;
  color: #000000;
  margin-top: 80px;
}
.contact-page {
  padding-top: 60px;
}
.contact-page .contact-1 h1.title {
  font-size: 45px;
}
.contact-page .contact-1 h1.title::before {
  content: attr(data-text);
  font-size: 16px;
  display: block;
  color: #b8a3b8;
}
.contact-page .contact-1 .text {
  font-size: 16px;
  color: #b8a3b8;
  margin-top: 40px;
}
.contact-page .contact-2 .box {
  padding-top: 75px;
  padding-bottom: 110px;
}
.contact-page .contact-2 .left {
  
}
.contact-page .contact-2 .left h3.title {
  font-size: 30px;
  font-weight: bold;
}
.contact-page .contact-2 .left .contact-list {
  margin-top: 60px;
  margin-bottom: 70px;
}
.contact-page .contact-2 .left .contact-list ul {
  margin: -10px 0;
}
.contact-page .contact-2 .left .contact-list ul li {
  font-size: 18px;
  padding: 10px 0;
}
.contact-page .contact-2 .left .contact-list ul li span {
  display: inline-block;
  width: 25px;
  margin-right: 25px;
}
.contact-page .contact-2 .left .contact-list ul li span img {
  vertical-align: sub;
}
.contact-page .contact-2 .left h3.follow-title {
  font-size: 30px;
  font-weight: bold;
}
.contact-page .contact-2 .left .other-link {
  margin-top: 25px;
}
.contact-page .contact-2 .left .other-link ul {
  margin: -5px;
}
.contact-page .contact-2 .left .other-link ul li {
  display: inline-block;
  padding: 5px;
}
.contact-page .contact-2 .left .other-link ul li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #6c6c6c;
  text-align: center;
  line-height: 40px;
  font-size: 24px;
  color: #fff;
}
.contact-page .contact-2 .right {
  padding-right: 30px;
}
.contact-page .contact-2 .right .form {
  margin-top: 10px;
}
.contact-2 h3.form-title {
  font-size: 30px;
  font-weight: bold;
}
.contact-2 input[type="text"],
.contact-2 input[type="email"],
.contact-2 input[type="tel"],
.contact-2 textarea {
  width: 100%;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #000;
  padding: 8px 15px;
  margin-top: 12px;
}
.contact-2 textarea {
  height: 190px;
}
.contact-2 input[type="submit"] {
  font-size: 18px;
  background-color: #006834;
  border: none;
  color: #fff;
  padding: 10px 65px;
  margin-top: 30px;
}
.contact-2 label span {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
}
.contact-2 label input[type="radio"] {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.contact-2 label:first-child {
  margin-right: 55px;
}
.contact-2 h6.small-title {
  font-size: 18px;
  margin-top: 15px;
}
.news-page .news-sideBar {
  padding: 50px 0;
}
.news-page .news-sideBar ul li {
  display: inline-block;
  font-size: 18px;
}
.news-page .news-sideBar ul li a {
  padding: 10px 45px;
  display: block;
}
.news-page .news-sideBar ul li a:hover,
.news-page .news-sideBar ul li.active a {
  background-color: #006834;
  color: #fff;
}
.news-page .new-list {
  padding: 30px 0 60px;
}
.news-page .new-list li {
  margin-bottom: 27px;
}
.news-page .new-list li:last-child {
  margin-bottom: 0;
}
.news-page .new-list li .new-pic {
  width: 35%;
  vertical-align: middle;
}
.news-page .new-list li .new-con {
  width: 65%;
  padding-left: 40px;
  vertical-align: middle;
}
.news-page .new-list li .new-con .tit {
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: bold;
}
.news-page .new-list li .new-con .tit a:hover {
  color: #ab7942;
}
.news-page .new-list li .new-con .abst {
  font-size: 16px;
  line-height: 30px;
  margin: 10px 0 55px;
}
.news-page .new-list li .new-con a.more {
  color: #006834;
  font-size: 18px;
  line-height: 18px;
  display: inline-block;
  border-bottom: 2px solid #006834;
}
.news-page .new-list li .new-con .date {
  margin-top: 20px;
}
.news-page .new-list li .new-con .date span {
  color: #4a4a4a;
  font-size: 14px;
}
.news-page .new-list li .new-pic img {
  width: 100%;
}
.newdet-page .news {
  padding: 70px 0;
  font-size: 16px;
}
.reladong {
  font-size: 14px;
  line-height: 30px;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 5px;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 32px;
}
.m-link {
    line-height: 30px;
}
.newdet-page .news .news_date {
  text-align: center;
  line-height: 22px;
}
.newdet-page .news .news_contents {
  color: #555;
  line-height: 30px;
  clear: both;
  margin-top: 10px;
  padding: 45px 0 40px;
}
.newdet-page .news .news_contents a {
  color: #555;
  font-size: 16px;
  line-height: 30px;
}
.newdet-page .news .news_contents p,
.newdet-page .news .news_contents div,
.newdet-page .news .news_contents span,
.newdet-page .news .news_contents table {
  font-size: 14px;
  line-height: 24px;
  clear: both;
}
.newdet-page .news .news_next {
  width: 99%;
  margin-top: 0px;
  padding-left: 5px;
  border-top: 0px solid #CCC;
  text-align: left;
  padding-top: 10px;
}
.newdet-page .news .news_next a {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #777;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #000;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}
.mbx {
  font-size: 14px;
  line-height: 28px;
}
.mbx a,
.mbx span {
  display: inline-block;
  vertical-align: top;
  margin: 0 5px;
  line-height: 28px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.mbx a {
  margin-left: 0;
}
.mbx-box .box {
  padding: 60px 0;
}
.product-page .product-box .box {
  font-size: 0;
}
.product-page .product-box .left {
  display: inline-block;
  vertical-align: top;
  width: 20%;
}
.product-sideBar {
  padding: 20px 15px;
  border: 1px solid #f1f1f1;
  background-color: #f9f9f9;
  line-height: 30px;
}
.product-sideBar h2.pro-cat-title {
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 10px;
}
.product-sideBar .cat-list .first-li {
  margin-top: 15px;
}
.product-sideBar .cat-list .second-li {
  margin-top: 10px;
}
.product-sideBar .cat-list .level-two {
  font-size: 16px;
  text-transform: uppercase;
}
.product-sideBar .cat-list .level-three {
  font-size: 16px;
  color: #777777;
  display: inline-block;
  padding-left: 15px;
  position: relative;
}
.product-sideBar .cat-list .level-three::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.m-page {
  margin-top: 80px;
}
.product-page {
  padding-bottom: 80px;
}
.product-page .product-box .right {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  padding-left: 65px;
}
.product-page .product-box .right .cat-text h1 {
  font-size: 24px;
  font-weight: bold;
      color: #006834;
}
.product-page .product-box .right .cat-text .text {
  font-size: 16px;
  margin: 15px 0;
  line-height: 30px;

}
.lvdongcat {
    font-size: 16px;
    margin: 15px 0;
    line-height: 30px;
}
.product-page .product-box .right .inner-pro-box .pro-content {
  font-size: 14px;
  padding: 15px 0;
}
.product-page .product-box .right .inner-pro-box .inner-pro-name {
      color: black;
  line-height: 30px;
  height: 100px;
}
.product-page .product-box .right .inner-pro-box .pro-cat-name {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
}
.product-page .product-box .right .inner-pro-list ul {
  margin: -10px;
}
.product-page .product-box .right .inner-pro-list ul li {
  padding: 10px;
}
.prodet-page .box {
  font-size: 0;
  padding: 50px 0;
}
.prodet-page .left {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}
.prodet-page .right {
  width: 80%;
  display: inline-block;
  vertical-align: top;
  padding-left: 65px;
}
/*.prodet-page .right .prodet-1 {
  text-align: center;
}*/
.prodet-page .right .prodet-1 .pro-featured {
  width: 45%;
}
.prodet-page .right .prodet-1 .prodet-title {
  width: 40%;
  font-size: 14px;
  margin-bottom: 30px;
}
.prodet-page .right .prodet-1 .prodet-title .pro-name{
  font-size: 24px;
  margin-top: 15px;
      line-height: 36px;
}
/*.prodet-page .right .prodet-1 .prodet-title .cat-name{
  font-size: 20px;
}*/
.prodet-page .right .prodet-1 .swiper-father {
  width: 15%;
  position: relative;
}
.prodet-page .right .prodet-1 .swiper-father ul{
  margin: -5px;
}
.prodet-page .right .prodet-1 .swiper-father ul li{
  padding: 5px;
}
.prodet-page .right .prodet-1 .swiper-father .swiper-btn {
  width: 38px;
  height: 38px;
  background-color: #000;
  color: #fff;
  text-align: center;
  line-height: 38px;
  font-size: 18px;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.prodet-page .right .prodet-1 .swiper-btn.gallery-next {
  right: 80px;
}
.prodet-page .right .prodet-1 .swiper-btn.gallery-prev {
  left: 80px;
}
.prodet-page .right .prodet-2 .prodet-date {
  margin-top: 25px;
}
.prodet-page .right .prodet-2 .prodet-date .opsition {
  font-size: 20px;
  border-top: 1px solid #eeeeee;
  text-transform: uppercase;
  padding: 5px 0;
}
.prodet-page .right .prodet-3 {
  padding: 40px 0;
}
.prodet-page .right .prodet-3 h2 {
  font-size: 20px;
}
.prodet-page .right .prodet-3 .pro-list {
  margin-top: 10px;
}
.prodet-page .right .prodet-3 .pro-list h3 {
  font-size: 16px;
  text-transform: capitalize;
  margin-top: 5px;
      line-height: 28px;
}
.prodet-page .right .prodet-3 .pro-list p {
  font-size: 14px;
  margin-top: 5px;
}
.prodet-page .right .prodet-3 .pro-list span {
  display: inline-block;
}
.about-page .about-ty-title h1 {
  font-size: 36px;
}
.about-page .about-ty-title h3 {
    font-size: 36px;
}
.about-page .about-ty-title .text {
  font-size: 18px;
  line-height: 30px;
  color: #8b8b8b;
  margin-top: 15px;
}
.about-page .about-ty-title .text span {
  color: #000;
}
.about-page .about-video {
  margin-top: 30px;
}
.about-page .about-video .play {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-page .about-video .play p {
  font-size: 36px;
  color: #fff;
}
.about-page .about-2 {
  font-size: 0;
  margin-bottom: 150px;
  padding-top: 100px;
}
.about-page .about-2 .left {
  display: inline-block;
  width: 50%;
  vertical-align: bottom;
  padding-right: 15px;
}
.about-page .about-2 .right {
  width: 50%;
  display: inline-block;
  text-align: right;
  vertical-align: bottom;
  position: relative;
  /*bottom: -220px;*/
  padding-left: 15px;
}
.about-page .about-2 img {
  margin-top: 30px;
}
.about-page .about-3 {
  /*padding-top: 100px;*/
}
.about-page .about-3 .about-ty-title {
  max-width: 1100px;
  width: 1100px;
}
.about-page .about-3 .other-box .other-text {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  width: 500px;
  padding: 0 50px;
}
.about-page .about-3 .other-box .other-text h6 {
  font-size: 18px;
  color: #fff;
}
.about-page .about-3 .other-box .other-text h2 {
  font-size: 36px;
  color: #fff;
}
.about-page .about-3 .other-box .other-text a {
  display: inline-block;
  font-size: 18px;
  background-color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  margin-top: 15px;
}
.about-page .about-3 .about-other {
  margin-top: 75px;
}
.about-page .about-3 .about-other ul {
  margin: -15px;
}
.about-page .about-3 .about-other ul li {
  padding: 15px;
}
.about-page {
  padding: 65px 0 130px;
}
@media screen and (max-width: 1230px) {
  .inner.container {
    width: 970px;
  }
  .news-page .new-list li .new-con .abst {
    font-size: 14px;
    margin: 10px 0 15px;
  }
  /*.prodet-page .right .prodet-1 {
    padding: 0 0 60px;
  }*/
  .prodet-page .right .prodet-1 .pro-featured .swiper-father {
    padding: 0px 90px;
  }
  .prodet-page .right .prodet-1 .pro-featured .swiper-btn.gallery-prev {
    left: 10px;
  }
  .prodet-page .right .prodet-1 .pro-featured .swiper-btn.gallery-next {
    right: 10px;
  }
  .about-page .about-3 .about-ty-title {
    max-width: 100%;
    width: 100%;
  }
  .about-page .about-2 .right {
    bottom: 0;
  }
  .about-page .about-2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner h2 {
    font-size: 28px;
  }
  .inner-banner {
    height: 300px;
    padding-top: 150px;
  }
  .news-page .news-sideBar {
    display: none;
  }
  .news-page .new-list li .new-con .tit {
    font-size: 18px;
    line-height: 30px;
  }
  .prodet-page .left {
    display: none;
  }
  .prodet-page .right {
    width: 100%;
    padding-left: 0;
  }
  .about-page .about-ty-title h1 {
    font-size: 30px;
  }
  .about-page .about-3 .other-box .other-text {
    max-width: 100%;
    width: 100%;
  }
  .about-page .about-3 .other-box .other-text h2 {
    font-size: 30px;
  }
  .about-page .about-video .play p {
    font-size: 30px;
  }
}
@media screen and (max-width: 970px) {
  .inner.container {
    width: 768px;
  }
  .cat-text {
    display: none;
}
  .contact-page .contact-1 h1.title {
    font-size: 30px;
  }
  .contact-page .contact-2 .left h3.title,
  .contact-page .contact-2 .right h3.form-title,
  .contact-page .contact-2 .left h3.follow-title {
    font-size: 25px;
  }
  .contact-page .contact-2 .left .contact-list ul li {
    font-size: 16px;
  }
  .contact-page .contact-2 .right label span {
    font-size: 16px;
  }
  .news-page .new-list li .new-con {
    padding-left: 25px;
  }
  .news-page .new-list li .new-con .date {
    margin-top: 10px;
  }
  .product-page .product-box .left {
    display: none;
  }
  .product-page .product-box .right {
    width: 100%;
    padding-left: 0;
  }
  .mbx-box .box {
    padding: 30px 0;
}
  .about-page .about-ty-title h1 {
    font-size: 25px;
  }
  .about-page .about-ty-title .text {
    font-size: 16px;
  }
  .about-page .about-3 .other-box .other-text {
    padding: 0 25px;
  }
  .about-page .about-3 .other-box .other-text a {
    font-size: 16px;
  }
  .about-page .about-3 .other-box .other-text h2 {
    font-size: 25px;
  }
  .about-page .about-video .play p {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .inner.container {
    width: 100%;
    overflow: hidden;
  }
  .contact-page .contact-2 .right label:first-child {
    margin-right: 15px;
  }
  .contact-page .contact-1 .text {
    font-size: 14px;
    margin-top: 20px;
  }
  .contact-page .contact-2 .box {
    padding: 60px 0;
  }
  .contact-page .contact-2 .left .contact-list ul li {
    font-size: 14px;
  }
  .contact-page .contact-2 .left .contact-list ul li span {
    margin-right: 10px;
  }
  .contact-page .contact-2 .left {
    padding-right: 10px;
  }
  .contact-page .contact-2 .right {
    padding-left: 10px;
  }
  .contact-page .contact-2 .right label input[type="radio"] {
    width: 15px;
    height: 15px;
  }
  .news-page .new-list li .new-con .abst {
    line-height: 30px;
  }
  .about-page .about-ty-title .text {
    font-size: 14px;
  }
  .about-page .about-3 .other-box .other-text a {
    font-size: 14px;
  }
  .about-page .about-2 {
    padding-top: 60px;
  }
  .about-page .about-3 {
    padding-top: 60px;
  }
  .about-page .about-3 .about-other {
    margin-top: 60px;
  }
}
@media screen and (max-width: 700px) {
  .news-page .new-list li .new-pic,
  .news-page .new-list li .new-con {
    width: 100%;
  }
  .news-page .new-list li .new-con {
    padding-left: 0;
    padding-top: 10px;
  }
  .about-page .about-2 .left {
    width: 100%;
    padding-right: 0;
  }
  .about-page .about-2 .right {
    width: 100%;
    padding-left: 0;
    padding-top: 60px;
    text-align: left;
  }
  .about-page .about-3 .other-li {
    width: 100%;
  }
  .about-page .about-ty-title h1 {
    font-size: 20px;
  }
  .about-page .about-ty-title h3 {
    font-size: 20px;
}
}
@media screen and (max-width: 500px) {
  .inner-banner h2 {
    font-size: 24px;
    display:none;
  }
  .inner-banner {
    height: 240px;
    padding-top: 100px;
  }
  .contact-page .contact-2 .left {
    padding-right: 0;
    margin-top: 30px;
  }
  .contact-page .contact-2 .right {
    padding-left: 0;
    margin-top: 30px;
  }
  .contact-page .contact-2 .left .contact-list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .about-page {
    padding: 30px 0 60px;
  }
  .about-page .about-2 {
    padding-top: 30px;
  }
  .about-page .about-2 .right {
    padding-top: 30px;
  }
  .about-page .about-3 {
    padding-top: 30px;
  }
}





.faq-page .about-3 {
  padding-bottom: 90px;
}
.faq-page .about-3 h2 {
  font-size: 25px;
  color: black;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
.faq-page .about-3 h2 small {
  display: block;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.6);
  line-height: normal;
  text-transform: none;
}
.faq-page .about-3 .box {
  padding-top: 40px;
  max-width: 1320px;
  display: block;
  margin: 0 auto;
}
.faq-page .about-3 .box ul li {
  padding-bottom: 20px;
}
.faq-page .about-3 .box ul li:last-child {
  padding-bottom: 0;
}
.faq-page .about-3 .box ul li h4 {
  padding: 20px 70px;
  background-image: url("../images/icon-lt.png");
  background-position: center left 25px;
  background-repeat: no-repeat;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: 1px solid #b7b7b7;
  font-size: 16px;
  color: #666;
  text-transform: capitalize;
  position: relative;
  cursor: pointer;
  cursor: hand;
}
.faq-page .about-3 .box ul li h4:after {
  content: "\f107";
  font-size: 18px;
  position: absolute;
  right: 25px;
  top: 20px;
  font-family: "FontAwesome";
}
.faq-page .about-3 .box ul li .text {
  padding: 25px;
  border: 1px solid #b7b7b7;
  margin-top: 8px;
  font-size: 16px;
  color: #666;
  display: none;
  -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}
.faq-page .about-3 .box ul li.active h4 {
  background-color: #006834;
  color: white;
  background-image: url("../images/icon-lt2.png");
}
.faq-page .about-3 .box ul li.active h4:after {
  content: "\f106";
}


.prodet-page .prodet-1 .share h4{
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    color: black;
    font-weight: 500;
}
.prodet-page .prodet-1 .share ul {
    display: inline-block;
    vertical-align: middle;
}
.prodet-page .prodet-1 .share ul li {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin-left: 15px;
    font-size: 16px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.prodet-page .prodet-1 .share ul li:hover {
    color: #fab702;
}

.prodet-page .prodet-1 .btn {
    margin-top: 20px;
        margin-bottom: 20px;
}
.prodet-page .prodet-1 .btn a {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    margin-top: 60px;
    line-height: 40px;
    height: 40px;
    padding: 0 30px;
    font-size: 18px;
    color: black;
    border: 1px solid black;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

@media screen and (max-width: 1000px) {
  .prodet-page .right .prodet-1 .swiper-father{
    width: 25%;
  }
  .prodet-page .right .prodet-1 .pro-featured{
    width: 75%;
  }

  .prodet-page .right .prodet-1 .prodet-title{
    width: 100%;
    margin-top: 30px;
  }
}






.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: transparent;
  color: var(--mibooz-base);
  font-size: 16px;
  line-height: 36px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 14px 58px 14px;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
  border: 2px solid #006834;
  z-index: 1;
  text-shadow: 0 0 0.25px currentColor;
}
.thm-btn::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  background-color: var(--mibooz-primary);
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .5s;
  -moz-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  transition-property: all;
  opacity: 0;
  z-index: -1;
}
.thm-btn:hover {
  color: var(--mibooz-base);
}
.thm-btn:hover::after {
  opacity: 1;
  width: 100%;
  top: 0px;
  left: 0px;
  height: 100%;
}

.section-title__tagline {
  position: relative;
  display: block;
  color: #006834;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.services-one__top-left .section-title__tagline {
  color: white;
}
.section-title__title {
  margin: 0;
  font-size: 48px;
  line-height: 60px;
  text-transform: uppercase;
}

.our-about-bl {
  position: relative;
  display: block;
  padding: 120px 0;
  z-index: 1;
}
.our-about-bl .box {
  margin: 0 -15px;
}
.our-about-bl .box .left {
  width: 50%;
  padding: 0 15px;
}
.our-about-bl .box .right {
  width: 50%;
  padding: 0 15px;
  position: relative;
  z-index: 10;
}
.welcome-one-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.welcome-one-shape img {
  -webkit-transform-origin: center bottom;
  -moz-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.welcome-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
  z-index: 1;
}
.welcome-one__left::before {
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: -10000000px;
  right: 230px;
  content: "";
  background-color: #f6f6f6;
  z-index: -1;
}
.welcome-one__img-box {
  position: relative;
  display: block;
}
.welcome-one__img-box:before {
  position: absolute;
  bottom: 0;
  left: -40px;
  height: 224px;
  width: 20px;
  content: "";
  background-color: #d3a565;
}
.welcome-one__img-box:hover .welcome-one__img:after {
  -webkit-animation: shine 1.5s;
  -moz-animation: shine 1.5s;
  animation: shine 1.5s;
}
.welcome-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  background: black;
  z-index: 1;
}
.welcome-one__img img {
  width: 100%;
  -webkit-transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  transition: all 900ms ease;
}
.welcome-one__img::after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.welcome-one__experience {
  position: absolute;
  top: 74px;
  left: -94px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(161, 156, 156, 0.1);
  box-shadow: 0px 10px 60px 0px rgba(161, 156, 156, 0.1);
  padding: 29px 40px 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}
.welcome-one__experience-icon {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.welcome-one__experience-icon span {
  position: relative;
  display: inline-block;
  -webkit-transition: color 500ms ease, -webkit-transform 500ms linear;
  transition: color 500ms ease, -webkit-transform 500ms linear;
  -moz-transition: transform 500ms linear, color 500ms ease, -moz-transform 500ms linear;
  transition: transform 500ms linear, color 500ms ease;
  transition: transform 500ms linear, color 500ms ease, -webkit-transform 500ms linear, -moz-transform 500ms linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.welcome-one__img-box:hover .welcome-one__experience-icon span {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.welcome-one__experience-content {
  margin-left: 30px;
}
.welcome-one__experience-title {
  font-size: 21px;
  line-height: 30px;
}
.welcome-one__experience-title span {
  font-size: 30px;
  font-weight: bold;
}
.welcome-one__right {
  position: relative;
  display: block;
}
.welcome-one__right .section-title {
  margin-bottom: 26px;
  margin-top: 90px;
}
.welcome-one__right-text {
  line-height: 30px;
  margin: 0;
  padding-bottom: 80px;
  color: var(--mibooz-gray);
}
.h1dong {
  display: inline;
}
.welcome-one__bottom-right-content {
  position: relative;
  background-color: var(--mibooz-extra);
  padding: 40px 39px 40px;
  /*max-width: 450px;*/
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.welcome-one__bottom-right-title {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
}
.welcome-one__btn {
  padding: 4px 37px 4px;
  color: var(--mibooz-black);
  font-size: 12px;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@-moz-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}



.our-product{
  padding: 90px 0;
}
.our-product .list ul{
  margin: -15px;
}
.our-product .list ul > button{
  font-size: 30px;
  background: transparent;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid black;
  position: absolute;
  top: 40%;
}
.our-product .list ul > button.slick-prev{
  left: -40px;
}
.our-product .list ul > button.slick-next{
  right: -40px;
}
.our-product .list ul li{
  padding: 15px;
}
.our-product .list ul li .img{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


@media screen and (max-width: 1200px) {
  .our-about-bl .box .left {
    width: 100%;
  }
  .our-about-bl .box .right {
    width: 100%;
  }

  .welcome-one__left {
    max-width: 600px;
    margin: 0 auto;
  }

  .welcome-one__right {
    max-width: 600px;
    margin: 180px auto 0;
  }

  .product-cat .box ul li{
    width: 50%;
  }
}

@media screen and (max-width: 700px) {
  .welcome-one__experience {
    display: none;
  }

  .section-title__title {
    font-size: 20px;
    line-height: 40px;
  }
  .our-product {
    padding: 0px 0;
}

  .product-cat{
    display: none;
  }
}
