@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@100..900&family=Montserrat:wght@200;400;500;700&display=swap');

:root {
  --main-color: 				#464646;
  --accent-color: 			#00B26B;
  --secondary-color: 		#D9D9D9;
  --secondary-color-2:	#343434;
  --white-color:				#FFFFFF;
  --tab1-color:					#00B26B32;
  --tab2-color:					#EDEDED;
  --font-main: 					'Montserrat', sans-serif;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
* { 
	margin: 0; 
	padding: 0; 
	list-style: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
p{
	margin: 10px 0;
}
a { text-decoration: none; color: inherit;cursor: pointer;}
a:hover { text-decoration: none;/*color: inherit;*/}
a:active { text-decoration: none;color: inherit;}
sup {vertical-align: top; position: relative; top: -0.5em;}
img { border: none; display: block;}
h1, h2, h3, h4, h5{
	display: inline;
	font-size: inherit;
	font-weight: inherit;
}

body{
	font-family: var(--font-main);
	font-size: 18px;
	line-height: 155%;
	font-weight: 500;
	color: var(--main-color);
	overflow-x: hidden;
	cursor: default;
}

.wrapper{
	width: 100%;
	overflow-x: hidden;
}
.container{
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 40px
}
section{
	padding: 0 10px;
	position: relative;
}
.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex-center{
	justify-content: center;
	align-items: center;
}

.f-height {
	height:100%;
}


.bg-accent-color{
	background: var(--accent-color);
}

.menu-section {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 222;
	background: var(--white-color);
	transition: all 1s;
	height: 96px;
	text-transform: uppercase;
	box-shadow: 0 0px 10px;
}
.menu-section .container {
	display: flex;
	height: 100%;
	padding: 10px;
	justify-content: space-between;
	align-items: center;
}
menu svg{
	fill: var(--accent-color);
}
nav {
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
}





.top-slider{
	position: relative;
  height: 650px;
  overflow: hidden;
  margin-top: 90px;
}

.top-slider img{
	position: absolute;
	min-width: 100%;
	min-height: 105%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.top-slider-content {
	position: absolute;
  width: 400px;
  top: 50%;
  transform: translate(30%, -50%);
  color: var(--white-color);
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 5px 8px 5px;
  border-radius: 5px;
}

.top-slider-title{
	text-transform: uppercase;
}
.top-slider-desc {
  font-weight: 500;
  font-size: 18px;
  line-height: 155%;
  padding: 40px 0;
}
.top-slider-btn{
	display: inline-block;
	padding: 10px 30px;
	border: 4px solid;
	border-radius: 8px;
	text-transform: uppercase;
	font-size: 18px;
	font-weight: 600;
}

.h1-txt{
	font-size: 54px;
	font-weight: 600;
}

.h2-txt{
	font-size: 36px;
	font-weight: 600;
}
.body-text-bolder{
	font-size: 18px;
	font-weight: 600;
	line-height: 155%;
}
.small-text{
	font-size: 14px;
	line-height: 155%;
	font-weight: 400;
}

.section-title {
	text-align: center;
	padding-bottom: 50px;
}
.section-padding{
	padding: 120px 0;
}



.main-site-cards {
	/*padding-top: 50px;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
	position: relative;
}

.main-site-card {
  flex-grow: 1;
  margin: 30px;
  border-radius: 8px;
  box-shadow: 0 9px 20px -5px var(--main-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  width: 275px;
  background: #fff;
}
.main-site-card p{
	text-align: center;
}
.main-site-card img{
	width: 90%
}
.main-site-card.img-full-w img {
  width: 100%;
  margin-top: -55px;
  margin-bottom: 30px;
}




.section-contact-mp{
	display: flex;
	padding: 0 30px ;
}
.section-contact-mp .s-c-mp-c1,
.section-contact-mp .s-c-mp-c2{
	display: flex;
	flex-grow: 1;
	width: 300px;
}
.section-contact-mp .s-c-mp-c1 {
  border-radius: 8px;
  box-shadow: 0 9px 20px -5px var(--main-color);
  overflow: hidden;
  min-height: 500px;
}

.section-contact-mp .s-c-mp-c2{
	flex-direction: column;
}

.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-a,
.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b {
  flex-grow: 1;
  border-radius: 8px;
  box-shadow: 0 9px 20px -5px var(--main-color);
  display: flex;
	margin-left: 30px;
  padding: 20px;
}

.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-a{
	margin-bottom: 20px;
	position: relative;
	background: var(--accent-color);
	overflow: hidden;
	font-size: 28px;
	font-weight: 600;
	line-height: 150%;	
	color: var(--white-color);
	flex-grow: 0;
}
.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b{
	flex-direction: column;	
  font-weight: 600;
}
.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-a svg{
	position: absolute;
	right: 0;
	bottom: -20px;
}

.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b .f-icon{
  background: var(--accent-color);
  border-radius: 4px;
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b svg{
  width: 28px;
  height: 28px;
  display: block;
  fill: var(--white-color);
}
.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b .s-contact-desc {
	display: flex;
	height: 60px;
	align-items: center;
  line-height: 120%;
}










footer{
	background: var(--main-color);
	color: var(--white-color);
}
footer img{
	width: 190px;
	opacity: .6;
}
footer>div>div{
	padding: 40px 0;
}
footer .f-icon{
  background: var(--white-color);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
footer svg{
  width: 20px;
  height: 20px;
  display: block;
}
footer .s-contact-desc {
	display: flex;
	height: 50px;
	align-items: center;
  opacity: .6;
  line-height: 120%;
}
footer .col-1,
footer .col-2{
	position: relative;
	flex:1; 
	min-width: 300px; 
	padding: 5px 20px;
	display: flex;	
  justify-content: center;
  flex-direction: column;
}
footer .col-1 {
  align-items: flex-end;
  border-right: 1px solid #ffffff9a;
}
footer .copyright{
	background: var(--secondary-color-2);
	opacity: .5
}

.show-m-menu{
	display: none;
}


.site-title {
  height: 120px;
  background: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 45px;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 6px var(--main-color);
}

.subsite-content{
	padding: 70px 20px;
}

.txt-accent-color{
  color: var(--accent-color);
}
.list-point{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.list-point>div{
	display: flex;
	align-items: center;
	padding: 5px 0;
}
.list-point svg{
	display: block;
	width: 48px;
	height: 48px;
	fill: var(--accent-color);
	margin: 0 10px;
}
nav a {
  display: block;
  padding: 0 8px;
}


.price-model {
	display: flex;
  flex-wrap: wrap;
	justify-content: space-around;
  align-items: flex-start;
}

.price-model table th {
    background: var(--main-color);
    color: #fff;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    border: 2px solid;
}

.price-model table td {
  padding: 3px 15px;
    border: 2px solid #FFF;
}

.price-model table tr:nth-child(even) {
	background-color: #00B26B2A;
}

.price-model table tr:nth-child(odd) {
	background-color: #EDEDED;
}


.price-model table td:last-child{
	width:170px; 
	text-align:right
}
.price-model table td:first-child{
	width:300px;
	text-align:left
}


.img3-gal{
	justify-content: center;
}
.img3-gal div{
	flex: 1;
	max-width: 352px;
	width: 302px;
	min-width: 300px;
	margin: 10px;
}
.img3-gal img{
	width: 100%;
}



.card-content-table {
	padding-top: 20px;
}

.card-content-table p {
  margin: 2px 30px;
  padding: 0;
}



.card-title-img-content{
	flex-grow: 1;
  margin: 30px;
  border-radius: 8px;
  box-shadow: 0 9px 20px -5px var(--main-color);
  display: flex;
  flex-direction: column;
	min-width: 300px;
	max-width: 450px;
	flex-basis: 30%;
}
.card-title-img-content .card-title{
	font-size: 26px;
	font-weight: bold;
	padding: 20px 10px;
	text-align: center;
}
.card-title-img-content img{
	width: 100%
}
.card-title-img-content .card-content{
	padding: 20px 30px;
}

.price-model table th {
  background: var(--main-color);
  color: #fff;
  padding: 15px;
  border-radius: 15px 15px 0 0;
  border: 3px solid;
}

/****************************************************************************************************/
/****************************************************************************************************/
/****************************************************************************************************/
/****************************************************************************************************/
.gall-container {
  padding: 0px;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.gall-wrapper {
	padding: 10px 10px 40px 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	overflow: hidden;
}


.gall-single-img-container {
  flex-grow: 1;
  width: 130px;
  margin: 10px;
  min-width: 130px;
  max-width: 200px;
	overflow: hidden;
	transition: all 1s;
	cursor: pointer;
	min-height: 160px;
	display: flex;
  justify-content: center;
  align-items: center;
  max-height: 200px;
  border: 1px solid #00B26B;
  padding: 3px;
}
@media (max-width: 744px){
	.gall-single-img-container {
	  width: 70px;
	  margin: 5px;
	  min-width: 70px;
	  min-height: 80px;
	}
}
.gall-single-img-container img {
  display: block;
  width: 100%;
  transition: all .6s;
}

.gall-single-img-container:hover img {
  transform: scale(1.2);
}
#img-gall-big-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFE;
  display: none;
  user-select: none;
  padding: 50px;
}
#img-gall-big-title{
	position: absolute;
}
#img-gall-big-container img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
#img-gall-big-prev svg,
#img-gall-big-next svg {
  width: 48px;
  height:48px;
  display:block;
  fill:var(--bg-main-color-1);/*#CFB294;*/
}
#img-gall-big-prev,
#img-gall-big-next{
	position: absolute;
	left: 0;
	padding: 100px 0px;
	height: 100%; 
	display: flex;
	align-items: center;
	cursor: pointer;
}

#img-gall-big-next{
  right:0;
  left:auto;
}
#img-gall-big-close{
	top: 5px;
  right: 5px;
  background: #ffcaca;
  padding: 8px;
  border: 1px solid var(--bg-main-color-1);/*#ff6a6a;*/
  position: absolute;
  cursor: pointer;
}
#img-gall-big-close svg{
	display: block;
	fill: var(--bg-main-color-1);/*#ff6a6a;*/
	width: 24px;
	height: 24px;
}
/****************************************************************************************************/
/****************************************************************************************************/
/****************************************************************************************************/
/****************************************************************************************************/


