/*

------------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio


/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
	position: relative;
	font-family: "Microsoft YaHei", "Microsoft JhengHei", "Georgia", "Xin Gothic", "Hiragino Sans GB", "Droid Sans Fallback", "STHeiti",  sans-serif;
	z-index:-9;
	min-height:100%;
}

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}


a{
	color: #333;
	text-decoration: none;
	-webkit-backface-visibility: hidden;
}


a:hover,a:active {
    text-decoration: none;
    color: #ff695f;
}


.navbar{
	--bs-navbar-color:#333;
}



.fs-7{
	font-size:15px;
}
.fs-8{
	font-size:14px;
}
.fs-9{
	font-size:13px;
}
.fs-10{
	font-size:12px;
}
.lh-md{
	line-height:1.8;
}






/* 文本溢出 */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.truncate-clip { text-overflow: clip; }
.truncate-ellipsis { text-overflow: ellipsis; }
.truncate-line-1 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.truncate-line-2 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.truncate-line-3 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.truncate-line-4 { display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }





.section {
	padding:4rem 0;
}

.section-heading{
	position: relative;
	text-align: center;
	margin-bottom: 3rem;
}

.section-heading h6 {
	color: #797878;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.5em;
	letter-spacing: 4px;
}

.section-heading h2 {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: "Microsoft JhengHei";
}


.section-heading p {
	line-height: 1.5em;
	letter-spacing: 1px;
	font-family: "Microsoft JhengHei";
}



.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-blue-button-hover a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-blue-button-hover a:hover {
  background-color: #ff695f;
}

.main-red-button a {
  display: inline-block;
  background-color: #ff695f;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button-hover a {
  display: inline-block;
  background-color: #ff695f;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
}

