/*#region Master*/
:root {
    --main-colour: #E72372;
    --secondary-colour: #2DAF90;
    --off-black: #6c757d;
    --text-gray: #6c757d;
    --green-colour: #233414;
    --blue-colour: #2c3e50;
    --brown-colour: #441f17;
    --light-pink-bg: #fcf9fa;
    --screen-sm-padding: 45px 0;
    --screen-lg-padding: 75px 0;
}

body {
    position: relative;
    padding: 0;
    text-rendering: optimizeSpeed;
    font-size: 14px;
    color: var(--off-black);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
}

a, input {
    outline: 0;
    text-decoration: none;
}

    /* Change Autocomplete styles in Chrome*/
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:hover,
    textarea:-webkit-autofill:focus,
    select:-webkit-autofill,
    select:-webkit-autofill:hover,
    select:-webkit-autofill:focus {
        -webkit-text-fill-color: #353535;
        -webkit-box-shadow: 0 0 0px 1000px #FFF inset;
        transition: background-color 5000s ease-in-out 0s;
    }

a {
    color: var(--main-colour);
}

    a:hover {
        text-decoration: none;
        color: var(--main-colour);
    }

ul {
    list-style: none;
}

li {
    font-size: 14px
}


h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0.75rem;
}

h5 {
    font-weight: 500;
    font-size: 18px;
}


.modal-loading {
    position: fixed;
    z-index: 1056;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    background-color: Black;
    opacity: 0.85;
    -moz-opacity: 0.85;
}


#Progress {
    position: fixed;
    width: 64px;
    height: 64px;
    text-align: center;
    z-index: 1058;
    top: 40%;
    margin: 0 auto;
    display: flex;
    left: 0;
    right: 0;
    color: #fff;
}

#back-top {
    bottom: 1.2rem;
    margin: 0;
    position: fixed;
    right: 1rem;
    z-index: 99999;
}

    #back-top a {
        background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
        height: 40px;
        text-decoration: none;
        width: 40px;
        transition: all 200ms linear 0s;
        border-radius: 10px;
        align-items: center;
        display: grid;
    }

        #back-top a:hover, #back-top a:active {
            background-color: var(--main-colour);
            color: var(--darker-text-gray);
        }

        #back-top a i {
            color: #fff;
            display: block;
            font-size: 15px;
            margin: 0 auto;
            text-align: center;
        }

.back-top-captcha {
    bottom: 6.5rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    color: var(--blue-colour);
    opacity: 1;
}

.form-switch .form-check-input {
    margin-top: 2.3px !important;
    width: 2.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(69, 85, 96,1)'/%3e%3c/svg%3e");
}

.form-check-input:checked {
    background-color: var(--text-gray) !important;
    border-color: var(--text-gray) !important;
}

.form-switch .form-check-input:checked {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba(255, 255, 255,1)'/%3e%3c/svg%3e");
}

p {
    font-size: 14px;
}

.input-validation-error {
    border-color: var(--bs-form-invalid-border-color) !important;
    border-width: 1px !important;
    border-style: solid !important;
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

    .input-validation-error:focus {
        border-color: var(--bs-form-invalid-border-color) !important;
        box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .15) !important;
    }

/* Override any border utility classes when validation error occurs */
.form-control.border-0.input-validation-error,
.form-select.border-0.input-validation-error {
    border: 1px solid var(--bs-form-invalid-border-color) !important;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
    opacity: 1 !important;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

    .section-title .subtitle {
        border: 1px solid #c4d7e9;
        border-radius: 24px;
        align-items: center;
        padding: 8px 16px 8px 10px;
        display: inline-flex;
        margin-bottom: 20px;
    }

        .section-title .subtitle svg {
            color: var(--main-colour);
        }

        .section-title .subtitle p {
            margin-left: 10px !important;
            margin: unset;
            color: var(--text-gray);
        }

    .section-title h2 {
        color: var(--off-black);
        font-size: 35px;
        font-weight: 800;
        margin: unset;
    }

    .section-title h3 {
        color: var(--text-gray);
        font-weight: 600;
        margin: unset;
        font-size: 25px;
    }

.btn-main {
    display: inline-block;
    font-weight: 700;
    background-color: transparent;
    border: 2px solid var(--main-colour);
    box-shadow: rgba(0, 0, 0, .2) 15px 28px 25px -18px;
    color: var(--main-colour);
    font-size: 14px;
    padding: 15px 25px;
    transition: all 235ms ease-in-out;
}

    .btn-main:hover {
        box-shadow: 0 10px 20px rgba(231, 35, 114, 0.2);
        transform: translate3d(0, 2px, 0);
        color: var(--text-gray);
        border: 2px solid var(--text-gray);
    }

.btn-green {
    color: var(--green-colour);
    border-color: var(--green-colour);
}

.block-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #c4d7e9 !important;
    color: var(--main-colour);
    transition: 0.5s;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--main-colour);
    flex: none;
}

    .block-icon svg {
        color: var(--main-colour);
        font-size: 16px;
    }

