html,
body{
	max-width: 1920px;
	margin: 0;
	min-width: 320px;
	background-color: #FFFFFF;
	font-size: 36px;
	overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
}
p {
	margin: 0;
	line-height: 1.7;
}
a{
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
.dflex{	
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.center-h {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%;	
}
.center-v {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;	
}
.pink {
	color: #CE0671 !important;
}
.white {
	color: #fff !important;
}
.bold {
	font-weight: 700;
}
img[src*="banner"] {
    position: relative;
    max-width: 1920px;
    right: 0;
    width: 100%;
    min-height: 600px;
    height: 100%;
}
header {
    background-color: #fff;
    max-width: 1220px;
    width: 100%;
    -ms-align-items: center;
    align-items: center;
    padding: 20px 20px 20px 50px;
    justify-content: space-between;
    position: absolute;
	top: 8vh;
	z-index: 999;
}
header a,
header a:hover {
	color: #CE0671;
	text-transform: uppercase;
	font-size: 16px;
	text-decoration: none;
	display: block;
}
.logo {
	max-width: 200px;
}
ul.menu_desktop {
    max-width: 756px;
    width: 100%;
    justify-content: space-around;
    margin: 0;
    align-items: center;
}
ul li.active a {
	font-weight: 700;
}
.openmenu {
	width: 35px;
	height: 35px;
	cursor: pointer;
	z-index: 99999;
}
.openmenu span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-top: 4px;
    display: block;
    border-radius: 20%;
}
.openmenu span:first-of-type {
    margin-top: 0;
}
.openmenu span, 
.openmenu.open span {
	-webkit-transition: transform .2s linear;
	-o-transition: transform .2s linear;
	transition: transform .2s linear;
}
.openmenu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.openmenu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.openmenu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
	margin-top: -2px;
}

.openmenu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu_mobile ul {
    /* display: none; */
    position: relative;
    right: 0;
    background: #fff;
    color: #fff;
    list-style: none;
    text-align: left;
    font-size: 26px;
    top: 0;
    padding: 50px;
    max-width: 800px;
    height: 100vh;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform .1s linear;
    -o-transition: transform .1s linear;
    transition: transform .1s linear;
    display: none;
    width: 100%;
	overflow-y: auto;
}
.menu_mobile ul.open {
	/*display: block;*/
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: transform .1s linear;
	-o-transition: transform .1s linear;
	transition: transform .1s linear;
}
.menu_mobile ul a {
	color: #CE0671;
    font-size: 20px;
    font-weight: 600;
    padding: 30px 0;
    display: block;
    border-bottom: 2px solid #CE0671;
    text-decoration: none;
}

.menu_mobile {
	display: none;
	position: fixed;
    top: 0;
    right: 0;
	z-index: 999;
}
.menu_mobile .openmenu {
    top: 25px;
    right: 25px;
    position: absolute;
    padding: 0 5px;
    background-color: rgba(255,255,255,1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 50%;
}
.menu_mobile .openmenu span {
    background-color: #CE0671;
}
.menu_mobile ul.open {
    display: block;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform .1s linear;
    -o-transition: transform .1s linear;
    transition: transform .1s linear;
	z-index: 9999;
}


#home section[data-id="1"] {
    position: relative;
    z-index: 99;
}

.fullscreen-bg,
.net{
    overflow: hidden;
    z-index: -100;
    clear: both;
    width: 100%;
}

.fullscreen-bg__video {
    width: 100%;
}

.fullscreen-bg img{
	display: none;
	max-width: 1080px;
    width: 100%;
}

.net {
    content: '';
    background: url(/gfx/video_pattern.gif) repeat;
    position: absolute;
    width: 100%;
    z-index: 8;
	top: 0;
    left: 0;
}
div#home {
    padding-bottom: 50px;
}
#home section[data-id="1"] .contener.txtabs {
    width: 100%;
    position: absolute;
	z-index: 10;
	left: 50%;
	top: 55%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: auto;

    .flower-home-img{
        max-width: 240px;
    padding: 10px;
    padding-top: 30px;
}
}


section {
	position: relative;
}
section[data-id="1"] .contener {
	position: absolute;
	width: 100%;
	top: 0;
	height: 100%;
    max-width: 1220px;
	-ms-align-items: center;
	align-items: center;
}
section[data-id="1"] .row {
	display: block;
	width: 100%;
}
section[data-id="1"] h2,
section[data-id="1"] p {
	color: #fff;
	color: #CE0671;
	font-family: 'Georgia', sans-serif;
	font-size: 60px;
	margin: 0;
	line-height: 1.2;
}

