@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@700&family=Montserrat:wght@700&family=Poppins&family=Quicksand:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
body{
    margin: 0;
    padding: 0 0 100px 0;
    font-family: 'Poppins', sans-serif;
    background: rgb(255, 254, 250);
}
h1, h2, h3, h4, h5, h6{
    font-family: 'Bangers', sans-serif;
    letter-spacing: 2px;
}
#container{
    width: 100%;
}
.separator{
    width: 100%;
    height: 2px;
    border-radius: 2px;
    border-top: 1px groove #d84315;
    margin: 75px 0;
}
/* Banner Banner Banner Banner Banner Banner Banner Banner Banner Banner */
#banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
}
#banner a{
    text-decoration: none;
}
#banner #logo{
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#banner #logo img{
    width: auto;
    height: 100%;
    border-radius: 50%;
}
#banner ul{
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}
#banner ul li{
    font-size: .9rem;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    padding: 10px 30px;
    border-radius: 8px;
    position: relative;
}
#banner ul li::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 8px;
    background: linear-gradient(60deg, rgb(255, 83, 83), rgb(22, 22, 22) 100px);
    opacity: .5;
    z-index: -1;
    transition: .3s;
}
#banner ul li:hover{
    color: #f1f1f1;
    transform: scale(1.1);
}
#banner ul li:hover::before{
    opacity: 1;
}

#burger_menu{
    width: 40px;
    height: 25px;
    display: none;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: absolute;
    right: 50px;
    z-index: 999;
}
#burger_menu .burger_line{
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: all .4s;
}
#burger_menu_conent{
    width: 100%;
    height: auto;
    padding: 50px 0;
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translatey(-100%);
    transition: all .4s;
}
#burger_menu_conent ul{
    width: 100%;
    list-style: none;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 25px;;
    padding: 0;
    margin-top: 40px;
}
#burger_menu_conent ul li{
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: rgb(32, 32, 32);
    cursor: pointer;
    transition: .3s;
    white-space: nowrap;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}
#burger_menu_conent ul li:hover{
    color: #f1f1f1;
    transform: scale(1.05);
    box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
}
/* landing page landing page landing page landing page landing page */
#lading_page{
    width: 100%;
    height: 100vh;
    background: url(../img/landing_page.webp) center center no-repeat fixed;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
}
#landing_content{
    width: 70%;
    min-width: 730px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    transform: translate(0, -7.5%);
    padding: 0 50px;
    box-sizing: border-box;
    text-align: center;
}
#landing_content h2{
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color: #FF5722
}
#landing_content p{
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

#landing_content button {
    background-color: #ff5722;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    padding: 16px 48px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    transform: translateY(30px);
}
#landing_content button:hover{
    background-color: #e64a19;
    transform: scale(1.05) translateY(25px);
}
#landing_content button:active {
    background-color: #d84315;
    transform: scale(0.95) translateY(25px);
}
#landing_content button:hover {
    background: #000;
    color: #fff;
    transform: translateY(25px);
}


/* content content content content content content content content */
#content_of_page{
    width: 100%;
    padding: 0 10vw;
    box-sizing: border-box;
}
#content_of_page h2{
    text-align: center;
    font-size: 2.3rem;
}
#for_what_section{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-top: 50px;
}
.for_what_item {
    width: calc(100% / 3 - 20px);
    min-width: 300px;
    flex: 1;
    min-height: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0,0,0,.3), 0px 0px 5px rgba(255, 83, 83, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: .3s;
    border: 1px solid rgba(255, 83, 83, .5);
}
.for_what_item:hover {
    box-shadow: 0px 10px 20px rgba(0,0,0,.25), 0px -10px 20px rgba(255, 83, 83, .5);
    transform: scale(1.03);
}

.for_what_item #img_section{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}
.for_what_item #img_section img{
    width: auto;
    height: 130%;
}
.for_what_item h3{
    font-size: 2.2rem;
    margin: 40px 0 0 0;
}
.for_what_item p{
    font-size: 1rem;
    text-align: center;
}



