/* #slide-software *******************************/

#slide-software {
  background: url('../../../assets/images/slides/bgs/software.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

 	.sidebar {
		width: 0%;
	}

 	.panel {
		background-color: rgba(10,1,15,0.8);
		color: #f5f5f5;
		width: 100%;

		.main {
			text-align: center;

			h1 {
				color: var(--color-brand-blue-light);
			}

			p {
				margin-bottom: 40px;
			}
		}
	}
}

@media (min-width: 1000px) {

	#slide-software {
		z-index: 2;

	 	.sidebar {
			width: 0%;
		}

	 	.panel {
			width: 100%;

			.main {
				max-width: 1000px;
			}
		}
	}
}

/* .software *******************************/

#graphic-plan {
	.bg { background-image: url('../../../assets/images/software/plan-bg.webp'); }
	.fg { background: url('../../../assets/images/software/plan-fg.webp'); }
}

#graphic-prototype {
	.bg { background-image: url('../../../assets/images/software/prototype-bg.webp'); }
	.fg { background: url('../../../assets/images/software/prototype-fg.webp'); }
}

#graphic-develop {
	.bg { background-image: url('../../../assets/images/software/develop-bg.webp'); }
	.fg { background: url('../../../assets/images/software/develop-fg.webp'); }
}

.software {
	align-items: top;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;

	.feature {
		position: relative;
		width: 100%;

		.graphic {
	    	box-shadow: 0 5px 5px rgba(0,0,0,0.3);
				width: 100%;

	 			img {
 					height: auto;
	      	width: 100%;
				}
  		}
		}

		h3 {
			color: #fff !important;
			font-weight: 900 !important;
			text-transform: none !important;
			position: absolute;
			bottom:0;
background-color: #000;
padding: 5px 10px;
left: 0;
font-family: "Permanent Marker";
font-size: 1.5rem !important;
font-weight: 300;
			z-index: 10;
		}
	}


@media (min-width: 1000px) {

	.software {
		gap: 80px;

		.feature {
			width: calc((100% - 160px) / 3);
		}
	}
}