/*
.main-site-card {
 
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  width: 275px;
}
.main-site-card p{
	text-align: center;
}
.main-site-card img{
	width: 90%
}
.main-site-card.img-full-w img {
  width: 100%;
  margin-top: -55px;
  margin-bottom: 30px;
}*/



@media (max-width: 1024px){
	.main-site-card {
    width: 180px;
	}
	.main-site-cards-resp p{
		font-size: 14px;
	}
}


/*
@media (max-width: 744px){
	.top-slider{
		position: relative;
	  height: 450px;
	}
	menu nav{
		flex-direction: column;
	  position: absolute;
	  left: 0;
	  top: 80px;
	  width: 100%;
	  background: #ebf8ff;
	  border-top: 1px solid;
	  height: 0;
	  overflow: hidden;
	  transition: all 1s;
	}
	.menu-section {
    height: 80px;
	}
	.main-site-cards-resp-2 .main-site-card:first-child{
		margin-right: 0;
		border-radius: 8px 0 0 8px;
	}
	.main-site-cards-resp-2 .main-site-card:first-child img{
		max-width: 90%
	}
	.main-site-cards-resp-2 .main-site-card:last-child{
		margin-left: 0;
		border-radius:  0 8px 8px 0;
	}
	.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-a {
		font-size: 14px;
	}
	.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b {
		font-size: 14px;
	}
	.show-m-menu{
		display: block;
	}
}


*/