a.btn,
.btn {
	background-color: #CE0671;
	color: #fff !important;
	font-size: 16px;
	border-radius: 0;
	max-width: 260px;
	width: 100%;
	padding: 10px 0;
	margin-top: 30px;
}
img.dr_app {
    position: absolute;
    top: 70%;
    right: 100px;
    z-index: 99999;
}


#menopauza section[data-id="2"] {
	background-image: url(/gfx/bg_1.png), url(/gfx/bg_1a.png);
	background-repeat: no-repeat;
    background-position: left top, right top -100px;
    -webkit-background-size: 30%, 50%;
    background-size: 30%, 50%;
}
#menopauza section[data-id="3"] {
	background-image: url(/gfx/bg_4.png);
	background-repeat: no-repeat;
	background-position: left top;
    -webkit-background-size: 40%;
    background-size: 40%;
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
section[data-id="2"] .contener, 
#faq section[data-id="2"] .contener {
	max-width: 1430px;
	margin: 0 auto;
	display: block;
	width: 95%;
}
#menopauza section[data-id="2"] .contener {
	width: 100%;
	max-width: 1430px;
}
.section_title {
	max-width: 700px;
	width: 100%;
	display: block;
	margin: 25px auto 100px;
}
#menopauza [data-elem="5"] .section_title {
    max-width: 700px;
    width: 100%;
    display: block;
    margin: 25px auto;
}
.section_title p {
	font-size: 36px;
	text-align: center;	
}
div[data-elem="1"],
div[data-elem="2"],
div[data-elem="3"],
div[data-elem="4"] {
    position: relative;
    padding: 90px 0;
}
div[data-elem="1"]::after,
div[data-elem="2"]::after,
div[data-elem="3"]::after {
    content: '';
	position: absolute;
	bottom: 0;
	height: 2px;
	max-width: 1430px;
    width: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
div[data-elem="1"]::after,
div[data-elem="3"]::after {
	background-color: #CE0671;
}
div[data-elem="2"]::after {
	background-color: #1C9351;
}
div[data-elem="1"] p,
div[data-elem="5"] p {
    text-align: center;
    margin: 0 auto;
}
div[data-elem="1"] .wykres {
    position: relative;
	max-width: 1290px;
    margin: 40px auto 150px;
	overflow-y: hidden;
}
.wykres span.dot {
	position: absolute;
	width: 2.6%;
	height: 7.3%;
	background-color: #fff;
	border: 2px solid #000;
	border-radius: 50%;
	bottom: 7.2%;
	z-index: 5;
}
.wykres span.dot:nth-of-type(1) {
	left: 19.9%;
}
.wykres span.dot:nth-of-type(2) {
	left: 42.4%;
}
.wykres span.dot:nth-of-type(3) {
	left: 65.3%;
}
.wykres span.dot:nth-of-type(4) {
	left: 83.8%;
}
.wykres span.line:nth-of-type(5) {
	left: 21%;
}
.wykres span.line:nth-of-type(6) {
	left: 43.6%;
}
.wykres span.line:nth-of-type(7) {
	left: 66.4%;
}
.wykres span.line:nth-of-type(8) {
	left: 85%;
}
.wykres span.line {
	position: absolute;
	width: 2px;
	height: 74.7%;
	bottom: 11%;
	background-color: #000;
}
.wykres.animate_now span.dot:nth-of-type(1) {
	bottom: 36.4%;
}
.wykres.animate_now span.dot:nth-of-type(2) {
	bottom: 67%;
}
.wykres.animate_now span.dot:nth-of-type(3) {
	bottom: 49%;
}
.wykres.animate_now span.dot:nth-of-type(4) {
	bottom: 31.3%;
}
.wykres.animate_now span.dot:nth-of-type(5) {
	bottom: 25.5%;
}
.wykres span,
.wykres.animate_now span {
	-webkit-transition: bottom 1s linear;
	-o-transition: bottom 1s linear;
	transition: bottom 1s linear;
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}
.wykres img[src*="wykres1"] {
    position: relative;
    display: block;
	width: 100%;
    /* max-width: 1290px; */
    /* width: 95%; */
}
.wykres .wykres2 {
	height: 59.5%;
    position: absolute;
	bottom: 11%;
	width: 100%;
	overflow-y: hidden;
}
.wykres img[src*="wykres2"] {
	width: 100%;
	/*-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	-o-transform: translateY(100%);
	transform: translateY(100%);*/
	opacity: 0;
}
.wykres.animate_now img[src*="wykres2"] {
	/*-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);*/
	opacity: 1;
}

.wykres img[src*="wykres2"],	
.wykres.animate_now img[src*="wykres2"] {
	-webkit-transition: opacity 1s linear;
	-o-transition: opacity 1s linear;
	transition: opacity 1s linear;
	-webkit-transition-delay: .2s;
	-o-transition-delay: .2s;
	transition-delay: .2s;
}
.symptoms .row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.symptoms img {
    margin: 0 auto;
    display: block;
}
.symptoms p {
	color: #4E4E4E;
	font-size: 24px;
}
[data-elem="2"] > .row {
	-ms-align-items: center;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
[data-elem="2"] .text_area {
    position: absolute;
    top: 0;
    height: 100%;
	-ms-align-items: center;
	align-items: center;
	color: #fff;
	padding-top: 30px;
}
.area {
	position: relative;
}
.app_1 {
	max-width: 710px;
}
/*.app_2 {
	max-width: 960px;
}*/
[data-elem="2"] img[src*="app_1"] {
	width: 100%;
}
/*[data-elem="2"] img[src*="app_2"] {
	max-width: 960px;
	width: 100%;
}*/
[data-elem="2"] img[src*="ico"]{
	max-width: 118px;
	margin: 0 auto;
	width: 100%;
}
[data-elem="2"] > .row:first-of-type .text_area {
    right: 0;
    max-width: 356px;
    text-align: right;
    padding-right: 50px;
    float: right;
}
[data-elem="2"] > .row:nth-of-type(2) .text_area {
    left: 0;
    max-width: 456px;
    text-align: left;
    padding-left: 50px;
}
[data-elem="2"] > p,
[data-elem="3"] > p,
[data-elem="4"] > p,
.subpage section[data-id="4"] p {
    text-align: center;
    max-width: 1050px;
    display: block;
}
[data-elem="3"] > p {
	max-width: none;
}
[data-elem="3"] > .row {
	max-width: 1080px;
	margin: 0 auto;
}
[data-elem="3"] p{
	text-align: center;
}
[data-elem="3"] input[type="radio"]{
	display: none;
}
[data-elem="3"] .ans {
	background-color: #EAEAEA;
	text-align: center;
	margin: 30px auto;
	padding: 20px 0;
	font-weight: 300;
	max-width: 220px;
    width: 100%;
	display: block;
}
[data-elem="3"] input[type="radio"]:checked + label.ans{

	background-color: #1C9351;
	font-weight: 700;
	color: #fff;
}
.btn.next {
	margin: 0;
}
[data-elem="4"] p,
.subpage section[data-id="4"] h2,
.subpage#czerwona_koniczyna section[data-id="3"] .adv p,
.subpage#czerwona_koniczyna section[data-id="4"] p {
    max-width: 550px;
	font-size: 36px;
	text-align: center;
	margin: 0 auto;
	
}
.subpage#czerwona_koniczyna section[data-id="3"] .adv h2,
.subpage section[data-id="4"] h2 {
	width: 100%;
	text-align: center;
	max-width: none;
}
[data-elem="4"] >.btn,
.subpage#czerwona_koniczyna section[data-id="3"] .adv .btn,
.subpage section[data-id="4"] .btn {
    margin: 40px auto;
	display: block;
}
.footer {
    background-color: #00744c;
    color: #fff;
    justify-content: flex-end;
	text-align: right;
}
.footer .contener {
    margin: 0 auto;
    display: block;
    max-width: 1430px;
    width: 95%;
	-ms-align-items: center;
	align-items: center;
	justify-content: space-between;
}
.footer a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	margin-bottom: 50px;
    display: inline-block;
}



