/*View*/


.view {
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1199px) {
    .view-margin {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }
}

@media (max-width: 1199px) {
    .view-margin {
        margin-top: 25px !important;
        margin-block: 25px !important;
    }
}


/*List*/

.list-bullet-point {
    display: block;
    margin-top: 4px;
    border-radius: 100%;
    padding: 6px;
    -webkit-border-radius: 100%;
    background-color: #1a3761;
}

.list-bullet-point-with-content {
    margin-top: 1px !important;
    font-weight: bold !important;
    color: var(--color-primary) !important;
    font-size: 16px;
    background-color:transparent !important;
    padding:0px;
    min-width:16px;
}

.sub-list-title{
    margin-top:30px !important;
    font-size:24px !important;
}

ul {
    list-style: none;
}

.list-sub {
    line-height: 25px;
}

.scenarios-list {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: #000;
}

.scenarios-list-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    margin: 20px 0 25px -38px;
}

/*Brands*/

.brands-main-div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 100px 0px;
    margin-top: 0px;
}

.brands {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
    padding: 40px 0px;
    background-color: #f9f9f9;
    width: 100%;
}

.brands-title {
    margin-bottom: 40px;
    font-size: 1.25rem;
    color: #1a3761;
}

.brands-body {
    width: 57%;
}

.brands-image-div {
    width: 100%;
}

.general-border {
    -webkit-box-sizing: border-box;
    -webkit-border-radius: 18px;
    border-radius: 18px;
    border: ridge;
    padding: 10px;
}

.offer-cal-div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.get-offer {
    background-color: #1a3761 !important;
    color: #ffffff !important;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    width: 155px;
    height: 40px;
    border-radius: 5px;
    background-color: var(--color-accent);
    font-weight: bold;
    font-size: 17px;
    color: var(--color-primary-dark);
    cursor: pointer;
}

.default-bg-color {
    background-color: #fdc209 !important;
    color: var(--color-primary-dark) !important;
}

.stat-number {
    color: #1a3761 !important;
    font-weight: 700;
}

.stat-card {
    padding: 1.2rem 0.8rem; /* tighter spacing */
}

.call-a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    width: 155px;
    height: 40px;
    border-radius: 5px;
    background-color: #fdc209;
    font-weight: bold;
    font-size: 17px;
    color: #0e213d;
    cursor: pointer;
}

.cal-a-div {
    width: 14px;
    height: 14px;
    margin-left: 0px;
    margin-bottom: 1px;
}

.p-20 {
    padding: 20px;
}

.p-10 {
    padding: 10px;
}

.mt-percentage-8 {
    margin-top: 8%;
}

.phone-icon {
    vertical-align: super !important;
}

hr {
    background-color: #fff;
    padding: 0;
}

    .hr-style {
        border: 0;
        background-color: #fff;
        border-top: 1px dashed #8c8c8c;
    }

.send-form-button{
    float:right;
}

.redirect-button-container{
    gap:10px;
}

.redirect-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    width: 250px;
    height: 40px;
    margin-top:8px;
    border-radius: 5px;
    background-color: #f3f5f7;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

    .redirect-button:hover {
        background-color: #eeeeee;
        color: #01b2f9;
    }

@media (max-width: 768px) {
    .send-form-button {
        float: left;
    }
    .accordion-title {
        white-space: normal;
    }

    .redirect-button{
        width:200px;
    }
}