@media (max-width: 744px){
	.section-padding {
    padding: 30px 0;
	}
	.top-slider{
		position: relative;
	  height: 450px;
	  margin-top: 80px;
	}
	.main-site-card {
    max-width: 250px;
	}
	menu nav{
		flex-direction: column;
	  position: absolute;
	  left: 0;
	  top: 80px;
	  width: 100%;
	  background: #FFF;
	  border-top: 1px solid;
	  height: 0;
	  overflow: hidden;
	  transition: all 1s;
	}
	.menu-section {
    height: 80px;
	}
	.main-site-cards-resp-2 .main-site-card:first-child{
		margin-right: 0;
		border-radius: 8px 0 0 8px;
	}
	
	.main-site-cards-resp-2 .main-site-card:last-child{
		margin-left: 0;
		border-radius:  0 8px 8px 0;
		max-width: 400px;
	}
	.main-site-cards-resp-3 {
		flex-direction: column-reverse;
	}
	.section-contact-mp .s-c-mp-c1, .section-contact-mp .s-c-mp-c2 {
    width: 100%;
	}
	.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-a, 
	.section-contact-mp .s-c-mp-c2 .s-c-mp-c2-b {
    margin-left: 0px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
  }
	/*
	nav a {
    padding: 12px;
    margin: 2px;
    border-bottom: 1px solid #3333;
    width: 300px;
    text-align: center;
	}*/
	.show-m-menu{
		display: block;
	}
	menu nav.show {
    height: 230px;
    border-bottom: 1px solid;
    border-top: 1px solid;
  }
  nav a {
    padding: 5px;
    margin: 2px;
    border-bottom: 1px solid #3333;
    width: 320px;
    text-align: center;
	}
	 nav a:last-child {
	 	border: none;
	}
	.site-title {
	  height: 96px;
	}
	.subsite-content{
		padding: 40px 10px;
	}
}