.subpage {
	font-size: 16px;
}
.subpage section .contener {
    max-width: 960px;
	margin: 0 auto;
}
.subpage section[data-id="1"] h2 {
	margin-top: 0;
}
.subpage#o_produkcie .row.contener h2,
.subpage#home .row.contener h2 {
    font-size: 35px;
    margin: 50px 0 20px;
    color: #CE0671;
    font-weight: 700;
}
.subpage#o_produkcie .row.contener,
.subpage#home .row.contener {
    max-width: 1430px;
}
.subpage .section_title {
    margin: 0;
}
#o_produkcie img[src*="flower_2"],
#home img[src*="flower_2"] {
    position: absolute;
    max-width: 250px;
    left: -130px;
}
#o_produkcie section[data-id="2"] .btn,
#home section[data-id="2"] .btn {
    margin-top: 55px;
	display: block;
}
.subpage section {
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
}
#o_produkcie section[data-id="2"],
#home section[data-id="2"],
#czerwona_koniczyna section[data-id="2"]  {
    background-image: url(/gfx/bg_3.png);
}
#o_produkcie section[data-id="2"],
#home section[data-id="2"] {
	padding-bottom: 100px;
	display: block;
	background-image: url(/gfx/koniczyna_tlo.png);
    background-size: 50%;
}
#czerwona_koniczyna section[data-id="2"] {
	padding: 50px 0 100px;
	background-image: url(/gfx/koniczyna_tlo.png);
    background-size: 50%;
}
#o_produkcie section[data-id="3"],
#home section[data-id="3"]  {
    background-image: url(/gfx/bg_4a.png);
}
#o_produkcie section[data-id="4"],
#home section[data-id="4"]  {
    background-image: url(/gfx/bg_5.png);
}
#o_produkcie section[data-id="4"] h2,
#home section[data-id="4"] h2 {
    margin: 35px 0 20px;
}
#czerwona_koniczyna section[data-id="3"] {
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
	background-image: url(/gfx/bg_4.png);
    background-position: left top;
	-webkit-background-size: 40%;
	background-size: 40%;
}
#czerwona_koniczyna section[data-id="3"] > *:first-child {
	min-height: 60vh;
}
#czerwona_koniczyna section[data-id="3"] >.adv {
	padding: 90px 0;
	width: 100%;
	position: relative;
}
#czerwona_koniczyna section[data-id="4"] {
    position: relative;
    padding: 90px 0;
    flex-direction: column;
    justify-content: center;
}
#czerwona_koniczyna .container {
    position: relative;
}
#czerwona_koniczyna img[src*="packshot_2"] {
    max-width: 550px;
    right: 0px;
    bottom: 0px;
}

