:root {
    --main-white: #FFFFFF;
    --main-white-darken: #D5DDE4;
    --navbar-font-size: 14px;
    --title-font-size: 45px;
    --title-small-font-size: 32px;
    --title-tiny-font-size: 22px;
    --description-large-font-size: 22px;
    --description-font-size: 18px;
    --button-font-size: 14px;
}

html
{   
    overflow-x: hidden !important;
}
body
{
    font-family: 'Montserrat', sans-serif !important;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1
{
    font-size: 42pt;
    font-weight: bold;
    padding-bottom: 10px;
}
h4{
    text-align: center;
}

h5{
    font-weight: 600;
}
h2
{
    font-size: 32pt;
    font-weight: bold;
}

p{
    font-weight: 600;
    font-size: 10pt;
}
li{
    display: flex;
    align-items: center;
    margin-top: 25px;
    font-size: 12pt;
    font-weight: 500;
}
ul
{
    padding: 0
}

button:focus{
    outline: none !important;
}

/*---- CONTAINER -----*/
.container-fluid
{
    padding-top: 7vh;
    padding-bottom: 7vh;
}
.container-fluid:nth-child(2n+1)
{
    background-color: #f1f2f9;
}

/* ---- MENU ----- */

.navbar-top {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100vw;
    top: 0;
    height: 90px;
    padding: 25px 100px;
    background-color: #00123E;
    font-size: var(--navbar-font-size);
    z-index: 100;
}

.navbar-top a, .navbar-top li {
    color: var(--main-white);
    text-decoration: none;
    transition: 0.3s;
    margin-top: unset;
    font-size: unset;
    font-weight: unset;
}

.navbar-top .navbar-menu a {
    height: 100%;
}

.navbar-top .navbar-menu li.nested {
    padding: 7px 0;
    line-height: 1;
    color: #A4ACC2;
    transition: 0.3s;
    z-index: 2;
}

.navbar-top .navbar-menu li.nested:hover {
    color: white;
    transition: 0.3s;
}

.navbar-top .navbar-menu li:not(.nested) {
    border-bottom: 2px solid transparent;
}

.navbar-top a:hover, .navbar-top li:not(.nested):not(.product):hover {
    color: #43C5FF;
    transition: all 0.3s;
}

.navbar-top li.product {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 40px) !important;
    padding: 0 30px 0 20px;
    margin: 20px 0 20px 10px;
    border-radius: 5px;
    transition: none;
}

.navbar-top li.product span {
    display: flex;
    position: relative;
    align-items: center;
}

.navbar-top li.product span img {
    max-height: 12px;
    width: auto;
    margin-left: 8px;
}

.navbar-top .navbar-logo {
    display: flex;
    align-items: center;
    line-height: 1.8;
    letter-spacing: 0.36px;
    cursor: pointer;
    color: var(--main-white-darken);
    font-size: var(--description-font-size);
}

.navbar-top .navbar-logo img {
    max-width: 58px;
    height: auto;
    margin-right: 15px;
}

.navbar-menu-container {
    display: flex;
    width: 100%;
    height: calc(100% + 50px);
    margin: -25px 0;
}

.navbar-menu {
    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.navbar-menu .navbar-menu-item {
    display: flex;
    position: relative;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    letter-spacing: 0.4px;
    cursor: pointer;
}

.navbar-menu .navbar-menu-item ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90%;
    left: 0;
    min-width: 230px;
    height: 0;
    background: #12245E;
    border-radius: 10px;
    border-top-left-radius: 0;
    padding: 7px 20px;
    list-style-type: none;
    z-index: 150;
    opacity: 0;
    transition: 0.3s;
}

.navbar-login {
    display: flex;
    justify-content: flex-end;
}

.navbar-login-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.navbar-login-item img {
    margin-right: 15px;
}

.hamburger {
    display: none;
    position: fixed;
    padding: 10px;
    border: 0;
    top: 45px;
    right: 15px;
    transform: translateY(-50%);
    background-color: transparent;
    cursor: pointer;
    z-index: 110;
}

.hamburger .hamburger-container span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--main-white);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    position: absolute;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger .hamburger-container span:nth-child(1) {
    top: 5px;
}
  
.hamburger .hamburger-container span:nth-child(2), .hamburger .hamburger-container span:nth-child(3) {
    top: 13px;
}
  
.hamburger .hamburger-container span:nth-child(4) {
    top: 21px;
}
  
.hamburger.open .hamburger-container span:nth-child(1) {
    top: 18px;
    width: 0%;
    left: 50%;
}
  
.hamburger.open .hamburger-container span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
  
.hamburger.open .hamburger-container span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
  
.hamburger.open .hamburger-container span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

.hamburger-menu-overlay {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #00123E;
}
  