.pink-text {
    color: var(--main-colour) !important;
}

.cyan-text {
    color: var(--secondary-colour) !important;
}

.green-text {
    color: var(--green-colour) !important;
}

.disabled input {
    pointer-events: none;
    background-color: #e9ecef;
}

.disabled label::after {
    background-color: #e9ecef !important;
}

/*#endregion*/

/*#region Navbar*/

.navbar {
    background: #fff;
    padding: 15px 0;
    transition: all 0.5s;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
    height: 50px;
}

.navbar.scrolled .navbar-brand img {
    transform: scale(0.7);
}

.navbar .navbar-nav .nav-item .nav-link {
    font-weight: 400;
    font-size: 14px;
    padding: 10px 20px;
    color: var(--off-black);
    border-radius: 60px;
    margin-left: 3px;
}

    .navbar .navbar-nav .nav-item .nav-link.active {
        color: var(--main-colour);
    }

/*#endregion*/

/*#region Banner*/

.banner .carousel {
    height: 100%;
}

    .banner .carousel .carousel-item {
        height: 100%;
    }

        .banner .carousel .carousel-item img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

.banner .carousel-control-prev, .banner .carousel-control-next {
    width: 5%;
}

.banner .carousel-control-prev-icon, .banner .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.7);
}

.banner .carousel-control-prev-icon, .banner .carousel-control-next-icon {
    background-image: unset;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .banner .carousel-control-prev-icon i, .banner .carousel-control-next-icon i {
        font-size: 28px;
    }

.mega-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0;
    margin-top: 0;
}

.mega-menu {
    padding: 2rem;
}

    .mega-menu .dropdown-header {
        color: var(--main-colour);
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mega-menu .dropdown-item {
        padding: 0.75rem 18px;
        border: none;
        color: var(--off-black);
        font-weight: 400;
        transition: all 0.3s ease;
        background: transparent;
    }

        .mega-menu .dropdown-item:hover {
            background: transparent;
            color: var(--main-colour);
            padding-left: 2rem;
        }

        .mega-menu .dropdown-item i {
            color: var(--main-colour);
            width: 20px;
        }

/*#endregion*/

/*#region Featured categories*/

.featured-categories {
    padding: var(--screen-sm-padding);
}

.category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.category-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 255px;
}

    .category-content h4 {
        color: var(--main-colour);
        margin-bottom: 0.75rem;
        font-weight: 600;
        font-size: 18px;
    }

    .category-content p {
        color: var(--text-gray);
        margin-bottom: 1rem;
    }

.read-more {
    color: var(--brown-colour);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    border-radius: 50px;
    transition: all 0.2s ease;
    padding: 0.6rem 1.5rem;
    align-self: flex-end;
    margin-top: auto;
    cursor: pointer;
}

.category-card:hover .read-more {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px #e7237280;
    background-color: transparent !important;
    color: var(--main-colour);
}

/*#endregion*/

/*#region Feature Items*/

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #c4d7e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

    .feature-icon i {
        color: var(--main-colour);
        font-size: 1.5rem;
    }

.feature-content h5 {
    color: var(--off-black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-gray);
    margin: 0;
}

/*#endregion*/

/*#region Call to Action*/

.cta-section {
    background: linear-gradient(135deg, var(--main-colour) 0%, var(--secondary-colour) 100%);
    color: #fff;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content .lead {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-actions .btn-main {
    background: #fff;
    color: var(--main-colour);
    border-color: #fff;
}

    .cta-actions .btn-main:hover {
        background: rgba(255, 255, 255, 0.9);
        color: var(--main-colour);
    }

.cta-actions .btn-outline-dark {
    border-color: #fff;
    color: #fff;
}

    .cta-actions .btn-outline-dark:hover {
        background: #fff;
        color: var(--main-colour);
    }

/*#endregion*/

/*#region Info Block*/

.info-block-6 {
    height: auto !important;
    position: relative;
    padding: 1rem 0;
}

    .info-block-6 .bottom-banner-item {
        display: flex;
        min-height: 365px;
    }

    .info-block-6 .bottom-banner-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .info-block-6 .bottom-banner-bg img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .info-block-6 .bottom-banner-content {
        padding: 1.5em;
        align-self: center;
        background: #ffffff;
        min-width: 380px;
        z-index: 4;
        border-radius: 5px;
        opacity: 0.9;
    }

/*#endregion*/

/*#region Products And Services*/

/*#region Murals*/

/*#region Wall Mural */