/* offers offers offers offers offers offers offers offers offers */
#offers{
    width: 100%;
    height: auto;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.offer{
    width: 400px;
    height: 600px;
    background: linear-gradient(45deg, rgb(255, 83, 83), rgb(22, 22, 22) 130px);
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}
.offer::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 8px;
    background: rgb(0,0,0,.3);
    z-index: 1;
    transition: .3s;
}
.offer:nth-child(1){
    background: url(/img/offer_1.webp) calc(50% - 20px) center no-repeat;
    background-size: cover;
}
.offer:nth-child(2){
    background: url(/img/offer_2.webp) calc(50% + 10px) center no-repeat;
    background-size: cover;
}
.offer:nth-child(3){
    background: url(/img/offer_3.webp) 50% center no-repeat;
    background-size: cover;
}
.offer:nth-child(4){
    background: url(/img/offer_5.webp) calc(50% - 10px) center no-repeat;
    background-size: cover;
}
.offer:nth-child(5){
    background: url(/img/fotobudka_ai.webp) calc(50% - 10px) center no-repeat;
    background-size: cover;
}
.offer:nth-child(6){
    background: url(/img/fotograf.webp) calc(52% - 10px) center no-repeat;
    background-size: cover;
}
.offer:hover .offer_content_prices{
    transform: scale(1.1) translate(-45%, -16px);
}
.offer.no-hover:hover .offer_content_prices{
    transform: scale(1) translate(-50%);
}
.offer:hover .offer_content button{
    background: #fc6c19;
    transform: scale(1.05);
}
.offer_content{
    width: 80%;
    height: 350px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background: rgb(7, 7, 7);
    border-radius: 14px 14px 0 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    z-index: 3;
    transition: 1s;
}
.offer_content h3{
    font-size: 2.5rem;
    margin: 10px 0 0 0;
}
.offer_content p{
    font-size: .8rem;
    text-align: center;
    padding: 10px 0 90px 0;
}
.offer_content button{
    width: 85%;
    height: 40px;
    position: absolute;
    bottom: 10px;
    background: #ff7322;
    border: 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease-in-out;
}
.offer_content_prices{
    width: 80%;
    height: 350px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background: rgb(7, 7, 7);
    border-radius: 14px 14px 0 0;
    display: flex;
    justify-content: center;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
    z-index: 2;
    transition: transform .3s ease-in-out,
                height 1s ease-in-out;
}