.subpage section[data-id="2"],
.subpage section[data-id="3"],
.subpage section[data-id="4"],
.subpage section[data-id="5"]{
	min-height: 95vh;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
	-ms-align-items: center;
	align-items: center;
}
.subpage h1,
.subpage h2 {
    font-size: 25px;
    margin: 50px 0 20px;
}

.subpage p.note {
    font-size: 10px;
    margin-top: 50px;
}


#faq section[data-id="2"] {
    background-image: url(/gfx/bg_1.png);
    -webkit-background-size: 50% auto;
    background-size: 50% auto;
    background-position: left center;
	padding-top: 80px;
}
#faq div#questions {
    margin-top: 45px;
    border-left: 2px solid #CE0671;
    max-width: 785px;
    display: block;
    padding-left: 50px;
    margin-left: 50px;
}
#faq p[data-question] {
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
	margin-top: 25px;
	padding: 10px 25px;
}
#faq p[data-question] span {
    display: none;
}
#faq p.answer {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 25px !important;
    border: none;
	background-color: transparent;
}
#faq img[src*="packshot_1"] {
    max-width: 708px;
    width: 100%;
    position: absolute;
    bottom: 0;
}
#o_produkcie img[src*="packshot_shadow"],
#home img[src*="packshot_shadow"] {
	max-width: 500px;
    width: 100%;
    margin: 55px auto 0;
    display: block;
}

img[src*="packshot_2"] {
    margin: 0 auto;
    display: block;
}

img[src*="wykres3"] {
    max-width: 320px;
	width: 95%;
}
img[src*="910"] {
    max-width: 217px;
	width: 95%;
}

#o_produkcie [data-id="3"] .contener,
#home [data-id="3"] .contener {
    max-width: 1430px;
    width: 100%;
}
#test {
    font-size: 36px;
	max-width: 986px;
    width: 100%;
    display: block;
    margin: 0 auto;
}
#test > p {
    max-width: 740px;
    width: 100%;
    margin: 0 auto 50px;
    display: block;
}
#test .questions [class*="pyt_"] {
	display: none;
}
#test .questions [class*="pyt_"].current {
	display: block;
}
#test > .row {
	max-width: 1080px;
	margin: 0 auto;
}
#test h2,
#test p{
	text-align: center;
}
#test p.next {
    max-width: 400px;
    margin: 0 auto 50px;
    background-color: #fff;
    border: 2px solid #CE0671;
    padding: 10px 20px;
	font-size: 25px;
	cursor: pointer;
}
#test p.next:hover {
    background-color: #CE0671;
    color: #fff;
}
#test input[type="radio"]{
	display: none;
}
#test .ans {
    background-color: #EAEAEA;
    text-align: center;
    margin: 30px auto;
    padding: 8px;
    font-weight: 300;
    max-width: 300px;
    width: 100%;
    display: block;
    min-width: 250px;
    font-size: 26px;
    border: 2px solid #1C9351;
}
#test input[type="radio"]:checked + label.ans{
	background-color: #1C9351;
	font-weight: 700;
	color: #fff;
}
#test .questions {
    margin-bottom: 50px;
}
.btn.next {
	margin: 0;
}
#test .result {
    max-width: 960px;
    margin: 0 auto;
}
#test .result p {
    font-size: 20px;
}
.subpage .section_title h1,
.subpage .section_title h2 {
    font-size: 36px;
}
[data-elem*="5"] [class*="col"] img {
	width: 100%;
}
[data-elem*="5"] [class*="col"] p {
    line-height: 1.3;
	text-align: left;
	padding: 0 20px;
	font-size: 1.25vw;
}
[data-elem*="5"] .row.dflex {
	margin: 20px 0;
}
[data-elem*="5"] .row.dflex [class*="col"] {
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: inline-flex;
	-ms-align-items: center;
	align-items: center;
	padding: 0;
}
[data-elem="5"] .text_area {
    max-width: 456px;
    text-align: left;
    padding-left: 22px;
    position: absolute;
    top: 0;
    height: 100%;
    -ms-align-items: center;
    align-items: center;
    color: #fff;
    padding-top: 30px;
	left: 42%;
}
[data-elem="5"] .text_area p{
	padding: 0;
}

