.card-hover {
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    cursor: pointer;
}
.side-by-side-width{
    width: 49% !important;
}
.smaller-text{
    font-size: 14px;
}

input:disabled {
    background-color: #f8f9fa !important;
}
input{
    background-color: #f8f9fa !important;
}

select:disabled {
     background-color: #f8f9fa !important;
}
.is-disabled .choices__inner
{
    background: #f8f9fa !important;
}
@media screen and (min-width: 992px) { /* Bootstrap's 'lg' breakpoint is 992px */
    .cote-header {
        padding: 5rem; /* This will apply on screens 992px and wider */
    }
}

.cotation-section {
    text-align: center;
    padding: 30rem 20px 20px;


}

@media screen and (max-width: 992px) {
    .cotation-section {
        text-align: center;
        padding: 45rem 20px 20px;
    }
    .card-hover{
        top: 0rem;
    }
}

  .cotation-title {
    font-size: 2em; /* Adjust as needed */
    font-weight: bold;
    margin-bottom: 10px;
}

.cotation-subtitle {
    color: #777; /* Adjust as needed */
    margin-bottom: 20px;
}
.choices{
    max-width: none;
}
.choices__list{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.cotation-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Adjust spacing between cards */
}

.benefit-card {
    background-color: #f9f9f9; /* Adjust card background */
    border-radius: 8px;
    padding: 20px;
    width: 250px; /* Adjust card width */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.benefit-icon {
    width: 50px; /* Adjust icon size */
    height: 50px;
    margin: 0 auto 15px;
    /* You might need to style the SVG directly or its container */
}

.benefit-icon img {
    max-width: 100%;
    height: auto;
}

.benefit-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.benefit-description {
    color: #555; /* Adjust description text color */
    font-size: 0.9em;
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .cotation-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        width: 90%;
    }
}

.buy-easily-section {
    display: flex;
    align-items: center;
    padding: 20px; /* Adjust as needed */
    margin-top: 20px; /* Adjust spacing */
}

.buy-easily-image {
    flex-shrink: 0; /* Prevent image from shrinking */
    width: 40%; /* Adjust image width */
    margin-right: 20px; /* Spacing between image and text */
}

.buy-easily-image img {
    max-width: 100%;
    height: auto;
    display: block; /* Prevent extra space below image */
}

.buy-easily-content {
    flex-grow: 1; /* Allow text content to take remaining space */
}

.buy-easily-content h2 {
    font-size: 1.8em; /* Adjust heading size */
    margin-bottom: 10px;
    color: #333; /* Adjust heading color */
}

.buy-easily-content p {
    color: #555; /* Adjust paragraph color */
    line-height: 1.6;
    margin-bottom: 20px;
}

.buy-easily-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff; /* White button */
    color: #007bff; /* Blue text, match the image */
    border: 1px solid #007bff; /* Blue border */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.buy-easily-button:hover {
    background-color: #e0f7fa; /* Light blue hover effect */
}

/* Responsive adjustments (optional) */
@media (max-width: 768px) {
    .buy-easily-section {
        flex-direction: column;
        text-align: center;
    }

    .buy-easily-image {
        width: 80%;
        margin: 0 auto 20px;
    }
}