.offer_content_prices #prices_items_content{
    width: 95%;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    transition-delay: .7s;
}
.offer_content_prices #prices_items_content #order_button{
    width: 90%;
    height: 40px;
    /* background: #ff7322; */
    background: #5f5f5f;
    border: 0;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease-in-out;
    position: absolute;
    bottom: 10px;
    pointer-events: none;
}
.offer_content_prices #prices_items_content #order_button.active{
    pointer-events: all;
    background: #fc6c19;
}
.offer_content_prices #prices_items_content #order_button.active:hover{
    transform: scale(1.05);
}
.offer_content_prices #prices_items_content .price_item{
    width: 100%;
    min-height: 100px;
    border: 1px solid #fc6c19;
    padding: 5px 0 10px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    transition: .3s;
    cursor: pointer;
}
.price_item.weselny_telefon{
    height: 200px;
    padding: 0 15px !important;
    box-sizing: border-box;
}
.price_item.weselny_telefon #time{
    margin-top: 25px !important;

}
.offer_content_prices #prices_items_content .price_item.active{
    background: #fc6c19;
}
.offer_content_prices #prices_items_content .price_item:hover{
    transform: scale(1.05);
}
.offer_content_prices #prices_items_content .price_item #title{
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    position: absolute;
    left: 5px;
    top: 5px;
}
.offer_content_prices #prices_items_content .price_item #time{
    text-align: center;
    color: #fff;
    position: inherit;
    font-size: .9rem;
    margin-top: -3px;
    opacity: 1 !important;
}
#span_ksiega{
    font-size: .7rem;
    opacity: 1 !important;
    position: static !important;
    color: #fc6c19 !important;
}
.offer_content_prices #prices_items_content .price_item #description{
    font-size: .8rem;
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center;
    margin-top: 7px;
}
.offer_content_prices #prices_items_content .price_item #price{
    bottom: 5px;
    right: 5px;
    top: unset;
    left: unset;
    width: fit-content;
    height: fit-content;
    font-size: 1.1rem;
    opacity: 1 !important;
}
.offer_content_prices span{
    position: absolute;
    right: 5px;
    top: 4px;
    font-size: .9rem;
    font-weight: 700;
    transition: .4s;
}
.offer_content_prices.no-hover:hover{
    transform: scale(1) translate(-50%);
}
#title_for_localstorage{
    display: none !important;
    opacity: 0 !important;
}
#label_prices_items{
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;;
    margin-top: 20px;
}
#label_prices_items #ksiega_gosci_checkbox{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 2px solid #fc6c19;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    outline: none;
    transition: background-color 150ms linear, border-color 150ms linear;
}
#label_prices_items #ksiega_gosci_checkbox:checked {
    background-color: #fc6c19;
    border-color: #fc6c19;
}
#label_prices_items #ksiega_gosci_checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
#label_prices_items #title_ksiega_gosci{
    color: #fff !important;
    opacity: 1 !important;
    position: static !important;
}
#label_prices_items #cena_ksiega_gosci{
    color: #fff !important;
    opacity: 1 !important;
    top: 20px;
    right: unset;
    bottom: unset;
    left: 85px;
    font-size: .7rem;
}
/* about_us about_us about_us about_us about_us about_us about_us about_us */
#about_us{
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all .3s ease-in-out;
}
#left_side{
    width: 60%;
    background: #fff;
    padding: 0 10px;
    box-sizing: border-box;
    overflow: hidden;
    height: 500px;
    position: relative;
}
#left_side img{
    width: auto;
    height: 100%;
    background-size: cover;
    transform: translate(-5.5vw);
    transition: .8s ease-in-out;
}
#left_side:hover img{
    transform: translate(-5.5vw) scale(1.1);
}
#left_side::before{
    content: '';
    position: absolute;
    top: 0;
    left: -55%;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transform: skewX(-45deg);
}
#left_side::after{
    content: '';
    position: absolute;
    top: 0;
    right: -55%;
    width: 50%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transform: skewX(135deg);
}
#right_side{
    width: 40%;
}
#right_side p{
    text-align: center;
}
#read_more {
    padding: 10px 20px;
    background-color:#fc6c19;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease-in-out;
    margin-left: 50%;
    transform: translate(-50%);
}

#read_more::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: right 0.5s ease;
}

#read_more:hover {
    background-color: #fc6c19;
    transform: translate(-50%) scale(1.1);
}

#read_more:hover::before {
    right: 100%;
}

