.product-img {
	max-width: 100%;
	height: auto;
	cursor: zoom-in;
}
.price{
	color: red;
}

.product-features {
	list-style: none;
	padding: 0;
}

.product-features li {
	margin-bottom: 10px;
}

.series-name {
	font-weight: bold;
	color: #3067a2;
}

.price {
	font-size: 25px;
	font-weight: bold;
}

.thumbnails-wrapper {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.thumbnails-wrapper img {
	max-width: 100px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.3s;
}

.thumbnails-wrapper img.active {
	border-color: #3067a2;
}

.carousel-container {
	display: none;
}

.thumbnail-carousel {
	display: flex;
	overflow-x: auto;
	gap: 10px;
	padding: 10px 0;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.thumbnail-carousel img {
	max-width: 100px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.3s;
}

.thumbnail-carousel img.active {
	border-color: #3067a2;
}

.carousel-btn {
	display: none;
	background-color: #007bff;
	color: #fff;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
}

.series-name {
	font-weight: bold;
	color: #3067a2;
}

.product-features {
	list-style: none;
	padding-left: 20px;
}

.product-features li {
	position: relative;
	padding-left: 20px;
}

.product-features li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #3067a2;
	font-size: 20px;
	line-height: 1;
}

/* New styles for the image grid */
.image-grid-container {
	margin-top: 20px;
	display: none;
	/* Hidden by default */
}

.image-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	padding: 10px;
}

.image-grid img {
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: transform 0.3s;
}

.image-grid img:hover {
	transform: scale(1.02);
}

/* Layout adjustments */
.product-container {
	display: flex;
	flex-direction: column;
}

.main-content {
	display: flex;
	flex-direction: column;
}

@media (min-width: 992px) {
	.main-content {
		flex-direction: row;
	}

	.image-section {
		flex: 1;
		padding-right: 20px;
	}

	.details-section {
		flex: 1;
		padding-left: 20px;
		position: sticky;
		top: 20px;
		align-self: flex-start;
		height: fit-content;
		max-height: 100vh;
		overflow-y: auto;
	}

	.image-grid-container {
		display: block;
		/* Show only on larger screens */
	}
}

/* Modal for enlarged image */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow: auto;
}

.modal-content {
	display: block;
	margin: auto;
	max-width: 90%;
	max-height: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.close {
	position: absolute;
	top: 15px;
	right: 35px;
	color: #f1f1f1;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
}

/* Mobile styles */
@media (max-width: 991px) {
	.carousel-container {
		display: block;
	}

	.thumbnails-wrapper {
		display: none;
	}

	/* Include more images in carousel on mobile */
	.thumbnail-carousel {
		display: flex;
	}
}

/* Zoom container adjustments */
.zoomContainer {
	z-index: 100;
}









/* Header Styles */
.custom-page-header {
    background-color: #2d2e32;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: auto;
  }

  .custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
  }

  .custom-logo {
    height: 50px;
    transition: transform 0.3s;
    z-index: 1002;
  }

  .custom-logo:hover {
    transform: scale(1.05);
  }

  .custom-navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
  }

  .custom-navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: all 0.3s;
  }

  .custom-navbar-nav-wrap {
    display: flex;
    transition: all 0.3s ease;
  }

  .custom-navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .custom-nav-item {
    margin-left: 30px;
    position: relative;
  }

  .custom-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
    position: relative;
    font-size: 16px;
  }

  .custom-nav-link:hover {
    color: #d9534f;
  }

  .custom-nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d9534f;
    transition: width 0.3s;
  }

  .custom-nav-link:hover::after {
    width: 100%;
  }

  .custom-nav-item.active .custom-nav-link {
    color: #d9534f;
  }

  .custom-nav-item.active .custom-nav-link::after {
    width: 100%;
  }

  /* Mobile Overlay Styles */
  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .custom-navbar {
      padding: 10px 20px;
    }
    
    .custom-logo {
      height: 40px;
    }
    
    .custom-navbar-toggle {
      display: block;
    }

    .custom-navbar-nav-wrap {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background-color: #2d2e32;
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      z-index: 1001;
      transition: right 0.3s ease;
    }

    .custom-navbar-nav-wrap.active {
      right: 0;
    }

    .mobile-menu-overlay.active {
      display: block;
    }

    .custom-navbar-nav {
      flex-direction: column;
      width: 100%;
    }

    .custom-nav-item {
      margin: 0;
      width: 100%;
      text-align: left;
      padding: 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .custom-nav-link {
      padding: 15px 25px;
      display: block;
      font-size: 16px;
    }

    /* Hamburger to X animation */
    .custom-navbar-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .custom-navbar-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .custom-navbar-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
  }

  /* Ensure content is visible below header */
  main {
    padding-top: 20px;
  }








  .footer-classic {
	color: rgba(255, 255, 255, 0.3);
	background: #ffffff;
}

