/*
------------------------------------------------------------------------------
* Template Name    : Halman | Personal Portfolio Html5 One Page Template     *
* Author           : ParExcellence                                           *
* Version          : 1.0.0                                                   *
* 更多模板：http://www.bootstrapmb.com/                                      * 
*-----------------------------------------------------------------------------
*/
/************************
    1.BASIC             *
    2.HELPER            *
    3.PRELOADER         *
    4.HEADER            *
    5.HOME              *
    6.ABOUT US          *
    7.SERVICES          *
    8.PORTFOLIO         *
    9.TESTIMONIAL       *
    10.CONTACTUS        *
    11.RESPONSIVE       *
************************/
/*======================
        1.BASIC
========================*/
body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    font-weight: 300;
    background-color: #fff;
    animation: pageAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    letter-spacing: 1px;
}

.mdi-10px.mdi-set, .mdi-10px.mdi::before {
    font-size: 10px;
}

@keyframes pageAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

.font-20 {
    font-size: 20px;
}

p {
    line-height: 1.6;
    font-size: 15px;
}

a,
a:hover,
a:focus,
button,
button:focus {
    text-decoration: none !important;
    outline: none !important;
}
/*==========================
        2.HELPER
============================*/
.form-control {
    padding: 7px 20px;
    height: 40px;
    font-size: 14px;
    font-weight: 300;
    -webkit-box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
    border: none;
    background: #f1f3f6;
}

    .form-control:focus {
        -webkit-box-shadow: inset 3px 3px 3px #dadada, inset -3px -3px 3px #fafafa;
        border: none;
        background: #f1f3f6;
    }

.form-group label {
    font-size: 14px;
    font-weight: 400;
}

section {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100%) !important;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    z-index: 0;
    opacity: 0;
    background-color: #f1f3f6;
    -webkit-transition: opacity 0s ease .6s,-webkit-transform .6s ease .6s;
    transition: transform .6s ease .6s,opacity 0s ease .6s,-webkit-transform .6s ease .6s;
    padding-left: 80px;
}

    section.active {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        z-index: 2;
        opacity: 1;
        -webkit-transition: -webkit-transform .6s ease;
        transition: -webkit-transform .6s ease;
        transition: transform .6s ease,-webkit-transform .6s ease;
    }

.section-area {
    display: table;
    width: 100%;
    height: 100%;
}

.section-content {
    vertical-align: middle;
    display: table-cell;
    padding: 80px 0;
}

.section_title h2 {
    position: relative;
    margin-bottom: 25px;
}

    .section_title h2 span {
        font-size: 40px;
        font-weight: 600;
    }

    .section_title h2::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        height: 70px;
        width: 70px;
        background: url(../images/title-decoration.png) no-repeat;
        background-size: 70px;
        z-index: 0;
    }

.section_subtitle {
    max-width: 750px;
    margin-bottom: 0;
}

.bg-vector {
    background: url('../images/services/service-bg.jpg') no-repeat fixed;
    background-size: cover;
}

.btn-hover {
    color: #fff;
    min-width: 140px;
    height: 48px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    font-size: 14px;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

    .btn-hover:hover, .btn-hover:focus, .btn-hover:active {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
/*==========================
        3.PRELOADER
============================*/
.spinner-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.75rem;
    height: 1.25rem;
    margin: -0.625rem 0 0 -1.875rem;
    text-align: center;
}

    .spinner > div {
        display: inline-block;
        width: 1rem;
        height: 1rem;
        border-radius: 100%;
        background-color: #FF9E2B;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
        transform: scale(1.0);
    }
}
/*==========================
        4.HEADER
============================*/
header {
    width: 80px;
    border-radius: 0 1.25rem 1.25rem 0;
    position: fixed;
    z-index: 1030;
    top: 0;
    left: 0;
    overflow-x: hidden;
    height: 100vh;
    min-height: 100vh;
    background: #fff;
    -webkit-box-shadow: 5px 6px 13px 0px rgba(0,0,0,0.08);
    -moz-box-shadow: 5px 6px 13px 0px rgba(0,0,0,0.08);
    box-shadow: 5px 6px 13px 0px rgba(0,0,0,0.08);
}

