@charset "UTF-8";
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 32px;
	color: #343434;
}

h1,
h2,
h3,
h4,
h5,
p {
	margin: 0;
}

.text-bold {
	font-weight: bold;
}

.text-padding {
	padding: 0 0.5rem;
}

.text-center {
	text-align: center;
}

.line-through {
	text-decoration: line-through;
}

.text-red {
	color: #e70000;
}

.text-green {
	color: #1eb336;
}

.text-gray {
	font-size: 1.2rem;
	color: #aaaaaa;
}

.text-gray {
	color: #a7a7a7;
}

.text-green {
	color: #12710c;
}

.text-white {
	color: white;
}

.text-bg-green {
	background-color: #19ae30;
}

.text-bg-red {
	background-color: #cf0000;
}

.text-bg-yellow {
	background-color: #f2cc0f;
}

.red-title {
	color: #d23125;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 35px;
}

.current-date-color {
	color: #bf7c63;
}

.paragraph-flex {
	display: flex;
	flex-direction: column;
	margin-bottom: 35px;
}

.paragraph-bold {
	font-size: 22px;
	font-weight: bold;
}

.product-price-before {
	font-size: 42px;
	text-decoration: line-through;
	color: #a52b22;
	font-weight: bold;
}

.product-price-now {
	color: #12710c;
	font-size: 68px;
	font-weight: bold;
}

.image-wrapper {
	margin: 2.5rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.paragraph-important {
	color: #bf7c63;
}

.important-box {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 25px;
	margin-top: 35px;
}
.important-box img {
	width: 26px;
	height: 113px;
}

.text-color {
	font-size: 2.2rem;
	line-height: 44px;
	font-weight: bold;
	color: #bf7c63;
	margin-top: 35px;
}

.summary-button {
	width: -moz-fit-content;
	width: fit-content;
	background-color: #009f20;
	padding: 1.5rem;
	border: 1px solid #009f20;
	color: white;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
	border-radius: 1rem;
	margin: 1.5rem auto;
	transition: all 0.35s ease-in-out;
}
.summary-button:hover {
	cursor: pointer;
	background-color: white;
	color: #009f20;
}

.image-grid {
	display: grid;
	align-items: center;
	grid-template-columns: 50% 50%;
	margin: 2.5rem 0;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
}

ul {
	padding-left: 3rem;
	margin: 0;
	list-style-type: none;
}

ul li {
	font-size: 1.6rem;
	line-height: 3.2rem;
	position: relative;
	padding-left: 20px;
}

ul li::before {
	content: "";
	position: absolute;
	left: 0;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background-color: #60aebf;
	border-radius: 2px;
	margin-top: 13px;
}

.btn {
	width: 100%;
	border: 2px solid #12710c;
	background-color: #12710c;
	border-radius: 5px;
	text-align: center;
	display: block;
	color: white;
	font-weight: 700;
	padding: 2.1rem;
	margin: 60px auto 2rem;
	cursor: pointer;
	transition: all 0.35s ease-in-out;
	font-size: 1.9rem;
	border-bottom: 6px solid #0f550a;
}
.btn:hover {
	background-color: #0f550a;
	border-bottom: 6px solid #0f550a;
}
@media (min-width: 500px) {
	.btn {
		font-size: 3rem;
	}
}
@media (min-width: 1100px) {
	.btn {
		font-size: 4.3rem;
	}
}

.decoration {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 0.5rem;
}
.decoration-1 {
	background-color: #f69087;
}
.decoration-2 {
	background-color: #85ccb1;
}
.decoration-3 {
	background-color: #85a9b3;
}
.decoration-4 {
	background-color: #b0cb7a;
}

.container-index {
	position: relative;
	width: 100%;
	max-width: 116rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	padding: 20px 0;
}
.container-index img {
	width: 135px;
	height: 91px;
}

header {
	width: 100%;
	background-color: #f3f3f3;
	display: flex;
	border-bottom: 1px solid #d7d9d9;
	box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.1607843137);
	margin-bottom: 75px;
}
header .header-title {
	position: absolute;
	left: 84px;
	top: 0px;
	font-size: 3.2rem;
	color: #d9b6a3;
	font-weight: 500;
	padding: 2.8rem 2.4rem;
	display: flex;
	gap: 20px;
	flex-direction: column;
}
header .header-title span {
	font-size: 28px;
	color: #bf7c63;
	margin-top: -20px;
	margin-left: 15px;
}
@media (min-width: 768px) {
	header .header-title span {
		font-size: 52px;
		margin-top: -5px;
		margin-left: 10px;
	}
}

