/* styles.css */
:root {
  --main-blue: rgb(0, 67, 139);
  --main-blue2: rgb(29, 160, 207);
  --circle-lite-blue: rgb(221, 241, 248);
  --circle-lite-blue2: rgb(239, 248, 255);
  --circle-lite-gray: rgb(228, 228, 228);
  --circle-mid-gray: rgb(163, 163, 163);
}

html, body{
  margin: 0;
  padding:0;
  width:100%;
  height:100%;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y:scroll;
}

/* .row{
  margin:0!important;
  padding:0!important;
} */

#navbarNav{
  margin-left:1.20rem;
}

.navbar-toggler{
  border:0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

 .desktop{
  display: block!important;
}

.desktop-flex{
  display: flex!important;
}

.mobile{
  display: none!important;
}

.mobile-flex{
  display: none!important;
}



h1{
  color:var(--main-blue);
  font-weight: 400;
}

h1.header-title,
.index-container h1,
.contactUs-Content h1{
  letter-spacing: 0.35rem;
}


h2{
  color:#333;
  font-weight: 400;
  letter-spacing: .7rem;
}

/* navBar */

a.header-contact-btn{
  border-radius: 20px;
  display: flex;
  background: var(--main-blue2);
  color: #fff;
  text-decoration: none;
  align-items: center;
  padding: .35rem 1rem;
}

a.header-contact-btn img{
  width:20px;
  height: auto;
  margin-right:.5rem;
}

a.header-contact-btn p{
  margin-bottom:0;
}

.bg-gradient{
  background: rgb(29,160,207);
  background: linear-gradient(180deg, rgba(29,160,207,1) 0%, rgba(0,67,139,1) 100%);
}

li.nav-item{
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item:not(:first-child):before{
  content:"・";
  color:#fff;
}

.blog-header-logo{
  margin-left:1rem;
}

.blog-header-logo img{
  width:100%;
  height: auto;
}


/* 首頁 經營理念 */
.plp-row{
  background-image: url("../images/bgdimg_1.jpg");
  background-repeat: none;
  background-size: auto;
}

.plp-col{
  margin:0 auto;
  padding:3rem 5rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(80,114,125,1);
  -moz-box-shadow: 0px 0px 10px 0px rgba(80,114,125,1);
  box-shadow: 0px 0px 10px 0px rgba(80,114,125,1);
}

/* 首頁 代理品牌 */
.brandLogo{
  width:80%;
  margin:0 auto;
  padding: 3rem;
}

.brandLogo-col{
  display: flex;
  justify-content: space-evenly;
}

.brandLogo div a{
  width:30%;
  height:80px;
  display: flex;
  align-items: center;
}

.brandLogo div a img{
  width:100%;
  height:Auto;
}

/* .carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  outline: black;
  background-size: 100%, 100%;
  border-radius: 50%;
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: var(--main-blue2);
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: var(--main-blue2);
} */

.carousel-control-prev-icon {
 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233f6098' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%233f6098' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}

/* 首頁 產品介紹 */
.prd-row{
  background: var(--circle-lite-blue);
}

.prdInfo{
  display: flex;
}

.prdInfo .row.cust-row{
  justify-content: space-evenly;
}

.prdInfo-col a{
  text-decoration: none;
}

.prdInfo-col a img{
  width:100%;
  height:auto;
  margin-bottom:1rem;
}

.prdInfo-col a p{
  font-size: 1.2rem;
  text-align: center;
  color:#777;
  transition: all .3s ease-in-out;
}

.prdInfo-col a:hover p{
  color:var(--main-blue);
}

/* 產品頁面 */

.row.prd-page-row.prd-row-height{
  min-height: 300px;
}

.row.prd-page-row{
  margin-bottom:2rem;
}

.row.prd-page-row.prd-link-row{
  margin-bottom:3rem;
}

.row.prd-page-row.justify-left{
  justify-content: flex-end;
}

.row.prd-page-row.justify-center{
  justify-content: center;
}

.prd-des-col.prd-report ul{
  margin-left:0;
  padding-left:0;
}

.prd-report ul li{
  list-style: none;
  border-radius: 20px;
  margin: .5rem 0;
}

.prd-report ul li:nth-child(odd) {
    background: var(--circle-lite-blue); 
}

.prd-report ul li:nth-child(even) {
    background: var(--circle-lite-gray);
}

.prd-report ul li a{
  padding: .35rem 1rem;
  display: block;
  font-size: 1.2rem;
  color:var(--main-blue);
}

a.infoLink{
  font-size: 1.2rem;
  width:130px;
  height: auto;
  display: flex;
  text-align: center;
  text-decoration: none;
  padding:.5rem 1rem;
  border:2px solid var(--main-blue2);
  background: var(--main-blue2);
  color:#fff;
  border-radius: 30px;
  justify-content: center;
  margin:.5rem 0;
  transition: all .3s ease-in-out;
}

a.infoLink:hover{
  border:2px solid var(--main-blue2);
  background: transparent;
  color:var(--main-blue2);
}

a.factoryLink{
  font-size: 1.6rem;
  width:180px;
  height: auto;
  display: flex;
  text-align: center;
  text-decoration: none;
  padding:.5rem 1rem;
  border:2px solid var(--main-blue2);
  color:var(--main-blue2);
  border-radius: 30px;
  justify-content: center;
  margin:3rem 0;
  transition: all .3s ease-in-out;
}

a.factoryLink:hover{
  border:2px solid var(--main-blue);
  background: transparent;
  color:var(--main-blue);
}

a.moreLink{
  font-size: 1.3rem;
  width:120px;
  height: auto;
  display: flex;
  text-align: center;
  text-decoration: none;
  padding:.25rem 1rem;
  border:2px solid var(--main-blue2);
  color:var(--main-blue2);
  border-radius: 30px;
  justify-content: center;

  margin:0 auto;
  margin-top:1.5rem;
  margin-bottom:0;
  
  transition: all .3s ease-in-out;
}

a.moreLink:hover{
  border:2px solid var(--main-blue);
  background: transparent;
  color:var(--main-blue);
}

.prd-container{
  background: var(--circle-lite-blue);
}

.prd-banner-row{
  width:100%;
  height:400px;
  background: url("../images/prdbak_1.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  margin:0;
  padding:0;
}

.prd-header-col{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.prd-header-row{
  /* background: var(--circle-lite-gray); */
  background: rgb(165, 187, 211);
  background: linear-gradient(0deg, rgba(133, 173, 205, 1) -20%, rgba(255,255,255,1)32%);
}

.prd-header-col img{
  margin-bottom: 2rem;
}

.prd-header-col p{
  font-size: 1.2rem;
  line-height: 1.6;
  color:#333333;
}

.prd-img-col{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.prd-des-col{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.prd-des-col ul{
  margin-left:0;
  padding-left:1rem;
}

.prd-des-col h1{
  font-size: 2rem;
}

.prd-des-col h1 span{
  font-size: 1.5rem;
}

.prd-des-col h3{
  font-size: 1.6rem;
  color:var(--main-blue2);
}

.prd-img-col.prd-img img{
  width:90%;
  height:auto;
}

.prd-img-col.prd-img-2 img{
  width:50%;
}

.prd-img-col.prd-img-3 img,
.prd-img-col.prd-img-70 img{
  width:70%;
}

.prd-img-col.prd-img-100 img{
  width:100%;
}

img.img-fix-wifth{
  width: 80%!important;
}

.prd-circle{
  width:75%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--circle-lite-blue);
  display: block;
  position: absolute;
  z-index: -1;
}



/* footer */
.mainWrapper {
    width: 100%;
}

.contactUs {
    width: 100%;
    padding: 2.5rem .5rem;
    padding-top: 1.5rem;
}

.contactUs-Content {
    width: 100%;
}

.contactusInfo .row img {
    width: 20px;
    height: auto;
}

.contactUs-Content h1{
  color:#fff;
}

.contactUs-Content .contactusInfo h3 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 300;
}

.contactUs-Content .contactusInfo p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 300 !important;
}

.footer {
    padding: 1rem 0;
    width: 100%;
    display: flex;
    background: var(--main-blue);
    align-items: center;
    justify-content: center;
}

.footer p {
    font-size: .7rem;
    font-weight: 300;
    color: #cecece;
    margin-bottom: 0;
}

.footer p a.o-rangeLogo {
    color: #fff;
}




/* for 手機裝置(螢幕尺寸<768px) */
@media screen and (max-width:767px){
  h1{
    font-size: 2rem;
    line-height: 1.6;
  }
  
  h2 {
      color: #333;
      font-size: 1.5rem;
      line-height: 1.5;
      font-weight: 400;
      letter-spacing: .35rem;
  }
  
  #navbarNav{
    margin-left:0;
  }
  
  
  .index-container h2{
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: .2rem;
  }
  
  
  a.moreLink{
    font-size: 1.1rem;
    width:100px;
    height: auto;
    display: flex;
    text-align: center;
    text-decoration: none;
    padding:.15rem .5rem;
    border:2px solid var(--main-blue2);
    color:var(--main-blue2);
    border-radius: 30px;
    justify-content: center;
    margin:0 auto;
    margin-top:.5rem;
    margin-bottom:.5rem;
    transition: all .3s ease-in-out;
  }
  
  .desktop{
    display: none!important;
  }
  
  .desktop-flex{
    display: none!important;
  }
  
  .mobile{
    display: block!important;
  }
  
  .mobile-flex{
    display: flex!important;
  }
  
  /* navBar */
  .blog-header-logo{
    margin-left:0;
    text-align: center;
  }
  
  .blog-header-logo img{
    width:90%;
    height: auto;
    display: block;
    margin:0 auto;
  }
  
  li.nav-item{
    justify-content: center;
    flex-direction:column;
  }
  
  .navbar-nav .nav-item:not(:first-child):before{
    content:"";
    color:#fff;
  }
  
  .dropdown-menu{
    background: transparent!important;
    border:0;
    width:70%;
    text-align: center;
    border-top:1px solid var(--main-blue2);
    border-bottom:1px solid var(--main-blue2);
    border-radius:0;
  }
    
  .dropdown-item{
    color: var(--circle-lite-blue);
  }
  
  .dropdown-item:hover{
    background: transparent;
    color: #fff;
  }
  
  .plp-col {
      margin: 0 auto;
      padding: 1rem;
  }
  
  ol.carousel-indicators{
    margin-bottom:0;
  }
  
  /* 首頁 代理品牌 */
  .brandLogo{
    width:100%;
    margin:0 auto;
    padding: 0;
  }
  
  
  .brandLogo-col.mobile-flex{
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
  }
  
 
  .brandLogo-col.mobile-flex a{
    width:80%;
    height:auto;
    display: flex;
    align-items: center;
    margin-bottom:3rem;
  }
  
  /* 產品介紹 */
  .prdInfo{
    flex-direction: column;
  }
  
  .row.prd-page-row{
    margin:1.5rem 0;
    padding:0;
    margin-bottom:3rem;
  }
  
  .row.prd-page-row.prd-row-height{
    min-height: 300px;
  }
  
  .flex-reverse{
    flex-direction: column-reverse;
  }
  
  .prd-des-col{
    justify-content: flex-start;
  }
  
  .prd-des-col h1{
    font-size: 1.8rem;
    line-height: 1.4;
    /* text-align: center; */
    margin-bottom:1rem;
  }
  
  .prd-des-col h3{
    font-size: 1.4rem;
  }
  
  .prd-header-col img{
    max-width: 80%!important;
    /* margin-bottom: 2rem; */
  }
  
  /* .prd-des-col p{
    text-align: center;
  } */
  
  .prd-img-col{
    margin-bottom:1rem;
  }
  
  .prd-img-col.prd-img{
    margin-bottom:2rem;
  }
  
  .prd-img-col.prd-img img{
    width:80%;
    height:auto;
  }
  
  .prd-img-col.prd-img-2 img{
    width:50%;
  }
  
  .prd-img-col.prd-img-70 img{
    width:70%;
    height:auto;
  }
  
  .prd-img-col.prd-img-100 img{
    width:100%;
  }
  
  .prd-des-col.prd-report{
    margin-bottom:1.5rem;
  }
  
  a.infoLink{
    margin:0 auto;
  }
  
  a.factoryLink{
    font-size: 1.4rem;
    width:150px;
    height: auto;
    display: flex;
    text-align: center;
    text-decoration: none;
    padding:.5rem 1rem;
    border:2px solid var(--main-blue2);
    color:var(--main-blue2);
    border-radius: 30px;
    justify-content: center;
    margin:1.5rem 0;
  }
  
}