/* _content/T11/Components/Layout/Footer.razor.rz.scp.css */
.footer-container[b-80gvzpvq4j] {
    margin-top: 15px;
    background-color: #141212; /* Footer background color */
    color: white; /* Text color */
    padding: 1rem;
    text-align: center;
    width: 100%;
    height: 300px;
}

.footer-inner-container[b-80gvzpvq4j] {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%; /* Ensures alignment works throughout the container */
    display: flex;
    flex-direction: column; /* Stack rows vertically */
    justify-content: space-between; /* Distribute items in container evenly */
}

.row[b-80gvzpvq4j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-middle[b-80gvzpvq4j] {
    justify-content: center;
    margin-bottom: auto;
}

.bottom[b-80gvzpvq4j] {
    justify-content: space-between;
    
}

.col-4[b-80gvzpvq4j] {
    flex: 1;
    text-align: center;
}

.col-left[b-80gvzpvq4j] {
    text-align: left;
}

.col-right[b-80gvzpvq4j] {
    text-align: right;
}

.col-4 i[b-80gvzpvq4j] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Background color of the icon */
    color: #333; /* Icon color */
    margin: 0 5px;
    font-size: 18px; /* Icon size */
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Specific hover effects for each icon */
.face:hover[b-80gvzpvq4j] {
    background-color: #3b5998; /* Facebook blue */
    color: white;
}

.link:hover[b-80gvzpvq4j] {
    background-color: #0077b5; /* LinkedIn blue */
    color: white;
}

.insta:hover[b-80gvzpvq4j] {
    background-color: #e4405f; /* Instagram pink */
    color: white;
}

.twit:hover[b-80gvzpvq4j] {
    background-color: #272222; /* Twitter blue */
    color: white;
}

.line[b-80gvzpvq4j] {
    width: 50px; /* Length of the line */
    height: 1px;
    background-color: #ccc; /* Line color */
    display: inline-block; /* Make lines inline to align with icons */
    vertical-align: middle; /* Align lines with the middle of the icons */
    margin: 0 10px; /* Space between lines and icons */
}

.site-by[b-80gvzpvq4j] {
    text-align: right;
}

.privacy[b-80gvzpvq4j] {
    text-align: left;
}

@media screen and (max-width: 600px) {
    .line[b-80gvzpvq4j] {
        display: none;
    }

    .site-by[b-80gvzpvq4j] {
        display: none;
    }

    .privacy[b-80gvzpvq4j] {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .top-middle[b-80gvzpvq4j] {
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        text-align: center; 
    }

    .col-4[b-80gvzpvq4j] {
        flex: none; 
        width: 100%; 
    }

        .col-4 i[b-80gvzpvq4j] {
            margin: 10px 0; 
        }

    .line[b-80gvzpvq4j] {
        display: none; 
    }
}

.modal[b-80gvzpvq4j] {
    display: none; 
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5); 
    overflow: hidden; 
}

.modal-content[b-80gvzpvq4j] {
    background-color: white;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 50%; 
    max-height: 70vh; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.modal-body[b-80gvzpvq4j] {
    overflow-y: auto; 
    max-height: calc(70vh - 50px); 
    padding: 10px; 
}

.close-button[b-80gvzpvq4j] {
    position: fixed;
    right: 26%;
    float: right;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close-button:hover[b-80gvzpvq4j],
    .close-button:focus[b-80gvzpvq4j] {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
/* _content/T11/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-otvby2m1th] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-otvby2m1th] {
    flex: 1;
}

.sidebar[b-otvby2m1th] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-otvby2m1th] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-otvby2m1th]  a, .top-row[b-otvby2m1th]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-otvby2m1th]  a:hover, .top-row[b-otvby2m1th]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-otvby2m1th]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-otvby2m1th] {
        justify-content: space-between;
    }

    .top-row[b-otvby2m1th]  a, .top-row[b-otvby2m1th]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-otvby2m1th] {
        flex-direction: row;
    }

    .sidebar[b-otvby2m1th] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-otvby2m1th] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-otvby2m1th]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-otvby2m1th], article[b-otvby2m1th] {

    }
}

#blazor-error-ui[b-otvby2m1th] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-otvby2m1th] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/T11/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-dnynpyptbw] {
    background-color: white;
    padding: 1rem;
    height: 90px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    transition: height 0.3s ease;
}

    .navbar.open[b-dnynpyptbw] {
        height: 175px;
        margin-bottom: 150px;
    }

.navbar-content[b-dnynpyptbw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.links[b-dnynpyptbw] {
    display: flex;
    gap: 5rem;
    padding-right: 50px;
}

    .links .nav-item[b-dnynpyptbw] {
        color: black;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        position: relative;
    }

        .links .nav-item[b-dnynpyptbw]::before {
            content: "";
            position: absolute;
            bottom: 160%;
            left: 0;
            width: 0;
            height: 5px;
            background-color: #cbaa2b;
            transition: width 0.3s ease;
        }

        .links .nav-item:hover[b-dnynpyptbw]::before {
            width: 100%;
        }

        .links .nav-item.active[b-dnynpyptbw]::before {
            width: 100%;
        }

.logo img[b-dnynpyptbw] {
    height: 75px;
    padding-left: 50px;
}

.hamburger[b-dnynpyptbw] {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
}

    .hamburger div[b-dnynpyptbw] {
        width: 30px;
        height: 4px;
        background-color: #A80096;
        border-radius: 2px;
    }

.dropdown[b-dnynpyptbw] {
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0;
    transition: visibility 0s 0.3s, opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
}

    .dropdown .nav-item[b-dnynpyptbw] {
        display: block;
        padding: 10px;
        color: black;
        text-decoration: none;
    }

        .dropdown .nav-item:hover[b-dnynpyptbw] {
            background-color: #f0f0f0;
        }

@media (max-width: 768px) {
    .links[b-dnynpyptbw] {
        display: none;
    }

    .hamburger[b-dnynpyptbw] {
        display: flex;
        padding-right: 25px;
    }

    .navbar.open .dropdown[b-dnynpyptbw] {
        visibility: visible;
        opacity: 1;
        max-height: 500px;
        padding: 10px;
        transition: visibility 0s 0s, opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
    }

    .logo img[b-dnynpyptbw] {
        padding-left: 25px;
    }
}

.navbar.open .dropdown .nav-item .nav-link > hr[b-dnynpyptbw] {
    width: 120px;
    margin-top: 0px;
    color: #2bb2cb;
}

.nav-link > hr[b-dnynpyptbw] {
    visibility: hidden;
    border: none;
    background-color: #2bb2cb;
    height: 5px;
    margin-top: 0px;
    margin-bottom: 0;
    position: relative;
}

.nav-item .nav-link.active > hr[b-dnynpyptbw] {
    visibility: visible;
    margin-top: -50px;
    opacity: 0.3;
}

.nav-item[b-dnynpyptbw] {
    font-size: 1.4rem;
    color: black;
}
/* _content/T11/Components/Pages/AboutUs/AboutUs.razor.rz.scp.css */
.banner[b-8doi8uuz1j] {
	width: 100%;
	height: 600px; /* Adjust as needed */
	display: flex;
	align-items: center; /* Center content vertically */
	justify-content: center; /* Default: Center horizontally */
	text-align: left; /* Ensure text aligns left */
	background: url('Images/online_systems_hero.jpg') no-repeat center center; /* Replace with your image path */
	background-size: cover; /* Ensure the image covers the entire banner */
	position: relative; /* To position the overlay */
	color: #a90096;
	padding: 0 1rem; /* Add padding to ensure spacing on small screens */
}

	.banner[b-8doi8uuz1j]::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity for desired darkness */
		z-index: 1; /* Make sure the overlay appears behind text */
	}

	.banner *[b-8doi8uuz1j] {
		position: relative; /* Ensure text appears above the overlay */
		z-index: 2;
	}

.banner-text[b-8doi8uuz1j] {
	font-size: calc(3rem + 1vw); /* Dynamic scaling */
	font-weight: bold;
	line-height: 1.2;
	max-width: 1200px; /* Restrict the text to 1200px */
	width: 100%; /* Ensure full width usage for alignment */
	margin: 0; /* Remove auto-centering margin */
	color: white;
	padding: 0; /* Remove extra padding for alignment */
	text-align: left; /* Align text to the left */
	align-self: flex-start; /* Align to the left of the container */
	top: 50%;
}

/* Button styles */
.banner-buttons[b-8doi8uuz1j] {
	margin-top: 10px; /* Spacing between text and buttons */
	display: flex;
	gap: 10px; /* Spacing between buttons */
	justify-content: flex-start; /* Align buttons to the left */
	flex-wrap: wrap; /* Wrap buttons for smaller screens */
}

.banner-button[b-8doi8uuz1j] {
	padding: 10px 20px;
	font-size: 1.5rem;
	color: white;
	background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

	.banner-button:hover[b-8doi8uuz1j] {
		background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
	}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
	.banner[b-8doi8uuz1j] {
		height: 300px; /* Reduce height for smaller devices */
		align-items: center; /* Keep vertical alignment */
	}

	.banner-text[b-8doi8uuz1j] {
		font-size: calc(2rem + 1vw); /* Adjust font size */
		max-width: 100%; /* Allow text to expand fully */
		padding: 0 1rem; /* Add padding for spacing */
		text-align: left; /* Ensure text aligns left */
	}

	.banner-buttons[b-8doi8uuz1j] {
		flex-direction: column; /* Stack buttons vertically */
		gap: 5px; /* Reduce gap between buttons */
		align-items: flex-start; /* Align buttons to the left */
	}

	.banner-button[b-8doi8uuz1j] {
		font-size: 1rem; /* Reduce button size */
	}
}

@media (max-width: 480px) {
	.banner[b-8doi8uuz1j] {
		height: 200px; /* Further reduce height for very small devices */
		align-items: center; /* Keep vertical alignment */
	}

	.banner-text[b-8doi8uuz1j] {
		font-size: calc(1.5rem + 1vw); /* Adjust font size */
		padding: 0 1rem; /* Add spacing for small devices */
		text-align: left; /* Keep left-aligned */
	}

	.banner-button[b-8doi8uuz1j] {
		font-size: 0.8rem; /* Further reduce button size */
	}
}


	.about-us-title[b-8doi8uuz1j], .about-us-text[b-8doi8uuz1j] {
		padding-bottom: 10px;
		text-align: center;
		max-width: 1200px;
	}

	.about-us-title[b-8doi8uuz1j] {
		font-size: 60px;
		color: #1b4f72;
	}

	.about-us-text[b-8doi8uuz1j] {
		font-size: 30px;
		padding-bottom: 50px;
		color: #155f7c;
	}

	@media (max-width: 768px) {
		.about-us-title[b-8doi8uuz1j] {
			font-size: 50px;
		}

		.about-us-text[b-8doi8uuz1j] {
			font-size: 25px;
			padding-bottom: 50px;
		}
	}

	@media (max-width: 500px) {
		.about-us-title[b-8doi8uuz1j] {
			font-size: 40px;
		}

		.about-us-text[b-8doi8uuz1j] {
			font-size: 20px;
			padding-bottom: 50px;
		}
	}

	.about-us-title-test[b-8doi8uuz1j], .about-us-text-test[b-8doi8uuz1j] {
		padding-bottom: 20px;
		text-align: left;
		max-width: 1000px;
		margin-left: 30px;
	}

	.about-us-title-test[b-8doi8uuz1j] {
		font-size: 70px;
		color: #2bb2cb;
	}

	.about-us-text-test[b-8doi8uuz1j] {
		font-size: 24px;
		padding-bottom: 50px;
		color: black;
		word-spacing: 3px; /* Adjust the value as needed */
	}

	@media (max-width: 768px) {
		.about-us-title-test[b-8doi8uuz1j] {
			font-size: 50px;
		}

		.about-us-text-test[b-8doi8uuz1j] {
			font-size: 25px;
			padding-bottom: 50px;
		}
	}

	@media (max-width: 500px) {
		.about-us-title-test[b-8doi8uuz1j] {
			font-size: 40px;
		}

		.about-us-text-test[b-8doi8uuz1j] {
			font-size: 20px;
			padding-bottom: 50px;
		}
	}

	.jack-banner-colour[b-8doi8uuz1j], .lee-banner-colour[b-8doi8uuz1j] {
		padding: 3rem 0;
		text-align: left;
	}

	.jack-banner-colour[b-8doi8uuz1j] {
		width: 100%;
		background-color: rgba(153, 163, 164, 0.2); /* Adjust the opacity (0 to 1) */
	}

	.lee-banner-colour[b-8doi8uuz1j] {
		width: 100%;
		background-color: rgba(153, 163, 164, 0.2); /* Adjust the opacity (0 to 1) */
	}

	.about-us-facts-title[b-8doi8uuz1j] {
		padding-bottom: 20px;
		text-align: left;
		max-width: 1000px;
		margin-left: 30px;
		font-size: 70px;
		color: black;
	}

	.light-background[b-8doi8uuz1j] {
		width: 100%;
		background-color: rgba(153, 163, 164, 0.2); /* Adjust the opacity (0 to 1) */
		margin-bottom: 50px;
	}

	.about-us-statistic[b-8doi8uuz1j], .about-us-statistic-explained[b-8doi8uuz1j] {
		padding-bottom: 10px;
		text-align: left;
		max-width: 1000px;
		margin-left: 30px;
	}

	.about-us-statistic[b-8doi8uuz1j] {
		font-size: 70px;
		color: #2bb2cb;
	}

	.about-us-statistic-explained[b-8doi8uuz1j] {
		font-size: 24px;
		color: black;
		word-spacing: 3px; /* Adjust the value as needed */
		font-weight: bold;
	}

	@media (max-width: 768px) {
		.about-us-statistic[b-8doi8uuz1j] {
			font-size: 50px;
		}

		.about-us-statistic-explained[b-8doi8uuz1j] {
			font-size: 25px;
			padding-bottom: 50px;
		}
	}

	@media (max-width: 500px) {
		.about-us-statistic[b-8doi8uuz1j] {
			font-size: 40px;
		}

		.about-us-statistic-explained[b-8doi8uuz1j] {
			font-size: 20px;
			padding-bottom: 50px;
		}
	}

	.who-we-are-title[b-8doi8uuz1j], .who-we-are-text[b-8doi8uuz1j] {
		padding-bottom: 10px;
		text-align: left;
		margin-left: 30px;
	}

	.who-we-are-title[b-8doi8uuz1j] {
		font-size: 70px;
		color: black;
	}

	.who-we-are-text[b-8doi8uuz1j] {
		word-spacing: 3px; /* Adjust the value as needed */
		padding-bottom: 50px;
		font-size: 24px;
		color: black;
	}

	.ceos-title[b-8doi8uuz1j] {
		font-size: 70px;
		color: black;
		padding-bottom: 10px;
		text-align: center;
	}

	.name-of-bossman[b-8doi8uuz1j] {
		color: #2bb2cb;
		font-size: 50px;
		font-weight: bold;
	}

	.bossman-title[b-8doi8uuz1j] {
		color: black;
		font-size: 35px;
		font-weight: bold;
	}

	.custom-container-aboutus[b-8doi8uuz1j] {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 1rem;
	}

	.custom-container-aboutus-stats[b-8doi8uuz1j] {
		max-width: 1500px;
		margin: 0 auto;
		padding: 0 1rem;
	}

	ul.bullet-point-area[b-8doi8uuz1j] {
		padding-left: 100px;
	}

	li.actual-bullet-point-area[b-8doi8uuz1j] {
		padding-top: 5px;
		padding-bottom: 5px;
	}
/* _content/T11/Components/Pages/ContactUs/ContactUs.razor.rz.scp.css */
.mini-container[b-iel13wwjol] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center; 
}
.background-for-form[b-iel13wwjol] {
    background-color: rgba(153, 163, 164, 0.2); /* Adjust the opacity (0 to 1) */
    width: 100%;
}
.form-container[b-iel13wwjol] {
    max-width: 1200px;
    justify-content: center; /* Center children vertically */
    margin: 0 auto; /* Center the container itself */
    color: black;
    font-size: 1.2rem;
}

p[b-iel13wwjol] {
    margin-bottom: 1rem;
}

.right[b-iel13wwjol] {
    width: 35%;
    float: right;
    margin-left: 5%;
}

h5[b-iel13wwjol] {
    font-size: 24px;
    margin-bottom: -10px !important;
    color: #cbaa2b;
    font-weight: 600;
    line-height: 1.2;
}

.address-details[b-iel13wwjol] {
    margin-top: 10px;
    line-height: 34px;
}

.container-for-page[b-iel13wwjol] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

.left[b-iel13wwjol] {
    width: 100%;
    float: left;
}

form[b-iel13wwjol] {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

input[b-iel13wwjol] {
    margin: 0;
    font-family: inherit;
}

.field-validation-error[b-iel13wwjol] {
    color: red;
}

.form-control[b-iel13wwjol] {
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input[type="text"][b-iel13wwjol], input[type="email"][b-iel13wwjol], input[type="password"][b-iel13wwjol], textarea[b-iel13wwjol], select[b-iel13wwjol] {
    border: 1px solid #e3e3e3;
    font-size: 18px !important;
    height: 35px;
    margin-bottom: 15px;
    margin-top: 6px;
    padding: 6px;
}

.button[b-iel13wwjol] {
    background: #c01762;
    color: #ffffff;
    font-size: 26px;
    border: 1px;
    border-color: gray;
    border-style: solid;
    display: inline-block;
    letter-spacing: 1px;
    padding: 7px 22px;
    transition: all 0.3s ease-out 0s;
    float: right;
    margin-right: 22px;
    font-family: inherit;
    line-height: inherit;
    margin: 0;
}

.return-home-container[b-iel13wwjol] {
    font-size: 20px;
    margin-top: 10px;
}

a.return-home-button[b-iel13wwjol] {
    color: pink;
}

.centering[b-iel13wwjol] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-contact[b-iel13wwjol] {
    text-align: center;
}

@media (min-width: 575px) {
    .about-contact[b-iel13wwjol] {
        text-align: start;
    }
}

#map[b-iel13wwjol] {
    height: 500px;
    width: 100%;
    margin-bottom: 50px;
}

.thanks-message[b-iel13wwjol]{
    font-size: 30px;
    font-weight: bold;
}
/* _content/T11/Components/Pages/Features/Features.razor.rz.scp.css */
.features-banner-colour[b-n0co6q0wor] {
    background-color: #5dade2;
}

.banner[b-n0co6q0wor] {
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: center; /* Horizontally center the content */
    text-align: center;
    background: url('Images/online_systems_hero.jpg') no-repeat center center; /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire banner */
    position: relative; /* To position the overlay */
    color: #a90096;
}

    .banner[b-n0co6q0wor]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity for desired darkness */
        z-index: 1; /* Make sure the overlay appears behind text */
    }

    .banner *[b-n0co6q0wor] {
        position: relative; /* Ensure text appears above the overlay */
        z-index: 2;
    }

.banner-text[b-n0co6q0wor] {
    font-size: calc(3rem + 1vw); /* Dynamic scaling */
    font-weight: bold;
    line-height: 1.2;
    max-width: 1200px; /* Restrict the text to 1200px */
    margin: 0 auto; /* Center the text horizontally */
    color: white;
    padding: 0 1rem; /* Add padding for smaller screens */
    text-align: left;
}

/* Button styles */
.banner-buttons[b-n0co6q0wor] {
    margin-top: 10px; /* Spacing between text and buttons */
    display: flex;
    gap: 10px; /* Spacing between buttons */
    justify-content: center; /* Center the buttons */
}

.banner-button[b-n0co6q0wor] {
    padding: 10px 20px;
    font-size: 1.5rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .banner-button:hover[b-n0co6q0wor] {
        background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
    }

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .banner[b-n0co6q0wor] {
        height: 300px; /* Reduce height for smaller devices */
    }

    .banner-text[b-n0co6q0wor] {
        font-size: calc(2rem + 1vw); /* Adjust font size */
        max-width: 100%; /* Allow more flexibility for small screens */
        padding: 0 1rem; /* Add padding for better spacing */
    }

    .banner-buttons[b-n0co6q0wor] {
        flex-direction: column; /* Stack buttons vertically */
        gap: 5px; /* Reduce gap between buttons */
    }

    .banner-button[b-n0co6q0wor] {
        font-size: 1rem; /* Reduce button size */
    }
}

@media (max-width: 480px) {
    .banner[b-n0co6q0wor] {
        height: 200px; /* Further reduce height for very small devices */
    }

    .banner-text[b-n0co6q0wor] {
        font-size: calc(1.5rem + 1vw); /* Further adjust font size */
    }

    .banner-button[b-n0co6q0wor] {
        font-size: 0.8rem; /* Further reduce button size */
    }
}

/*Was originally 1500p widex*/

.custom-container-features[b-n0co6q0wor] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features-title[b-n0co6q0wor] {
    color: #2bb2cb;
    font-size: 60px;
    font-weight: bold;
    font-style: normal;
}

.features-text[b-n0co6q0wor]{
    font-size: 30px;
}

.feature-title-colour[b-n0co6q0wor] {
    color: #2898ad;
    font-size: 30px;
    font-weight: bold;
}

.feature-text-colour[b-n0co6q0wor] {
    color: black;
    font-size: 20px;
    color: #282525;
}

.btn-colour[b-n0co6q0wor] {
    background-color: #2bb2cb;
    padding: 10px 15px;
    color: white;
    width: 125px;
    font-size: 18px;
}
.card-body[b-n0co6q0wor]{
    height: 300px;
}
/* _content/T11/Components/Pages/Home.razor.rz.scp.css */
/* Banner styles */
.banner[b-031u36vvmj] {
    width: 100%;
    height: 600px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: center;
    background: url('Images/home_hero.jpg') no-repeat center center; /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire banner */
    position: relative; /* To position the overlay */
    color: #a90096;
}

    .banner[b-031u36vvmj]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity for desired darkness */
        z-index: 1; /* Make sure the overlay appears behind text */
    }

    .banner *[b-031u36vvmj] {
        position: relative; /* Ensure text appears above the overlay */
        z-index: 2;
    }


/* Text styles */
.banner-text[b-031u36vvmj] {
    font-size: calc(3rem + 1vw); /* Dynamic scaling */
    font-weight: bold;
    line-height: 1.2;
    max-width: 1200px; /* Restrict the text to 1200px */
    margin: 0 auto; /* Center the text horizontally */
    color: white;
    padding: 0 1rem; /* Add padding for smaller screens */
    text-align: left;
}

.banner-text-2[b-031u36vvmj] {
    font-size: calc(0.5rem + 1vw); /* Dynamic scaling */
    font-weight: bold;
    line-height: 1.2;
    max-width: 1200px; /* Restrict the text to 1200px */
    margin: 0 auto; /* Center the text horizontally */
    color: white;
    padding-bottom: 20px;
}

/* Button styles */
.banner-buttons[b-031u36vvmj] {
    margin-top: 10px; /* Spacing between text and buttons */
    display: flex;
    gap: 40px; /* Spacing between buttons */
    max-width: 1200px;
    margin: 0 auto; /* Center the text horizontally */
}

.banner-button[b-031u36vvmj] {
    padding: 10px 20px;
    font-size: 1.5rem;
    color: white;
    background-color: #2bb2cb; /* Semi-transparent background */
    opacity: 0.9;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .banner-button:hover[b-031u36vvmj] {
        background-color: #206b79; /* Darker background on hover */
    }

@media (max-width: 955px){
    .banner-text[b-031u36vvmj] {
        font-size: calc(2rem + 1vw); /* Adjust font size */
        margin-right: 300px;
    }

    .banner-text-2[b-031u36vvmj] {
        font-size: calc(0.5rem + 1vw); /* Dynamic scaling */
        font-weight: bold;
        line-height: 1.2;
        max-width: 900px;
        margin-right: 300px;
        color: white;
        padding-bottom: 20px;
    }

    .banner-buttons[b-031u36vvmj] {
        margin-right: 300px;
    }

    .banner-button[b-031u36vvmj] {
        padding: 8px 16px;
        font-size: 0.7rem;
        color: white;
        background-color: #2bb2cb; /* Semi-transparent background */
        opacity: 0.9;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}
/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .banner-text[b-031u36vvmj] {
        font-size: calc(2.5rem + 1vw); /* Adjust font size */
    }

    .banner-text-2[b-031u36vvmj] {
        display: none;
    }

    .banner-buttons[b-031u36vvmj] {
        display: none;
    }

    .banner-button[b-031u36vvmj] {
        display: none;
    }
}

@media (max-width: 665px) {
    .banner-text[b-031u36vvmj] {
        font-size: calc(2rem + 1vw); /* Adjust font size */
    }

    .banner-text-2[b-031u36vvmj] {
        font-size: calc(0.5rem + 1vw); /* Dynamic scaling */
        font-weight: bold;
        line-height: 1.2;
        max-width: 900px;
        margin-right: 350px;
        color: white;
        padding-bottom: 20px;
    }

    .banner-buttons[b-031u36vvmj] {
        flex-direction: column; /* Stack buttons vertically on smaller screens */
        margin-right: 300px;
    }

    .banner-button[b-031u36vvmj] {
        padding: 4px 8px;
        font-size: 1rem;
        color: white;
        background-color: #2bb2cb; /* Semi-transparent background */
        opacity: 0.9;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
}
    /* Adjustments for smaller screens */
    @media (max-width: 510px) {
        .banner[b-031u36vvmj] {
            height: 300px; /* Reduce height for smaller devices */
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .banner-text[b-031u36vvmj] {
            font-size: calc(1.8rem + 1vw); /* Adjust font size */
            margin-right: 200px;
        }

        .banner-buttons[b-031u36vvmj] {
            flex-direction: column; /* Stack buttons vertically on smaller screens */
            margin-right: 200px;
        }

        .banner-button[b-031u36vvmj] {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .banner[b-031u36vvmj] {
            height: 300px; /* Further reduce height for very small devices */
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .banner-text[b-031u36vvmj] {
            font-size: calc(1.4rem + 1vw); /* Further adjust font size */
            margin-right: 200px;
        }

        .banner-button[b-031u36vvmj] {
            display: none;
        }
    }

.home-banner-colour[b-031u36vvmj] {
    padding: 3rem 0;
    text-align: left;
    background-color: rgba(153, 163, 164, 0.2); /* Adjust the opacity (0 to 1) */
}

.all-in-one-title[b-031u36vvmj] {
    color: #2bb2cb;
    font-size: 50px;
    font-weight: bold;
    font-style: normal;
}

.customer-quote-title[b-031u36vvmj] {
    color: #2bb2cb;
    font-size: 50px;
    font-weight: bold;
    font-style: normal;
}

.custom-title-on-grid[b-031u36vvmj] {
    font-size: 50px;
    color: #2bb2cb;
}
/* _content/T11/Components/Pages/PrivacyPolicy/PrivacyPolicy.razor.rz.scp.css */
.custom-container-privacy-policy[b-iiynpwha69] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1[b-iiynpwha69]{
    font-size: 38px;
    color: grey;
}

.paragraph1[b-iiynpwha69]{
    color: grey;
    font-size: 18px;
}
.paragraph2[b-iiynpwha69] {
    margin-top: 25px;
    margin-bottom: 25px;
    color: grey;
    font-size: 18px;
}

ol.roman[b-iiynpwha69] {
    list-style-type: upper-roman;
}
