/*
 * Duracom product sample page
 */

.duracom-product-page {
	--duracom-red: #ff2637;
	--duracom-red-dark: #e51b2b;
	--duracom-black: #202326;
	--duracom-charcoal: #333;
	--duracom-text: #4b4b4b;
	--duracom-muted: #f7f7f7;
	--duracom-line: #c4c4c4;
	--duracom-blue: #d9eef7;
	--duracom-soft-red: #fff0f1;
	background: #ffffff;
	color: var(--duracom-text);
	font-family:"Arial", Sans-serif !important;
	font-size: 14px;
	line-height: 1.45;
	letter-spacing: 0;
	margin: 0;
}

.duracom-product-page *,
.duracom-product-page *::before,
.duracom-product-page *::after {
	box-sizing: border-box;
}

.duracom-product-page a {
	text-decoration: none;
}

.duracom-product-page img {
	display: block;
	height: auto;
	max-width: 100%;
}

.application-product-page img {
	display: inline;
	height: 150px;
}

.duracom-container {
	margin: 0 auto;
	max-width: 1020px;
	padding: 0 18px;
	width: 100%;
}

.duracom-narrow {
	max-width: 930px;
}

.duracom-section {
	padding: 48px 0;
}

.duracom-muted {
	background: var(--duracom-muted);
}

.duracom-section-title {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #E31B23;
}

