html {
    min-height: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    background-image: url("../images/header.webp");
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    font-family: 'Montserrat', sans-serif;
    color: #373737;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: #373435;
    -webkit-transition: all, 0.2s;
    -o-transition: all, 0.2s;
    transition: all, 0.2s;
}

a:hover {
    text-decoration: none;
}

a.developer-link {
    font-weight: 700;
}

a.developer-link:hover {
    color: #00aced;
}

.modal-content {
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
}

.modal-content .modal-header {
    flex-direction: column;
    position: relative;
}

.modal-content .modal-header button.close {
    position: absolute;
    right: 18px;
    top: 18px;
    font-size: 25px;
}

.modal-content .modal-header small {
    font-size: 13px;
}

.modal-content .modal-title {
    font-weight: 300;
}

.modal-content .modal-body {
    font-size: 14px;
}

.paginator {
    margin: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.paginator .paginator_item {
    display: block;
    padding: 0.5rem 0.75rem;
    border: 1px solid #000;
    background-color: #000;
    color: #FFF;
    line-height: 1.25;
    margin-right: 2px;
    font-size: 14px;
}

.paginator .paginator_item:hover,
.paginator .paginator_item.paginator_active {
    z-index: 1;
    color: #000;
    background-color: #ffcc29;
    border-color: #ffcc29;
}

section {
    margin: 50px 0;
}

.section-title h4 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 200;
    margin: 0;
}

.section-title p {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
}

.section-title h4 span {
    font-weight: 600;
}

.big-button {
    border: none;
    padding: 15px 30px;
    background: #ffcc29;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.big-button.dark {
    background: #262626;
    color: #FFFFFF;
}

.big-button:hover {
    opacity: .8;
}

.wrapper {
    position: relative;
    z-index: 1;
}