.wall-mural {
    padding: var(--screen-sm-padding);
}

    .wall-mural h4 {
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

/*#endregion*/

/*#region Statement*/

.statement {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#region Painted Murals*/

.printed-murals {
    padding: var(--screen-sm-padding);
}

    .printed-murals .custom-mural-box {
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    }

        .printed-murals .custom-mural-box:hover {
            transform: translateY(-4px) scale(1.025);
        }

        .printed-murals .custom-mural-box img {
            margin-bottom: 15px;
        }

        .printed-murals .custom-mural-box h6 {
            text-align: center;
            font-size: 16px;
            font-weight: 500;
            margin: unset;
            color: var(--text-gray);
        }

/*#endregion*/

/*#region Pricelist*/

.pricelist {
    padding: var(--screen-sm-padding);
}

    .pricelist .pricelist-item {
        transition: 0.5s;
        background: white;
        border: 1px solid #edebfd;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

        .pricelist .pricelist-item .item-content h4 {
            font-size: 20px;
            font-weight: 800;
            font-style: italic;
            text-decoration: none;
            text-align: center;
        }

    .pricelist .padding-box {
        padding: 25px;
        margin-bottom: auto;
    }

        .pricelist .padding-box img {
            margin-bottom: 25px;
        }

    .pricelist .price-label {
        color: #fff;
        background-color: var(--main-colour);
        text-decoration: none;
        font-size: 16px;
        padding: 10px;
        font-weight: 700;
        text-align: center;
        border-top: 1px solid transparent;
        padding: 18px;
        display: block;
        border-radius: 5px;
    }

    .pricelist .icon-content {
        display: flex;
        margin-bottom: 20px;
        transition: 0.5s;
    }

    .pricelist .item-icon {
        height: 30px;
        width: 30px;
        font-size: 12px;
        border: 1px solid var(--main-colour);
        color: var(--main-colour);
        transition: 0.5s;
        margin-right: 20px;
        background: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .pricelist .boldless {
        font-weight: 400 !important;
    }

    .pricelist p:last-child {
        margin-bottom: unset;
    }

.overlay-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 12px;
    border-radius: 24px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/*#endregion*/

/*#region Quick Mural Cost*/

.quick-mural-calculator {
    padding: var(--screen-sm-padding);
}

    .quick-mural-calculator h2 {
        font-size: 20px;
    }

    .quick-mural-calculator .form-label {
        font-weight: 600;
        color: var(--off-black);
    }

    .quick-mural-calculator .result-card {
        background: linear-gradient(135deg, var(--main-colour) 0%, var(--secondary-colour) 100%);
        color: #fff;
        padding: 2rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(224, 124, 45, 0.15);
        margin-bottom: 1.5rem;
        text-align: center;
    }

        .quick-mural-calculator .result-card h4 {
            color: #fff;
            margin-bottom: 20px;
            font-weight: 700;
        }

    .quick-mural-calculator .quote-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        font-size: 16px;
    }

        .quick-mural-calculator .quote-item.total {
            border-bottom: none;
            font-size: 18px;
            font-weight: 700;
            margin-top: 5px;
            padding-top: 1rem;
        }

    .quick-mural-calculator .quote-disclaimer {
        font-size: 14px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 1rem;
        font-style: italic;
    }

    .quick-mural-calculator .text-muted.small {
        font-size: 14px;
        color: var(--text-gray) !important;
        margin-top: 1.5rem;
    }

    .quick-mural-calculator .btn-quote-request {
        border-color: #fff;
        color: #fff;
        margin-top: 20px;
    }

/*#endregion*/

/*#region Mural Quote Request*/

.mural-quote-request {
    padding: var(--screen-sm-padding);
}

    .mural-quote-request .upload-area {
        border: 1px dashed var(--text-gray);
    }

    .mural-quote-request .wall-preview h6 {
        font-style: italic;
        text-align: center;
        font-size: 22px;
        font-weight: 700;
    }

    .mural-quote-request .wall-preview p {
        text-align: center;
        font-size: 16px;
    }

/*#endregion*/

/*#endregion*/

/*#region Sticker & Vinyl Printing*/

.stickers-vinyl-printing {
    padding: var(--screen-sm-padding);
}

    .stickers-vinyl-printing strong {
        color: var(--secondary-colour);
    }

    .stickers-vinyl-printing h6 {
        color: var(--secondary-colour);
    }

    .stickers-vinyl-printing p:last-child {
        margin: unset;
    }

.guidance-list .guidance-item {
    background: #fff;
    border: 1px solid #edebfd;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

    .guidance-list .guidance-item:hover {
        border-color: var(--secondary-colour);
        box-shadow: 0 10px 25px rgba(231, 35, 114, 0.08);
        transform: translateY(-2px);
    }

.guidance-icon {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    border-color: var(--secondary-colour) !important;
}

    .guidance-icon i {
        font-size: 16px;
        color: var(--secondary-colour);
    }

.guidance-card {
    background: #fff;
    border: 1px solid #edebfd;
    border-radius: 12px;
}

/*#endregion*/

/*#region Contra Vision*/

.contra-vision {
    padding: var(--screen-sm-padding);
}

    .contra-vision strong {
        color: var(--secondary-colour);
    }

    .contra-vision p:last-child {
        margin: unset;
    }

/*#endregion*/

/*#region Canvas Printing*/

.canvas-printing, .canvas-quote-request, .custom-canvas-form {
    padding: var(--screen-sm-padding);
    background-color: var(--light-pink-bg);
}

    .canvas-printing strong {
        color: var(--secondary-colour);
    }

    .canvas-printing .padding-box {
        background: #fff;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

        .canvas-printing .padding-box .content h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--main-colour);
        }

    .canvas-printing p:last-child {
        margin: unset;
    }

    .canvas-printing .block-icon i {
        font-size: 16px;
        color: var(--secondary-colour);
    }

    .canvas-printing ul {
        list-style: disc;
    }

/*#endregion*/

/*#region Plain and printed Frosting*/

.frosting {
    padding: var(--screen-sm-padding);
    background-color: var(--light-pink-bg);
}

    .frosting h4 {
        font-weight: 700;
    }

    .frosting p:last-child {
        margin: unset;
    }

    .frosting .content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--main-colour);
    }

/*#endregion*/

/*#region Poster & Portrait Printing*/

.posters-portraits {
    padding: var(--screen-sm-padding);
}

    .posters-portraits h4 {
        font-weight: 700;
    }

    .posters-portraits strong {
        color: var(--secondary-colour) !important;
    }

    .posters-portraits .block-icon i {
        font-size: 16px;
        color: var(--secondary-colour);
    }

    .posters-portraits p:last-child {
        margin: unset;
    }

/*#endregion*/

/*#region Art Prints and Fine Art Reproductions*/

.art-print {
    padding: var(--screen-sm-padding);
    background-color: var(--light-pink-bg);
}

    .art-print strong {
        color: var(--secondary-colour);
    }

/*#endregion*/

/*#region Display Systems*/

.display-systems {
    padding: var(--screen-sm-padding);
}

    .display-systems strong {
        color: var(--secondary-colour);
    }

    .display-systems h4 {
        font-weight: 700;
    }

    .display-systems .content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--main-colour);
    }

    .display-systems p:last-child {
        margin: unset;
    }

