/*! ------------------------------------------------
 * Raspberry IT Services — Website Update (Team CSS)
   Last Update: 21-Jul-2026 09:40
 * ------------------------------------------------ */

.max-w700 {
	max-width: 700px;
	margin: auto;
}

span.tag.tag-s-mobile.mxd-scramble {
    color: var(--t-medium);
}

.w-100{
	width: 100% !important;
	max-width: 100% !important;
}
.c-darkcstm, .c-darkcstm p,
.c-darkcstm .mxd-article__normal{
	color: #575960;
}

/* Custom scrollbar styles for WebKit browsers */
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
	width: 8px;
	/* Width of the scrollbar */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
	background: #f1f1f1;
	/* Track color */
	border-radius: 4px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
	background-color: #888;
	/* Thumb color */
	border-radius: 4px;
	border: 2px solid #f1f1f1;
	/* Padding around thumb */
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
	background-color: #555;
	/* Hover color */
}

.modal-dialog-scrollable .modal-body {
	scrollbar-width: thin;
	/* "auto" or "thin" */
	scrollbar-color: #888 #f1f1f1;
	/* thumb color and track color */
}

.modal label {
	display: block;
	font-size: 1.3rem;
	color: #36363c;
	margin-bottom: 0.6rem;
}

.modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1050;
	overflow-y: auto;
	background: rgba(0, 0, 0, .6);
	padding: 40px 20px;
}

.modal.show {
	display: block;
	opacity: 1;
}

.modal-dialog {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	transform: translateY(-16px);
	transition: transform 0.2s ease;
}

.modal.show .modal-dialog {
	transform: translateY(0);
}

.modal-lg {
	max-width: 800px;
}

.modal-dialog-scrollable .modal-content {
	display: flex;
	flex-direction: column;
	max-height: calc(100vh - 2rem);
}

.modal-dialog-scrollable .modal-body {
	flex: 1;
	overflow-y: auto;
	max-height: calc(100vh - 220px);
}

.modal-content {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid var(--st-muted);
	border-radius: 12px;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	padding: 2rem 2.4rem;
	border-bottom: 1px solid var(--st-muted);
}

.modal-title {
	font-size: 1.9rem;
	color: #02082a;
	margin: 0;
}

.btn-close {
	width: 3.2rem;
	height: 3.2rem;
	flex: none;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
	opacity: 0.6;
}

.btn-close:hover {
	opacity: 1;
}

.btn-close::before,
.btn-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.6rem;
	height: 2px;
	background: #02082a;
}

.btn-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-body {
	padding: 2.4rem;
}

.modal-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.2rem;
	padding: 2rem 2.4rem;
	/*  border-top: 1px solid var(--st-muted);*/
}

body.modal-open {
	overflow: hidden;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="radio"],
.contact-form select{
	width: 100%;
	padding: 0 1.4rem 0;
	font-family: var(--_font-default);
	font-size: 1.6rem;
	color: #02082a;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--st-muted);
	border-radius: 0;
	outline: none;
	transition: border-color 0.2s ease;
	height: 3rem;
	line-height: 3rem;
}

.contact-form textarea{
	width: 100%;
	padding: 0 1.4rem 0;
	font-family: var(--_font-default);
	font-size: 1.6rem;
	color: #02082a;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--st-muted);
	border-radius: 0;
	outline: none;
	transition: border-color 0.2s ease;
	height: 5rem;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-bottom-color: var(--accent);
}

.contact-form input::placeholder,
form input:focus:required:invalid,
form textarea:focus:required:invalid{
	color: #36363c;
}

.contact-form select {
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='%23888888' d='M4 7l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.2rem center;
	background-size: 1.4rem;
	padding-right: 2.2rem;
}

.contact-form select:invalid {
	color: #36363c;
	height: 3rem;
	line-height: 3rem;
}

.contact-form select option {
	color: #02082a;
	background: #ffffff;
}
.contact-form label{
	display: block;
    font-size: 1.3rem;
    color: #36363c;
    margin-bottom: 0.6rem;
}
form input:required:valid,
form textarea:required:valid {
	color: #02082a;
}

