body{
    padding-top: 263px;
}
.ai-design-app{
    min-height: 600px;
}

.schemes{
	max-width: 1220px;
	margin: 0 auto;
	width: 100%;
	padding: 0px 10px;
    padding-bottom: 50px;
}
.schemes ul{
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.schemes ul li{
	width: 25%;
	box-sizing: border-box;
	padding: 0 6px;
	margin-top: 12px;
}
.schemes ul li .img-box{
	border-radius: 6px;
	overflow: hidden;
}
.schemes ul li .img-box img{
	transition: transform 0.3s ease;
	width: 100%;
	display: block;
}
.schemes ul li .img-box:hover img{
	transform: scale(1.2);
}
.schemes-more-link{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: fit-content;
	min-height: 46px;
	margin: 30px auto 0;
	padding: 0 22px;
	color: #fff;
	background: linear-gradient(135deg, #ec1b8a, #c91475);
	border: 1px solid #ec1b8a;
	border-radius: 6px;
	box-shadow: 0 8px 20px rgba(236, 27, 138, .22);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.schemes-more-link::after{
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform .2s ease;
}
.schemes-more-link:hover{
	background: linear-gradient(135deg, #d9157c, #a80f61);
	border-color: #d9157c;
	box-shadow: 0 11px 26px rgba(236, 27, 138, .3);
	transform: translateY(-2px);
}
.schemes-more-link:hover::after{
	transform: translateX(3px);
}
.schemes-more-link:active{
	transform: translateY(0);
}
.schemes-more-link:focus-visible{
	outline: 3px solid rgba(3, 207, 196, .55);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
	.schemes-more-link,
	.schemes-more-link::after{
		transition: none;
	}
}

@media screen and (max-width: 860px) {
    body{
        padding-top: 80px;
    }
}

@media screen and (max-width:768px){
    .schemes{
        padding-bottom: 0;
    }
    .schemes ul li{
		width: 50%;
	}
	.schemes-more-link{
		max-width: calc(100% - 24px);
		padding: 0 16px;
	}
}