/*#endregion*/

/*#region Stock Wallpaper*/

.stock-wallpaper {
    padding: var(--screen-sm-padding);
}

    .stock-wallpaper strong {
        color: var(--secondary-colour);
    }

    .stock-wallpaper p {
        margin: unset;
    }

    .stock-wallpaper .category-content {
        height: unset;
    }

    .stock-wallpaper .category-image {
        height: unset;
    }

        .stock-wallpaper .category-image img {
            object-fit: contain;
        }

/*#endregion*/

/*#endregion*/

/*#region About*/

/*#region About Eye Candy Digital*/

.about {
    padding: var(--screen-sm-padding);
}

    .about h4 {
        font-weight: 700;
    }

/*#endregion*/

/*#region Mission*/

.mission {
    padding: var(--screen-sm-padding);
    background: var(--light-pink-bg);
}

    .mission h4 {
        font-weight: 700;
    }

    .mission strong {
        color: var(--secondary-colour);
    }

/*#endregion*/

/*#region Our Cutting Edge Technology*/

.cutting-edge-tech {
    padding: var(--screen-sm-padding);
}

    .cutting-edge-tech h4 {
        font-weight: 700;
    }

    .cutting-edge-tech strong {
        color: var(--secondary-colour);
    }

/*#endregion*/

/*#region Latex Medical*/

.latex-medical {
    padding: var(--screen-sm-padding);
    background: var(--light-pink-bg);
}

    .latex-medical h4 {
        font-weight: 700;
    }

/*#endregion*/

/*#endregion*/

/*#region Partner*/

.partner-block {
    padding: var(--screen-sm-padding);
    background-color: #f7f7f7;
}

    .partner-block .slide {
        padding: 25px;
        background-color: #fff;
        border-radius: 15px;
    }

    .partner-block .slider {
        height: 100%;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: auto;
    }

        .partner-block .slider .slide-track {
            animation: scroll 250s linear infinite;
            display: flex;
            width: calc(270px * 54);
        }

        .partner-block .slider .slide {
            width: 250px;
            margin-right: 20px;
        }

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-270px * 54));
    }
}

