/* Font */

@font-face {
font-family: "houschka-rounded", sans-serif;
font-weight: 500, 700, 800;
font-style: normal, italic;
font-family: "urbane-rounded", sans-serif;
font-weight: 300, 700, 900;
font-style: normal;
}


html, body {
  background-size: 1920px auto;
  background-position: center;
  background-size: auto;
  color: #9258b7;
  overflow-x: hidden;

  
}

:root {
    --c-brand: #616161;
    --c-brand-rgb: 248, 54, 145;
    --c-dark: #934e99;
    --c-body: #2b074f;
    --c-light: #00d2b5;
    --f-main: "houschka-rounded", sans-serif;
    --transition: all .4s cubic-bezier(.165, .84, .44, 1);
    --shadow: 0px 15px 40px rgba(0, 0, 0, 0.1);
}


body {
    font-family: var(--f-main);
    color: var(--c-body);
    line-height: 1.7;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: "houschka-rounded";
    font-weight: 700;
    color: var(--c-dark);
}

a {
    text-decoration: none;
    color: var(--c-dark);
    transition: var(--transition);
}

a:hover {
    color: var(--c-brand);
}

li {
  display: inline;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-brand {
    color: var(--c-brand);
}

/* Navbar */
.navbar {
    padding-top: 20px;
    padding-bottom: 10px;
    transition: var(--transition);
}

.navbar-nav {
    background-color: rgb(255, 255, 255, .8);
    -webkit-box-shadow: -6px 8px 12px -11px rgba(66, 68, 90, 1);
    -moz-box-shadow: -6px 8px 12px -11px rgba(66, 68, 90, 1);
    box-shadow: -6px 8px 12px -11px rgba(66, 68, 90, 1);
    border-radius: 30px;
    max-height: 90px;
}

@media screen and (max-width: 992px) {
.navbar {
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: rgb(255, 255, 255, .4);
}
.navbar-nav {
    background-color: rgb(255, 255, 255, .8);
    -webkit-box-shadow: -6px 8px 12px -11px rgba(66, 68, 90, .0);
    -moz-box-shadow: -6px 8px 12px -11px rgba(66, 68, 90, .0);
    box-shadow: -6px 8px 12px -11px rgba(66, 68, 90, 0);
    border-radius: 10px;
    max-height: 250px;
}
.navbar .navbar-nav .nav-link {
    margin-left: 30px;
}


}

.navbar.scrolled {
    padding-top: 7px;
    padding-bottom: 7px;
}

.navbar-toggler {
    border-radius: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 36px;
        padding-left: 36px;
        margin-top: 20px;
    }
}

.navbar .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-light);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active  {
    color: var(--c-dark);
}

.navbar-brand {
    display: block;
    width: 260px;
    height: 176px;
    background: url(../images/nav-logo.png) top left no-repeat transparent;
    background-size: 100% auto;
    text-indent: -9999px;
    margin-top: -8%;
}

@media only screen and (max-width : 1024px) {
.navbar-brand {
    display: block;
    width: 160px;
    height: 108px;
    background: url(../images/nav-logo.png) top left no-repeat transparent;
    background-size: 100% auto;
    text-indent: -9999px;
    margin-top: 1%; 
}
}
@media screen and (max-width: 768px) {
.navbar-brand {
    display: block;
    width: 120px;
    height: 81px;
    background: url(../images/nav-logo.png) top left no-repeat transparent;
    background-size: 100% auto;
    text-indent: -9999px;
    margin-top: 1%;
}
}





/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--c-brand);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--c-dark);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/

#bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: top; 

}

.display-4 {
  font-weight: 700;
  line-height: 1.2;
}


@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 80s slide infinite linear;
}

.logos-slide img {
  height: 150px;
  margin: 0 40px;
}

@media (max-width: 767.98px) {
.logos-slide img {
  height: 80px;
  margin: 0 20px;
}
.logos:before {
  left: 0;
  background: none;
}

.logos:after {
  right: 0;
  background: none;
}
}

.waves img {
  transition: transform .4s; /* Animation */

}
.waves img:hover {
  transform: scale(1.1);

}