#read_more_content{
    width: 100%;
    min-height: 600px;
    display: none;
    flex-direction: column;
    position: relative;
    background: #000724;
    border-radius: 16px;
    padding: 0 20px;
    box-sizing: border-box;
}
#come_back_button {
    position: absolute;
    right: 0;
    top: -50px;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    border-radius: 5px;
    background-image: linear-gradient(to right, #6e48aa, #9d50bb);
    cursor: pointer;
    outline: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
  
#come_back_button:hover {
    background-image: linear-gradient(to left, #6e48aa, #9d50bb);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
  
#come_back_button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
  
#read_more_content h2{
    font-size: 4rem;
    color: #fff;
    z-index: 3;
    width: 100%;
    margin: 0;
    font-family: 'Fredoka', cursive;
    text-transform: uppercase;
}
#read_more_content *{
    border-radius: 8px;
}
#read_more_content h3, #read_more_content p{
    z-index: 5;
}
#read_more_content h3{
    font-size: 2rem;
    color: #fff;
    width: 100%;
    margin: 0;
    font-family: 'Fredoka', cursive;
    text-transform: uppercase;
    text-align: center;
}
#read_more_content p{
    font-size: .85rem;
    color: #fff;
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
}
#read_more_content #upper_section{
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px 0;
    gap: 20px;
}
#read_more_content #middle_section{
    width: 100%;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px 0;
    gap: 20px;
}
#read_more_content #bottom_section{
    width: 100%;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 10px 0;
    gap: 20px;
}
#read_more_content .left_section{
    display: flex;
    flex-direction: column;
    width: 35%;
    /* height: fit-content; */
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}
#read_more_content .middle_section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    /* height: fit-content; */
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}
#read_more_content .right_section{
    display: flex;
    flex-direction: column;
    width: 35%;
    /* height: fit-content; */
    padding: 10px;
    box-sizing: border-box;
    position: relative;
}
#title_fotoziombek{
    text-align: center;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}
#dark_background{
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000b9;
    z-index: 4;
    top: 0;
    left: 0;
    border-radius: 8px;
}
.left_section h4, .right_section h4{
    color: #fff;
    text-align: center;
    font-size: 1.1rem;
    margin: 10px 0 0 0;
}
#smaller_section{
    font-size: .7rem !important;
}
#about_us_fr{
    background: url(/img/about_us_1.webp) center center no-repeat !important;
    background-size: cover !important;
}
#about_us_sc{
    background: url(/img/about_us_2.webp) center center no-repeat !important;
    background-size: cover !important;
}
#about_us_th{
    background: url(/img/about_us_3.webp) center center no-repeat !important;
    background-size: cover !important;
}
#about_us_ff{
    background: url(/img/about_us_4.webp) center center no-repeat !important;
    background-size: cover !important;
}
#about_us_fi{
    background: url(/img/about_us_5.webp) center center no-repeat !important;
    background-size: cover !important;
}
#about_us_si{
    background: url(/img/about_us_6.webp) center center no-repeat !important;
    background-size: cover !important;
}
.centered{
    display: flex;
    justify-content: center;
    align-items: center;
}
#section_button {
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-decoration: none;
}
  
#section_button:hover {
    background-color: #0056b3;
    box-shadow: 0 8px 15px rgba(0,123,255,0.3);
    transform: translateY(-2px);
}
#section_button:active {
    background-color: #004085;
    box-shadow: 0 5px 10px rgba(0,123,255,0.5);
    transform: translateY(-1px);
}


/* #opinions #opinions #opinions #opinions #opinions #opinions #opinions #opinions */

#opinions{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}
#slider{
    width: 80%;
    height: 275px;
    /* background: rgb(228, 228, 228); */
    display: flex;
    gap: 30px;
    padding: 10px 95px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
#right_side_slider, #left_side_slider{
    position: absolute;
    right: 0;
    width: 90px;
    height: 100%;
    background: #fff;
    z-index: 1;
}
#left_side_slider{
    right: unset;
    left: 0;
}
.opinia{
    width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #e4e4e4, #f0f0f0);;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
}
.opinia h3{
    margin: 0;
    font-size: 1.6rem;
}
.opinia p{
    font-size: 1rem;
    text-align: center;
    line-height: 120%;
    font-weight: 500;
}
.opinia h3, .opinia p{
    transform: translateY(-10px);
}
#stars{
    display: flex;
    position: absolute;
    top: 15px;
    right: 25px;
    gap: 5px;
    color: gold;
    font-size: 1.4rem;
}
#arrow_left, #arrow_right{
    position: absolute;
    z-index: 2;
    cursor: pointer;
    transition: .4s ease-in-out;
}
#arrow_left:hover, #arrow_right:hover{
    transform: scale(1.1) translate(0, -45%);
}
#arrow_left{
    left: 25px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 2.2rem;
}
#arrow_right{
    right: 25px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 2.2rem;
}
#arrow_left::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid black;
    border-radius: 100%;
    transform: translate(-11px, 0px);
}
#arrow_right::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 1px solid black;
    border-radius: 100%;
    transform: translate(-9px, 0px);
}