.footer-classic h1, .footer-classic h2, .footer-classic h3, .footer-classic h4, .footer-classic h5, .footer-classic h6, .footer-classic [class*='heading-'] {
	color: rgba(255, 255, 255, 0.15);
}

.footer-classic .contact-classic-title {
	color: #3067a2;
}

.footer-classic .contact-classic-link {
	color: #ffffff;
}

.footer-bottom-panel {
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer-classic-2 .box-footer {
	background: #181f2c;
}

.footer-classic-2 .footer-list-category a:hover {
	color: #3067a2;
}

.footer-classic-2 .footer-list-category a:hover span::before {
	border-right-color: #3067a2;
}

.footer-classic-2 .footer-list-category a:hover span::after {
	background-color: #3067a2;
}

.box-footer {
	text-align: left;
	min-height: 100%;
	padding: 40px 15px;
	letter-spacing: .025em;
	background: #2c2e31;
}

.box-footer a, .box-footer a:focus, .box-footer a:active {
	color: #ffffff;
}

.box-footer a:hover {
	color: #3067a2;
}

.box-footer .form-wrap + * {
	margin-top: 12px;
}

.box-footer * + .rd-form {
	margin-top: 20px;
}

.box-footer .form-validation {
	color: #ffffff;
}

.box-footer .form-label {
	top: 32px;
	font-size: 16px;
	color: #ffffff;
}

.box-footer .form-input {
	font-size: 16px;
	padding-top: 18px;
	padding-bottom: 18px;
	border: none;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.06);
}

.box-footer textarea.form-input {
	height: 160px;
}

.box-footer .button.button-ujarak::before {
	background: #ffffff;
}

.box-footer .button.button-ujarak:hover, .box-footer .button.button-ujarak:active {
	color: #151515;
	border-color: #ffffff;
}

.box-footer-small {
	padding-top: 45px;
}

.contact-classic .unit-left {
	min-width: 45px;
}

.contact-classic a {
	display: inline-block;
}

