@charset "UTF-8";
/*==============================
** Main Scss
==============================*/
/*====================
** Variable Scss
====================*/
/*basic color*/
/*section background color*/
/*border color*/
/*heading color*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900|Open+Sans:400,600,700");

/*====================
** Mixins Scss
====================*/
/*====================
** Global Scss
====================*/
.slicknav_menu {
    display: none;
    /*background: #eee!important;*/
}
.slicknav_menu .slicknav_icon-bar {
    background: #a94442!important;
}
.boxed-btn {
    display: inline-block;
    padding: 10px;
    text-transform: uppercase;
    border: 2px solid #2a2a2a;
    position: relative;
    margin-top: 30px;
    margin-right: 30px;
    font-weight: 600;
    color: #222;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    z-index: 1;
    overflow: hidden;
    width: 120px;
    text-align: center;
}

.boxed-btn:after {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #2a2a2a;
    content: '';
    z-index: -1;
    left: -50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

.boxed-btn:before {
    right: -50%;
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #2a2a2a;
    content: '';
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

.boxed-btn:hover {
    border-color: #2a2a2a;
    color: #fff;
}

.boxed-btn:hover:after {
    visibility: visible;
    opacity: 1;
    left: 0;
}

.boxed-btn:hover:before {
    visibility: visible;
    opacity: 1;
    right: 0;
    left: auto;
}

.section-title p {
    margin-top: 12px;
    font-size: 22px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #000000;
    text-indent: 2em;
}

.section-title.main h2 {
    margin-bottom: 0;
    padding: 0;
    position: relative;
    color: #B2261B;
}

.section-title.main h2:after {
    width: 15px;
    height: 15px;
    left: 50%;
    bottom: -23px;
    border: 2px solid #ddd;
    position: absolute;
    background: #B2261B;
    content: '';
    -ms-transform: translate(-50%, 0) rotate(135deg);
    /* IE 9 */
    -webkit-transform: translate(-50%, 0) rotate(135deg);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, 0) rotate(135deg);
}

.section-title.main h2:before {
    position: absolute;
    left: 50%;
    bottom: -17px;
    width: 200px;
    height: 3px;
    background: #B2261B;
    content: '';
    -ms-transform: translate(-50%, 0);
    /* IE 9 */
    -webkit-transform: translate(-50%, 0);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, 0);
}

.section-title.main p {
    margin-bottom: 0;
    padding-top: 37px;
    padding-bottom: 37px;
}

.section-title.inner h2 {
    margin-bottom: 0;
    padding: 0;
    position: relative;
}

