.header {
 
}

.header-top{
  position: relative;
  vertical-align: middle;
  background-image: repeating-linear-gradient(135deg,rgba(0,0,0,.12),rgba(0,0,0,.15) 1px,transparent 2px,transparent 2px,rgba(0,0,0,.16) 3px);
  width: 100%;
}

.header-top-body{
  display: flex;
  align-items: center;
  justify-content: space-between;

}



.header-top-left{
  display: flex;
  gap: 20px;
}

.hotline{
  display: inline-flex;
  align-items: center;
  height: 36px; 
  gap: 6px;
  font-size: 14px;
}

.hotline span{
  color: #f00;
  font-weight: 600;
}

.header-social{
  display: flex;
  align-items: center;
}
.header-social a{
  font-size: 18px;
  height: 36px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.header-middle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img{
  width: 100px;

}
.logo span{
  font-size: 22px;
  font-weight: 600;
}

.hotline-middle{
  text-align: center;
}

.hotline-middle p{
  font-weight: 500;
  margin-bottom: 8px;
}
.hotline-middle h2{
  color: #f00;
  font-weight: 700;
}


.header-bottom{
  background: var(--primary-color);
}


.navigation{
  display: flex;
  align-items: center;
}

.nav-links{
  padding: 10px 20px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  transition: .3s;
}

.navigation li:hover .nav-links{
  background: #0935be;
}

.banner{
  position: relative;
  width: 100%;
}

.banner-text{
  width: 100%;
  background: #ff8015;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  padding: 10px;
}


/* ****************************** */
/************ Home ***************/
/* ****************************** */
/* introduce wrapper */


.intro-wrapper{
  padding: 50px 0;
}

.intro-title{
  font-size: 28px;
  text-align: center;
}

.intro-title span:first-child{
  font-weight: 700;
}
.intro-title span:last-child{
  font-weight: 700;
  color: var(--primary-color);
}

.intro-subtitle{
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}



/* Services home */

.background-home{
  background: #fbfbfb;
}
.background-primary{
  background: var(--primary-color);
}

.nav-services{
  display: grid;
  grid-template-columns: repeat(6,1fr);
}


.service-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service-icon{
  max-width: 100%;
}

.service-name{
  font-weight: 600;
}

/* Product-home */

.product-home{
  padding: 50px 0 30px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 50px 30px;
}

.product-content{
  text-align: center;
  position: relative;
}

.product-content .image{
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0,0,0,.5);
  margin-bottom: 10px;
  transition: .5s;
  position: relative;
}
.product-content .image:hover{
  transform: translateY(-10px);
}

.product-title{
  padding: 10px 0;
  font-weight: 500;
  color: var(--primary-color);
}

.product-note{
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
}

.view-more{
  text-align: center;
  margin: 20px 0;
}

.btn-view-more{
  display: inline-block;
  text-transform: capitalize;
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
}

.profile-title{
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
}
.profile-desc{
  padding: 10px 0;
  font-weight: 300;
}

.profile-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}

.button-primary{
  padding: 8px 14px ;
  font-size: 14px;
  color: #fff;
  background: var(--primary-color);
  border-radius: 4px;
}

/* Why */

.why-wrapper{
  padding: 60px 0;
  background: #fff;
}

.why-title{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.why-subtitle{
  color: #fff;
  max-width: 800px;
}


.why-product{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.why-product img{
  max-width: 280px;
}

.why-body{
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}

.why-content{
  margin-bottom: 30px;
  position: relative;
}

.why-content-title{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
}

.why-content-title::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: -60px;
  height: 1px;
  width: calc(100% + 60px);
  background: rgba(0,0,0,0.2);
}

.line-style{
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.2);
  height: 1px;
}
.line-style.one{
  transform: rotate(-60deg);
  top: 133px;
  left: calc(-100% + 148px);;
  width: 240px;
}
.line-style.two{
  transform: rotate(-36deg);
  top: 72px;
  left: -191px;
  width: 145px;
}
.line-style.three{
  transform: rotate(17deg);
  top: 10px;
  left: -182px;
  width: 124px;
}
.line-style.four{
  transform: rotate(54deg);
  top: -54px;
  left: -222px;
  width: 204px;
}


.why-content-list{
  margin-left: 15px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 2;
}

.why-content-list li i{
  color: var(--primary-color);
  margin-right: 8px;
}

.news-home-title{
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 50px;
}

.news-home-body{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px 50px;
  padding-bottom: 30px;
}

.news-home-content{
  display: flex;
  gap: 20px;
}

.news-home-content .icon{
  color: var(--primary-color);
  font-size: 20px;
}

.news-home-name{
  font-weight: 500;
  margin-bottom: 10px;
}

.news-home-desc{
  font-size: 14px;
  font-weight: 300;
}

.partner-title{
  text-align: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}

.partner-title span{
  font-weight: 700;
}