.subpage#kontakt section[data-id="1"] h2 {
    font-size: 50px;
	margin-left: 15px;
}

.subpage#kontakt section[data-id="1"] p {
    font-size: 28px;
}

.error404.subpage {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
    justify-content: center;
    min-height: 78vh;
	line-height: 2;
}

.error404 h2 {
    font-size: 70px;
    color: #000;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}
.error404 p {
    font-size: 40px;
    color: #000;
    text-align: center;
}
.error404 a {
    background-color: #CE0671;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
    max-width: 260px;
    width: 100%;
    padding: 10px 0;
    display: block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
	margin: 50px auto;
	text-transform: uppercase;
}
#home [data-elem="4"] p {
    font-size: 25px;
    max-width: 632px;
}
#menopauza section[data-id="2"] .text_area p {
    font-size: 30px;
}
#menopauza [data-id="3"] [data-elem="4"] {
	width: 100%;
}
#menopauza [data-id="3"] [data-elem="4"] p {
    max-width: 960px;
}
#menopauza [data-id="4"] [data-elem="5"] p {
	text-align: left;
}
#menopauza .section_title h1,
#menopauza .section_title h2 {
	text-align: center;
	font-weight: 300;
}
#menopauza [data-id="3"] [data-elem="4"] .row {
    max-width: 1400px;
    margin: 45px auto;
}
#faq a.btn {
    margin: 50px auto;
    display: block;
}
img[src*="app_3a"] {display: none;}
img[src*="app_6a"] {
	max-width: 350px;
}
.bggreen {
	background-color: #1C9351;
}
.bggreen p {
	color: #fff;
}
img[src*="note-"] {
	max-width: 817px;
	width: 100%;
	display: block;
	margin: 25px auto;
}

.advantage-list {
	margin: 0;
	padding: 0;
}

.advantage-list li {
	font-size: 22px;
	padding: 15px;
	position: relative;
	margin: auto;
	max-width: 860px;
}

.advantage-list li:before {
	content: attr(data-id);
	position: absolute;
	left: 15px;
	top: 50%;
	color: #ce0671;
	font-size: 500%;
	font-weight: 700;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	opacity: .3;
}

.text-upper {
	text-transform: uppercase;
}


.custom-btn-menu{
    background-color: #CE0671;
    color: #fff;
    font-size: 16px;
    border-radius: 0;
    width: 100%;
    padding: 10px 20px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border:2px solid #CE0671;
    /* border-radius: 30px; */
    &:hover{
        background-color: white;
        color: #ce0671 !important;
    }

    @media(max-width:768px){
        border-radius: 0;
        color: white !important;
        border-top:0;
    }
}


#gdziekupic{
    @media(max-width:768px){
        text-align: center;
    }


    .borderdiv{
        border: 1px solid #CE0671;
        /* border-radius: 30px; */
        padding: 40px 20px;
        margin: 20px 0;
        text-align: center;
            .heading{
                font-size: 25px!important;
                color:#CE0671;
                font-weight: bold;
            }
        }
        .text{
            margin-bottom: 15px;
        }
        a{
            color: #CE0671;
            font-size: 16px;
            text-decoration: none;
            padding:5px 15px;
            border: 2px solid #CE0671;
            /* border-radius: 15px; */
            &:hover{
                background-color: #CE0671;
                color: white;
            }
        }
}

