@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&display=swap');

@media (min-width: 1400px) {
  .container {
      width: 1380px;
  }
}
* {
  font-family: "Montserrat", "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
a:hover,
a:focus{
  text-decoration: none;
}

:focus,
:focus-visible {
  outline: none !important;
}


/* home-news */

.home-news {
  padding: 100px 0;
  background-color: #ffffff;
  color: #333;
}

.home-news .home-wrapper {
  display: flex;
  justify-content: center!important;
  gap: 50px;
  
}

/* --- 左側文章列表樣式 --- */
.home-news .news-main {
  flex: 1; /* 自動分配寬度 */
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.home-news .news-card {
  display: flex;
  background-color: #f5f5f5;
  overflow: hidden;
}

/* 控制第二張圖文反轉 */
.home-news .news-card.card-reverse {
  flex-direction: row-reverse;
}

.home-news .card-img {
  flex: 1;
  max-width: 50%;
}

.home-news .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-news .card-content {
  flex: 1;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.home-news .card-title {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #000;
}

.home-news .card-meta {
  font-size: 1.5rem;
  color: #777;
  border-top: 1px solid #e0e0e0;
  padding-top: 15px;
}

.home-news .card-more {
  align-self: flex-end;
  font-size: 1.5rem;
  color: #6688aa; /* 灰藍色 */
  text-decoration: none;
  font-weight: 500;
  margin-top: 30px;
}

.home-news .card-more:hover {
  text-decoration: underline;
}

/* --- 右側側邊欄樣式 --- */
.home-news .news-sidebar {
  width: 280px; /* 固定右側欄寬度 */
  flex-shrink: 0;
}

.news-sidebar .sidebar-widget {
  margin-bottom: 50px;
}

.news-sidebar .widget-title {
  font-size: 1.8rem;
  color: #446688; /* 側邊欄標題經典藍 */
  font-weight: bold;
  margin: 0 0 20px 0;
}

/* 近期文章清單 */
.news-sidebar .recent-list {
  list-style: none;
  padding: 0 0 0 25px;
  margin: 0;
  border-left: 1px solid #e0e0e0;
}

.news-sidebar .recent-list li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.news-sidebar .recent-list li:first-child {
  padding-top: 0;
}

.news-sidebar .recent-list a {
  font-size: 1.8rem;
  color: #444;
  text-decoration: none;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 近期文章最多顯示三行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 文章分類清單 */
.home-news .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid #e0e0e0;
}

.home-news .category-list li {
  padding: 12px 20px;
}

.home-news .category-list a {
  font-size: 1.8rem;
  color: #444;
  text-decoration: none;
}

.home-news .recent-list a:hover,
.home-news .category-list a:hover {
  color: #446688;
}

/* RWD 響應式：平板與手機版切換 */
@media (max-width: 992px) {
  .home-news {
    padding: 30px 0;
  }
  .home-news .home-wrapper {
    flex-direction: column; 
  }
  
  .home-news .news-sidebar {
    /* width: 100%; */
    display: none;
  }

  .home-news .news-card,
  .home-news .news-card.card-reverse {
    flex-direction: column; 
  }

  .home-news .card-img {
    max-width: 100%;
  }
}

/* footer */

.main-footer {
  width: 100%;
  color: #ffffff;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  padding: 80px 0;
  position: relative; /* 建立定位基準 */
  overflow: hidden;    /* 隱藏超出邊框的背景 */
}

/* 👇 把背景圖片移到這裡 */
.footer-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(18, 32, 47, 0.25), rgba(18, 32, 47, 0.55)),
    url('../../images/contact_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1; /* 讓背景在下層 */
  
  /* 👇 加入呼吸縮放動畫 */
  animation: bgZoom 10s ease-in-out infinite alternate;
}

/* 👇 確保裡面的文字內容字體疊在動畫背景上方，才不會被蓋住或一起變模糊 */
.footer-top .footer-container {
  position: relative;
  z-index: 2;
}

/* 👇 定義縮放動畫 */
@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08); /* 緩慢放大 8% */
  }
}

