/********** Template CSS **********/
body {
  position: relative;
  }
:root {
    --primary: #ffc116;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 30;
        padding: 5px;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        flex-direction:row;
	/*background-color: #ffffff;*/
	/*border: solid 1px #16D5FF;*/
	/*padding: 10px;*/
	/*box-sizing: border-box;*/
	/*white-space: pre-wrap;*/
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    /*top: -80px;*/
    /*right: -80px;*/
    /*border: 80px solid;*/
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after, {
    border-color: transparent transparent #eae5e3 transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 0px;
    left: 50%;
    margin-left: -60px;
    background: #FFFFFF;
    border: 3px solid var(--primary);
    transform: rotate(0deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 127px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    /*padding: 15px 0 0 0;*/
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}

/*** oem*5 ***/
.yunhui{padding: 80px 0;}
.yunhui-title {text-align: center;margin-bottom: 40px;font-size: 33px;}
.yunhui-title span {color: #16D5FF;text-transform: uppercase;}
.yunhui-title p {font-size: 18px;margin: 5px 0 0;color: #666;}
.yunhui-title-1 {background: url(../images/title_bg.png) repeat-x center -5px;}
.yunhui-title-1 strong {background-color: #fff;padding: 0 30px;display: inline-block;}
.yunhui-title-2:after {content: '';display: block;margin: 15px auto 0;width: 60px;height: 5px;background-color: #16D5FF;}

.in-server {margin: -20px 0 0 -20px;}
.in-server li {float: left;width: 20%;}
.in-server li a {display: block;border: 1px solid #f4f4f4;margin: 20px 0 0 20px;text-align: center;-webkit-transition: all 0.5s;transition: all 0.5s;}
.in-server li .img-center {height: 105px;line-height: 105px;padding-top: 20px;-webkit-transition: all 0.5s;transition: all 0.5s;}
.in-server li h4 {margin: 30px 0 10px;font-size: 22px;font-weight: normal;}
.in-server li p {margin: 0 20px 20px;color: #868686;text-align: justify;min-height: 120px; }
.in-server li span {display: block;line-height: 54px;background-color: #f9f9f9;color: #868686;border-top: 1px solid #f4f4f4;font-size: 16px;}
.in-server li a:hover {box-shadow: 0 0 26px #cacaca;-webkit-transform: translateY(10px);transform: translateY(10px);border-color: #d6d6d6;}
.in-server li a:hover span {background-color: #16D5FF;color: #fff;}
.in-server li a:hover .img-center {-webkit-transform: rotateY(360deg);transform: rotateY(360deg);}


.yunhui { padding: 80px 0px; }
.yunhui-title {text-align: center;margin-bottom: 40px;font-size: 33px;}
.yunhui-title span { color: rgb(230, 61, 33); text-transform: uppercase; }
.yunhui-title p { font-size: 18px; margin: 5px 0px 0px; color: rgb(102, 102, 102); }
.yunhui-title-1 { background: url("../images/title_bg.png") center -5px repeat-x; }
.yunhui-title-1 strong { background-color: rgb(255, 255, 255); padding: 0px 30px; display: inline-block; }
.yunhui-title-2::after { content: ""; display: block; margin: 15px auto 0px; width: 60px; height: 5px; background-color: rgb(230, 61, 33); }
.in-server { margin: -20px 0px 0px -20px; }
.in-server ul {margin: 0px;list-style: none;padding: 0px;}
ul{margin:0;list-style:none;padding:0}
.in-server li {float: left;width: 20%;}
.in-server li a {display: block;border: 1px solid rgb(244, 244, 244);margin: 20px 0px 0px 20px;/* text-align: center; */transition: all 0.5s ease 0s;}
.in-server li .img-center { height: 105px; line-height: 105px; padding-top: 20px; transition: all 0.5s ease 0s; }
.in-server li h4 {margin: 30px 0px 10px;font-size: 22px;font-weight: normal;}
.in-server li p { margin: 0px 20px 20px; color: rgb(134, 134, 134); text-align: justify; min-height: 120px; }
.in-server li span { display: block; line-height: 54px; background-color: rgb(249, 249, 249); color: rgb(134, 134, 134); border-top: 1px solid rgb(244, 244, 244); font-size: 16px; }
.in-server li a:hover { box-shadow: rgb(202, 202, 202) 0px 0px 26px; transform: translateY(10px); border-color: rgb(214, 214, 214); }
.in-server li a:hover span { background-color: rgb(33, 202, 230); color: rgb(255, 255, 255); }
.in-server li a:hover .img-center { transform: rotateY(360deg); }
.yunhuibox { background-color: rgb(242, 242, 242); }
.center1500 { width: 100%; margin: 0px auto; padding: 0px; position: relative; }
.yunhuibox .box { display: flex; align-items: center; width: 100%; height: auto; padding: 110px 0px; position: relative; z-index: 1; }
.yunhuibox .fl { width: 50%; background-image: url("../images/cbg.jpg"); background-color: rgb(51, 51, 51); background-size: cover; background-position: center center; background-repeat: no-repeat; position: absolute; top: 0px; left: 0px; bottom: 0px; z-index: 1; }
.yunhuibox .fl .PostSl { color: rgb(255, 255, 255); text-align: center; width: 60%; padding: 20px 0px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 1; }
.yunhuibox .fl .PostSl li { width: 50%; margin: 25px 0px; float: left; }
.yunhuibox .fl .PostSl li .slNumber { margin: 0px auto; font-size: 36px; line-height: 38px; color: rgba(255, 255, 255, 0.7); display: block; font-family: HELVETICANEUELTPRO; }
.yunhuibox .fl .PostSl li .slNumber span { color: white; position: relative; }
.yunhuibox .fl .PostSl li .slNumber i { font-style: normal; }
.yunhuibox .fl .PostSl li .slNumber em { font-size: 14px; line-height: normal; position: absolute; top: -3px; right: -15px; opacity: 0.6; font-style: normal; }
.yunhuibox .fl .PostSl li .slTitle { margin: 0px auto; font-size: 14px; color: rgba(255, 255, 255, 0.5); padding-top: 5px; }
.yunhuibox .fl .mask { width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); }
.yunhuibox .fr { width: 50%; padding-left: 50%; }
.yunhuibox .fr .fr-txt1 { margin-left: 30px; padding: 30px 0px; }
.yunhuibox .fr .fr-txt1 .amore { padding-top: 20px; }
.yunhuibox .fr .fr-txt { margin-left: 30px; width: 92%; border-bottom: 2px solid rgb(215, 215, 215); line-height: 22px; }
.yunhuibox .fr .fr-txt .txte { display: inline-block; font-size: 20px; margin-top: 10px; width: auto; border-bottom: 2px solid rgb(230, 61, 33); padding-bottom: 20px; margin-bottom: -2px; }
.yunhuibox .fr a { display: block; margin-top: 25px; }
.yunhuibox .fr span { display: block; font-size: 26px; color: rgb(51, 51, 51); font-weight: bold; }
.yunhuibox .fr p { width: 92%; display: block; font-size: 16px; line-height: 30px; color: rgb(102, 102, 102); margin-top: 15px; text-align: justify; }
.yunhuibox .fr .amore a { float: left; border-radius: 20px; padding: 0px 30px; width: auto; line-height: 36px; height: 36px; margin-left: 20px; background: black; color: rgb(255, 255, 255); transition: all 0.5s linear 0s; }
.yunhuibox .fr .amore a:hover { background: rgb(230, 61, 33); color: white; }
.yunhuibox .fr .amore a:first-child { margin-left: 0px; }
.yunhui-video { width: 100%; border: 1px solid rgb(244, 244, 244); }


@media screen and (max-width: 996px) {
.yunhui-title{font-size: 20px;margin-bottom: 20px;}
.yunhui-title p{font-size: 12px;}
.in-server{margin: -20px 0 0 -10px;}
.in-server li:first-child{width: 100%;}
.in-server li{width: 50%;}
.in-server li .img-center{line-height: 50px;height: 80px;padding-top: 5px;}
.in-server li h4{font-size: 16px;margin: 10px 0 5px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.in-server li p{margin: 0 10px;font-size: 12px;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 5;min-height: 66px;}
.in-server li:first-child  p{min-height: 42px;}
.in-server li span{line-height: 36px;}
.in-server li a{margin: 10px 0px 0 10px;}
.in-server li a:hover{transform: translateY(6px);}
    
}