.contact-form input[type="file"] {
	width: 100%;
	padding: 0rem 0.2rem;
	font-family: var(--_font-default);
	font-size: 1.4rem;
	color: #36363c;
	border: none;
	border-bottom: 1px solid var(--st-muted);
	margin-top: -10px;
	border-radius: 0;
}

.contact-form input[type="file"]::file-selector-button {
	margin-right: 1.4rem;
	padding: 0.9rem 1.6rem;
	font-family: var(--_font-accent);
	font-size: 1.1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #02082a;
	background: transparent;
	border: 1px solid var(--st-muted);
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 0.2s ease;
}

.contact-form input[type="file"]::file-selector-button:hover {
	border-color: var(--accent);
}
.formbk{
	background: hsl(0deg 0% 100% / 85%);
    padding-top: 50px;
    border-radius: 20px;
}
/* ---------- shared ---------- */
.bx-section {
	position: relative;
	padding-top: 25px;
	padding-bottom: 25px;
}

.bx-head {
	max-width: 820px;
	margin-bottom: 20px;
	padding: 3.7rem 3rem 3rem 3rem;
}

.bx-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	border: 1px solid rgba(128, 128, 128, .3);
	border-radius: 100px;
	padding: 7px 16px;
	margin-bottom: 18px;
}

.bx-eyebrow::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--highlight);
	box-shadow: 8px 0 0 -4px var(--highlight), -8px 0 0 -4px var(--highlight);
}

.bx-head h2 {
	font-size: clamp(26px, 3.4vw, 44px);
	line-height: 1.12;
	margin: 0 0 12px;
}

.bx-head h2 em {
	font-style: normal;
	color: var(--highlight);
}

.bx-head p {
	font-size: 16px;
	line-height: 1.55;
	margin: 0;
	opacity: .75;
	max-width: 620px;
}

.bx-card {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(128, 128, 128, .25);
	border-radius: 18px;
	padding: 26px 24px;
	transition: transform .35s cubic-bezier(.2, .7, .3, 1), box-shadow .35s ease, border-color .35s ease;
}

.bx-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(150deg, rgba(128, 128, 128, .14) 0%, transparent 60%);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
	.bx-card::before {
		background: linear-gradient(150deg, color-mix(in srgb, var(--highlight) 16%, transparent) 0%, transparent 65%);
	}
}

.bx-card:hover {
	transform: translateY(-6px);
	border-color: var(--highlight);
	box-shadow: 0 20px 40px rgba(0, 0, 0, .14);
}

.bx-card:hover::before {
	opacity: 1;
}

.bx-card > * {
	position: relative;
}

.bx-num {
	position: absolute;
	top: 10px;
	right: 18px;
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	opacity: .06;
	letter-spacing: -.04em;
	pointer-events: none;
}

.bx-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 12px;
	border: 1px solid rgba(128, 128, 128, .25);
	margin-bottom: 16px;
	transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}

.bx-icon i {
	font-size: 24px;
	line-height: 1;
}

.bx-card:hover .bx-icon {
	background: var(--highlight);
	border-color: var(--highlight);
	color: #fff;
	transform: rotate(-6deg) scale(1.06);
}

.bx-card h3 {
	font-size: 17px;
	line-height: 1.35;
	margin: 0 0 10px;
}

.bx-card p {
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	opacity: .8;
}

.bx-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--highlight);
	margin-bottom: 10px;
}

/* ---------- key features bento ---------- */
.bx-bento {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	padding: 3.7rem 3rem 3rem 3rem;
}

.bx-bento .bx-hero {
	grid-column: span 2;
	grid-row: span 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 340px;
	background: linear-gradient(160deg, rgba(128, 128, 128, .16), transparent 70%);
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
	.bx-bento .bx-hero {
		background: linear-gradient(160deg, color-mix(in srgb, var(--highlight) 20%, transparent), transparent 70%);
	}
}