@media (max-width: 600px){
	.top-slider{
		position: relative;
	  height: 350px;
	  margin-top: 80px;
	}
	.top-slider-content {
    transform: translate(0%, -50%);
    max-width: 88%;
	}
	.top-slider-desc {
    font-size: 16px;
    line-height: 135%;
	}
	.h1-txt {
	  font-size: 34px;
	}
	.main-site-cards-resp-2{
		flex-direction: column;
	}
	.main-site-cards-resp-2 .main-site-card:first-child{
		margin-bottom: 0;
		border-radius: 8px 8px 0 0px;
		box-shadow: none;
		width: 90%;
		max-width: 550px;
		padding: 10px;
	}   
	.main-site-cards-resp-2 .main-site-card:first-child img{
		width: 230px;
	}
	.main-site-cards-resp-2 .main-site-card:last-child{
		margin-top: 0;
		border-radius: 0 0px 8px 8px;
		max-width: 550px;
		width: 90%;
		margin-left: 30px;
	}
	.main-site-cards-resp-2 .main-site-card:last-child .section-title{
		padding-bottom: 10px;
	}
	.site-title {
	  height: 48px;
  	font-size: 30px;
	}
	.subsite-content{
		padding: 20px 10px;
	}
	.img3-gal div{
		min-width: 100px;
		margin: 5px;
	}
}
/*
.top-slider .img-clear{
	overflow: hidden;
	position: absolute;
	top:0;
	left: 0;
	width: 50%
}




.photo-desc{
	position: absolute;
	width: 100%;
	top: 50%;
	padding: 20px;
	background: rgba(255,255,255,0.7);
	transform: translate(0, -40%);
	font-size: 40px;
	text-align: center;
	line-height: 50px;
	color: #026636;
}


.menu-section.scrolled {
	height: 80px;
}*/
/*
.logo {
	height: 100%;
}

.logo img {
	height: 100%;
}*/

/*

nav a {
	display: block;
	padding: 0 8px;
}*/
/*
.section-title {
  text-align: center;
  padding: 28px 0;
  font-size: 28px;
  text-transform: uppercase;
  background: #0f6540;
	color: #FFF;
}*/

.btn-container {
	padding: 20px 0 40px;
	text-align: right;
}

.btn-more {
	padding: 10px 30px;
	background: #0f6540;
	display: inline-block;
	box-shadow: 3px 3px 5px #000;
	color: #ebf8ff;
}

.icon-txt-single {
	display: flex;
	align-items: center;
}

.icon-txt-icon {
	display: flex;
	padding: 10px 8px;
}

.icon-txt-icon svg {
	fill: #06c56f;
}

.parallax-container {
	position: relative;
	overflow: hidden;
}
.parallax-img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url(/img/none.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 50% 50%;
	transform: translate3d(0px, 0px, 0px);
}
.mid-img.parallax-container {
	/*height: 500px;*/
}

.parallax-img-2 {
	background-image: url(/img/anedora-zarzadzenie-nieruchomosciami.jpeg);
	height: 120%
}

.single-counter-container {
	width: 200px;
	min-width: 150px;
	max-width: 1200px;
	position: relative;
	border: 1px solid #06c56f;
	margin: 30px;
	margin-top: 70px;
	flex-grow: 1;
	text-align: center;
	padding: 10px 5px;
	background: #059c57aa;
	color: #fff;
}
.scc-counter {
    width: 100px;
    height: 50px;
    border: 1px solid #06c56f;
    margin: -34px auto 10px;
    background: #059c57;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    border-radius: 40px;
}

.d3d-effect:before, .d3d-effect:after {
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 14px;
	left: 10px;
	width: 50%;
	top: 80%;
	max-width: 300px;
	background: #555;
	box-shadow: 0 15px 10px #555;
	transform: rotate(-5deg);
}

.d3d-effect:after {
	transform: rotate(5deg);
	right: 10px;
	left: auto;
}