.hero-btn3 {
position:relative;
  z-index:2;
  margin: 0 10px;
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.hero-btn3 {
  background-color: #ffffff;
  color: #E31B23;
  font-weight:bold;
  border-color: #E31B23;
  background-image: none;
}

.hero-btn3:hover {
  background-color: #E31B23;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}


.duracom-section-title.align-left {
	text-align: left;
}

.duracom-section-copy {
	color: #333;
    font-size: 18px;
    margin: -8px auto 28px;
    max-width: 749px;
    text-align: center;
}

.duracom-section-new {
	color: #333;
    font-size: 16px;
    margin: -8px auto 28px;
    max-width: 749px;
    text-align: center;
}

.duracom-kicker {
	color: #363636;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 14px;
}

/* Hero */
.duracom-hero {
	align-items: center;
	background:
		linear-gradient(rgba(42, 45, 48, 0.86), rgba(42, 45, 48, 0.86)),
		url("../images/duracom_logo.png") center/160px auto no-repeat,
		repeating-linear-gradient(30deg, #31363a 0, #31363a 12px, #3d4246 13px, #3d4246 24px);
	border-top: 3px solid var(--duracom-red);
	color: #ffffff;
	display: flex;
	min-height: 188px;
	text-align: center;
}

.duracom-hero h1 {
	color: #ffffff;
	font-size: 37px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 22px;
}

.duracom-hero p {
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	margin: 0 auto;
	max-width: 830px;
}

.duracom-breadcrumb {
	background: #202326;
	color: #ffffff;
	font-size: 18px;
	padding: 15px 0;
	text-align: center;
}

.duracom-breadcrumb a,
.duracom-breadcrumb span {
	color: #ffffff;
	margin: 0 3px;
}

/* Product intro */
.duracom-product-intro {
	padding: 48px 0 44px;
}

.duracom-product-grid {
	align-items: flex-start;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(360px, 1fr) minmax(360px, 1fr);
}

.duracom-slider {
	background: #ffffff;
	border: 1px solid var(--duracom-red);
	min-height: 550px;
	overflow: hidden;
	position: relative;
}

.duracom-slider-track {
	display: flex;
	height: 550px;
	transition: transform 520ms ease;
	width: 100%;
}

.duracom-slide {
	align-items: center;
	background: #ffffff;
	display: flex;
	flex: 0 0 100%;
	justify-content: center;
	min-width: 100%;
	padding: 30px;
}

.duracom-slide img {
	height: 390px;
	object-fit: contain;
	width: 100%;
}

.duracom-slider-btn {
	align-items: center;
	background: rgba(255, 38, 55, 0.92);
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 34px;
	justify-content: center;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 180ms ease, background 180ms ease;
	width: 34px;
	z-index: 2;
}

.duracom-slider:hover .duracom-slider-btn,
.duracom-slider:focus-within .duracom-slider-btn {
	opacity: 1;
}

.duracom-slider-btn::before {
	border-color: #ffffff;
	border-style: solid;
	border-width: 0 2px 2px 0;
	content: "";
	height: 9px;
	width: 9px;
}

.duracom-slider-prev {
	left: 13px;
}

.duracom-slider-prev::before {
	transform: rotate(135deg);
}

.duracom-slider-next {
	right: 13px;
}

.duracom-slider-next::before {
	transform: rotate(-45deg);
}

.duracom-slider-dots {
	align-items: center;
	bottom: 14px;
	display: flex;
	gap: 7px;
	justify-content: center;
	left: 0;
	position: absolute;
	right: 0;
}

.duracom-slider-dots button {
	background: #dedede;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	height: 8px;
	padding: 0;
	width: 8px;
}

.duracom-slider-dots button.is-active {
	background: var(--duracom-red);
}

.duracom-product-copy {
	padding-top: 2px;
}

.duracom-product-copy h2 {
	color: var(--duracom-red);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 12px;
}

.duracom-lead {
	color: #3f3f3f;
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 18px;
	max-width: 480px;
}

.duracom-product-copy h3 {
	color: #222222;
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 11px;
}

.duracom-check-list {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.duracom-check-list li {
	/* color: #333333;
	font-size: 12px;
	font-weight: 700; */
	margin: 0 0 9px;
	padding-left: 23px;
	position: relative;
}

.duracom-check-list li::before {
	align-items: center;
	background: var(--duracom-red);
	border-radius: 50%;
	color: #ffffff;
	content: "\2713";
	display: flex;
	font-size: 9px;
	font-weight: 800;
	height: 14px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 2px;
	width: 14px;
}

.duracom-price-box {
	background: var(--duracom-soft-red);
	border-radius: 6px;
	margin: 2px 0 20px;
	padding: 18px 22px 16px;
}

.duracom-price-box span {
	color: #333;
	font-size: 20px;
	font-weight: 600;
}

.duracom-price-box strong {
	color: var(--duracom-red);
	font-size: 30px;
	font-weight: 600;
}

.duracom-price-box small {
	color: #505050;
	display: block;
	font-size: 12px;
	font-weight: 700;
	margin-top: 6px;
}

.duracom-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.duracom-button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	justify-content: center;
	line-height: 1;
	min-height: 35px;
	padding: 0 22px;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.duracom-button-primary {
	background: var(--duracom-red);
	border: 1px solid var(--duracom-red);
	color: #ffffff;
}

.duracom-button-primary:hover {
	background: var(--duracom-red-dark);
	border-color: var(--duracom-red-dark);
	color: #ffffff;
}

.duracom-button-outline {
	background: #ffffff;
	border: 1px solid #ffd0d3;
	color: var(--duracom-red);
}

.duracom-button-outline:hover {
	background: var(--duracom-soft-red);
	color: var(--duracom-red);
}

/* Tables */
.duracom-table-wrap {
	overflow-x: auto;
}

 .duracom-table {
	border-collapse: collapse;
	color: #222222;
	border: 1px solid #333;
	font-size: 16px;
	width: 100%;
}

.duracom-table th,
.duracom-table td {
	border: 1px solid #333;
	line-height: 1.25;
	padding: 8px 10px;
	text-align: left;
	vertical-align: middle;
}

.duracom-table th {
	background: var(--duracom-blue);
	color: #333;
}

.duracom-table td:first-child,
.duracom-table th:first-child {
	width: 46%;
}

.duracom-compare-table td:first-child,
.duracom-compare-table th:first-child {
	width: 50%;
}

/* CTA */
.duracom-cta {
	background: var(--duracom-charcoal);
	color: #ffffff;
	padding: 58px 0 62px;
	text-align: center;
}

.duracom-cta h2 {
    color: #ffffff;
    font-size: 29px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 18px;
}

.duracom-cta p {
	color: #ffffff;
	font-size: 14px;
	margin: 0 auto 19px;
	max-width: 720px;
}

/* Cards and icons */
.duracom-icon-grid,
.duracom-card-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.duracom-icon-card,
.duracom-info-card {
	background: #ffffff;
	border: 1px solid #ffd8da;
	border-radius: 7px;
	box-shadow: 0 4px 0 var(--duracom-red);
	min-height: 136px;
	padding: 28px 20px 24px;
	text-align: center;
}

.duracom-icon-card h3,
.duracom-info-card h3 {
	color: #383838;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	margin: 13px 0 0;
}

.duracom-info-card {
	min-height: 184px;
	padding: 22px 20px 20px;
	text-align: left;
}

.application-info-card {
	background: #ffffff;
	border: 1px solid #ffd8da;
	border-radius: 7px;
	box-shadow: 0 4px 0 var(--duracom-red);
	min-height: 136px;
	padding: 28px 20px 24px;
	text-align: center;
}

.application-info-card {
	min-height: 184px;
	padding: 0px 65px 20px;
	text-align: left;
}

.application-info-card h3 {
	color: #383838;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	margin: -18px 0 0;
	text-align: center;
}

.duracom-info-card h3 {
	margin-top: 14px;
}

.duracom-info-card p {
	color: #696969;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	margin: 8px 0 0;
}

.duracom-css-icon {
	color: var(--duracom-red);
	display: inline-block;
	height: 34px;
	position: relative;
	width: 34px;
}

.duracom-css-icon::before,
.duracom-css-icon::after {
	background: currentColor;
	content: "";
	position: absolute;
}

.icon-factory::before {
	bottom: 2px;
	height: 24px;
	left: 2px;
	width: 30px;
}

.icon-factory::after {
	background: #ffffff;
	box-shadow: 7px 0 #ffffff, 14px 0 #ffffff;
	height: 9px;
	left: 9px;
	top: 5px;
	transform: skewY(-24deg);
	width: 6px;
}

.icon-bolt::before {
	clip-path: polygon(48% 0, 88% 0, 61% 43%, 91% 43%, 38% 100%, 49% 57%, 17% 57%);
	height: 34px;
	left: 7px;
	top: 0;
	width: 22px;
}

.icon-gear::before {
	border-radius: 50%;
	box-shadow: -12px 0 0 -2px currentColor, 12px 0 0 -2px currentColor;
	height: 16px;
	left: 9px;
	top: 9px;
	width: 16px;
}

.icon-gear::after {
	background: #ffffff;
	border-radius: 50%;
	height: 6px;
	left: 14px;
	top: 14px;
	width: 6px;
}

.icon-plug::before {
	border-radius: 2px 2px 8px 8px;
	height: 18px;
	left: 8px;
	top: 10px;
	width: 18px;
}

.icon-plug::after {
	box-shadow: 11px 0 currentColor, 5px 20px currentColor;
	height: 10px;
	left: 10px;
	top: 0;
	width: 3px;
}

.icon-building::before,
.icon-hospital::before {
	height: 30px;
	left: 8px;
	top: 2px;
	width: 20px;
}

.icon-building::after,
.icon-hospital::after {
	background: #ffffff;
	box-shadow: 7px 0 #ffffff, 0 7px #ffffff, 7px 7px #ffffff, 0 14px #ffffff, 7px 14px #ffffff;
	height: 4px;
	left: 12px;
	top: 7px;
	width: 4px;
}

.icon-hospital::after {
	box-shadow: none;
	height: 18px;
	left: 16px;
	top: 8px;
	width: 4px;
}

.icon-hospital {
	background: linear-gradient(currentColor, currentColor) center/18px 4px no-repeat;
}

.icon-hammer::before {
	height: 10px;
	left: 6px;
	top: 5px;
	transform: rotate(-35deg);
	width: 24px;
}

.icon-hammer::after {
	height: 24px;
	left: 18px;
	top: 10px;
	transform: rotate(42deg);
	width: 6px;
}

.icon-check::before {
	background: transparent;
	border-color: currentColor;
	border-style: solid;
	border-width: 0 6px 6px 0;
	height: 26px;
	left: 10px;
	top: 0;
	transform: rotate(45deg);
	width: 15px;
}

.icon-cubes::before {
	box-shadow: 12px 7px currentColor, 0 14px currentColor;
	height: 12px;
	left: 4px;
	top: 6px;
	transform: rotate(35deg);
	width: 12px;
}

.icon-cubes::after {
	background: transparent;
}

.icon-truck::before {
	border-radius: 2px;
	height: 18px;
	left: 1px;
	top: 10px;
	width: 23px;
}

.icon-truck::after {
	border-radius: 50%;
	box-shadow: 20px 0 currentColor;
	height: 6px;
	left: 5px;
	top: 26px;
	width: 6px;
}

.icon-handshake::before {
	border-radius: 50%;
	box-shadow: 10px 4px currentColor, 19px 0 currentColor;
	height: 13px;
	left: 1px;
	top: 11px;
	width: 13px;
}

.icon-handshake::after {
	height: 6px;
	left: 8px;
	top: 21px;
	width: 22px;
}

/* Reviews */
.duracom-review-row {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.duracom-review {
	background: #ffffff;
	border-radius: 4px;
	box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
	min-height: 130px;
	padding: 18px 18px 16px;
}

.duracom-review-head {
	align-items: center;
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.duracom-avatar {
	align-items: center;
	background: #2fa8ff;
	border-radius: 50%;
	color: #ffffff;
	display: flex;
	flex: 0 0 28px;
	font-size: 14px;
	font-weight: 900;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.duracom-review h3 {
	color: #222222;
	font-size: 12px;
	font-weight: 900;
	margin: 0;
}

.duracom-review-head p {
	color: #8a8a8a;
	font-size: 10px;
	font-weight: 700;
	margin: 0;
}

.duracom-google {
	color: #4285f4;
	font-size: 15px;
	font-weight: 900;
	margin-left: auto;
}

.duracom-stars {
	color: #f8b400;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 1;
	margin-bottom: 10px;
}

.duracom-review > p {
	color: #333333;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	margin: 0;
}

/* FAQ */
.duracom-faq {
	margin: 0 auto;
	max-width: 1010px;
}

.duracom-faq-item {
	border: 1px solid #dddddd;
	border-bottom: 0;
	background: #ffffff;
}

.duracom-faq-item:last-child {
	border-bottom: 1px solid #dddddd;
}

.duracom-faq-question {
	align-items: center;
	background: #ffffff;
	border: 0;
	color: #3b3b3b;
	cursor: pointer;
	display: flex;
	font-size: 13px;
	font-weight: 900;
	justify-content: space-between;
	line-height: 1.25;
	padding: 15px 16px;
	text-align: left;
	width: 100%;
}

.duracom-faq-item.is-open .duracom-faq-question {
	color: var(--duracom-red);
}

.duracom-faq-question i {
	align-items: center;
	background: #4d4d4d;
	border-radius: 50%;
	display: flex;
	flex: 0 0 15px;
	height: 15px;
	justify-content: center;
	margin-left: 12px;
	position: relative;
	width: 15px;
}

.duracom-faq-question i::before,
.duracom-faq-question i::after {
	background: #ffffff;
	content: "";
	height: 2px;
	position: absolute;
	width: 7px;
}

.duracom-faq-question i::after {
	transform: rotate(90deg);
}

.duracom-faq-item.is-open .duracom-faq-question i {
	background: var(--duracom-red);
}

.duracom-faq-item.is-open .duracom-faq-question i::after {
	display: none;
}

.duracom-faq-answer {
	border-top: 1px solid #ededed;
	padding: 16px;
}

.duracom-faq-answer p {
	color: #444444;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0;
}

/* Products */
.duracom-product-cards {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.duracom-product-card {
	background: #ffffff;
	border: 1px solid #e2bfc1;
	box-shadow: 0 1px 7px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.duracom-product-image {
	background: #e9e9e9;
	height: 270px;
	position: relative;
}

.duracom-product-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.duracom-product-image span {
	align-items: center;
	background: rgba(0, 0, 0, 0.22);
	bottom: 0;
	color: #ffffff;
	display: flex;
	font-size: 16px;
	font-weight: 800;
	height: 22px;
	justify-content: center;
	position: absolute;
	right: 0;
	width: 22px;
}

.duracom-product-card-copy {
	padding: 16px 16px 18px;
}

.duracom-product-card h3 {
	color: #4a4a4a;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 9px;
}

.duracom-product-card p {
	color: #555555;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 10px;
}

.duracom-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 0 0 13px;
}

.duracom-tags span {
	background: #4a4a4a;
	border-radius: 3px;
	color: #ffffff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	padding: 5px 7px;
}

.duracom-product-card .duracom-button {
	font-size: 11px;
	min-height: 30px;
	padding: 0 18px;
}

@media (max-width: 1024px) {
	.duracom-container {
		max-width: 900px;
	}

	.duracom-hero h1 {
		font-size: 32px;
	}

	.duracom-product-grid {
		gap: 24px;
		grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
	}

	.duracom-slider,
	.duracom-slider-track {
		min-height: 390px;
		height: 390px;
	}

	.duracom-slide img {
		height: 330px;
	}

	.duracom-product-copy h2 {
		font-size: 22px;
	}

	.duracom-product-image {
		height: 220px;
	}
}

@media (max-width: 768px) {
	.duracom-product-page {
		font-size: 13px;
	}

	.duracom-container {
		padding: 0 15px;
	}

	.duracom-section {
		padding: 38px 0;
	}

	.duracom-hero {
		min-height: 170px;
	}

	.duracom-hero h1 {
		font-size: 27px;
		margin-bottom: 14px;
	}

	.duracom-hero p {
		font-size: 12px;
	}

	.duracom-product-grid,
	.duracom-icon-grid,
	.duracom-card-grid,
	.duracom-review-row,
	.duracom-product-cards {
		grid-template-columns: 1fr;
	}

	.duracom-product-intro {
		padding-top: 34px;
	}

	.duracom-slider,
	.duracom-slider-track {
		min-height: 340px;
		height: 340px;
	}

	.duracom-slide {
		padding: 24px;
	}

	.duracom-slide img {
		height: 285px;
	}

	.duracom-slider-btn {
		opacity: 1;
	}

	.duracom-product-copy h2,
	.duracom-section-title  {
		font-size: 36px;
		font-weight: bold;
		margin-bottom: 20px;
		color: #E31B23;
	}

	.duracom-price-box strong {
		display: block;
		font-size: 22px;
		margin-top: 6px;
	}

	.duracom-actions {
		gap: 10px;
	}

	.duracom-button {
		min-height: 34px;
		padding: 0 18px;
	}

	.duracom-cta {
		padding: 44px 0 48px;
	}

	.duracom-cta h2 {
		font-size: 22px;
	}

	.duracom-icon-card,
	.duracom-info-card {
		min-height: auto;
	}

	.duracom-product-image {
		height: 260px;
	}
}

@media (max-width: 480px) {
	.duracom-hero h1 {
		font-size: 23px;
	}

	.duracom-slider,
	.duracom-slider-track {
		min-height: 300px;
		height: 300px;
	}

	.duracom-slide img {
		height: 245px;
	}

	.duracom-table {
		font-size: 11px;
		min-width: 560px;
	}

	.duracom-actions .duracom-button {
		width: 100%;
	}

	.duracom-product-image {
		height: 230px;
	}
}