.contact-classic-item {
	padding: 20px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-classic-title {
	margin-top: 2px;
	letter-spacing: .025em;
	color: #3067a2;
}

.contact-classic-link {
	color: #ffffff;
}

* + .contact-classic {
	margin-top: 3px;
}

.footer-brand + p {
	margin-top: 22px;
}

@media (min-width: 480px) {
	.box-footer {
		padding: 40px 30px;
	}
}

@media (min-width: 992px) {
	.box-footer * + .rd-form {
		margin-top: 8px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.box-footer {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 1800px) {
	.box-footer {
		padding: 60px 60px 50px;
	}
}

.box-footer-2 {
	text-align: left;
	padding: 30px 20px;
	min-height: 100%;
	background: #ffffff;
	border: 1px solid #e1e1e1;
}

.box-footer-2 .footer-contacts .icon {
	color: #3067a2;
}

.box-footer-form {
	padding: 30px 20px;
	background: #3067a2;
}

.box-footer-form .form-input {
	min-height: 50px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.box-footer-form .form-label {
	top: 25px;
}

.box-footer-form textarea.form-input {
	height: 116px;
	max-height: 197px;
}

.box-footer-form .button {
	min-width: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.box-footer-form .form-wrap + * {
	margin-top: 10px;
}

.ios .box-footer-form .form-label,
.iphone .box-footer-form .form-label,
.ipad .box-footer-form .form-label,
.mac-os .box-footer-form .form-label {
	top: 13px;
	transform: none;
}

.box-footer-2-title {
	letter-spacing: .025em;
}

.box-footer-2-text {
	letter-spacing: .025em;
	color: #9b9b9b;
}

* + .box-footer-2-text {
	margin-top: 8px;
}

@media (min-width: 768px) {
	.box-footer-2 {
		border: none;
	}
}

@media (min-width: 992px) {
	.box-footer-2 {
		padding: 35px 30px 25px;
	}
	.box-footer-2 .footer-contacts li + li {
		margin-top: 28px;
	}
	.box-footer-form {
		padding: 35px 25px;
	}
	.box-footer-2-text + .footer-contacts {
		margin-top: 40px;
	}
}

@media (min-width: 1200px) {
	.box-footer-2-text + .footer-contacts {
		margin-top: 50px;
	}
}
.footer-social-list{
    display: flex;
    gap: 5px;
}
.footer-social-list .icon {
	position: relative;
	text-align: center;
	width: 46px;
	height: 46px;
	font-size: 20px;
	line-height: 46px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 4px #3a3e43;
	transition: color .3s;
	z-index: 1;
}

.footer-social-list .icon, .footer-social-list .icon:focus, .footer-social-list .icon:active {
	color: #ffffff;
}

.footer-social-list .icon:hover {
	color: #3067a2;
}

.footer-social-list .icon::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2px;
	border-radius: 50%;
	background: #3a3e43;
	pointer-events: none;
	transition: transform 0.2s, opacity 0.3s;
	z-index: -1;
}

.footer-social-list .icon:hover:after {
	opacity: 0;
	transform: scale(1.3);
}

* + .footer-social-list {
	margin-top: 26px;
}

@media (min-width: 480px) {
	.footer-social-list .icon {
		width: 56px;
		height: 56px;
		font-size: 25px;
		line-height: 56px;
	}
}

.footer-list-category li {
	font-weight: 400;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-list-category li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-list-category a {
	position: relative;
	display: block;
	padding: 22px 40px 20px 2px;
	transition: color .3s ease-in-out, all .3s ease;
}

.footer-list-category a, .footer-list-category a:focus, .footer-list-category a:active {
	color: #ffffff;
}

.footer-list-category a:hover {
	color: #3067a2;
}

.footer-list-category a span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 38%;
	right: 0;
	font-size: 0;
	line-height: 0;
	padding-left: 6px;
	padding-right: 6px;
}

.footer-list-category a span::before, .footer-list-category a span::after {
	display: inline-block;
	vertical-align: middle;
	content: '';
	transition: all .2s ease-in-out;
}

.footer-list-category a span::before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 10px 6px 0;
	border-color: transparent rgba(255, 255, 255, 0.1) transparent transparent;
}

.footer-list-category a span::after {
	width: 0;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.1);
}

.footer-list-category a:hover {
	letter-spacing: .1em;
}

.footer-list-category a:hover span::before {
	border-right-color: #3067a2;
}

.footer-list-category a:hover span::after {
	width: 30px;
	margin-left: 7px;
	background-color: #3067a2;
}

* + .footer-list-category {
	margin-top: 20px;
}

@media (min-width: 480px) {
	.footer-list-category a {
		padding-right: 160px;
	}
	.footer-list-category a:hover {
		letter-spacing: .2em;
	}
	.footer-list-category a:hover span::after {
		width: 123px;
	}
}

@media (min-width: 992px) {
	* + .footer-list-category {
		margin-top: 8px;
	}
}

@media (min-width: 1200px) and (max-width: 1399px) {
	.footer-list-category a {
		padding-right: 130px;
	}
	.footer-list-category a:hover {
		letter-spacing: .15em;
	}
	.footer-list-category a:hover span::after {
		width: 90px;
	}
	.footer-list-category .heading-5 {
		font-size: 20px;
	}
}

.footer-variant-2 {
	text-align: center;
	letter-spacing: .025em;
}

.footer-variant-2 .form-label,
.footer-variant-2 .form-input {
	text-align: center;
}

.footer-variant-2 .rights {
	font-size: 12px;
}

.footer-variant-2 .rd-form * + .button {
	margin-top: 10px;
}

.footer-variant-2 * + .rd-form {
	margin-top: 25px;
}

.footer-variant-2 * + .group-lg {
	margin-top: 30px;
}

.footer-variant-2 * + .row {
	margin-top: 24px;
}

.footer-variant-2 * + .footer-contacts {
	margin-top: 22px;
	padding-top: 32px;
	border-top: 1px solid #d7d7d7;
}

@media (min-width: 768px) {
	.footer-variant-2 {
		text-align: left;
	}
}

.footer-variant-2-content {
	padding: 50px 0;
}

@media (min-width: 768px) {
	.footer-variant-2-content {
		padding-top: 65px;
		padding-bottom: 65px;
	}
}

.footer-variant-2-bottom-panel {
	padding: 30px 0;
}

.footer-contacts {
	text-align: left;
	font-size: 0;
	line-height: 0;
}

.footer-contacts .icon {
	vertical-align: middle;
	text-align: left;
	min-width: 21px;
	font-size: 24px;
	line-height: 24px;
	color: #3067a2;
}

.footer-contacts .fa-envelope {
	font-size: 20px;
}

.footer-contacts .fa-clock-o {
	font-size: 22px;
}

.footer-contacts .link-phone {
	font-size: 18px;
	line-height: 1.34;
	letter-spacing: .025em;
}

.footer-contacts .link-location {
	max-width: 192px;
}

.footer-contacts p {
	font-size: 14px;
	line-height: 1.72;
	letter-spacing: .025em;
}

.footer-contacts a {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.72;
	letter-spacing: .025em;
}

.footer-contacts a, .footer-contacts a:focus, .footer-contacts a:active {
	color: #151515;
}

.footer-contacts a:hover {
	color: #3067a2;
}

.footer-contacts li + li {
	margin-top: 18px;
}

* + .footer-contacts {
	margin-top: 28px;
}

.footer-social-list-2 .icon {
	font-size: 16px;
}

.footer-social-list-2 a, .footer-social-list-2 a:focus, .footer-social-list-2 a:active {
	color: #151515;
}

.footer-social-list-2 a:hover {
	color: #f37877;
}

.footer-modern {
	background: #404040;
}

.footer-modern .footer-variant-2-bottom-panel {
	background: #363636;
}

.footer-creative {
	background: #383b40;
}

.footer-creative .footer-variant-2-bottom-panel {
	background: #2f3439;
}

.footer-link-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 12px;
	line-height: 2;
	font-weight: 500;
	margin-bottom: -5px;
	margin-left: -20px;
}

.footer-link-list:empty {
	margin-bottom: 0;
	margin-left: 0;
}

.footer-link-list > * {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 5px;
	margin-left: 20px;
}

.footer-link-list a, .footer-link-list a:focus, .footer-link-list a:active {
	color: #151515;
}

.footer-link-list a:hover {
	color: #3067a2;
}

@media (min-width: 768px) {
	.footer-link-list {
		justify-content: flex-start;
	}
}

@media (min-width: 992px) {
	.footer-link-list {
		justify-content: space-between;
	}
}

.footer-corporate {
	text-align: center;
	background: #404548;
}

.footer-corporate .footer-contacts .link-phone {
	font-size: 14px;
	line-height: 1.72;
}

.footer-corporate .footer-contacts a {
	letter-spacing: .05em;
}

.footer-corporate .footer-contacts .link-location {
	letter-spacing: .025em;
}

.footer-corporate .footer-contacts .unit {
	margin-bottom: -10px;
	margin-left: -22px;
}

.footer-corporate .footer-contacts .unit > * {
	margin-bottom: 10px;
	margin-left: 22px;
}

.footer-corporate .rights {
	font-size: 12px;
}

.footer-corporate .list-marked a, .footer-corporate .list-marked a:focus, .footer-corporate .list-marked a:active {
	color: inherit;
}

.footer-corporate .list-marked a:hover {
	color: #3067a2;
}

.footer-corporate .button {
	min-width: auto;
	padding-left: 30px;
	padding-right: 30px;
}

.footer-corporate * + .list-marked {
	margin-top: 22px;
}

.footer-corporate * + .group-md {
	margin-top: 30px;
}

@media (max-width: 575px) {
	.footer-corporate .post-minimal-2 {
		margin-left: auto;
		margin-right: auto;
	}
	.footer-corporate .list-marked {
		text-align: center;
	}
}

@media (min-width: 576px) {
	.footer-corporate {
		text-align: left;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.footer-corporate .footer-contacts {
		margin-bottom: -10px;
		margin-left: -40px;
	}
	.footer-corporate .footer-contacts:empty {
		margin-bottom: 0;
		margin-left: 0;
	}
	.footer-corporate .footer-contacts > * {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 10px;
		margin-left: 40px;
	}
	.footer-corporate .footer-contacts .unit {
		align-items: center;
	}
}

@media (min-width: 992px) {
	.footer-corporate .list-marked {
		max-width: 90%;
	}
}

.footer-corporate-2 {
	background: #474b4e;
}

.footer-corporate-2 .footer-corporate-bottom-panel {
	background: #3c4043;
}

.footer-corporate-2 .post-minimal-2-title a, .footer-corporate-2 .post-minimal-2-title a:focus, .footer-corporate-2 .post-minimal-2-title a:active {
	color: #3067a2;
}

.footer-corporate-2 .post-minimal-2-title a:hover {
	color: #ffffff;
}

.footer-corporate-2 .list-custom-2 {
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
}

@media (min-width: 992px) {
	.footer-corporate-2 .list-marked {
		max-width: none;
	}
}

.footer-corporate-inset {
	padding: 50px 0;
}

@media (min-width: 992px) {
	.footer-corporate-inset {
		padding: 65px 0;
	}
}

@media (min-width: 1200px) {
	.footer-corporate-inset {
		padding-top: 75px;
	}
}

.footer-corporate-bottom-panel {
	padding: 30px 0;
	background: #2f3437;
	color: rgba(255, 255, 255, 0.3);
}

.footer-minimal {
	background: #303233;
}

.footer-minimal .rights {
	font-size: 12px;
}
.rights{
    color: gray;
    text-align: center;
}
.footer-minimal-inset {
	padding: 40px 0;
}

.footer-minimal-bottom-panel {
	padding: 35px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

@media (min-width: 768px) {
	.footer-minimal-inset {
		padding: 60px 0;
	}
}

.footer-list-category-2 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
	text-align: left;
	font-size: 18px;
	line-height: 1.34;
	font-weight: 500;
	text-transform: uppercase;
	font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-list-category-2 a, .footer-list-category-2 a:focus, .footer-list-category-2 a:active {
	color: #ffffff;
}

.footer-list-category-2 a:hover {
	color: #3067a2;
}

@media (max-width: 767px) {
	.footer-list-category-2 {
		margin-bottom: -10px;
		margin-left: -30px;
	}
	.footer-list-category-2:empty {
		margin-bottom: 0;
		margin-left: 0;
	}
	.footer-list-category-2 > * {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 10px;
		margin-left: 30px;
	}
}

@media (min-width: 768px) {
	.footer-list-category-2 {
		justify-content: flex-start;
		transform: translate3d(0, -10px, 0);
		margin-bottom: -10px;
		margin-left: -26px;
		margin-right: -26px;
	}
	.footer-list-category-2 > * {
		margin-top: 10px;
		padding-left: 26px;
		padding-right: 26px;
	}
	.footer-list-category-2 > li:not(:first-child) {
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}
}

@media (min-width: 1200px) {
	.footer-list-category-2 {
		transform: translate3d(0, -10px, 0);
		margin-bottom: -10px;
		margin-left: -48px;
		margin-right: -48px;
	}
	.footer-list-category-2 > * {
		margin-top: 10px;
		padding-left: 48px;
		padding-right: 48px;
	}
}

.section-prefooter {
	position: relative;
}

.section-prefooter .rd-google-map {
	height: 250px;
}

@media (min-width: 768px) {
	.section-prefooter .rd-google-map-wrap {
		position: absolute;
		content: '';
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.section-prefooter .rd-google-map {
		width: inherit;
		height: inherit;
	}
}









body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.71429;
	font-weight: 400;
	letter-spacing: .05em;
	color: #151515;
	background-color: #ffffff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: subpixel-antialiased;
}

h1, h2, h3, h4, h5, h6, [class*='heading-'] {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 400;
	font-family: "Teko", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: #151515;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, [class*='heading-'] a {
	color: inherit;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, [class*='heading-'] a:hover {
	color: #3067a2;
}

h1,
.heading-1 {
	font-size: 50px;
	line-height: 0.88;
	font-weight: 300;
	letter-spacing: .075em;
}

@media (min-width: 768px) {
	h1,
	.heading-1 {
		font-size: 70px;
	}
}

@media (min-width: 992px) {
	h1,
	.heading-1 {
		font-size: 90px;
	}
}

@media (min-width: 1200px) {
	h1,
	.heading-1 {
		font-size: 110px;
		line-height: 0.85455;
	}
}

h2,
.heading-2 {
	font-size: 36px;
	line-height: 0.88;
}

@media (min-width: 768px) {
	h2,
	.heading-2 {
		font-size: 50px;
	}
}

@media (min-width: 992px) {
	h2,
	.heading-2 {
		font-size: 60px;
	}
}

@media (min-width: 1200px) {
	h2,
	.heading-2 {
		font-size: 70px;
		line-height: 1;
	}
}

h3,
.heading-3 {
	font-size: 32px;
	line-height: 0.88;
	font-weight: 300;
}

@media (min-width: 768px) {
	h3,
	.heading-3 {
		font-size: 40px;
	}
}

@media (min-width: 992px) {
	h3,
	.heading-3 {
		font-size: 48px;
		line-height: 1.20833;
	}
}

h4,
.heading-4 {
	font-size: 28px;
	line-height: 1;
	letter-spacing: .075em;
}

@media (min-width: 768px) {
	h4,
	.heading-4 {
		font-size: 36px;
		line-height: 1;
	}
}


.heading-5 {
    color: white !important;
	font-size: 22px;
	line-height: 1;
	font-weight: 500;
}

@media (min-width: 768px) {
	h5,
	.heading-5 {
		font-size: 24px;
	}
}

h6,
.heading-6 {
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: .1em;
}

small,
.small {
	display: block;
	font-size: 12px;
	line-height: 1.5;
}

mark,
.mark {
	padding: 2px 4px;
	color: #ffffff;
	background: #151515;
}

.big {
	font-size: 18px;
	line-height: 1.55556;
}

.lead {
	font-size: 24px;
	line-height: 34px;
	font-weight: 300;
}

code {
	padding: 10px 5px;
	border-radius: 0.2rem;
	font-size: 90%;
	color: #111111;
	background: #f2f2f2;
}

p [data-toggle='tooltip'] {
	color: #b7b7b7;
}

p [style*='max-width'] {
	display: inline-block;
}





.table-container {
	width: 90%;
	max-width: 800px;
	overflow-x: auto;
  }

  table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  th,
  td {
	padding: 12px;
	text-align: left;
	border-bottom: 1px solid #ddd;
  }

  th {
	background-color: #f4f4f4;
  }

  @media (max-width: 600px) {

	th,
	td {
	  display: block;
	  width: 100%;
	  box-sizing: border-box;
	}

	td {
	  position: relative;
	  padding-left: 50%;
	  text-align: right;
	  border: none;
	  border-bottom: 1px solid #ddd;
	}

	td::before {
	  content: attr(data-label);
	  position: absolute;
	  left: 0;
	  width: 50%;
	  padding-left: 10px;
	  font-weight: bold;
	  white-space: nowrap;
	  background-color: #f4f4f4;
	}
  }



  .image-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .image-container img {
	width: 100%;
	max-width: 100vw;
	/* Restrict image width to viewport width */
	height: auto;
	/* Maintain aspect ratio */
	object-fit: cover;
  }

  @media (max-width: 768px) {
	.image-container img {
	  width: 100%;
	  max-width: 100%;
	  object-fit: contain;
	  /* Show the whole image without cutting on smaller screens */
	}
  }
  
  
   
 
  .product-item {
    animation: fadeInLeft 0.5s;
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .card {
    height: 100%;
    text-align: center;
  }

  .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .card-img-top {
    margin-top: 0;
  }
