:root{
    /* --backgroxund-color-sea: hsl(166, 28%, 79%); */
    --backgroxund-color-sea: rgb(255, 161, 255);
    --font-colot-on-sea: black;
    /* --brown-botton-bejb: rgb(168, 117, 66); */
    --brown-botton-bejb: purple;
    --titles-font-size: 45px;
    /* --background-color-brown: #996633; */
    --background-color-brown: rgb(187, 184, 184);
    --color-on-the-picture: rgb(156, 156, 156);
}
*{margin: 0}
html{
    height: 100%;
}
body{
    background-color: var(--backgroxund-color-sea);
    /* display: grid;
    min-height: 100%;
    grid-template-rows: 1fr auto; */
    /* height: 100%; */
}

div{
    display: block;
}
#site-header{
    position: relative;
    background-color: var(--backgroxund-color-sea);
    box-sizing: border-box;
    align-items: center;
    height: 110px;
    width: 100%;
    font-size: 25px;
    z-index: 4;
    /* border-bottom: 1px double var(--color-on-the-picture);
    border-width: ; */
}

.logo{
    background-image: url(img/your-logo.png);
    float: left;
    margin: 10px;
    height: 90px;
    width: 180px;
    background-size: contain;
    background-position: center;
    transition: all 0.2s ease-in-out;
}
.logo:hover{
    filter: invert(27%) brightness(1000%) contrast(100%);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

.menu {
    float: right;
    margin-left: -50px;
}

.menu li{
    display: inline-block;
}

.home, .shop, .about, .contact, .search {
    padding: 42.5px 25px;
}

.menu a{
    color: var(--font-colot-on-sea);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.menu a:hover{
    color: white;
}

.search{
    float:right;
    display: grid;
    height: 30px;
    width: 30px;
    place-items: center center;
}
.bag{
    background-image: url(svg/shopping_bag_black_24dp.svg);
    height: 100%;
    width: 100%;
    background-size: cover;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
}
.bag:hover{
    filter: invert(27%) brightness(1000%) contrast(100%);
    -webkit-transform: scale(1.9);
    -ms-transform: scale(1.9);
    transform: scale(1.9);
}

@media screen and (max-width: 780px) {
    .home, .shop, .about, .contact {
        padding: 43px 10px;
    }
}

@media screen and (max-width: 640px) {
    #site-header{
        position: relative;
        display: list-item;
        height: 210px;
    }
    .menu, .search{
        width: 100%;
    }
    .menu{
        text-align: center;
    }
    .menu li{
        display: block;
        text-align: center;
    }
    ul.menu{
        align-self: center;
        padding-bottom: 10px;
    }
    .logo_in{
        display: flex;
        justify-content: center;
        width: 100%;
        height: 110px;
    }
    .search{
        padding-left: 80px;
    }
    .bag{
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }
    .home, .shop, .about, .contact, .search {
        padding: 5px;
        font-size: 20px;
    }
}


.tytul{
    display: flex;
    flex-flow: wrap;
    flex-direction: column;
    background-image: url(img/filtrowany-rozowy-kolor-chmurki-tlo-miekki-rozowy-kolor-filtrujacy-na-chmurze-dla-tla_3248-1391.jpg);
    background-attachment: fixed;
    height: 600px;
    width: 100%;
    background-size: cover;
    justify-content: center;
    align-items: center;
    /* padding-top: 110px ; */
}

.tytul h1{
    color: var(--color-on-the-picture);
    font-size: 7.4vw;
}

.tytul_1{
    color: var(--color-on-the-picture);
    font-size: 2vw;
}

.link_1 {
    width: 150px;
    height: 45px;
    margin-top: 10px;
    margin-left: 10px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    font-size: 16px;
}

.link_1:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.link_1:active {
    color: #000
}

.link_1:active:after {
    background: transparent;
}

.link_1:hover:before {
    opacity: 1;
}

.link_1:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}   

@media screen and (max-width: 630px) {
    .tytul{
        height: 400px;
        width: 100%;
    }
    .tytul h1{
        font-size: 70px;
    }
    .tytul_1{
        font-size: 20px;
    }
    .link_1{
        width: 120px;
        font-size: 13px;
    }
}

