/* #slide-websites *******************************/

#slide-websites {
  background: url('../../../assets/images/slides/bgs/websites.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);
			}
		}
	}
}

@media (min-width: 1000px) {

	#slide-websites {
		z-index: 2;

	 	.sidebar {
			width: 30%;
		}

	 	.panel {
			width: 70%;

			.main {
				max-width: 1000px;
			}
		}
	}
}

/* .websites *******************************/

.websites {
	align-items: top;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;

	.website {
		background-color: rgba(255,255,255,0.1);
		border: 0;
		border-radius: 5px;
		border-top: 5px solid var(--color-brand-blue);
		padding: 20px 40px;
		text-align: center;
		transition: all ease 0.2s;
		width: 100%;

		&:hover {
			background-color: rgba(255,255,255,0.15);
		}

		img {
			height: 80px;
			margin-bottom: 10px;
			opacity: 0.9;
			width: auto;
		}

		h3 {
			color: #fff !important;
			font-weight: 900 !important;
			text-transform: none !important;
		}

		p {
			color: #ccc;
			font-size: 1rem;
			line-height: 1.4rem;
		}
	}
}

@media (min-width: 1000px) {

	.websites {
		gap: 40px;

		.website {
			width: calc((100% - 80px) / 3);
		}
	}
}