.menu-list {
    height: calc(100vh - 100px);
    justify-content: center;
    overflow-y: auto;
    overflow-x:hidden;
    align-content:flex-start;
}

    .menu-list .list-group-item {
        background-color: transparent;
        border: none;
        padding: 0.5rem;
    }

    .menu-list li a .menu-icon {
        width: 50px;
        height: 50px;
        display: block;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 1px 1px 5px #cdcdcd, -3px -3px 3px #fafafa;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-list span {
        font-size: 10px;
        font-weight: 400;
        color: #333;
        transition: all 0.2s;
    }

    .menu-list li a:hover .menu-icon, .menu-list li a.active .menu-icon {
        box-shadow: inset 1px 1px 5px #cdcdcd, inset -3px -3px 3px #fafafa;
        color: #FF9E2B;
    }

    .menu-list li a:hover span, .menu-list li a.active span {
        color: #FF9E2B;
    }

    .menu-list li a i {
        display: block;
        font-size: 24px;
        position: relative;
        transition: all 0.2s;
    }

header .navbar-brand {
    display: block;
    margin-right: 0;
    color: #333;
    height: 100px;
}

.menu-toggler {
    display: none;
    position: fixed;
    top: 25px;
    left: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index:9999;
}

    .menu-toggler span {
        display: block;
        width: 40px;
        height: 40px;
        margin: auto;
        text-align: center;
        border-radius: 10px;
        line-height: 44px;
        font-size: 22px;
        background-color: #FF9E2B;
        color: #fff;
    }

header .navbar-brand span {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    margin-top: -1rem;
}

header .navbar-brand b {
    display: block;
    text-align: center;
    font-weight: 700;
    font-size: 3rem;
}
/*==========================
        5.HOME
============================*/
.home-bg {
    background: url('../images/slider-img/home-bg.jpg') center no-repeat fixed;
    background-size: cover;
    overflow:hidden;
}

    .home-bg .heading {
        color: #fff;
        font-size: 60px;
        line-height: 60px;
        margin-bottom: 15px;
    }

    .home-bg .para-txt {
        font-size: 20px;
        margin-bottom: 20px;
    }

.top-subhidding {
    color: #999;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-text .wel-txt {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.hero-text h1 {
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 60px;
    margin-bottom: 5px;
}

    .hero-text h1 span {
        font-weight: 700;
        display: block;
    }

.informative-txt {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .informative-txt li {
        color: #fff;
        font-size: 16px;
    }
/* ---- particles container ---- */
.particles__content {
    position: absolute;
    width: 40%;
    padding: 4rem;
}

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js, #particles-js1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.particles-js-canvas-el {
    position: relative;
    z-index: 1;
}
/*==========================
        6.ABOUT US
============================*/
.line-vector {
    background: url(../images/contact/contact-bg.png);
    -webkit-animation: slide 20s linear infinite;
    -moz-animation: slide 20s linear infinite;
    animation: slide 20s linear infinite;
    height: 100%;
}

@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -400px 0;
    }
}

.about-img-box {
    margin-top: 30px;
}

    .about-img-box .image {
        padding: 15px;
        background: #fff;
        -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
        -moz-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
        box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1)
    }

.about-text-block {
    margin-top: 30px;
}

.about-content h4 {
    font-size: 32px;
    font-weight: 600;
}

.about-content .text {
    font-size: 14px;
    line-height: 25px;
    margin-top: 20px;
}

.counter-block {
    margin-top: 30px;
}

    .counter-block .mdi {
        font-size: 50px;
        color: #ccc;
        float: left;
    }

    .counter-block .number em {
        font-style: normal;
        font-size: 60px;
        color: #333743;
        font-weight: 700;
    }

    .counter-block p {
        font-size: 14px;
    }