.partner-subtitle {
  text-align: center;
  color: #fff;
  font-weight: 300;
  margin-bottom: 50px;
}

.partner-grid{
  padding: 50px 0;
}

.partner__item{
  height: 100%;
  padding: 0 8px;
}

.partner__img {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px #eee;
  height: auto !important;
}

.partner-grid-one{
  display: flex;
  justify-content: center;
}
.partner-grid-two{
  display: flex;
  justify-content: center;
  margin-top: -40px;
}

.partner-logo{
  width: 16.66667%;
  float: left;
  text-align: center;
  position: relative;
}

.partner-rotate{
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  background-color: #fff;
  border-radius: 6px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 99;
  cursor: pointer;
}

.partner-rotate img{
  width: 160px;
  height: 114px;
  transform: rotate(-45deg);
  position: absolute;
  top: 16px;
  left: -8px;
}


/* Why */
.why-title-2{
	padding: 20px 0;
	text-align: center;
	color: var(--primary-color);
	display: inline-block;
	border-bottom: 1px solid #eee;
	position: relative;
	font-weight: 700;
}

.why-title-2::after{
	content: "";
	position: absolute;
	bottom: -2px;
	left: 40%;
	width: 20%;
	height: 3px;
	background: var(--primary-color);
}

.why-desc{
	max-width: 60%;
	margin: 20px auto 40px;
	font-weight: 300;
	text-align: center;
	line-height: 1.5;
}


.why-padding{
  padding-bottom: 120px;
}
.why-content-2{
  position: relative;
}

.slick-why-item{
	padding: 20px 10px;
	text-align: center;
	position: relative;
}

.slick-why-item .picture{
	width: 125px;
	height: 125px;
	display: inline-block;
    border: 2px #0178bb solid;
    border-radius: 10px;
    text-align: center;
    position: relative;
    background: #f9f9f9;
}

.slick-why-item .picture::after{
	content: "";
	position: absolute;
	bottom: -26px;
	left: 50%;
	transform: translateX(-50%);
	border-style: solid;
	border-width: 12px 16px;
	border-color: #0178bb transparent transparent transparent;
}

.slick-why-item .picture img{
  width: 40px;
	display: inline-block;
	left: 50%;
	top: 50%;
	cursor: pointer;
	position: absolute;
	transform: translate(-50%,-50%);
}

.slick-why-item .picture .number{
	display: inline-flex;
	align-items: center;
	justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: #0178bb;
    color: #ffffff;
    border-radius: 50%;
    padding: 6px 6px;
    font-weight: 600;
    position: absolute;
    right: -15px;
    top: -20px;
}

.slick-why-item .info .title{
	font-size: 19px;
	color: #333;
	font-weight: 700;
	position: relative;
	margin-top: 20px;
}

.slick-why-item .info .title::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	width: 30px;
	height: 2px;
	background: #0178bb;
	transform: translate(-50%,-50%);
}

.slick-why-item .info .desc{
	margin-top: 20px;
	font-weight: 300;
	padding: 0 6px;
	line-height: 1.6;
}

.why-bg{
	position: absolute;
	top: 80px;
	left: 0;
	height: 100%;
	width: 100%;
	border: 2px #0178bb solid;
	border-radius: 40px;
	z-index: -9;
}

.why-bg p{
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translate(-50%,-50%);
	font-weight: 300;
	text-transform: uppercase;
	color: #fff;
	padding: 10px 80px;
  margin: 0;
  background: url('../imgs/why/why_bg.webp');
	background-repeat: no-repeat;
	background-size: contain;
}


.price-service-item{
	background: #f3fdf8;
	border: 1px solid var(--primary-color);
	border-radius: 10px;
	padding: 40px 0px;
	margin: 0 20px;
}

.price-service-head{
	background: #fff;
	width: 90%;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	text-align: center;
	box-shadow: 1px 2px 5px #ddd;
	padding: 16px 0;
	margin-bottom: 30px;
}
.price-service-head p{
	margin-bottom: 0;
	color: #000;
	font-size: 24px;
	font-weight: 600;
  margin-bottom: 8px;
}

.price-service-icon{
	height: 28px;
	font-size: 12px;
	color: #079365;
}

.price-service-subitem{
	padding:10px 20px;
}
.price-service-subitem span{
	color: #333;
	margin-left: 4px;
}
.price-service-subitem i{
	color: green;
}
.price-service-subitem i.fa-times{
	color: #900000;
}

.price-service-item .price-service-subitem:nth-child(even){
	background: #fff;
}

.price-service-number{
	font-size: 30px;
	color: #079365;
	font-weight: 700;
	text-align: center;
	margin: 24px 0;
}

