*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
a{
	color: #000;
	text-decoration: none;
}
img{
    max-width: 100%;
    display:block;
}
body{
font-family: Inter, sans-serif;
font-size: 16px;
line-height: 26px;
font-weight: 400;
color: #000;
background: #fff;
margin: 0;
overflow-x: hidden;
}
.container{
max-width: 1400px;
padding: 0 20px;
margin: 0 auto;
}

.hidden-desktop{
	display: none;
}

.compare{
	padding: 120px 0;
}
.compare-row{
	display: flex;
	overflow: hidden;
	border-radius: 12px;
}
.compare-content-col{
	width: 60%;
	padding: 60px;
	background: rgba(250, 231, 178, 0.40);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.compare-content-col h2{
	font-size: 52px;
	line-height: 120%;
	margin: 0 0 30px;
}
.compare-list{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.compare-list-item{
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 18px;
font-style: normal;
font-weight: 500;
}
.compare-divider{
	width: 100%;
	height: 1px;
	background: rgba(48, 80, 92, 0.20);
	margin: 40px 0;
}
.compare-img-col{
	background: url('../img/compare-img.jpg') top center no-repeat;
	background-size: cover;
	width: 40%;
}
@media (max-width: 1280px){

}

@media (max-width: 992px){
.hidden-desktop{
	display: block;
}
.hidden-mobile{
	display: none;
}
}

@media (max-width: 768px){
.compare-row{
	flex-direction: column;
}
.compare-content-col{
	width: 100%;
	padding: 50px 20px;
}
.compare-img-col{
	order: -1;
	width: 100%;
	height: 600px;
}
}

@media (max-width: 479px){
.compare{
	padding: 50px 0;
}
.compare-content-col h2{
	font-size: 32px;
}
.compare-img-col{
	height: 400px;
}
.compare-list-item{
	font-size: 16px;
}
.compare-list-item img{
	height: 20px;
}
}