@media screen and (min-width: 1400px) {
    .tytul h1{
        font-size: 100px;
    }
    .tytul_1{
        font-size: 25px;
    }
}


.short_list{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 100px 480px 40px;
    /* background-image: linear-gradient(white, rgb(255,254,234)); */
}

.title1 {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: var(--titles-font-size);
    margin-top: 50px;
    grid-column: 2 / 2;
    grid-row: 1 / 1;
}
/* 
.white_rectangle {
    width: 100%;
    height: 100%;
    border: solid 2px peru;
    position:relative;
} */

.slideshow  {
    margin-top: 20px;
    width: 700px;
    height: 400px;
    overflow: hidden;
    grid-column: 2 / 2;
    grid-row: 2 / 2;
}
.middle {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    grid-column: 2 / 2;
    grid-row: 2 / 2;
}
.navigation{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    grid-column: 2 / 2;
    grid-row: 3 / 3;
}
.bar{
    height: 10px;
    width: 50px;
    border: 2px solid #fff;
    margin: 6px;
    cursor: pointer;
    transition: 0.4s;
}
.bar:hover{
    background: #fff;
}
input[name="r"]{
    position: absolute;
    visibility: hidden;
}
.slides {
    width: 500%;
    height: 100%;
    display: flex;
}
.slide{
    width: 20%;
    transition: 0.6s;
    cursor: pointer;
}
.slide img{
    height: 100%;
}
#r1:checked ~ .s1{
    margin-left: 5.7%;
}
#r2:checked ~ .s1{
    margin-left: -14.7%;
}
#r3:checked ~ .s1{
    margin-left: -34.2%;
}
#r4:checked ~ .s1{
    margin-left: -58.6%;
}
#r5:checked ~ .s1{
    margin-left: -78.2%;
}
#r6:checked ~ .s1{
    margin-left: -97.5%;
}

@media screen and (max-width: 630px){
    .short_list{
        grid-template-columns: 10% 80% 10%;
        grid-template-rows: 5px 400px 5px;
        margin-bottom: -60px;
    }
    .slideshow  {
        margin-top: 8px;
        width: 300px;
        height: 50%;
        overflow: hidden;
    }
    .middle {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .slides {
        width: 800%;
        height: 100%;
        display: flex;
    }
    .slide{
        width: 25%;
        transition: 0.6s;
        cursor: pointer;
    }
    .navigation{
        position: relative;
        left: 50%;
        top: -70px;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
    }
    .bar{
        height: 7px;
        width: 25px;
        margin: 6px;
    }

    #r1:checked ~ .s1{
        margin-left: 3.2%;
    }
    #r2:checked ~ .s1{
        margin-left: -23%;
    }
    #r3:checked ~ .s1{
        margin-left: -47%;
    }
    #r4:checked ~ .s1{
        margin-left: -75%;
    }
    #r5:checked ~ .s1{
        margin-left: -99.3%;
    }
    #r6:checked ~ .s1{
        margin-left: -123.9%;
    }

}
