.products {
    margin: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(-45deg, #faffe7, #b5fff8, #c4eeff, #faffe7, #b5fff8, #c4eeff);
    background-size: 400% 400%;
    animation: animate 7s infinite alternate;
}

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

.products h1 {
  font-weight: 700;
  padding: 20px;
  color: var(--c-light);  
  margin-top: 80px;
}

.products h2 {
  font-weight: 700;
  padding: 20 0 20 0px;
  color: var(--c-dark);  
}

.products h3 {
  font-size: 7.2vh;
  font-weight: 700;
  padding: 20px;
  color: var(--c-light);  
  margin-top: 0;
}

.products p {
  padding: 5px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  }

.card-img-top {
    border-radius: 50px;
    padding: 20px;
}
.card {
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.card h5 {
    color: var(--c-light);  
}
.card p {
    color: var(--c-brand); 

}
.card-body {
    padding: 15px;
    margin-top: -15px;
}
.btn-primary{
    border: none;
    background-color: var(--c-light);  
    border-radius: 50px;

    margin-left: 15px;
}
.btn-primary:hover{
    background-color: #00a489;  
    border: none;
}

.parallax {
  background: linear-gradient(rgba(0,0,0,.0), rgba(0,0,0,.0)),
    url(../images/parallax-lg.png);
  min-height: 720px; 
  width: 100%;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

.parallax h1 {
  display: flex;
  justify-content: center;
  align-items: center;  
  margin-bottom: 0;
  font-size: 7.2vh;
  font-weight: 700;
  padding: 300px;
  color: white;
  text-shadow: 2px 2px 8px black;

}

@media screen and (max-width: 650px) {
  .parallax {
  background: linear-gradient(rgba(0,0,0,.0), rgba(0,0,0,.0)),
    url(../images/parallax-sm.jpg);  
  min-height: 600px; 
  width: 100%;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto;
  }
  .parallax h1 {
  display: flex;
  justify-content: center;
  align-items: center;  
  margin-bottom: 0;
  font-size: 6.6vh;
  font-weight: 700;
  padding: 20px;
  color: white;
  text-shadow: 1px 1px 2px black;

}
}

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 33.3%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  transition: transform .4s; /* Animation */
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s linear;
  border: 5px solid white;
}
.column img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}


@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
  .column img {
    filter: grayscale(0) brightness(1);
  }
}

#gallery-modal .modal-img{
    width: 100%;
}

.container-fluid {
    margin:0 !important;
    padding:0 !important;
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.video {
    margin: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url(../images/video-bg.jpg) top left no-repeat transparent;
}

@media screen and (max-width: 650px) {
  .parallax {
    margin: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: url(../images/video-bg-sm.jpg) top left no-repeat transparent;
}
}

.video h1 {
  font-weight: 700;
  padding: 20px;
  color: white;  
}

@media screen and (max-width: 768px) {
.video h1 {
  font-size: 4,6vh;
  font-weight: 700;
  padding: 10px;
  color: white;  
}
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  border-radius: 25px;
    border-style: solid;
    border-width: 15px;
    border-color: #fff;
}

.shops h1 {
  font-weight: 700;
  padding: 20px;
  color: var(--c-light);  
}

.shops .logos2 img {
height: auto;
width: auto;
margin: 10px;
border: 1px solid #bebebe;
transition: transform .4s; /* Animation */
}

.shops .logos2 img:hover {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(1px 2px 3px grey);
}

@media screen and (max-width: 768px) {
.shops h1 {
  font-size: 7vh;
  font-weight: 700;
  padding: 10px;
  color: var(--c-light);  
}
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: #047c53 !important;
}

.icon {
  height: 32px; width: 32px;
}

@media screen and (max-width: 768px) {
.col-8 {
  flex: 0 0 auto;
  width: 100%;
}
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: #00d2b5 !important;
}

#biedronka {
    max-width: 250px;
}


.login-popup{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1099;
    background-color:rgba(0,0,0,0.6);
    visibility: hidden;
    opacity: 0;
    transition: all 1s ease;
}
.login-popup.show{
    visibility:visible;
    opacity: 1;
}
.login-popup .box{
    background-color:#ffffff;
    width: 750px;
    position: absolute;
    left: 50%;
    top:50%;
    transform:translate(-50%,-50%);
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    margin-left: 50px;
    transition: all 1s ease;

}
.login-popup.show .box{
    opacity: 1;
    margin-left: 0;
}
.login-popup .box .img-area{
    flex:0 0 50%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    padding:30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-popup .box .img-area h1{
    font-size: 30px;
}
.login-popup .box .img-area .img{
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    background-image: url('../images/popup.jpg');
    background-size: cover;
    background-position: center;
    animation: zoomInOut 7s linear infinite;
    z-index: -1;

}
@keyframes zoomInOut{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
}
.login-popup .box .form{
    flex:0 0 50%;
    max-width: 50%;
    padding:40px 30px;
}

.login-popup .box .form h1{
    color:#000000;
    font-size: 30px;
    margin:0 0 30px;
}
.login-popup .box .form .form-control{
    height: 45px;
    margin-bottom: 30px;
    width: 100%;
    border:none;
    border-bottom:1px solid #cccccc;
    font-size: 15px;
    color:#000000;
}
.login-popup .box .form .form-control:focus{
    outline: none;
}
.login-popup .box .form label{
    font-size: 15px;
    color:#555555;
}
.login-popup .box .form .btn{
    width: 100%;
    background-color: #E91E63;
    margin-top:40px;
    height: 45px;
    border:none;
    border-radius: 25px;
    font-size: 15px;
    text-transform: uppercase;
    color:#ffffff;
    cursor: pointer;
}
.login-popup .box .form .btn:focus{
    outline: none;
}

.login-popup .box .form .close{
    position: absolute;
    right: 10px;
    top:0px;
    font-size: 30px;
    cursor: pointer;
}

/*responsive*/
@media(max-width: 767px){
    .login-popup .box{
        width: calc(100% - 30px);
    }
    .login-popup .box .img-area{
        display: none;
    }
    .login-popup .box .form{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

  