.section-title.inner h2:after {
    width: 15px;
    height: 15px;
    left: 90px;
    bottom: -23px;
    -ms-transform: rotate(135deg);
    /* IE 9 */
    -webkit-transform: rotate(135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(135deg);
    border: 2px solid #ddd;
    position: absolute;
    background: #2a2a2a;
    content: '';
}

.section-title.inner h2:before {
    position: absolute;
    left: 0;
    bottom: -17px;
    width: 200px;
    height: 3px;
    background: #2a2a2a;
    content: '';
}

.section-title.inner p {
    margin-bottom: 0;
    padding-top: 37px;
    padding-bottom: 21px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=password],
input[type=tel],
input[type=number] {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    width: 100%;
    margin-bottom: 30px;
}

/*===============================
** Normalize/Reset Scss File
===============================*/
/*====================
** Normalize Scss
====================*/
html {
    font-family: "Open Sans", sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    /*  base font size  15px= 1em*/
    margin: 0;
    color: #222;
}

h1 {
    font-size: 48px;
    line-height: 1.0833333333333333;
    margin-bottom: 0.5416666666666666em;
}

h2 {
    font-size: 36px;
    line-height: 1.4444444444444444;
    margin-bottom: 0.7222222222222222em;
}

h3 {
    font-size: 24px;
    line-height: 1.0833333333333333;
    margin-bottom: 1.0833333333333333em;
}

h4 {
    font-size: 21px;
    line-height: 1.2380952380952381;
    margin-bottom: 1.2380952380952381em;
}

h5 {
    font-size: 18px;
    line-height: 1.4444444444444444;
    margin-bottom: 1.4444444444444444em;
}

h6 {
    font-size: 16px;
    line-height: 1.625;
    margin-bottom: 1.625em;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

p {
    font-size: 16px;
    color: #222;
    margin: 0 0 1.625em;
    line-height: 1.625;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

a {
    color: #222;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}

a i {
    padding: 0 2px;
}

img {
    max-width: 100%;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.aligncenter {
    clear: both;
    display: block;
    margin: 0 auto 1.75em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

/*=========================
** Sections Scss File
=========================*/
/*==============================
** 	Navbar
==============================*/
.nav-area {
    background: #fff;
    position: absolute;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 2;
    padding-top: 8px;
    padding-bottom: 12px;
    /*background: #f0f;*/
    background-image: url(../img/tabBack.png);
}

.nav-area.nav-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 9;
    background: #fff;
    padding-top: 8px;
    padding-bottom: 12px;
    background-image: url(../img/tabBack.png);
}

.nav-area .logo {
    text-transform: uppercase;
    font-size: 24px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #000000;
    display: flex;
    align-items: center;
    width: 300px;

    .img {
        width: 46px;
        height: 35px;
        margin-right: 20px;
        margin-top: 5px;
    }
}

.nav-area ul {
    text-align: right;
    margin-top: 10px;
}

.nav-area ul li {
    padding: 0;
    margin: 0;
    display: inline-block;
    position: relative;
}

.nav-area ul li:before {
    position: absolute;
    right: 0;
    bottom: 20px;
    width: 10px;
    height: 10px;
    content: '';
    border-bottom: 2px solid #B2261B;
    border-right: 2px solid #B2261B;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

.nav-area ul li:after {
    position: absolute;
    left: 0px;
    top: 20px;
    width: 10px;
    height: 10px;
    content: '';
    border-top: 2px solid #B2261B;
    border-left: 2px solid #B2261B;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

.nav-area ul li a {
    padding: 5px 15px;
    text-transform: uppercase;
    color: #575757 ;
    font-weight: 400;
    font-size: 18px;
    position: relative;
}

.nav-area ul li a:before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #B2261B;
    border-right: 2px solid #B2261B;
    content: '';
    visibility: hidden;
    opacity: 0;
    transition: .5s ease-in;
}

.nav-area ul li a:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #B2261B;
    content: '';
    border-left: 2px solid #B2261B;
    visibility: hidden;
    opacity: 0;
    transition: .5s ease-in;
}

.nav-area ul li a.active:after {
    visibility: visible;
    opacity: 1;
}

.nav-area ul li a.active:before {
    visibility: visible;
    opacity: 1;
}

.nav-area ul li:hover:after {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.nav-area ul li:hover:before {
    visibility: visible;
    opacity: 1;
    bottom: -4px;
}

/*==============================
** Header Scss
==============================*/
.header-area {
    position: relative;
    display: table;
    width: 100%;
    height: 100vh;
    /*z-index: 1;*/
}

.header-area:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    content: '';
    opacity: .8;
}

.header-area .header-inner {
    display: table-cell;
    vertical-align: middle;
    color: #fff;
    .header-tet {
        width: 100%;
        padding-left: 150px;
        span {
            display: block;
            font-size: 36px;
            font-family: ABeeZee, ABeeZee;
            font-weight: 400;
            color: #000000;
        }

        h1 {
            font-size: 72px;
            font-family: PingFang SC, PingFang SC;
            font-weight: 600;
            color: #000000;
        }

        .header-con {
            display: flex;
            align-items: center;
            margin: 0 auto;
            font-size: 20px;
            padding-top: 10px;
            font-family: PingFang SC, PingFang SC;
            font-weight: 400;
            color: #000000;

            div {
                padding-right: 200px;
            }

            img {
                width: 20px;
            }
        }
    }
    .header-button{
        width: 100%;
        position: absolute;
        bottom: 0;
        background: #FFFDF9;
        display: flex;
        align-items: center;
        div{
            padding: 20px 0;
            width: 25%;
            span{
                font-size: 24px;
                font-family: PingFang SC, PingFang SC;
                font-weight: 400;
                color: #353535;
                display: block;
                text-align: center;
            }
            text{
                font-size: 16px;
                font-family: PingFang SC, PingFang SC;
                font-weight: 400;
                color: #353535;
                display: block;
                text-align: center;
            }
        }
    }

}

.header-area .header-inner h1 {
    color: #fff;
    margin-bottom: 0;
    font-size: 80px;
    font-weight: 900;
}

.header-area .header-inner h6 {
    color: #fff;
    display: inline-block;
}

.header-area .header-inner .typed-cursor {
    font-size: 25px !important;
    font-weight: 300;
    opacity: 1;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: blink;
    -moz-animation-name: blink;
    -o-animation-name: blink;
    animation-name: blink;
    -webkit-animation-direction: "";
    -moz-animation-direction: "";
    -o-animation-direction: "";
    animation-direction: "";
}

.header-bg {
    background-image: url(../img/header-bg-1.png);
    background-position: center;
    background-size: cover;
}

.scroll-down {
    display: inline-block;
    height: 35px;
    width: 20px;
    border: 2px solid rgba(126, 119, 119, 0.5);
    border-radius: 10px;
    position: absolute;
    left: 50%;
    bottom: 30px;
    -ms-transform: translate(-50%, 0);
    /* IE 9 */
    -webkit-transform: translate(-50%, 0);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, 0);
}

.scroll-down span {
    height: 6px;
    width: 4px;
    border-radius: 50%;
    display: inline-block;
    background-color: rgba(16, 15, 15, 0.49);
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: scrollDown;
    -moz-animation-name: scrollDown;
    -o-animation-name: scrollDown;
    animation-name: scrollDown;
    -webkit-animation-direction: ease-in;
    -moz-animation-direction: ease-in;
    -o-animation-direction: ease-in;
    animation-direction: ease-in;
    padding-top: 5px;
    margin-top: 5px;
    margin-left: 6px;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes scrollDown {
    0% {
        opacity: 0.5;
        margin-bottom: 20px;
    }
    50% {
        opacity: 1;
        margin-bottom: 1px;
    }
    100% {
        opacity: 0;
        margin-bottom: 0px;
    }
}

@-moz-keyframes scrollDown {
    0% {
        opacity: 0.5;
        margin-bottom: 20px;
    }
    50% {
        opacity: 1;
        margin-bottom: 1px;
    }
    100% {
        opacity: 0;
        margin-bottom: 0px;
    }
}

@-o-keyframes scrollDown {
    0% {
        opacity: 0.5;
        margin-bottom: 20px;
    }
    50% {
        opacity: 1;
        margin-bottom: 1px;
    }
    100% {
        opacity: 0;
        margin-bottom: 0px;
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0.5;
        margin-bottom: 20px;
    }
    50% {
        opacity: 1;
        margin-bottom: 1px;
    }
    100% {
        opacity: 0;
        margin-bottom: 0px;
    }
}

/*==============================
** About Scss
==============================*/
.about-area {
    background-image: url(../img/background_back.png);
    background-size: 100% 100%;
    padding-top: 67px;
    padding-bottom: 85px;
}

.about-area li {
    display: inline-block;
    padding: 10px 0px;
    width: 45%;
}

/*==============================
** Skill Scss
==============================*/
.skill-section {
    background-image: url(../img/background_back.png);
    background-size: 100% 100%;
    padding-top: 68px;
    padding-bottom: 68px;
}

#circle-1, #circle-2, #circle-3, #circle-4 {
    text-align: center;
    position: relative;
    display: inline-block;
}

#circle-1 span, #circle-2 span, #circle-3 span, #circle-4 span {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 25px;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

/*====================
** Counter 
====================*/
.counter-section {
    padding-top: 94px;
    padding-bottom: 95px;
    background-color: #eee;
}

.counter-section li {
    display: inline-block;
    width: 24%;
    text-align: center;
}

.counter-section .single-counter-item .icon {
    font-size: 40px;
    padding-bottom: 20px;
}

.counter-section .single-counter-item h4 {
    margin-bottom: 0;
}

.counter-section .single-counter-item .counter-number {
    font-weight: 900;
    font-size: 40px;
    position: relative;
}

.counter-section .single-counter-item .counter-number:after {
    position: absolute;
    left: 50%;
    top: -10px;
    background: #ddd;
    width: 50px;
    height: 2px;
    content: '';
    -ms-transform: translate(-50%, 0);
    /* IE 9 */
    -webkit-transform: translate(-50%, 0);
    /* Chrome, Safari, Opera */
    transform: translate(-50%, 0);
}

/*==========================
** Education and experience
==========================*/
.resome-area {
    padding-top: 66px;
    padding-bottom: 94px;
}

.resome-area .boxed-btn {
    width: 200px;
    margin-right: 0;
    margin-top: 12px;
}

.education-details, .working-details {
    border-left: 2px solid #222;
    position: relative;
    padding-top: 60px;
    padding-left: 30px;
}

.education-details .icon, .working-details .icon {
    display: inline-block;
    font-size: 20px;
    border: 1px solid #222;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    transform: rotate(135deg);
    background: #222;
    color: #fff;
    position: absolute;
    left: -21px;
    top: 8px;
}

.education-details .icon i.fa, .working-details .icon i.fa {
    transform: rotate(-135deg);
    text-align: center;
    line-height: 40px;
}

.education-details .single-education-list, .working-details .single-education-list {
    padding: 20px;
    box-shadow: 0 0 5px #ddd;
    margin-bottom: 30px;
    border: 1px solid #fff;
    padding-top: 15px;
}

.education-details .single-education-list h4, .working-details .single-education-list h4 {
    margin-bottom: 3px;
    position: relative;
}

.education-details .single-education-list h4:after, .working-details .single-education-list h4:after {
    position: absolute;
    left: -59px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: #222;
    content: '';
    transform: rotate(135deg);
}

.education-details .single-education-list .duration, .working-details .single-education-list .duration {
    font-size: 14px;
    display: block;
    padding-bottom: 20px;
    opacity: .8;
}

.education-details .single-education-list p, .working-details .single-education-list p {
    margin-bottom: 0;
}

/*==========================
** Education and experience
==========================*/
.service-section {
    background-image: url(../img/background_back.png);
    background-size: 100% 100%;
    padding-top: 67px;
    padding-bottom: 70px;
}
.service-inner .single-service-box1{
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.25);
    border-radius: 0px 0px 0px 0px;
    transition: .5s ease-in;
}
.service-inner .single-service-box1 h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #592121;
    padding: 0 20px 0px 20px;
}
.service-inner .single-service-box1 p {
    margin-bottom: 0;
    font-size: 16px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #8B8B8B;
    padding: 0 20px 20px 20px;
}
.service-inner .single-service-box {
    text-align: center;
    padding: 45px 60px;
    /*border: 1px solid #f1f1f1;*/
    background-image: url(../img/solve_back.png);
    background-size: 100% 100%;
    box-shadow: 0 13px 59px 0 rgba(132, 141, 178, 0.22);
    transition: .5s ease-in;
    position: relative;
    margin-bottom: 20px;
}
.service-inner .single-service-box:after{
    content: "";
    width:100%;
    height:100%;
    position: absolute;
    left:0;
    top:0;
    background: rgba(255,255,255,0.5);
    z-index: 1;
}
.service-inner .single-service-box .single-service-box_1{
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #D4584F 0%, #B2261B 100%);
    z-index: 2;
    position: relative;
}
.service-inner .single-service-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: #FFFFFF;
    padding: 0 20px 20px 20px;
}

.service-inner .single-service-box .icon {
    font-size: 30px;
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    line-height: 80px;
    color: #222;
    margin-bottom: 10px;
}

.service-inner .single-service-box h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 22px;
    color: #FFFFFF;
}