.expert-box {
    margin-top: 30px;
    padding: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f1f3f6;
    border-radius: 1.25rem;
    box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
    cursor: pointer;
}

    .expert-box:hover {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    .expert-box img {
        margin-bottom: 20px;
        width: 80px;
        height: 80px;
    }

    .expert-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

/*==========================
        7.SERVICES
============================*/
.service-box {
    background: #3b5ed4;
    height: 280px;
    padding: 30px;
    margin-top: 30px;
}

.service-icon-box {
    width: 170px;
    height: 170px;
    float: left;
    text-align: center;
    background: #3e66db;
    position: relative;
    transition: .5s ease-in-out;
}

    .service-icon-box p {
        font-size: 60px;
        color: #5374de;
        line-height: 170px;
        transition: .5s ease-in-out;
    }

    .service-icon-box i {
        position: absolute;
        width: 80px;
        height: 80px;
        background: #fff;
        line-height: 80px;
        bottom: -14px;
        font-size: 36px;
        color: #FF9E2B;
        right: -10px;
    }

.service-content {
    padding-left: 206px;
}

    .service-content h3 {
        color: #fff;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .service-content p {
        color: #fff;
        margin-bottom: 15px;
    }

.service-btn {
    color: #fff;
    border-bottom: 1px solid #fff;
}

    .service-btn:hover {
        color: #fff;
    }

.service-box:hover .service-icon-box {
    background: #FF9E2B;
}

    .service-box:hover .service-icon-box p {
        color: #fff;
    }
/*==========================
        8.PORTFOLIO
============================*/
.filters {
    margin: 30px auto;
    padding: 0;
}

    .filters li a {
        display: inline-block;
        font-size: 14px;
        line-height: 30px;
        padding: 5px 20px 5px;
        color: #212121;
        border-radius: 30px;
        background: #f1f3f6;
        box-shadow: 3px 3px 3px #e1e1e1, -3px -3px 3px #fafafa;
    }

        .filters li a.active {
            font-weight: 400;
            background: #FF9E2B;
            color: #fff;
        }

.portfolio-section .portfolio-item {
    margin-top: 30px;
}

    .portfolio-section .portfolio-item .image-border {
        background: #f1f3f6;
        border-radius: 1.25rem;
        box-shadow: 3px 3px 3px #dfdfdf, -3px -3px 3px #fafafa;
        padding: 5px;
    }

.portfolio-section .portfolio-box {
    position: relative;
    border-radius: 1.25rem;
}

.portfolio-section .image-border img {
    width: 100%;
    border-radius: 1rem;
}

.portfolio-section .portfolio-box::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    opacity: 0;
    transform: scale(0.8);
    transition: .5s all ease;
    border-radius: 1.25rem;
    background-color: rgba(0,0,0,0.6)
}


.portfolio-section .portfolio-box:hover::before {
    transform: scale(1);
    opacity: 1;
}

.portfolio-section .img-overlay {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .5s ease;
}

.portfolio-section .portfolio-box:hover .img-overlay {
    opacity: 1;
}

.portfolio-section .portfolio-icon a {
    background-color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 8px;
    display: inline-block;
    border-radius: 40px;
    transition: all 0.3s ease;
    color: #FF9E2B;
}

.portfolio-section .img-overlay h5 {
    color: #fff;
}

.portfolio-section .portfolio-icon a i {
    font-size: 26px;
    font-weight: 700;
}
/*==========================
        9.TESTIMONIAL
============================*/

.client-slider {
    margin-top: 30px;
}

    .client-slider .item .testi-content {
        margin: 15px 15px 15px 40px;
        padding: 30px 40px 40px 35px;
        background: #f1f3f6;
        border-radius: 8px;
        box-shadow: 3px 3px 3px #dfdfdf, -3px -3px 3px #fafafa;
    }

        .client-slider .item .testi-content h3 {
            position: relative;
            font-size: 17px;
            color: #222222;
            font-weight: 700;
            margin-bottom: 30px;
        }

            .client-slider .item .testi-content h3::before {
                position: absolute;
                left: 0;
                bottom: -10px;
                content: "";
                width: 86px;
                height: 1px;
                background: #DDDDDD;
            }

        .client-slider .item .testi-content p {
            font-size: 13px;
            color: #585858;
            line-height: 24px;
            font-style: italic;
        }

        .client-slider .item .testi-content .rating {
            text-align: right;
        }

            .client-slider .item .testi-content .rating span {
                color: #FF9E2B;
                font-size: 20px;
            }

    .client-slider .item .img-holder {
        position: relative;
        padding: 20px 0px 20px 185px;
    }

    .client-slider .item .img-box {
        position: absolute;
        left: 40px;
        top: -48px;
    }

        .client-slider .item .img-box img {
            border-radius: 5px;
        }

    .client-slider .item .img-holder .designation {
        font-size: 11px;
        color: #999;
        font-style: italic;
        font-weight: 600;
    }

    .client-slider .item .img-holder .name h4 {
        font-size: 20px;
        font-weight: 700;
    }

    .client-slider .owl-nav {
        position: relative;
        text-align: center;
        left: -95px;
        top: -35px;
    }

        .client-slider .owl-nav .owl-prev, .client-slider .owl-nav .owl-next {
            display: inline-block;
            position: relative;
            color: #000 !important;
            width: 30px;
            height: 30px;
            text-align: center;
            margin: 0px 5px;
            transition: all 700ms ease;
            cursor: pointer;
            background: #f1f3f6 !important;
            box-shadow: 3px 3px 3px #dadada, -3px -3px 3px #fafafa;
            border-radius: 6px;
        }

        .client-slider .owl-nav .owl-prev {
            top: 0;
            right: 0;
        }

        .client-slider .owl-nav .owl-next {
            top: 0;
            right: 0;
        }
