html, body {
	margin: 0;
	padding: 0;
	background: #fff;
	font-family: 'Outfit', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 18px;
	font-style: normal;
	color: rgb(17, 17, 17);
}

/* 100,300,500,700,900 */

* {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: none;
	vertical-align: top;
	border-spacing: 0;
	border-collapse: collapse;
	list-style: none;
	font-family: 'Outfit', sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	background: transparent;
}

input {
	font-size: 18px;
	font-weight: 400;
	font-family: 'Outfit', sans-serif;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

a {
	color: rgb(0, 144, 255);
	text-decoration: none;
}

.button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgb(0, 144, 255);
	padding: 18px 36px;
	border-radius: 999px;
	color: #fff;
	font-weight: 500;
}
.button:hover {
	background: #0073cc;
}
.button svg {
	transition: transform 0.4s ease;
}
.button:hover svg {
	transform: rotate(45deg);
}

header {
	padding: 36px 72px;
}
	header a {
		color: rgb(17, 17, 17);
	}

.header-grid {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
}

.logo {
	font-size: 20px;
	font-weight: 500;
}

.menu {
	justify-self: end;
}
	.menu ul {
		display: flex;
		gap: 24px;
	}
	.menu a {
		display: block;
		transition: color 0.2s ease;
	}
	.menu a:hover {
		color: rgb(0, 144, 255);
	}
	.menu a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -5px;
		width: 100%;
		height: 2px;
		background: rgb(0, 144, 255);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.25s ease;
	}
	.menu a.current,
	.menu a:hover {
		color: rgb(0, 144, 255);
	}
	.menu a.current::after,
	.menu a:hover::after {
		transform: scaleX(1);
	}

.header-icons {
	display: none;
	justify-self: end;
}
.menu-icon, .close-icon {
	display: none;
}

main {
	padding: 72px;
}

.page-header {
	padding: 72px 0 60px 72px;
	max-width: 1000px;
}
	.page-header p {
		max-width: 750px;
		margin-top: 24px;
		line-height: 1.5;
		color: #888;
	}
	.page-header .button {
		margin-top: 36px;
	}
	.page-header p a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -3px;
		width: 100%;
		height: 2px;
		background: rgb(0, 144, 255);
		transform: scaleX(1);
		transform-origin: left;
		transition: transform 0.25s ease;
	}
	.page-header p a:hover::after {
		transform: scaleX(0);
	}

h1 {
	font-size: 84px;
	font-weight: 600;
	line-height: 1;
	text-wrap: balance;
}
	h1 span {
		color: rgb(0, 144, 255);
	}

.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
   	margin-top: 48px;
}

.slider {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    width: max-content;
    will-change: transform;
}

.slider li {
    width: calc((100vw - 5 * 24px) / 4.3);
    flex-shrink: 0;
}

.slider li a {
    display: block;
    text-decoration: none;
    border-radius: 3px;
    overflow: hidden;
    background: rgb(248, 248, 248);
}

.slider li figure {
    margin: 0;
    overflow: hidden;
}

.slider li figure img {
    width: 100%;
    height: auto;
    display: block;
}

.slider .title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	background: rgba(0,0,0,0.6);
	font-weight: 500;
	opacity: 0;
	transition: opacity 0.25s ease;
}
.slider a:hover .title {
	opacity: 1;
}

.page-content {
	max-width: 1000px;
}
.home-page-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 48px 0;
}

	.page-content h2 {
		font-size: 42px;
		font-weight: 600;
		line-height: 1.1;
		margin-top: 60px;
	}
	.page-content h2:first-child {
		margin: 0;
	}
		.page-content h2 span {
			color: rgb(0, 144, 255);
		}
	.page-content p {
		margin-top: 24px;
		line-height: 1.5;
		color: #888;
	}
	.page-content ul {
		margin-top: 24px;
	}
	.page-content li {
		line-height: 1.25;
		color: #888;
		margin: 12px 0 0 20px;
		list-style-type: disc;
	}
	.page-content .pricing {
		font-size: 24px;
		font-weight: 500;
		color: rgb(0, 144, 255);
	}
	.page-content p a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -3px;
		width: 100%;
		height: 2px;
		background: rgb(0, 144, 255);
		transform: scaleX(1);
		transform-origin: left;
		transition: transform 0.25s ease;
	}
	.page-content p a:hover::after {
		transform: scaleX(0);
	}

.profile-grid {
	display: grid;
	grid-template-columns: 185px auto;
	align-items: start;
	gap: 24px;
}
	.profile-img {
		margin-top: 24px;
		border-radius: 3px;
	}
	.social-icons {
		margin-top: 12px;
		display: flex;
		gap: 6px;
	}

.websites-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
}
	.websites-grid .item {
		display: block;
		color: rgb(17, 17, 17);
	}
	.websites-grid img {
		width: 100%;
		height: auto;
		object-fit: contain;
		border-radius: 3px;
		background: rgb(248, 248, 248);
	}
	.websites-grid .title {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-top: 24px;
		font-size: 21px;
		font-weight: 500;
		transition: color 0.2s ease;
	}
	.websites-grid .item:hover .title {
		color: rgb(0, 144, 255);
	}

.image-container {
	overflow: hidden;
}
.image-container img {
	width: 100%;
	height: auto;
	object-fit: cover;
	height: 400px;
	background: rgb(248, 248, 248);
}
	.image-container .title {
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 144px 72px 72px 72px;
		background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%);
		text-wrap: balance;
	}
	.image-container h2 {
		max-width: 700px;
		color: #fff;
		font-size: 36px;
		font-weight: 500;
		line-height: 1.1;
	}

footer {
	padding: 72px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
}

.colophon p {
	max-width: 360px;
	margin-top: 12px;
	font-size: 16px;
	color: #888;
	line-height: 1.5;
}

.menu-container {
	justify-self: end;
	display: grid;
	grid-template-columns: auto auto;
	font-size: 16px;
	gap: 96px;
}
	.menu-container .title {
		color: #888;
	}
	.menu-container ul {
		margin-top: 12px;
	}
	.menu-container li {
		margin-top: 6px;
		line-height: 24px;
	}
	.menu-container a {
		display: inline-block;
		color: rgb(17, 17, 17);
		transition: color 0.2s ease;
		position: relative;
	}
	.menu-container a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: -3px;
		width: 100%;
		height: 2px;
		background: rgb(0, 144, 255);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform 0.25s ease;
	}
	.menu-container a:hover {
		color: rgb(0, 144, 255);
	}
	.menu-container a:hover::after {
		transform: scaleX(1);
	}
	.menu-container p {
		margin-top: 9px;
		line-height: 30px;
	}