* {
  box-sizing: border-box;
}

.bg-theme {
  background: #0355aa !important;
}

.slider_section .box-img img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_section .box-img img {
    height: 50vh;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_section .box-img img {
    height: 50vh;
  }
}
@media only screen and (max-width: 767px) {
  .slider_section .box-img img {
    height: 50vh;
  }
}
.slider_section .box-detail {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
}
.slider_section .box-detail h1 {
  position: relative;
  color: #ffffff;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  padding-bottom: 1.5rem;
  margin-bottom: 1.2rem;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}
.slider_section .box-detail h1:after {
  display: block;
  width: 60px;
  background: #ff480d;
  content: "";
  height: 5px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.slider_section .box-detail p {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_section .box-detail {
    top: 55%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider_section .box-detail {
    top: 55%;
  }
}
@media only screen and (max-width: 767px) {
  .slider_section .box-detail {
    top: 55%;
  }
}

.top-nav ul {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 15px;
}
.top-nav ul li {
  float: left;
}
.top-nav ul li a {
  display: inline-block;
  padding: 10px 15px;
  background-color: #ad0b29;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s;
  border: 1px solid #ad0b29;
}
.top-nav ul li a:hover {
  background-color: transparent;
  color: #ad0b29;
}

.breadcrumb-list {
  position: relative;
}
.breadcrumb-list li {
  float: left;
}
.breadcrumb-list li a {
  display: block;
  font-size: 14px;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  position: relative;
  color: #696969;
  transition: 0.3s;
}
.breadcrumb-list li a:after {
  display: block;
  content: "/";
  font-size: 14px;
  position: absolute;
  line-height: 60px;
  height: 60px;
  top: 0;
  right: -4px;
  color: #696969;
}
.breadcrumb-list li:last-child a:after {
  display: none;
}
.breadcrumb-list li:first-child a {
  padding: 0 10px 0 0;
}
.breadcrumb-list li:hover a {
  color: #0355aa;
}
.breadcrumb-list li:hover a:after {
  color: #696969;
}

.page-detail {
  position: relative;
}
.page-detail .box-title h1 {
  font-size: 20px;
  line-height: 42px;
  border-bottom: 1px solid #cccccc;
}
.page-detail .box-body {
  font-size: 14px !important;
  line-height: 28px !important;
  color: #696969 !important;
}
.page-detail .box-body p {
  font-size: 14px !important;
  line-height: 28px !important;
  color: #696969 !important;
}
.page-detail .box-body img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}
.page-detail .box-desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #cccccc;
}
.page-detail .box-desc span {
  display: block;
  font-size: 14px;
}