.container {
	position: relative;
	width: 100%;
	max-width: 116rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	padding: 20px 10px;
}

.summary-content {
	display: grid;
	justify-content: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	margin-top: 2rem;
	padding: 0 2rem;
	max-width: 1240px;
	margin: 0 auto;
}

.summary-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}
@media (min-width: 768px) {
	.summary-container {
		margin-bottom: 40px;
	}
}
@media (min-width: 996px) {
	.summary-container {
		flex-direction: row;
		align-items: start;
		gap: 0;
		margin-bottom: 54px;
	}
	.summary-container img {
		width: 557px;
		height: 297px;
		margin-left: -30px;
	}
}

.summary-box {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.site-content {
	display: grid;
	justify-content: center;
	grid-template-columns: repeat(1, 1fr);
	width: 100%;
	margin-top: 2rem;
	padding: 0 1rem;
}
@media (min-width: 768px) {
	.site-content {
		grid-template-columns: 74% 24%;
		grid-gap: 2%;
	}
}
@media (min-width: 1240px) {
	.site-content {
		grid-template-columns: 78.6rem 30.6rem;
		grid-gap: 3.5rem;
	}
}

.main-top,
.main-bottom,
.main-summary {
	background-color: #ffffff;
	padding: 1.8rem 0.5rem 4.1rem 0.5rem;
}

.main-summary {
	padding: 0 0.5rem 0rem 0.5rem;
}

.main-bottom {
	border: 1px solid #d7d9d9;
	border-radius: 5px;
	padding: 40px 30px;
}

main .summary-title {
	font-size: 3.6rem;
	line-height: 6.1rem;
	font-weight: bold;
	color: #12710c;
	padding: 0.5rem;
	text-align: center;
	margin-bottom: 30px;
	margin-top: -50px;
}
@media (min-width: 500px) {
	main .summary-title {
		font-size: 5.8rem;
		margin-bottom: 50px;
		margin-top: unset;
	}
}
@media (min-width: 992px) {
	main .summary-title {
		font-size: 6.8rem;
		margin-bottom: 80px;
	}
}
main .main-title {
	font-size: 3.6rem;
	font-weight: bold;
	color: #d23125;
	line-height: 4.4rem;
}
main .main-lead {
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 4rem;
	margin-bottom: 2rem;
}
@media (min-width: 992px) {
	main .main-lead {
		font-size: 3.4rem;
	}
}
main .main-subtitle {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 3.5rem;
	margin-bottom: 2.5rem;
	color: #343434;
}
main .main-paragraph-big {
	font-size: 3.6rem;
	line-height: 4.4rem;
	margin-bottom: 1.5rem;
}
main .paragraph {
	font-size: 1.6rem;
	line-height: 3.2rem;
	margin-bottom: 3.5rem;
}
main .paragraph-small {
	font-size: 1.6rem;
	font-weight: bold;
	color: #a52b22;
	line-height: 32px;
}
main .paragraph-phone {
	font-size: 22px;
	font-weight: bold;
	margin: 35px 0 40px;
}

.paragraph-summary {
	font-size: 1.6rem;
	line-height: 3.2rem;
	margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
	.paragraph-summary {
		margin-bottom: 3.5rem;
	}
}

.main-top .public-date {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 25px;
}
.main-top .public-date span {
	color: #d7d9d9;
}
.main-top .main-top-container {
	z-index: 999;
	position: relative;
	display: flex;
	flex-direction: column;
}
.main-top .list {
	margin-bottom: 1.6rem;
}
.main-top .green-box {
	background-color: #c2e5d8;
	padding: 2.2rem 1.5rem 1rem;
	margin-bottom: 3.8rem;
}
.main-top .guarantee-subtitle {
	margin-bottom: 2.6rem;
	margin-top: 2.2rem;
}
.main-top .product-promotion-details {
	margin-top: 2.3rem;
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	margin-bottom: 3.1rem;
}
.main-top .product-promotion-details .text-red {
	text-decoration: line-through;
}
.main-top .product-promotion-details .text-red,
.main-top .product-promotion-details .text-green {
	font-weight: bold;
}
.main-top .product-image {
	max-width: 25rem;
}

.main-bottom .comments-title {
	text-transform: uppercase;
	font-size: 3.6rem;
	font-weight: bold;
	padding-bottom: 1rem;
	color: #343434;
}
.main-bottom .form-add-comment {
	display: flex;
	flex-direction: column;
	margin-bottom: 4rem;
}
.main-bottom .form-add-comment input {
	margin-bottom: 0.8rem;
	border-radius: 10px;
}
.main-bottom .form-add-comment textarea {
	margin-bottom: 1.5rem;
	resize: none;
	min-height: 10rem;
}
.main-bottom .form-add-comment input,
.main-bottom .form-add-comment textarea {
	padding: 0.4rem 0.7rem 0.5rem 0.5rem;
	outline: none;
	font-family: "Roboto", sans-serif;
	font-size: 1.6rem;
	line-height: 2.1rem;
	border-radius: 2px;
	border: 1px solid #d7d9d9;
}
.main-bottom .form-add-comment input::-moz-placeholder,
.main-bottom .form-add-comment textarea::-moz-placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1.6rem;
	line-height: 2.1rem;
	color: #d7d9d9;
}
.main-bottom .form-add-comment input::placeholder,
.main-bottom .form-add-comment textarea::placeholder {
	font-family: "Roboto", sans-serif;
	font-size: 1.6rem;
	line-height: 2.1rem;
	color: #d7d9d9;
}
.main-bottom .form-add-comment .form-buttons {
	display: flex;
	gap: 1.1rem;
}
.main-bottom .form-add-comment .form-buttons .form-btn {
	padding: 0.9rem;
	color: #ffffff;
	background-color: #d7d9d9;
	border-radius: 0.3rem;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: all 0.35s ease-in-out;
}
.main-bottom .form-add-comment .form-buttons .form-btn:hover {
	background-color: #5f6468;
}
.main-bottom .form-add-comment .form-buttons .form-btn-add-comment {
	background-color: #73cfd9;
}
.main-bottom .comments-wrapper .comment,
.main-bottom .added-comments .comment {
	display: flex;
	margin-bottom: 2.3rem;
}
.main-bottom .comments-wrapper .comment .comment-avatar,
.main-bottom .added-comments .comment .comment-avatar {
	width: 48px;
	height: 48px;
	margin-right: 2.4rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-row,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-row {
	display: flex;
}
.main-bottom
	.comments-wrapper
	.comment
	.comment-content-wrapper
	.comment-row-image,
.main-bottom
	.added-comments
	.comment
	.comment-content-wrapper
	.comment-row-image {
	display: flex;
	flex-direction: column;
}
.main-bottom
	.comments-wrapper
	.comment
	.comment-content-wrapper
	.comment-author,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-author {
	font-size: 1.6rem;
	font-weight: 500;
	color: #42a98b;
	margin-right: 0.9rem;
	margin-bottom: 0.8rem;
}
.main-bottom .comments-wrapper .comment .comment-content-wrapper .comment-date,
.main-bottom .added-comments .comment .comment-content-wrapper .comment-date {
	color: #7f919e;
	font-size: 1.4rem;
}
.main-bottom
	.comments-wrapper
	.comment
	.comment-content-wrapper
	.comment-content,
.main-bottom
	.added-comments
	.comment
	.comment-content-wrapper
	.comment-content {
	margin-bottom: 1.1rem;
}
.main-bottom
	.comments-wrapper
	.comment
	.comment-content-wrapper
	.comment-attachment,
.main-bottom
	.added-comments
	.comment
	.comment-content-wrapper
	.comment-attachment {
	width: -moz-fit-content;
	width: fit-content;
	max-width: 20rem;
	margin-bottom: 1.8rem;
}

.picture-error {
	color: red;
	font-size: 1.5rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.telephone-box {
	font-size: 2.6rem;
	line-height: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	width: -moz-fit-content;
	width: fit-content;
	color: white;
	background-color: #12710c;
	border-radius: 0.5rem;
	padding: 13px 25px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
	margin: 20px auto 15px;
	cursor: pointer;
	line-height: 3.9rem;
	border-bottom: 6px solid #0f550a;
	transition: all 0.35s ease-in-out;
}
.telephone-box:hover {
	background-color: #0f550a;
	border-bottom: 6px solid #0f550a;
}
@media (min-width: 768px) {
	.telephone-box {
		margin: 30px auto 15px;
	}
}
@media (min-width: 768px) {
	.telephone-box {
		font-size: 3.2rem;
	}
}
@media (min-width: 992px) {
	.telephone-box {
		gap: 20px;
	}
}

.hr {
	width: 100%;
	height: 0.1rem;
	margin: 1.5rem 0;
	background-color: #707070;
}

aside {
	display: none;
}
@media (min-width: 1250px) {
	aside {
		display: block;
	}
}

.aside__item {
	width: 100%;
	position: sticky;
	top: 2rem;
	cursor: pointer;
	padding: 5px;
	border-radius: 5px;
	border: 1px solid #343434;
	margin-top: 1155px; /* Domyślny margin-top */
	transition: margin-top 0.5s ease; /* Dodajemy efekt przejścia */
}

footer {
	margin-top: 6.4rem;
	background-color: #d7d9d9;
	color: #343434;
}
footer .text-gray {
	text-align: center;
}
footer .container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 55.6rem;
	padding: 50px 0 0;
}
footer .copyright {
	margin-bottom: 2.3rem;
}
footer .attachments {
	display: flex;
	justify-content: center;
	gap: 0.8rem;
	margin-bottom: 1.8rem;
}
footer .attachments .text-gray {
	text-decoration: underline;
}
footer .company-address {
	margin-top: 2.3rem;
	margin-bottom: 1.8rem;
}

.row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.row img {
	margin-bottom: 10px;
}

.image-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
@media (min-width: 580px) {
	.image-wrap {
		flex-direction: row;
		align-items: flex-start;
	}
}

.col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.col__title {
	font-size: 2.2rem;
	font-weight: 700;
	text-transform: uppercase;
}
.col__title--green {
	color: #12710c;
}
.col__title--red {
	color: #a52b22;
}
.col__text {
	color: #bf7c63;
	max-width: 378px;
	text-align: center;
	margin-bottom: 35px;
}

.before-after {
	margin: 35px 0;
	border: 2px solid #bf7c63;
	padding: 25px;
	border-radius: 5px;
}

.before-after-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
@media (min-width: 768px) {
	.before-after-container {
		flex-direction: row;
	}
}

.before-after-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	color: #0b7078;
}