/* article article article article article article article article  */

#article{
    width: 100%;
    min-height: 100px;
    margin-top: 150px;
}
.article_section{
    margin-top: 45px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 16px;
}
.article_section:nth-child(1){
    box-shadow: 0 0 10px rgba(0,0,0,0);
}
.article_section h1{
    text-align: center;
    font-size: 2.6rem;
}
.article_section h2{
    text-align: center;
}
.article_section_content{
    display: flex;
    gap: 20px;
    text-align: center;
}
#article_section_content_left{
    width: 50%;
    min-height: 400px;
}
#article_section_content_left img{
    width: 100%;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.89);
}
#article_section_content_left:nth-child(even) img{
    border-radius: 0px 8px 8px 0;
}
#article_section_content_left:nth-child(odd) img{
    border-radius: 8px 0px 0px 8px;
}
#article_section_content_right{
    width: 50%;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}
#article_section_content_right h2{
    font-size: 2rem;
    line-height: 30px;
}
#article_section_content_right h3{
    line-height: 0;
    padding: 0 0 20px 0;
    margin-top: -10px;
    font-size: 1.2rem;
}
#article_section_content_right a{
    width: 200px;
    height: 40px;
    background: #fc6c19;
    border: 0;
    font-size: .9rem;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s ease-in-out;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-decoration: none;
}
#article_section_content_right a:hover{
    transform: scale(1.05);
}
/* contact contact contact contact contact contact contact contact  */
#contact{
    width: 100%;
    min-height: 400px;
    box-shadow: 5px 5px 10px rgba(0,0,0,.3);
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 200px;
}
#left_contact{
    width: 60%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
#right_contact{
    width: 40%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}
#left_contact ul{
    list-style: none;
}
#left_contact ul li{
    font-size: 1.2rem;
    font-weight: 500;
    margin: 10px 0;
    width: 80%;
    min-height: 50px;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(0,0,0,.3);
    text-align: center;
    padding: 10px;
    position: relative;
    transition: .2s ease-in-out;
}
#left_contact ul li:hover{
    transform: scale(1.03);
}
#left_contact ul li h4{
    margin: 10px 0;
    font-size: 1.6rem;
    color: #000;
}
#left_contact ul li span:nth-child(1){
    color: #000
}
#left_contact ul a span:last-child{
    color: #000;
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: .8rem;
}
#left_contact ul li img{
    width: 90px;
    height: 90px;
    position: absolute;
    left: 10px;
    transform: translateY(-8px);
}
#left_contact ul a{
    text-decoration: none;
}
#right_contact iframe{
    width: 100%;
    height: 100%;
}