.service-inner .single-service-box:hover {
    box-shadow: 0 0 40px #777;
}
.service-inner .single-service-box1:hover {
    box-shadow: 0 0 40px #777;
}
/*====================
** My Team 
====================*/
.team-area {
    padding-top: 67px;
    padding-bottom: 102px;
}

.single-team-box .team-member-thumb {
    border: 1px solid #f1f1f1;
}

.single-team-box .team-member-thumb img {
    display: block;
    margin: 0 auto;
}

.single-team-box .content {
    text-align: center;
}

.single-team-box .content h4 {
    text-transform: uppercase;
    margin-bottom: 2px;
}

.single-team-box .content .prosition {
    font-size: 14px;
}

.single-team-box .content .social-links {
    margin-top: 35px;
}

.single-team-box .content .social-links li {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #2a2a2a;
    background-color: #2a2a2a;
    line-height: 40px;
    -ms-transform: rotate(135deg);
    /* IE 9 */
    -webkit-transform: rotate(135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(135deg);
    margin-right: 10px;
    cursor: pointer;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

.single-team-box .content .social-links li:hover {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
}

.single-team-box .content .social-links li:hover i {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
    color: #fff;
}

.single-team-box .content .social-links a i {
    -ms-transform: rotate(-135deg);
    /* IE 9 */
    -webkit-transform: rotate(-135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-135deg);
    color: #fff;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

/*====================
** Portofoio
====================*/
.portfolio-area {
    padding-top: 67px;
    padding-bottom: 94px;
}

.single-porfolio-item {
    border: 1px solid #f1f1f1;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #FEF4F4 0%, #fff 100%);
    border-radius: 6px 6px 6px 6px;
}

/*.single-porfolio-item:after {*/
/*    position: absolute;*/
/*    content: '';*/
/*    left: -50%;*/
/*    top: 0;*/
/*    width: 50%;*/
/*    height: 100%;*/
/*    background: #000;*/
/*    -webkit-transition: 0.5s ease-in;*/
/*    -moz-transition: 0.5s ease-in;*/
/*    transition: 0.5s ease-in;*/
/*    visibility: hidden;*/
/*    opacity: 0;*/
/*}*/

.single-porfolio-item:before {
    position: absolute;
    content: '';
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: #D1574B;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    visibility: hidden;
    opacity: 1;
}

.single-porfolio-item.grid-size {
    width: 19%;
    margin: 5px;
}
.single-porfolio-item.grid-size p{
    font-size: 24px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #BF0606;
    padding: 61px 0;
}
.single-porfolio-item:hover .hover {
    visibility: visible;
    opacity: 1;
}

.single-porfolio-item:hover:after {
    visibility: visible;
    opacity: .6;
    left: 0;
}

.single-porfolio-item:hover:before {
    visibility: visible;
    opacity: .6;
    right: 0;
}

.single-porfolio-item .hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}
.single-porfolio-item .hover h1{
    font-size: 14px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #FAFAFA;
    padding: 50px 20px 0 20px;
    line-height: 20px;
}

.single-porfolio-item .hover .icon {
    color: #fff;
    z-index: 1;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border: 1px solid #fff;
    line-height: 40px;
    text-align: center;
    background-color: #222;
    opacity: 1;
    -ms-transform: rotate(135deg);
    /* IE 9 */
    -webkit-transform: rotate(135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(135deg);
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    cursor: pointer;
}

.single-porfolio-item .hover .icon:last-child {
    margin-right: 0;
}

.single-porfolio-item .hover .icon a {
    color: #fff;
}

.single-porfolio-item .hover .icon i {
    -ms-transform: rotate(-135deg);
    /* IE 9 */
    -webkit-transform: rotate(-135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-135deg);
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
}

.single-porfolio-item .hover .icon:hover {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
    background-color: #000;
}

.single-porfolio-item .hover .icon:hover i {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
}

.porfolio-menu {
    margin-bottom: 40px;
}

.porfolio-menu li {
    display: inline-block;
    padding: 5px 20px;
    cursor: pointer;
    position: relative;
}

.porfolio-menu li:after {
    position: absolute;
    content: '';
    top: 20px;
    left: 0;
    width: 12px;
    height: 12px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    visibility: hidden;
    opacity: 0;
}

.porfolio-menu li:before {
    right: 0;
    bottom: 20px;
    width: 12px;
    height: 12px;
    position: absolute;
    content: '';
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    visibility: hidden;
    opacity: 0;
}

.porfolio-menu li.active:after {
    visibility: visible;
    opacity: 1;
    top: 0px;
}

.porfolio-menu li.active:before {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.porfolio-menu li:hover:after {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.porfolio-menu li:hover:before {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

 
.padding-top-100 {
    padding-top: 100px;
}

.testimonial-section {
    padding-top: 67px;
    background-color: #eee;
}

#testimonial-slider {
    margin-bottom: 58px;
}

#testimonial-slider .testimonial {
    margin: 0 20px 40px;
}

#testimonial-slider .testimonial .clients-thumb {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

#testimonial-slider .testimonial .clients-thumb img {
    border-radius: 50%;
}

#testimonial-slider .testimonial .description {
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}

#testimonial-slider .testimonial .title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

#testimonial-slider .testimonial .post {
    display: block;
    font-size: 14px;
    color: #191919;
}

#testimonial-slider .testimonial .testimonial-content {
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}