/*==========================
        10.CONTACTUS
============================*/
.contact_form {
    padding: 30px;
    background: #fff;
    border-radius: 30px;
}
.contact-box {
    box-shadow: 3px 3px 3px #dfdfdf, -3px -3px 3px #fafafa;
}

.form-group .icons {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 100px;
    font-size: 18px;
}

.contact-info {
    margin-top: 30px;
}

    .contact-info .icon i {
        font-size: 40px;
        color: #FF9E2B;
    }

.text-theme {
    color: #FF9E2B;
    transition: all 0.2s;
}

    .text-theme:hover {
        color: #000;
    }

.custom-form .form-group {
    margin: 20px 0 0;
}

.form-box, .contact-img {
    margin-top: 30px;
}

.send-btn {
    margin-top: 30px;
    background: #FF9E2B;
    -webkit-box-shadow: inset 3px 3px 3px #d77807, inset -3px -3px 3px #FF9E2B;
}

    .send-btn:hover {
        color: #fff;
    }

.copy-right {
    position: relative;
    top: 5rem;
    font-size: 14px;
}

    .copy-right b {
        color: #FF9E2B;
    }
/*==========================
        11.RESPONSIVE
============================*/
@media (max-width: 991px) {
    .btn {
        height: 45px;
    }

    .section {
        padding-left: 0;
    }

    .menu-toggler {
        display: block;
    }

    header {
        left: -90px;
        transition: all 0.3s ease;
    }

        header.open {
            left: 0;
        }

    .menu-toggler.open {
        left: 105px;
    }

    .section_title h2, .section_subtitle {
        text-align: center;
    }

    .section_subtitle {
        max-width: 500px;
        font-size: 16px;
        padding-top: 0;
        display: table;
        margin: auto;
    }

    .client-slider .item .testi-content {
        margin: 20px;
    }
}

@media (max-width: 768px) {
    .section_subtitle {
        line-height: 1.6;
    }

    .section_title h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {

    .about-content h4, .about-content .text {
        text-align: center;
    }

    .hero-text h1 span, .hero-text h1 {
        font-size: 34px;
        min-height: 40px;
    }

    .filters {
        display: flex;
        flex-wrap: wrap;
        border: none;
        margin: 0 20px;
        justify-content: center;
    }

        .filters li a {
            margin-bottom: .5rem;
            background: #ececec;
        }
}

@media (max-width: 575px) {
    .btn {
        height: 40px;
        font-size: 12px;
        min-width: 120px;
    }

    .btn {
        padding: 10px 15px;
    }

    .counter-block .mdi {
        float: none;
    }

    .counter-block {
        text-align: center;
    }

    .informative-txt li {
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }

    .hero-text h1, .hero-text h1 span {
        font-size: 22px;
    }

    .section-area, .section-content {
        display: block;
    }

    .home-bg .section-area {
        display: table;
    }

    .home-bg .section-content {
        display: table-cell;
    }

    .service-box {
        height: auto;
    }

    .service-icon-box {
        float: none;
    }

    .service-content {
        padding-left: 0;
        margin-top: 30px;
    }
}