.before-after-name {
	width: 170px;
	text-align: center;
	border-top: 1px solid #d7d9d9;
	padding-top: 2px;
	font-weight: 600;
}

.before-after-text {
	color: #bf7c63;
	font-size: 16px;
	line-height: 32px;
	margin-top: 15px;
	font-weight: 600;
}

.free {
	font-size: 22px;
	font-weight: bold;
}
.free span {
	color: #12710c;
}

.phone-img {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 35px;
}
.phone-img img {
	width: 100%;
	max-width: 431px;
}

.telephone-box-phone {
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background-color: transparent;
	color: #12710c;
	border: 1px solid #12710c;
	box-shadow: unset;
	line-height: 8rem;
	font-size: 2.8rem;
	width: 100%;
	width: -moz-fit-content;
	width: fit-content;
	margin: 1.5rem auto 1rem;
	border-radius: 0.5rem;
	padding: 20px 25px;
	margin: 30px auto 15px;
	cursor: pointer;
	line-height: 3.9rem;
	margin-bottom: 31px;
}
.telephone-box-phone img {
	width: 53px;
	height: 53px;
}
@media (min-width: 468px) {
	.telephone-box-phone {
		font-size: 4.8rem;
	}
}
@media (min-width: 768px) {
	.telephone-box-phone {
		font-size: 6.8rem;
		padding: 20px 90px;
	}
	.telephone-box-phone img {
		margin-right: 20px;
	}
}

.summary-title-phone {
	font-size: 3.6rem;
	font-weight: bold;
	color: #12710c;
	padding: 0.5rem;
	text-align: center;
}
@media (min-width: 500px) {
	.summary-title-phone {
		font-size: 5.8rem;
	}
}

.telephone-box.visible {
	cursor: pointer;
}

.hidden {
	display: none;
	text-decoration: none;
}

/*# sourceMappingURL=styles.css.map */