.product-item {
  border: 1px solid #CCCCCC;
}
.product-item .product-item-top {
  position: relative;
}
.product-item .product-item-top .product-item-top-img {
  width: 100%;
  padding-top: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.product-item .product-item-top .product-item-top-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(3, 85, 170, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
}
.product-item .product-item-top .product-item-top-text h4 {
  font-size: 18px;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  position: relative;
}
.product-item .product-item-top .product-item-top-text h4:after {
  width: 0;
  background: #ffffff;
  height: 3px;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.product-item .product-item-top .product-item-top-text span {
  font-size: 28px;
  text-align: center;
  display: block;
  color: #ffffff;
  opacity: 0;
}
.product-item .product-item-top:hover .product-item-top-text {
  opacity: 1;
}
.product-item .product-item-top:hover .product-item-top-text h4:after {
  width: 50px;
}
.product-item .product-item-top:hover .product-item-top-text span {
  opacity: 1;
}
.product-item .product-item-bottom {
  position: relative;
  border-top: 1px solid #CCCCCC;
}
.product-item .product-item-bottom h4 {
  font-size: 16px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-item:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.st-pagination {
  text-align: center;
}
.st-pagination ul {
  justify-content: center;
}
.st-pagination ul li a, .st-pagination ul li span {
  position: relative;
  float: left;
  padding: 10px 16px;
  line-height: 1.5;
  color: #0355aa;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 14px;
  border-radius: 0px;
  border: 2px solid #0355aa;
  background-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 4px;
  margin-bottom: 8px;
  font-style: initial;
}
.st-pagination ul li a:focus, .st-pagination ul li span:focus {
  z-index: 2;
  color: #fff;
  background-color: #0355aa;
  border: #0355aa 2px solid;
}
.st-pagination ul li a:hover, .st-pagination ul li span:hover {
  z-index: 2;
  color: #fff;
  background-color: #0355aa;
  border: #0355aa 2px solid;
}
.st-pagination ul li:first-child a, .st-pagination ul li:first-child span {
  margin-left: 0;
  border-radius: 0px;
}
.st-pagination ul li:last-child a, .st-pagination ul li:last-child span {
  border-radius: 0px;
}
.st-pagination ul li.active a, .st-pagination ul li.active span {
  z-index: 3;
  cursor: default;
  color: #fff;
  background-color: #0355aa;
  border: #0355aa 2px solid;
}
.st-pagination ul li.active a:focus, .st-pagination ul li.active span:focus {
  z-index: 3;
  cursor: default;
  color: #fff;
  background-color: #0355aa;
  border: #0355aa 2px solid;
}
.st-pagination ul li.active a:hover, .st-pagination ul li.active span:hover {
  z-index: 3;
  cursor: default;
  color: #fff;
  background-color: #0355aa;
  border: #0355aa 2px solid;
}

.product_image_area .lSSlideOuter .lSPager.lSGallery li {
  border: 1px solid #CCCCCC;
}
.product_image_area .lSSlideOuter .lSPager.lSGallery img {
  padding: 5px;
  object-fit: fill;
}
.product_image_area .lSSlideOuter .lSSlideWrapper {
  border: 1px solid #CCCCCC;
}
.product_image_area .lSSlideOuter .lSSlideWrapper .lslide img {
  object-fit: fill;
}
.product_image_area .s_product_text h4 {
  font-size: 20px;
  border-bottom: 1px solid #CCCCCC;
}
.product_image_area .s_product_text .btn1 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #0355aa;
  color: #ffffff;
  border-radius: 0;
  transition: all 0.3s;
  border: 1px solid #0355aa;
}
.product_image_area .s_product_text .btn1:hover {
  background-color: transparent;
  color: #0355aa;
}
.product_image_area .s_product_text .btn-box {
  border-top: 1px solid #CCCCCC;
  display: flex;
  justify-content: start;
  gap: 1rem;
}
.product_image_area .product-detail .product-header {
  border: 1px solid #0355aa;
}
.product_image_area .product-detail .product-header h4 {
  font-size: 18px;
  background: #0355aa;
  color: #ffffff;
  height: 70px;
  line-height: 70px;
  text-align: center;
  margin: 0;
}
.product_image_area .product-detail .product-body {
  border: 1px solid #CCCCCC;
  border-top: 0;
  font-size: 14px !important;
  line-height: 28px !important;
  color: #696969 !important;
}
.product_image_area .product-detail .product-body p {
  font-size: 14px !important;
  line-height: 28px !important;
  color: #696969 !important;
}

.news-item {
  background: #ffffff;
  transition: all 0.3s;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.15);
}
.news-item .box-top {
  text-align: left;
  padding: 2rem 1.5rem;
  overflow: hidden;
}
.news-item .box-top .box-time {
  width: 100px;
  height: 100px;
  padding-right: 20px;
  float: left;
  border-right: 1px solid #f2f2f2;
}
.news-item .box-top .box-time span {
  display: block;
  font-size: 16px;
  text-align: right;
  color: #696969;
  transition: all 0.3s;
}
.news-item .box-top .box-time h5 {
  font-size: 28px;
  text-align: right;
  color: rgb(89, 89, 89);
  transition: all 0.3s;
}
.news-item .box-top .box-content {
  width: calc(100% - 120px);
  float: right;
  flex: 1;
}
.news-item .box-top .box-content h4 {
  font-size: 18px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgb(89, 89, 89);
  transition: all 0.3s;
}
.news-item .box-top .box-content p {
  width: 100%;
  text-align: justify;
  vertical-align: top;
  word-break: normal;
  color: #999;
  font-size: 14px;
  line-height: 32px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal !important;
  -webkit-line-clamp: 2px;
  -webkit-box-orient: vertical;
  height: 64px;
  transition: all 0.3s;
}
.news-item .box-bottom {
  border-top: 1px solid #f2f2f2;
  padding: 10px;
}
.news-item .box-bottom span {
  display: block;
  text-align: right;
  font-size: 25px;
  color: #696969;
  transition: all 0.3s;
}
.news-item:hover .box-top .box-content h4 {
  color: #0355aa;
}
.news-item:hover .box-top .box-time span {
  color: #0355aa;
}
.news-item:hover .box-top .box-time h5 {
  color: #0355aa;
}
.news-item:hover .box-top .box-content p {
  color: #0355aa;
}
.news-item:hover .box-bottom span {
  color: #0355aa;
}

.contact-section.section_title p {
  font-size: 16px !important;
  margin: 0 !important;
}
.contact-section.section_title p strong {
  color: #ff480d;
}

.contact-right {
  background: #0355aa;
}
.contact-right .btn2 {
  display: inline-block;
  padding: 10px 15px;
  background-color: #ffffff;
  color: #0355aa;
  border-radius: 0;
  transition: all 0.3s;
  border: 1px solid #ffffff;
  border-radius: 10px;
}
.contact-right .btn2:hover {
  background-color: transparent;
  color: #ffffff;
}

/*# sourceMappingURL=page.css.map */