.main-red-button-hover a:hover {
  background-color: #03a4ed;
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #ff695f;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}





/* 
---------------------------------------------
keyframes
--------------------------------------------- 
*/

.item-bounce {
  -webkit-animation: bounce 3s infinite ease-in-out;
  animation: bounce 3s infinite ease-in-out;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.item-round {
  -webkit-animation: round 3s infinite linear;
  animation: round 3s infinite linear;
}

@-webkit-keyframes round {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes round {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.item-zoom-inout {
  -webkit-animation: zoom-inout 3s infinite ease-in-out;
  animation: zoom-inout 3s infinite ease-in-out;
}

@-webkit-keyframes zoom-inout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-inout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}



/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #ff695f;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #ff695f;
    border-radius: 50%;
}




/* 
---------------------------------------------
header
--------------------------------------------- 
*/
.header{
	border-bottom:1px solid #eee;
	box-shadow: 0 1px 20px #673ab710;
	background-color:#ffffffde;
}


/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner {
	position: relative;
	background-image:url('../../images/bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
}

.main-banner  .banner-text{
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: flex-start;
	height:100%;
}
.main-banner .banner-text span {
	background: #2D50CE;
	color: #fff;
	border-radius: 50px;
	padding:5px 15px;
}

.main-banner   .banner-text h2 {
  font-size: 50px;
  font-weight: 700;
  color: #1F2A59;
  line-height: 72px;
  margin-top:1rem;
}

.main-banner   .banner-text p {
	margin-bottom: 0px;
    line-height: 2;
    color: #555;
}



.main-banner .banner-image{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.main-banner  .banner-image::after {
	position: absolute;
	content: "";
	top: 48px;
	left: 36px;
	width: 92%;
	height: 92%;
	background-image: url('../../images/circle.png');
	background-repeat: no-repeat;
	z-index: -1;
}



.button_style2 {
	position: relative;
	display:inline-block;
	margin-top:1rem;
	
	border-radius: 6px;
	z-index: 1;
	border: none;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
	
	padding:0.6rem 4rem;
	background-color:#2D50CE;
}
.button_style2:active {
	transform: scale(0.96);
}
.button_style2:before, .button_style2:after {
	position: absolute;
	content: "";
	width: 100%;
	left: 50%;
	bottom: 0%;
	height: 100%;
	transform: translateX(-50%);
	z-index: -1;
	background-repeat: no-repeat;
}
.button_style2:hover:before {
	top: -70%;
	background-image: radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, transparent 20%, #2D50CE 20%, transparent 30%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, transparent 10%, #2D50CE 15%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%);
	background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
	background-position: 50% 125%;
	animation: greentopBubbles 0.6s ease;
}
@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
.button_style2:hover::after {
	bottom: -70%;
	background-image: radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, transparent 10%, #2D50CE 15%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%), radial-gradient(circle, #2D50CE 20%, transparent 20%);
	background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
	background-position: 50% -125%;
	animation: greenbottomBubbles 0.6s ease;
}
@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}


.banner-slogon{
	padding:3rem 0;
	min-height:90px;
	text-align:center;
	background: linear-gradient(0, #fbfbfb, #cac9ff);
	border-bottom: 1px solid #cac9ff;
}
.banner-slogon .text{
	font-size: 32px;
    font-weight: bold;
    font-family: Microsoft JhengHei;
    color: #673AB7;
}
.banner-slogon .text strong{
	color:#E91E63;
}



.banner-images{
	position: relative;
}



.banner-images::after{
	content: '';
	background-image: url(../../images/shape-1.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	right: 120px;
	bottom: 0;
	width: 169px;
	height: 149px;

	-webkit-animation: zoom-inout 3s infinite ease-in-out;
	animation: zoom-inout 3s infinite ease-in-out;
}



.card-body-contact{
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
	align-items: center;
}

.card-body-contact .image{
	max-width:160px;
}
.card-body-contact h6{
	margin-top:1rem;
	font-size: 15px;
    font-weight: 500;
}
.card-body-contact ul{
	
	padding:0;margin:10px 0 0;list-style:none;
	text-align:left;
}
.card-body-contact ul li{
	font-size: 14px;
	color:#666;
	line-height:2;
}
/* 
---------------------------------------------
1
--------------------------------------------- 
*/

.part-whatgeo{
	position: relative;
}

.part-whatgeo ul li{
	margin-bottom:2rem;
}

.part-whatgeo ul li h4{
	font-weight:bold;
	font-family: "Microsoft JhengHei";
}

.part-whatgeo ul li p{
	color:#111;
	font-size:1rem;
	line-height:1.8;
}









/* 
---------------------------------------------
Services Style
--------------------------------------------- 
*/


.our-services {
	position: relative;
	
	background-image: url(../../images/section-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.our-services .item {
	position: relative;

	text-align: center;
	margin: 15px;
	border-radius: 20px;
	background-color: #fff;
	padding: 30px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
	transition: all .5s;
	
	display: flex;
    flex-direction: column;
    align-items: center;
}



.our-services .item .image {
	width:100px;
	height:100px;
	overflow:hidden;
}
.our-services .item .image img{
	object-fit: cover;
}

.our-services .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top:1rem;
  line-height: 30px;
}

.our-services .item p {
  font-size:14px;
  margin-bottom:0;
}

.our-services .owl-dots {
  text-align: center;
  margin-top: 40px;
}
.our-services .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #ff695f;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 5px;
}

.our-services .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}


.part-solution{}

.part-solution .item{
	display: flex;
    flex-direction: column;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
	margin-bottom:1rem;
	padding:1rem;
}
.part-solution .item .top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.part-solution .item .top .icon{
	width:80px;height:80px;
	background-color:#673ab710;
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border-radius: 10px;
}

.part-solution .item .top .icon i{
	font-size:40px;
	color:#673ab75;
}
.part-solution .item .top .number{
	font-size:50px;
	color:#e91e63;
	font-family:STCaiyun;
}


.part-solution .item h6{
	font-size: 1.25rem;
	font-weight:bold;
	color: #1F2A59;
}

.part-solution .item p{
    margin-bottom: 0px;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
}










/* 
---------------------------------------------
About
--------------------------------------------- 
*/

.about-us {
}


.about-us .fact-item .icon {
  width: 45px;
  height: 45px;
}

.about-us .fact-item {
  margin-top: 45px;
}

.about-us .fact-item .count-digit {
  font-size: 48px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top: 5px;
}

.about-us .fact-item .count-title {
  font-size: 15px;
  color: #ff695f;
}

.about-us .fact-item p {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}


.our-games {
	position: relative;
}
.our-games .card-game{
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    transition: all .5s;
	border-color: #eee;
}

.card-game .card-catgegory{
	background-color:#ffffff20;
	border-radius: 5px 0 10px 0;
	color:#fff;
	padding:6px 12px;
}


/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/


.our-portfolio {
	position: relative;
}
.our-portfolio .item{
	text-align:center;
}

.our-portfolio .item .thumb {
	position: relative;
	background-color:#e1e6ff;
	padding:6px;
	border-radius: 20px;
	 box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.our-portfolio .item .thumb img {
	border-radius: 20px;
	width:100%;height:100%;
	object-fit:cover;
}


.our-portfolio .item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin-top:1rem;
  line-height: 30px;
}

.our-portfolio .item p {
  font-size:14px;
  margin-bottom:0;
}



.owl-portfolio .owl-nav {
  position: absolute;
  top: 42%;
  width: 100%;
}

.owl-portfolio .owl-nav .owl-prev {
  position: absolute;
  left: 25px;
}

.owl-portfolio .owl-nav .owl-next {
  position: absolute;
  right: 30px;
}

.owl-portfolio .owl-nav .owl-prev span {
    color: transparent;
}

.owl-portfolio .owl-nav .owl-prev span:hover::after{
  opacity: 1;
}

.owl-portfolio .owl-nav .owl-prev span:after {
  width: 46px;
  height: 46px;
  background-color: #ff695f;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #fff;
  content: '«';
  font-size: 22px;

  transition: all .5s;
  opacity: 0.5;
}

.owl-portfolio .owl-nav .owl-next span {
    color: transparent;
}

.owl-portfolio .owl-nav .owl-next span:hover::after{
  opacity: 1;
}

.owl-portfolio .owl-nav .owl-next span:after {
  width: 46px;
  height: 46px;
  background-color: #ff695f;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #fff;
  content: '»';
  font-size: 22px;

  transition: all .5s;
  opacity: 0.5;
}

.owl-portfolio .owl-dots {
  text-align: center;
  margin-top: 40px;
}
.owl-portfolio .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #ff695f;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 5px;
}

.owl-portfolio .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

/* 
---------------------------------------------
Pricing
--------------------------------------------- 
*/


.pricing-tables {
	z-index: 2;

	background-image:url('../../images/bg3.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.pricing-tables .item {
	position: relative;
	z-index: 2;
	background-color:#ffffffcc;
	padding: 60px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
	border-radius: 15px;
}

.pricing-tables .item h5 {
	font-weight: 500;
    font-size: 36px;
    line-height: 48px;
    padding: 5px 0px;
    color: #18181B;
}

.pricing-tables .item h6 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color:#682FFF;
	
}

.pricing-tables .item span {
	font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #111111;
}

.pricing-tables .item ul {
  margin-top: 30px;
}

.pricing-tables .item ul li {
  display: block;
  color: #111;
  margin-bottom: 20px;
}

.pricing-tables .item ul li span{
	display:inline-block;
	width:20px;height:20px;
	border-radius:50%;
	background-color:#eee;
	text-align:center;
	line-height:20px;
	font-weight:bolder;
}
.pricing-tables .item ul li span i{
	line-height:1;
	font-size:20px;
}
.pricing-tables .item ul li span i.bi-check{
	color:#e91e63;
}


.pricing-tables .item .main-blue-button {
  margin-top: 40px;
}

.pricing-tables .first-item {
  background-image: url(../../images/first-plan-bg.png);
}

.pricing-tables .second-item {
  background-image: url(../../images/second-plan-bg.png);
}

.pricing-tables .third-item {
  background-image: url(../../images/third-plan-bg.png);
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.part-about{}

.part-about .image{
	
    border: 10px solid #0075ff1a;
    position: relative;
    z-index: 100;
    border-radius: 0px 20px;
}

.part-about ul.list{
    margin: 0;
    padding: 0;
}
.part-about ul.list li{
	
	list-style: none;
    display: flex;
    align-items: center;
	font-weight:700;
	line-height: 2;
	margin-top:1rem;
}

.part-about ul.list li i {
    width: 40px;
    height: 40px;
    background-color: #097afd14;
    color: #e91e63;
    border-radius: 0px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-shrink: 0;
	margin-right:1rem;
}

/* 
---------------------------------------------
contact
--------------------------------------------- 
*/
.part-news{}

.part-news .card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  line-height: 30px;
}

.part-news .card-text {
  font-size:14px;
  margin-bottom:0;
}

.part-news .card-body, .part-news .card-body-box {
	height:100%;
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
}


.part-news .card-footer{
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


.part-news .card-footer .keywords{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.part-news .card-footer small.datetime{
	flex-shrink: 0;
}





/* 
---------------------------------------------
contact
--------------------------------------------- 
*/


.part-customers{
	background-image:url('../../images/bg-customers.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.part-customers .item{}


.part-customers .item .thumb{
	background-color:#fff;
	padding:5px;
	border-radius:10px;
}
.part-customers .item .thumb img{
	min-height:88px;
	object-fit: cover;
}

.part-customers .item h6{
	color:#fff;
	text-align:center;
	margin-top:1rem;
	font-weight:bold;
}





/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-dec img {
  position: absolute;
  z-index: 1;
  width: 459px;
  height: 702px;
  right: 0;
  bottom: -400px;
}

.contact-left-dec img {
  position: absolute;
  z-index: 1;
  width: 174px;
  height: 319px;
  left: 0;
  top: 120px;
}

.contact-us {
  z-index: 2;
  position: relative;
  padding-top: 120px;
  margin-top: 0px;
}



.contact-us #baidu-map {
	width:100%;
	height:360px;
	border-radius: 23px;
	position: relative;
	z-index: 2;
}

.contact-us .info {
  margin-top: 30px;
  position: relative;
  z-index: 5;
  display: inline-flex;
}

.contact-us .info span {
  opacity: 1;
  display: inline-flex;
  margin-right: 30px;
}

.contact-us .info span i {
  float: left;
  width: 46px;
  height: 46px;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  background: rgb(255,104,95);
  background: linear-gradient(105deg, rgba(255,104,95,1) 0%, rgba(255,144,104,1) 100%);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  margin-left: 30px;
  margin-right: 15px;
}

.contact-us .info span a {
  color: #ff685f;
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  text-transform: none;
}

form#contact {

  position: relative;
  z-index: 2;
  background-image: url(../../images/contact-form-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  padding: 60px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid #9bdbf8;
  border-top: none;
  border-left: none;
  border-right: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 0px;
  margin-bottom: 15px;
}

form#contact input::placeholder {
  color: #afafaf;
}

form#contact button {
  display: inline-block;
  background-color: #ff695f;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  margin-top:10px;
  border: none;
  outline: none;
  transition: all .3s;
}

form#contact button:hover {
  background-color: #03a4ed;
}

form#contact textarea {
	background-color: transparent;
	border: 1px solid #9bdbf8;
}

form#contact textarea::placeholder {
  color: #afafaf;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/



footer.footer {
	position: relative;
	padding:4rem 0;
	
	background-image:url('../../images/bg-footer.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	
}

footer .footer-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 30px;
}

footer .about .logo img {
	width: 89px;
	margin-bottom: 30px;
}

footer .about a {
  color: #afafaf;
  font-weight: 300;
}

footer .about ul {
  margin-top: 20px;
}

footer .about ul li {
  display: inline-block !important;
  margin-right: 5px;
}

footer .about ul li a {
  width: 32px;
  height: 32px;
  background-color: #03a4ed;
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  line-height: 32px;
  font-size: 15px;
}

footer .about ul li a:hover {
  background-color: #ff695f;
}

footer .footer-item ul li {
  display: block;
  margin-bottom: 12px;
}

footer .footer-item ul li:last-child {
  margin-bottom: 0px;
}

footer .footer-item ul li a {
  font-size: 15px;
  color: #afafaf;
  transition: all .3s;
}

footer .footer-item ul li a:hover {
  color: #ff695f;
}

footer .footer-item p {
  font-size: 15px;
  color: #afafaf;
  margin-top: -5px;
}

footer .footer-item form {
  background-color: #03a4ed;
  height: 46px;
  border-radius: 23px;
  position: relative;
  margin-top: 15px;
}

footer .footer-item form input {
  line-height: 46px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  padding: 0px 20px;
  outline: none;
}

footer .footer-item form input::placeholder {
  color: #fff;
}

footer .footer-item form button {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #fff;
  background-color: transparent;
  border: none;
  outline: none;
}

.copyright{
	background-color:#00194C;	
	padding:1rem 0;

	text-align: center;
	color: #eee;
	font-weight: 300;
	font-size:14px;
}

.copyright a {
	color: #ccc;
}




.heroes-area {
    padding: 4rem 0;
	background-image: linear-gradient(45deg, #eaf6ff, #fff3f2);

}

.heroes-area h1 {
    font-size: 50px;
    font-weight: 700;
    color: #233253;
}

.heroes-area p{
    color: #777777;
    font-size: 12px;
}




.part-whydeepseek{

}


.part-whydeepseek .item{
	text-align:center;
	background-color:#fff;
	padding:1rem;
	background: linear-gradient(#f4f7ff, #faf6ff);
	border-radius:10px;
	height:100%;
	
	box-shadow: 0 0 8px #673ab763;
}
.part-whydeepseek .item h5{
	font-size: 1.25rem;
	font-weight:bold;
	color: #1F2A59;
	margin-bottom:1rem;
}

.part-whydeepseek .item p{
    margin-bottom: 0px;
    font-weight: 400;
	font-size:15px;
    line-height: 1.8;
	text-align:left;
    color: #555;
}



.part-deepseek{
	position: relative;
	background-image:url('../../images/bg1.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding-bottom:16rem;
}



.part-deepseek .item{
	padding:1rem;
	background-color:#FFE3E3;
	
	border-radius:10px;
	height:100%;
	
}
.part-deepseek .item .icon-box{
	width:80px;height:80px;
	border-radius:10px;
	background-color:#fff;

	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.part-deepseek .item .icon-box i{
    font-size: 40px;
    text-align: center;
	color:#673ab7;
}

.part-deepseek .item h5{
	font-size: 1.25rem;
	font-weight:bold;
	margin-top:1rem;
	color: #1F2A59;
}

.part-deepseek .item p{
    font-weight: 400;
	font-size:15px;
    line-height: 1.8;
	text-align:left;
    color: #555;
}

.part-deepseek .item ul{
	margin:0;
	padding-left:1rem;
}


.part-deepseek .item ul li{
	font-size:14px;
    line-height: 1.8;
    color: #555;
}


.part-deepseek .row .col-md-6:nth-child(2) .item {
    background: #D2D7FF;
}
.part-deepseek .row .col-md-6:nth-child(3) .item{
    background: #FEC;
}
.part-deepseek .row .col-md-6:nth-child(4) .item {
    background: #DFC6FF;
}


.part-deepseek .row .col-md-6:nth-child(odd) .item {
	transform: translateY(60px);
}


.part-industrie{
	position: relative;
	background-image:url('../../images/section-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}


.part-industrie .item{
	padding:1rem;
	background-color:#fff;
	border-radius:10px;
	height:100%;
	text-align:center;
	
}

.part-industrie .item i{
    font-size: 40px;
    text-align: center;
	color:#673ab7;
}

.part-industrie .item h5{
	font-size: 1.25rem;
	font-weight:bold;
	margin-top:1rem;
	color: #1F2A59;
}

.part-industrie .item p{
    font-weight: 400;
	font-size:15px;
    line-height: 1.8;
    color: #555;
}



.part-plan{}

.part-plan table tr{
	line-height:3;
}
.part-plan table .price{
	font-size: 1.8rem;
    font-weight: 700;
    color: var(--bs-blue);
}






.part-contact{
	margin-top: -160px;
}

.part-contact-box{
	position: relative;
	background-image:url('../../images/bg-contact.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding:4rem 3rem;
	border-radius:20px;
}

.part-contact-box h5{
	font-size:2rem;
	font-weight:bold;
	color:#fff;
}

.part-contact-box .button_style2{
	padding:1rem 3rem;
    background: linear-gradient(90deg, #6e8efb, #a777e3);
}
.part-contact-box .people{
    position: absolute;
    right: 0;
    bottom: 0;
}
.part-contact-box .people.p1{
    right: 120px;
	z-index:1;
}
.part-contact-box .people.p2{
    right: 30px;
}

@media (max-width: 992px) {

	.part-contact-box .people{
		display:none;
	}
}




.part-team{}

.part-team .item{
	background-color:#F0F4F7;
	border-radius:10px;
	padding:1rem;
	height:100%;
}
.part-team .item .thumb{
	position: relative;
}
.part-team .item .thumb::after{
	content:'';
	background-image: linear-gradient(to top, rgb(45, 80, 206), rgba(0, 0, 0, 0));
	transform: scaleY(0);
	transform-origin: bottom;
	
	width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
	transition: all 0.3s ease;

}
.part-team .item:hover .thumb::after {
	transform: scaleX(1);
}

.part-team .item h5{
	font-size: 1.25rem;
	font-weight:bold;
	margin-top:1rem;
	color: #1F2A59;
}

.part-team .item h6{

	font-weight:bold;
	margin-top:0.5rem;
	color: #3949ab;
	display:inline-block;
	padding-bottom:0.6rem;
	border-bottom:1px solid #3949ab;
}

.part-team .item p{
    font-weight: 400;
	font-size:15px;
    line-height: 1.8;
    color: #555;
	margin-bottom:0;
}










/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/


@media (max-width: 992px) {

 

  .fact-item {
    text-align: center;
  }
  .fact-item .icon {
    margin: 0 auto;
  }

  .pricing-tables .item {
    margin-bottom: 30px;
  }
  .subscribe .inner-content {
    padding: 60px 30px;
  }
  .our-videos ul.nacc {
    margin-bottom: 30px;
  }
  .our-videos .naccs .menu div img {
    border-radius: 50px;
  }
  .our-videos .menu .thumb .inner-content {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }

  .our-videos ul.nacc li {
    transform: translateX(0px);
    transform: translateY(-50px);
  }
  .our-videos .nacc .thumb iframe {
    height: 500px;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 60px;
  }
  form#contact {
    padding: 45px 30px;
  }
  .footer-item {
    margin-bottom: 45px;
  }
  .subscribe-newsletters {
    margin-bottom: 0px;
  }
}

@media (max-width: 767px) {
  
	.banner-images::after{
		width: 200px;
		height: 70px;
	}
	.banner-images::before{
		width: 95px;
		height: 120px;
	}
  .subscribe .inner-content:after {
    z-index: -1;
  }
  .subscribe .inner-content {
    padding: 60px 30px 100px 30px;
  }
  .subscribe .inner-content form input {
    width: 49%;
  }
  .subscribe .inner-content form button {
    width: 100%;
    background-color: #ff695f;
    margin-top: 30px;
  }
  .our-videos ul.nacc li {
    transform: translateX(0px);
    transform: translateY(-50px);
  }
  .contact-left-dec {
    display: none;
  }
  .contact-us .info {
    display: inline-block;
  }
  .contact-us .info span {
    margin-bottom: 20px;
  }
}


.jsmind-container{
	position: relative;
	width:100%;
	height:calc(100vh - 80px);
	min-height:500px;
}






.part-breadcrumb{
	padding:0.5rem 1rem;
	background-color: #fff;
	border-bottom:1px solid #f0f0f0;
}
.part-breadcrumb .breadcrumb{
	margin:0;
}
.part-breadcrumb .breadcrumb-item{
	font-size:12px;
}


.card-white{
	border:1px solid #f0f0f0;
}


.card-white .card-header {
    background-color: #fff;
    border:none;
}
.card-white .card-header:before{
	content:'';
	border-left: 4px solid #E63600;
	padding-right:0.5rem;

	font-size: 14px;
    font-weight: 400;
    color: #2A2A2A;
}



.article-list{
	list-style:none;
	padding:0;
}
.article-list .item{
	border-bottom: 1px dotted #ddd;
    padding-bottom: 1rem;
	margin-bottom:1rem;
}
.article-list-image{
	position:relative;
}
.article-list-cateurl {
	display:block;
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 0.2rem 1rem;
    color: #eee;
    font-size: 12px;
    border-radius: 4px;
    background: rgba(0,0,0,0.5);
}



.article-list-thumb{
	display:block;
}
.article-list-thumb img:hover {
	opacity: 0.8;
}

.article-list-title{
	display:block;
}
.article-list-title h5{
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 700;
}
.article-list-title p{
    font-size: 13px;
    line-height: 1.8em;
    font-weight: 200;
}


.article-list-info  {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}


.article-list-info cite {
	font-size: 12px;
    color: #999;
    font-weight: 200;
	margin-right:1rem;
	font-style:normal;
}
.article-list-info-name em{
	font-size: 12px;
	font-style:normal;
    color: #444;	
}



.article{
	background-color:#fff;
	padding:0.5rem 1rem;
}
.article-title{
	line-height:2;
    font-size: 1.4rem;
    font-weight: 500;
	text-align:center;

}
.article-content{
	margin:1rem 0;
	padding:1rem 0;
	border-top:1px solid #eee;
	border-bottom:1px solid #eee;
	
	line-height:2;
	font-weight: 400;

}
.article-content img{
	max-width:100%;
}
.article-content h2{
	font-weight:bold;
	margin-bottom:1rem;
	margin-top:3rem;
}
.article-content h3{
	font-size:20px;
	font-weight:bold;
	margin-bottom:1rem;
	margin-top:2rem;
}


.article-download{
	margin-top:1rem;
	padding:1rem;
	border:1px solid #ddd;
	background-color:#efefef;
	font-size:0.875rem;
	color:#777;
}
.article-download ul li{
	line-height:2;
}

.article-download .btn-vip{
	display:block;
	text-align:center;
	color:#f00
}
.article-download .btn-vip i{
	font-size:5rem;
	line-height: 1;
}
.article-download .btn-vip p{
	font-size:1.2rem;
	margin:0.2rem 0;
}


.article-download .btn-login{
	display:block;
	text-align:center;
	color:#3f51b5
}
.article-download .btn-login i{
	font-size:5rem;
	line-height: 1;
}
.article-download .btn-login p{
	font-size:1.2rem;
	margin:0.2rem 0;
}





.article-copyright{
	padding: 1rem;
    background: #FAFAFA;
}
.article-copyright p {
	padding:0;
	margin:0;
    font-size: 12px;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

.article-bottom{
	padding:2rem 0;
}

.article-bottom a{
	display:block;
	margin:0 2rem;
	text-align:center;
}

.article-bottom a.active{
	color:#FF5722
}

.article-bottom a i{
	font-size:4rem;
}

.article-bottom a p{
	font-size:0.875rem;
}



.heros-section{
	position:relative;
	padding:7rem 0;
	color:#fff;
	background-size: cover;
    background-position: center;
	z-index: 1;
}
.heros-section-overlay{
	position:absolute;
	width:100%;height:100%;
	left:0;top:0;
	background-color:rgba(0,0,0,0.5);
	z-index: -1;
}
.heros-section h1{
	color: #fff;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 6px;
}