
:root {
  --comp-temp-n1: #2f2f2f;
  --comp-temp-n2: #545454;
  --comp-temp-n3: #777;
  --comp-temp-n5: #d7d7d7;
  --comp-temp-n6: #e5e7eb;
  --comp-temp-n7: #f4f4f4;
  --comp-temp-white: #fff;
  --comp-temp-red: #ef3f42;
  --comp-temp-blue: #4d89dc;
  --comp-temp-container: 1320px;
  --comp-temp-pad-x: 60px;
  --comp-temp-radius-lg: 32px;
  --comp-temp-radius-md: 24px;
  --comp-temp-radius-sm: 8px;
  --comp-temp-shadow-form: 0 13px 44px rgba(47, 47, 47, 0.15);
  --comp-temp-shadow-feature: 0 12px 32px rgba(157, 157, 157, 0.1);
}
@media screen and (max-width: 1099px) {
  :root {
    --comp-temp-pad-x: 32px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --comp-temp-pad-x: 15px;
    --comp-temp-radius-lg: 24px;
  }
}
.comp-temp-features {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px var(--comp-temp-pad-x) 20px;
	background: var(--comp-temp-white);
}

@media screen and (max-width: 1099px) {
	.comp-temp-features {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}
@media screen and (max-width: 1099px) {
	.comp-temp-features {
		padding-top: 80px;
		padding-bottom: 30px;
	}
}

@media screen and (max-width: 767px) {
	.comp-temp-features {
		padding-top: 64px;
		padding-bottom: 38px;
	}
}

.comp-temp-features__intro {
	max-width: var(--comp-temp-container);
	margin: 0 auto;
	text-align: center;
}

.comp-temp-features__intro-title {
	margin: 0 0 16px;
	font-size: 38px;
	font-weight: 600;
	line-height: 44px;
    letter-spacing: -0.001em;
}

@media screen and (max-width: 767px) {
	.comp-temp-features__intro-title {
		font-size: 32px;
		line-height: 36px;
		letter-spacing: -0.068em;
	}
}

.comp-temp-features__intro-text {
	margin: 0 auto;
	max-width: 1000px;
	font-size: 18px;
	line-height: 28px;
	color: var(--comp-temp-n2);
}

@media screen and (max-width: 767px) {
	.comp-temp-features__intro-text {
		font-size: 16px;
		line-height: 24px;
	}
}

.comp-temp-feature {
	display: grid;
	grid-template-columns: 638px 1fr;
	gap: 56px;
	align-items: center;
	padding: 48px 0 80px;
}

.comp-temp-feature--reverse {
	grid-template-columns: 1fr 638px;
}

@media screen and (max-width: 1099px) {
	.comp-temp-feature, .comp-temp-feature--reverse {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}
@media screen and (max-width: 1023.98px) {
	.comp-temp-feature, .comp-temp-feature--reverse {
		gap: 48px;
		padding: 48px 0;
	}
}

@media screen and (max-width: 767px) {
	.comp-temp-feature {
		padding: 40px 1px 26px 0;
		gap: 32px;
	}
}

.comp-temp-feature__title {
	margin: 0 0 32px;
	font-size: 32px !important;
	font-weight: 600;
	line-height: 38px;
    text-transform: none;
    letter-spacing: -0.002em;
}

@media screen and (max-width: 767px) {
	.comp-temp-feature__title {
		font-size: 24px !important;
		line-height: 30px;
		margin-bottom: 24px;
	}
}

.comp-temp-feature__desc {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 24px;
	color: var(--comp-temp-n2);
    /*letter-spacing: -0.002em;*/
    font-weight: 400;
}
.comp-temp-feature__list + .comp-temp-feature__desc {
    margin: 16px 0 0;
}
.comp-temp-feature__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.comp-temp-feature__list li {
	position: relative;
	padding-left: 32px;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	color: var(--comp-temp-n2);
}

.comp-temp-feature__media {
	/*border: 1px solid #d1d3d7;*/
	border-radius: var(--comp-temp-radius-md);
	overflow: hidden;
	background: linear-gradient(133deg, rgba(229, 231, 235, 0.44) 1.6%, rgba(244, 244, 244, 0.44) 58.57%), #fff;
	min-height: 400px;
}

.comp-temp-feature__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1099px) {
	.comp-temp-feature__media {
		min-height: 320px;
	}
}
@media screen and (max-width: 1023.98px) {
	.comp-temp-feature__media{
		order: 2;
	}
}
@media screen and (max-width: 767.98px) {
	.comp-temp-feature__list li{
		display: flex;
		align-items: center;
	}
	.comp-temp-feature__list li::before{ top: unset;}
}
.comp-temp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 40px;
  border: none;
  border-radius: 99px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.comp-temp-btn--primary {
  background: var(--comp-temp-red);
  color: var(--comp-temp-white) !important;
}
.comp-temp-btn--primary:hover {
  background: #d93639;
  color: var(--comp-temp-white) !important;
}
.comp-temp-btn--white {
  background: var(--comp-temp-white);
  color: var(--comp-temp-n1);
}
.comp-temp-btn--white:hover {
  background: var(--comp-temp-n7);
}
.comp-temp-feature__cta {
	margin-top: 32px;
}

@media screen and (max-width: 767px) {
	.comp-temp-feature__cta {
		width: 100%;
		margin-top: 22px;
	}
	.comp-temp-feature__media{
		border-radius: 12px;
	}
}