* {
    scroll-behavior: smooth;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: inherit;
}
.wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right bottom, #a9927d, #beab94, #d3c5ac, #e8dfc5, #fefae0);
}
.Onas{
    position: relative;
    height: 100%;
    width: 100%;
    padding: 50px 200px;
}
.OnasHeader{
    width: 100%;
    text-align: center;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 15px 15px 25px rgb(0,0,0,0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter:  blur(5px);
    overflow: hidden;
}
.OnasHeader::before{
    position: absolute;
    width: 400px;
    height: 400px;
    content: '';
    bottom: -200px;
    right: -190px;
    background-image:url("images/ZEGAR6.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.OnasHeader h2{
    font-size: 1.3rem;
    line-height: 30px;
    padding-bottom: 40px;
    color: #343a40;
}
.OnasHeader h1{
    font-size: 2rem;
    color: #343a40;
}
@media screen and (max-width:950px){
    .Onas{
        padding: 50px 50px;
    }
    .OnasHeader{
        padding: 30px;
    }
    .OnasHeader h1{
        font-size: 1.7rem;
    }
    .OnasHeader h2{
        font-size: 1.1rem;
    }
}
.mainSection{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 1200px;
    width: 100%;
    overflow: hidden;
}
.zegar{
    position: absolute;
    left: -300px;
    top: 150px;
    width: 1000px;
}
.photoCarousel{
    overflow-x: hidden;
    width: 800px;
    height: 600px;
    background-color:#beab94;
    position: relative;
    border-radius: 10px;
    box-shadow: 15px 15px 25px rgb(0,0,0,0.3);
}
.slides{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.slide{
    width: 800px;
    height: 600px;
    border: 10px solid #beab94;
    background-image: url("images/slider/1.jpg");
    background-position: center;
    background-size: cover;
    transition: 0.5s;
    animation: slide 1s;
}
@keyframes slide {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
.arrows{
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 0 30px;
}
.arrow{
    opacity: 0.5;
    cursor: pointer;
    transition: 0.5s;
}
.arrow-left{
    width: 0px;
    height: 0px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right: 30px solid black;
}
.arrow-right{
    width: 0px;
    height: 0px;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid black;
}
.arrow-left:hover, .arrow-right:hover{
    opacity: 1;
}
.arrow-left:hover{
    transform: translateX(-10%);
}
.arrow-right:hover{
    transform: translateX(10%);
}
.context{
    position: relative;
    max-width: calc(100% - 1100px);
}
.context h1,h2{
    color: #f8f9fa;
    position: relative;
}
.context h1 {
    margin-bottom: 30px;
    font-size: 3em;
    animation: context1 0.6s;
}
.context h2{
    animation: context2 0.6s;
    font-size: 2em;
}
@media screen and (max-width:1350px){
    .context{
        position: absolute;
        z-index: 2;
        max-width: 650px;
        top: 650px;
        background-color: rgba(255.255.255.0.9);
        padding: 0 20px;
    }
    .context h1{
        font-size: 1.6em;
    }
    .context h2{
        font-size: 1.3em;
    }
    .context h1,h2{
        color: black;
        position: relative;
    }
}
@media screen and (max-width:801px) {
    .slide{
        border: 0px solid #beab94;
        border-top: 10px solid #beab94;
        border-bottom: 10px solid #beab94;
        border-radius: 0;
    }
    .photoCarousel{
        border-radius: 0;
    }

}
@keyframes context1 {
    from{
        transform: translateX(-200px);
    }
    to{
        transform: translateX(0px);
    }
}
@keyframes context2 {
    from{
        transform: translateX(200px);
    }
    to{
        transform: translateX(0px);
    }
}
.context h1::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background-color: white;
    width: 100%;
    height: 100%;
    animation: h1Main 1.2s;
    opacity: 0;
}
.context h2::before{
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    background-color: white;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: h2Main 1.2s;
}
@keyframes h1Main {
    from{
        transform: translateX(0px);
        opacity: 1;
    }
    to{
        transform: translateX(200px);
        opacity: 0;
    }
}
@keyframes h2Main {
    from{
        transform: translateX(0px);
        opacity: 1;
    }
    to{
        transform: translateX(-200px);
        opacity: 0;
    }
}
nav{
    width: 100%;
    position: fixed;
    overflow: hidden;
    top: 45px;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 25;
}
.logoNav{
    width: 300px;
    height: 100px;
    overflow-y: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: logoNav 0.35s;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
}
.burger{
    position: relative;
    width: 70px;
    height: 70px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 400;
    cursor: pointer;
    overflow: hidden;
}
.burger span{
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: #5a5a5a;
    border-radius: 4px;
    transition: 0.5s;
  }
.burger span:nth-child(1){
    transform: translateY(-15px);
    width: 25px;
    left: 15px;
  }
  .burger span:nth-child(2){
    transform: translateY(15px);
    width: 15px;
    left: 15px;
  }
  .burger.toggle span:nth-child(1){
    width: 40px;
    transform: translateY(0px) rotate(45deg);
    transition-delay: 0.125s;
  }
  .burger.toggle span:nth-child(2){
    width: 40px;
    transform: translateY(0px) rotate(315deg);
    transition-delay: 0.25s;
  }
  .burger.toggle span:nth-child(3){
    transform: translateX(60px);
  }
.nav__links{
    height: 100px;
    width: 700px;
    background-color: rgba(255,255,255,0.85);
    backdrop-filter: blur(5px);
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    animation: nav__links 0.35s;
    transition: transform 0.5s ease-in;
}
.nav__links ul{
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
}
.nav__links ul li{
    color: black;
    position: relative;
    padding: 6px;
    font-size: 1.1em;
    cursor: pointer;
    transition: color 0.3s;
    transition: font-size 0.061s;
}
.nav__links ul li:hover{
    color: #a9927d;
    font-size: 1.2em;
}
.nav__links ul li::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #a9927d;
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.25s ease-out;
}
.nav__links ul li:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}
@keyframes nav__links{
    0%{
        transform: translateX(600px);
    }
    100%{
        transform: translateX(0px);
    }
}
@keyframes logoNav{
    0%{
        transform: translateX(-300px);
    }
    100%{
        transform: translateX(0px);
    }
}

@media screen and (max-width:980px) {
    .nav__links{
        width: 600px;
    }
}
@media screen and (max-width:880px) {
    .nav__links{
        width: 500px;
    }
}
@media screen and (max-width:800px) {
    .logoNav{
        width: 250px;
    }
    nav{
        padding-right: 20px;
        z-index: 100;
    }
    nav a{
        z-index: 200;
    }
    .nav__links{
        z-index: 100;
        position: fixed;
        top: 0;
        padding-top: 200px;
        right: 0px;
        width: 100%;
        border-radius: 0px;
        height: 100%;
        font-size: 1.2em;
        transform: translateX(100%)
    }
    .nav__links ul{
        height: 100%;
        flex-direction: column;
        padding-left: 0 ;
    }
    .nav__links li{
        opacity: 0;
    }
    .burger{
        display: flex;
    }
    .nav__active{
      transform: translateX(0%);
    }
}

@keyframes navLinkFade{
    from{
      opacity: 0;
      transform: translateX(50px);
    }
    to{
      opacity: 1;
      transform: translateX(0px);
    }
  }





















footer{
    width: 100%;
    background-color: white;
}
.footer{
    position: relative;
    bottom: 0;
    width: 90%;
    left: 5%;
    height: 350px;
    background-color: white;
    z-index: 10;
    overflow: hidden;
}
.footerFlex{
    border-top: 1px #a9927d solid;
    position: absolute;
    top: 72px;
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.footerBox{
    border-left: 1px #a9927d solid;
    width: 400px;
    display: flex;
    justify-content: center;
    align-items:flex-start;
}
.footerBox:nth-child(1){
    border-left: none;
}
.footerBox ul{
    list-style: none;
}
.footerBox ul li{
    position: relative;
    line-height: 30px;
    color: #a9927d;
    cursor: pointer;
    transition: all 0.45s;
}
.footerBox ul li::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: black;
    transform: scaleX(0);
    transform-origin: right;
    transition: 0.25s ease-out;
}
.footer ul li:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}
.footerBox ul li:nth-child(1)::after{
    display: none;
}
.footerBox ul li:nth-child(1){
    cursor: default;
}
.footerBox:nth-child(3) ul li::after{
    display: none;
}
.footerBox ul li:hover{
    color: black;
}
.fab::before{
    font-size: 2rem;
    color: #a9927d;
    transition: all 0.45s;
    cursor: pointer;
}
.fab:hover::before{
    color: black;
}
.footerBox ul li:nth-child(1){
    font-weight: bold;
    color: black;
}
.logoFooter{
    z-index: 5;
    top: 10px;
    position: absolute;
    left: calc(50% - 156px);
}
@media screen and (max-width:730px){
    .logoFooter{
        width: 200px;
        left: calc(50% - 100px);
    }
    .footer{
        height: 550px;
    }
    .footerFlex{
        height: 550px;
        top: 49px;
        flex-direction: column;
        padding-top: 60px;
    }
    .footerBox{
        justify-content: left;
        border-left: none;
    }
}
.wyslano{
    position: absolute;
    width: 400px;
    height: 400px;
    left: calc(50% - 200px);
    top: calc(50% - 200px);
    background-color: white;
    color: black;
}



