.pt-sans-regular {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pt-sans-bold {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.pt-sans-regular-italic {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.pt-sans-bold-italic {
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: italic;
}


/********** Template CSS **********/
:root {
    --primary: #582010;
    --secondary: #FF6922;
    --light: #EFE4DA;
    --dark: #1B3B46;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    transition: .5s;
}

    .btn.btn-primary,
    .btn.btn-secondary {
        color: #FFFFFF;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

    .nav-bar.sticky-top {
        position: sticky;
        padding: 0;
        z-index: 9999;
    }

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

    .navbar .dropdown-toggle::after {
        border: none;
        content: "\f107";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        vertical-align: middle;
        margin-left: 5px;
        transition: .5s;
    }

    .navbar .dropdown-toggle[aria-expanded=true]::after {
        transform: rotate(-180deg);
    }

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--primary);
    }

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin: 7px 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--primary);
        border-radius: 40px;
        font-size: 20px;
        transition: .5s;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            background: var(--dark);
        }

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

    .nav-pills .nav-item .btn:hover,
    .nav-pills .nav-item .btn.active {
        color: #FFFFFF;
    }

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

    .property-item img {
        transition: .5s;
    }

    .property-item:hover img {
        transform: scale(1.1);
    }

    .property-item .border-top {
        border-top: 1px dashed rgba(0, 185, 142, .3) !important;
    }

    .property-item .border-end {
        border-right: 1px dashed rgba(0, 185, 142, .3) !important;
    }


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

    .team-item .btn {
        color: var(--primary);
        background: #FFFFFF;
        box-shadow: 0 0 30px rgba(0, 0, 0, .15);
    }

        .team-item .btn:hover {
            color: #FFFFFF;
            background: var(--primary);
        }

    .team-item:hover {
        border-color: var(--secondary) !important;
    }

        .team-item:hover .bg-primary {
            background: var(--secondary) !important;
        }

            .team-item:hover .bg-primary i {
                color: var(--secondary) !important;
            }


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--primary);
        border-radius: 40px;
        font-size: 20px;
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            background: var(--dark);
        }


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

    .footer .btn.btn-social:hover {
        color: var(--primary);
        border-color: var(--light);
    }

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        letter-spacing: 1px;
        box-shadow: none;
    }

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

    .footer .copyright a {
        color: var(--light);
    }

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

    .footer .footer-menu a:last-child {
        margin-right: 0;
        padding-right: 0;
        border-right: none;
    }

.medalha {
    width: 150px;
    height: 135px;
    background-size: cover;
    background-image: url('/img/validado.png');
    text-align: center !important;
    padding-top: 50px;
    display: inline-block;
    margin-right: 20px;
}

    .medalha img {
        opacity: 1;
        width: 40px;
    }

    .medalha div {
        line-height: 20px;
        margin-left: 5px;
    }

    .medalha i {
        font-size: 25px;
    }

    .medalha span {
        font-size: 16px;
        font-weight: 700;
    }

.nav-bar {
    z-index: 11 !important;
}

.owl-carousel {
    padding-top: 120px;
}

@media only screen and (max-width: 600px) {
    .navbar-collapse {
        padding-bottom: 15px;
    }

    .owl-carousel {
        padding-top: 0px !important;
    }
}


.hide_table_row {
    display: none;
}


/*----------------------------------------------------------------
					Start Section Work Process
----------------------------------------------------------------*/
.work-process {
    width: 100%;
    background-color: #1B3B46;
    top: 0;
    left: 0;
    position: relative;
    padding-bottom: 120px;
}

    .work-process .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.content-process {
    position: relative;
    margin-bottom: 50px;
    margin-right: 0;
    margin-left: 0;
}