/** MAIN HEADER **/
.main-header {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.top-header-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #000000;
    z-index: 6;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

.top-header-fixed .search-car {
    margin-top: 0 !important;
}

.top-header-fixed .main-menu ul li a {
    color: #FFFFFF;
}

.top-header-fixed.no-active-sticky {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    transition: 0.5s all !important;
}

.top-header-fixed.active-sticky {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    transition: 0.5s all !important;
}

.top-header-fixed .mobile-search button {
    color: #FFFFFF;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.main-menu .menu-item {
    margin-right: 40px;
}

.main-menu .menu-item a {
    display: block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: #4e555b;
    font-size: 14px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .7s;
    transition-duration: .7s;
    -webkit-transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(.5, 0, 0, 1);
}

.main-menu .menu-item a:hover {
    color: #ffcc29;
}

.main-menu .menu-item a:hover::after {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.main-menu .menu-item a:after {
    content: '';
    background-color: #ffcc29;
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .7s;
    transition-duration: .7s;
    -webkit-transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    z-index: 1;
}

.main-menu .menu-social-icon {
    margin-right: 15px;
}

.main-menu .menu-social-icon:last-child {
    margin-right: 0;
}

.main-menu .menu-social-icon a i {
    font-size: 25px;
}

.main-menu .menu-social-icon a:hover i {
    color: #ffcc29;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.mobile-search,
.mobile-menu {
    display: none;
}

.menu-mobile,
.search-car {
    background: #ffcc29;
    padding: 18px 20px 20px 50px;
    margin-top: -15px;
    margin-right: -15px;
    border: none;
    font-size: 12px;
    line-height: 14px;
    clip-path: polygon(30px 0, 100% 0, calc(100%) 100%, 0 100%);
}

.top-header-fixed .menu-mobile {
    padding: 30px 20px 20px 50px;
}

.search-icon-mobile {
    border: none;
    background: transparent;
    margin-top: -5px;
}

.search-icon-mobile i {
    font-size: 20px;
}

.menu-mobile i,
.search-car i {
    font-size: 18px;
    margin-right: 10px;
    font-weight: lighter;
}

body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
}

.smart-share-container {
    margin: 0 !important;
}

.smart-share-container,
.smart-nav-container,
.smart-search-modal {
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    width: 100%;
    height: 100vh;
    background: transparent !important;
}

.smart-share-container.version:before,
.smart-nav-container.version:before,
.smart-search-modal.version:before {
    background-color: #000000;
}

.smart-share-container .smart-bg,
.smart-nav-container .smart-bg,
.smart-search-modal .smart-bg {
    background: #000000;
    opacity: .85 !important;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.smart-nav-container .smart-menu {
    position: absolute;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100%;
    background-color: #FFFFFF;
    background-image: url("../images/bg-smart-menu.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    padding: 30px 20px;
    -webkit-animation: slide 0.2s forwards;
    -webkit-animation-delay: 0.2s;
    animation: slide 0.2s forwards;
    animation-delay: 0.2s;
}

.smart-nav-container .smart-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000000;
    border: none;
    background: transparent;
    padding: 20px;
}

.smart-nav-container .smart-close:hover {
    cursor: pointer;
}

.smart-nav-container .smart-close i {
    font-size: 22px;
}

.smart-nav-container .smart-menu .row {
    margin-bottom: 30px;
}

.smart-nav-container .smart-menu .smart-main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.smart-nav-container .smart-menu .smart-main-menu ul.smart-social-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.smart-nav-container .smart-menu .menu-item a {
    display: block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: #4e555b;
    font-size: 14px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .7s;
    transition-duration: .7s;
    -webkit-transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(.5, 0, 0, 1);
}

.smart-nav-container .smart-menu .menu-item a:hover {
    color: #ffcc29;
}

.smart-nav-container .smart-menu .menu-item a:hover::after {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.smart-nav-container .smart-menu .menu-item a:after {
    content: '';
    background-color: #ffcc29;
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: .7s;
    transition-duration: .7s;
    -webkit-transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    transition-timing-function: cubic-bezier(.5, 0, 0, 1);
    z-index: 1;
}

.smart-nav-container .smart-menu .smart-main-menu ul li {
    width: 100%;
    padding: 5px 0;
}

.smart-nav-container .smart-menu .smart-main-menu ul li a {
    display: block;
}

.smart-nav-container .smart-menu .smart-main-menu ul.smart-social-menu {
    margin-top: 20px;
}

.smart-nav-container .smart-menu .smart-main-menu ul.smart-social-menu li {
    width: auto !important;
    margin-right: 10px;
}

.smart-nav-container .smart-menu .smart-main-menu ul.smart-social-menu li a {
    font-size: 30px;
}

.smart-nav-container .smart-menu .smart-main-menu ul.smart-social-menu li a:hover {
    color: #ffcc29;
    cursor: pointer;
}

@-webkit-keyframes slide {
    100% {
        left: 0;
    }
}

@keyframes slide {
    100% {
        left: 0;
    }
}


.smart-search-modal .smart-form {
    position: absolute;
    width: 100%;
    max-width: 50%;
    top: 20%;
    left: 50%;
    -webkit-transform: translate(-50%, -25%);
    -moz-transform: translate(-50%, -25%);
    -o-transform: translate(-50%, -25%);
    transform: translate(-50%, -25%);
}

.smart-search-modal .smart-close {
    width: 15px;
    height: 15px;
    font-size: 30px;
    color: #FFFFFF;
    margin: 0 auto;
    -webkit-transition: all ease-in .15s;
    -o-transition: all ease-in .15s;
    -moz-transition: all ease-in .15s;
    transition: all ease-in .15s;
    -webkit-animation: fadeIn .3s ease-in both;
    -moz-animation: fadeIn .3s ease-in both;
    -o-animation: fadeIn .3s ease-in both;
    animation: fadeIn .3s ease-in both;
    -webkit-animation-delay: .1s;
    -moz-animation-delay: .1s;
    -o-animation-delay: .1s;
    animation-delay: .1s;
}

.smart-search-modal .smart-close i {
    -webkit-transition: all ease-in-out .3s;
    -o-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s
}

.smart-search-modal .smart-close:hover i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg)
}

.smart-search-modal .smart-close:hover {
    cursor: pointer;
}

.smart-search-modal .smart-form .h1 {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
    letter-spacing: 5px;
}

.smart-search-modal .h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffcc29;
    margin: 1.5rem auto 0 auto;
}

.smart-search-modal .form {
    max-width: 64rem;
    margin: 0 auto;
    opacity: 0;
    -webkit-animation: fadeIn .3s ease-in both;
    -moz-animation: fadeIn .3s ease-in both;
    -o-animation: fadeIn .3s ease-in both;
    animation: fadeIn .3s ease-in both;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s;
}

.smart-search-modal .smart-input {
    border: none !important;
    -webkit-box-shadow: inset 0 -1px 0 0 currentColor;
    -moz-box-shadow: inset 0 -1px 0 0 currentColor;
    box-shadow: inset 0 -1px 0 0 currentColor;
    -webkit-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
    -moz-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
    background: #FFFFFF;
    width: 100%;
    height: 50px;
    color: #595c6d;
    font-size: 14px;
    padding-right: 8rem !important;
    padding-left: 20px;
    border-radius: 5px;
}

.smart-search-modal .smart-input:focus {
    border: 0;
}

.smart-search-modal .smart-submit {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    top: 4px;
    right: 5px;
    background: 0;
    border: 0;
    opacity: 1;
    -webkit-transition: all ease .15s;
    -o-transition: all ease .15s;
    -moz-transition: all ease .15s;
    transition: all ease .15s;
    padding: 5px;
}

.smart-search-modal .smart-submit i {
    font-size: 18px;
}

.smart-search-results {
    display: none;
    top: 100%;
    width: 100%;
    background: #fff;
    border: solid 0.1rem #ecedee;
    z-index: 60;
    box-shadow: 0 20px 20px 2px rgb(0 0 0/10%);
    -webkit-box-shadow: 0 20px 20px 0px rgb(0 0 0/10%);
    -moz-box-shadow: 0 20px 20px 0px rgba(0, 0, 0, 0.1);
}

.smart-search-term {
    border-bottom: solid 1px #ecedee;
}

.smart-search-term .label {
    font-size: 13px;
    color: #595c6d;
}

.smart-search-results .smart-all-results {
    background: 0 0;
    border: 0;
    text-decoration: underline;
    color: #595c6d;
    font-size: 13px;
}

.smart-search-results .result-item,
.smart-search-results .result__search {
    border-bottom: solid 1px #ecedee;
}

.smart-search-results .result-item,
.smart-search-results .result__search {
    border-bottom: solid 1px #ecedee;
}

.smart-search-results .result-link {
    background: #fff;
    -webkit-transition: all ease .15s;
    -o-transition: all ease .15s;
    -moz-transition: all ease .15s;
    transition: all ease .15s;
    -webkit-box-shadow: 0 0 0 rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 0 rgb(0 0 0 / 15%);
}

.smart-search-image {
    width: 100px;
    height: 90px;
}

.smart-search-results .price-total {
    color: #ffcc29;
}

.smart-search-results .price-compare,
.smart-search-results .price-total {
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
}

.smart-search-results .icon {
    color: #ffcc29;
    width: 20px;
}

.smart-search-results .result-link .title {
    font-size: calc(14 * 1px);
}

.smart-search-results .title {
    color: #2c3049;
}

.smart-search-results .result-list {
    padding: 0;
    overflow-y: auto;
    max-height: 300px;
}

.dc-scroll.ps {
    position: relative;
    overflow: hidden;
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

.smart-search-results .img-fluid {
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
}

.smart-search-results .result-link:hover {
    -webkit-box-shadow: 0 0 30px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 30px rgb(0 0 0 / 15%);
    text-decoration: none;
}

/** MAIN BANNER **/
.main-banner {
    margin-top: 20px;
}

.main-banner .banners {
    position: relative;
}

.main-banner .banners.owl-carousel .owl-item.active .banner .info p {
    top: 0;
    opacity: 1;
}

.main-banner .banners.owl-carousel .owl-item.active .banner .info h1.title {
    top: 0;
    opacity: 1;
}

.main-banner .banners.owl-carousel .owl-item.active .banner .big-button {
    top: 0;
    opacity: 1;
}

.main-banner .banners.owl-carousel .owl-item.active .banner .image {
    top: 0;
    opacity: 1;
}

.main-banner .banner {
    width: 100%;
    height: 100%;
}

.main-banner .banner .info {
    padding-top: 100px;
    font-weight: 500;
}

.main-banner .banner .info p {
    margin: 0;
    opacity: 0;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}

.main-banner .banner .image {
    width: 100%;
    opacity: 0;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}

.main-banner .banner .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-banner .banner .big-button {
    margin-top: 20px;
    opacity: 0;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}

.main-banner .banner .info h1.title {
    font-size: 70px;
    font-weight: 150;
    line-height: 60px;
    color: #373737;
    opacity: 0;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}


.banner-control-infos {
    width: 100%;
    position: relative;
    margin-top: -40px;
}

.banner-controls {
    display: flex;
    flex-direction: row;
    position: relative;
}

.banner-controls .controls {
    display: flex;
    flex-direction: row;
    margin-right: 25px;
}

.banner-controls .controls .arrow-left,
.banner-controls .controls .arrow-right {
    border: none;
    background: transparent;
}

.banner-controls .controls .arrow-left:hover,
.banner-controls .controls .arrow-right:hover {
    cursor: pointer;
    opacity: .7;
}

.banner-controls .controls i {
    font-size: 22px;
}

.banner-controls .controls .arrow-left {
    margin-right: 25px;
}

.banner-controls .progress {
    width: 50%;
    position: absolute;
    right: 20px;
    bottom: 0;
    background-color: #FFFFFF;
    height: 5px;
}

.banner-controls .progress .progress-bar {
    background-color: #ffcc29;
}

.banner-number span {
    font-size: 14px;
    color: #585858;
}

.banner-number .active {
    color: #000000;
    font-size: 20px;
}

.banner-infos {
    width: 100%;
    min-height: 120px;
    background: #FFFFFF;
    margin-top: 10px;
    border-radius: 5px;
}

.banner-infos .info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px;
}

.banner-infos .info div {
    display: flex;
    flex-direction: column;
    margin-right: 25px;
}

.banner-infos .info div:last-child {
    margin-right: 0;
}

.banner-infos .info span {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.banner-infos .info .bigger {
    font-size: 30px;
    font-weight: 200;
    margin-top: -5px;
    opacity: 0;
}

.banner-infos .description {
    background-color: #363636;
    color: #FFFFFF;
    border-radius: 0 5px 5px 0;
    position: relative;
    padding: 25px;
    opacity: 0;
}

.banner-infos .description p {
    font-size: 12px;
    margin: 0;
}

/** HOME INVENTORY **/

.inventory-home {
    margin-top: 0;
}

.cars-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cars-container .car-box {
    margin-bottom: 30px;
}

.cars-container .car-box .car-wrapper {
    background: #FFFFFF;
    border-radius: 5px;
}

.cars-container .car-box .image {
    position: relative;
    overflow: hidden;
    height: 230px;
    width: 100%;
}

.car-box .image {
    position: relative;
}

.cars-container .car-box .rented-seal {
    position: absolute;
    top: -5px;
    left: 10px;
    z-index: 5;
}

.car-box .selo-feirao {
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 100;
    width: 90px;
    pointer-events: none;
}

.cars-container .car-box .rented-interesting {
    position: absolute;
    top: 195px;
    left: 10px;
    z-index: 5;
}

.cars-container .car-box .rent-property {
    position: absolute;
    top: 195px;
    right: 10px;
    z-index: 5;
}

.cars-container .car-box .image .car-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    transition: 0.3s all;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cars-container .car-box .image .car-overlay span {
    background-color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
    color: #0d0a0a;
}

.cars-container .car-box .image .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, .44, 1.18), -webkit-transform 2s cubic-bezier(0, 0, .44, 1.18);
}