/*------------------ KONTAKT ------------------*/


.kontakt{
    padding-left: 5%;
    height: 950px;
}
.kontaktFlexBox{
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    width: 70%;
    height: 800px;
}
.kontaktFlexBox ul{
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 50px;
    padding-left: 0;
    padding-bottom: 50px;
    color: white;
}
.kontaktFlexBox ul:nth-child(1),
.politykaPrywatnosci ul:nth-child(1){
    border-bottom: 3px white solid;
}
.kontaktFlexBox ul li:nth-child(1){
    font-weight: bolder;
    line-height: 2.5rem;
}
.politykiFlexBox{
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    width: 70%;
    height: 120%;
    margin-bottom: 100px;
}
.politykaPrywatnosci ul{
    color: white;
    overflow: hidden;
    padding-left: 0;
    padding-bottom: 20px;
    padding-top: 20px;
}
.politykaPrywatnosci ul li{
    font-size: 1.2rem;
}
.zwrotyFlexBox{
    margin-top: 200px;
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    width: 80%;
    height: 120%;
    margin-bottom: 100px;
    color: white;
}
.zwrotyFlexBox ul{
    padding-left: 0;
    font-size: 1.2rem;
    overflow: hidden;
}
.zwrotyFlexBox ul li b{
    color: #989898;
}
.zwrotyFlexBox h1{
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 3px white solid;
    overflow: hidden;
}
.regulamin{
    height: 100%;
    margin-top: 200px;
    padding: 0 100px;
    color: white;
}
.regulamin h1{
    font-size: 1.3rem;
    line-height: 2rem;
}
@media screen and (max-width:800px){
    .politykiFlexBox{
        margin-top: 150px;
        margin-bottom: 150px;
    }
    .politykaPrywatnosci{
        margin-top: 100px;
    }
    .zwroty{
        height: 100%;
    }
    .regulamin{
        padding: 0 25px;
    }
}

.arrowLeft,
.arrowRight{
    opacity: 0.9;
}
.arrowRight:hover{
    transform: translateX(10%);
    transition: 0.2s;
}
.arrowLeft:hover{
    transform: translateX(-10%);
    transition: 0.2s;
}
.arrowsForm{
    padding: 0 20px;
    position: absolute;
    left: 0;
    bottom: 20px;
    display: none;
}
.platnosciFlexBox,
.regulaminFlexBox,
.politykiFlexBox,
.zwrotyFlexBox{
    text-align: justify;
}
.platnosciFlexBox{
    padding: 0 50px;
}
.platnosciFlexBox h1{
    font-size: 2rem;
}
.platnosciFlexBox h1,
.platnosciFlexBox h2{
    color: white;
}