.bx-bento .bx-hero h3 {
	font-size: clamp(20px, 2vw, 26px);
}

.bx-bento .bx-hero p {
	font-size: 15px;
	max-width: 420px;
}

.bx-bento .bx-hero .bx-icon {
	width: 58px;
	height: 58px;
}

.bx-bento .bx-hero .bx-icon i {
	font-size: 30px;
}

.bx-bento .bx-wide {
	grid-column: span 4;
	display: flex;
	align-items: center;
	gap: 20px;
}

.bx-bento .bx-wide .bx-icon {
	margin-bottom: 0;
	flex-shrink: 0;
}

.bx-bento .bx-wide h3 {
	margin-bottom: 4px;
}

@media (max-width: 1199px) {
	.bx-bento {
		grid-template-columns: repeat(2, 1fr);
	}

	.bx-bento .bx-hero {
		grid-column: span 2;
		grid-row: span 1;
		min-height: 0;
	}

	.bx-bento .bx-wide {
		grid-column: span 2;
	}
}

@media (max-width: 767px) {
	.bx-bento {
		grid-template-columns: 1fr;
	}

	.bx-bento .bx-hero,
	.bx-bento .bx-wide {
		grid-column: span 1;
	}

	.bx-bento .bx-wide {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}
}

/* ---------- testimonials ---------- */
.bx-quotes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding: 3.7rem 3rem 3rem 3rem;
}

.bx-quotes .bx-card .ph-quotes {
	font-size: 30px;
	color: var(--highlight);
	display: block;
	margin-bottom: 12px;
}

.bx-quotes .bx-by {
	display: block;
	margin-top: 14px;
	font-size: 13px;
	opacity: .6;
}

@media (max-width: 1199px) {
	.bx-quotes {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.bx-quotes {
		grid-template-columns: 1fr;
	}
}

/* ---------- why choose ---------- */
.bx-why {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	padding: 3.7rem 3rem 3rem 3rem;
}

.bx-why .bx-card {
	padding-top: 30px;
}

.bx-why .bx-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 24px;
	width: 34px;
	height: 3px;
	background: var(--highlight);
	transition: width .4s cubic-bezier(.2, .7, .3, 1);
}

.bx-why .bx-card:hover::after {
	width: calc(100% - 48px);
}

.bx-why .bx-row-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.bx-why .bx-row-head i {
	font-size: 24px;
	line-height: 1;
	color: var(--highlight);
	flex-shrink: 0;
}

.bx-why .bx-row-head h3 {
	margin: 0;
	font-size: 16px;
}

@media (max-width: 1199px) {
	.bx-why {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.bx-why {
		grid-template-columns: 1fr;
	}
}

/* ---------- how timeline ---------- */
.bx-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	counter-reset: bxstep;
	padding: 3.7rem 3rem 3rem 3rem;
}

.bx-steps::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 5%;
	right: 5%;
	border-top: 2px dashed rgba(128, 128, 128, .35);
	z-index: 0;
}

.bx-step {
	position: relative;
	z-index: 1;
}

.bx-step .bx-dot {
	counter-increment: bxstep;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-weight: 800;
	font-size: 15px;
	background: var(--highlight);
	color: #fff;
	margin: 0 0 16px;
	box-shadow: 0 0 0 6px rgba(128, 128, 128, .12);
	transition: transform .35s ease, box-shadow .35s ease;
}

.bx-step .bx-dot::before {
	content: counter(bxstep, decimal-leading-zero);
}

.bx-step:hover .bx-dot {
	transform: scale(1.12) rotate(6deg);
}

.bx-step .bx-card {
	background: linear-gradient(160deg, rgba(128, 128, 128, .12), transparent 70%);
	min-height: 170px;
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
	.bx-step .bx-card {
		background: linear-gradient(160deg, color-mix(in srgb, var(--highlight) 14%, transparent), transparent 75%);
	}
}

@media (max-width: 1199px) {
	.bx-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.bx-steps::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.bx-steps {
		grid-template-columns: 1fr;
	}
}