.footer-top .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 左側標語 */
.brand-slogan h2 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.brand-slogan p {
  font-size: 22px;
  letter-spacing: 4px;
  font-weight: 400;
  opacity: 0.9;
}

/* 右側聯絡區塊 */
.contact-action {
  display: flex;
  align-items: center;
  gap: 40px;
}

.contact-title h3 {
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 1;
}
.contact-title span {
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
  margin-top: 5px;
}

/* 填寫表單按鈕 */
.form-btn {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 35px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* ==========================================
   下半部區塊 (Footer Bottom)
   ========================================== */
.footer-bottom {
  /* 漸層背景色 */
  background: url('../../images/footer_bg.png') no-repeat center bottom,
              linear-gradient(180deg, #27B7C8 0%, #4C78A1 100%);
  padding: 60px 0;
  font-size: 13px;
  line-height: 1.6;
  position: relative;
}

/* 四欄網格排版 */
.bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.2fr 1.2fr;
  gap: 30px;
  align-items: start;
}

/* 第一欄：Logo 區 */
.logo-text {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.info-logo h4 {
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}
.en-name {
  font-size: 13px;
  opacity: 0.7;
}

/* 欄位通用樣式 */
.info-block h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.en-address {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 5px;
}

/* 第三、四欄的橫向條目對齊 */
.col-flex {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.row-item h5 {
  margin-bottom: 0;
  flex-shrink: 0;
  margin-top: 5px;
}
footer .info-block p{
  margin: 0;
  font-size: 15px;
  letter-spacing: 1.5px;
}
/* 版權宣告 */
.contact-methods {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.copyright {
  background: transparent;
  font-size: 13px;
  letter-spacing: 1.5px;
  opacity: 0.6;
  margin-top: 20px;
  line-height: 1.4;
}

footer .form-btn {
  /* 基礎設定 */
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  
  /* 玻璃質感核心 */
  background: rgba(255, 255, 255, 0.1); /* 白色半透明底色 */
  backdrop-filter: blur(10px);         /* 這是毛玻璃的關鍵：將背景模糊化 */
  -webkit-backdrop-filter: blur(10px); /* 兼容 Safari */
  
  /* 邊框與邊緣細節 */
  border: 1px solid rgba(255, 255, 255, 0.3); /* 半透明細邊框 */
  border-radius: 50px;
  
  /* 增加高光感，讓邊緣更立體 */
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 
              0 4px 6px rgba(0, 0, 0, 0.1);
  
  /* 內距 */
  padding: 12px 35px;
  transition: all 0.3s ease;
}

/* 滑鼠移入效果 */
footer .form-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
/* ==========================================
   響應式 RWD 處理 (手機板自動轉單欄)
   ========================================== */
@media (max-width: 992px) {
  .bottom-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .contact-action {
    flex-direction: column;
    gap: 15px;
  }
  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .row-item h5 {
    width: 70px;
  }
}


/* page-banner */

.page-banner{
  background-image: url(/hipershop/rwd1888/store/F1/page-banner_bg.jpg);
  height: 255px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .page-banner{
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .page-banner{
    height: 280px;
  }
}
.page-banner h2{ 
  font-size: 47px;
  font-weight: 600;
  color: #fff;
  text-align: center;

}
.page-banner h3{ 
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  margin: 0;
  text-align: center;
}


@media screen and (max-width: 1200px) {
  .category-wrapper .content,
  .product-wrapper .content,
  .news-wrapper .content{
    display: flex;
    flex-direction: column-reverse;
  }
}
.breadcrumb{
  background-color: transparent;
}
.sub_box{
  display: none;
}


/*---------- page-news ----------*/  

.news-wrapper .news-row>.row>.col-sm-12 {
  width: calc(100% / 3);
}
@media screen and (max-width: 1250px) {
  .news-wrapper .news-row>.row>.col-sm-12 {
    width: calc(100% / 2);
  }
}
@media screen and (max-width:767px) {
  .news-wrapper .news-row>.row>.col-sm-12 {
    width: calc(100% / 1);
  }
}
.news-wrapper aside{
  padding-left: 30px;
}
@media screen and (max-width:767px) {
  .news-wrapper aside{
    padding: 0;
  }
}
.news-wrapper .text-center {
  clear: both;
}
/* 文章標題名稱 */
.news-wrapper .news_title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 10px 0;
}
/* 避免浮動圖片超出 */
.news-wrapper .newslist {
  min-height: 350px;
  overflow: hidden;
  padding: 5px 5px 0;
}
.news-wrapper .pagination{
  padding: 30px 0 10px;
}
.news-wrapper .pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover {
  border-radius: 50%;
  background-color: #6A7A96 !important;
  font-size: 14px;
  color: #ffffff;
}
.news-wrapper .pagination > li > a,
.pagination > li > span {
  border: none;
  background-color: transparent;
  margin: 0 5px;
  font-size: 16px;
  color: #5e5d5d;
  line-height: 1.4;
}
.news-wrapper .pagination>.disabled>a,
.pagination>.disabled>a:hover{
  border-radius: 50px;
}




.news-wrapper .thumbnail {
  padding: 0;
  margin: 0 0 30px;
  border: none;
  background-color: #f4f4f4;
  min-height: 420px;
}
@media screen and (max-width: 480px) {
  .news-wrapper .thumbnail {
    padding: 15px;
  }
}
.news-wrapper .thumbnail .caption {
  margin-top: 30px;
  padding: 20px;
}

.news-wrapper .newslist img.news_pic{
  width: 100%;
  float: left;
  padding: 0;
  margin-bottom: 30px;
  border-radius: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .news-wrapper .newslist img.news_pic {
    margin-bottom: 20px;
  }
}
.news-wrapper .newslist img.news_pic:hover{
  transform: scale(1.05);
}
.news-wrapper .news_more {
  padding: 20px 0;
  border-radius: 0;
  border: none;
  color: #6A7A96;
  background-color: transparent;
  font-weight: 400;
  letter-spacing: 1.6px;
  transition: none;
}

.news-wrapper .news_more:hover {
  border-bottom: solid #6A7A96 1px;
  padding-bottom: 5px;
  font-weight: 500;
}
.news-wrapper .news_title {
  margin: 0 0 15px 0;
  font-size: 17px;
  padding: 0;
  padding-bottom: 10px;
  border-bottom: solid #bcbcbc 1px;
}
@media screen and (max-width: 767px) {
  .news-wrapper .news_title {
    margin: 15px 0;
  }
}
.news-wrapper .newsbar p{
  margin: 10px!important;
}
.news_content {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .news_content {
    margin: 0 15px;
  }
}
.news_date img,
.news_sort img {
  display: none;
}
.news_date {
  display: none;
}
@media screen and (max-width: 767px) {
  .news_date, .news_info {
    padding-left: 15px;
  }
}
.news_sort {
  color: #7B7C7E;
  letter-spacing: 1.6px;
  border-radius: 30px;
  display: inline-block;
}
.news_author{
  display: none;
}
.news_author img{
  display: none;
}
.news-wrapper .news_icon03 {
  max-width: 25px;
  max-height: 25px;
  margin-right: 7px;
}
.news-wrapper .newsbar {
  display: none;
}
.news-wrapper .news-content p{
  margin: 20px;
}
@media screen and (max-width: 767px) {
  .news-wrapper .news-content p{
    margin: 20px 0;
  }
}
.news-wrapper .aside-title {
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .news-wrapper .aside-title {
    display: block;
    margin-top: 20px;
    background-color: transparent;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .news-wrapper .caption p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
  
  }
  .news-wrapper .caption p span {
    margin-bottom: 18px;
  }
}
.news-wrapper .aside-title{
  padding: 10px 0;
  color: #446688;
}
.news-wrapper .NEWS_type {
  border-left: 1px #e0e0e0 solid;
}
.news-wrapper .NEWS_type li{
  margin-right: 30px;
}
.news-wrapper .NEWS_type li img{
  display: none;
}
.news-wrapper .NEWS_type .topic {
  color: #6A7A96;
  transition: all 0.08s;
}
.news-wrapper .headlinecate0{
  display: none;
}
.news-wrapper .NEWS_type li a:hover {
  color: #6A7A96;
}
.news-wrapper .NEWS_type li span {
  right: 0px;
}
.news-wrapper .badge {
  border: 1px #6A7A96 solid;
  color: #fff;
  background-color: #6A7A96;
  padding: 2px 5px;

}
.news-wrapper .NEWS_type li a {
  font-weight: bold;
  border: none;
}
@media screen and (max-width: 767px) {
  .news-wrapper .NEWS_type {
    margin-bottom: 30px;
  }
}

/* 上下則按鈕 */
.news-wrapper .NP-Buttons{
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .news-wrapper .NP-Buttons{
    margin-top: 50px;
  }
} 
.news-wrapper .NP-Buttons .previous,
.news-wrapper .NP-Buttons .next{
  padding: 10px 30px;
  margin-top: 10px;
  min-width: 120px;
  transition: all 0.3s;
  border: 1px transparent solid;
}
.news-wrapper .NP-Buttons .previous{
  background-color: #fff;;
  color: #000;
  border: #000 1px solid;
}
.news-wrapper .NP-Buttons .next{
  background-color: #202020;
  color: #fff;
}
.news-wrapper .NP-Buttons .previous:hover,
.news-wrapper .NP-Buttons .next:hover,
.news-wrapper .NP-Buttons .previous:focus,
.news-wrapper .NP-Buttons .next:focus{
  background-color: #979797;
  color: #fff;
  border: #979797 1px solid;
}
.news-wrapper h1.news_title{
  font-size: 25px;
}

small {
  color: #ccc;
}

p.news_info {
  display: none;
}

h3.news_title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.8em;
}

.Pro_content2 {
  margin-bottom: 60px;
}

/* category */
.li-item:hover{
  box-shadow: none;
  background-color: transparent;
}
.li-item .features-box a.btn-default{
  padding: 10px 30px;
  border-radius: 0;
  margin-top: 10px;
  letter-spacing: 1.5px;
}
.li-item .features-box a.btn-default:hover{
  background-color: #4C78A1;
}
.thumbnail-list .view{
  transition: all .25s ease;
}
.thumbnail-list .view:hover{
  transform: scale(1.05);
}
.thumbnail-list li{
  margin-bottom: 20px;
}
.category-wrapper .aside-title{
  display: none;
}
@media screen and (max-width: 1200px) {
  .category-wrapper .aside-title{
    display: block;
  }
}

/* about us 表格 */
.patent-brand-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  color: #333;
}

.table-section {
  margin-bottom: 50px;
}

.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #333;
}

.table-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  overflow: hidden; 
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.custom-table th {
  background: linear-gradient(180deg, #32b1c8 0%, #4083a9 100%);
  color: #ffffff;
  font-weight: bold;
  padding: 16px;
  font-size: 18px;
  text-align: center;
  letter-spacing: 1px;
  border: none;
}

.custom-table td {
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.custom-table tr:last-child td {
  border-bottom: none;
}

/* 最左側項目 */
.custom-table td.row-title {
  color: #1a4a75;
  font-weight: bold;
}

.bg-light-blue {
  background-color: #f4f8fb;
}

@media screen and (max-width: 414px) {
  .table-wrapper {
    overflow: scroll;
  }
}

/* 產品應用領域區塊樣式  */
.afft-container {
  width: 100%;
  max-width: 1100px;
  margin: 40px auto;
  padding: 60px 40px;
  background-color: #f4f4f4;
  border-radius: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  font-family: "Microsoft JhengHei", sans-serif;
  gap: 40px;
}

/* 左側圖表區樣式 */
.afft-visual-section {
  position: relative;
  width: 520px;
  height: 420px;
  flex-shrink: 0;
}

.circle-main-bg {
  position: absolute;
  width: 240px;
  height: 240px;
  background-color: #e0e0e0;
  border-radius: 50%;
  left: 20px;
  top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.logo-text h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #000;
}
.logo-text p {
  margin: 5px 0 0 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.business-node {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 2;
}
.image-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  background-color: #fff;
}
.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.node-label {
  display: flex;
  align-items: center;
  margin-left: 15px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: bold;
  color: #1a1a1a;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
}
.color-1 { background-color: #5f9ca2; }
.color-2 { background-color: #599ba1; }
.color-3 { background-color: #55979c; }

/* 桌機版絕對定位微調 */
.node-top { left: 160px; top: 10px; }
.node-middle { left: 250px; top: 140px; }
.node-bottom { left: 180px; top: 270px; }


/* 右側列表區樣式  */
.afft-list-section {
  display: flex;
  flex-direction: column;
  width: 250px;
  flex-shrink: 0;
}
.industry-item {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #dcdcdc;
}
.industry-item:last-child {
  border-bottom: none;
}
.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #6e7f9a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.mock-icon {
  font-size: 28px;
  color: #fff;
}
.industry-text {
  font-size: 18px;
  font-weight: bold;
  color: #555c66;
  letter-spacing: 1px;
}


/* 手機版(992px以下) */
@media (max-width: 992px) {
  .afft-container {
    flex-direction: column;
    padding: 40px;
    gap: 50px;
    border-radius: 20px;/
  }

  /* 解除左側固定寬高，改為直向彈性排版 */
  .afft-visual-section {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* Logo 區變成普通的圓框置中 */
  .circle-main-bg {
    position: static;
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
  }
  .logo-text h2 { 
    font-size: 28px; 
  }

  /* 事業群解除絕對定位，順序排下來 */
  .business-node {
    position: static;
    width: 100%;
    max-width: 300px;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    box-sizing: border-box;
  }

  /* 手機板縮小一點點圖片比較精緻 */
  .image-circle {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .node-label {
    font-size: 18px;
    margin-left: 15px;
  }

  /* 右側列表手機板自動撐滿 */
  .afft-list-section {
    width: 100%;
    max-width: 320px;
  }
  .industry-item {
    justify-content: center;
  }
  .mock-icon {
    font-size: 24px;
  }
}

/* contact */
.contact-wrapper .form-control{
  border: none;
}
.contact-wrapper .form-control{
  display: block;
  width: 100%;
  height: 45px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.42857143;
  color: #555;
  background-image: none;
  border-bottom: 1px #ddd solid;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.contact-wrapper .content-wrap{
  background-color: #fff;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .contact-wrapper .content-wrap{
    margin: 30px 10px;
  }
}
.contact-wrapper .img-wrap{
  background-image: linear-gradient(rgba(18, 18, 20, 0.4), rgba(0, 0, 0, 0.4)), url(/hipershop/rwd1798/store/F1/contact.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover
}
@media screen and (max-width: 1200px) {
  .contact-wrapper .img-wrap{
    max-width: 100%
  }
}

.contact-wrapper .form-group{
  margin: 25px 0;
}
.contact-wrapper .form-wrap {
  padding: 70px 180px;
}
@media screen and (max-width: 992px) {
  .contact-wrapper .form-wrap {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 480px) {
  .contact-wrapper .form-wrap {
    padding: 50px 20px;
  }
}
.contact-wrapper .form-group .control-label {
  font-size: 16px;
  margin: 0;
}

.contact-wrapper .btn-info{
  color: #fff;
  background-color: #4C78A1;
  border-color: transparent;
  border-radius: 0;
  padding: 10px 40px;
  margin: 20px 0;
  transition: all 0.3s;
}
.contact-wrapper .btn-info:hover{
  color: #254c70;
  background-color: #fff;
  border-color: #254c70;;
}
.contact-wrapper .has-error .form-control:focus{
  box-shadow: none;
}

.features-box>p.prd_info{
  font-size: 13px;
}