.partner-block .logo-container {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

    .partner-block .logo-container img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

/*#endregion*/

/*#region Why Choose Us*/

.why-choose-us {
    padding: var(--screen-sm-padding);
}

/*#endregion*/

/*#region Review Block*/

.review-block {
    padding: var(--screen-sm-padding);
}

    .review-block .card {
        border-radius: 8px;
        background: transparent;
        border: unset;
        padding: 0 40px 0 40px;
    }

        .review-block .card .card-body {
            display: flex;
            flex-direction: column;
        }

            .review-block .card .card-body .card-title {
                font-weight: 700;
                font-size: 18px;
            }

                .review-block .card .card-body .card-title i {
                    color: var(--main-colour);
                }

            .review-block .card .card-body p {
                color: var(--text-gray);
                font-weight: 400;
                font-size: 13px;
                font-style: italic;
                margin-bottom: unset;
            }

            .review-block .card .card-body h6 {
                font-weight: 600;
                font-size: 16px;
            }

    .review-block .carousel-control-prev, .review-block .carousel-control-next {
        width: 30px !important;
        border-radius: 50px !important;
        height: 30px !important;
        top: 60px !important;
        background: #808080 !important;
    }

    .review-block .carousel-control-prev {
        left: 7px;
    }

    .review-block .carousel-control-next {
        right: 7px;
    }

    .review-block .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
        margin-right: 3px !important;
        height: 20px !important;
    }

    .review-block .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
        margin-left: 3px !important;
        height: 20px !important;
    }

    .review-block .carousel-indicators {
        bottom: -4% !important;
        margin: unset !important;
    }

    .review-block .card-info .text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .review-block .card-info .text.expanded {
            -webkit-line-clamp: unset;
        }

    .review-block .card-info .more {
        cursor: pointer;
        text-decoration: underline;
    }

/*#endregion*/

/*#region Quote Request Form*/

.quote-request-form {
    padding: var(--screen-sm-padding);
}

    .quote-request-form .upload-area {
        border: 1px dashed var(--text-gray);
    }

/*#endregion*/

/*#region Quote Thank You Section*/