.price-service-btn{
	border: 1px solid #079365;
	border-radius: 30px;
	background: #fff;
	padding: 6px 30px;
	margin: 20px 0;
	color: #079365;
	font-weight: 500;
  transition: .3s;
}
.price-service-btn:hover{
	opacity: 0.9;
  background: var(--primary-color);
  color: #fff;
}

/* 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: var(--primary-color);
}
.ft-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 10px);
  background-color:var(--primary-color);
  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;
}

.copyright{
  text-align: center;
  padding: 10px;
  color: #fff;
  font-weight: 300;
  background: #282b39;
  font-size: 12px;
}
.copyright a{
  color: #fff;
  font-weight: 300;
  font-size: 12px;
}

.footer-contact{
  background-image: url(../imgs/bn-ft.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 25px 20px;
}

.footer-newsletter{
  max-width: 50%;
  padding: 30px;
  background: #fff;
}

.footer-newsletter h4{
  text-transform: uppercase;
  font-weight: 600;
}

.footer-newsletter p{
  margin: 20px 0;
  font-size: 15px;
}

.form-newsletter{
  position: relative;
}

.form-newsletter input{
  width: 100%;
  height: 50px;
  padding-left: 20px;
}
.form-newsletter input::placeholder{
  text-transform: uppercase;
  font-size: 14px;
}

.btn-newsletter{
  position: absolute;
  right: 0;
  height: 50px;
  padding: 0 10px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  border: none;
  outline: none;
}
.btn-newsletter i{
  margin-left: 4px;
}


.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;
}


/* introduce */

.box-price-list{
  padding-top: 60px;
}

.app-introduce{
  margin-bottom: 100px;
}
.introduce-title{
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.introduce-text{
  font-size: 18px;
  color: rgba(0,0,0,0.8);
  line-height: 2;
  text-align: justify;
}

.benefit-content{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding: 30px 0;
}

.benefit-item{
  padding: 20px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 0 30px #d2e1e9;
  border-radius: 10px;
}

.benefit-item .image{
  width: 110px;
  margin: auto;
}

.benefit-item h3{
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.benefit-item p{
  position: relative;
}
.benefit-item p::before{
  content: '';
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 100%);
}


.price-item-content{
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  margin: 20px 20px;
}

.price-list-head, .price-list-bottom{
  padding: 20px;
  background: #ed6338;
  color: #fff;
}

.price-list-head p{
  margin-bottom: 5px;
  font-size: 14px;
}
.price-list-head h5{
  text-transform: uppercase;
  font-size: 20px;
}


.price-list-main{
}

.price-list-main li i{
  color: #67c87c;
  font-size: 20px;
  margin-right: 10px;
}

.price-list-main li{
  padding: 14px 20px;
  font-weight: 600;
}

.price-list-main li:nth-child(even){
  background: #f3f3f3;
}


.price-list-details{
  padding: 20px 25px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-list-text{
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.price-list-text .left{
  color: #025dcc;
}

.price-list-text .right{
  color: #cc0202;
}

.price-list-text .old{
  color: #777;
  text-decoration: line-through;
}

.price-list-bottom{
  text-align: center;
}

.price-list-bottom p{
  margin-bottom: 0;
  font-size: 14px;
}

.price-list-bottom h5{
  margin: 4px 0;
}


/* App introduce */

.app-intro-row{
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.app-intro-img{
  text-align: center;
}
.app-intro-img img{
  max-width: 360px;
}

.app-intro-title{
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.app-intro-desc{
  line-height: 1.8;
  /* max-width: 500px; */
}

.section-web{
  background-image: url(../imgs/bg-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 80px 0;
}

.service-title{
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 34px;
  margin-bottom: 60px;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 30px 50px;
}

.service-grid-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-grid-item .icon{
  width: 60px;
  height: 60px;
  background: var(--primary-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.service-grid-item .icon img{
  width: 40px;
}

.service-grid-item .title{
  font-weight: 700;
  margin: 20px 0;
  font-size: 20px;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.service-grid-item .desc{
  text-align: center;
  font-weight: 300;
  font-size: 14px;
}


.live-demo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,40px);
  background: var(--primary-color);
  color: #fff;
  font-size: 13px;
  transition: .4s ease;
  padding: 6px 14px;
  display: inline-block;
  opacity: 0;
}
.link-demo:hover .live-demo{
  transform: translate(-50%,-50%);
  opacity: 1;
}


.wrapper-content{
  padding: 40px 0;
}

.content-text{
  line-height: 1.8;
}

.wrapper-title{
  position: relative;
  padding-left: 20px;
}

.wrapper-title::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: #ff8015;
}

.wrapper-title h2{
  font-size: 28px;
  color: #011e4c;
  font-weight: 700;
}

.content-title{
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.content-list{
  position: relative;
  padding-left: 20px;
  list-style: disc;
}

.content-list li{
  margin-bottom: 10px;
  line-height: 1.8;
}

.content-img{
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
}

.content-img i{
  display: block;
  padding-top: 10px;
}