.about_end{
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.back{
    background-image: linear-gradient(20deg, rgb(236, 189, 134) 10%, rgb(240, 200, 240) 55%, rgba(180, 241, 252, 0.993) 93%);
    background-attachment: fixed;
}

.about_end h1{
    padding: 70px;
    font-size: var(--titles-font-size); 
}
.about_end p{
    width: 60%;
    text-align: center;
    font-size: 20px;
    padding-bottom: 100px;
}

.about2{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
    width: auto;
    height: auto;
    align-items: center;
    text-align: center;
    margin-bottom: 10vw;
    font-size: 20px;
}
.ableft{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: auto;
    width: 30vw;
    padding: 4vw;
    margin-left: 6vw;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    border: 2px dashed gray;
    border-radius: 5px 20px;
    background-image: linear-gradient(20deg, rgb(236, 189, 134) 1%, rgb(240, 200, 240) 35%, rgba(180, 241, 252, 0.993) 93%);
    background-attachment: fixed;
}
.ableft h4{
    font-size: 25px;
    padding-bottom: 10px;
}
.ableft p{
    margin: 0;
    max-width: 400px;
}
.photo1{
    grid-column: 2 / 2;
    grid-row: 1 / 2;
    background-image: url("img/unnamed.jpg");
    height: 25vw;
    width: 36vw;
    background-size: cover;
    margin: 20vw 10vw 0 4vw;
    border-radius: 20px 5px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
}

.abright{
    grid-column: 2 / 2;
    grid-row: 2 / 2;
    height: auto;
    width: 30vw;
    padding: 4vw;
    margin: 14vw 14vw 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    border: 2px dashed gray;
    border-radius: 5px 20px;
    background-image: linear-gradient(20deg, rgb(236, 189, 134) 10%, rgb(240, 200, 240) 55%, rgba(180, 241, 252, 0.993) 93%);
    background-attachment: fixed;
}
.abright h4{
    font-size: 25px;
    padding-bottom: 10px;
}
.abright p{
    margin: 0;
    max-width: 400px;
}
.photo2{
    grid-column: 1 / 2;
    grid-row: 2 / 2;
    background-image: url("img/malowanie.jpg");
    height: 25vw;
    width: 35vw;
    background-size: cover;
    margin: -2vw 0 0vw 8vw;
    border-radius: 20px 5px;
    box-shadow: 0 1px 8px rgb(0 0 0 / 20%);
}

@media screen and (min-width: 1700px){
    .photo1, .photo2{
        height: 300px;
        width: 420;
    }

}
@media screen and (max-width: 630px){
    .about_end h1, .abright h4, .ableft h4, .title1{
        font-size: 25px;
    }
    .about_end p, .abright p, .ableft p{
        font-size: 15px;
    }
    .about2{
        display: flex;
        flex-direction: column;
    }
    .abright, .ableft{
        width: 80%;
        height: auto;
        margin: 0;
        margin-top: 5vw;
    }
    .photo1, .photo2{
        width: 200px;
        height: 150px;
        margin: 20px 0 20px 0;
    }
}


/*----------------------------- FAQ page ---------------------------------- */
.faq-heading{
    border-bottom: #777;
    padding: 80px 160px;
    /* border: solid 2px peru; */

}
.faq-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 100px;
}
.hr-line{
  width: 60%;
  margin: auto;
  
}
.hr-line2{
    width: 97%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 5px;
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
}
.faq-body{
   margin: auto;
    /* text-align: center; */
   width: 50%; 
   padding: auto;
   display: none;
}
 /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/* .active, */
.faq-page:hover {
    background-color: #e9b1df; 
}
/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    /* background-color: white; */
    display: none;
    overflow: hidden;
    padding-bottom: 40px;
}
.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}
.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

@media screen and (max-width: 740px){
    .faq-heading{
        padding: 80px;
        margin-top: 80px;
    }
}




/* ----------------------- End of FAQ ------- start of shipping ---------------------------- */


/* --------------------------- Store policy ----------------------------- */

.store-heading{
    border-bottom: #777;
    padding: 0px 10%;
    width: 60%;
    /* border: solid 2px peru; */

}
.store-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 100px;
    /* border: solid 2px peru; */
}

/* Style the buttons that are used to open and close the faq-page body */
.store-page {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 30px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;
}
.store-body{
    margin: auto;
    /* text-align: center; */
    width: 50%; 
    padding: auto;
    padding-bottom: 40px;

    
}

/* ----------------------------- Payments ----------------------------------- */

/* https://codepen.io/marcobiedermann/pen/yLVVpBY */

.buy_it {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    width: 100%;
    margin: 80px 0;
    /* border: solid 2px peru; */
    font-family: 'Poppins', sans-serif;

}
.phone {
    width: 400px;
    /* border:solid 2px peru; */
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background: rgb(231, 121, 231); */
    /* background: rgb(179, 179, 179); */
    background-image: linear-gradient(50deg, rgb(236, 189, 134) 30%, rgb(240, 200, 240) 55%, rgba(180, 241, 252, 0.993) 80%);
    background-attachment: fixed;
    padding: 12px;
}

.aparat{
    background: black;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    margin-bottom: 4px;
    margin-top: -3px;
    z-index: 3;
}
.screen {
    width: 99%;
    background: rgb(255, 254, 248);
    border-radius: 20px;
    padding: 5px;
}
.upphonetext {
    border-radius: 20px 20px 10px 10px;
    padding: 5px 10px;
    padding-top: 10px;
    margin: 2px 2px 10px 2px;
    color: rgb(253, 255, 235);
    background: violet;
}

