﻿.view-container {
    max-width: 1200px;
    box-sizing: border-box;
    margin: 0 auto; /* <-- this horizontally centers it */
    padding: 0 1rem; /* optional gutter inside */
}
.accessibility-icon {
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

    .accessibility-icon svg {
        width: 30px;
        height: 30px;
        fill: white;
    }

accessibility-icon-size {
    margin-top: 2px;
}

.accessibility-dropdown-container {
    position: absolute;
    display: none; /* Initially hidden */
    z-index: 1000;
    top: 50px;
    right: 50px;
}

    .accessibility-dropdown-container.active {
        display: block;
    }

.accessibility-dropdown {
    /*width: 409px;*/
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px #000000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.4);
    padding: 15px;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.accessibility-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 144px;
    box-shadow: #000000 0 0 0 1px;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 0 1px;
}

.accessibility-btn:hover {
        background-color: #f5f5f5;
        border-color: #d0d0d0;
    }

    .accessibility-btn svg {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
    }

    .accessibility-btn span {
        font-size: 12.5px;
        font-weight: 500;
        color: #000;
    }

.sub-heading-text {
    color: #333;
    font-size: 14px;
}

.accessibility-header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.divider {
    height: 31px;
    width: 1px;
    background-color: gray;
}
.close-button {
    width: 32px;
    color: #FFFFFF;
    border-radius: 7px;
    margin-top: -9px;
    background: orange;
    border-color: transparent;
}
@media (max-width: 576.98px) {
    .accessibility-dropdown-container {
        right: unset;
    }

    .accessibility-dropdown {
        width: auto;
    }

    .accessibility-grid {
        display: block;
    }

    .accessibility-btn {
        display: block;
        width: auto;
        margin-bottom: 7px;
    }
}

@media (min-width:2000px) {
    .accessibility-dropdown-container {
        right: unset;
    }
}

.offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #f8f9fa;
    box-shadow: 0 0 10px #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
}

.offcanvas.show {
        transform: translateX(0);
    }

.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.offcanvas-body {
    padding: 1rem;
}

.navbar-toggler {
    z-index: 1051;
}

.navbar-nav .nav-link {
    font-weight: bold;
    color: #000000;
}

.request-button {
    background-color: #f99000;
    color: #ffffff !important;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    margin-left: auto;
    font-weight: 400;
    width: 198px;
    height: 53px;
}

.arrow-forward {
    margin-left: 9px;
}

.ml-auto {
    margin-left: auto;
}

/*.nav-item-gap {
    margin-right: 38px !important;
}
*/
.image-center {
    text-align: end !important;
}

.header-shadow {
    box-shadow: 0 4px 8px #000000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 999;
}

.section_first {
    background-image: url('../images/BGrequest-a-quote.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-first-content {
    display: flex;
}

.free-quote-button {
    background-color: #f99000;
    color: #fff;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    align-items: center;
    width: 199px;
    height: 52px;
    /*margin-top: 12%;*/
}