.cars-container .car-box .car-wrapper:hover .image img:first-child {
    opacity: 0;
}

.cars-container .car-box .car-wrapper:hover .hover-image {
    opacity: 1;
    transform: scale(1.09);
}

.cars-container .car-box .image .car-action-wrap {
    position: absolute;
    top: 26px;
    right: 26px;
    transition: 0.3s all;
    transform: translateX(26px);
    opacity: 0;
}

.cars-container .car-box .image .car-action-wrap a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: var(--light);
    border: 2px solid #ffcc29;
    border-radius: 100%;
    text-align: center;
    margin-bottom: 16px;
    font-size: 18px;
    position: relative;
}

.cars-container .car-box .car-wrapper:hover .car-action-wrap {
    opacity: 1;
    transform: translatex(0);
    -webkit-transform: translatex(0);
}

.cars-container .car-box .car-wrapper:hover .car-overlay {
    opacity: 1;
}

.cars-container .car-box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0 0;
}

.car-box .infos {
    width: 100%;
    height: 130px;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 0 0 5px 5px;
}

.car-box .infos .title {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.car-box .infos .info {
    position: relative;
    padding: 0;
    margin: 0;
}

.car-box .infos .info .info-wrapper {
    background: #FFF;
    position: absolute;
    bottom: -1px;
    right: -1px;
    clip-path: polygon(30px 0, 100% 0, calc(100%) 100%, 0 100%);
    z-index: 2;
    width: 100%;
    height: 150px;
    padding: 20px;
    border-radius: 0 0 5px 0;
}

.car-box .infos .title small {
    font-size: 12px;
    font-weight: 500;
}

.car-box .infos .title h4 {
    font-weight: 200;
}

.car-box .infos .info {
    align-items: end;
    background-color: transparent;
    color: #373737;
    border-radius: 0 0 5px 0;
}

.car-box .infos .info span {
    font-size: 12px;
    font-weight: 500;
}

.car-box .infos .info .bigger {
    font-size: 22px;
    font-weight: 300;
}

.car-box .infos .info div {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-around;
}

/** SOCIAL CALL **/
.social-call {
    width: 100%;
    height: 290px;
    background-color: #ffcc29;
    margin-top: 50px;
}

.social-call h2 {
    text-transform: uppercase;
    font-size: 55px;
    font-weight: 900;
    margin-bottom: 0;
}

.social-call p {
    margin: 0;
    padding: 0;
}

.social-call ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}

.social-call ul li {
    margin-right: 15px;
}

.social-call ul li:last-child {
    margin-right: 0;
}

.social-call ul li a {
    font-size: 35px;
}

.social-call ul li a:hover {
    color: #FFFFFF;
}

/** TEAM **/
.team {
    margin-top: 50px;
}

.team .team-box .wrapper {
    padding: 40px 15px;
    border-radius: 5px;
    background: #FFFFFF;
}

.team .team-box .avatar {
    width: 130px;
    margin-bottom: 30px;
}

.team .team-box .infos {
    text-align: center;
}

.team .team-box .infos h4 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
}

.team .team-box .infos small {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

.team .team-box .infos small:before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Pro";
    margin-right: 5px;
}

.team .team-box .infos .social {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
}

.team .team-box .infos .social li {
    margin-right: 10px;
}

.team .team-box .infos .social li a {
    font-size: 22px;
}

/** OUR TEAM **/
.our-team {
    position: relative;
    padding: 150px 0 50px 0;
    margin: -70px 0 150px 0;
}

.our-team .our-team-box {
    padding: 20px;
}

.our-team .our-team-box .infos {
    margin-top: 20px;
}

.our-team .our-team-box .infos h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
}

.our-team .our-team-box .infos small {
    text-transform: uppercase;
    font-size: 12px;
}

.our-team .our-team-box .picture {
    position: relative;
}

.our-team .our-team-box .picture .location {
    position: absolute;
    right: -5px;
    top: -5px;
    background: #ffcc29;
    padding: 1px 15px;
}

.our-team .our-team-box .picture .location small {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.our-team .our-team-box .picture .location small:before {
    content: "\f3c5";
    font-family: "Font Awesome 5 Pro";
    margin-right: 5px;
}

.our-team .our-team-box .picture .social-contact-team {
    position: absolute;
    background: #ffcc29;
    bottom: 0;
    left: 10%;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s, opacity 0.5s;
}

.our-team .our-team-box:hover .picture .social-contact-team {
    opacity: 1;
    transform: translateY(0);
}

.our-team .our-team-box .picture .social-contact-team ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 5px 15px;
}