.hamburger-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 30px;
    height: 30px;
}

.hamburger-bars {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--main-white);
    transition: transform 220ms ease-in-out;
}

.hamburger-bars:before, .hamburger-bars:after {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--main-white);
    content: '';
}

.hamburger-bars:before {
    top: -8px;
    transition: top 100ms 250ms ease-in, transform 220ms ease-in-out;
}


.hamburger-bars:after {
    bottom: -8px;
}

/*---- HEADING -----*/

.foto-krysztal2-heading 
{
    background-color: #0e2049 !important;
    padding-top: 6vh;
    padding-bottom: 6vh;
    color: #fff;
    margin-top: 65px;
}

.foto-krysztal2-heading p 
{
    font-size: 12pt;
    font-weight: 400;
}
.foto-krysztal2-description 
{
    font-weight: 500;
    font-size: 11pt;
    width: 70%;
    color: #000;
}
.foto-krysztal2-heading .foto-krysztal2-description
{
    color: #fff;
    width: 60%;
}

/* ------ BUTTON ----- */

.btn 
{
    border-radius: 50px;
    padding: 10px 20px 10px 20px;
    margin: 5px;
}
.btn-yellow 
{
    color: #ffc107;
    border-color: #ffc107;
}
.btn-yellow:hover 
{
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}


.btn.btn-download {
    padding: 0 !important;
    font-size: 11pt;
}
.btn-spec {
    text-decoration: underline;
}

.btn-white 
{
    color: #fff !important;
    border-color: #fff !important;
}
.btn-white:hover {
    color: #272e70 !important;
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
}

/* ------ 7 CECHY ------ */

.foto-krysztal2-image-half 
{
    max-width: 100%;
}
.foto-krysztal2-features h2 
{
    font-size: 32pt;
    font-weight: bold;
}
.foto-krysztal2-features h3 
{
    font-size: 16pt;
    font-weight: bold;
}

.foto-krysztal2-list li .number {
    height: 25px !important;
    width: 25px !important;
    min-height: 25px !important;
    min-width: 25px !important;
    text-align: center;
    background-color: #ffcb0f;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0px 0px 5px 1px #ffcb0f;
}

.number {
    color: #fff;
    font-size: 14pt;
}

.foto-krysztal2-features .foto-krysztal2-description 
{
    color: #000;
    width: 100%;
}

/* ------ Nasze Kryształy ----- */

.foto-krysztal2-ourcrystals h1
{
    font-size: 30pt;
}

.foto-krysztal2-specification .icon-wrapper 
{
    float: left;
    width: 16%;
}
.icon {
    height: 40px;
    margin-top: 10px;
    margin-right: 20px;
}
.foto-krysztal2-specification .description 
{
    float: left;
    width: 84%;
    text-align: justify;
    font-size: 10pt;
    font-weight: 500;
}

.foto-krysztal2-photomontage
{
    position: relative;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}
.foto-krysztal2-photomontage .foto-krysztal2-montage-bg 
{
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background-position: center;
    background-size: cover;
}
.foto-krysztal2-montage-bg.photo-1
{
    background-image: url('/img/krysztal/montage1.png');
}
.foto-krysztal2-montage-bg.photo-2
{
    background-image: url('/img/krysztal/montage2.png');
}
.foto-krysztal2-montage-bg.photo-3
{
    background-image: url('/img/krysztal/montage3.png');
    background-position: left;
}
.foto-krysztal2-montage-bg.left
{
    left: 0;
}
.foto-krysztal2-montage-bg.right
{
    right: 0;
}
.foto-krysztal2-photomontage .row
{
    position: relative;
    flex-wrap: wrap-reverse;
}
.foto-krysztal2-img-wrapper
{
    height: 150px;
}
.foto-krysztal2-montage-bg .foto-krysztal2-img-wrapper
{
    display: none;
}


/* ----- POSTAW NA JAKOŚĆ ----- */
.foto-krysztal2-video-image img,.foto-krysztal2-video-image video
{
    max-width: 90%;
}

/* ZDJECIA NA KRYSZTALE 5MM */

