/********************************************************** */
/**********************  Conset ************************* */
/**********************************************************

    TABLE OF CONTENT
    ========================

    01. Default CSS
    02. Hero Section
    03. Page Banner
    04. Our Success
    05. About Us
    06. Service Section
    07. Partners
    08. Cases Section
    09. Team Section
    10. Call Back Section
    11. Testimonial Section
    12. Call To Action
    13. About Page
    14. Vission Mission
    15. Service Details
    16. Case Details
    17. Contact Page
    18. Error Page
    19. Footer Section


/****************************************************** */
/*******************  01. Default CSS ***************** */
/****************************************************** */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

:root {
    --heading-color: #2d2d2d;
    --primary-color: #fea100;
    --primary-color-rgb: 254,102,0;
}

body {
    color: #747474;

    font-weight: 400;
    line-height: 28px;
    font-family: 'Roboto', sans-serif;
}

a {
    color: #747474;
    cursor: pointer;
    outline: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:hover,
a:focus,
a:visited {
    outline: none;
    color:#555;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color, #2d2d2d);
    line-height: 1.1;
    font-family: 'Roboto', sans-serif;
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

h1 {
    font-size: 100px;
    font-weight: 700;
}

h2 {
    font-size: 60px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 15px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: inline-block;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

header:after,
section:after,
footer:after {
    display: block;
    clear: both;
    content: "";
}

/** Section Title style */
.section-title h2 {
    line-height: 1.17;
	font-size: 50px;
    text-transform: uppercase;
    font-weight: normal;
}

.section-title h2 span {
    color: var(--primary-color, #fea100);
}

/** Button style */
.theme-btn,
a.theme-btn {
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    min-width: 230px;
    transition: 0.5s;
    padding: 20px 41px;
    border-radius: 15px;
    background: var(--primary-color, #fea100);
    display: inline-block;
}

.theme-btn i {
    font-size: 11px;
    padding-left: 10px;
    transition: 0.5s;
}

.theme-btn:hover i {
    transform: translateX(5px);
}

/** Social Link Style One */
.social-style-one {
    display: inline-block;
}

.social-style-one a {
    margin: 0 3px;
    width: 35px;
    height: 35px;
    font-size: 13px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    display: inline-block;
    background: rgba(255, 255, 255, .05);
}

.social-style-one a i {
    color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-style-one a:hover i {
    color: var(--primary-color, #fea100);
}

.social-style-one a:first-child {
    margin-left: 0;
}

.social-style-one a:last-child {
    margin-right: 0;
}

/** Social Link Style One */
.social-style-two {
    display: inline-block;
}

.social-style-two a {
    margin: 0 3px;
    width: 40px;
    height: 40px;
    font-size: 13px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    background: #ffffff;
}

.social-style-two a:hover {
    background: var(--heading-color, #2d2d2d);
}

.social-style-two a i {
    color: var(--heading-color, #2d2d2d);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.social-style-two a:hover i {
    color: #ffffff;
}

.social-style-two a:first-child {
    margin-left: 0;
}

.social-style-two a:last-child {
    margin-right: 0;
}

/*pazination style*/
.pazination li {
    display: inline-block;
}

.pazination li a {
    width: 30px;
    height: 30px;
    color: #677294;
    display: block;
    font-size: 14px;
    transition: 0.5s;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    background: #FFFFFF;
}

.pazination a:hover,
.pazination li.active a {
    color: #FFFFFF;
    background: #1965FD;
}

/*** Preloader style ** */
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/preloader.gif);
}

/* text inputs and textarea */
.form-group input,
.form-group textarea {
    border: none;
    padding: 12px 20px;
    color: #555;
    border-radius: 15px;
    margin-bottom: 0px;
    background: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    color: #FFFFFF;
    box-shadow: none;
    background: #FF8431;
}

/* input buttons */
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
    outline: none;
}

.overlay {
    position: relative;
}

.overlay:before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.1;
}

.overlay * {
    z-index: 2;
    position: relative;
}

.bg-orange {
    background-color: #fea100;
}

.bg-black {
    background: #292929;
}

.bg-snow {
    background: #ececec;
}

/****************************************************** */
/****************** 02. Hero Section  *************** */
/****************************************************** */
.hero-section {
    margin-top: 50px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 900px;
    padding: 30px 0 85px;
}

.hero-inner .sub-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary-color, #fea100);
}

.hero-inner h1 {
    color: #ffffff;
    margin: 35px 0 45px;
    line-height: 1.1;
}

.hero-inner h1 span {
    display: inline-block;
}

.hero-inner h1 span:after {
    content: '.';
    color: var(--primary-color, #fea100);
}

.hero-btn a {
    margin: 0 25px 15px 0;
}

.hero-btn a:last-child {
    margin-right: 0;
}


/****************************************************** */
/************** 03. Page Banner Section  ************** */
/****************************************************** */
.page-banner {
    height: 520px;
    margin-top: 50px;
    background: url(../images/banner/banner-bg.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-banner.overlay:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: calc(50% + 120px);
    height: 100%;
   
    clip-path: polygon(calc(100% - 320px) 0, 100% 100%, 0 100%, 0 0);
}

.page-banner .banner-inner {
    padding: 160px 0 50px;
}

.page-banner .banner-inner h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 15px;
}

.banner-inner .breadcrumb {
    padding-left: 0;
    background-color: transparent;
}

.banner-inner .breadcrumb-item {
    color: #ffffff;
    font-size: 40px;
    font-weight: 500;
}

.banner-inner .breadcrumb a {
    color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f142";
    font-weight: 600;
    font-size: 13px;
    padding-left: 17px;
    padding-right: 17px;
    color: var(--primary-color, #fea100);
    font-family: "Font Awesome 5 Free";
}


/****************************************************** */
/*************** 04. Our Success Section  ************* */
/****************************************************** */
.success-wrap {
    /*transform: translateY(-60%);*/
    border-top: 0px solid #ffffff;
}

.success-item {
    display: flex;
    padding-left: 36px;
    border-left: 5px solid #fea100;
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 20px;
}

.success-wrap .row > div:last-child .success-item {
    border-right: 0px;
}

.success-item .success-icon {
    color: #fea100;
    margin-right: 32px;
    padding-top: 20px;
}

.success-item .success-icon i:before {
    font-size: 50px;
}

.success-item .success-content {
    padding-top: 15px;
}

.success-content .count-text {
    color: #fea100;
    font-size: 35px;
    font-weight: 700;
}

.success-content .count-text:after {
    content: '+';
}

.success-content p {
    font-weight: 700;
    color: var(--heading-color, #2d2d2d);
	line-height: 17px;
    padding-top: 10px;
}


/****************************************************** */
/**************** 05. About Us Section  *************** */
/****************************************************** */
.about-image {
	position: relative;
	padding-top: 50px;
	padding-right: 20px;
	padding-bottom: 50px;
	padding-left: 0px;
}

.about-image:before {
   /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    z-index: -1;
    background: var(--primary-color, #fea100);*/
}

.about-image:after {
    /*content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 191px;
    height: 191px;
    z-index: -1;
    background: #292929;
    clip-path: polygon(100% 100%, 0 100%, 0 0);*/
}

.about-image img {
    border-radius: 100px 0 0 0;
    clip-path: polygon(100% 0, 100% 100%, 110px 100%, 0 calc(100% - 110px), 0 0);
}

/*Custom Animation*/
@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100px, 100px, 0);
        transform: translate3d(-100px, 100px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft;
}

.about-border {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 8px;
    height: 38%;
    background: #EFEFEF;
}

.about-content p {
    color: #3B3B3B;
    margin-bottom: 25px;
}

.about-content > i {
    font-weight: 500;
    margin-bottom: 40px;
    display: inline-block;
    color: var(--heading-color, #2d2d2d);
}

.about-content .theme-btn {
    padding: 20px 45px;
}

.about-content .theme-btn i {
    padding-left: 25px;
}


/****************************************************** */
/***************** 06. Service Section  *************** */
/****************************************************** */
.services-section {
    position: relative;
}

.services-section:before {
    /*content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: rgba(254, 102, 0, .15);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);*/
}

.services-section:after {
    /*content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 265px;
    height: 265px;
    background: var(--primary-color, #fea100);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);*/
}

.services-section .section-title h2 {
    margin-bottom: 15px;
}

.service-item {
    background: #fff;
    margin-bottom: 40px;
    padding: 56px 48px 50px;
    position: relative;
    z-index: 1;
}

.service-item .service-icon {
    margin-bottom: 23px;
}

.service-item .service-icon a {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background: #f9f9f9;
    color: var(--primary-color, #fea100);
}

.service-item:hover .service-icon a {
    color: #fff;
    border-radius: 15px;
    background: var(--primary-color, #fea100);
}

.service-content h4 {
    font-size: 28px;
    line-height: 40px;
    margin-bottom: 15px;
}

.service-content h4 a {
    color: var(--heading-color, #2d2d2d);
	text-transform: uppercase;
}

.service-content h4 a:hover {
    color: var(--primary-color, #fea100);
}

.service-content p {
    color: #3B3B3B;
    margin-bottom: 0;
}

.separetor {
    width: calc(100% - 30px);
    height: 5px;
    margin-left: 15px;
    margin-bottom: 40px;
    background: var(--primary-color, #fea100);
}


/****************************************************** */
/**************** 07. Partners Section  *************** */
/****************************************************** */
.partners-section .section-title h2 {
    line-height: 1.42;
}

.partners-section .slick-slide img {
    margin-left: auto;
	padding: 10px;
}

.partners-section .slick-track {
    display: flex;
    align-items: center;
}

.partner-wrap .partner-prev {
    background: #f4f4f4;
    width: 65px;
    height: 65px;
    line-height: 65px;
    cursor: pointer;
    text-align: center;
    color: var(--primary-color, #fea100);
    position: absolute;
    top: 40%;
    left: -60px;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
	font-size: 30px;
}
 .partner-wrap .partner-next {
    background: #f4f4f4;
    width: 65px;
    height: 65px;
    line-height: 65px;
    cursor: pointer;
    text-align: center;
    color: var(--primary-color, #fea100);
    position: absolute;
    top: 40%;
    right: -60px;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
	font-size: 30px;
}
.partner-item p{ padding:0px 10px 10px;
line-height: 23px;}

.partner-wrap .partner-next {
 
}

.partner-wrap .partner-prev:hover,
.partner-wrap .partner-next:hover,
.partner-wrap .partner-prev:focus,
.partner-wrap .partner-next:focus {
    color: #ffffff;
    background: var(--primary-color, #fea100);
}

.partners-section .slick-list {
  
}

.partners-section .partner-item {
	border: 1px solid #DDD;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	width:33.333% !important;
}


/****************************************************** */
/****************** 08. Cases Section  **************** */
/****************************************************** */
.cases-section {
    position: relative;
}

.cases-section:before {
   /* content: '';*/
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: rgba(254, 102, 0, .15);
    clip-path: polygon(100% 0, 0 100%, 0 0);
}

.cases-section:after {
    /*content: '';*/
    /*position: absolute;*/
    top: 0;
    left: 0;
    /*width: 265px;
    height: 265px;*/
    background: var(--primary-color, #fea100);
    clip-path: polygon(100% 0, 0 100%, 0 0);
}

.cases-section .section-title {
    position: relative;
    z-index: 1;
}

.cases-section .section-title h2 {
    color: #ffffff;
    margin-bottom: 30px;
}

.cases-section .section-title p {
    color: #BFBFBF;
}

.case-wrap {
    margin: 0 -15px;
    padding-bottom: 120px;
    position: relative;
}

.case-item {
    padding: 0 15px;
}

.case-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.case-image:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0px;
    height: 0px;
    background: var(--primary-color, #fea100);
    clip-path: polygon(100% 100%, 0 100%, 0 0);
    -webkit-transition: .5s;
    transition: .5s;
}

.case-image:hover:before {
    width: 240px;
    height: 240px;
}

.case-image a {
    position: absolute;
    bottom: -57px;
    left: -65px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    background: #ffffff;
    border-radius: 15px;
    color: var(--heading-color, #2d2d2d);
    -webkit-transition: .5s;
    transition: .5s;
}

.case-image:hover a {
    left: 40px;
    bottom: 32px;
}

.case-content {
    padding-left: 10px;
}

.case-content span {
    color: var(--primary-color, #fea100);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    letter-spacing: 0.56px;
}

.case-content h4 a {
    color: #FFFFFF;
}

.case-wrap .case-prev, .case-wrap .case-next {
    background: #292929;
    width: 65px;
    height: 65px;
    line-height: 65px;
    cursor: pointer;
    text-align: center;
    color: var(--primary-color, #fea100);
    position: absolute;
    left: 43%;
    bottom: 17px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.case-wrap .case-next {
    left: calc(43% + 85px);
}

.case-wrap .case-prev:hover,
.case-wrap .case-next:hover,
.case-wrap .case-prev:focus,
.case-wrap .case-next:focus {
    color: #ffffff;
    background: #4C3526;
}

.case-wrap:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, .02);
}


/****************************************************** */
/****************** 09. Team Section  ***************** */
/****************************************************** */
.team-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0px !important;
}

.team-item {
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 40px;
}


.team-item .item-image {
	position: relative;
	text-align: center;
	margin-bottom: 20px;
	border: 1px solid #CCC;
	padding: 10px;
	overflow: hidden;
}

.team-item .item-image:before {
    /*content: '';*/
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(transparent, #fea100);
    -webkit-transition: 0.7s;
    transition: 0.7s;
}

.team-item:hover .item-image:before {
    height: 85%;
}

.team-item .item-image img {
    width: 100%;
}
img{transition: all 0.6s;}
.team-item .item-image a:hover img{transform: scale(1.1);}


.team-item .item-image .social-style-two {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 100%;
}

.team-item .team-desc h3 {
    margin-bottom: 12px;
}

.team-item .team-desc p {
    color:#9a9a9a;
}


/****************************************************** */
/*************** 10. Call Back Section  *************** */
/****************************************************** */
.call-back-section {
    background: url(../images/call-back/call-back-bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.call-back-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color, #fea100);
    opacity: .9;
}

.call-back-shap {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .1);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.call-back-shap:after {
    /*content: '';*/
    position: absolute;
    right: 0;
    bottom: 0;
    width: 265px;
    height: 265px;
    background: #292929;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.call-back-section .section-title {
   
}

.call-back-section .section-title h2 {
    color: #ffffff;
    margin-bottom: 18px;
    line-height: 1.25;
}

.call-submit button.theme-btn {
    background: #292929;
	margin-top:20px;
}

.call-back-form .row > div {
    padding-left: 10px;
    padding-right: 10px;
}

.call-submit {
    margin-bottom: 0;
}


/****************************************************** */
/************* 11. Testimonial Section  ************** */
/****************************************************** */
.testimonial-area {
    display: flex;
    align-items: center;
}

.review-buttons {
    margin-right: 30px;
}

.review-btn {
    display: block;
    background: rgba(254, 102, 0, 1);
}

.review-btn,
.review-btn img {
    transition: all .3s ease;
}

.review-btn img {
    opacity: 1;
    width: 100%;
}

.review-btn:hover img {
    opacity: .4
}

.review-btn.active img {
    opacity: .1
}

.review-btn.active::before {
    transition: transform .3s ease 0s, visibility .3s ease .2s, opacity .3s ease .2s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.review-buttons figure {
    width: 100px;
    position: relative;
    margin-bottom: 30px;
}

.review-buttons figure:last-child {
    margin-bottom: 0;
}

.review-buttons figure::before,
.review-buttons figure::after {
    position: absolute;
    content: '';
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease 0s;
}

.review-buttons figure.active-btn::before,
.review-buttons figure.active-btn::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    transition: all .4s ease .2s;
}

.review-buttons figure.active-btn::before {
    width: 2px;
    height: 10px;
}

.review-buttons figure.active-btn::after {
    width: 10px;
    height: 2px;
}

.testimony-content {
    width: 100%;
}

.review-single {
    display: none;
    animation: 1s fadeIn;
}

.review-single.active {
    display: flex;
    align-items: center;
}

.review-single .textimonial-image {
    flex: none;
    max-width: 36%;
    margin-right: 40px;
    animation: 1s fadeInDown;
}

.textimonial-content {
    max-width: 566px;
    margin-left: auto;
    animation: 1s fadeInLeft;
}

.textimonial-content p {
    font-size: 22px;
    line-height: 1.57;
    padding-top: 50px;
    position: relative;
    color: var(--heading-color, #2d2d2d);
}

.textimonial-content p:before {
    content: "\f107";
    font-family: "Flaticon";
    font-size: 45px;
    position: absolute;
    top: -14px;
    left: 0;
    color: var(--primary-color, #fea100);
}

.textimonial-content p:after {
    content: "\f108";
    font-family: "Flaticon";
    font-size: 45px;
    position: absolute;
    right: 15%;
    bottom: -45px;
    color: var(--primary-color, #fea100);
}

.textimonial-content .reviewer {
    margin-top: 30px;
}

.textimonial-content .reviewer h3 {
    font-size: 32px;
}

.textimonial-content .reviewer span {
    color: var(--primary-color, #fea100);
}


/****************************************************** */
/************ 12. Call To Action Section  ************* */
/****************************************************** */
.cta-section .cta-text h3 {
    font-size: 45px;
    color: #ffffff;
    line-height: 1.57;
}

.cta-section .cta-btn {
    text-align: right;
}

.cta-section .cta-btn .theme-btn {
    background: #292929;
    padding: 20px 57px;
}


/****************************************************** */
/******************* 13. About Page  ****************** */
/****************************************************** */
.cta-section.bg-snow h3 {
    color: #292929;
}

.cta-section.bg-snow h3 span {
    color: var(--primary-color, #fea100);
}

.cta-section.bg-snow .theme-btn {
    background: var(--primary-color, #fea100);
    padding: 20px 57px;
}


/****************************************************** */
/*********** 14. Vission Mission Section  ************* */
/****************************************************** */
.vission-tabs {
    position: relative;
}

.vission-tabs:before {
    content: '';
    position: absolute;
    left: 0;
    top: -45%;
    width: 100%;
    height: 230%;
    z-index: -1;
    background: #F9F9F9;
}

.vission-tabs li {
    height: 140px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
    background: url(../images/about/tab-bg.jpg);
    background-size: cover;
    background-position: center;
    transition: 0.5s;
}

.vission-tabs li:last-child {
    margin-bottom: 0;
}

.vission-tabs li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(41, 41, 41, .93);
    transition: 0.5s;
}

.vission-tabs li:hover:before, .vission-tabs li.active:before {
    background: rgba(254, 102, 0, .93);    
}

.vission-tabs li h3 {
    position: relative;
    color: #ffffff;
    margin-right: 70px;
    margin-bottom: 0;
    z-index: 1;
    transition: 0.7s;
}

.vission-tabs li:hover h3, .vission-tabs li.active h3 {
    padding-right: 70px;
}

.vission-tabs li h3:after {
    content: "\f30b";
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 5px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.vission-tabs li:hover h3:after, .vission-tabs li.active h3:after {
    opacity: 1;
    visibility: visible;
}

.vission-content-wrap {
    max-width: 500px;
    overflow: hidden;
    margin-left: auto;
}

.vission-tab-content {
    display: none;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.vission-tab-content.active {
    display: block;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

.vission-tab-content .section-title h2 {
    color: #222222;
    margin-bottom: 10px;
}

.vission-tab-content p {
    margin-bottom: 30px;
}

.vission-tab-content .success-item {
    max-width: 340px;
    align-items: center;
    border-right: 0;
    margin-top: 42px;
    padding: 25px 0 25px 40px;
    border-left: 6px solid var(--primary-color, #fea100);
}

.vission-tab-content .success-item .icon-image {
    margin-right: 35px;
}

.vission-tab-content .success-content {
    padding-top: 0;
}

.vission-tab-content .success-content .count-text {
    font-size: 40px;
    color: #292929;
    position: relative;
}

.vission-tab-content .success-content .count-text:after {
    font-size: 13px;
    position: absolute;
    top: 0;
    right: -10px;
    color: var(--primary-color, #fea100);
}

.vission-tab-content .success-content h5 {
    color: #292929;
    margin-bottom: 0;
    margin-top: 6px;
}


/****************************************************** */
/************** 15. Service Details Page  ************* */
/****************************************************** */
.service-details-content .section-title h2 {
    color: #222222;
    margin-bottom: 25px;
}

.service-details-content p {
    font-size: 16px;
    line-height: 1.64;
    text-align: justify;
    margin-bottom: 35px;
}

.service-details-content .section-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #222222;
}

.service-details-content .details-image {
    position: relative;
    margin-bottom: 45px;
}

.service-details-content .details-image:after {
    content: "\f109";
    font-family: "Flaticon";
    color: #FFFFFF;
    font-size: 45px;
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 95px;
    height: 95px;
    line-height: 95px;
    text-align: center;
    background: var(--primary-color, #fea100);
}

.service-details-content h3 {
    color: #222222;
    font-size: 35px;
    margin-bottom: 25px;
}

.prev-next-area {
    margin-top: 70px;
}

.prev-next-area .prev-next-btn {
    width: 100%;
    height: 100px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    line-height: 100px;
    background: #292929;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: 0.8s;
}

.prev-next-area .prev-next-btn:hover {
    background: transparent;
}

.prev-next-area .prev-next-btn:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/services/prev-next.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: -1;
    transition: 0.8s;
}

.prev-next-area .prev-next-btn:hover:before {
    opacity: 1;
}

.prev-next-area .prev-next-btn:after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    position: absolute;
    background: transparent;
    transition: 0.8s;
}

.prev-next-area .prev-next-btn:hover:after {
    background: rgba(254, 102, 0, .9);
}

.prev-next-area .prev-next-btn span {
    position: relative;
    display: inline-block;
    transition: 0.5s;
}

.prev-next-area .prev-next-btn.prev-btn:hover span {
    padding-left: 20%;
}

.prev-next-area .prev-next-btn span:before {
    content: "\f30a";
    font-weight: 600;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 2px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.prev-next-area .prev-next-btn.next-btn:hover span {
    padding-right: 20%;
}

.prev-next-area .prev-next-btn.next-btn span:before {
    content: "\f30b";
    right: 0;
    left: auto;
}

.prev-next-area .prev-next-btn:hover span:before {
    opacity: 1;
    visibility: visible;
}

/* Service Sidebar */
.service-sidebar {
    max-width: 300px;
    margin-left: auto;
}

.service-sidebar .sidebar-widget {
    margin-bottom: 100px;
}

.service-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.service-sidebar .sidebar-widget h3 {
    font-size: 35px;
    color: #292929;
    margin-bottom: 35px;
}

.service-sidebar .service-widget ul li {
    margin-bottom: 10px;
}

.service-sidebar .service-widget ul li a {
    height: 65px;
    width: 100%;
    font-size: 17px;
    font-weight: 700;
    color: #292929;
    background: #f9f9f9;
    padding: 18px 30px;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.service-sidebar .service-widget ul li a:hover {
    color: #FFFFFF;
    background: transparent;
}

.service-sidebar .service-widget ul li a:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../images/services/prev-next.jpg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: -1;
    transition: 0.8s;
}

.service-sidebar .service-widget ul li a:hover:before {
    opacity: 1;
}

.service-sidebar .service-widget ul li a:after {
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    position: absolute;
    background: transparent;
    transition: 0.8s;
}

.service-sidebar .service-widget ul li a:hover:after {
    background: rgba(254, 102, 0, .9);
}

.service-sidebar .contact-widget {
    padding: 62px 55px;
}

.service-sidebar .contact-widget p {
    font-weight: 700;
    margin-bottom: 26px;
    color: var(--primary-color, #fea100);
}

.service-sidebar .contact-widget h3 {
    color: #222222;
    font-size: 42px;
    line-height: 1.43;
}

.service-sidebar .contact-widget .theme-btn {
    max-width: 190px;
    min-width: 190px;
    padding: 16px 20px;
}


/****************************************************** */
/*************** 16. Case Details Page  *************** */
/****************************************************** */
.case-gallery {
    margin-bottom: 32px;
}

.case-gallery .tab-content {
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 5px solid #F5F5F5;
}

.case-gallery-list li a figure {
    position: relative;
}

.case-gallery-list li a figure::before,
.case-gallery-list li a figure::after {
    position: absolute;
    content: '';
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: all .4s ease 0s;
}

.case-gallery-list li a.active figure::before,
.case-gallery-list li a.active figure::after {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    transition: all .4s ease .2s;
}

.case-gallery-list li a.active figure::before {
    width: 2px;
    height: 10px;
}

.case-gallery-list li a.active figure::after {
    width: 10px;
    height: 2px;
}

.case-gallery-list li a img {
    opacity: 1;
    width: 100%;
}

.case-gallery-list li a.active img {
    opacity: .1;
}

.case-gallery-list li a {
    display: block;
    background: rgba(254, 102, 0, 1);
}

.case-gallery-list li a, .case-gallery-list li img {
    transition: all .3s ease;
}

.case-gallery-list {
    justify-content: center;
}

.case-gallery-list li {
    margin-right: 20px;
}

.case-gallery-list li:last-child {
    margin-right: 0;
}

.case-details-content .section-title h2 {
    color: #222222;
    margin-bottom: 25px;
}

.case-details-content .section-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #222222;
}

.case-details-content p {
    font-size: 16px;
    line-height: 1.64;
    text-align: justify;
    margin-bottom: 35px;
}

.case-details-content h3 {
    color: #222222;
    font-size: 35px;
    margin-bottom: 25px;
}

.case-middle {
    padding: 10px 0 20px;
}

.case-middle .middle-image {
    max-width: 330px;
    margin-left: auto;
}

.case-middle .middle-content p {
    text-align: inherit;
    margin-bottom: 25px;
}

/* Case Sidebar */
.case-sidebar {
    max-width: 300px;
    margin-right: auto;
}

.case-sidebar .sidebar-widget {
    margin-bottom: 80px;
}

.case-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.case-sidebar .sidebar-widget h3 {
    font-size: 35px;
    color: #292929;
    margin-bottom: 35px;
}

.case-sidebar .sidebar-widget h3 span {
    color: var(--primary-color, #fea100);
}

.case-sidebar .information-widget {
    padding: 40px 41px 35px;
}

.case-sidebar .information-widget h3 {
    font-size: 30px;
    line-height: 1.31;
    margin-bottom: 30px;
}

.information-widget li {
    display: flex;
    line-height: 2.68;
}

.information-widget li span {
    color: #292929;
    font-weight: 700;
    width: 92px;
    position: relative;
    display: inline-block;
}

.information-widget li span:before {
    content: ':';
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 13px;
}

.information-widget li a {
    color: var(--primary-color, #fea100);
}

.case-sidebar .contact-widget {
    padding: 62px 55px;
}

.case-sidebar .contact-widget p {
    font-weight: 700;
    margin-bottom: 26px;
    color: var(--primary-color, #fea100);
}

.case-sidebar .contact-widget h3 {
    color: #FFFFFF;
    font-size: 42px;
    line-height: 1.43;
}

.case-sidebar .contact-widget .theme-btn {
    max-width: 190px;
    min-width: 190px;
    padding: 16px 20px;
}

.related-cases .case-item {
    padding: 0;
}

.related-cases .case-content h4 a {
    color: #292929;
}


/****************************************************** */
/****************** 17. Contact Page  ***************** */
/****************************************************** */

/* Get In Touch */
.get-in-touch .section-title h2 {
    color: #222222;
    margin-bottom: 25px;
}

.get-in-touch .section-title h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #222222;
}

.get-in-touch p {
    font-size: 16px;
    line-height: 1.64;
    text-align: justify;
    margin-bottom: 35px;
}

.contact-sidebar {
    max-width: 300px;
    margin-right: auto;
}

.contact-sidebar .sidebar-widget {
    padding: 52px 45px 50px;
    margin-bottom: 30px;
}

.contact-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.contact-sidebar .sidebar-widget h3 {
    color: #292929;
    font-size: 30px;
    line-height: 1.31;
    margin-bottom: 30px;
}

.contact-sidebar .sidebar-widget li {
    display: flex;
    line-height: 2;
    margin-bottom: 15px;
}

.contact-sidebar .sidebar-widget li:last-child {
    margin-bottom: 0;
}

.contact-sidebar .sidebar-widget li .left-icon {
    width: 45px;
}

.contact-sidebar .sidebar-widget li .left-icon i {
    font-size: 19px;
    margin-right: 31px;
    color: var(--primary-color, #fea100);
}

.contact-sidebar .sidebar-widget.bg-black h3,
.contact-sidebar .sidebar-widget.bg-black .right-content a {
    color: #FFFFFF;
}

.get-in-touch .call-back-form {
    margin-top: 55px;
}

.get-in-touch .call-back-form input,
.get-in-touch .call-back-form textarea {
    background: transparent;
    border: 1px solid #EFEFEF;  
}

.get-in-touch .call-back-form input::placeholder,
.get-in-touch .call-back-form textarea::placeholder {
    color: #747474;
}

.get-in-touch .call-back-form input:focus,
.get-in-touch .call-back-form textarea:focus {
    box-shadow: none;
    border-color: var(--primary-color, #fea100);
}

.get-in-touch .call-back-form textarea {
    resize: none;
}

/* Contact Page Map */
.map-inner .map {
    height: 450px;
}

.leaflet-bottom.leaflet-right {
    display: none;
}


/****************************************************** */
/******************* 18. Error Page  ****************** */
/****************************************************** */
.error-image {
    margin-bottom: 80px;
    border-bottom: 6px solid #F6F6F6;
}

.error-content {
    max-width: 775px;
    margin: auto;
    display: flex;
    align-items: center;
}

.error-content .content-left h2 {
    color: #222222;
    line-height: 1.57;
}

.error-content .content-left h3 {
    color: #787878;
    line-height: 1.57;
}

.error-content .content-right {
    margin-left: auto;
}

.error-content .content-right .theme-btn {
    padding: 20px 51px;
    background: #292929;
}

.error-content .content-right .theme-btn i {
    padding-left: 0;
    padding-right: 10px;
}

.error-content .content-right .theme-btn:hover i {
    transform: translateX(-5px);
}


/****************************************************** */
/***************** 19. Footer Section  **************** */
/****************************************************** */
.widget-title {
    color: #ffffff;
    line-height: 28px;
    margin-bottom: 45px;
}

.widget-title a{
    color: #ffffff;
    line-height: 28px;
    margin-bottom: 45px;
    font-size: 28px;
}

.widget {
    margin-bottom: 50px;
}

.widget p,
.widget ul li,
.widget ul li a {
    color: #D0D0D0;
}

.widget ul li a:hover,
.subscribe-form .form-group .subscribe-submit:hover {
    color: #FFFFFF;
}

.widget ul li {
    margin-bottom: 16px;
}

.widget ul li:last-child {
    margin-bottom: 0;
}

.contact-info-widget ul li {
    margin-bottom: 35px;
}

.contact-info-widget h5 {
    margin-bottom: 15px;
    color: var(--primary-color, #fea100);
}

.contact-info-widget p {
    margin-bottom: 0;
}

.recent-post-widget .post-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #3B3A3A;
}

.recent-post-widget ul > li:last-child .post-item {
    border-bottom: 0;
}

.recent-post-widget .post-item h5 {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 4px;
}

.recent-post-widget .post-item p {
    margin-bottom: 20px;
    color: var(--primary-color, #fea100);
}

.recent-post-widget ul > li:last-child .post-item p {
    margin-bottom: 0;
}

.menu-widget ul li a {
    font-size: 16px;
	text-transform:capitalize;
}

.menu-widget li {
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.menu-widget li:before {
   /* content: "\f101";*/
    font-family: "Font Awesome 5 Free";
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    left: 0;
    top: 0;
}

.subscribe-form .form-group input {
    padding: 12px 29px;
    background: #3C3C3C;
}

.subscribe-form input::placeholder {
    color: #D0D0D0;
}

.subscribe-form .form-group {
    position: relative;
}

.subscribe-form .form-group .subscribe-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    color: #D0D0D0;
    cursor: pointer;
    text-align: center;
    line-height: 48px;
    transition: 0.5s;
    border-radius: 15px;
    background: var(--primary-color, #fea100);
}

.widget .social-style-two a {
    background: #D0D0D0;
    margin-right: 6px;
}

.widget .social-style-two a i {
    color: #2d2d2d;
}

.widget .social-style-two a:hover {
    background: #FFFFFF;
}

/* Copyright And Footer Menu */
.copyright-area {
    color: #f7f9fb;
    padding: 17px 0;
    background: #333333;
}

.copyright-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.copyright-inner p {
    margin: 0;
}

.copyright-inner p span {
    color: var(--primary-color, #fea100);
}

.copyright-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 55%;
}

.footer-menu {
    margin-left: auto;
}

.footer-menu li {
    padding: 0 12px;
    display: inline-block;
    line-height: 12px;
    border-right: 1px solid;
}

.footer-menu li:first-child {
    padding-left: 0;
}

.footer-menu li:last-child {
    padding-right: 0;
    border-right: none;
}

.footer-menu li a {
    color: #f7f9fb;
}

.footer-menu li a:hover {
    color: var(--primary-color, #fea100);
}

/*** Scroll Top style ***/
.scroll-top {
    width: 48px;
    height: 48px;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto;
    border-radius: 15px;
    background: var(--primary-color, #fea100);
}

.iconfont {
    font-size: 18px !important;
}

.our-success{
position: relative;
    z-index: 2;
}

.container_index{ width: 92%;
    margin: 0px auto;}

.case-content h4 a{ font-size:16px; font-weight:normal;}

/*璇█閫夋嫨寮€濮�*/
.language{float: right;}
.language .cur{cursor: pointer; position: relative; padding: 4px 5px 4px 6px; background-color: #fff; margin-right: 10px;}
.language .cur e{ color: #555; font-size: 12px; line-height: 20px;background-image:url(../flag.png); background-repeat:no-repeat; padding-left: 30px; height: 20px; display: block;}
.language .cur e i{font-weight: bold;font-size: 12px;margin-left: 3px;}
.language .cur:hover e{color: #ff3b23; }
.language ul.language-list{
	max-height: 400px;
    overflow: auto;
	position:absolute;
	z-index: 2;
	top: 30px;
	right:-30px;
	list-style-type: none;
	background-color: #fff;
	font-size: 12px;
	height: 0;
	transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
	opacity: 0; 
}
.language .cur:hover .language-list{
	opacity: 1; 
	height: auto;
	padding: 2px 5px;
	-webkit-box-shadow:0 0 5px #ccc;  
  -moz-box-shadow:0 0 5px #ccc;  
  box-shadow:0 0 5px #ccc;
}
.language ul.language-list li{
	padding: 4px 4px 2px 4px;
	overflow: hidden;
	border-bottom: 1px solid #ececec;
	margin: 3px 0 2px 0;
}
.language ul.language-list li a{color: #1b1b1b; font-size: 12px; line-height: 20px;background-image:url(../flag.png); background-repeat:no-repeat;background-position:0 0; padding:  0 0 0 30px; float: left; width: 100%;white-space:nowrap;}
.language ul.language-list li:hover{background-color: #fd5f16;}
.language ul.language-list li:hover a{color: #fff;}
.language e.cn, .language ul.language-list li a.cn{background-position: 0 0;}
.language e.en, .language ul.language-list li a.en{background-position: 0 -22px;}
.language e.sp, .language ul.language-list li a.sp{background-position: 0 -44px;}
.language e.nl, .language ul.language-list li a.nl{background-position: 0 -66px;}
.language e.al, .language ul.language-list li a.al{background-position: 0 -88px;}
.language e.ru, .language ul.language-list li a.ru{background-position: 0 -110px;}
.language e.de, .language ul.language-list li a.de{background-position: 0 -132px;}
.language e.ja, .language ul.language-list li a.ja{background-position: 0 -154px;}
.language e.pt, .language ul.language-list li a.pt{background-position: 0 -176px;}
.language e.fr, .language ul.language-list li a.fr{background-position: 0 -198px;}
.language e.it, .language ul.language-list li a.it{background-position: 0 -220px;}
.language e.ko, .language ul.language-list li a.ko{background-position: 0 -242px;}
.language e.th, .language ul.language-list li a.th{background-position: 0 -264px;}
.language e.el, .language ul.language-list li a.el{background-position: 0 -286px;}
.language e.pl, .language ul.language-list li a.pl{background-position: 0 -308px;}
.language e.bul, .language ul.language-list li a.bul{background-position: 0 -330px;}
.language e.est, .language ul.language-list li a.est{background-position: 0 -352px;}
.language e.dan, .language ul.language-list li a.dan{background-position: 0 -374px;}
.language e.fin, .language ul.language-list li a.fin{background-position: 0 -396px;}
.language e.cs, .language ul.language-list li a.cs{background-position: 0 -418px;}
.language e.rom, .language ul.language-list li a.rom{background-position: 0 -440px;}
.language e.slo, .language ul.language-list li a.slo{background-position: 0 -462px;}
.language e.swe, .language ul.language-list li a.swe{background-position: 0 -484px;}
.language e.hu, .language ul.language-list li a.hu{background-position: 0 -506px;}
.language e.hi, .language ul.language-list li a.hi{background-position: 0 -528px;}
.language e.tr, .language ul.language-list li a.tr{background-position: 0 -550px;}
.language e.vi, .language ul.language-list li a.vi{background-position: 0 -572px;}
.language e.fa, .language ul.language-list li a.fa{background-position: 0 -594px;}
.language e.he, .language ul.language-list li a.he{background-position: 0 -616px;}
.language e.sk, .language ul.language-list li a.sk{background-position: 0 -638px;}
.language e.im, .language ul.language-list li a.im{background-position: 0 -660px;}
.language e.lt, .language ul.language-list li a.lt{background-position: 0 -682px;}
.language e.lv, .language ul.language-list li a.lv{background-position: 0 -704px;}
.language e.ms, .language ul.language-list li a.ms{background-position: 0 -726px;}
.language e.no, .language ul.language-list li a.no{background-position: 0 -748px;}
.language e.uk, .language ul.language-list li a.uk{background-position: 0 -770px;}
.language e.ur, .language ul.language-list li a.ur{background-position: 0 -792px;}
.language e.hr, .language ul.language-list li a.hr{background-position: 0 -814px;}
.language e.tw, .language ul.language-list li a.tw{background-position: 0 0;}
.language e.bn, .language ul.language-list li a.bn{background-position: 0 -836px;}
.language e.te, .language ul.language-list li a.te{background-position: 0 -859px;}
.language e.ta, .language ul.language-list li a.ta{background-position: 0 -880px;}
.language e.sr, .language ul.language-list li a.sr{background-position: 0 -902px;}
.language e.tl, .language ul.language-list li a.tl{background-position: 0 -924px;}

.language e.ca, .language ul.language-list li a.ca{background-position: 0 -968px;}
/*璇█閫夋嫨缁撴潫*/
/*澶撮儴鎼滅储*/
.header-search{ float: right;}
.header-search .search-box input.input-text {
    padding: 2px 5px;
	line-height: 26px;
	float: left;
	height: 26px;
	height: 30px\0;
	background-color: #fff;
	border: 0;
}
.search-box button.search-btn {
	color: #fff;
	cursor: pointer;
	height: 27px;
	width: 34px;
	border: none;
	float: left;
	background-color: #fd5f16;
}
.search-box button.search-btn:hover {
	background-position: -11px -125px;
}
.news .team-desc h3 {
    margin-bottom: 12px;
    font-size: 20px;
}
.bottom_logo{width:100%; text-align:center;margin-bottom: -35px;}

.bottom button.theme-btn {
    background: #fea100;
    margin-top: 0px;
}
.bottom .theme-btn {
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    min-width: 100%;
    transition: 0.5s;
    padding: 13px 41px;
    border-radius: 15px;
    background: var(--primary-color, #fea100);
    display: inline-block;
}
.copyright-inner h5{ color:#fff;}
.copyright-inner a{ color:#fff;}
.theme-btn2, a.theme-btn2 {
    color: white;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: 0.5s;
    padding: 11px 30px;
    border-radius: 5px;
    background: var(--primary-color, #fea100);
    display: inline-block;
}
.pro_btn{ text-align:center;}
.youshi{ }
.youshi .success-item:hover{ background-color:#fea100;}
.youshi .success-item:hover span{color:#fff;}
.youshi .success-item:hover i{color:#fff;}
.product_cate{ padding-top:10px;}
.product_cate li{
	list-style-position: inside;
	list-style-type: disc;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ddd;
}
.product_cate li a{color:#666;}
.enterprise{ text-align:center;}
.aboutus{ font-size:14px; line-height: 20px;}
.aboutus img{ float:right; margin-left:30px; margin-top:5px;width: 45%;}
/*wenhua s*/
 .g_hxfw {
        height: 444px;
    }
    
    .g_hxfw h2 {
        margin-bottom: 42px;
        text-align: center;
        font-size: 26px;
    }
    
    .g_hxfw h2 b {
        color: #0a164b;
    }
    
    .g_hxfw .hxfwl {
        float: left;
        width: 100%;
    }
    
    .g_hxfw .hxfwl dl {
        float: left;
        margin: 24px 2px 2px 0;
        border-top: none;
        width: 24.6%;
        height: 358px;
        position: relative;
        background: #fff;
        transition: all 1s ease 0s;
        border: 1px solid #eee;
    }
    
    .g_hxfw .hxfwl dl:hover {
        transform: translateX(-5px);
    }
    
    .g_hxfw .hxfwl dt {
        width: 299px;
        height: 258px;
        position: absolute;
        left: 0;
        top: 0;
        display: none;
        overflow: hidden;
    }
    
    .g_hxfw .hxfwl dt img {
        width: 299px;
        height: 258px;
        display: block;
    }
    
    .g_hxfw .hxfwl dd {
        padding-top: 55px;
    }
    
    .g_hxfw .hxfwl em {
        display: block;
        width: 106px;
        height: 106px;
        margin: 0 auto 15px;
    }
    
    .g_hxfw .hxfwl em .moren {
        display: block;
        transition: all 1s ease 0s;
    }
    
    .g_hxfw .hxfwl em .hover {
        display: none;
        position: absolute;
        left: 96px;
        top: 35px;
        transition: all 1s ease 0s;
    }
    
    .g_hxfw .hxfwl dl:hover em .hover {
        display: block;
    }
    
    .g_hxfw .hxfwl dl:hover dt {
        display: block;
    }
    
    .g_hxfw .hxfwl dl:hover .hover {
        transform: rotateY(180deg);
    }
    
    .g_hxfw .hxfwl h3 {
        height: 40px;
        line-height: 40px;
        text-align: center;
        font-size: 22px;
        font-weight: bold;
        color: #2c2c2c;
        margin-bottom: 20px;
        position: relative;
        z-index: 111
    }
    
    .g_hxfw .hxfwl p {
        font-size: 16px;
        line-height: 25px;
        color: #666666;
        padding: 0 28px;
        text-align: left;
        position: relative;
        z-index: 111; text-align:center;
    }
    
    .g_hxfw .hxfwl dl:hover h3 {
        color: #f68100;
    }
    
    .g_hxfw .hxfwl dl:hover p {
        color: #f68100;
    }
    
    .g_hxfw .hxfwimg {
        float: right;
        width: 298px;
        height: 518px;
        overflow: hidden;
    }
    
    .g_hxfw .hxfwimg img {
        width: 298px;
        height: 518px;
        display: block;
    }
    
    .g_hxfw2 h2 {
        margin-bottom: 42px;
        text-align: center;
        font-size: 26px;
    }
    
    .g_hxfw2 h2 b {
        color: #0a164b;
    }
.product_cate li:hover{ background-color:#fea100;}
.product_cate li:hover a{ color:#fff;}
.product_cate li:hover {
    list-style-type: none;
	padding-left:21px;
}
 @media only screen and (max-width: 768px) {
.partners-section .partner-item {
	margin-left: 5px;
	
}
.partner-wrap .partner-prev {
    left: -30px;
}
.partner-wrap .partner-next {
    right: -30px;
}
.youshi{width:50%; padding:0px;}
.success-item .success-content {
    padding-left: 10px;
}
#external-frame{ min-height:720px !important;}
.g_hxfw .hxfwl dl {
    width: 49.1%;
}
.g_hxfw {
    height: 820px;
}
.tif li {
    width: 48% !important;
    margin-right: 2% !important;
}
.fic li {
    width: 48% !important;
    margin-right: 2% !important;
}
.syx li {
   width: 48% !important;
    margin-right: 2% !important;
}
.ate li {
    width: 48% !important;
    margin-right: 2% !important;
}
.ser0 .desc p {
    font-size: 15px !important;
    line-height: 23px !important;
}
.ser0 .desc i {
    margin: 20px auto !important;
}.ser0 .desc {
    width: 93% !important;
}
.ser1 .desc p {
    font-size: 15px !important;
    line-height: 26px !important;
}
.comm-width {
    max-width: 90%;
}
.newslist li span {
    display: none;
}
.partners-section .partner-item {
	width:50% !important;
}
.widget-title {
    margin-bottom: 15px;
}
.widget ul li {
    margin-bottom: 1px;
}
.menu-widget ul li a {
    font-size: 14px;
}
.widget-title {
    font-size: 22px;
}
.rpt-100, .rpy-100 {
    padding-top: 70px !important;
}

 }
 
.content1 ul{display: flex;
    flex-wrap: wrap;}
.content1 ul li{ margin-right:16px;}
 
 