#testimonial-slider .testimonial .testimonial-content:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}

#testimonial-slider .testimonial .testimonial-content .testimonial-icon {
    width: 50px;
    height: 45px;
    background: #222;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}

#testimonial-slider .testimonial .testimonial-content .testimonial-icon:before {
    content: "";
    border-bottom: 16px solid #080808;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}

/*====================
** Blog
====================*/
.single-blog-post{
    margin: 0 auto;
}
.single-blog-post h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}
.cover strong{
    font-size: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    color: #592121;
}
.cover li{
    font-size: 40px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    color: #B2261B;
}
ul.post-meta li {
    display: block;
    padding-right: 5px;
    font-size: 14px;
    text-align: center;
}

ul.post-meta li a {
    font-weight: 600;
}

ul.post-meta {
    margin-bottom: 20px;
    font-size: 24px;
    font-family: PingFang HK, PingFang HK;
    font-weight: bold;
    color: #7A808C;
    line-height: 30px;
}

.single-blog-post p {
    margin-bottom: 0;
}
.post-thumb img{
    display: block;
    width: 130px;
    height: 140px;
    margin: 0 auto;
}
.img-wmsj{
    width: 100%;
    height: 100%;
}
section.blog-area {
    background-image: url(../img/background_back.png);
    background-size: 100% 100%;
    padding-top: 67px;
    padding-bottom: 96px;
}