.foto-krysztal2-card
{
    width: 24%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* .foto-krysztal2-card.large
{
    width: 50% !important;
} */
.foto-krysztal2-card-inside
{
    background-color: #fff;
    box-shadow: 0 0 10px #8d8d8d;
    overflow: hidden;
    border-radius: 0.5rem;
}
.foto-krysztal2-card-inside.desc
{
    padding: 20px 10px;
    height: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
}
.foto-krysztal2-card-inside.desc .foto-krysztal2-desc
{
    width: 100%;
}
.foto-krysztal2-card img
{
    max-height: 100%;
    max-width: 100%;
}
.foto-krysztal2-img.big
{
    width: 80%;
}
.foto-krysztal2-img
{
    width: 60%;
    margin: 10px auto;
}
.foto-krysztal2-desc
{
    text-align: left;
    padding-top: 25px;
}
.foto-krysztal2-desc p:last-child
{
    margin: 0;
}

/* SZERSZA PERSPEKTYWA */

.foto-krysztal2-img-perspective
{
    box-shadow: 0 0 10px #8d8d8d;
}

.foto-krysztal2-card-perspective
{
    padding: 15px;
    height: 380px;
    display: flex !important;
    align-items: center;
}

/* DOSTĘPNE KSZTAŁTY */

.foto-krysztal2-available-slider 
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foto-krysztal2-card-slider 
{
    width: 30%;
    margin: 1%;
    padding: 20px;
}
.foto-krysztal2-shape
{
box-shadow: 0px 0px 13px 5px rgba(178, 178, 178, 0.5);
border: none !important;
height: 250px;
background-color: #fff;
border-radius: 10px;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 150px;
transition: all .5s ease-in-out;
}
.foto-krysztal2-shape-img-wrapper 
{
    height: 200px;
    position: relative;
}
.foto-krysztal2-shape img
{
    max-height: 200px;
    max-width: 70%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
}
.foto-krysztal2-shape:hover 
{
    box-shadow: none;
    cursor: pointer;
    background: transparent;
    transition: all .5s ease-in-out;
}
.foto-krysztal2-shape-img-wrapper h2
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.foto-krysztal2-caption
{
    background-color: #ffcb0f;
    position: relative;
    bottom: 12px;
    width: 80%;
    height: 100px;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    margin: 10px auto !important;
    padding: 5px;
    margin-bottom: 0 !important;
    border-radius: 10px;
}
.foto-krysztal2-caption h4 
{
    font-size: 18pt;
    font-weight: bold;
    margin-bottom: 0;
}
.foto-krysztal2-caption p 
{
    margin-bottom: 0;
}
.foto-krysztal2-shape-add-to-cart-wrapper 
{
    margin: 10px auto;
    height: 30px !important;
}

.slick-prev, .slick-next 
{
    top: 35%;
    height: 70px;
    z-index: 1;
}
.slick-prev img, .slick-next img
{
    max-width: 100%;
    max-height: 100%;
}
.slick-prev 
{
    left: -35px;
}
.slick-next 
{
    right: -35px;
}


/* LAST */

.foto-krysztal2-order-now 
{
    background-color: #2a3251 !important;
    color: #fff;
    padding: 20px 0;
}

.foto-krysztal2-order-now .order-now--text {
    display: flex;
}

.foto-krysztal2-order-now .order-now--text h1 {
    margin: 0;
    padding: 0;
}

.foto-krysztal2-last 
{
    margin-bottom: 15px !important;
}
.foto-krysztal2-order-now a 
{
    text-decoration: underline !important;
}

/* FOOTER */

.footer-wrapper {
    background-color: #00123E;
}

.footer {
    transform: translateY(-30px);
}

.footer .footer-separator {
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.footer .footer-separator-image {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-right: 60px;
    background-color: #00123E;
    font-size: 22px;
    letter-spacing: 0.36px;
    color: var(--main-white);
}

.footer .footer-separator img {
    margin-right: 15px;
}

.footer .footer-separator-line {
    display: flex;
    position: relative;
    z-index: 1;
    height: 2px;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    background-color: #24367E;
    opacity: 0.5;
}

.footer .footer-item-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.footer .footer-item-header .footer-item-header-title {
    margin-bottom: 10px;
    font-size: var(--title-tiny-font-size);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #D5DDE4;
}

.footer .footer-item-header .underline {
    display: block;
    width: 25px;
    height: 4px;
    background-color: #43C5FF;
}

.footer .footer-item {
    margin: 30px 0;
}

.footer .footer-item a {
    display: block;
    color: #A4ACC2;
    transition: 0.3s;
}

.footer .footer-item a:hover {
    text-decoration: underline;
    transition: 0.3s;
}

.footer .footer-item img {
    margin-right: 30px;
}

.foto-rounded-edges .cristal-image-1 {
    left:110px
}

.foto-rounded-edges .cristal-image-2 {
    top: 12px;
    left:40px
}

.foto-rounded-edges .cristal-image-3 {
    bottom: 32px;
    right:85px
}

.foto-rounded-edges .cristal-image-4 {
    top:-30px;
    left:50px;
}

.foto-rounded-edges .cristal-image-5 {
    top: -38px;
    right: 10px;
}

.foto-rounded-edges .cristal-image-6 {
    top: -57px;
    right: 55px;
}

.map {
    width: 100%;
    min-height: 260px;
    height: auto;
}

.justify {
    text-align: justify;
}