/* ===================================
    CamperCas - Custom
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* variable */
:root {     
    --base-color: #ee6035;
    --dark-gray: #373737;
    --very-light-gray: #eceff1;
    --stromboli-green:#3E6558;
    --alt-font: 'Jost', sans-serif;
    --primary-font: 'Jost', sans-serif;
    --medium-gray: #828282;
}

/* reset */
body {
    font-size: 16px;
    line-height: 32px;
    overflow-x: hidden;
}
/* heading */
h1 {
    font-size: 4rem;
    line-height: 3.6rem;
}
h2 {
    line-height: 3.438rem;
}
h3 {
    line-height: 2.813rem;
}
p {
    margin-bottom: 20px;
}
/* bg gradient color */
.bg-gradient-black-dark-brown {
    background-image: linear-gradient(to right top, #000000, #000000, #30281B, #493825, #DA7310);
}
.bg-gradient-green-light-brown {
    background-image: linear-gradient(to right top, #3C7663, #5B8365, #929A68, #B8AA6A, #DEBB6D);
}
.bg-gradient-light-brown-transparent { 
    background-image: linear-gradient(to right top, rgba(45, 41, 37, .6), rgba(188, 137, 71, .9));
}
/* text gradient color */
.text-gradient-green-brown-color {
    background-image: linear-gradient(to right top, #3C7663, #5B8365, #929A68, #B8AA6A, #DEBB6D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* header */
.navbar .navbar-nav .nav-link {
    font-weight: 400;
    font-size: 19px;
    letter-spacing: .5px;
}
.navbar .btn {
    font-size: 15px;
    padding: 8px 20px;
}
header .navbar-brand img {
    max-height: 60px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 18px;
    line-height: 32px;
}
.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    border-radius: 5px;
}
/* subcribe style 02 */
.newsletter-style-02 .btn {
    padding: 10px 18px 9px 18px;
}
.newsletter-style-02 input {   
    padding-right: 60px;
    font-size: 18px;
}
.input-small, .textarea-small {
    font-size: 16px;
}
/* page title */
.page-title-extra-large h1 {
    font-size: 4.3rem;
    line-height: 4.7rem;
}
/* media query responsive */
@media (max-width: 1199px) {
    header .btn.btn-very-small {
        padding: 7px 11px;
    }
    .newsletter-style-02 input {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 15px;
    }
}
@media (max-width: 991px) {
    .md-outside-box-right-70 {
        margin-right: -70vw;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .nav-link {
        font-size: 19px;
    }
    [data-mobile-nav-style=full-screen-menu] .navbar-full-screen-menu-inner .navbar-nav .nav-item .dropdown-menu a {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .blog-classic .card .card-body p {
        margin-bottom: 15px;
    }
    .page-title-extra-large h1 {
        line-height: 44px;
    }
    .sm-outside-box-right-0 {
        margin-right: 0;
    }
}

.btn-orange-campercas {
    background-color: #ee6035 !important;
    color: var(--dark-gray);
}

.footer-img {
    max-width: 80px !important;
}

footer ul li {
    margin-bottom: 0.5px;
}

.btn.btn-slate-blue {
    background-color: var(--slate-blue);
    color: var(--white);
}

.btn.btn-very-light-gray {
    background-color: var(--very-light-gray);
    color: var(--dark-gray);
}

.btn.btn-slate-blue:hover, .btn.btn-slate-blue:active {
    background-color: transparent;
    border-color: var(--slate-blue);
    color: var(--slate-blue);
}

.portfolio-classic .portfolio-box:hover .portfolio-image img {
    opacity: 0.9;
    -webkit-filter: blur(0px);
    filter: blur(0px);
}

/** Splide **/

.slide-content {
    display: flex;
    flex-direction: row;
    height: 550px;
}

.slide-image {
    width: 65%;
    padding: 20px;
    box-sizing: border-box;
}

.slide-text {
    width: 35%;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.slide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.slide-text {
    display: flex;
    flex-direction: column;
}

.slide-text h2 {
    margin: 0 0 10px;
}

.splide__arrows {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    position: static;
}
.splide__arrow {
    position: static;
    margin: 0 10px;
}
.splide__pagination {
    margin-top: 10px;
    position: static;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .slide-content {
        flex-direction: column;
    }
    .slide-image, .slide-text {
        width: 100%;
        padding: 10px;
    }
}

/* End Splide */

/** WhatsApp **/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #fff;
}

/* End WhatsApp */

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-height: 550px; /* uniform max height */
    width: auto;
    object-fit: contain;
}

.venta {
    position: absolute;
    top: 8px;
    left: 24px;
    color: #499c00 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    border: solid 1px #499c00 !important;
}

.vendida {
    position: absolute;
    top: 8px;
    left: 24px;
    color: #b90000 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    border: solid 1px #b90000 !important;
}

.precio-venta {
    position: absolute;
    top: 8px;
    right: 24px;
    color: #000000 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    border: solid 1px #000000 !important;
}

.contact-form-style {
    margin-bottom: -125px;
}

@media (max-width: 767px) {
  .contact-form-style {
    margin-bottom: 50px;
  }
}

.nav-item-color a {
    color: var(--dark-gray) !important;
}

.help-block {
    color: red !important;
    font-size: 0.9em !important;
    margin-top: 5px !important;
}