.quote-request-thank-you {
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

    .quote-request-thank-you .thank-you-icon {
        margin-bottom: 1.5rem;
        color: #10b981;
        font-size: 3rem;
    }

    .quote-request-thank-you h3 {
        font-size: 2rem;
        font-weight: 700;
        color: #065f46;
        margin-bottom: 1rem;
    }

    .quote-request-thank-you .lead {
        font-size: 16px;
        font-weight: 500;
        color: #065f46;
        margin-bottom: 1rem;
    }

    .quote-request-thank-you .subtext {
        color: #6b7280;
        font-size: 14px;
    }

/*#endregion*/

/*#region Gallery*/

.gallery, .mural-mockup-gallery {
    padding: var(--screen-sm-padding);
}

.nav-wrapper {
    margin-bottom: 20px;
}

    .nav-wrapper ul {
        border-bottom: none !important;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

        .nav-wrapper ul li {
            margin-left: 5px;
            margin-bottom: 5px;
        }

    .nav-wrapper .nav-link {
        font-size: 14px;
        background-color: transparent !important;
        border-radius: 5px;
        padding: 12px 15px;
        color: var(--main-colour) !important;
        border: 1px solid var(--main-colour);
    }

        .nav-wrapper .nav-link.active, .nav-wrapper .nav-link:hover {
            background-color: var(--main-colour) !important;
            border: 1px solid var(--main-colour);
            color: #fff !important;
        }

.gallery img {
    transition: all ease-in-out 0.4s;
    margin-bottom: 10px;
}

    .gallery img:hover {
        cursor: pointer;
    }

/*#region Loading Styles*/

/* Modern Loading Overlay */
.page-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

    .page-loading-overlay.hidden {
        opacity: 0;
        visibility: hidden;
    }

/* Modern Spinner Animation */
.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Loading Text */
.loading-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.loading-subtext {
    font-size: 14px;
    color: #666;
    text-align: center;
    max-width: 300px;
    margin-bottom: 30px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Alternative: Dots Animation */
.loading-dots {
    display: inline-block;
    margin-left: 5px;
}

    .loading-dots::after {
        content: '';
        animation: dots 2s linear infinite;
    }

@keyframes dots {
    0%, 20% {
        content: '';
    }

    40% {
        content: '.';
    }

    60% {
        content: '..';
    }

    80%, 100% {
        content: '...';
    }
}

/* Gallery Skeleton Loader */
.skeleton-gallery {
    width: 100%;
    max-width: 1140px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 30px;
}

.skeleton-gallery-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.skeleton-gallery-image {
    width: 100%;
    height: 170px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: shimmer 2s ease-in-out infinite;
    margin-bottom: 12px;
}

/* Add staggered animation delays for more realistic effect */
.skeleton-gallery-item:nth-child(1) .skeleton-gallery-image {
    animation-delay: 0s;
}

.skeleton-gallery-item:nth-child(2) .skeleton-gallery-image {
    animation-delay: 0.2s;
}

.skeleton-gallery-item:nth-child(3) .skeleton-gallery-image {
    animation-delay: 0.4s;
}

.skeleton-gallery-item:nth-child(4) .skeleton-gallery-image {
    animation-delay: 0.6s;
}

/* Skeleton loader for table preview */
.skeleton-table {
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
}

.skeleton-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.skeleton-cell {
    height: 20px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 2s ease-in-out infinite;
}

    .skeleton-cell:nth-child(1) {
        width: 15%;
    }

    .skeleton-cell:nth-child(2) {
        width: 25%;
    }

    .skeleton-cell:nth-child(3) {
        width: 20%;
    }

    .skeleton-cell:nth-child(4) {
        width: 15%;
    }

    .skeleton-cell:nth-child(5) {
        width: 15%;
    }

    .skeleton-cell:nth-child(6) {
        width: 10%;
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .gallery-image-wrapper:hover {
        transform: scale(1.05);
        filter: brightness(0.7);
    }

    .gallery-image-wrapper label {
        text-align: center;
        font-weight: 600;
        font-size: 14px;
    }

.gallery .modal .modal-content {
    border-radius: 18px;
}

    .gallery .modal .modal-content .modal-header h5 {
        color: #fff;
        margin-right: auto;
    }

    .gallery .modal .modal-content .modal-header .btn-close-modal {
        color: #fff;
        background: unset;
        border: unset;
        padding: unset;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

        .gallery .modal .modal-content .modal-header .btn-close-modal:hover {
            transform: scale(1.07);
        }

        .gallery .modal .modal-content .modal-header .btn-close-modal i {
            font-size: 25px;
        }

    .gallery .modal .modal-content img {
        cursor: default;
    }

    .gallery .modal .modal-content img:hover {
        transform: unset;
    }

/*#endregion*/

/*#endregion*/

/*#region Contact*/

.contact {
    padding: var(--screen-sm-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

    .contact::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/media/pattern.svg') repeat;
        opacity: 0.05;
        pointer-events: none;
    }

    .contact .container {
        position: relative;
        z-index: 1;
    }

.padding-block {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin: 0;
}

.contact .form-check {
    margin: 2rem 0;
}

.contact .form-check-input {
    border: 2px solid #e9ecef;
    border-radius: 4px;
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
}

    .contact .form-check-input:checked {
        background-color: var(--main-colour);
        border-color: var(--main-colour);
    }

.contact .form-check-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

    .contact .form-check-label a {
        color: var(--main-colour);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

        .contact .form-check-label a:hover {
            color: var(--secondary-colour);
        }


.contact .btn-main:hover {
    transform: translateY(-2px);
}

.contact-info {
    padding: 2rem;
    background: linear-gradient(135deg, var(--text-gray) 0%, var(--secondary-colour) 100%);
    border-radius: 15px;
    color: #fff;
    height: 100%;
}

    .contact-info h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

    .contact-info-icon i {
        color: #fff;
        font-size: 18px;
    }

.contact-info-content h5 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-info-content a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .contact-info-content a:hover {
        opacity: 0.8;
    }

.message {
    height: 200px !important;
}

/*#endregion*/

/*#region Transform Spaces*/

.transform-spaces {
    padding: var(--screen-sm-padding);
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

    .transform-spaces h1 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--blue-colour);
    }

    .transform-spaces h5 {
        font-size: 18px;
        color: var(--text-gray);
    }

    .transform-spaces h6 {
        font-size: 18px;
        font-weight: 600;
        color: var(--blue-colour);
        margin-bottom: 20px;
        text-align: center;
    }

    .transform-spaces .certification-card {
        background: #fff;
        border-radius: 12px;
        padding: 1.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }

        .transform-spaces .certification-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

    .transform-spaces .block-image {
        width: 120px;
        min-width: 120px;
        margin-right: 1.5rem;
        padding: 1rem;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

        .transform-spaces .block-image:hover {
            transform: translateY(-5px);
        }

    .transform-spaces p {
        color: var(--off-black);
        margin: 0;
    }

    .transform-spaces .org-certification {
        background: #fff;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .transform-spaces .org-certification:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

    .transform-spaces .qr-code img {
        width: 200px;
    }

/*#endregion*/

/*#region Footer*/

.footer {
    padding-top: 45px;
    background: var(--off-black);
}

    .footer .container {
        padding-bottom: 45px;
    }

    .footer .footer-block img {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .footer .footer-block h6 {
        font-size: 16px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .footer .footer-block p {
        color: rgba(255, 255, 255, 0.8);
    }

    .footer .footer-block ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .footer .footer-block ul li {
            margin-bottom: 8px;
        }

            .footer .footer-block ul li:last-child {
                margin: unset;
            }

            .footer .footer-block ul li a {
                position: relative;
                color: rgba(255, 255, 255, 0.8);
                transition: 0.5s;
                font-weight: 600;
                white-space: normal;
            }

                .footer .footer-block ul li a::before {
                    content: "\f061";
                    font-weight: 600;
                    left: 0;
                    opacity: 0;
                    transition: 0.5s;
                    position: absolute;
                    font-family: "Font Awesome 7 Free";
                }

                .footer .footer-block ul li a:hover {
                    padding-left: 20px;
                    font-weight: 800;
                }

                    .footer .footer-block ul li a:hover::before {
                        opacity: 1;
                    }

    .footer .social-links a {
        display: inline-block;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        color: #fff;
        transition: all 0.3s ease;
    }

        .footer .social-links a:hover {
            background: var(--main-colour);
            color: #fff;
            transform: translateY(-3px);
        }

    .footer .footer-block .contact-footer-info i {
        color: var(--main-colour);
    }
    .footer .copyright_area {
        background: #1c1c1c;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        padding: 20px 15px;
        font-size: 12px;
    }

        .footer .copyright_area a {
            font-weight: 700;
            text-transform: uppercase;
            color: var(--main-colour);
        }

/*#endregion*/

/*#region Privacy Policy*/

.privacy {
    padding-top: 45px;
    padding-bottom: 50px;
    position: relative;
}

    .privacy h2 {
        font-size: 30px;
        font-weight: bold;
    }

    .privacy p {
        font-size: 16px;
        line-height: 33px;
    }

/*#endregion*/

/*#region Error Page*/

.error-page-1 {
    padding: 50px 0;
}

    .error-page-1 img {
        margin-bottom: 25px;
    }

    .error-page-1 h1 {
        font-size: 45px;
        font-weight: 800;
    }

    .error-page-1 h2 {
        font-size: 35px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .error-page-1 p {
        font-size: 14px;
    }

/*#endregion*/



/*RESPONSIVE STYLES PER BREAK POINT*/

/* SM Screen (600px and up) */
@media (min-width: 600px) {
}

/* MD Breakpoint (tablets, 768px and up) */
@media (min-width: 768px) {

    /*#region Navbar*/

    .navbar-brand img {
        height: 70px;
    }

    /*#endregion*/

    /*#region Review Block*/

    .review-block .carousel-indicators {
        bottom: -9% !important;
    }

    /*#endregion*/

    /*#region Info Block*/

    .info-block-6 .bottom-banner-content {
        padding: 2em;
        max-width: 440px;
        margin: 60px 0;
        opacity: 1;
    }

    /*#endregion*/

    /*#region Products And Services*/

    /*#region Canvas Printing*/

    .custom-canvas-form.info-block-6 .bottom-banner-content {
        max-width: 545px;
    }

    /*#endregion*/

    /*#endregion*/

}

/* LG Breakpoint (tablets, 992px and up) */
@media (min-width: 992px) {

    /*#region Featured categories*/

    .featured-categories {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Partner*/

    .partner-block {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Review Block*/

    .review-block {
        padding: var(--screen-lg-padding);
    }

        .review-block .card {
            padding: unset;
        }

        .review-block .carousel-control-prev {
            left: -25px !important;
        }

        .review-block .carousel-control-next {
            right: -25px !important;
        }

        .review-block .carousel-indicators {
            bottom: -15% !important;
        }

    /*#endregion*/

    /*#region Info Block*/

    .info-block-6 .bottom-banner-content {
        max-width: 575px;
    }

    .info-block-6 .banner-text .banner-inner-content {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Products And Services*/

    /*#region Murals*/

    /*#region Feature Image Section */

    .wall-mural {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Painted Murals*/

    .printed-murals {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Pricelist*/

    .pricelist {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Quick Mural Cost*/

    .quick-mural-calculator {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Mural Quote Request*/

    .mural-quote-request {
        padding: var(--screen-lg-padding);
    }


    /*#endregion*/

    /*#endregion*/

    /*#region Statement*/

    .statement {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Sticker & Vinyl Printing*/

    .stickers-vinyl-printing {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Contra Vision*/

    .contra-vision {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Canvas Printing*/

    .canvas-printing, .canvas-quote-request, .custom-canvas-form {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Plain and printed Frosting*/

    .frosting {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Poster & Portrait Printing*/

    .posters-portraits {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Art Prints and Fine Art Reproductions*/

    .art-print {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Display Systems*/

    .display-systems {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Stock Wallpaper*/

    .stock-wallpaper {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#endregion*/

    /*#region About*/

    /*#region About Eye Candy Digital*/

    .about {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Our Cutting Edge Technology*/

    .cutting-edge-tech {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Mission*/

    .mission {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Latex Medical*/

    .latex-medical {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#endregion*/

    /*#region Feature Items*/

    .feature-item:last-child {
        margin-bottom: unset;
    }

    /*#endregion*/

    /*#region Why Choose Us*/

    .why-choose-us {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Gallery*/

    .gallery {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Quote Request Form*/

    .quote-request-form {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

    /*#region Contact*/

    .contact {
        padding: var(--screen-lg-padding);
    }

    .padding-block {
        padding: 30px;
    }

    /*#endregion*/

    /*#region Transform Spaces*/

    .transform-spaces {
        padding: var(--screen-lg-padding);
    }

    /*#endregion*/

}


/* Normal Screen 18 Inch - 19 Inch ( (Resolution 1366x768 ) 1349px and up) */
@media (min-width: 1349px) {

    /*#region Master*/

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 45px;
        }

        .section-title h3 {
            font-size: 35px;
        }

    p {
        font-size: 16px;
    }

    h4 {
        font-size: 24px;
        font-weight: 600;
    }

    h5 {
        font-size: 22px;
        font-weight: 500;
    }

    /*#endregion*/

    /*#region Banner*/

    .banner .carousel-control-prev-icon, .banner .carousel-control-next-icon {
        border-radius: 50%;
        width: 3rem;
        height: 3rem;
    }

    /*#endregion*/

    /*#region Navbar*/

    .navbar-brand img {
        height: unset;
    }

    .navbar .navbar-nav .nav-item {
        border: unset;
    }

        .navbar .navbar-nav .nav-item .nav-link {
            font-size: 16px;
            padding: 10px 25px;
        }

        .navbar .navbar-nav .nav-item .nav-link {
            font-size: 16px;
        }

            .navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
                background-color: var(--main-colour);
                color: #fff !important;
                transition: all 0.3s ease-in-out 0s;
            }

    /*#endregion*/

    /*#region Featured categories*/

    .category-content h4 {
        font-size: 20px;
    }

    /*#endregion*/

    /*#region Products And Services*/

    /*#region Murals*/

    /*#region Pricelist*/

    .pricelist .pricelist-item:hover {
        border-color: var(--main-colour);
        box-shadow: 10px 0 60px rgba(81, 56, 238, 0.1);
    }

    .pricelist .price-label:hover {
        color: var(--main-colour);
        background-color: #fff;
        transition: all 0.3s ease;
        border-top: 1px solid var(--main-colour);
    }

    /*#endregion*/

    /*#region Quick Mural Cost*/

    .quick-mural-calculator .quote-item.total {
        font-size: 22px;
    }

    .quick-mural-calculator .quote-disclaimer {
        font-size: 16px;
    }

    .quick-mural-calculator .text-muted.small {
        font-size: 16px;
    }

    .quick-mural-calculator h2 {
        font-size: 30px;
    }

    /*#endregion*/

    /*#region Mural Quote Request*/

    .mural-quote-request .wall-preview h6 {
        font-size: 26px;
    }

    .mural-quote-request .wall-preview p {
        text-align: center;
        font-size: 18px;
    }

    /*#endregion*/

    /*#endregion*/

    /*#region Contra Vision*/

    .contra-vision .padding-box .content h5 {
        font-size: 18px;
    }

    /*#endregion*/

    /*#endregion*/

    /*#region Quote Thank You Section*/

    .quote-request-thank-you .lead {
        font-size: 18px;
    }

    .quote-request-thank-you .subtext {
        font-size: 16px;
    }

    /*#endregion*/

    /*#region Contact*/

    .contact .contact-info-content h5 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /*#endregion*/

    /*#region Gallery*/


    .gallery-image-wrapper label {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Transform Spaces*/

    .transform-spaces h1 {
        font-size: 38px;
    }

    .transform-spaces h5 {
        font-size: 20px;
    }

    .transform-spaces h6 {
        font-size: 22px;
        margin-bottom: 40px;
    }

    /*#endregion*/

    /*#region Review Block*/

    .review-block .carousel-control-prev, .review-block .carousel-control-next {
        width: 45px !important;
        border-radius: 50px !important;
        height: 45px !important;
        top: 15px !important;
    }

    .review-block .carousel-control-prev {
        left: -60px !important;
    }

    .review-block .carousel-control-next {
        right: -60px !important;
    }

    .review-block .carousel-indicators {
        bottom: -20% !important;
    }

    /*#endregion*/

    /*#region Error Page*/

    .error-page-1 h1 {
        font-size: 85px;
    }

    .error-page-1 h2 {
        font-size: 75px;
        margin-bottom: 30px;
    }

    .error-page-1 p {
        font-size: 18px;
    }

    /*#endregion*/

    /*#region Footer*/

    .footer .copyright_area {
        font-size: 14px;
    }

    /*#endregion*/

    /*#region Privacy Policy*/

    .privacy h2 {
        font-size: 45px;
    }

    /*#endregion*/

}


/*High Definition Plus (HD+) ( (Resolution 1600x900), 1600px and up) */
@media (min-width: 1600px) {
}

/*Extra Large Screen 23 Inch ( (Resolution 1920x1080 ) 1800px and up) */
@media (min-width: 1800px) {

    /*#region Info Block*/

    .info-block-6 .bottom-banner-content {
        margin: 170px 0;
    }

    .info-block-6 .bottom-banner-content {
        max-width: 630px;
    }

    /*#endregion*/
}

/*Extra Large Screen 27 Inch ( (Resolution 2560x1440 ) 2560px and up) */
@media (min-width: 2560px) {
}

/*Extra Large Screen 32 Inch ( (Resolution 3840x2160 ) 3840px and up) */
@media (min-width: 3840px) {
}