/*====================
** Contact 
====================*/
.contact-area {
    background-color: #eee;
    padding-top: 67px;
    padding-bottom: 70px;
}

.single-contact-box {
    text-align: center;
    border: 1px solid #fff;
    background: #fff;
    box-shadow: 0 0 5px #ddd;
    padding-top: 10px;
    padding-bottom: 13px;
    margin-bottom: 30px;
}

.single-contact-box h4 {
    margin-bottom: 10px;
}

.single-contact-box p {
    margin-bottom: 0;
}

.contact-form-wrapper input[type=text] {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.contact-form-wrapper input[type=email] {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.contact-form-wrapper textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.contact-form-wrapper .boxed-btn {
    width: 180px;
    margin-top: 11px;
    background: #fff;
    position: relative;
}

.contact-form-wrapper .boxed-btn:hover {
    background-color: #2A2A2A;
}

/*==================
** preloader 
===================*/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9;
    display: table;
}

.preloader-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.preloader-inner .cssload-box-loading {
    width: 44px;
    height: 44px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.preloader-inner .cssload-box-loading:before {
    content: '';
    width: 44px;
    height: 4px;
    background: black;
    opacity: 0.1;
    position: absolute;
    top: 52px;
    left: 0;
    border-radius: 50%;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: shadow;
    -moz-animation-name: shadow;
    -o-animation-name: shadow;
    animation-name: shadow;
    -webkit-animation-direction: linear;
    -moz-animation-direction: linear;
    -o-animation-direction: linear;
    animation-direction: linear;
}

.preloader-inner .cssload-box-loading:after {
    content: '';
    width: 44px;
    height: 44px;
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: cssload-animate;
    -moz-animation-name: cssload-animate;
    -o-animation-name: cssload-animate;
    animation-name: cssload-animate;
    -webkit-animation-direction: linear;
    -moz-animation-direction: linear;
    -o-animation-direction: linear;
    animation-direction: linear;
}

@-webkit-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(8px) rotate(22.5deg);
    }
    50% {
        transform: translateY(16px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 35px;
    }
    75% {
        transform: translateY(8px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@-moz-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(8px) rotate(22.5deg);
    }
    50% {
        transform: translateY(16px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 35px;
    }
    75% {
        transform: translateY(8px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@-o-keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(8px) rotate(22.5deg);
    }
    50% {
        transform: translateY(16px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 35px;
    }
    75% {
        transform: translateY(8px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes cssload-animate {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        transform: translateY(8px) rotate(22.5deg);
    }
    50% {
        transform: translateY(16px) scale(1, 0.9) rotate(45deg);
        border-bottom-right-radius: 35px;
    }
    75% {
        transform: translateY(8px) rotate(67.5deg);
    }
    100% {
        transform: translateY(0) rotate(90deg);
    }
}

@-webkit-keyframes shadow {
    0%,
    100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1);
    }
}

@-moz-keyframes shadow {
    0%,
    100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1);
    }
}

@-o-keyframes shadow {
    0%,
    100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1);
    }
}

@keyframes shadow {
    0%,
    100% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 1);
    }
}

