/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    height: 100%;
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: #333;
}

html,
body {
    height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.4s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-family: "Montserrat", sans-serif;
}

img {
    width: 100%;
}

a:hover {
    color: #fff;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
}

p {
    line-height: 32px;
}

ul,
li {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

.no-padding {
    padding: 0
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 78px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 30px;
    text-transform: uppercase;
	text-align: center;
    margin: 0;
    font-weight: 700;
    position: relative;
}

/*.section-title h2:before {
    position: absolute;
    content: "";
    left: 50%;
    top: 40px;
    height: 2px;
    width: 100px;
    background: #000;
    margin-left: -50px;
}

.section-title h2:after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50px;
    height: 2px;
    width: 50px;
    background: #000;
    margin-left: -25px;
}*/

.section-title p {
    font-weight: 300;
}
.white-title{
    color: #fff;
}
a.read-more {
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    background: #000;
    padding: 10px 25px;
    border: 1px solid #000;
    /* border-radius: 100px; */
    text-transform: uppercase;
    font-size: 12px;
}
a.white-read-more {
    margin-top: 20px;
    display: inline-block;
    color: #333;
    background: #fff;
    padding: 10px 25px;
    border: 1px solid #fff;
    /* border-radius: 100px; */
    text-transform: uppercase;
    font-size: 12px;
}

a.read-more:hover {
    color: #000;
    -webkit-transition: .3s;
    transition: .3s;
    border: 1px solid #333;
    background: transparent;
}

a.white-read-more:hover {
    background: transparent;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.anchor-button {
    border-radius: 50%;
    height: 60px;
    width: 60px;
    font-size: 30px;
    color: #fff;
    background-color: #000;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    line-height: 55px;
    cursor: pointer;
    z-index: 2;
}

.scrollup {
    display: none;
    bottom: 30px;
    right: 30px;
}

.social-instagram {
    bottom: 95px;
    right: 30px;
}

.social-facebook {
    bottom: 160px;
    right: 30px;
}

.social-whatsapp {
    /* bottom: 225px; */
    background-color: #00ce18;
    bottom: 95px;
    right: 30px;
}

.anchor-button:hover {
    box-shadow: 1px 1px 11px 8px rgba(255, 255, 255, 0.18), 0 4px 15px 0 rgba(255, 255, 255, 0.15);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.title-divider:after,.title-divider:before {
    content:"";
    display:inline-block;
    width:8%;
    height:1px;
    vertical-align:middle;
    text-align: center;
}
.title-divider:after {
    background-image:-webkit-linear-gradient(right,rgba(255,255,255,0),#b1b1b1);
    background-image:-moz-linear-gradient(right,rgba(255,255,255,0),#b1b1b1);
    background-image:-ms-linear-gradient(right,rgba(255,255,255,0),#b1b1b1);
    background-image:-o-linear-gradient(right,rgba(255,255,255,0),#b1b1b1);
    margin-left:4px
}
.title-divider:before {
    background-image:-webkit-linear-gradient(left,rgba(255,255,255,0),#b1b1b1);
    background-image:-moz-linear-gradient(left,rgba(255,255,255,0),#b1b1b1);
    background-image:-ms-linear-gradient(left,rgba(255,255,255,0),#b1b1b1);
    background-image:-o-linear-gradient(left,rgba(255,255,255,0),#b1b1b1);
    margin-right:4px
}
.title-divider i {
    color:#b1b1b1
}

.title-divider {
    display: inherit;
    text-align: center;
}




/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
    background: #fff;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    font-size: 10px;
    text-indent: -12345px;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
    border-right: 2px solid rgba(0, 0, 0, 0.08);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    border-left: 2px solid #000;
    border-radius: 50%;
    -webkit-animation: spinner 700ms infinite linear;
    animation: spinner 700ms infinite linear;
    z-index: 10000;
}

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
    height: 100%;
}

.welcome-image-area {
    position: relative;
    height: 100%;
    background: url(../images/slide/site/slide-1.jpg);
    background-size: cover;
    z-index: 1;
}

.welcome-image-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

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

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}

.header-text {
    margin-top: 60px;
}


.header-text h2 {
    color: #fff;
    font-size: 80px;
    letter-spacing: 5px;
    margin: 0;
    font-weight: 600;
}

.header-text p {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.header-top-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.logo {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding-left: 0px;
    margin-right: 80px;
    max-width: 300px;   
}

.logo a {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 10px;
}

.logo img {
    max-width: 300px;
}

.mainmenu {
    padding-top: 38px;
}

.mainmenu .navbar-nav li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    /* padding: 30px 15px; */
    -webkit-transition: .3s;
    transition: .3s;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border-radius: 0;
    border: none;
    padding: 0;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dropdown-menu > li > a {
    color: #fff !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: #000;
    color: #ccc !important;
}

.dropdown-menu .divider {
    margin: 5px 0;
    background-color: #333;
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.mainmenu .navbar-nav li a:hover {
    background: none;
    color: #ccc;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
    background: none;
    color: #fff;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navbar {
    margin: 0;
}

.brand-centered {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    left: 20px;
    top: 0;
    z-index: -1;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-toggle {
    z-index: 3;
}

.menu-bg {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: #000;
    height: 20%;
}

.menu-bg .logo {
    padding-top: 14px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.menu-bg .mainmenu .navbar-nav li a {
    color: #fff;
    padding: 20px 15px;
    -webkit-transition: .3s;
    transition: .3s;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
    color: #fff;
}

a.slide-btn {
    margin: 0px 5px;
    display: inline-block;
    color: #333;
    background: #fff;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, .5);
    text-transform: uppercase;
    font-size: 12px;
}

a.slide-btn:hover {
    background: transparent;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}

.btn-contact-us {
    display: none;
}

a.slide-btn:hover .btn-contact-us {
    display: inline-block;
}

.btn-hire-us {
    display: inline-block;
}

.hire-us-slide-btn {
    margin: 0px 5px;
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, .5);
    text-transform: uppercase;
    font-size: 12px;
    -webkit-transition: .3s;
    transition: .3s;
}

.hire-us-slide-btn:hover {
    color: #333;
    background: #fff;
}

a.slide-btn:hover .btn-hire-us {
    display: inline-block;
}

.hire-us-slide-btn:hover .btn-hire-us {
    display: none;
}

/*
* ----------------------------------------------------------------------------------------
* HOMEPAGE SLIDER BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area,
.welcome-slider-area,
.welcome-slider-area div {
    height: 100%;
}

.welcome-slider-area div.single-slide-item-tablecell,
.welcome-slider-area div.single-slide-item-tablecell div {
    height: auto;
}

.single-slide-item-table {
    display: table;
    width: 100%;
}

.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;
}

.single-slide-item {
    position: relative;
    z-index: 1;
}

.single-slide-item:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.video-slide video {
    min-width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 1;
}
.video-slide .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: rgba(0, 0, 0, .6);
    opacity: 0.5;
}
.video-slide .banner-text {
    top: 25%;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 3;
}

.video-slide-mobile {
    display: none !important;
}

.slide-1 {
    background: url(../images/slide/site/slide-1.jpg) scroll 0 0;
    background-size: cover;
}

.slide-2 {
    background: url(../images/slide/site/slide-2.jpg) scroll 0 0;
    background-size: cover;
    zoom: -200;
}

.slide-3 {
    background: url(../images/slide/site/slide-3.jpg) scroll 0 0;
    background-size: cover;
}

.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.carousel-fade .carousel-inner .next,
.carousel-fade .carousel-inner .prev,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/*
* ----------------------------------------------------------------------------------------
* VIDEO BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-video-area {
    position: relative;
    height: 100%;
    background-size: cover;
    z-index: 1;
    background-position: center center;
}

.welcome-video-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

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

.display-table-cell {
    display: table-cell;
    vertical-align: middle;
}


/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-us-area {}

.about-image,
.about-video {
    margin-top: 30px;
    padding: 10px;
}

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

.about-text h2 {
    margin-bottom: 18px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
}

.about-text p {
    margin-bottom: 10px;
    font-size: 18px;
}

.single-project-complete {
    background: #f5f5f5;
    margin-top: 50px;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.single-project-complete:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}

.single-project-complete span {
    font-size: 50px;
}

.single-project-complete:hover .lnr::before {
    color:#fff;
}

.single-project-complete:hover h6 {
    color:#f5f5f5;
}

.lnr-thumbs-up::before {
    color: #000;
}

.lnr-smile::before {
    color: #000;
}

.lnr-code::before {
    color: #000;
}

.lnr-bullhorn::before {
    color: #000;
}

.single-project-complete h2 {
    font-size: 20px;
    margin: 20px 0px;
    font-weight: 400;
}

.skill-text p {
    text-align: justify;
}

.our-skill,
.skill-text {
    margin-top: 30px;
}

.progress-bar-text span {
    float: right
}

.progress-bar-text {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
}

.progress-bar {
    background: #ccc none repeat scroll 0 0;
    box-shadow: 0 0 0;
    height: 2px;
    margin: 0 0 20px;
    position: relative;
    width: 100%;
}

.progress-bar > span {
    background: #333 none repeat scroll 0 0;
    display: block;
    height: 100%;
    width: 0;
}

/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
}

a.service-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.service-link:hover,
a.service-link:focus {
    text-decoration: none;
    color: inherit;
}

.single-service {
    background: #f5f5f5;
    border-radius: 10px;
    margin-top: 30px;
    padding: 30px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    color: #333;
    text-align: center;
}

.single-service span {
    color: #333;
    font-size: 50px;
}

.single-service:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}

.single-service:hover .fa::before {
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.single-service:hover p{
    color:#f5f5f5;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.single-service:hover .single-service p {
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.single-service h4 {
    font-size: 12px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lnr-camera::before {
    color: #000;
}

.lnr-laptop::before {
    color: #000;
}

.lnr-keyboard::before {
    color: #000;
}

.lnr-earth::before {
    color: #000;
}

.lnr-layers::before {
    color: #000;
}
.lnr-user::before {
    color: #000;
}

.single-service p {
    margin-top: 20px;
    margin-bottom: 0;
}

.service-btn {
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 11px;
}

.single-service:hover .service-btn {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 06.TEAM CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.team-area {}

.single-team {
    margin-top: 30px;
    background: #f5f5f5;
    border-radius: 10px;
    margin-top: 30px;
    padding: 0 0 30px 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.single-team img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
}

.single-team h4 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.team-description {
    margin-top: 15px;
}

.team-social ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.team-social ul li {
    display: inline-block;
    margin: 0px 5px;
}

.team-social ul li a {
    display: block;
    color: #333;
    font-size: 16px;
}

.team-social ul li a:hover {
    color: #000;
}

.single-team:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}

.single-team:hover .team-social ul li a {
    color: #fff;
}

.single-team:hover .team-description h6 {
    color: #f5f5f5;
}

/*
* ----------------------------------------------------------------------------------------
* 09.CALL TO ACTION US CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.call-to-action-first-area {
    padding: 100px 0px;
    background: url(../images/site/chamadas/1.jpg);
    background-size: cover;
    background-position: top;
    position: relative;
    z-index: 1;
}
.call-to-action-first-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}
.call-to-action-first-area h2{
    color: #fff;
}
.call-to-action-first-area p{
    color: #fff;
}

.call-to-action-second-area {
    padding: 100px 0px;
    background: url(../images/site/chamadas/2.jpg);
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 1;
}
.call-to-action-second-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}
.call-to-action-second-area h2{
    color: #fff;
}
.call-to-action-second-area p{
    color: #fff;
}


/*
* ----------------------------------------------------------------------------------------
* 07.WHY CHOOSE US CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.why-chhose-us-area {}

.why-choose-us-title {
    margin-bottom: 30px;
}

.why-image img {
    border-radius: 10px;
}

.about-icon {
    float: left;
    margin-bottom: 50px;
    margin-right: 20px;
    margin-top: 10px;
}

.about-icon SPAN {
    font-size: 30px;
}

.content-grid {
    background-color: #f5f5f5;
    border-radius: 5px;
    padding: 19px 30px 19px;
    margin-bottom: 20px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.5s ease-in-out;
}

.content-grid .icon-holder {
    float: left;
    border-radius: 2px;
    padding: 0px;
    margin-right: 20px;
    position: relative;
}

.content-grid .icon-holder:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #d9d9d9;
    right: -21px;
    top: 0;
    transition: all 0.5s ease-in-out;
}

.content-grid .text-box {
    float: left;
    width: 65%;
    margin-left: 20px;
}

.content-grid .text-box p {
    line-height: 1.5em;
}

.content-grid .text-box h3 {
    text-transform: uppercase;
    padding-bottom: 2px;
    margin: 0px;
    font-size: 15px;
}

.chid-pernt {
    display: table;
    height: 100%;
    width: 100%;
}

.child {
    display: table-cell;
    vertical-align: middle;
}

.content-grid:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}

.content-grid:hover .text-box p{
    color:#f5f5f5;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.content-grid:hover .text-box h3 {
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.content-grid:hover .about-icon .lnr::before {
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.lnr-sun::before {
    color: #000;
}

.lnr-pie-chart::before {
    color: #000;
}

.lnr-crop::before {
    color: #000;
}

.lnr-text-align-justify::before {
    color: #000;
}

.lnr-pencil::before {
    color: #000;
}

.lnr-clock::before {
    color: #000;
}

.lnr-chevron-up::before {
    color: #000;
}

.single-about p {
    margin-bottom: 0
}

/*
* ----------------------------------------------------------------------------------------
* 08.VEHICLE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.vehicle {}

.vehicle-inner .mix {
    display: none;
}

ul.vehicle {
    padding: 0;
    list-style: none;
    margin-top: 30px;
    margin-left: 8px;
    text-align: left;
	text-align: center;
}

ul.vehicle li {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 8px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 3px;
}

ul.vehicle li:hover {
    color: #fff;
    border: 1px solid #000;
    background: #000;
    -webkit-transition: .3s;
    transition: .3s;
}

ul.vehicle li.active {
    color: #fff;
    border: 1px solid #000;
    background: #000;
}

.vehicle .item {
    margin-top: 30px;
    position: relative;
    height: 240px; /* Set fixed height for container */
    overflow: hidden; /* Hide overflow content */
}

.vehicle .item img {
    border-radius: 10px;
    object-fit: cover; /* Use cover to maintain aspect ratio */
    width: 100%;
    height: 240px; /* Set fixed height for all images */
}

.item {
    -webkit-transition: .3s;
    transition: .3s;
}

.item:hover {
    opacity: .5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -webkit-transition: .3s;
    transition: .3s;
}

.item .tooltip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.85);
    text-align: center;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.tooltip a {
    border: 1px solid #fff;
    padding: 10px 15px;
    color: #fff;
}

.tooltip a.vehicle-popup {
    margin-left: 10px;
}

.item .align {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.carousel-indicators a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    margin-right: 5px;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 100%;
    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.item:hover .tooltip {
    opacity: 1;
    border-radius: 10px;
}

.item:hover .vehicle .item img {
    border-radius: 10px;
}

.item h3 {
    margin-top: 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* 10.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
    background: url(../images/site/clientes/1.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-area:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.testimonial-list {
    padding: 30px;
    margin-top: 30px;
    position: relative;
    margin: 30px auto;
    max-width: 800px;
}

/* Enhanced Testimonial styles */
.single-testimonial {
    padding: 0 20px;
    color: #fff;
    margin-bottom: 0;
}

.testimonial-list .item {
    padding: 15px;
}

.single-testimonial p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 10px;
}

/* Fix Testimonial Ratings */
.buyer-rating {
    margin-top: 10px;
}

.buyer-rating ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
    line-height: 1;
}

.buyer-rating ul li {
    display: inline-block;
    margin: 0 2px;
    vertical-align: middle;
}

.buyer-rating ul li a {
    display: block;
    color: gold;
    line-height: 1;
}

.buyer-rating ul li a i {
    font-size: 16px;
}

@media (max-width: 767px) {
    .buyer-rating ul {
        margin-bottom: 10px;
    }
    
    .buyer-rating ul li {
        margin: 0 1px;
    }
    
    .buyer-rating ul li a i {
        font-size: 14px;
    }
}

.testimonial-list.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
}

.testimonial-list.owl-carousel .owl-controls {
    margin-top: 20px;
}

.testimonial-list.owl-carousel .owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
}

.testimonial-list.owl-carousel .owl-controls .owl-page.active span {
    background: #fff;
}

/* Testimonial carousel navigation improvements */
#testimonial-slide-carousel .carousel-indicators {
    bottom: -40px;
}

#testimonial-slide-carousel .carousel-indicators li {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
}

#testimonial-slide-carousel .carousel-indicators li.active {
    background-color: #fff;
}

.testimonial-area {
    padding-bottom: 120px; /* Increase bottom padding to make room for indicators */
}

.single-testimonial {
    padding-bottom: 10px; /* Extra space at bottom of testimonials */
}

/* Make sure the testimonial text has adequate spacing */
.single-testimonial p {
    margin-top: 15px;
    margin-bottom: 20px;
}

/* Mobile-specific fixes */
@media (max-width: 767px) {
    .single-testimonial p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .img-circle i {
        font-size: 3em !important;
    }
    
    .single-testimonial h6 {
        font-size: 12px;
    }
    
    .testimonial-list .item {
        padding: 0;
    }
}

/*
* ----------------------------------------------------------------------------------------
* 11.PRICING CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.pricing-area {}

.pricing-table {
    background: #f5f5f5;
    padding: 30px 40px;
    color: #303030;
    position: relative;
    margin-top: 40px;
    border-radius: 10px;
}

.price-title {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 5px;
    text-transform: uppercase;
}
          
.price p {
    font-weight: 900;
    font-size: 62px;
    display: inline-table;
    margin: 30px 0 20px 0;
}

.price span.dollor {
    font-size: 20px;
    vertical-align: middle;
}

.price span {
    display: table-cell;
}

.price span.month {
    font-size: 15px;
    font-weight: normal;
}


.pricing-table:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}


.pricing-table:hover a.read-more {
    background: transparent;
    border: 1px solid #fff;
    color:#fff;
}


/*
* ----------------------------------------------------------------------------------------
* 12.NEWS LETTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.our-news-letter {
    padding: 100px 0px;
    background: url(../images/site/chamadas/1.jpg);
    background-size: cover;
    position: relative;
    z-index: 1;
}

.our-news-letter:after {
    position: absolute;
    background: rgba(0, 0, 0, .6);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.our-news-letter h2 {
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

.our-news-letter input[type='text'] {
    display: block;
    width: 35%;
    text-align: center;
    margin: 0px auto;
    border-radius: 5px;
    border: none;
    height: 50px;
    background: none;
    border-bottom: 1px solid #ccc;
    color: #fff;
}

.our-news-letter input[type='submit'] {
    margin-top: 20px;
    display: inline-block;
    color: #333;
    background: #fff;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 12px;
    width: 100px;
}

.our-news-letter input[type='submit']:hover {
    background: transparent;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}


/*
* ----------------------------------------------------------------------------------------
* 13.BLOG CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.blog-area {}

.single-blog {
    margin-top: 30px;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: #f5f5f5;
    padding-bottom: 30px;
}

.single-blog img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.meta-block-container {
    position: relative;
}

.post-meta-block {
    background-color: rgba(0, 0, 0, 0.90);
    display: inline-block;
    position: absolute;
    padding: 5px 20px;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
}

.post-meta-block a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.45px;
    line-height: 30px;
    text-transform: uppercase;
}

.post-user {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 26px;
}
.post-user a {
    color: #fff;
    font-size: 12px;
}

.post-comment {
    display: inline-block;
}

.post-comment a {
    font-size: 12px;
    color: #fff;
    padding-left: 40px;
}

.post-date {
    display: inline-block;
}

.post-date a {
    font-size: 12px;
    color: #fff;
    padding-left: 40px;
}

.blog-description a h3{
    color: #000;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.64px;
    line-height: 30px;
    text-transform: uppercase;
}

.single-blog:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}

.single-blog:hover .blog-description a h3 {
    color:#fff;
}

.single-blog:hover a.read-more {
    border: 1px solid #fff;
    background: transparent;
    color:#fff;
}

.single-blog:hover .blog-description p {
    color:#f5f5f5;
}


/*
* ----------------------------------------------------------------------------------------
* 14.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.single-contact-details {
    background: #f5f5f5;
    margin-bottom: 18px;
    border-radius: 10px;
    padding: 10px 40px;
}

.single-contact-details:hover {
    background-color: #000;
    color:#fff;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
    -ms-transform: scale(1.1, 1.1); /* IE 9 */
    -webkit-transform: scale(1.1, 1.1); /* Safari */
    transform: scale(1.1, 1.1);
}

.single-contact-details h4 {
    color: #333;
    margin-top: 5px;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.single-contact-details p {
    margin: 0px !important;
}

.single-contact-details:hover .lnr::before {
    color:#fff;
}

.single-contact-details:hover h4 {
    color:#fff;
}

.single-contact-details:hover p.text-muted {
    color: #fff !important;
}

.single-contact-details span {
    font-size: 30px;
}

.contact-no {
    margin-top: 12px;
}

.lnr-phone-handset::before {
    color: #000;
}

.lnr-envelope::before {
    color: #000;
}

.lnr-map-marker::before {
    color: #000;
}

.contact-form p {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    margin: 0;
}

.form-control {
    display: block;
    border: 0px;
    width: 100%;
    height: 45px;
    padding: 5px 0px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    background-image: none;
    border-radius: 0px;
    box-shadow: none;
	text-indent: 10px;
    border: 1px solid rgba(51, 51, 51, .5);
	border-radius: 10px;
}

.form-control:focus {
    border-color: #333;
    outline: 0;
    box-shadow: none;
}

.contact-form-design-area{
	margin-top: 30px;
}

.contact-form button {
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    background: #000;
    padding: 10px 25px;
    border: 1px solid rgba(0, 0, 0, .5);
    /* border-radius: 100px; */
    text-transform: uppercase;
    font-size: 12px;
}

.contact-form button:hover {
    -webkit-transition: .3s;
    transition: .3s;
    color: #000;
    background: transparent;
}

.success {
    background: #fff none repeat scroll 0 0;
    color: #333;
    font-weight: 700;
    padding: 20px;
    text-align: center;
}


/*
* ----------------------------------------------------------------------------------------
* 15.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
    padding: 50px 0 50px 0;
    background: #000;
}

.footer-text h6 {
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    color: #fff;
}

.footer-social-link {
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-social-link ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-link ul li {
    display: inline-block;
    margin: 0px 10px;
}

.footer-social-link ul li a {
    display: block;
    color: #fff;
}

.footer-social-link ul li a {
    border: 1px solid #fff;
    color: #fff;
    display: block;
    font-size: 20px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 45px;
}

.footer-social-link ul li a:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
}

/*
* ----------------------------------------------------------------------------------------
* 16.SINGLE BLOG PAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.single-blog-area{
    background: #000;
    padding-top: 100px;
    padding-bottom: 50px;
}

.single-blog-heading h2 {
    color: #fff;
    text-transform: uppercase;
}

.single-blog-meta-container {
    position: relative;
}

.single-blog-details img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.recent-single img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.single-comment img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.recent-post h4 {
    text-transform: uppercase;
    text-align: center;
}

.categories h4 {
    text-transform: uppercase;
    text-align: center;
}

.recent-single h4 {
    text-align: left;
}

.single-blog-heading-text h4 a {
    color: #f8f8f8;
}

.comment-section {
    margin-top: 30px;
}

.single-blog-details,
.comment-section,
.single-sidebar {
    border-radius: 3px;
    padding-top: 30px;
}

.search input {
    border: 1px solid #e3e8f0;
    box-shadow: none;
    color: #333;
    height: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-left: 10px;
}

.single-sidebar,
.recent-single {
    margin-bottom: 30px;
}

.recent-single a h4:hover, .single-blog-details h3 a:hover{
    color: #000;
}

.single-blog-details>h3{
    text-transform: uppercase;
    letter-spacing: 2px;
}

.single-blog-details p, .single-comment p {
    text-align: left;
    line-height: 30px;
}

.single-blog-details p {
    margin-top: 20px;
    line-height: 30px;
}

.single-blog-details h4 {
    margin: 20px 0px;
}

.single-comment {
    margin-bottom: 20px;
}

.single-comment img {
    width: 120px;
}

.recent-single h4 {
    color: #333333;
}

.categories ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.categories ul li {
    margin-bottom: 10px;
    color: #333;
}

.categories ul li a {
    color: #333;
}

.categories ul li a:hover {
    color: #000;
}

/*
* ----------------------------------------------------------------------------------------
* SERVICE DETAIL PAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.page-banner-area {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    background-color: #000000;
}

.service-content-area {
    padding: 80px 0;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.service-details p {
    margin-bottom: 20px;
}

.service-image {
    margin: 30px 0;
}

.service-image img {
    border-radius: 10px;
    width: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-list li {
    padding: 8px 0 8px 30px;
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 11px;
    color: #333;
}

.testimonial-quote {
    font-style: italic;
    border-left: 4px solid #333;
    padding: 15px 20px;
    background: #f9f9f9;
    margin: 30px 0;
}

.service-sidebar {
    margin-top: 0;
}

.sidebar-widget {
    background: #f5f5f5;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.sidebar-widget h3:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 2px;
    background: #333;
    bottom: 0;
    left: 0;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    border-bottom: 1px solid #e6e6e6;
}

.service-menu li:last-child {
    border-bottom: none;
}

.service-menu li a {
    display: block;
    padding: 12px 0;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.service-menu li a:hover, .service-menu li.active a {
    padding-left: 10px;
    color: #000;
}

.service-menu li a:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 12px;
}

.cta-widget {
    background: #000;
    color: #fff;
    padding: 30px;
}

.cta-widget h3 {
    color: #fff;
}

.cta-widget h3:after {
    background: #fff;
}

.cta-widget .read-more {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-item p {
    margin: 0;
    font-size: 14px;
}

/* Mobile Navigation Fixes - Revised */
@media (max-width: 767px) {
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(0, 0, 0, 0.5);
        border: 0;
        box-shadow: none;
        padding: 0;
    }
    
    .dropdown-menu > li > a {
        padding: 12px 25px !important;
        color: #fff !important;
        font-size: 12px !important;
    }
    
    .dropdown-menu > li.active > a {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }
    
    .dropdown-menu > li > a:hover,
    .dropdown-menu > li > a:focus {
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff !important;
    }
    
    .dropdown-menu .divider {
        background-color: rgba(255, 255, 255, 0.2);
        margin: 0;
        height: 1px;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        max-height: none;
        padding-bottom: 15px;
    }
    
    /* Prevent hover display on mobile */
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    /* Only display when toggled with JavaScript */
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    /* Make caret more visible */
    .navbar-nav .dropdown-toggle .caret {
        border-top-color: #fff;
        border-bottom-color: #fff;
        margin-left: 5px;
    }
    
    /* Add a little padding for menu items */
    .navbar-nav > li > a {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    
    /* Fix toggle button position */
    .navbar-toggle {
        margin-top: 15px;
        margin-right: 15px;
        z-index: 9999;
    }
    
    .menu-bg .navbar-toggle {
        margin-top: 10px;
    }
    
    /* Better touch targeting */
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* SEO Optimization */
.seo-heading {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}