#pop_up_rezerwacja{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    background: #fff;
    transform: translate(-50%, -50%) scale(0);
    z-index: 9999;
    border-radius: 8px;
    box-shadow: 5px 5px 10px rgba(0,0,0,.3);
    padding: 20px 80px;
    transition: .7s cubic-bezier(0.39, 0.575, 0.565, 1);
}
#phone_ver_read_more{
    display: none;
    flex-wrap: wrap;
    gap: 20px;
}
.item_phone_ver_read_more{
    min-width: 300px;
    flex: 1;
    color: #fff;
    text-align: center;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
}
.item_phone_ver_read_more h3, .item_phone_ver_read_more p{
    z-index: 3;
    position: relative;
}
.item_phone_ver_read_more #dark_background{
    z-index: 2;
}
.item_phone_ver_read_more:nth-child(1){
    background: url(/img/about_us_1.webp) center center no-repeat;;
    background-size: cover;
}
.item_phone_ver_read_more:nth-child(2){
    background: url(/img/about_us_2.webp) center center no-repeat;;
    background-size: cover;
}
.item_phone_ver_read_more:nth-child(3){
    background: url(/img/about_us_3.webp) center center no-repeat;;
    background-size: cover;
}
.item_phone_ver_read_more:nth-child(4){
    background: url(/img/about_us_4.webp) center center no-repeat;;
    background-size: cover;
}
.item_phone_ver_read_more:nth-child(5){
    background: url(/img/about_us_5.webp) center center no-repeat;;
    background-size: cover;
}
.item_phone_ver_read_more:nth-child(6){
    background: url(/img/about_us_6.webp) center center no-repeat;;
    background-size: cover;
}
@media screen and (max-width: 1024px){
    #burger_menu{
        display: flex;
    }
    #banner ul{
        display: none;
    }
    #lading_page{
        display: flex;
        justify-content: center;
        text-align: center;
    }
    #landing_content{
        align-items: center;
        min-width: unset;
        width: 100%;
    }
    

    #about_us{
        flex-direction: column;
        gap: 0;
    }
    #left_side::before, #left_side::after{
        display: none;
    }
    #left_side{
        width: 100%;
        height: auto;
    }
    #left_side img{
        transform: translate(0);
        width: 100%;
        height: auto;
    }
    #right_side{
        width: 100%;
    }
    #read_more_content #middle_section, #read_more_content #bottom_section, #read_more_content #upper_section{
        display: none;
    }

    #phone_ver_read_more{
        display: flex;
    }
    #phone_ver_read_more{
        padding: 10px 0;
    }

    #opinions{
        display: none;
    }
    #contact{
        flex-direction: column;
    }
    #left_contact, #right_contact{
        width: 100%;
        align-items: center;
    }
    #left_contact ul{
        padding: 0;
        width: 99%;
    }
    #left_contact ul li{
        margin-left: 50%;
        transform: translate(-50%);
    }
    #left_contact ul li:hover{
        transform: translate(-50%) scale(1);
    }
    #left_contact ul li img{
        display: none;
    }
    #right_contact iframe{
        width: 100%;
        height: 300px;
    }
    
    .offer_content h3{
        text-align: center;
    }
    .offer_content p{
        font-size: .7rem;
    }
}
@media screen and (max-width: 700px){
    #banner{
        padding: 5px 10px;
    }
    #burger_menu{
        right: 10px;
    }
    #landing_content button{
        padding: 0;
        width: 240px;
        height: 60px;
        font-size: 1.2rem;
    }
    #landing_content h2{
        font-size: 2.2rem;
    }
    #landing_content p{
        font-size: .9rem;
    }
    #landing_content{
        padding: 0 5px;
    }

    .offer{
        height: 700px;
    }
    .offer_content{
        width: 95%;
    }
    .offer_content_prices{
        width: 95%;
    }
    .offer_content_prices #prices_items_content .price_item #time{
        position: absolute;
        top: 5px;
        right: 5px;
    }
    .offer_content_prices{
        padding: 10px 0 50px 0;
    }
    .offer_content_prices #prices_items_content .price_item #description{
        margin-top: 20px;
    }
    .price_item.weselny_telefon #time{
        margin-top: 0 !important;
    }
    .price_item.weselny_telefon #description{
        margin-top: 30px !important;
    }
    #content_of_page{
        padding: 0 10px;
    }
    .item_phone_ver_read_more{
        min-width: 230px;
    }
    #read_more_content h3{
        font-size: 1.5rem;
    }
    #read_more_content p{
        font-size: .7rem;
    }
    #pop_up_rezerwacja{
        font-size: 1.5rem;
        padding: 20px 10px;
    }
}