.our-team .our-team-box .picture .social-contact-team ul li {
    margin-right: 15px;
}

.our-team .our-team-box .picture .social-contact-team ul li a {
    display: block;
}

.our-team .our-team-box .picture .social-contact-team ul li:last-child {
    margin-right: 0;
}

.our-team .our-team-box .picture img {
    width: 100%;
    height: 100%;
}

.our-team .background-style {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

.company-group .background-style {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.our-team .background-style .banner-left,
.company-group .background-style .banner-left {
    position: absolute;
    z-index: 0;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    left: 0;
    top: 10%;
}

.our-team .background-style .banner-right,
.company-group .background-style .banner-right {
    position: absolute;
    z-index: -1;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    right: 0;
    top: 25%;
}

.our-team .background-style .item-left {
    position: absolute;
    z-index: 0;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    left: -1%;
    bottom: -8%;
}

.our-team .background-style .item-right {
    position: absolute;
    z-index: 0;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    right: -1%;
    bottom: -4%;
}

.our-team #team-slide {
    position: relative;
}

.our-team #team-slide .slide-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffcc29;
    padding: 5px 8px;
}

.our-team #team-slide .slide-arrow:hover {
    cursor: pointer;
    opacity: .8;
}

.our-team #team-slide .slide-prev,
.our-team #team-slide .slide-next {
    position: absolute;
    top: 40%;
    z-index: 5;
}

.our-team #team-slide .slide-prev {
    left: 0;
}

.our-team #team-slide .slide-next {
    right: 0;
}

/** OUR TEAM **/
.company-group {
    position: relative;
    background: #f6c320;
    padding: 30px 0 80px 0;
}

/** SERVICES **/
.services {
    position: relative;
    margin-bottom: -160px;
    z-index: 1;
}

.services .service-box {
    height: 399px;
    padding: 10px;
    font-size: 14px;
}

.services .service-box .service-box-wrapper {
    width: 100%;
    height: 100%;
    text-align: left;
    padding: 54px 45px 54px;
    box-shadow: -1.408px 2.649px 54.28px 4.72px rgb(25 4 2/5%);
    background: #FFFFFF;
    position: relative;
    transition: 0.3s all;
    overflow: hidden;
}

.services .service-box .service-box-wrapper:hover {
    color: white;
    background: #131313 !important;
}

.services .service-box .service-box-wrapper:hover .overlay {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
}

.services .service-box .service-box-wrapper .overlay {
    background: url("../images/tire_hover.png");
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    background-size: cover;
    transition: 0.7s all;
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    will-change: transform;
}

.services .service-box .service-box-wrapper .icon,
.services .service-box .service-box-wrapper .title,
.services .service-box .service-box-wrapper .text {
    position: relative;
    z-index: 1;
}

.services .service-box h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.services .service-box .text {
    margin-top: 20px;
}

.services .service-box .text p {
    font-size: 13px;
}

.services .service-box .icon {
    width: 70px;
    height: auto;
    margin-bottom: 30px;
}

.services .service-box .icon img {
    width: 100%;
    height: 100%;
}

/** QUALITY SERVICES **/
.quality-service {
    position: relative;
    background-color: #F6F6F6;
    overflow: hidden;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 215px 0 91px 0;
}