.upphonetext h2, .upphonetext address {
    opacity: 0.8;
}

.upphonetext2 {
    border-radius: 10px 10px;
    padding: 5px 10px;
    padding-top: 10px;
    margin: 2px 2px 10px 2px;
    color: rgb(253, 255, 235);
    background: violet;
}
.upphonetext3 {
    border-radius: 10px 10px;
    padding: 15px 15px;
    margin: 2px 2px 10px 2px;
    color: rgb(253, 255, 235);
    background: violet;
}

.payment_method {
    /* background: rgb(164, 208, 255); */
    background: rgb(231, 121, 231);
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px 2px;
}

.payment_method p {
    font-size: 20px;
}

.form__radios {
    width: 100%;

}
.form__radio {
    display: flex;
    flex-direction: row;
}

.form__radio p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}
.form__radio img {
    height: 100px;
}

@media screen and (max-width: 640px){
    .phone {
        width: 300px;
        padding: 12px;
        margin-left: 10px;
        margin-right: 10px;
    }    
    .aparat{
        height: 15px;
        width: 15px;
        margin-bottom: 4px;
        margin-top: -3px;
    }
    .screen {
        padding: 3px;
    }

    .payment_method p {
        font-size: 14px;
    }
    .form__radio p {
        font-size: 14px;
    }
    
    .form__radio img {
        height: 40px;
    }
    .upphonetext3 {
        width: 87%;

    }

}



/* ----------------------------- Footer ------------------------------------ */

.foot{
    position: static;
    height: 230px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color-brown);
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

.left, .center, .right{
    padding: 30px 0 0 0;
}

.one{
    margin: 20px 10px 10px 40px;
}

.shipping, .nr_tel{
    width: 130px;
}
.policy{
    width:80px;
}
.payments{
    width:65px;
}
.debra, .faq{
    width: 50px;
}
.mail{
    width: 180px;
}

.one a{
    display: block;
    text-decoration: none;
    color: #000;
    transition: all 0.2s cubic-bezier(0,-2.05, 0.38, 3.47);
}