form#form-contact {
	padding: 0 20px;
}
.contact-row input, .contact-row textarea, .contact-row button {
	padding: 10px;
	font-size: 14px;
	margin: 0 10px;
	flex-grow: 1;
	color: #6b5849;
	border: 1px solid rgba(107, 88, 73, 0.4);
	resize: none;
	margin: 2px 0;
	width: 100%;
}
/*
.s-contact-desc p {
	font-size: 16px;
}

.s-contact-desc {
	display: flex;
	padding: 10px;
	min-width: 270px;
	text-align: center;
	align-items: center;
	font-size: 24px;
}

.s-contact-desc svg {
	fill: #00ff8b;
	width: 48px;
	height: 32px;
}
*/
.ms-news {
	display: flex;
	position: relative;
	flex-wrap: wrap;
}
.ms-news>div{
	flex-grow: 1;
	width: 300px
}

.ms-news-single {
	padding: 10px;
	margin: 10px;
	background: #fff;
	color: #444;
	font-size: 16px;
	flex: 1;
	min-width: 300px;
	box-shadow: 5px 5px 10px;
}
p{
	padding-bottom: 8px
}
p.ms-news-date {
	text-align: right;
	font-size: 12px;
	color: #222;
}

p.ms-news-title {
	text-align: center;
	font-size: 22px;
	color: #0f6540;
	font-weight: bold;
	padding: 5px 0 10px;
}

p.ms-news-readmore {
	font-size: 16px;
	text-align: right;
	padding: 10px 0 0;
}

p.ms-news-readmore span {
	display: inline-block;
	color: #0f6540;
}

.section-phone-numbers {
  position: fixed;
  top: 50%;
  transform: translate(0px, -50%);
  right: 0;
  background: #026636;
  border: 1px solid #00ff8b;
  color: aliceblue;
  width: 240px;
  transition: all 1s;
  right: -240px;
}

.s-p-n-single {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  margin: 5px 0;
  border-bottom: 1px solid #03e37d;
}

.s-p-n-s-icon svg {
  fill: #00ff8b;
  display: block;
}

.s-p-n-s-icon {
	padding: 0 10px 0 0;
}

.s-p-n-s-info {
  text-align: center;
  width: 100%;
}

.s-p-n-s-info p {
	font-size: 12px;
}

.s-p-n-single:last-child {
	border-bottom: navajowhite;
}

.s-p-n-s-info a {
	font-weight: bold;
}
.s-p-n-title {
	position: absolute;
  transform: rotate(-90deg) translate(-94px, -240px);
  background: #EA4335;
  top: 0;
  left: 50%;
  padding: 5px 10px;
  border-radius: 10px 10px 0 0;
  transition: all 1s;
  width: 210px;
  text-align: center;
  border: 1px solid #03e37d;
  background: #026636;
}


.basic-info {
  display: flex;
  align-items: center;
  line-height: 22px;
	margin-bottom: 10px;
}

.basic-info div {
	padding: 5px 5px 5px 0px;
	width: 40px;
}

.basic-info div svg {
  width: 32px;
  height: 32px;
  fill: #0f6540;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
}
.contact-title {
  color: #0f6540;
  text-align: center;
  padding-bottom: 20px
}

.contact-title span {
	display: block;
}
.contact-container .col{
	flex-grow: 1;
	width: 200px;
}
.row-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.flex-col {
	flex-direction: column;
}

.flex-col>div {
	padding: 20px 0 0 0;
}

.f-center {
	text-align: center;
}
.basic-info.flex-col.f-center {
    font-size: 14px;
    line-height: 14px;
}


.show-m-menu svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: #006836;  
  
}
.rodo h2 {
  font-size: 20px;
  margin-top: 20px;
  display: block;
}

#send-block {
  background: #48526b;
  color: #FFF;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  text-align: center;
  display: none;
  font-size: 30px;
  justify-content: center;
}
.site-title{
	padding: 20px 0;
}
.offer {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #0f6540;
	margin: 10px 0;
}
.offer:last-child {
	border: none;
}
.offer h2 {
    font-weight: bold;
    font-size: 24px;
    color: #026837;
}

.offer>div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0;
}

.offer svg {
    width: 64px;
    height: 64px;
    display: block;
    margin: 20px 50px;
    fill: #036736;
}
.offer li{
  position:relative;
  margin-bottom:4px;
  padding-left:12px
}

.offer li:before {
    position: absolute;
    left: 0;
    top: 6px;
    background: #0f6540;
    width: 8px;
    height: 8px;
    content: "";
}
.offer>div>div:last-child {
  flex-grow: 1;
}

