﻿.prev_container {
    width: 100%;
}

.prev_thumb {
	height: 100px;      
    width: 100px;      
    display: inline-block;
    margin: 5px;
}

#truck-holder {
    position: relative;
}
#truck-hover, #truck-backdrop {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}
#truck-hover {
    z-index: 2;
}
#truck-backdrop {
    z-index: 1;
}
#truck-holder img {
    max-width: 100%;
    width: 100%;
}

/* responsive classes ------- */
@media (max-width: 767px) { 
    h1 {
        font-size: 18.5px;
    }
    h3 {
        font-size: 16px;
    }
}

@media (min-width: 768px) and (max-width: 991px) { 
    h1 {
        font-size: 18.5px;
    }
    h3 {
        font-size: 17px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) { 
    h1 {
        font-size: 24px;
    }
    
}

@media (min-width: 1200px) {
    h1 {
        font-size: 29px;
    }
}

/*new form css*/
#request-form {
    padding: 0px 15px;
}

.form-step {
    min-height: 150px;
}

.control-label {
    margin-bottom: 8px !important;
    font-size: 1.3em;
}

.btn-lg {
    padding: 10px 20px;
    font-size: 16px;
}

.progress {
    height: 30px;
    margin-bottom: 30px;
}

.progress-bar {
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
}

.input-group-btn .btn {
    height: 34px;
}

.form-control,
.form-group {
    border-radius: 5px;
}

/*Part Request FAQ*/
.faq-background {
    background-color: #F5F5F5;
}

.faq-item {
    border-radius: 8px;
    margin-bottom: 25px;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

    .faq-item.active {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);        
    }

.faq-question {
    font-size: 16px;
    color: #333;
    padding: 20px 35px 20px 20px;
    font-weight: 700;
}

.faq-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: #555;
    line-height: 1.6;
    background: #fff;
    border-radius: 8px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.blue-arrow {
    color: #1E4F78;
}

.section-title {
    margin: 40px 0 20px 0;
    font-size: 24px;
    color: #333;
}

.padded {
    padding: 20px;
}