.one a:hover{
    color: white;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.facebuk{
    margin: 0 20px 0 80px;
    float:left;
    display: grid;
    height: 30px;
    width: 30px;
    place-items: center center;
    background-image: url(svg/facebook.svg);
    background-size: cover;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
}
.facebuk:hover{
    filter: invert(27%) brightness(1000%) contrast(100%);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.insta{
    margin: 0 20px 0 0;
    float:left;
    display: grid;
    height: 30px;
    width: 30px;
    place-items: center center;
    background-image: url(svg/instagram.svg);
    background-size: cover;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
}
.insta:hover{
    filter: invert(27%) brightness(1000%) contrast(100%);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.youtube{
    margin: 0 20px 0 0;
    float:left;
    display: grid;
    height: 30px;
    width: 30px;
    place-items: center center;
    background-image: url(svg/youtube.svg);
    background-size: cover;
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
}
.youtube:hover{
    filter: invert(27%) brightness(1000%) contrast(100%);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.firstname{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -100px;
}

input[type=text]{
    border: solid 1px #000;
    background-color: var(--background-color-brown);
    outline:none;
    transition: all 0.2s cubic-bezier(0,-2.05, 0.38, 3.47);
    margin-left: -4px;
}

input[type=text]:focus{
    border: solid 4px #000;
}

.glow-on-hover {
    width: 100px;
    height: 45px;
    margin-left: 10px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

@media screen and (max-width: 1000px){
    .one{
        margin: 5px 5px 5px 5px;
    }
    .facebuk, .insta, .youtube{
        margin: 10px 10px 0 5px;
    }
    .left, .center{
        width: 150px;
    }
    .center{
        margin-left: -50px;
    }
}

@media screen and (max-width: 740px){
    .foot{
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        margin:0;
        padding: 0;
    }
    .firstname{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .right{
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .glow-on-hover{
        margin-left: -7px;
    }
    .left, .center, .icons, .right, .firstname{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 0px 10px 0px;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .left{
        text-align: center;
    }
    .center{
        display: block;
        margin: 0;
        text-align: center;
    }
    .one{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

/* ----------------------------- Contact ------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
.contact_end{
    position: relative;
    margin: 0;
    min-height: 40vw;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.section{
    position: relative;
    z-index: -1;
    justify-content: center;
    align-items: center;
    min-height: 50vw;
    /* background-image: linear-gradient(20deg, rgb(236, 189, 134) 10%, rgb(240, 200, 240) 55%, rgba(180, 241, 252, 0.993) 93%); */
}
.section::before{
    content: '';
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

section .container{
    position: relative;
    min-width: 200px;
    min-height: 350px;
    padding-top: 30px;
    display: flex;
    z-index: 1000;
}

section .container .contactInfo {
    position: absolute;
    top:70px;
    /* left: calc(20% - 180px); */
    left: 70px;
    width: 350px;
    height: calc(100% - 80px);
    background: rgb(231, 121, 231);
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

section .container .contactInfo h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

section .container .contactInfo .info {
    position: relative;
    margin: 20px 0;
    width: auto;
}

section .container .contactInfo .info li {
    position: relative;
    list-style: none;
    display: flex;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}

section .container .contactInfo .info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

section .container .contactInfo .info li span:nth-child(1) img {
    max-width: 100%;
    filter: invert(1);
    opacity: 0.5;
}

section .container .contactInfo .info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
    opacity: 0.5;
    transition: all 0.1s ease-in-out;
}

section .container .contactInfo .info li:hover span:nth-child(1) img,
section .container .contactInfo .info li:hover span:nth-child(2)
{
    opacity: 1;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

section .container .contactInfo .sci {
    position: relative;
    display: flex;
    margin-left: 30px;
}

section .container .contactInfo .sci li {
    list-style: none;
    margin-right: 20%;
}

section .container .contactInfo .sci li a {
    text-decoration: none;
}

section .container .contactInfo .sci li a img {
    filter: invert(1);
    opacity: 0.5;
    transition: all 0.1s ease-in-out;
}

section .container .contactInfo .sci li:hover a img {
    opacity: 1;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
}

section .container .contactForm {
    position: absolute;
    padding: 70px 50px;
    background: #fff;
    margin-left: 200px;
    padding-left: 350px;
    padding-top: 80px;
    width: 80%;
    height: 90%;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
}

section .container .contactForm h2 {
    color: #0f3959;
    font-size: 22px;
    font-weight: 500;
}

section .container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
    /* padding-left: 20px; */
}

section .container .contactForm .formBox .inputBox{
    position: relative;
    margin: 0 0 35px 0;
    width: 47%;
}

section .container .contactForm .formBox .inputBox1 {
    width: 100%;
}

section .container .contactForm .formBox .inputBox .w50 {
    width: auto;
}

section .container .contactForm .formBox .inputBox .w100 {
    width: 100%;
}

section .container .contactForm .formBox .inputBox input,
section .container .contactForm .formBox .inputBox textarea {
    width: 100% !important;
    resize: none;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    border: none;
    border-bottom: 1px solid #777;
    background: #fff;
    
}

section .container .contactForm .formBox .inputBox textarea {
    min-width: 120px;
}

section .container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    font-size: 18px;
    font-weight: 300;
    color: #333;
    transition: 0.3s;
    pointer-events: none;
}
section .container .contactForm .formBox .w50 textarea {
    height: 80px;
}

section .container .contactForm .formBox .inputBox input:focus ~ span,
section .container .contactForm .formBox .inputBox textarea:focus ~ span,
section .container .contactForm .formBox .inputBox input:valid ~ span,
section .container .contactForm .formBox .inputBox textarea:valid ~ span {
    transform: translateY(-20px);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-on-the-picture);
}

@media screen and (max-width: 1500px){
    .contact_end{
        height: 600px;
    }
}


@media screen and (max-width: 980px){
    section .container .contactForm {
        margin-left: 110px;
    }
    section .container .contactInfo {
        width: 280px;
        padding-left: 30px;
    }
}

@media screen and (max-width: 880px){
    section .container .contactForm .formBox .inputBox span {
        font-size: 14px;
        
    }
}

@media screen and (max-width: 780px){
    section .container .contactForm {
        margin-left: 60px;
    }
    
    section .container .contactInfo {
        left: 30px;
    }
}

@media screen and (max-width: 640px){
    /* .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 70% 50% 50% 50% 30%;
    } */
    .contact_end{
        margin-top: 80px;
        height: 840px;
    }
    section .container {
        /* display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 70% 30%; */
    }
    section .container .contactInfo {
        /* grid-column: 1 / 1;
        grid-row: 2 / 2; */
        top: 0px;
        align-self: center;
        width: 60%;
        height: 260px;
        background: rgb(231, 121, 231);
        z-index: 1;
        padding: 40px;
        margin-top: 410px;
        /* margin-left: 10px; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    }
    section .container .contactInfo .info {
        margin-left: -20px;
    }
    section .container .contactInfo .sci {
        margin-left: 0px;
    }
    section .container .contactInfo .info li span:nth-child(2) {
        font-size: 12px;
    }

    section .container .contactForm {
        /* grid-column: 1 / 1;
        grid-row: 1 / 1; */
        /* padding: 70px 50px; */
        background: #fff;
        /* margin-left: 50px; */
        /* margin-right: 10px; */
        /* padding-left: 20px; */
        margin: 10px;
        /* margin-top: 380px; */
        padding: 40px;
        width: 70%;
        height: auto;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);

    }
    section .container .contactForm .formBox .w50 textarea {
        height: 40px;
    }
    
}


/* ------------------------------------Shop------------------------------------ */


#changeview {
    width: 100%;
    position: relative;
    height: 52px;
    top: -40px;
    display: flex;
    padding-top: 110px;
}

.right_button{
    position: absolute;
    right: 50px;
}

.chang_view_but 
{
    cursor: pointer;
    background-color: black;
    color: white;
    width: 110px;
    height: 50px;
    border-radius: 15px;
    border: dashed #444 2px;

} 

.chang_view_but:hover {
    background: #d5dcda;
    color: #65696b;
}

#shop1 {
    border: dashed 2px black;
    margin: 40px;
    border-radius: 20px;
    height: auto;
}



/* shop2, nvm - to id potrzebne tylko do js */

.inshop {
    border-radius: 20px;
    margin: 40px;
    padding: 30px 10px;
    background-color:rgba(220, 220, 220, 0.3);
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}

.inshop1 {
    border-radius: 20px;
    margin: 40px;
    padding: 30px 5%;
    background-color:rgba(220, 220, 220, 0.3);
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.inshop2 {
    border-radius: 20px;
    margin: 40px;
    padding: 30px 40px;
    background-color:rgba(220, 220, 220, 0.3);
    height: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}


.thing_to_buy {
    width: 380px;
    height: 140px;
    border: solid 2px black;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
}

.thing_to_buy1
{
    width: 100%;
    height: 140px;
    border: solid 2px black;
    border-radius: 8px;
    margin: 10px;
    margin-left: -17px;
    padding: 15px;
}
.thing_to_buy1 img{
    margin-left: 20px;
    transition: all 0.3s cubic-bezier(.29,-0.23,.3,1.55);
}

.thing_to_buy1 img:hover {
    border-radius: 10px 0px;
    z-index: 2;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.thing_to_buy img{
    transition: all 0.3s cubic-bezier(.29,-0.23,.3,1.55);
}
.thing_to_buy img:hover {
    border-radius: 10px 0px;
    z-index: 2;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.thing_to_buy2 img{
    transition: all 0.3s cubic-bezier(.29,-0.23,.3,1.55);
}
.thing_to_buy2 img:hover {
    border-radius: 10px 0px;
    z-index: 2;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}


.thing_to_buy2 {
    width: auto;
    height: 140px;
    border: solid 2px black;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
}





.sell_thing {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.sell_thing img {
    margin-right: 30px;
    height: 100%;
    /* left: 0;
    bottom: 0; */
    /* width: 100%; */
}

.right_sell_thing {
    width: 200px;
    position: relative;
    padding-bottom: 60px;
    /* display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; */
}


.right_sell_thing button{
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: auto;
    padding: 0 10px 0 10px;
}
