@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap"); :root{
--white-color: #fff;
--black-color: #272727;
--grey-color: #737373;
--background-white-color: #FAFEFF;
--background-cream-color: #FFF5E2;
--blue-color: #313150;
--cream-color: #FFF5E2;
--beige-color: #D2AA68;
--yellow-color: #FFD900;
}
html {
overflow-x: hidden;
}
body{
overflow-x: hidden;
background-color: var(--background-white-color);
padding-right: 0 !important;
}
header + section {
margin-top: 70px;
}
section{
padding: 75px 0;
}
.container {
max-width: 1440px;
width: 100%;
}
h1,h2,h3,h4,h5{
font-family: "Libre Baskerville", serif;
font-weight: 400;
}
h1,h2,h3,h4,h5,p{
color: var(--blue-color);
}
p, ul{
font-family: "Work Sans", sans-serif;
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: var(--black-color);
}
.padding_zero {
padding: 0;
}
.margin_zero{
margin: 0;
} 
img {
height: auto;
max-width: 100%;
}
.flex{
display: flex;
}
.row.flex {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.row.flex::before, .row.flex::after {
display: none
}
.flex.center { 
-webkit-box-align: center; 
-ms-flex-align: center; 
align-items: center;
}
.row{
margin-left: -20px;
margin-right: -20px;
}
.row > div {
padding-left: 20px;
padding-right: 20px;
}
[id] {
scroll-margin-top: 100px;
}
a {
font-size: 16px;
line-height: 24px;
font-family: "Work Sans", sans-serif;
text-decoration: underline;
color: var(--blue-color);
}
a:hover{
text-decoration: none;
color: var(--black-color);
}
p img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.button_blue{
background-color: var(--blue-color);
color: var(--white-color) !important;
font-size: 16px;
border-radius: 20px;
border: none;
padding: 10px 24px;
text-decoration: none;
}
.button_blue:hover {
background-color: var(--beige-color);
color: var(--blue-color)  !important;
transition: 0.3s;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);
}
.button_white{
background-color: var(--background-white-color);
font-size: 16px;
border-radius: 20px;
border: 1px solid var(--blue-color);
padding: 10px 24px;
}
.button_white:hover {
background-color: var(--blue-color);
color: var(--white-color);
transition: 0.3s;
}
.wrapper_buttons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
column-gap: 24px;
row-gap: 16px;
}
.wrapper_buttons a:first-child{
background-color: var(--blue-color);
color: var(--white-color);
font-size: 16px;
border-radius: 20px;
border: none;
padding: 10px 24px;
outline: none;
text-decoration: none;
transition: 0.3s;
}
.wrapper_buttons a:first-child:hover{
background-color: var(--beige-color);
color: var(--blue-color);
transition: 0.3s;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);
}
.wrapper_buttons a{
background-color: var(--background-white-color);
font-size: 16px;
border-radius: 20px;
border: 1px solid var(--blue-color);
padding: 10px 24px;
outline: none;
text-decoration: none;
transition: 0.3s;
}
.wrapper_buttons a:hover{
background-color: var(--blue-color);
color: var(--white-color);
transition: 0.3s;
}
.heading{
margin-bottom: 40px;
} .header {
position: fixed;
top: 0;
z-index: 100;
background-color: var(--background-white-color);
width: 100%;
}
.whrapper_header {
display: flex;
align-items: center;
padding-top: 15px;
padding-bottom: 15px;
height: 70px;
justify-content: space-between;
}
.wrapper_header_logo a{
width: 200px;
}
.wrapper_header_logo{
max-width: 250px;
min-width: 10%;
}
.logo{
width: 210px;
}
.navmenu{
display: flex;
list-style-type: none;
margin: 0;
padding: 0;
gap: 35px;
}
.navmenu li{
position: relative;
}
.navmenu li a{
display: flex;
font-size: 18px;
color: #16163F;
align-items: center;
text-decoration: none;
}
.navmenu li a::after {
content: '';
display: block;
position: absolute;
bottom: -3px; left: 30;
height: 1.5px;
width: 0;
background: var(--blue-color-500);
transition: 0.3s ease;
}
.navmenu li a:hover::after {
width: 100%; }
.navmenu li a span{
transform: rotate(90deg);
margin-left: 5px;
}
.navmenu li:hover > ul{
opacity: 1;
visibility: visible;
}
.navmenu > li > ul{
list-style: none;
padding: 17px 20px 8px 20px;
opacity: 0;
margin: 0;
visibility: hidden;
position: absolute;
top: 39px;
z-index: 1;
background-color: var(--blue-color-500);
transition: all .3s ease-in-out;
white-space: nowrap;
}
.navmenu > li > ul li {
margin-bottom: 11px;
}
.navmenu > li > ul li a{
display: flex;
font-size: 18px;
color: #FFFFFF;
height: auto;
align-items: center;
margin: 0;
}
.navmenu > li > ul li a::after {
background: #FFFFFF;
}
.open_menu{
display: none;
} .wrapper_text h1{
font-size: 80px;
line-height: 92px;
margin-bottom: 12px;
}
.wrapper_text h2{
font-size: 55px;
line-height: 69px;
}
.wrapper_text h3{
font-size: 25px;
line-height: 37.5px;
}
.wrapper_text ul{
margin-bottom: 0;
}
.wrapper_text ul li p{
margin: 0;
min-height: 32px;
}
.section_text .wrapper_text{
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.section_text .wrapper_text p:last-of-type{
margin: 0;
} .wrapper_text_img_all{
display: flex;
flex-direction: row;
flex-wrap: wrap;
row-gap: 30px;
align-items: center;
}
.wrapper_text_img {
display: flex;
justify-content: center;
align-items: center;
}
.wrapper_text_img.mala img{
max-height: 250px;
}
.wrapper_text_img.stredni img{
max-height: 350px;
}
.wrapper_text_img.velka img{
max-height: 500px;
} .section_text_img_two .wrapper_text_img {
width: 200px;
margin-left: auto;
margin-right: auto;
}
.section_text_img_two .wrapper_text{
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-align: center;
} .section_intro_home_page {
position: relative;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/circle_intro.png);
background-size: auto 100%;
background-position: center;
background-repeat: no-repeat;
min-height: 780px;
display: flex;
align-items: center;
}
.section_intro_home_page::before{
content: "";
position: absolute;
top: 0;
left: 0;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/intro_circle_left.png);
background-size: auto;
background-position: center;
background-repeat: no-repeat;
height: 100%;
width: 315px;
}
.section_intro_home_page::after{
content: "";
position: absolute;
top: 0;
right: 0;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/intro_circle_right.png);
background-size: auto;
background-position: center;
background-repeat: no-repeat;
height: 100%;
width: 315px;
}
.wrapper_intro_home_page{
max-width: 880px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.wrapper_intro_home_page .wrapper_text p{
margin: 0;
}
.wrapper_intro_home_page .wrapper_text{
margin-bottom: 32px;
}
.section_intro_home_page .wrapper_buttons{
column-gap: 20px;
justify-content: center;
}
.section_intro_home_page .wrapper_buttons a:nth-child(2){
background-color: var(--beige-color);
border: none;
} .section_intro_second_page {
position: relative;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/intro_second_background.png);
background-size: auto;
background-position: center;
background-repeat: no-repeat;
min-height: 450px;
display: flex;
align-items: center;
background-color: var(--background-cream-color);
} .wrapper_about_me_points {
display: flex;
justify-content: space-between;
column-gap: 20px;
margin: 40px 0;
}
.item_about_me_point{
flex: 1;
}
.item_about_me_point_icon{
width: 40px;
height: 40px;
margin-bottom: 16px;
}
.item_about_me_point p{
margin: 0;
}
.item_about_me_point_label{
font-weight: bold;
margin-bottom: 4px;
}
.section_about_me .wrapper_text_img {
position: relative;
display: flex;
justify-content: center;
align-items: center;
max-width: 615px;
margin-left: auto;
margin-right: auto;
}
.section_about_me .wrapper_text_img img{
-webkit-mask-image: linear-gradient(rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.02) 100%);
mask-image: linear-gradient(rgba(255, 255, 255, 1) 80%, rgba(255, 255, 255, 0.02) 100%);
}
.section_about_me .wrapper_text_img::before {
position: absolute;
content: "";
width: 100%;
height: 100%;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/circle_intro.png.);
background-size: contain;
background-position: center;
background-repeat: no-repeat;
z-index: -1;
} .section_cards_main .wrapper_text{
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.section_cards_main .wrapper_cards_main {
position: relative;
}
.section_cards_main .wrapper_cards_main::before{
content: "";
position: absolute;
top: -125px;
left: -90px;
width: 460px;
height: 460px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/circle_intro.png);
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: top center;
z-index: -1;
}
.wrapper_cards_main{
display: flex;
justify-content: space-between;
column-gap: 40px;
}
.item_cards_main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background: var(--cream-color);
padding: 20px;
box-shadow: 0px 4px 12px 0px rgba(231,209,172,0.25);
border-radius: 20px;
}
.item_cards_main_icon{
width: 60px;
height: 60px;
margin-bottom: 20px;
}
.item_cards_main p{
margin-bottom: 0;
}
.item_cards_main_label{
font-weight: bold;
margin-bottom: 12px;
}
.section_cards_main .wrapper_buttons{
justify-content: center;
} .section_cards_ebook .wrapper_text.heading{
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.section_cards_ebook .wrapper_cards_main {
position: relative;
}
.section_cards_ebook .wrapper_cards_main::before{
content: "";
position: absolute;
top: -175px;
right: -200px;
width: 460px;
height: 460px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/circle_intro.png);
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: top center;
z-index: -1;
}
.section_cards_ebook .item_cards_main{
row-gap: 20px;
justify-content: space-between;
}
.section_cards_ebook .item_cards_main > div{
display: flex;
flex-direction: column;
align-items: center;
row-gap: 20px;
}
.section_cards_ebook .item_about_me_point_icon {
width: 175px;
height: 175px;
margin: 0;
}
.section_cards_ebook .item_about_me_point_icon img{
max-height: 100%;
}
.item_cards_ebook_label{
font-weight: bold;
margin-bottom: 12px;
} .section_description_cards .row{
align-items: center;
}
.wrapper_description_cards {
position: relative;
display: flex;
column-gap: 22px;
height: 100%;
min-height: 700px;
align-items: flex-end;
}
.wrapper_description_cards::before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/circle_dark.png);
background-size: contain;
background-repeat: no-repeat;
background-position: center;
z-index: -1;
}
.wrapper_description_cards .item_description_card:first-of-type{
position: relative;
top: -90px;
}
.item_description_card{
border-radius: 20px;
padding: 20px;
flex: 1;
box-shadow: 0px 4px 12px 0px rgba(231,209,172,0.25);
}
.item_description_card p{
margin-bottom: 0px;
}
.item_description_card p:first-of-type{
font-weight: bold;
margin-bottom: 8px;
}
.wrapper_description_cards .item_description_card:first-of-type{
background: var(--blue-color);
}
.wrapper_description_cards .item_description_card:first-of-type p{
color: var(--background-white-color);
}
.wrapper_description_cards .item_description_card:last-of-type{
background: var(--background-cream-color);
} .section_text_cards .row{
align-items: center;
}
.wrapper_text_cards {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 40px;
}
.item_text_cards{
background-color: var(--background-cream-color);
width: calc(50% - 20px);
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
border-radius: 20px;
text-align: center;
}
.item_text_cards p{
margin: 0;
} .section_service .row{
align-items: center;
}
.wrapper_service_points_title{
margin-bottom: 20px;
}
.section_service .wrapper_text ul {
position: relative;
list-style-type: none;
display: flex;
flex-direction: column;
row-gap: 12px;
border-radius: 20px;
padding-left: 0;
}
.section_service .wrapper_text ul li {
display: flex;
margin-left: 52px;
flex-direction: column;
row-gap: 4px;
}
.section_service .wrapper_text ul li p:first-of-type{
font-weight: bold;
}
.section_service .wrapper_text ul li::before {
content: "";
position: absolute;
left: 0px;
width: 32px;
height: 32px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/yes_cream.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
}
.section_service .wrapper_text ul li p {
min-height: unset;
}
.section_service .wrapper_text_img img{
max-height: 500px;
}
.section_service .wrapper_buttons{
padding-top: 40px;
} .section_text_points .row{
align-items: center;
}
.section_text_points .wrapper_text ul {
position: relative;
list-style-type: none;
display: flex;
flex-direction: column;
row-gap: 16px;
padding: 24px;
border-radius: 20px;
background: var(--background-cream-color);
}
.section_text_points .wrapper_text ul li{
margin-left: 52px;
}
.section_text_points .wrapper_text ul li::before{
content: "";
position: absolute;
left: 20px;
width: 32px;
height: 32px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/yes_cream.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
} .section_text_points_two{
background: var(--background-cream-color);
position: relative;
}
.section_text_points_two::before {
content: "";
position: absolute;
top: 0;
left: 0;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/intro_circle_left.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
height: 100%;
width: 270px;
}
.section_text_points_two::after {
content: "";
position: absolute;
top: 0;
right: 0;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/intro_circle_right.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
height: 100%;
width: 270px;
}
.section_text_points_two .container{
position: relative;
z-index: 1;
}
.section_text_points_two .wrapper_text.heading{
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.section_text_points_two .wrapper_text ul {
position: relative;
list-style-type: none;
display: flex;
flex-direction: column;
row-gap: 16px;
padding: 24px;
border-radius: 20px;
background: var(--blue-color);
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.section_text_points_two .wrapper_text ul li {
margin-left: 52px;
}
.section_text_points_two .wrapper_text ul li p{
color: var(--background-white-color);
}
.section_text_points_two .wrapper_text ul li::before {
content: "";
position: absolute;
left: 20px;
width: 32px;
height: 32px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/yes_cream.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
}
.section_text_points_two .wrapper_buttons{
justify-content: center;
margin-top: 40px;
}
.section_text_points_two .wrapper_buttons a:nth-child(2){
background-color: var(--background-cream-color);
}
.section_text_points_two .wrapper_buttons a:nth-child(2):hover{
background-color: var(--blue-color);
} .wrapper_review_cards{
display: flex;
padding-top: 75px;
gap: 40px;
}
.wrapper_review_card {
display: flex;
flex-direction: column;
align-items: center;
background: var(--background-cream-color);
border-radius: 20px;
padding: 20px;
position: relative;
text-align: center;
box-shadow: 0px 4px 12px 0px rgba(231, 209, 172, 0.25);
}
.wrapper_review_card_icon{
position: absolute;
width: 150px;
height: 150px;
top: -75px;
border-radius: 100%;
border: 10px solid var(--background-cream-color);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.wrapper_review_card_stars{
margin-top: 60px;
}
.section_review .wrapper_review_cards .wrapper_text p:last-of-type{
margin: 0;
font-weight: bold;
} .section_packages .wrapper_text.heading{
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.wrapper_packages{
display: flex;
gap: 40px;
}
.wrapper_package{
background: var(--background-cream-color);
border-radius: 20px;
padding: 20px;
box-shadow: 0px 4px 12px 0px rgba(231, 209, 172, 0.25);
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.wrapper_packages .wrapper_package:nth-child(2){
background: var(--blue-color);
padding: 40px 20px;
}
.wrapper_packages .wrapper_package:nth-child(2) h3{
color: var(--beige-color);
}
.wrapper_packages .wrapper_package:nth-child(2) h4,
.wrapper_packages .wrapper_package:nth-child(2) p,
.wrapper_packages .wrapper_package:nth-child(2) ul li{
color: var(--background-white-color);
}
.wrapper_packages .wrapper_package:nth-child(2) a{
background: var(--beige-color);
}
.wrapper_packages .wrapper_package:nth-child(2) .wrapper_package_line{
background: var(--beige-color);
}
.wrapper_package:nth-child(2) .item_packeges_yes::before{
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/yes_cream.svg);
}
.wrapper_package_line{
height: 1px;
width: 80%;
background: var(--blue-color);
margin: 16px 0;
}
.wrapper_package .wrapper_text p{
margin: 0;
}
.wrapper_package ul{
margin: 0 0 0 32px;
padding: 0;
display: flex;
flex-direction: column;
row-gap: 12px;
}
.wrapper_package ul li{
list-style-type: none;
position: relative;
}
.item_packeges_yes::before{
content: "";
position: absolute;
left: -32px;
width: 24px;
height: 24px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/yes_blue.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
}
.section_packages .wrapper_buttons{
margin-top: 20px;
}
.section_packages .wrapper_buttons a{
width: 100%;
text-align: center;
} .accordion-button::after{
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/faq_arrow_down.svg);
background-size: cover;
flex-shrink: 1;
height: 24px;
width: 24px;
}
.accordion-button:not(.collapsed)::after {
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/faq_arrow_up.svg);
transform: rotate(0deg);
}
.accordion-button:focus {
box-shadow: none;
}
.accordion-button:not(.collapsed) {
color: var(--beige-color);
background: none !important;
box-shadow: none;
}
.accordion-item {
color: var(--black-color);
background: none;
border-bottom: 1px solid var(--blue-color);
}
.accordion-flush>.accordion-item:last-child {
border-bottom: 1px solid var(--blue-color);
}
.accordion-item:has(.accordion-button:not(.collapsed)){
border-bottom: 1px solid var(--beige-color);
}
.accordion-button{
padding: 16px 0;
color: var(--blue-color);
font-weight: bold;
column-gap: 16px;
background-color: var(--background-white-color);
}
.accordion-body {
padding: 0 0 16px 0;
} .wrapper_gallery_swiper_all {
position: relative;
}
.item_gallery {
width: 330px;
height: 285px;
outline: none;
}
.item_gallery img {
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 5px;
}
.item_gallery_video {
width: 330px;
height: 285px;
}
.item_gallery_video iframe {
height: 100%;
border-radius: 5px;
}
.section_gallery .swiper_gallery .item_gallery img {
filter: grayscale(0%);
}
.swiper_gallery {
padding-bottom: 36px;
display: flex;
justify-content: center;
}
.swiper_gallery .swiper-wrapper {
flex-direction: row;
flex-wrap: wrap;
row-gap: 40px;
}
.wrapper_swiper_gallery_slide {
display: flex;
justify-content: center;
}
.wrapper_gallery_swiper_all .controls {
display: flex;
justify-content: space-between;
position: absolute;
top: calc(50% - 43px);
pointer-events: none;
width: calc(100% - 30px);
}
.wrapper_gallery_swiper_all .controls div {
cursor: pointer;
pointer-events: all;
}
.wrapper_gallery_swiper_all .prev {
position: relative;
left: -125px;
}
.wrapper_gallery_swiper_all .next {
position: relative;
right: -125px;
}
.wrapper_gallery_swiper_all .prev img {
width: 50px;
max-height: 65px;
}
.wrapper_gallery_swiper_all .next img {
width: 50px;
max-height: 65px;
}
.swiper_gallery .swiper-pagination {
height: 16px;
padding: 0;
bottom: 0;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
}
.swiper_gallery .swiper-pagination-bullet {
background: var(--beige-color);
width: 16px;
height: 16px;
} .section_gallery_one_row .item_gallery{
width: unset;
height: 300px;
}
.gallery_one_row {
padding-bottom: 36px;
display: flex;
justify-content: center;
}
.gallery_one_row .swiper-wrapper {
flex-direction: row;
row-gap: 40px;
}
.gallery_one_row .swiper-pagination {
height: 16px;
padding: 0;
bottom: 0;
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
}
.gallery_one_row .swiper-pagination-bullet {
background: var(--beige-color);
width: 16px;
height: 16px;
} .wrapper_four_cards {
display: flex;
}
.wrapper_four_card{
display: flex;
flex-direction: column;
align-items: center;
row-gap: 20px;
padding: 20px;
background: var(--background-cream-color);
border-radius: 20px;
flex: 1;
}
.wrapper_four_card .wrapper_text p{
margin: 0;
text-align: center;
}
.wrapper_four_card .wrapper_text p:first-of-type{
margin-bottom: 8px;
font-weight: bold;
}
.wrapper_four_card .wrapper_text_img{
width: 50px;
height: 50px;
} .section_ebook_download_row{
box-shadow: 0px 4px 12px 0px rgba(231, 209, 172, 0.25);
background: var(--background-cream-color);
align-items: center;
border-radius: 20px;
}
.wrapper_ebook_download_content_all{
background: var(--background-cream-color);
padding: 40px;
}
.wrapper_ebook_download_img_all{
background: var(--background-cream-color);
padding: 40px;
}
.ebook_download_label{
font-size: 32px;
color: var(--beige-color);
line-height: 48px;
}
.ebook_download_form_label{
color: var(--blue-color);
font-weight: bold;
}
.noptin-optin-form-wrapper{
margin: 0;
}  .section_contact .wrapper_text.heading{
max-width: 800px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
.wrapper_contact_cards {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
flex-direction: row;
gap: 24px;
}
.wrapper_contact_card {
width: 250px;
background: var(--background-cream-color);
border-radius: 20px;
padding: 20px;
box-shadow: 0px 4px 12px 0px rgba(231, 209, 172, 0.25);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
row-gap: 20px;
}
.wrapper_contact_card .wrapper_text p{
margin: 0px;
}
.wrapper_contact_card .wrapper_text a{
margin: 0px;
}
.wrapper_contact_card p.contact_card_title{
margin-bottom: 12px;
font-weight: bold;
}
.item_contact_card_icon {
width: 60px;
height: 60px;
}
.item_contact_card_icon img{
max-height: 100%;
} .section_contact_form form.wpcf7-form{
padding: 40px;
border-radius: 20px;
background: var(--background-cream-color);
}
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel,
input.wpcf7-form-control.wpcf7-text {
width: 100%;
background: var(--background-cream-color);
border: 1px solid var(--beige-color);
border-radius: 20px;
padding: 12px 16px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
width: 100%;
background: var(--background-cream-color);
border: 1px solid var(--beige-color);
border-radius: 20px;
padding: 12px 16px;
}
input:focus, 
textarea:focus,
select:focus {
outline: none !important; }
select.wpcf7-form-control.wpcf7-select {
width: 100%;
background: var(--background-cream-color);
border: 1px solid var(--beige-color);
border-radius: 20px;
padding: 12px 16px;
}
.contact_form_button{
margin-top: 20px;
}
.wpcf7-response-output {
border: 1px solid var(--blue-color) !important;
border-radius: 20px;
width: fit-content;
margin-left: auto !important;
margin-right: auto !important;
} .modal {
padding: 0 !important;
}
.modal_service_packages_content_wrapper{
position: relative;
}
.wrapper_inquiry {
padding: 20px;
}
.close_modal {
position: absolute;
width: 35px;
height: 35px;
right: 20px;
top: 20px;
cursor: pointer;
}
#modalFeatures {
margin: 0 0 20px 32px;
padding: 0;
display: flex;
flex-direction: column;
row-gap: 12px;
}
#modalFeatures li {
list-style-type: none;
position: relative;
}
#modalFeatures li::before {
content: "";
position: absolute;
left: -32px;
width: 24px;
height: 24px;
background-image: url(//mapa-zivota.cz/wp-content/themes/lucky_mapa_zivota/img/yes_blue.svg);
background-size: 100% 100%;
background-repeat: no-repeat;
} .section_blog .row{
row-gap: 40px;
}
.item_blog_card_all{
display: flex;
}
.item_blog_card{
display: flex;
flex-direction: column;
text-decoration: none;
padding: 0;
width: 100%;
}
.item_blog_card_img{
width: 100%;
height: 275px;
}
.item_blog_card_img img{
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 20px 20px 0 0;
}
.item_blog_card_content{
background: var(--background-cream-color);
border-radius: 0 0 20px 20px;
padding: 20px;
flex: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.item_blog_card_content h3,
.item_blog_card_content p{
margin-bottom: 20px;
}
.item_blog_card_content_price{
font-size: 25px;
font-family: "Prata", serif;
font-weight: 400;
line-height: 37.5px;
}
.item_blog_card_content .button_blue{
width: 100%;
}
.wrapper_action_label_date {
display: flex;
background: var(--background-cream-color);
justify-content: space-between;
padding: 20px 20px 0 20px;
}
.wrapper_action_date{
display: flex;
}
.wrapper_action_date_icon{
width: 24px;
height: 24px;
}
.nejnovejsi_prispevky_swiper .swiper-pagination-bullet {
background: var(--beige-color);
width: 15px;
height: 15px;
}
.wrapper_blog_single_link_back {
display: flex;
text-decoration: none;
padding-bottom: 40px;
}
.wrapper_blog_single_link_back p{
margin: 0;
} .wrapper_blog_single_content img{
max-width: 100%;
}
.wrapper_three_nejnovejsi_prispevky_swiper{
display: none;
}
.section_content .wrapper_blog_single_content ul{
margin-bottom: 1rem;
}
.wrapper_block_single_autor_newsletter_all{
position: -webkit-sticky;
position: sticky;
top: 105px;
padding: 24px;
border-radius: 20px;
background-color: var(--background-cream-color);
box-shadow: 0px 4px 12px 0px rgba(231, 209, 172, 0.25);
}
.wrapper_block_single_autor_newsletter_line {
width: 100%;
height: 1px;
background: var(--blue-color);
margin: 24px 0;
}
.wrapper_block_single_autor p{
margin: 0;
}
.wrapper_title_nejnovejsi_prispevky{
padding-top: 100px;
}
.wrapper_block_single_newsletter .pressing {
padding-top: 0px;
}
.wrapper_block_single_newsletter .pressing::before {
top: 4px;
}
.wrapper_block_single_newsletter p{
margin-bottom: 10px;
}
.wrapper_block_single_newsletter .newslatter_label{
margin-bottom: 6px;
} .wrapper_sign_up_all{
padding: 48px;
background: var(--background-cream-color);
border-radius: 20px;
}
.wrapper_sign_up_all .wrapper_text{
display: flex;
justify-content: space-between;
} .page-id-1505 header + section {
margin-top: 0px;
}
.page-id-1505 .wrapper_ebook_download_content_all {
padding: 32px;
}
.page-id-1505 .wrapper_ebook_download_img_all {
padding: 32px;
}
.page-id-1505 .wrapper_ebook_download_content_all .heading {
margin-bottom: 32px;
} .noptin-form-fields {
background: var(--background-cream-color);
}
.noptin-form-footer .noptin-form-submit{
background-color: var(--blue-color);
color: var(--white-color) !important;
font-size: 16px;
line-height: 24px;
border-radius: 20px;
border: none;
padding: 10px 24px;
text-decoration: none;
}
.noptin-form-footer .noptin-form-submit:hover {
background-color: var(--beige-color);
color: var(--blue-color)  !important;
transition: 0.3s;
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.1);
}
#noptin-form-1__field-first_name,
#noptin-form-1__field-email{
background: var(--background-cream-color);
border: 1px solid var(--beige-color);
border-radius: 20px;
}
.noptin-optin-form-wrapper.no-image {
min-height: fit-content !important;
max-width: 100% !important;
}
.noptin-form-fields {
gap: 20px;
}
.noptin-form-single-line .noptin-form-field-wrapper {
flex: unset;
width: calc(50% - 10px);
}
.pressing {
position: relative;
padding-left: 30px;
padding-top: 20px;
font-size: 14px;
margin: 0;
}
.pressing::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 22px;
width: 16px;
height: 16px;
border: 2px solid var(--blue-color);
transition: 0.3s;
cursor: pointer;
}
.pressing.pressed_gdpr::before,
.pressing.pressed_newsletter::before{
border-width: 6px;
}
.disabled_button {
pointer-events: none;
opacity: 0.7;
} .footer{
padding-top: 100px;
background-color: var(--blue-color);
}
.wrapper_footer_all {
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: wrap;
gap: 40px;
}
.wrapper_footer_logo_social {
max-width: 400px;
display: flex;
flex-direction: column;
row-gap: 24px;
}
.wrapper_footer_logo_social p{
color: var(--background-white-color);
margin: 0;
}
.wrapper_footer_social{
display: flex;
column-gap: 9px;
}
.wrapper_footer_social a{
width: 28px;
height: 28px;
}
.wrapper_footer_links {
display: flex;
flex-direction: column;
color: var(--background-white-color);
row-gap: 12px;
}
.wrapper_footer_links h4 {
color: var(--beige-color);
font-size: 15px;
font-weight: bold;
margin-bottom: 4px;
}
.wrapper_footer_links p,
.wrapper_footer_links a{
color: var(--background-white-color);
margin: 0;
}
.wrapper_footer_links_company a{
text-decoration: none;
}
.wrapper_link_gdpr_all {
margin-top: 80px;
position: relative;
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: wrap;
row-gap: 20px;
}
.wrapper_link_gdpr_all::before {
content: "";
position: absolute;
width: calc(100% - 40px);
height: 1px;
background-color: var(--beige-color);
top: -40px;
}
.wrapper_link_gdpr_all a{
color: var(--background-white-color);
}
.wrapper_footer_links_next_gdpr {
display: flex;
column-gap: 40px;
flex-wrap: wrap;
row-gap: 12px;
}
.wrapper_gdpr_cookies {
display: flex;
column-gap: 20px;
}
.wrapper_gdpr_cookies a{
font-size: 16px;
}
.by_pressprojekt{
font-size: 16px;
color: var(--background-white-color);
padding-top: 90px;
}
.by_pressprojekt a{
font-size: 16px;
color: var(--background-white-color);
text-decoration: none;
}
.wrapper_newsletter_footer {
max-width: 400px;
padding-top: 40px;
}
.wrapper_newsletter_footer h4{
color: var(--white-color);
}
.wrapper_newsletter_footer p{
color: var(--white-color);
}
.wrapper_newsletter_footer a{
color: var(--white-color);
}
.wrapper_newsletter_footer .button_blue{
background-color: var(--beige-color);
font-size: 16px;
border-radius: 20px;
border: 1px solid var(--beige-color);
padding: 10px 24px;
}
.wrapper_newsletter_footer .button_blue:hover {
background-color: var(--beige-color);
color: var(--white-color);
transition: 0.3s;
}
.wrapper_newsletter_footer .pressing {
padding-top: 6px;
}
.wrapper_newsletter_footer .pressing::before {
top: 10px;
}
.wrapper_newsletter_footer .pressing::before {
border: 2px solid var(--beige-color);
}
.wrapper_newsletter_footer .pressing.pressed_gdpr::before,
.wrapper_newsletter_footer .pressing.pressed_newsletter::before {
border-width: 6px;
} .content_section {
margin-top: 70px;
} .section_404{
margin-bottom: 40px;
} .cookies_wrp {
position: fixed;
z-index: 10000;
bottom: -250px;
left: 0;
width: 100%;
pointer-events: none;
padding: 20px;
z-index: 1000;
transition: 0.7s ease;
}
.cookies_inner {
display: flex;
border-radius: 12px;
border: 1px solid #dee2ea;
background: var(--background-white-color);
box-shadow: 0px 15px 35px -5px rgba(9, 17, 29, 0.15);
margin: 0 auto;
max-width: 940px;
padding: 28px;
gap: 20px 40px;
}
.cookies_right {
flex: none;
width: 210px;
display: flex;
flex-direction: column;
gap: 8px;
}
.cookies_right button {
padding: 0;
width: 100%;
transition: 0.3s;
cursor: pointer;
border-radius: 6px;
background: var(--blue-color);
height: 40px;
font-size: 13px;
font-style: normal;
font-weight: 700;
line-height: 13.886px;
color: #fff;
border: 1px solid var(--blue-color);
}
.cookies_right button.cookies_secondary {
background-color: transparent;
border: 1px solid var(--blue-color);
color: var(--blue-color);
}
.cookies_right button.cookies_secondary:hover {
background-color: var(--blue-color);
color: #fff;
opacity: 1;
}
.cookies_right button:hover {
opacity: 0.7;
}
.cookies_left {
flex: 1;
display: flex;
flex-direction: column;
}
.cookies_label {
margin: 0;
margin-bottom: 12px;
color: #000;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: 21.199px;
}
.cookies_desc p {
color: #414b63;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 22.346px;
margin-bottom: 0;
letter-spacing: -0.14px;
}
.cookis_list {
display: flex;
gap: 10px 30px;
margin-bottom: 24px;
align-items: center;
padding: 0;
list-style-type: none;
}
.cookis_list li {
cursor: pointer;
padding-left: 30px;
position: relative;
color: #000;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 12.719px;
letter-spacing: -0.28px;
min-height: 20px;
display: flex;
align-items: center;
}
.cookis_list li.active::before {
border-width: 6px;
}
.cookis_list li::before {
content: "";
display: block;
position: absolute;
left: 0;
top: 0;
width: 20px;
height: 20px;
border-radius: 3px;
transition: 0.3s;
border: 2px solid var(--blue-color);
}
.cookies_more {
color: var(--blue-color);
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 12.719px; letter-spacing: -0.241px;
text-decoration-line: underline;
}
.cookies_more:hover {
text-decoration: none;
}
.cookies_select_wrp {
display: none;
flex: 1;
align-items: flex-end;
}
.cookies_desc {
flex: 1;
padding-top: 10px;
}
.selecting_cookies .cookies_button {
border: 1px solid var(--blue-color);
background: var(--background-white-color);
color: var(--blue-color);
}
.selecting_cookies .cookies_button.cookies_secondary {
background: var(--blue-color);
color: var(--background-white-color);
}
.show_flex {
display: flex;
}
.cookies_wrp.opened {
bottom: 0px;
}
.opened .cookies_inner {
pointer-events: all;
}
.open_cookies{
cursor: pointer;
color: var(--green-color);
font-weight: bold;
} .grecaptcha-badge { 
visibility: hidden;
}
.grecaptcha-badge {
display: none;
}