.quality-service .background-style {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.quality-service .background-style .banner-left {
    position: absolute;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    left: 0;
    bottom: 0;
}

.quality-service .background-style .item-left {
    position: absolute;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    left: 0;
    bottom: 0;
}

.quality-service .background-style .item-right {
    position: absolute;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 0.5s;
    animation-delay: 0s;
    right: 0;
    top: 0;
}

.quality-service .container {
    margin-top: -100px;
}

.quality-service .container .detail:first-child {
    padding-right: 15px;
}

.quality-service .container .detail:last-child {
    padding-top: 150px;
}

.quality-service .container .text {
    padding-left: 50px;
}

.quality-service .container .certified {
    margin-top: 30px;
    padding-left: 50px;
    display: flex;
    flex-direction: row;
}

.quality-service .container .certified img {
    width: 100px;
}

.quality-service .container .line-spacer {
    width: 100%;
    height: 1px;
    background: #ffcc29;
    margin-left: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/** COMPANY SECTION **/
.company-us {
    width: 100%;
    margin-top: 100px;
    position: relative;
    height: 665px;
}

.company-us .left-element {
    position: absolute;
    left: 0;
    top: -75px;
}

.company-us .right-element {
    width: 74%;
    max-width: 74%;
    position: absolute;
    z-index: 1;
    top: -6px;
    right: 0;
}

.company-us .right-element .right-container {
    width: 100%;
    background-image: url("../images/car-company-right.webp");
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
}

.company-us .right-element .company-us-spacer {
    height: 665px;
}

.company-us .content {
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.company-us .content .content-wrapper {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 0% 2% 0% 37%;
}

.company-us .companies {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.company-us .companies .company-box {
    padding: 10px;
    color: #FFFFFF;
    font-size: 14px;
    width: 50%;
    margin-bottom: 30px;
}

.company-us .companies .company-box h4 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
}

.company-us .companies .company-box p {
    font-size: 13px;
    margin-bottom: 0;
}

.company-us .companies .company-box p.phone {
    color: #ffcc29;
    font-size: 14px;
    font-weight: 700;
    margin-top: 10px;
}

.company-us .companies .company-box .company-box-wrapper {
    display: flex;
    flex-direction: row;
}

.company-us .companies .company-picture {
    margin-right: 30px;
}

.company-us .companies .company-picture .picture {
    width: 70px;
    height: 70px;
}

.company-us .companies .company-picture .picture img {
    width: 100%;
    height: 100%;
}

.company-us .map-button {
    display: block;
    width: 150px;
}

.company-us .map-button img {
    width: 100%;
    height: 100%
}

.style-title {
    position: relative;
    text-align: left;
    margin-bottom: 40px;
}

.page-about .style-title:before {
    content: "";
    width: 30%;
    height: 1px;
    background: #000;
    position: absolute;
    left: -25%;
    bottom: 40px;
}

.page-about .style-title:after {
    content: "";
    width: 30%;
    height: 1px;
    background: #000;
    position: absolute;
    right: -35%;
    bottom: 40px;
}

.style-title h3 {
    color: #FFFFFF26;
    -webkit-text-stroke-color: #FFFFFF26;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    font-size: 100px;
    font-weight: 700;
    line-height: 1em;
    white-space: nowrap !important;
}

.style-title.dark h3 {
    color: rgba(0, 0, 0, 0.15);
    -webkit-text-stroke-color: rgba(0, 0, 0, 0.15);
}

.style-title h6 {
    font-weight: 700;
    color: #ffcc29;
    font-size: 16px;
    margin-top: -84px;
    padding-left: 68px;
    text-transform: uppercase;
}

.style-title h4 {
    color: #FFFFFF;
    max-width: 685px;
    font-size: 40px;
    font-weight: 700;
    line-height: 44px;
    padding-left: 68px;
    position: relative;
    margin-bottom: 0;
    margin-top: -2px;
}

.style-title.dark h4 {
    color: #1b1e21;
}

.style-title h4:after {
    background: #ffcc29;
    width: 35px;
    height: 5px;
    content: "";
    display: block;
    margin-top: 10px;
}

.stats {
    background-attachment: fixed;
    background-image: url("../images/shop-room.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 70px 0 70px 0;
    position: relative;
}

.stats .stats-box {
    position: relative;
}

.stats .stats-box .infos {
    position: relative;
    z-index: 1;
}

.stats .stats-box .infos h4 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2em;
}

.stats .stats-box .infos p {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
}

.stats .stats-box .square-container {
    position: absolute;
    left: -4px;
    z-index: 0;
    width: 78px;
    max-width: 78px;
    top: -3px;
}

.stats .stats-box .square-container .square-wrap {
    background: #f2cb3f;
}

.stats .stats-box .square-container .square-wrap .square-inner {
    height: 108px;
}

/** FOOTER **/
.copyright {
    margin-bottom: 30px;
}

.copyright p {
    font-size: 14px;
}

.copyright .company img {
    width: 80px;
    margin-right: 20px;
}

.copyright .copyright-text {
    font-size: 14px;
}

.copyright .social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.copyright .social li {
    margin-right: 15px;
}

.copyright .social li a {
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.copyright .social li a:hover {
    color: #ffcc29;
}

.copyright .social li a span {
    letter-spacing: 3px;
}

.copyright .social li a i {
    font-size: 20px;
    margin-right: 10px;
}

.copyright .company ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.copyright .company ul li {
    margin-right: 5px;
}

/** FOOTER FIX WHATS **/
.social-contact {
    position: fixed;
    width: 55px;
    height: 55px;
    right: 35px;
    bottom: 30px;
    margin-bottom: 10px;
    z-index: 999;
}

.share-site {
    position: fixed;
    width: 55px;
    height: 55px;
    left: 35px;
    bottom: 30px;
    margin-bottom: 10px;
    z-index: 999;
}

.share-site div {
    float: right;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    text-align: center;
    margin-bottom: 5px;
    background: #ffcc29;
    cursor: pointer;
    box-shadow: 0 8px 6px -7px #000;
    -webkit-box-shadow: 0 8px 6px -7px #000;
    -moz-box-shadow: 0 8px 6px -7px #000;
    transition: background 0.995s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.social-contact div {
    float: right;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    text-align: center;
    margin-bottom: 5px;
    background: #4DC247;
    cursor: pointer;
    box-shadow: 0 8px 6px -7px #000;
    -webkit-box-shadow: 0 8px 6px -7px #000;
    -moz-box-shadow: 0 8px 6px -7px #000;
    transition: background 0.995s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.social-contact>.bubbleWhats {
    position: absolute;
    width: 140px;
    height: 40px;
    padding: 0px;
    background: #32892E;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    right: 70px;
    font-size: 15px;
    color: #fff;
    line-height: 40px;
    margin-top: 5px;
    display: none;
}

.share-site>.bubbleShare {
    position: absolute;
    width: 140px;
    height: 40px;
    padding: 0px;
    background: #ffcc29;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    left: 70px;
    font-size: 15px;
    color: #000;
    line-height: 40px;
    margin-top: 5px;
    display: none;
}

.share-site>.bubbleShare:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 9px 15px 9px 0;
    border-color: transparent #ffcc29;
    display: block;
    width: 0;
    z-index: 1;
    left: -15px;
    top: 11px;
}

.social-contact>.bubbleWhats:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent #32892E;
    display: block;
    width: 0;
    z-index: 1;
    right: -15px;
    top: 11px;
}

.share-site>.ws {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
    animation: pulse2 2s infinite;
}

.social-contact>.ws {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
    animation: pulse 2s infinite;
}

.social-contact .ws:hover {
    background: #32892E;
    transition: background 0.995s;
}

.share-site .ws:hover {
    background: #ffcc29;
    transition: background 0.995s;
}

.social-contact>.ws>a {
    font-size: 28px !important;
    color: #fff !important;
    transition: color 3s;
    cursor: pointer;
    display: block;
}

.share-site>.ws>a {
    font-size: 25px !important;
    color: #000 !important;
    transition: color 3s;
    cursor: pointer;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@-webkit-keyframes pulse2 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes pulse {
    10% {
        -moz-box-shadow: 0 0 0 0 #4DC247;
        box-shadow: 0 0 0 0 #4DC247;
    }

    80% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 15px rgba(204, 169, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse2 {
    10% {
        -moz-box-shadow: 0 0 0 0 #ffcc29;
        box-shadow: 0 0 0 0 #ffcc29;
    }

    80% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 15px rgba(204, 169, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.contact {
    margin: 0 0 !important;
    min-height: 675px;
    background-image: url("../images/contact.png");
    background-repeat: no-repeat;
    background-position: center left 5%;
}

.contact-addresses p {
    margin-bottom: 0;
    font-size: 13px;
}

.contact-addresses p.phone {
    font-weight: 600;
}

.contact-addresses p.phone:before {
    content: "\f879";
    font-family: "Font Awesome 5 Pro";
    color: #000000;
    margin-right: 3px;
}

.contact-addresses h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.contact-links .item {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 85px;
    padding-bottom: 2px;
    padding-left: 15px;
    padding-right: 15px;
}

.contact-links .item:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(189, 189, 189, 0), #bdbdbd);
}

.contact-links .item:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(189, 189, 189, 0), #bdbdbd);
}

.contact-links .item .item-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    text-decoration: none;
    padding: 0 15px;
}

.contact-links .item .item-link .item-arrow {
    margin-right: 15px;
}

.contact-links .item .item-link:hover {
    color: #806615;
}

.contact-links .item .item-link .item-title {
    margin-right: 60px;
    width: 195px;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    will-change: opacity, transform;
}

.contact-links .item .item-link .item-title i {
    font-size: 18px;
    margin-right: 15px;
}

.contact-links .item .item-link .item-arrow {
    position: absolute;
    top: 32px;
    right: 0;
    will-change: opacity, transform;
}

.page-about {
    background-image: url("../images/about-bg.png");
    background-size: auto;
    background-position: left top;
    background-repeat: no-repeat;
}

.about {
    position: relative;
}

.about .background-style {
    position: absolute;
    left: 0;
    top: 150px;
    width: 100%;
}

.about .background-style .item-right {
    position: absolute;
    right: -100px;
    top: 0;
}

/** CAR GALLERY **/
.car-gallery {
    margin-top: -135px;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 0;
}

.gallery-no-photo {
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    width: 100%;
    height: 500px;
}

.car-gallery .gallery-arrow {
    position: absolute;
    transition: 0.3s all;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 20px;
    height: 60px;
    width: 30px;
    z-index: 1;
    line-height: 60px;
    top: 50%;
    margin-top: -30px;
    opacity: 0;
    text-align: center;
}

.car-gallery .gallery-arrow.prev-item {
    left: 0;
    transform: translatex(-20px);
    -webkit-transform: translatex(-20px);
}

.car-gallery .gallery-arrow.next-item {
    right: 0;
    transform: translatex(20px);
    -webkit-transform: translatex(20px);
}

.car-gallery:hover .gallery-arrow {
    opacity: 1;
    transform: translatex(0);
    -webkit-transform: translatex(0);
}

.car-gallery .slick-gallery {
    height: 100%;
}

.car-gallery .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 20%, #FFFFFF00 100%);
    opacity: 0.41;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 2;
}

.car-gallery .car-favorite {
    position: absolute;
    z-index: 1;
    color: #ffffff;
    top: 100px;
    right: 40px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.6);
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s all;
}

.car-gallery .car-video-popup-wap {
    position: absolute;
    bottom: 15px;
    right: 40px;
    z-index: 1;
}

.car-gallery .car-video-popup-wap .car-video-popup {
    display: block;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    padding: 0 20px 0 8px;
    text-decoration: none;
}

.car-gallery .car-video-popup-wap .car-video-popup i {
    font-size: 22px;
    margin-right: 7px;
    display: inline-block;
    vertical-align: middle;
}

.car-gallery .car-video-popup-wap .car-video-popup:hover,
.car-gallery .car-favorite:hover {
    background: #000000;
}

.car-gallery .slick-gallery a {
    display: block;
    width: 33.33%;
    height: 100%;
}

.car-gallery .slick-gallery a img {
    width: 100%;
    height: 100%;
}

.page-newcar .main-menu li a,
.page-car-detail .main-menu li a {
    color: #FFFFFF;
    text-shadow: 1px 1px 3px #000;
}

.lg-backdrop.in {
    opacity: 0.8;
}

/** CAR CONTENT **/
.car-content {
    position: relative;
    z-index: 1;
    padding: 50px 0;
    margin-top: 0;
    margin-bottom: 100px;
}

.page-car-detail .car-content .style-title.car-name {
    margin-bottom: 20px;
}

.page-car-detail .car-content .style-title.car-name h4 {
    margin-top: -60px;
}

.page-car-detail .mobile-search button {
    color: #FFFFFF;
}

.car-content .car-single-attribute {
    padding-top: 33px;
    padding-bottom: 6px;
    clear: both;
}

.car-content .car-single-attribute .car-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.car-content .car-single-attribute .car-list ul li {
    width: auto;
    display: inline-block;
    margin-bottom: 20px;
}

.car-content .car-single-attribute .car-list ul li:not(:last-child) {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #f0f0f0;
}

.car-content .car-single-attribute .car-list ul li i {
    color: #ffcc29;
    font-size: 18px;
    margin-right: 15px;
    position: absolute;
}

.car-content .car-single-attribute .car-list ul li>span {
    display: inline-block;
    vertical-align: top;
    line-height: 20px;
    padding-left: 25px;
    font-size: 13px;
}

.car-content .car-single-attribute .car-list ul li>span span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
}

.car-content .car-detail {
    margin: 30px 0;
}

.car-content .car-detail h4,
.car-content .car-features h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
}

.car-content .car-detail h4:after,
.car-content .car-features h4:after {
    content: "";
    width: 100%;
    height: 1px;
    margin: 30px 0;
    background: #ffcc29;
    position: absolute;
    left: 0;
    top: 0;
}

.car-content .car-detail .text {
    font-size: 14px;
    margin-top: 15px;
    color: #282828;
}

.car-content .car-section-box {
    border: 1px solid #dfdfdf;
    padding: 15px;
    margin-bottom: 10px;
}

.car-content .car-section-box.bg-dark {
    background-color: #131313 !important;
    border: none;
}

.car-form-proposal .g-recaptcha {
    margin: 0 auto;
}

.car-content .car-price {
    width: 100%;
    padding: 10px;
    background: #ffcc29;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 25px;
}

.car-content .car-certified {
    display: flex;
    flex-direction: row;
}

.car-content .car-certified img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.car-content .car-certified .text {
    font-size: 13px;
}

.car-content .car-city-bg {
    position: relative;
    width: 100%;
    height: 130px;
    background-color: #000000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.car-content .car-city-bg .overlay {
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.car-content .car-city-bg .city-infos {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.car-content .car-city-bg .city-infos h6 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

.car-content .car-city-bg .city-infos a {
    color: #ffcc29;
    font-size: 13px;
}

.car-content .car-city-bg .city-infos small:before {
    content: "\f606";
    font-family: "Font Awesome 5 Pro";
    margin-right: 10px;
}

.car-content .dealer-contact h6 {
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 0;
}

.car-content .dealer-contact h4 {
    font-size: 18px;
    font-weight: 700;
}

.car-content .dealer-contact .icon {
    margin-right: 15px;
}

.car-content .dealer-contact .icon i {
    font-size: 35px;
    color: #ffcc29;
}

.car-content .social-medias {
    margin-top: 10px;
}

.car-content .social-medias ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.car-content .social-medias ul li {
    display: inline-block;
    margin-right: 5px;
}

.car-content .social-medias ul li:last-child {
    margin-right: 0;
}

.car-content .social-medias ul li a {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 42px;
    position: relative;
    display: block;
    font-size: 18px;
    color: #ffcc29;
}

.car-content .social-medias ul li a:before {
    background-color: #ffcc29;
    opacity: 0.2;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    content: "";
    left: 0;
    top: 0;
    transition: 0.3s all;
    z-index: -1;
}

.car-content .social-medias ul li a:hover:before {
    opacity: 1;
}

.car-content .social-medias ul li a:hover {
    color: #FFFFFF;
}

.page-car-detail .btn.btn-primary {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    color: #ffcc29;
    border: 2px solid #ffcc29;
}

.page-car-detail .btn.btn-primary:hover {
    background: #ffcc29;
    color: #000000;
}

.page-car-detail .btn.btn-success {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    color: #48ec00;
    border: 2px solid #48ec00;
}

.page-car-detail .btn.btn-success:hover {
    background: #48ec00;
    color: #000000;
}

.page-car-detail .btn.btn-dark {
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.page-car-detail .btn.btn-dark:hover {
    background: #000000;
    color: #FFFFFF;
}

.page-car-detail .btn.compare-open-car-page {
    background-color: #4DC247;
    border-color: #4DC247;
    color: #FFFFFF;
}

.page-car-detail .btn.compare-open-car-page:hover {
    background-color: #4DC247;
    opacity: .7;
}

.page-car-detail .breadcrumb {
    background: transparent;
}

.page-car-detail .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "\f101";
    font-family: "Font Awesome 5 Pro";
}

.page-car-detail .breadcrumb li {
    text-transform: uppercase;
    font-size: 13px;
}

.page-car-detail .breadcrumb li a:hover {
    color: #ffcc29;
}

.page-car-detail .form-control {
    border-radius: 0;
}

.page-car-detail label {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 3px;
}

.page-car-detail .breadcrumb li.active {
    font-weight: 700;
}

.car-content .car-features span {
    font-size: 14px;
    margin-bottom: 15px;
}

.car-content .car-features span:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    margin-right: 15px;
    color: #ffcc29;
}

.car-ad {
    margin-top: -120px;
    text-transform: uppercase;
}

.car-ad p {
    margin-bottom: 0;
    font-weight: 300;
}

.car-ad h4 {
    font-weight: 700;
    margin: 15px 0;
}

.car-ad .container {
    background-position: center center;
    background-size: cover;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0;
    margin-bottom: 0;
}

.car-ad .row {
    padding: 32px 68px 32px 68px;
}

.car-ad .btn.btn-warning {
    border-radius: 0;
    padding: 18px 50px;
    font-weight: 500;
    text-transform: uppercase;
}

.page-inventory {
    background-image: url("../images/slider3.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.page-newcar {
    background-image: url("../images/inventory-new.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.page-newcar .inventory-header {
    min-height: 250px;
}

.page-newcar .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 20%, #FFFFFF00 100%);
    opacity: 0.41;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: -1;
}

.page-financing {
    background-image: url("../images/bg-services.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.page-financing .btn.btn-block {
    font-size: 18px;
}

.page-financing .selector-car-box {
    display: block;
    width: 100%;
    position: relative;
}

.page-financing .card h2 {
    text-transform: uppercase;
    font-weight: 300;
}

.page-financing .selector-car-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-financing .selector-car-model {
    position: absolute;
    background-color: #ffcc29;
    padding: 2px 15px;
    bottom: -5px;
    right: -5px;
}

.page-black {
    background-image: url("../images/bg-black-november.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.page-natal {
    background-image: url("../images/bg-natal.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.page-black #slideShow img {
    -webkit-box-shadow: 0px 0px 66px 13px rgba(126, 91, 21, 0.9);
    -moz-box-shadow: 0px 0px 66px 13px rgba(126, 91, 21, 0.9);
    box-shadow: 0px 0px 66px 13px rgba(126, 91, 21, 0.9);
    border-radius: 20px;
}

.page-black .style-title.black-november h4 {
    text-shadow: rgba(250, 249, 247, 1) 0px 0px 39px;
}

.page-houses {
    background-image: url("../images/bg-houses.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.page-houses .main-menu ul li a,
.page-black .main-menu ul li a,
.page-natal .main-menu ul li a {
    color: #FFFFFF;
}

.page-inventory .inventory-no-results {
    width: 100%;
    padding: 30px;
    margin: 50px 0;
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 0 8px 6px -7px #000;
    -webkit-box-shadow: 0 8px 6px -7px #000;
    -moz-box-shadow: 0 8px 6px -7px #000;
}

.page-inventory form label {
    font-weight: 500;
    margin-bottom: 3px;
}

.page-financing .main-menu li a,
.page-inventory .main-menu li a {
    color: #FFF;
}

.page-inventory select.form-control {
    border-radius: 3px;
    height: 32px;
    font-size: 13px !important;
}

.page-inventory .big-button {
    background: #000000;
    color: #FFFFFF;
    font-weight: 500;
}

.page-inventory .select2-results__option {
    font-size: 13px;
}

.page-inventory .mobile-search button {
    color: #FFFFFF;
}

#price-range-min,
#price-range-max {
    font-size: 16px;
    font-weight: 500;
}

.filter-car {
    background: #ffcc29;
    padding: 18px 20px 20px 50px;
    border: none;
    font-size: 12px;
    line-height: 14px;
    clip-path: polygon(30px 0, 100% 0, calc(100%) 100%, 0 100%);
}

.filter-car .mobile-filter-form {
    display: none;
}

.ordering-filters small {
    color: #FFFFFF;
}

.ordering-filters small.expanded {
    color: #000000;
}

.filter-results {
    background-color: #FFFFFF;
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.filter-results span {
    margin-bottom: -5px;
}

.ordering-filters .filter-label.expanded {
    color: #FFFFFF !important;
}

.inventory .search-form span {
    margin-right: 15px;
}

.page-contact .btn-primary {
    border-radius: 0;
    font-size: 13px;
    text-transform: uppercase;
    background-color: #ffcc29;
    border-color: #ffcc29;
    color: #000000;
}

.page-contact .btn-primary:hover {
    opacity: 0.75;
}

.page-contact textarea.form-control,
.page-contact input.form-control {
    border-radius: 0;
    font-size: 14px;
}

.payment h1 {
    font-weight: 300;
}

.car-ad.payment-ad {
    margin-top: 0;
    text-transform: uppercase;
}

.payment .btn {
    border-radius: 0;
    font-size: 16px;
}

.payment.success h1 {
    color: #4DC247;
}

.payment.warning h1 {
    color: #ffc107;
}

.payment.danger h1 {
    color: #dc3545;
}

.payment .subtitle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-content: center;
    margin-bottom: 20px;
}

.payment .subtitle h4 {
    margin: 0;
    padding: 0;
}

.payment .subtitle i {
    font-size: 25px;
    margin-right: 30px;
}

.payment.success .subtitle i {
    color: #4DC247;
}

.payment.success .btn {
    background-color: #4DC247;
}

.payment.warning .subtitle i {
    color: #ffc107;
}

.payment.warning .btn {
    background-color: #ffc107;
}

.payment.danger .subtitle i {
    color: #dc3545;
}

.payment.danger .btn {
    background-color: #dc3545;
    color: #FFFFFF;
}

.payment-header {
    width: 100%;
    margin-top: -66px !important;
    height: 300px;
    position: relative;
}

.payment-header.success {
    background-color: #4DC247;
}

.payment-header.warning {
    background-color: #ffc107;
}

.payment-header.danger {
    background-color: #dc3545;
}

.payment-header .icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #FFFFFF;
    margin: 75px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-header .icon i {
    font-size: 70px;
}

.modal-dialog-fullscreen {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    margin: 0;
    position: relative;
}

.modal-dialog-fullscreen .modal-content {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

#compareModal .modal-header {
    background-color: #000000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
}

#compareModal .modal-header .modal-title {
    color: #FFFFFF;
}

#compareModal .modal-header button.close {
    color: #FFFFFF;
}

#compareModal .modal-body {
    padding: 1.5rem;
}

.compare-table-wrapper {
    display: flex;
    margin-top: 70px;
}

.compare-table-wrapper>.compare-header {
    flex: none;
    width: 200px;
}

.compare-table-wrapper>.compare-header .compare-title-item {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px;
    color: #323232;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    min-height: 47px;
    border-bottom: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7;
}

.compare-table-wrapper>.compare-table-scroll {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    padding: 0;
}

.compare-table-wrapper>.compare-table-scroll .price {
    font-size: 16px;
    font-weight: 500;
    color: #ffcc29;
}

.compare-table-wrapper>.compare-table-scroll #sortable {
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    width: auto !important;
}

.compare-table-wrapper>.compare-table-scroll .compare-car-list {
    width: 280px;
    flex: none;
    border-right: 1px solid #e7e7e7;
}

.compare-table-wrapper>.compare-table-scroll .compare-car-list .compare-remove-car {
    display: block;
    font-size: 22px;
    color: #dc3545;
}

.compare-table-wrapper>.compare-table-scroll .compare-car-list .compare-remove-car:hover {
    opacity: .7;
}

.compare-table-wrapper>.compare-table-scroll .compare-car-list .compare-car-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    text-align: center;
    min-height: 47px;
    border-bottom: 1px solid #e7e7e7;
    font-size: 13px;
}

.compare-table-wrapper>.compare-table-scroll .compare-car-list .compare-car-row a {
    display: inline-block;
}

.compare-table-wrapper>.compare-table-scroll .compare-car-list .compare-car-row .compare-optional {
    padding: 2px 5px;
    margin-right: 3px;
    margin-bottom: 3px;
    border-radius: 20px;
    background-color: #ffcc29;
    display: inline-block;
    color: #000000;
    font-size: 13px;
}

.compared-icon {
    background-color: #4DC247;
    border-color: #4DC247 !important;
}

.smart-compare {
    width: 280px;
    position: fixed;
    right: 0;
    top: 50%;
    background-color: #000000;
    padding: 15px;
    z-index: 1000;
    border-radius: 5px 0 0 5px;
    -webkit-box-shadow: -2px 0px 19px 0px rgba(255, 204, 41, 1);
    -moz-box-shadow: -2px 0px 19px 0px rgba(255, 204, 41, 1);
    box-shadow: -2px 0px 19px 0px rgba(255, 204, 41, 1);
    transform: translate(100%, -50%);
    transition: transform 0.3s ease-in-out;
}

.smart-compare.view {
    transform: translateX(0);
}

.smart-compare>a {
    display: block;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
}

.smart-compare .smart-icon {
    color: #FFFFFF;
    position: absolute;
    left: -48px;
    top: 0;
    padding: 10px 20px 10px 10px;
    background-color: #000000;
    font-size: 22px;
    border-radius: 5px 0 0 5px;
}

.smart-compare .smart-icon:hover i {
    color: #ffcc29;
    cursor: pointer;
}

.smart-compare .smart-compare-cars {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-bottom: 10px;
}

.smart-compare .smart-compare-cars .smart-car {
    width: 120px;
    height: auto;
    margin-right: 10px;
}

.smart-compare .smart-compare-cars .smart-car img {
    width: 100%;
    height: 100%;
}

#newCarModal .modal-content {
    min-height: 600px;
}

#newCarModal .modal-content .modal-background {
    background-image: url("../images/new-car-bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    width: 50%;
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.6;
}

#newCarModal button.close {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#newCarModal .new-car-form {
    margin: 30px 0;
}

/** Video Modal **/
.modal-video {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.modal-video.show {
    opacity: 1;
    visibility: visible;
}

.modal-video .modal-content {
    background-color: #fefefe;
    margin: 50px auto;
    padding: 20px;
    width: 40%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-video .modal-content iframe {
    width: 100%;
    height: 100%;
}

.modal-video .closeBtn {
    width: 50px;
    height: 50px;
    background-color: #ffcc29;
    border-radius: 50%;
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
    box-shadow: 0 20px 20px 2px rgb(0 0 0/10%);
    -webkit-box-shadow: 0 20px 20px 0px rgb(0 0 0/10%);
    -moz-box-shadow: 0 20px 20px 0px rgba(0, 0, 0, 0.1);
}

.modal-video .closeBtn:hover,
.modal-video .closeBtn:focus {
    opacity: 0.7;
    text-decoration: none;
    cursor: pointer;
}

.page-error {
    background-image: none;
    background-color: #FFFFFF;
}

.page-error h2.error-title {
    font-size: 70px;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
}

.page-error h2.error-title:before {
    content: "\f069";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    left: -55px;
    top: 0;
    font-size: 50px;
    color: #ffcc29;
}

.page-error h4.error-subtitle {
    font-size: 18px;
    color: #424345;
}

.page-error small.error-code {
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px
}

.pwa-install {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    background: #ffcc29;
    z-index: 999;
    padding: 10px 0;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.splash-screen img {
    max-width: 100%;
    max-height: 100%;
}

.social-share .social-button {
    color: #FFFFFF;
    margin-right: 4px;
    transition: transform 0.3s ease;
    transform: none;
}

.social-share .social-button:hover {
    transform: translateY(-3px);
    opacity: 0.7;
}

.social-share .social-button i {
    font-size: 13px;
}

.social-share .facebook {
    background-color: #4267B2;
}

.social-share .instagram {
    background-color: #E1306C;
}

.social-share .twitter {
    background-color: #1DA1F2;
}

.social-share .email {
    background-color: #5a5a5a;
}

.social-share .whatsapp {
    background-color: #25D366;
}

#socialShareModal .social-share .social-button i {
    font-size: 50px !important;
}

.housesLogo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.housesLogo img {
    width: 80%;
    height: 80%;
}

/** INPUT RADIO TOP **/
.radio-top {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.375em;
}

.radio-top input {
    position: absolute;
    left: -9999px;
}

.radio-top input:checked+.form-check-label {
    background-color: rgba(0, 0, 0, .03);
}

.radio-top input:checked+.form-check-label:before {
    box-shadow: inset 0 0 0 0.4375em #ffcc29;
}

.radio-top .form-check-label {
    display: flex;
    align-items: center;
    padding: 0.375em 0.75em 0.375em 0.375em;
    border-radius: 99em;
    transition: 0.25s ease;
}

.radio-top .form-check-label:hover {
    background-color: rgba(0, 0, 0, .03);
}

.radio-top .form-check-label:before {
    display: flex;
    flex-shrink: 0;
    content: "";
    background-color: #fff;
    width: 1.5em;
    height: 1.5em;
    border-radius: 50%;
    margin-right: 0.375em;
    transition: 0.25s ease;
    box-shadow: inset 0 0 0 0.125em #ffcc29;
}

.group-container {
    background-color: #0a0c0d;
    padding: 20px 40px;
}