.item-process {
    padding: 50px 30px;
    background: #FFF;
    min-height: 350px;
    position: relative;
    text-align: center;
    border: 1px solid #f1f1f1;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.7);
}

    .item-process .number-work {
        margin-bottom: 25px;
        font-size: 50px;
        line-height: 30px;
        font-weight: 600;
        opacity: 0.6;
    }

    .item-process h4 {
        color: #323232;
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .item-process .line-process {
        width: 50px;
        height: 3px;
        background: #BA6E44;
        margin-right: auto;
        margin-left: auto;
        margin-top: 23px;
        margin-bottom: 20px;
    }

    .item-process p {
        margin-bottom: 0;
        line-height: 26px;
    }

/*----------------------------------------------------------------
					End Section Work Process
----------------------------------------------------------------*/


.bg-white {
    background: #FFF !important;
}

.bg-dark {
    background: #232323 !important;
}

.color-white {
    color: #FFF !important;
}

.color-gray {
    color: #eee !important;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}


/*----------------------------------------------------------------
					Start Section About Us
----------------------------------------------------------------*/
.about-one {
    background: #f5f5fb;
}

.padding-about-one {
    padding-right: 15px;
}

.about-img-one {
    background-image: url('/content/images/1.png');
    top: 0;
    left: 0;
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 100%;
    width: 100%;
    min-height: 318px;
}

    .about-img-one .overlay-about {
        padding: 20px;
        height: 100%;
    }

    .about-img-one .text-overlay {
        width: 100%;
        height: 100%;
        border: 2px solid rgba(255, 255, 255, .9);
        background-color: rgba(25, 25, 33, 0.15);
        position: relative;
    }

    .about-img-one .pos-text {
        position: absolute;
        bottom: 30px;
        left: 30px;
        font-size: 60px;
        color: #FFF;
        font-weight: 700;
        letter-spacing: 2px;
        line-height: 30px;
    }

        .about-img-one .pos-text span {
            display: block;
            font-size: 14px;
            margin-top: 20px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 700;
        }

.info-about h5 {
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 17px;
    margin-top: 25px;
    color: #454545;
}

.about-two {
    background: #fff;
}

    .about-two .why-us {
        position: relative;
    }

.item-why-us {
    margin-bottom: 30px;
}

.about-two .item-why-us span {
    font-size: 50px;
    color: #323232;
    display: block;
}

.about-two .item-why-us h4 {
    color: #323232;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
    margin-top: 20px;
}

.about-two .item-why-us p {
    margin-bottom: 0;
    line-height: 26px;
}

.about-img-two {
    position: relative;
}

    .about-img-two img {
        width: 100%;
    }

.about-img-two {
    position: relative;
    padding-left: 65px
}

    .about-img-two .overlay-about {
        color: #fff;
        position: absolute;
        left: 0;
        bottom: 50px;
        z-index: 2;
        background: #BA6E44;
        padding: 50px 30px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
    }

    .about-img-two .pos-text {
    }

.number-years {
    font-size: 60px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 45px;
}

.about-img-two .pos-text span {
    display: block;
    font-size: 14px;
    margin-top: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 20px;
}

.about-classic-img {
    background-image: url(http://placehold.it/800x630);
    top: 0;
    left: 0;
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 100%;
    width: 100%;
    min-height: 318px;
}

.about-classic {
    background: #FFF;
}

.contact-classic {
    padding-right: 15px;
    padding-left: 15px;
}

    .contact-classic .info-about {
        padding: 50px;
        background: #f5f5fb;
    }

    .contact-classic .leader-company {
        position: relative;
        padding-left: 90px;
        padding-top: 10px;
    }

        .contact-classic .leader-company img {
            height: 70px;
            width: 70px;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 0;
        }

        .contact-classic .leader-company h3 {
            line-height: 24px;
            margin-bottom: 0;
            color: #323232;
            font-size: 18px;
            font-weight: 600;
            text-transform: capitalize;
            font-family: "PT Sans", sans-serif;
            font-weight: 700;
            font-style: normal;
        }

        .contact-classic .leader-company p {
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 700;
        }


.about-classic .item-why-us {
    position: relative;
    padding-left: 70px;
}

    .about-classic .item-why-us span {
        position: absolute;
        left: 0;
        top: 0;
        color: #323232;
        font-size: 50px;
    }

    .about-classic .item-why-us h4 {
        color: #323232;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .about-classic .item-why-us p {
        margin-bottom: 0;
        line-height: 24px;
        font-size: 14px;
    }

.about-carousel {
    position: relative;
}

    .about-carousel .owl-nav {
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 999;
        right: 0;
    }

        .about-carousel .owl-nav div {
            width: 35px;
            height: 35px;
            color: #323232;
            text-align: center;
            line-height: 35px;
            font-size: 15px;
            background: #fff;
            border-radius: 0;
            z-index: 999;
            border: 1px solid #eee;
        }

            .about-carousel .owl-nav div:hover {
                background: #BA6E44;
                color: #fff;
            }

            .about-carousel .owl-nav div.owl-prev {
                right: 40px;
                position: absolute;
                transition: all 0.4s ease 0s;
            }

            .about-carousel .owl-nav div.owl-next {
                right: 0px;
                position: absolute;
                transition: all 0.4s ease 0s;
            }


/*----------------------------------------------------------------
					End Section About US
----------------------------------------------------------------*/


.section-title .line-title {
    width: 75px;
    height: 3px;
    background: #BA6E44;
    margin-right: auto;
    margin-left: auto;
    margin-top: 22px;
}

.section-title p {
    max-width: 630px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 25px;
    color: #9e9e9e;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    text-transform: capitalize;
}

.section-title-left .line-title {
    margin-bottom: 22px;
    width: 75px;
    height: 3px;
    background: #BA6E44;
    margin-top: 22px;
}

/*========== Spacing CSS ==========*/
.ptb-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

.pt-130 {
    padding-top: 130px;
}

.pb-130 {
    padding-bottom: 130px;
}

.ptb-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.ptb-110 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.ptb-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}


.ptb-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.ptb-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pt-40 {
    padding-top: 40px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-10 {
    padding-top: 10px;
}

.no-padding {
    padding: 0;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-70 {
    margin-bottom: 70px
}

.mt-50 {
    margin-top: 50px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mr-30 {
    margin-right: 30px !important;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-30 {
    margin-left: 30px;
}

.mt-25 {
    margin-top: 25px;
}

.mr-25 {
    margin-right: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.ml-25 {
    margin-left: 25px;
}

.mt-20 {
    margin-top: 20px;
}

.mr-20 {
    margin-right: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.ml-20 {
    margin-left: 20px;
}

.mt-15 {
    margin-top: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.ml-15 {
    margin-left: 15px;
}

.mt-15 {
    margin-top: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.ml-15 {
    margin-left: 15px;
}


.mt-10 {
    margin-top: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px;
}

.mt-5 {
    margin-top: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}

.ml-5 {
    margin-bottom: 5px;
}

.mt-0 {
    margin-top: 0px;
}

.mr-0 {
    margin-right: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-0 {
    margin-left: 0px;
}

.mrl-row {
    margin-right: 0;
    margin-left: 0;
}



/*----------------------------------------------------------------
					Start Section Features 
----------------------------------------------------------------*/
.features {
    background: #FFF;
}
/* feat-item-one */
.feat-item-one {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f5f5fb;
    transition: 0.4s;
    border: 1px solid #f1f1f1;
    margin-bottom: 30px;
}

    .feat-item-one:hover {
        background: #BA6E44;
    }

        .feat-item-one:hover .content-box-feat span,
        .feat-item-one:hover .content-box-feat h4,
        .feat-item-one:hover .content-box-feat p {
            color: #FFF;
            -webkite-transition: all 0.4s;
            -moz-transition: all 0.4s;
            -ms-transition: all 0.4s;
            -o-transition: all 0.4s;
            transition: all 0.4s;
        }

    .feat-item-one .content-box-feat {
        position: relative;
        padding: 40px 30px;
        z-index: 5;
        text-align: center;
        min-height: 230px;
    }

        .feat-item-one .content-box-feat span {
            font-size: 50px;
            color: #BA6E44;
            display: block;
        }

        .feat-item-one .content-box-feat h4 {
            color: #323232;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: capitalize;
            margin-top: 25px;
        }

        .feat-item-one .content-box-feat p {
            margin-bottom: 0;
            line-height: 26px;
        }

.features-two {
    margin-top: -80px;
    position: relative;
    z-index: 555;
    padding-bottom: 90px;
}

.feat-item-two {
    text-align: center;
    margin-bottom: 30px;
    background: #fff;
    border: 5px solid #FFF;
    -webkit-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.10);
    -o-box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.10);
    box-shadow: 0 5px 10px -2px rgba(0, 0, 0, 0.10);
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
}

    .feat-item-two:hover {
        -webkit-transform: translate(0, -10px);
        -moz-transform: translate(0, -10px);
        -ms-transform: translate(0, -10px);
        -o-transform: translate(0, -10px);
        transform: translate(0, -10px);
        -webkit-box-shadow: 0 5px 20px -2px rgba(0, 0, 0, 0.15);
        -moz-box-shadow: 0 5px 20px -2px rgba(0, 0, 0, 0.15);
        -ms-box-shadow: 0 5px 20px -2px rgba(0, 0, 0, 0.15);
        -o-box-shadow: 0 5px 20px -2px rgba(0, 0, 0, 0.15);
        box-shadow: 0 5px 20px -2px rgba(0, 0, 0, 0.15);
    }

    .feat-item-two .meta-feat {
        padding: 30px 25px;
    }

    .feat-item-two h4 {
        color: #323232;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .feat-item-two p {
        margin-bottom: 0;
        line-height: 26px;
    }
/*----------------------------------------------------------------
					End Section Features 
----------------------------------------------------------------*/

/*----------------------------------------------------------------
					Start Bar Get a Free
----------------------------------------------------------------*/
.bar-get {
    background: #f5f5fb;
    padding: 50px 0;
}

    .bar-get h2 {
        font-size: 30px;
        line-height: 48px;
        font-family: "PT Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        color: #323232;
        text-transform: capitalize;
    }

        .bar-get h2 span {
            font-weight: 600;
        }

    .bar-get .btn-get-free .btn-one {
        float: right;
    }

.bar-get-two {
    background: #fff;
}

/*----------------------------------------------------------------
					End Bar Get a Free
----------------------------------------------------------------*/

.section-title {
    margin-bottom: 70px;
}

    .section-title h2,
    .section-title-left h2 {
        color: #666;
        display: block;
        text-transform: uppercase;
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        letter-spacing: .20px;
        font-size: 14px;
        line-height: 14px;
        margin: 0;
    }

    .section-title h3,
    .section-title-left h3 {
        color: #323232;
        text-transform: capitalize;
        font-size: 34px;
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        margin-top: 10px;
        margin-bottom: 22px;
        line-height: 44px
    }

        .section-title h3 span,
        .section-title-left h3 span {
            color: #BA6E44;
        }

    .section-title .line-title {
        width: 75px;
        height: 3px;
        background: #BA6E44;
        margin-right: auto;
        margin-left: auto;
        margin-top: 22px;
    }

    .section-title p {
        max-width: 630px;
        margin-right: auto;
        margin-left: auto;
        margin-top: 25px;
        color: #9e9e9e;
        font-size: 15px;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 0;
        text-transform: capitalize;
    }

.section-title-left .line-title {
    margin-bottom: 22px;
    width: 75px;
    height: 3px;
    background: #BA6E44;
    margin-top: 22px;
}


/*----------------------------------------------------------------
					Start Section Services 
----------------------------------------------------------------*/
.services {
    position: relative;
}

.services-one {
    background: #fff;
    padding-top: 220px;
}

.services-page {
    background: #f5f5fb;
    padding-top: 120px;
}

    .services-page .services-item-one {
        background: #FFF;
    }
/* feat-item-three */
.services-item-one {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    overflow: hidden;
    background: #f5f5fb;
}

    .services-item-one .content-box {
        position: relative;
        padding: 40px 30px;
        z-index: 5;
        text-align: center;
    }

    .services-item-one:hover {
        -webkit-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.3);
        -moz-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.3);
        -ms-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.3);
        -o-box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.3);
        box-shadow: 0px 5px 20px rgba(52, 47, 47, 0.3);
    }

    .services-item-one .content-box span {
        font-size: 50px;
        color: #BA6E44;
        display: block;
    }

    .services-item-one .content-box h4 {
        color: #323232;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: capitalize;
        margin-top: 25px;
    }

    .services-item-one .content-box p {
        margin-bottom: 0;
        line-height: 26px;
    }

.content-box .read-more {
    color: #898989;
    font-size: 12px;
    display: inline-block;
    font-weight: 700;
    margin-top: 17px;
    border-bottom: 2px solid #898989;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

    .content-box .read-more i {
        font-size: 11px;
        margin-left: 5px;
    }

    .content-box .read-more:hover {
        color: #BA6E44;
        border-bottom: 2px solid #BA6E44;
    }
/*.content-box .read-more:before:hover {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
    color: #BA6E44 !important;
    background-color: transparent;
}*/


.services-item-one .services-box-img {
    bottom: 0;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkite-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    z-index: -1;
}

    .services-item-one .services-box-img::before {
        background: rgba(35, 35, 35, 0.9) !important;
        content: " ";
        display: block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: 2;
    }

.services-item-one:hover .services-box-img,
.services-item-one.active .services-box-img {
    opacity: 1;
    -webkit-transform: scale(1.0);
    -moz-transform: scale(1.0);
    -ms-transform: scale(1.0);
    -o-transform: scale(1.0);
    transform: scale(1.0);
    visibility: visible;
}

.services-item-one:hover .content-box h4,
.services-item-one.active .content-box h4,
.services-item-one:hover .content-box p,
.services-item-one.active .content-box p {
    color: #FFF;
    -webkite-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.services-two {
    background: #f5f5fb;
}

.services-item-two .img-services {
    position: relative;
    background: #FFF;
    padding: 10px 10px 0;
    overflow: hidden;
}

.services-item-two .content-box {
    background: #FFF;
    text-align: center;
    padding: 35px;
    transition: 0.4s;
}

    .services-item-two .content-box h4 {
        color: #323232;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: capitalize;
    }

    .services-item-two .content-box p {
        margin-bottom: 0;
        line-height: 26px;
    }

    .services-item-two .content-box .read-more {
        color: #898989;
        font-size: 12px;
        display: inline-block;
        font-weight: 700;
        margin-top: 15px;
        border-bottom: 2px solid #898989;
        line-height: 20px;
        text-transform: uppercase;
    }

        .services-item-two .content-box .read-more:hover {
            color: #BA6E44;
            border-bottom: 2px solid #BA6E44;
        }

.services-carousel .owl-nav {
    position: absolute;
    top: 46%;
    width: 100%;
    z-index: 999;
    transform: translateY(-50%);
    display: none;
}

    .services-carousel .owl-nav div {
        width: 40px;
        height: 40px;
        color: #323232;
        text-align: center;
        line-height: 42px;
        font-size: 20px;
        background: #f5f5fb;
        border-radius: 1px;
        border: 1px solid #eee;
        z-index: 999;
    }

        .services-carousel .owl-nav div.owl-prev {
            left: 10px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }

        .services-carousel .owl-nav div.owl-next {
            right: 10px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }

        .services-carousel .owl-nav div:hover {
            background: #BA6E44;
            color: #fff;
            border: 1px solid #BA6E44;
        }

.services-three {
    background: #f5f5fb
}

.services-classic {
    padding-right: 30px;
    padding-left: 30px;
}

.item-server-three {
    padding: 0;
}

    .item-server-three .services-item-three {
    }

        .item-server-three .services-item-three .content-box {
            position: relative;
            padding: 40px 30px;
            z-index: 5;
            text-align: center;
        }

.services-item-three .content-box span {
    font-size: 50px;
    color: #BA6E44;
    display: block;
}

.services-item-three .content-box h4 {
    color: #323232;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
    margin-top: 25px;
}

.services-item-three .content-box p {
    margin-bottom: 0;
    line-height: 26px;
}

.item-server-three:nth-child(1) {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.item-server-three:nth-child(2) {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.item-server-three:nth-child(3) {
    border-bottom: 1px solid #ddd;
}

.item-server-three:nth-child(4) {
    border-right: 1px solid #ddd;
}

.item-server-three:nth-child(5) {
    border-right: 1px solid #ddd;
}

.item-server-three .services-item-one {
    margin-bottom: 0;
}


/* Signle Services Page */
.single-services {
    background: #f5f5fb;
}

.title-widget {
    padding: 25px 30px;
    bordeR: 1px solid #f1f1f1;
    background: #ffffff;
}

.widget {
    margin-bottom: 30px;
}

.title-widget h3 {
    position: relative;
    font-size: 18px;
    line-height: 14px;
    text-transform: capitalize;
    color: #323232;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.links-services {
    padding-left: 0;
    background: #FFF;
    margin-bottom: 0;
    border-top: none;
    padding-bottom: 15px;
    padding-top: 15px;
    border: 1px solid #f1f1f1;
}

    .links-services li {
        border-bottom: 1px solid #f5f3f3;
        margin-right: 30px;
        margin-left: 30px;
    }

        .links-services li a {
            font-size: 14px;
            font-weight: 500;
            padding-bottom: 15px;
            display: block;
            line-height: 15px;
            text-transform: capitalize;
            color: #898989;
            padding-top: 15px;
            transition: all .4s;
        }

            .links-services li a:hover {
                color: #BA6E44;
                padding-left: 10px;
            }

            .links-services li a i {
                margin-right: 10px;
            }

        .links-services li:last-child {
            border-bottom: none;
        }

.lists-brochures {
    padding: 30px;
    background: #FFF;
    border-top: none;
    border: 1px solid #f1f1f1;
}

    .lists-brochures li a {
        width: 100%;
        position: relative;
        border: 1px solid #f1f1f1;
        background: #f5f5fb;
        color: #323232;
        height: 60px;
        line-height: 60px;
        display: block;
        margin-bottom: 20px;
        text-align: left;
        padding-left: 15px;
        font-family: "PT Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        z-index: 2;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.20px;
    }

        .lists-brochures li a i {
            margin-right: 10px;
            font-size: 11px;
        }

    .lists-brochures li:last-child a {
        margin-bottom: 0;
    }

    .lists-brochures li a span {
        position: absolute;
        right: 15px;
        height: 30px;
        width: 30px;
        background: #BA6E44;
        line-height: 30px;
        top: 15px;
        text-align: center;
        font-size: 10px;
        color: #FFF;
    }

.inner-widget {
    padding: 30px;
    background: #FFF;
    border-top: none;
    border: 1px solid #f1f1f1;
}

    .inner-widget p {
        line-height: 26px;
        margin-bottom: 30px;
    }

.title-single-service h3 {
    color: #323232;
    text-transform: capitalize;
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 25px;
    margin-top: 0;
    font-family: "PT Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.container-service-details .faq {
    background: transparent;
    padding: 0;
}

.signle-services-item {
    margin-bottom: 50px;
}

    .signle-services-item .indicator {
        padding-left: 0;
        margin-bottom: 20px;
    }

.indicator li {
    margin-bottom: 10px;
    color: #898989;
    font-size: 14px;
    text-transform: capitalize;
}

    .indicator li span {
        margin-right: 10px;
        color: #BA6E44 !important;
    }

.img-indicator {
    padding-top: 10px;
}

.how-work-two {
    margin-right: 0;
    margin-left: 0;
}

.signle-services-item img {
    width: 100%;
}

.signle-services-item .item-process {
    padding: 30px;
    background: #FFF;
    position: relative;
    text-align: left;
    border: 1px solid #f1f1f1;
}

    .signle-services-item .item-process .number-work {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 25px;
        font-weight: 600;
        opacity: 0.6;
    }

    .signle-services-item .item-process h4 {
        color: #323232;
        font-size: 18px;
        font-weight: 600;
        text-transform: capitalize;
    }

    .signle-services-item .item-process .line-process {
        width: 50px;
        height: 3px;
        background: #BA6E44;
        margin-top: 25px;
        margin-bottom: 20px;
        margin-left: 0;
    }

    .signle-services-item .item-process p {
        margin-bottom: 0;
        line-height: 26px;
    }

/*----------------------------------------------------------------
					End Section Services
----------------------------------------------------------------*/

.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
    color: #000;
    background-color: #DDE4E4;
    border-color: #DDE4E4;
}

.btn-one, .btn-two, .btn-three, .btn-four, .btn-five {
    cursor: pointer;
    display: inline-block;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    position: relative;
    z-index: 2;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 5px;
    line-height: 51px;
    min-width: 175px;
    height: 50px;
    letter-spacing: 0.30px;
    border-radius: 2px;
    -webkite-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: -5px 10px 30px -5px rgba(0, 0, 0, 0.2);
    box-shadow: -5px 10px 30px -5px rgba(0, 0, 0, 0.2);
}

.btn-one {
    -webkit-box-shadow: -5px 10px 30px -5px rgba(0, 0, 0, 0.2);
    box-shadow: -5px 10px 30px -5px rgba(0, 0, 0, 0.2);
    background: #AD502D;
    color: #ffffff;
}

    .btn-one:hover {
        background: #232323;
        color: #fff;
    }

.bar-get h2 span {
    font-weight: 600;
}

.servicos {
    text-align: center;
}

body {
    background-color: #EFE4DA;
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}


/**/
.testimonials {
    background: #f5f5fb;
    position: relative;
}

.testimonials-one .owl-carousel {
    position: relative;
}

    .testimonials-one .owl-carousel .testmonail-item .owl-item {
        margin: auto;
    }

.testimonials-one .owl-theme .owl-dots .owl-dot span {
    margin: 20px 7px 0 7px;
    width: 25px;
    height: 6px;
    background: rgba(255, 255, 255, 0.26);
    margin-right: 5px;
    margin-left: 5px;
    display: inline-block;
    border-radius: 1px;
}

.testimonials-one .owl-theme .owl-dots .owl-dot:hover span,
.testimonials-one .owl-theme .owl-dots .owl-dot.active span {
    background: #fff;
}

.testimonials-one .owl-dots .active span {
    background: #fff !important;
}

.testimonials-one .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
    z-index: 999;
    transform: translateY(-50%);
}

    .testimonials-one .owl-nav div {
        width: 45px !important;
        height: 45px !important;
        color: #fff !important;
        text-align: center !important;
        line-height: 40px !important;
        font-size: 20px !important;
        background: rgba(244, 244, 244, 0.2) !important;
        border-radius: 2px !important;
        z-index: 999 !important;
    }

        .testimonials-one .owl-nav div:hover {
            background: #3764eb !important;
            color: #fff !important;
        }

        .testimonials-one .owl-nav div.owl-prev {
            left: -100px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }

        .testimonials-one .owl-nav div.owl-next {
            right: -100px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }


.testimonials-one {
    background-image: url(http://placehold.it/1920x1280);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    top: 0;
    left: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    position: relative;
}

    .testimonials-one .overlay {
        background: rgba(35, 35, 35, 0.9);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .testimonials-one .testmonail-box {
        background-color: transparent;
        padding: 0;
        position: relative;
        text-align: center;
        border-radius: 0;
    }

    .testimonials-one .client-img {
        height: 90px;
        width: 90px;
        margin-right: auto !important;
        margin-left: auto !important;
        display: block;
        position: relative;
        margin-bottom: 25px;
    }

        .testimonials-one .client-img img {
            border-radius: 50%;
            margin: auto;
        }

    .testimonials-one .quote-icon {
        color: #323232;
        position: absolute;
        top: 0;
        right: -10px;
        background: #fff;
        height: 35px;
        border-radius: 50%;
        font-size: 8px !important;
        width: 35px;
        line-height: 40px;
        text-align: center;
    }

    .testimonials-one .inner-test p {
        font-size: 17px;
        font-weight: 400;
        line-height: 28px;
        text-transform: capitalize;
        color: #EEE;
        margin-bottom: 0;
    }

.line-testmonial {
    width: 70px;
    height: 3px;
    margin-right: auto;
    margin-left: auto;
    background: #3764eb;
    margin-top: 22px;
    margin-bottom: 25px;
}

.testimonials-one .author-details h6 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.testimonials-one .author-details span {
    display: block;
    line-height: 15px;
    margin-bottom: 0px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    color: #ddd;
}

/*----------------------------------------------------------------
					Start Section Testimonials 
----------------------------------------------------------------*/
.testimonials {
}

    .testimonials .overlay {
    }

.owl-carousel {
    position: relative;
}

.testimonials .owl-nav {
    position: absolute;
    top: 46%;
    width: 100%;
    z-index: 999;
    transform: translateY(-50%);
    display: none;
}

    .testimonials .owl-nav div {
        width: 40px;
        height: 40px;
        border: 1px solid #3764eb;
        color: #3764eb;
        text-align: center;
        line-height: 40px;
        font-size: 16px;
        background: transparent;
    }

        .testimonials .owl-nav div.owl-prev {
            left: 0px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }

        .testimonials .owl-nav div.owl-next {
            right: 0px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }

.testimonials .testmonail-box {
    background: #ffffff;
    padding: 40px 30px;
    position: relative;
    border: 1px solid #f5f5f5;
    text-align: left;
    overflow: hidden;
}

.testimonials .inner-test {
    margin-top: 20px;
    border-top: 2px solid #f1f1f19c;
    padding-top: 15px;
    margin-bottom: 15px;
}

    .testimonials .inner-test p {
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 400;
        font-style: italic;
        line-height: 28px;
    }

.testimonials .quote-icon {
    position: absolute;
    color: #f5f5fb;
    font-size: 28px;
    right: 30px;
    transform: rotate(180deg);
    top: 50px;
}

.testimonials .client-img {
    display: inline-block;
    margin-right: 20px;
    float: left;
}

    .testimonials .client-img img {
        border-radius: 50%;
        height: 65px;
        width: 65px;
        border: 1px solid #3764eb;
        padding: 3px;
        background: #FFF;
        position: relative;
    }

.testimonials .author-details {
    float: left;
}

    .testimonials .author-details h6 {
        color: #323232;
        text-transform: capitalize;
        font-size: 18px;
        font-weight: 600;
        padding-top: 6px;
        line-height: 23px;
        margin-bottom: 2px;
    }

    .testimonials .author-details span {
        font-size: 13px;
        font-weight: 500;
        line-height: 20px;
    }

.list-stars {
    padding-left: 0;
    margin-bottom: 0;
}

    .list-stars li {
        display: inline-block;
        font-size: 7px;
        color: #fac917;
        padding-right: 2px;
    }

.our-team-two {
    background: #f5f5fb !important;
    position: relative;
}

.testimonials-two {
    background: #FFF !important;
}

    .testimonials-two .testmonail-box {
        background: #f5f5fb;
    }

    .testimonials-two .quote-icon {
        color: rgba(0, 0, 0, 0.08);
    }

.testimonials .inner-test {
    border-top: 2px solid #EEE;
}

.careers {
    background: #f5f5fb;
}

.career-item {
    padding: 30px;
    background: #FFF;
    border: 1px solid #f1f1f1;
}

    .career-item .title-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 15px;
    }

    .career-item h3 {
        color: #323232;
        font-size: 18px;
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        text-transform: capitalize;
        display: block;
        line-height: 20px;
        margin-bottom: 15px;
    }

.history span:first-child {
    color: #ffffff;
    font-weight: 600;
    background: #3764eb;
    padding: 5px 10px;
    margin-right: 10px;
    font-size: 12px;
}

.history span {
    text-transform: uppercase;
    color: #989898;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.20px;
}

.career-item ul {
    padding-left: 0;
    margin-bottom: 15px;
}

    .career-item ul li {
        margin-bottom: 5px;
        color: #666;
    }

        .career-item ul li span {
            margin-right: 10px;
            color: #3764eb !important;
        }

.career-item .read-more:hover {
    color: #3764eb;
    border-bottom: 1px solid #3764eb;
}

.career-item .read-more {
    color: #898989;
    font-size: 12px;
    display: inline-block;
    font-weight: 700;
    border-bottom: 1px solid #898989;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

    .career-item .read-more i {
        font-size: 11px;
        margin-left: 5px;
    }

.apply-team {
    padding: 80px 50px 100px;
    background: #FFF;
    border: 1px solid #f1f1f1;
    margin-right: 0;
    margin-left: 0;
    margin-top: 90px;
    margin-bottom: 30px;
}

    .apply-team .line-title {
        margin-bottom: 50px;
    }

    .apply-team form select {
        height: 50px !important;
        outline: 0;
        resize: none;
        font-weight: 400;
        display: block;
        width: 100%;
        line-height: 24px;
        font-size: 14px;
        border: 1px solid #f1f1f1;
        padding: 13px 20px;
        background: #f5f5fb;
        color: #323232;
        border-radius: 2px;
        margin-bottom: 30px;
        box-shadow: none !important;
    }

    .apply-team form input[type="file"] {
        height: 50px !important;
        outline: 0;
        resize: none;
        font-weight: 400;
        display: block;
        width: 100%;
        line-height: 24px;
        font-size: 14px;
        border: 1px solid #f1f1f1;
        padding: 13px 20px;
        background: #f5f5fb;
        color: #323232;
        border-radius: 2px;
        margin-bottom: 30px;
        box-shadow: none !importan
    }
/*----------------------------------------------------------------
					End Section Testimonials 
----------------------------------------------------------------*/


/*----------------------------------------------------------------
					Start Section Team 
----------------------------------------------------------------*/
.our-team {
    background: #FFF;
}

.team-one-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.our-team .team-one-item img {
    display: block;
    margin-right: auto !important;
    margin-left: auto !important;
    width: 1000px !important;
    -webkit-transition: all 2s;
    -moz-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s;
}

.our-team .team-one-item:hover img {
    opacity: 0.9;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.team-one-item .overlay-team {
    position: absolute;
    left: 10px;
    bottom: 10px;
    right: 10px;
    top: 10px;
    z-index: 25;
    opacity: 0;
    display: block;
    background: rgba(51, 51, 51, 0.9);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -ms-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
}

.team-one-item:hover .overlay-team {
    opacity: 1;
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}

.team-one-item .overlay-team .inner-overlay {
    position: absolute;
    left: 0px;
    top: 30px;
    width: 100%;
    height: 100%;
    display: table;
    z-index: 1;
    padding: 10px 10px;
    vertical-align: middle;
    opacity: 0;
    transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -webkit-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
}

.team-one-item:hover .overlay-team .inner-overlay {
    opacity: 1;
    top: 0;
    transition-delay: 0.5s;
}

.team-one-item .overlay-team .inner-overlay .text-team {
    position: relative;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}


.text-team h4 {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.text-team p {
    display: block;
    line-height: 14px;
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
    color: #ddd;
}

.text-team .line-item {
    width: 50px;
    height: 3px;
    margin: 20px auto 25px;
    background: #3764eb;
}

.social-media-team {
    padding-left: 0;
}

    .social-media-team li {
        display: inline-block;
    }

        .social-media-team li a {
            margin-right: 5px;
            margin-left: 5px;
            transition: .4s;
            width: 35px;
            height: 35px;
            border-radius: 2px;
            font-size: 14px;
            line-height: 35px;
            text-align: center;
            color: #323232;
            border: 1px solid #f1f1f1;
            background: #fff;
            display: block;
        }

            .social-media-team li a:hover {
                border: 1px solid #3764eb;
                color: #FFF;
                background: #3764eb;
            }

.team-classic .team-one-item {
    margin-bottom: 0;
}


.team-classic .owl-carousel {
    position: relative;
}

.team-classic .owl-nav {
    position: absolute;
    top: 46%;
    width: 100%;
    z-index: 999;
    transform: translateY(-50%);
}

    .team-classic .owl-nav div {
        width: 40px;
        height: 40px;
        color: #ffffff;
        text-align: center;
        line-height: 42px;
        font-size: 20px;
        background: rgba(129, 118, 118, 0.78);
        border-radius: 2px;
        z-index: 999;
    }

        .team-classic .owl-nav div:hover {
            background: #3764eb;
            color: #fff;
        }

        .team-classic .owl-nav div.owl-prev {
            left: 10px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }

        .team-classic .owl-nav div.owl-next {
            right: 10px;
            position: absolute;
            transition: all 0.4s ease 0s;
        }



.footer-team {
    padding: 30px;
    text-align: left;
    background: #FFF;
    border: 1px solid #eee;
}

    .footer-team h4 {
        color: #323232;
        font-size: 20px;
        font-weight: 600;
        text-transform: capitalize;
        margin-bottom: 15px;
        display: block;
        line-height: 18px;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all .4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

    .footer-team p {
        color: #898989;
        font-size: 12px;
        margin-bottom: 0px;
        text-transform: uppercase;
        font-weight: 600;
        line-height: 12px;
    }

.join-team {
    background: #fff;
    padding-right: 40px;
    padding-left: 40px;
    margin-top: 90px;
    margin-bottom: 30px;
    border: 1px solid #f1f1f1;
    padding-top: 50px;
    padding-bottom: 10px;
    
}


    .join-team h3 {
        color: #666;
        display: block;
        text-transform: uppercase;
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        letter-spacing: .20px;
        font-size: 15px;
        line-height: 16px;
        margin: 0;
    }

    .join-team h4 {
        color: #323232;
        text-transform: capitalize;
        font-size: 30px;
        font-family: "PT Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        margin-top: 10px;
        line-height: 44px;
        margin-bottom: 40px;
    }

    .join-team .btn-get-free a {
        margin-bottom: 40px !important;
    }
/*----------------------------------------------------------------
					End Section Team 
----------------------------------------------------------------*/

.content-box img{
    height:100px;
    border-radius:10px;
}