/*==================
** Footer  
===================*/
.footer-area {
    background-image: url(../img/background_back.png);
    background-size: 100% 100%;
    padding-top: 25px;
    padding-bottom: 17px;
}

.social-area {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    text-align: left;
    justify-content: center;

}
.social-area ul{
    width: 50%;
    /*padding: 0 50px;*/
    /*box-sizing: border-box;*/
    /*padding-right: 100px;*/
}
.social-area ul p{
    font-size: 14px;
    font-family: PingFang SC, PingFang SC;
    font-weight: bold;
    color: #000000;
}
.social-area li {
    font-size: 12px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #677383;
    padding-top: 10px;
    margin:0!important;
}
.social-icon{
    display: flex;
    align-items: center;
}
.social-icon img{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}
.social-icon li{
    text-align: left;
    font-size: 12px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #677383;
    padding: 5px 0;
}
.Contact{
    width: 197px;
    height: 35px;
    background: #DF0020;
    border-radius: 0px 0px 0px 0px;
    text-align: center;
    line-height: 35px;
    font-size: 12px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    margin-top: 20px;
}
.copyright-text p {
    margin-bottom: 0;
    font-size: 14px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    color: #677383;
    text-align: center;
    padding-top: 20px;
}

.go-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    line-height: 40px;
    text-align: center;
    -ms-transform: rotate(135deg);
    /* IE 9 */
    -webkit-transform: rotate(135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(135deg);
    -webkit-transition: 0.5s ease-in;
    -moz-transition: 0.5s ease-in;
    transition: 0.5s ease-in;
    cursor: pointer;
    border: 2px solid #fff;
}

.go-top i {
    -ms-transform: rotate(-135deg);
    /* IE 9 */
    -webkit-transform: rotate(-135deg);
    /* Chrome, Safari, Opera */
    transform: rotate(-135deg);
}

.go-top:hover {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
}

.go-top:hover i {
    -ms-transform: rotate(0deg);
    /* IE 9 */
    -webkit-transform: rotate(0deg);
    /* Chrome, Safari, Opera */
    transform: rotate(0deg);
}

/*# sourceMappingURL=style.css.map */