/* ---------- industries tiles ---------- */
.bx-ind {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	padding: 3.7rem 3rem 3rem 3rem;
}

.bx-ind .bx-tile {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(128, 128, 128, .25);
	border-radius: 16px;
	padding: 18px 20px;
	transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.bx-ind .bx-tile:hover {
	border-color: var(--highlight);
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.bx-ind .bx-tile-top {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bx-ind .bx-tile-top i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(128, 128, 128, .12);
	font-size: 20px;
	flex-shrink: 0;
	transition: background .3s ease, color .3s ease;
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
	.bx-ind .bx-tile-top i {
		background: color-mix(in srgb, var(--highlight) 14%, transparent);
		color: var(--highlight);
	}
}

.bx-ind .bx-tile:hover .bx-tile-top i {
	background: var(--highlight);
	color: #fff;
}

.bx-ind .bx-tile-top h3 {
	font-size: 15px;
	margin: 0;
	line-height: 1.3;
}

.bx-ind .bx-tile p {
	font-size: 13.5px;
	line-height: 1.55;
	margin: 0;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity .35s ease, max-height .4s ease, margin-top .35s ease;
}

.bx-ind .bx-tile:hover p {
	opacity: .8;
	max-height: 120px;
	margin-top: 12px;
}

@media (max-width: 1199px) {
	.bx-ind {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {
	.bx-ind .bx-tile p {
		opacity: .8;
		max-height: none;
		margin-top: 12px;
	}
}

@media (max-width: 767px) {
	.bx-ind {
		grid-template-columns: 1fr;
	}
}

.pinned-section.padding-top-title {
	padding-top: 10px !important;
}

.mxd-section.berry-tight {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
}

.berry-head {
	margin-bottom: 36px;
	max-width: 900px;
}

.berry-head h2 {
	font-size: clamp(26px, 3.4vw, 42px);
	line-height: 1.15;
	margin: 0 0 10px;
}

.berry-head p {
	font-size: 17px;
	line-height: 1.5;
	margin: 0;
	opacity: .8;
}

.berry-cards {
	display: grid;
	gap: 18px;
}

.berry-cards.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.berry-cards.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.berry-card {
	border: 1px solid rgba(128, 128, 128, .25);
	border-radius: 16px;
	padding: 24px 22px;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.berry-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
	border-color: var(--highlight, rgba(128, 128, 128, .5));
}

.berry-card.gradient {
	background: linear-gradient(145deg, rgba(128, 128, 128, .16) 0%, rgba(128, 128, 128, .02) 70%);
}

@supports (background: color-mix(in srgb, red 20%, transparent)) {
	.berry-card.gradient {
		background: linear-gradient(145deg, color-mix(in srgb, var(--highlight) 18%, transparent) 0%, transparent 75%);
	}
}

.berry-card i,
.berry-card .berry-step {
	display: inline-block;
	margin-bottom: 16px;
}

.berry-card i {
	font-size: 34px;
	line-height: 1;
}

.berry-card h3 {
	font-size: 17px;
	line-height: 1.4;
	margin: 0 0 12px;
}

.berry-card p {
	font-size: 14.5px;
	line-height: 1.55;
	margin: 0;
	opacity: .85;
}

.berry-card .berry-quote-by {
	display: block;
	margin-top: 12px;
	font-size: 13px;
	opacity: .6;
}

@media (max-width: 1199px) {
	.berry-cards.cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.berry-cards.cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {

	.berry-cards.cols-3,
	.berry-cards.cols-4 {
		grid-template-columns: 1fr;
	}

	.mxd-section.berry-tight {
		padding-top: 36px !important;
		padding-bottom: 36px !important;
	}
}

.berry-stack-under {
	position: relative;
	z-index: 1;
}

.berry-stack-over {
	position: relative;
	z-index: 5;
}

.inner-headline__title h1.medium {
	font-size: clamp(34px, 5.5vw, 72px);
	line-height: 1.25;
}
