
/* Main */

.news-product{
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.news-pd-content .image{
    position: relative;
    overflow: hidden;
}

.news-pd-content img{
    transition: 1s;
    cursor: pointer;
}

.news-pd-content img:hover{
    transform: scale(1.1);
}


.news-pd-name{
    font-weight: 600;
    margin-top: 10px;
    color: #23408c;
}

.brand-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}

.brand-nav-item{
  padding: 6px 0;
  margin: 0 20px;
  display: inline-block;
  color: #23408c;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: .3s;
}
.brand-nav-item b{
  font-weight: 600;
}
.brand-nav-item.active, .brand-nav-item:hover{
  border-bottom: 2px solid #23408c;
}

.brand-profile{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.brand-pd-content{
  position: relative;
  overflow: hidden;
}

.brand-pd-content .image{
  height: 100%;
}
.brand-pd-content .image img{
  height: 100%;
  object-fit: cover;
}


.start-bg-top{
  background-position-x: 43%;
  background-position-y: bottom;
  background-image: url(../imgs/bg-start-top.svg);
  background-size: 4000px 70px;
  height: 70px;
  width: 100%;
  transform: scaleY(-1) translateY(-1px);
}
.start-bg-bottom{
  background-position-x: 55%;
  background-position-y: bottom;
  background-image: url(../imgs/bg-start-top.svg);
  background-size: 4000px 70px;
  height: 70px;
  width: 100%;
}

.start-now{
  background-color: #23408c;
  padding: 60px 0;
  color: #fff;
  position: relative;
}

.start-shape-left{
  position: absolute;
  top: 0px;
  left: 0;
  width: 100px;
  height: 240px;
  background-image: url(../imgs/start-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.start-shape-right{
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 150px;
  height: 240px;
  background-image: url(../imgs/start-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.start-title{
  font-size: 44px;
  font-weight: 700;
  font-family: system-ui;
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

.line-title-2{
  background-image: url(../imgs/line-span-2.svg);
}

.start-desc{
  margin: 20px 0 40px;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.start-btn{
  display: inline-block;
  margin-bottom: 30px;
  padding: 8px 60px;
  background: #fff;
  border-radius: 30px;
  color: #23408c;
  font-weight: 600;
  text-transform: uppercase;
}

.start-more{
  display: inline-block;
  border-bottom: 2px solid #fff;
  font-size: 20px;
}


.customer-main{
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 20px;
}

.customer-item{
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


.why-container{
  margin: 0 40px;
}

.why-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 20px;
  margin-top: 40px;
}

.why-item-title{
  gap: 20px;
  display: flex;
  align-items: center;
  min-height: 72px;
}
.why-item-title .icon{
  width: 60px;
}
.why-item-title .name{
  font-weight: 600;
  font-size: 20px;
}

.why-item-desc{
  margin-top: 10px;
  font-size: 15px;
}

.why-item-desc b{
  font-weight: 600;
}



/* Gallery */

.grid-gallery{
  display: grid;
  grid-template-columns: repeat(3,1fr);
}

.gallery-image{
  position: relative;
  overflow: hidden;
}

.gallery-image img{
  cursor: pointer;
  transition: .8s;
  height: 100%;
  object-fit: cover;
}
.gallery-image img:hover{
  transform: scale(1.05);
}


.price-section{
  background: url(../imgs/bg-price.jpg) no-repeat;
  background-size: cover;
}

.price{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  margin: 50px 0;
}

.price-content{
  background: #fff;
  text-align: center;
  border: 1px solid #ff8015;
}

.price-head{
  background: #d90000;
  color: #fff;
  padding: 8px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.price-money{
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.price-money .old{
  text-decoration: line-through;
}
.price-money .new{
  font-size: 26px;
  font-weight: 600;
}
.price-info{
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

.price-bottom{
  background: #ff5722;
  padding: 8px;
  text-transform: uppercase;
}
.price-bottom a{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-weight: 600;
  color: #fff;
}
.price-bottom .icon,
.icon-hotline{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.price-bottom .icon::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: scale 3s linear infinite;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.icon-hotline{
  display: none;
}
.icon-hotline::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: scale2 3s linear infinite;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid #23408c;
}
@keyframes scale {
  0%{transform: scale(1); opacity: 0.4;}
  50%{transform: scale(2); opacity: 1;}
  100%{transform: scale(1); opacity: 0.4;}
}

@keyframes scale2 {
  0%{transform: scale(1); opacity: 0.2;}
  50%{transform: scale(1.4); opacity: 1;}
  100%{transform: scale(1); opacity: 0.2;}
}


.services{
  margin: 50px 0;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.services-title{
  font-weight: 600;
  text-transform: uppercase; 
  font-size: 18px;
  color: #23408c;
}

.service-list{
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}
.service-list li{
  margin: 8px 0;
}


/* Footer */

.footer{
    overflow: hidden;
    position: relative;
    padding-top: 100px;
  }
  
  .footer-top{
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
  }
  .footer-info{
    padding-top: 30px;
  }
  
  
  .footer-logo{
    text-align: center;
  }
  
  .footer-logo img{
    max-width: 100px;
  }
  
  .footer-logo p{
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .footer-logo h3{
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #184587;
  }
  
  .footer-intro{
    padding: 10px 0 20px;
    text-align: center;
  }
  
  .footer-intro h4{
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  
  
  .footer-intro p{
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .footer-intro h5{
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
  }
  .footer-intro h6{
    font-size: 13px;
    font-weight: 300;
    margin-top: 20px;
  }
  
  .ft-logo{
    display: flex;
    align-items: center;
  }
  .ft-logo a{
    display: block;
    width: 50px;
    margin-right: 10px;
  }
  
  .ft-logo .logo__text{
    color: #fff;
  }
  
  .ft-about{
    padding: 4px 20px 10px 0;
    font-size: 14px;
  }
  
  .ft-social{
    display: flex;
    align-items: center;
  }
  .ft-social li{
    margin-right: 6px;
  }
  .ft-social li a{
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
  }
  .ft-social li a.fb{
    background: #1e61a9;
  }
  .ft-social li a.you{
    background: #d33b3b;
  }
  .ft-social li a.tik{
    background: #000;
  }
  
  .ft-title{
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 0 20px;
    position: relative;
    display: inline-block;
    color: #23408c;
  }
  .ft-title::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 10px);
    background-color:#23408c;
    width: 30px;
    height: 2px;
  }
  
  .ft-paragraph{
    margin-bottom: 10px;
    font-size: 15px;
  }
  .ft-paragraph span{
    font-weight: 600;
  }
  
  .ft-paragraph a{
    transition: .3s;
    border: 1px solid transparent;
  }
  .ft-paragraph a:hover{
    border-bottom: 1px solid #555;
  }
  
  .ft-shape-1{
    position: absolute;
    width: 200px;
    right: -120px;
    bottom: -16px;
    opacity: 0.5;
    z-index: -9;
  }
  .ft-shape-2{
    position: absolute;
    width: 200px;
    left: 0;
    bottom: -10px;
    z-index: -9;
    opacity: 0.8;
  }
  .ft-shape-3{
    position: absolute;
    width: 300px;
    right: 0;
    bottom: 0px;
    z-index: -9;
    opacity: 0.5;
  }

  .ft-shape-4{
    position: absolute;
    width: 300px;
    left: -20px;
    bottom: 0px;
    z-index: -99;
    opacity: 0.5;
  }
  .customer-main{
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 20px;
  }
  

  .intro-content{
    margin-top: 20px;
    margin-right: 20px;
  }

  .intro-desc{
    margin-bottom: 10px;
  }
  .intro-desc span{
    font-weight: 600;
  }

  .intro-desc b{
    font-weight: 600;
    color: #000;
  }


.procedure{
  margin: 50px auto;
  max-width: 900px;
}

.procedure-content{
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  cursor: pointer;
}

.procedure-index{
  text-align: center;
  position: relative;
  transform: translateY(-10px);
}

.procedure-index::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 1px;
  height: 50px;
  background: #333;
}

.procedure .procedure-content:last-child .procedure-index::after{
  background: transparent;
}


.procedure-index .text{
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  font-family: system-ui;
}

.procedure-index .number-brand{
  font-weight: 500;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 10px;
  background: #23408c;
  color: #fff;
}

.procedure-text{
  padding: 30px;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: .3s;
  flex-grow: 1;
}

.procedure-text:hover{
  background: #fff;
  box-shadow: 0 0 10px #eee;
}

.procedure-title{
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
  color: #23408c;
  font-family: system-ui;
}


.brand-main{
  margin: 50px 0 10px;
}
.brand-main .image{
  margin-bottom: 10px;
}

.box-content{
  display: none;
}
.box-content.box-profile{
  display: block;
}