:root{
    --primary-color: #091235;
    --primary-color-hover: #10216e;
}
*{
    scroll-behavior: smooth;
    box-sizing: border-box;
}
html{
    font-size: 10px;
}
body{
    margin: 0;
    background-color: #fff;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
img{
    user-select: none;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
header{
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px 8px;
    position: relative;
}
.logo{
    height: 59px;
    width: auto;
}
.hamburger-menu-button{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 34px;
    cursor: pointer;
}
.hamburger-line{
    height: 3px;
    width: 100%;
    background-color: #000;
}
.close-menu-button{
    width: 34px;
    height: 34px;
    position: relative;
    cursor: pointer;
    z-index: 20;
    margin: 30px 30px 30px auto;
    display: block;
}
.close-menu-button div{
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #000;
    top: 50%;
    left: 0;
    transform-origin: center;
    transition: all 0.3s ease;
}
.close-menu-button div:first-child{
    transform: rotate(45deg);
}
.close-menu-button div:last-child{
    transform: rotate(-45deg);
}
.mobile-box{
    width: 75%;
    max-width: 350px;
    height: 100%;
    margin-left: auto;
    background-color: #fff;
    box-shadow: 2px 0 5px 0 #6b6a6c;
    padding-top: 1px;
    overflow-y: auto;
    pointer-events: all;
    transform: translateX(350px);
    transition: transform 350ms ease;
}
.mobile-box.active-menu{
    transform: translateX(0);
}
nav{
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.21px;
    font-size: 2.26rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    pointer-events: none;
}
.navigation-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding-inline-start: 0;
}

.navigation-list a{
    display: block;
    padding: 5px 0;
    margin: 5px 0;
    cursor: pointer;
    color: #000;
    transition: color 277ms ease;
    width: fit-content;
    text-align: center;
}
.navigation-list a:hover{
    color: var(--primary-color);
}
.underline-animation{
    display: none;
}
.underline-animation::after{
    content: '';
    pointer-events: none;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    margin-top: 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 277ms ease, opacity 277ms ease, background-color 277ms ease;
}
.underline-animation:hover::after{
    transform: translateY(0);
    opacity: 1;
    background-color: var(--primary-color);
}
.flags-box{
    display: flex;
    gap: 14px;
}
.flag{
    height: 24px;
    width: auto;
    padding: 0 3px;
    cursor: pointer;
}
.flag-first{
    margin: 0;
    padding-left: 0;
}
.last-flag{
    padding: 5px 0 0 !important;
}
.scroll-top-button{
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 10px 15px 8px;
    border: none;
    background-color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transform: translateY(26px) scale(0.94);
    transition: opacity 177ms ease, transform 177ms ease, background-color 160ms ease-out;
}
.scroll-top-button:hover{
    background-color: var(--primary-color-hover);
}
.scroll-top-button.active{
    opacity: 1;
    pointer-events: all;
    transform: translateY(0) scale(1);
}
.scroll-top-button img{
    height: 25px;
    width: auto;
}
main{
    width: 100%;
    background-color: #fff;
}
.slider{
    position: relative;
    width: 100%;
    height: 61.5vh;
    overflow: hidden;
}
.search-engine{
    max-width: 1280px;
    padding: 20px 25px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.search-a{
    margin: 10px 0 12px;
}
.search-button{
    width: 190px;
    height: 47.5px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    outline: none;
    font-size: 1.83rem;
    letter-spacing: 0.8px;
    border-radius: 3px;
    cursor: pointer;
    transition: 155ms background-color ease;
}
.search-button:hover{
    background-color: var(--primary-color-hover);
}
.search-button-box{
    display: flex;
    align-items: end;
    opacity: 0;
    transform: translateY(77px);
    transition: opacity 500ms ease, transform 500ms ease;
    transition-delay: 100ms;
}
.input-box{
    margin: 0 0 17px;
    opacity: 0;
    transform: translateY(77px);
    transition: opacity 500ms ease, transform 500ms ease;
    transition-delay: 100ms;
}
.input-box.visible, .search-button-box.visible{
    opacity: 1;
    transform: translateY(0);
}
.delay1{
    transition-delay: 100ms;
}
.delay2{
    transition-delay: 100ms;
}
.input-box label{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 10px;
}
.input-name{
    font-size: 1.7rem;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    width: 100%;
}
.search-input{
    width: 190px;
    height: 47.5px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    font-size: 1.83rem;
    padding: 0 0 0 15px;
    margin: 6px 0 0;
    background-color: #fff !important;
    color: #000 !important;
    font-family: sans-serif !important;
}
.search-input-result{
    width: 190px;
    height: 47.5px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
    font-size: 1.83rem;
    padding: 0 0 0 15px;
    margin: 6px 0 0;
    background-color: #fff !important;
    color: #000 !important;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    font-family: sans-serif !important;
    cursor: pointer;
}
.input-image{
    position: absolute;
    bottom: 11px;
    right: 15px;
    height: 24px;
    width: auto;
    cursor: pointer;
}
.describe{
    max-width: 1280px;
    padding: 10px;
    margin: auto;
    display: flex;
}
.describe-box{
    width: 100%;
    text-align: center;
    max-width: 570px;
    margin: auto;
}
.describe-h1{
    font-size: 2.38rem;
    margin: 0 0 14px 0;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 500ms ease;
}
.describe-h1.visible{
    opacity: 1;
}
.describe-paragraph{
    font-size: 1.64rem;
    font-weight: 600;
    width: 100%;
    line-height: 1.37;
    margin: 14px 0 1px;
    letter-spacing: 0.33px;
    opacity: 0;
    transition: opacity 500ms ease;
    transition-delay: 99ms;
}
.describe-paragraph.visible{
    opacity: 1;
}
.button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: min-content;
    min-width: 202px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.75rem;
    height: 44px;
    border-radius: 3px;
    margin: 21px auto;
    cursor: pointer;
    transition: 155ms background-color ease;
}
.button:hover{
    background-color: var(--primary-color-hover);
}
.button-container{
    opacity: 0;
    transition: opacity 500ms ease;
    transition-delay: 99ms;
}
.button-container.visible{
    opacity: 1;
}
.describe-underline{
    width: 72px;
    height: 8px;
    display: flex;
    justify-content: space-around;
    margin: 10px auto 0;
    opacity: 0;
    transition: opacity 500ms ease;
}
.describe-underline div{
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 100%;
}
.describe-underline.visible{
    opacity: 1;
}
.apartaments{
    max-width: 1495px;
    padding: 0;
    display: flex;
    justify-content: space-around;
    margin: 10px auto 22px;
    flex-direction: column;
}
.apartament-tile-box{
    margin: 17px auto;
    min-width: 93.7%;
    width: 30%;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 666ms ease, transform 650ms ease;
}
.apartament-tile-box.visible{
    opacity: 1;
    transform: translateY(0);
}
.apartament-tile{ 
    overflow: hidden;
    border: 1px solid #cfc8c8;
    transition: box-shadow 340ms ease;
}
.apartament-tile:hover{
    box-shadow: 0 0 6px #b8b3b3;
}
.apartament-photo{
    width: 100%;
    height: auto;
    max-height: 233.95px;
    object-fit: cover;
    object-position: center;
}
.apartament-button{
    font-size: 1.7rem;
    height: min-content;
    padding: 11px 0;
    margin: 10px auto 20px;
    background-color: var(--primary-color);
    width: 176px;
    color: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 155ms background-color ease;
}
.apartament-button:hover{
    background-color: var(--primary-color-hover);
}
.apartament-name{
    margin: 12px 0 6px;
    font-size: 1.89rem;
    font-weight: 600;
    text-align: center;
}
.apartament-information-box{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    margin: 24px 0;
}
.apartament-information-box img{
    height: 22px;
    width: auto;
    margin-right: 10px;
}
.apartament-info{
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    position: relative;
}
.hover-title{
    position: absolute;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.32rem;
    width: max-content;
    padding: 3px 8px;
    border-radius: 3px;
    top: -30px;
    left: 0;
    display: none;
    z-index: 12;
}
.apartament-info:hover > .hover-title{
    display: block;
}
sup{
    position: relative;
    top: -0.4em;
}
.packages{
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}
.packages-h2{
    font-size: 2.38rem;
    letter-spacing: 1px;
    width: min-content;
    margin: 0 auto 14px;
    opacity: 0;
    transition: opacity 500ms ease;
}
.packages-h2.visible{
    opacity: 1;
}
.packages-paragraph{
    font-size: 1.64rem;
    font-weight: 600;
    max-width: 570px;
    margin: auto;
    line-height: 1.37;
    text-align: center;
    margin-top: 14px;
    opacity: 0;
    transition: opacity 500ms ease;
    transition-delay: 100ms;
}
.packages-paragraph.visible{
    opacity: 1;
}
.packages-tile-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 30px 0 22px;
}
.packages-tile-box{
    width: 100%;
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 666ms ease, transform 650ms ease;
}
.packages-tile-box.visible{
    opacity: 1;
    transform: translateY(0);
}
.packages-tile{
    height: 100%;
    margin: 17px 0;
    border: 1px solid #cfc8c8;
    border-radius: 3px;
    transition: box-shadow 340ms ease;
}
.packages-tile:hover{
    box-shadow: 0 0 6px #b8b3b3;
}
.packages-tile img{
    width: 100%;
    max-height: 236.5px;
}
.packages-tile h3{
    text-align: center;
    font-size: 2.05rem;
    letter-spacing: 0.75px;
    margin: 17px 0 0;
}
.packages-tile p{
    text-align: center;
    padding: 14px 13px 10px;
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 600;
}
footer{
    width: 100%;
    background-color: #141414;
    margin: 40px 0 0;
}
.footer-container{
    max-width: 1220px;
    padding: 30px 10px 50px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}
.first-footer-column{
    order: 1;
    margin-top: 15px;
}
.first-footer-column p{
    color: #fff;
    font-size: 1.6rem;
    text-indent: 0;
    text-align: center;
}
.footer-logo{
    height: 77px;
    width: auto;
    margin-bottom: 5px;
}
.footer-logo-box{
    display: block;
    width: fit-content;
    margin: auto;
    transform: translateX(4px);
}
footer a{
    color: #fff;
    transition: color 60ms ease;
}
footer a:hover{
    color: #2d4fe2;
}
footer h4{
    font-size: 1.8rem;
    color: #fff;
    margin-top: 3px;
    text-align: center;
    margin-bottom: 15px;
}
footer a{
    color: #fff;
    font-size: 1.6rem;
}
.second-footer-column p{
    width: 100%;
    text-align: center;
    line-height: 1.41;
}
.third-footer-column p{
    width: 100%;
    text-align: center;
    line-height: 1.41;
}
.footer-column{
    margin-bottom: 22px;
}
.contact{
    max-width: 1290px;
    padding: 30px 15px 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.form{
    max-width: 400px;
    border: 1px solid #cfc8c8;
    display: flex;
    flex-direction: column;
    padding: 15px 25px 28px;
    border-radius: 3px;
    box-shadow: 0 0 1px #b8b3b3;
    opacity: 0;
    transform: translateY(65px);
    transition: opacity 550ms ease, transform 475ms ease;
    transition-delay: 89ms;
    margin-top: 50px;
}
.form.visible{
    opacity: 1;
    transform: translateY(0);
}
.form-input:focus{
    outline: none;
    border-bottom: 2px solid #000;
}
.form-input{
    width: 100%;
    height: 35px;
    font-size: 1.7rem;
    border: none;
    border-radius: unset;
    outline: none;
    border-bottom: 1px solid #000;
    padding-left: 10px;
}
.form-input-title{
    display: block;
    margin: 16px 0 5px 10px;
    font-size: 1.7rem;
    font-weight: 600;
}
textarea{
    width: 100%;
    margin: 10px 0;
    resize: vertical;
    height: 160px;
    max-height: 400px;
    min-height: 160px;
    font-size: 1.6rem;
    padding: 10px;
    font-family:"Montserrat";
}
.form-label{
    width: 100%;
}
.checkbox{
    font-size: 1.25rem;
    color: #6b6a6c;
    display: flex;
    align-items: baseline;
    margin-top: 10px;
    cursor: pointer;
}
.checkbox a{
    color: #000;
}
.checkbox a:hover{
    color: var(--primary-color);
}
.checkbox input{
    transform: translateY(3px);
    width: 15px;
    height: 15px;
}
.checkbox p{
    margin-left: 10px;
}
.submit-button{
    cursor: pointer;
    width: min-content;
    margin: 25px auto 1px;
    padding: 14px 80px;
    border-radius: 3px;
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.81rem;
    letter-spacing: 1px;
    transition: background-color 200ms ease;
}
.submit-button:hover{
    background-color: var(--primary-color-hover);
}
.contact-data h1{
    font-size: 2.31rem;
    letter-spacing: 1.1px;
    margin: 0 0 20px;
    width: 100%;
}
.contact-data p{
    font-size: 1.6rem;
    padding-left: 13px;
    margin: 17px 0;
}
.contact-data div{
    display: flex;
    align-items: center;
    width: 100%;
}
.contact-data img{
    width: 22px;
    height: auto;
}
.contact-data h2{
    width: 100%;
    font-size: 2.31rem;
    letter-spacing: 1.1px;
    margin: 14px 0 20px;
}
.contact-social{
    width: 100%;
}
.contact-data-box{
    display: flex;
    flex-direction: column;
}
.contact-social img{
    width: 32px;
    height: auto;
    margin-right: 15px;
    vertical-align: middle;
}
.contact-data{
    height: min-content;
    max-width: 400px;
    width: 100%;
    position: static;
    top: 0;
    opacity: 0;
    transform: translateY(65px);
    transition: opacity 550ms ease, transform 375ms ease;
    transition-delay: 89ms;
    display: block;
}
.contact-data.visible{
    opacity: 1;
    transform: translateY(0);
}
.socials-box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.home-staging{
    max-width: 1300px;
    padding: 0 20px 15px;
    margin: 0 auto;
}
.home-staging-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 600ms ease, transform 500ms ease;
    transition-delay: 220ms;
}
.home-staging-container.visible{
    opacity: 1;
    transform: translateY(0);
}
.home-staging-text-box h2{
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: 1px;
    text-align: center;
}
.home-staging-text-box h3{
    margin: 28px 0 18px;
    font-size: 2.4rem;
    letter-spacing: 1px;
    text-align: center;
}
.home-staging-text-box{
    max-width: 505px;
}
.home-staging-text-box p{
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.31;
    text-align: center;
}
.home-staging-text-box div{
    display: flex;
    align-items: center;
    margin: 0 0 17px;
    justify-content: center;
}
.home-staging-text-box div p{
    margin: 0 0 0 14px;
    font-size: 1.7rem;
}
.home-staging-img-box{
    opacity: 0;
    transform: translateY(65px);
    transition: opacity 333ms ease, transform 333ms ease;
}
.home-staging-img-box.visible{
    opacity: 1;
    transform: translateY(0);
}
.home-staging-img-box img{
    width: 100%;
    max-width: 400px;
    border-radius: 3px;
    box-shadow: 7px 7px 0 var(--primary-color);
    margin-top: 44px;
}
.staging-button{
    margin: auto !important;
    margin-top: 30px !important;
    justify-content: center !important;
}
.home-staging-image{
    width: 100%;
    min-height: 35vh;
    background-image: url(../apt/apartament-oaza4/apartament-torun.webp); 
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.home-staging-image h1{
    font-size: 3.55rem;
    color: #fff;
    width: 100%;
    min-height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 404ms ease, transform 250ms ease;
    padding: 0 25px;
}
.home-staging-image h1.visible{
    opacity: 1;
    transform: translateY(0);
}
.o-nas-image-section{
    width: 100%;
    min-height: 35vh;
    background-image: url(../images/noclegi-torun-zdjecie-torunia.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.o-nas-image-section h1{
    font-size: 3.3rem;
    color: #fff;
    width: 100%;
    min-height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 404ms ease, transform 250ms ease;
    padding: 0 25px;
}
.o-nas-image-section br{
    display: block;
}
.o-nas-image-section span{
    display: block;
    width: 100%;
}
.o-nas-image-section h1.visible{
    opacity: 1;
    transform: translateY(0);
}
.alpha-background{
    width: 100%;
    min-height: 35vh;
    background-color: rgba(39, 34, 34, 0.5);
}
.alpha-background3{
    width: 100%;
    min-height: 35vh;
    background-color: rgba(39, 34, 34, 0.61);
}
.o-nas-content{
    width: 100%;
    margin-top: 50px;
}
.o-nas-container{
    max-width: 1295px;
    padding: 0 20px;
    margin: auto;
}
.icons-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 2px;
    flex-wrap: wrap;
}
.icon-box{
    width: 36.6%;
    min-width: 250px;
    margin-bottom: 40px;  
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: scale(0.35);
    transition: opacity 404ms ease-out, transform 380ms ease;
    transition-delay: 150ms;
}
.icon-box.visible{
    opacity: 1;
    transform: scale(1);
}
.icon-box img{
    height: 70px;
    width: auto;
}
.icon-box p{
    font-size: 1.765em;
    font-weight: 600;
    margin: 16px 0;
}
.text-part-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column-reverse;
    opacity: 0;
    transform: translateY(88px);
    transition: transform 500ms ease, opacity 500ms ease;
    transition-delay: 200ms;
}
.o-nas-box2{
    flex-direction: column;
}
.text-part-container.visible{
    opacity: 1;
    transform: translateY(0);
}
.o-nas-text-box{
    width: 100%;
}
.o-nas-image-box{
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(88px);
    transition: transform 500ms ease, opacity 500ms ease;
}
.o-nas-image-box.visible{
    opacity: 1;
    transform: translateY(0);
}
.o-nas-image-box img{
    margin: 55px 0 0;
    width: 100%;
    height: auto;
}
.o-nas-text-box h2{
    font-size: 2.3rem;
    text-align: center;
    margin: 0 0 16px;
}
.image2{
    justify-content: end;
}
.o-nas-text-box p{
    max-width: 640px;
    font-size: 1.64rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.32;
    margin: 16px 0;
}
.buttons-line{
    width: 100%;
    display: block;
}
.buttons-line .button{
    margin: 20px auto 0 !important;
}
.line-a{
    margin: 20px auto 0 !important;
}
.o-nas-first-image{
    box-shadow: -7px 7px 0 var(--primary-color);
}
.o-nas-second-image{
    box-shadow: 7px 7px 0 var(--primary-color);
}
.motto{
    font-size: 3.22rem;
    font-style: oblique;
    margin: 30px 0;
    width: 100%;
    text-align: center;
    letter-spacing: 3px;
}
.motto-part{
    opacity: 0;
    transition-delay: 55ms;
    transition: opacity 550ms ease;
}
.motto-second-part{
    transition-delay: 705ms;
}
.motto-part.visible{
    opacity: 1;
}
.text-part-container .button{
    margin-bottom: 0;
}
#apartamenty, #pakiety{
    scroll-margin: 37px;
}
.button-anchor{
    display: inline-block;
    width: min-content;
    height: min-content;
}
.header-sticky{
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 16;
    background-color: #fff;
}
.header-apartament-box{
    max-width: 1300px;
    padding: 14px 5px;
    margin: auto;
    display: block;
    text-align: center;
}
.header-sticky h2{
    font-size: 1.75rem;
    margin: 0;
}
.header-sticky .button{
    margin: 14px auto 0;
}
.apartament-slider-section{
    width: fit-content;
    padding: 0;
    margin: auto;
    opacity: 0;
    transform: translateY(119px);
    transition: opacity 600ms ease, transform 550ms ease;
    transition-delay: 202ms;
}
.apartament-slider-section.visible{
    opacity: 1;
    transform: translateY(0);
}
.swiper2{
    width: 100%;
    height: 100%;
}
.swiper{
    max-width: 95vw;
    max-height: 324px;
    margin: 44px 0 0;
    border: 1px solid #cfc8c8;
    border-bottom: none;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.swiper-slide img{
    width: 100%;
    height: auto;

}
.swiper2 img{
    height: 61.5vh !important;
    width: 100vw !important;
    object-fit: cover !important;
}
.number-slide{
    background-color: rgba(39, 34, 34, 0.75);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11;
    font-size: 1.6rem;
    padding: 10px 11px;
    border-bottom-left-radius: 3px;
    color: #fff;
    transition: background-color 140ms ease;
}
.prev, .next{
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
    background-color: rgba(39, 34, 34, 0.75);
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 10;
    color: #fff;
    width: 40px;
    height: 40px;
    transition: background-color 140ms ease;
    border-radius: 3px;
    opacity: 1;
    pointer-events: all;
    transition: opacity 100ms ease;
}
.next{
    right: 0;
}
.slider-arrow{
    opacity: .75;
    height: 22px;
    width: auto;
    transition: opacity 140ms ease;
}
.right-arrow{
    transform: rotateY(180deg);
}
.swiper:hover .slider-arrow{
    opacity: 1;
}
.swiper:hover .prev, .swiper:hover .next, .swiper:hover .number-slide{
    background-color: rgba(20, 20, 20, 0.86);
}
.apartament-page-info{
    max-width: 850px;
    padding: 12px 9px;
    margin: -3px auto 0;
    border: 1px solid #cfc8c8;
    border-top: none;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    justify-content: space-between;
}
.active-sticky{
    box-shadow: 0 1px 2px #cfc8c8;
    opacity: 0;
    transition: opacity 250ms ease;
}
.active-sticky.visible{
    opacity: 1;
}
.apartaments-image-section{
    width: 100%;
    min-height: 33vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.apartament-no4{
    background-image: url(../apt/apartament-oaza4/apartament-torun.webp);
}
.apartament-no12{
    background-image: url(../apt/apartament-oaza12/apartament-torun.webp);
}
.apartament-no15a{
    background-image: url(../apt/apartament-oaza15a/apartament-torun.webp);
}
.packiet-buisness{
    background-image: url(../images/pakiet-biznesowy-tlo.webp);
}
.packiet-together{
    background-image: url(../images/pakiet-we-dwoje-tlo.webp);
}
.apartaments-image-section h1{
    padding: 0 20px;
    font-size: 3.3rem;
    color: #fff;
    width: 100%;
    min-height: 33vh;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 404ms ease, transform 250ms ease;
}
.apartaments-image-section h1.visible{
    opacity: 1;
    transform: translateY(0);
}
.alpha-background2{
    width: 100%;
    min-height: 33vh;
    background-color: rgba(39, 34, 34, 0.5);
}
.apartament-description{
    max-width: 888px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.apartament-description h3{
    font-size: 2rem;
    width: 100%;
    text-align: center;
    letter-spacing: 1.05px;
    margin: 30px 0 15px;
    opacity: 0;
    transition: opacity 300ms ease;
}
.apartament-description h3.visible{
    opacity: 1;
}
.apartaments-p{
    font-size: 1.6rem;
    width: 100%;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    margin: 15px 0 0;
    opacity: 0;
    transition: opacity 300ms ease;
    transition-delay: 100ms;
}
.apartaments-p.visible{
    opacity: 1;
}

.next-apartaments{
    margin: 20px auto 3px;
    font-size: 2.02rem;
    width: 100%;
    text-align: center;
    letter-spacing: 1.2px;
    opacity: 0;
    transition: opacity 300ms ease;
    transition-delay: 100ms;
}
.next-apartaments.visible{
    opacity: 1;
}
.pakiets-page{
    max-width: 1200px;
    padding: 0 20px;
    margin: 33px auto 17px;
}
.pakiets-page .pakiets-h3{
    font-size: 2.05rem;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
}
.pxp{
    width: 100%;
    max-width: 616px;
    margin-right: 0;
    opacity: 0;
    transform: translateY(66px);
    transition: opacity 530ms ease, transform 490ms ease;
    transition-delay: 99ms;
}
.pxp.visible{
    opacity: 1;
    transform: translateY(0);
}
.pakiets-page .pakiets-p{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: start;
    line-height: 1.31;
    width: 100%;
    text-align: center;
}
.margin-top{
    font-size: 2.7rem;
    letter-spacing: 1.1px;
    width: 100%;
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: center;
    opacity: 0;
    transition: opacity 375ms ease;
}
.margin-top.visible{
    opacity: 1;
}
.pakiets-p2{
    text-align: center;
    font-size: 1.63rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 825px;
    margin: 15px auto 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 375ms ease, transform 350ms ease;
    padding: 0 20px;
}
.pakiets-p2.visible{
    opacity: 1;
    transform: translateY(0);
}
.pakiets-button-apt{
    margin: 20px auto !important;
}
.pakiets-main-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pakiets-image-boxx{
    width: 36%;
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 530ms ease, transform 490ms ease;
    transition-delay: 99ms;
    display: none;
    border-radius: 3px;
}
.pakiets-image-boxx.visible{
    opacity: 1;
    transform: translateX(0);
}
.pakiets-image-boxx img{
    width: 100%;
    height: auto;
}
.all-pakiets{
    font-size: 2.9rem;
    letter-spacing: 1.1px;
    width: 100%;
    margin: 5px auto 0;
    text-align: center;
    opacity: 0;
    transition: opacity 375ms ease;
}
.all-pakiets.visible{
    opacity: 1;
}
.page-packages-title{
    margin-top: 10px;
}
.margin-auto{
    width: fit-content;
    display: block;
    margin: auto;
}
.slash{
    padding: 0 3px;
}
.o-nas-footer{
    margin-top: 80px !important;
}
.privacy{
    max-width: 1244px;
    padding: 0 25px;
    margin: 39px auto 0;
}
.privacy a{
    font-style: oblique;
    font-weight: 400;
}
.privacy a:hover{
    font-weight: 600;
}
.privacy h1{
    font-size: 2.5rem;
}
.privacy h2{
    font-size: 2.0rem;
}
.privacy p{
    font-size: 1.6rem;
}
.privacy ul{
    font-size: 1.7rem;
    padding-inline-start: 30px;
}
.swiper-lazy-preloader{
    margin-top: 25% !important;
}
.disable{
    opacity: 0;
    pointer-events: none;
}
@media (min-width: 358px){
    header{
        padding: 10px 20px 8px;
    }
    .logo{
        height: 62px;
    }
    nav{
        font-size: 2.35rem;
    }
    .close-menu-button{
        width: 35px;
        height: 35px;
    }
    .flag{
        height: 25px;
    }
    .describe{
        padding: 10px 14px;
    }
    .describe-h1{
        font-size: 2.42rem;
        margin: 0 0 14px 0;
    }
    .describe-paragraph{
        font-size: 1.66rem;
    }
    .packages{
        padding: 0 21px;
    }
    .packages-h2{
        font-size: 2.42rem;
        margin: 0 auto 14px;
    }
    .packages-paragraph{
        font-size: 1.66rem;
        margin-top: 14px;
    }
    .contact-data h1{
        font-size: 2.4rem;
    }
    .contact-data h2{
        font-size: 2.4rem;
    }
    .contact-data p{
        font-size: 1.63rem;
    }
    .home-staging-text-box p{
        font-size: 1.63rem;
    }
    .home-staging-image h1{
        font-size: 3.73rem;
    }
    .o-nas-image-section h1{
        font-size: 3.73rem;
    }
    .apartaments-image-section h1{
        font-size: 3.73rem;
    }
    .motto{
        font-size: 3.5rem;
        margin: 33px 0;
    }
    .header-sticky h2{
        font-size: 1.9rem;
        margin: 0;
    }
    .header-apartament-box{
        padding: 14px 11px;
    }
    .next-apartaments{
        font-size: 2.2rem;
    }
}
@media (min-width: 380px){
    header{
        padding: 10px 25px 8px;
    }
    nav{
        font-size: 2.45rem;
    }
    .close-menu-button{
        width: 36px;
        height: 36px;
    }
    .flag{
        height: 26px;
    }
    .search-input{
        width: 200px;
        height: 50px;
        font-size: 1.88rem;
    }
    .search-input-result{
        width: 200px;
        height: 50px;
        font-size: 1.88rem;
    }
    .input-name{
        font-size: 1.75rem;
    }
    .search-button{
        width: 200px;
        height: 50px;
        font-size: 1.88rem;
    }
    .input-image{
        bottom: 12px;
        height: 26px;
    }
    .describe{
        padding: 10px 19px;
    }
    .describe-h1{
        font-size: 2.45rem;
        margin: 0 0 16px 0;
    }
    .describe-paragraph{
        font-size: 1.7rem;
        line-height: 1.38;
        margin: 16px 0 1px;
    }
    .button{
        font-size: 1.8rem;
        height: 44.5px;
        margin: 23px auto;
    }
    .packages{
        padding: 0 21px;
    }
    .packages-h2{
        font-size: 2.45rem;
        margin: 0 auto 16px;
    }
    .packages-paragraph{
        font-size: 1.7rem;
        margin-top: 16px;
        line-height: 1.38;
    }
    .contact-data h1{
        font-size: 2.6rem;
    }
    .contact-data h2{
        font-size: 2.6rem;
    }
    .contact-data p{
        font-size: 1.77rem;
    }
    .contact-data img{
        width: 24px;
    }
    .contact-social img{
        width: 34px;
    }
    .home-staging-image h1{
        font-size: 4rem;
    }
    .o-nas-image-section h1{
        font-size: 4rem;
    }
    .apartaments-image-section h1{
        font-size: 4rem;
    }
    .motto{
        font-size: 4rem;
        margin: 44px 0;
    }
    .header-sticky h2{
        font-size: 2rem;
    }
    .apartament-page-info{
        padding: 14px 10px;
    }
    .prev, .next{
        width: 44px;
        height: 44px;
    }
    .slider-arrow{
        height: 25px;
    }
    .apartament-description h3{
        font-size: 2.15rem;
    }
    .apartaments-p{
        font-size: 1.62rem;
    }
    .apartament-description{
        padding: 0 21px;
    }
    .next-apartaments{
        margin: 25px auto 3px;
        font-size: 2.35rem;
    }
    .pakiets-page{
        padding: 0 21px;
    }
    .pakiets-page .pakiets-h3{
        font-size: 2.3rem;
    }
    .pakiets-page .pakiets-p{
        font-size: 1.64rem;
        line-height: 1.31;
    }
    .pakiets-p2{
        padding: 0 21px;
        font-size: 1.7rem;
    }
    .o-nas-container{
        padding: 0 21px;
    }
}
@media (min-width: 415px){
    nav{
        font-size: 2.6rem;
    }
    .close-menu-button{
        width: 38px;
        height: 38px;
    }
    .flag{
        height: 28px;
    }
    footer a{
        color: #fff;
        font-size: 1.65rem;
    }
    footer h4{
        font-size: 1.88rem;
        color: #fff;
        margin-top: 3px;
        text-align: center;
        margin-bottom: 15px;
    }
    .describe-h1{
        font-size: 2.5rem;
    }
    .describe-paragraph{
        font-size: 1.75rem;
    }
    .describe{
        padding: 10px 25px;
    }
    .button{
        min-width: 215px;
        font-size: 1.85rem;
        height: 47px;
        margin: 24px auto;
    }
    .apartament-tile-box{
        margin: 25px auto;
        min-width: 365px;
    }
    .packages-h2{
        font-size: 2.5rem;
    }
    .packages-paragraph{
        font-size: 1.75rem;
    }
    .packages-tile p{
        font-size: 1.64rem;
        padding: 14px 30px 10px;
    }
    .packages-tile-box{
        width: 363px;
    }
    .checkbox{
        font-size: 1.35rem;
    }
    .home-staging{
        padding: 0 25px 15px;
    }
    .home-staging-image h1{
        font-size: 4.4rem;
    }
    .o-nas-image-section h1{
        font-size: 4.4rem;
    }
    .apartaments-image-section h1{
        font-size: 4.4rem;
    }
    .o-nas-text-box h2{
        font-size: 2.4rem;
        text-align: center;
        margin: 0 0 16px;
    }
    .o-nas-text-box p{
        font-size: 1.68rem;
        line-height: 1.33;
    }
    .o-nas-container{
        padding: 0 25px;
    }
    .header-sticky h2{
        font-size: 2.1rem;
        margin: 0;
    }
    .header-apartament-box{
        padding: 16px;
    }
    .header-sticky .button{
        margin: 16px auto 0;
    }
    .apartament-page-info{
        justify-content: space-evenly;
        padding: 14px 0;
    }
    .apartament-description h3{
        font-size: 2.29rem;
        letter-spacing: 1.1px;
        margin: 33px 0 15px;
    }
    .apartaments-p{
        font-size: 1.65rem;
        line-height: 1.32;
    }
    .apartament-description{
        max-width: 888px;
        margin: 0 auto 40px;
        padding: 0 21px;
    }
    .next-apartaments{
        font-size: 2.6rem;
    }
    .pakiets-page{
        padding: 0 21px;
        margin: 40px auto;
    }
    .pakiets-p2{
        padding: 0 21px;
    }
}
@media (min-width: 501px){
    .search-engine{
        padding: 33px 25px;
    }
    .describe-h1{
        font-size: 2.56rem;
    }
    .describe-paragraph{
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .button{
        min-width: 229px;
        font-size: 1.9rem;
        height: 50px;
        margin: 28px auto;
    }
    .packages-h2{
        font-size: 2.56rem;
    }
    .packages-paragraph{
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .packages-tile{
        margin: 25px 0;
    }
    .contact{
        padding: 30px 25px 0;
    }
    .form{
        padding: 15px 30px 28px;
    }
    .home-staging{
        padding: 25px 25px 15px;
    }
    .home-staging-text-box p{
        font-size: 1.7rem;
        line-height: 1.33;
    }
    .icon-box img{
        height: 75px;
    }
    .icon-box p{
        font-size: 1.8em;
    }
    .buttons-line .button{
        margin: 25px auto 0 !important;
    }
    .line-a{
        margin: 25px auto 0 !important;
    }
    .o-nas-text-box h2{
        font-size: 2.53rem;
    }
    .o-nas-text-box p{
        font-size: 1.75rem;
    }
    .motto{
        font-size: 4.4rem;
        margin: 65px 0;
    }
    .header-sticky h2{
        font-size: 2.5rem;
    }

    .apartament-slider-section{
        padding: 0 10px;
    }
    .apartament-description h3{
        font-size: 2.48rem;
        margin: 35px 0 16px;
    }
    .apartaments-p{
        font-size: 1.7rem;
        line-height: 1.33;
        margin: 16px 0 0;
    }
    .next-apartaments{
        margin: 30px auto 18px;
        font-size: 2.85rem;
    }
    .pakiets-page .pakiets-h3{
        font-size: 2.6rem;
        letter-spacing: 1.1px;
        margin: 0 0 23px;
    }
    .pakiets-page .pakiets-p{
        font-size: 1.7rem;
        line-height: 1.32;
    }
    .pakiets-page{
        padding: 0 25px;
        margin: 55px auto 20px;
    }
    .margin-top{
        font-size: 2.9rem;
        margin-top: 45px;
    }
    .pakiets-p2{
        font-size: 1.75rem;
        line-height: 1.32;
        padding: 0 25px;
    }
    .swiper{
        max-height: 346px;
    }
}
@media (min-width: 570px){
    .o-nas-text-box{
        width: 477px;
    }
    .o-nas-image-box{
        width: 477px;
    }
    .o-nas-text-box h2{
        font-size: 2.6rem;
        margin: 0 0 17px;
    }
    .o-nas-text-box p{
        font-size: 1.8rem;
        margin: 17px 0;
    }
    .buttons-line .button{
        margin: 30px auto 0 !important;
    }
    .line-a{
        margin: 30px auto 0 !important;
    }
    .number-slide{
        font-size: 1.7rem;
        padding: 11px 12px;
    }
    .prev, .next{
        width: 53px;
        height: 53px;
    }
    .slider-arrow{
        height: 33px;
    }
    .apartament-page-info{
        padding: 19px 0;
    }
    .apartament-description{
        padding: 0 44px;
    }
    .privacy h1{
        font-size: 2.7rem;
    }
    .privacy h2{
        font-size: 2.2rem;
    }
    .privacy p{
        font-size: 1.7rem;
    }
    .privacy ul{
        font-size: 1.7rem;
    }
    .swiper{
        max-width: 520px;
        max-height: 324px;
        margin: 51px 0 0;
    }
}
@media (min-width: 790px){
    .o-nas-text-box h2{
        font-size: 2.45rem;
        margin: 0 0 16px;
    }
    .o-nas-text-box p{
        font-size: 1.7rem;
        margin: 16px 0;
    }
    .buttons-line{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .buttons-line .button{
        margin: 16px auto 0!important;
    }
    .line-a{
        margin: 16px auto 0 !important;
    }
    .home-staging-image{
        background-attachment: fixed; 
    }
    .o-nas-image-section{
        background-attachment: fixed; 
    }
    .apartaments-image-section{
        background-attachment: fixed; 
    }
    header{
        padding: 10px 50px 8px;
    }
    nav{
        font-size: 1.85rem;
    }
    .close-menu-button{
        width: 33px;
        height: 33px;
    }
    .flag{
        height: 22px;
    }
    .search-engine{
        flex-direction: row;
        align-items: stretch;
        padding: 25px 25px 33px;
    }
    .input-name{
        font-size: 1.6rem;
        text-align: start;
    }
    .search-input{
        width: 170px;
        height: 42.5px;
        font-size: 1.73rem;
        padding: 0 0 0 10px;
        margin: 4px 0 0;
    }
    .search-input-result{
        width: 170px;
        height: 42.5px;
        font-size: 1.73rem;
        padding: 0 0 0 10px;
        margin: 4px 0 0;
    }
    .input-box{
        margin: 0;
    }
    .search-button{
        width: 170px;
        height: 42.5px;
        font-size: 1.73rem;   
    }
    .search-a{
        margin: 0 10px;
    }
    .input-image{
        bottom: 10px;
        height: 22px;
    }
    .delay1{
        transition-delay: 266ms;
    }
    .delay2{
        transition-delay: 433ms;
    }
    .search-button-box{
        transition-delay: 600ms;
    }
    footer a{
        color: #fff;
        font-size: 1.6rem;
    }
    footer h4{
        font-size: 1.76rem;
        color: #fff;
        margin-top: 3px;
        text-align: center;
        margin-bottom: 15px;
    }
    .describe-h1{
        font-size: 2.4rem;
        margin: 0 0 14px 0;
    }
    .describe-paragraph{
        font-size: 1.69rem;
        line-height: 1.36;
        margin: 14px 0 1px;
    }
    .button{
        min-width: 198px;
        font-size: 1.79rem;
        height: 43.7px;
        margin: 21px auto;
    }
    .describe{
        padding: 1px 25px;
    }
    .packages-h2{
        font-size: 2.4rem;
        margin: 0 auto 14px;
    }
    .packages-paragraph{
        font-size: 1.69rem;
        margin-top: 14px;
        line-height: 1.36;
    }
    .icons-container{
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-bottom: 25px;
    }
    .o-nas-content{
        margin-top: 40px;
    }
    .icon-box{
        margin-bottom: 0;  
        min-width: 25px;
    }
    .icon-box img{
        height: 60px;
        width: auto;
    }
    .icon-box p{
        font-size: 1.6em;
    }
    .header-apartament-box{
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: start;
        padding: 19px;
    }
    .header-sticky .button{
        margin: 0;
    }
    .header-sticky h2{
        font-size: 2.55rem;
    }
    .swiper{
        max-width: 575px;
        max-height: 355px;
        margin: 51px 0 0;
    }
    .apartament-slider-section{
        padding: 0 25px;
    }

}
@media (min-width: 930px){
    .icons-container{
        padding: 0 35px;
        margin-bottom: 42px;
    }
    .motto{
        font-size: 5.5rem;
        margin: 69px 0;
    }
    .swiper{
        max-width: 600px;
        max-height: 370px;
    }
    .apartament-description h3{
        font-size: 2.6rem;
        margin: 37px 0 16px;
    }
    .apartaments-p{
        font-size: 1.74rem;
        line-height: 1.34;
    }
    .privacy h1{
        font-size: 3rem;
    }
    .privacy h2{
        font-size: 2.4rem;
    }
    .privacy p{
        font-size: 1.8rem;
    }
    .privacy ul{
        font-size: 1.8rem;
        padding-inline-start: 40px;
    }
}
@media (min-width: 1024px){
    .pakiets-p2{
        font-size: 1.77rem;
        line-height: 1.33;
        padding: 0;
    }
    .mobile-box{
        display: block;
        width: initial;
        max-width: initial;
        box-shadow: none;
        transform: initial;
        transition: none;
    }
    header{
        justify-content: center;
        padding: 10px 8px 8px 8px;
    }
    .hamburger-menu-button{
        display: none;
    }
    .close-menu-button{
        display: none;
    }
    nav{
        position: relative;
        top: initial;
        left: initial;
        height: auto;
        width: auto;
        z-index: 0;
        font-size: 1.74rem;
        box-shadow: initial;
        margin: 0 0 0 14px;
    }
    .underline-animation{
        display: block;
    }
    .navigation-list{
        flex-direction: row;
        padding-inline-start: 30px;
    }
    .navigation-list a{
        width: auto;
        padding: 5px 14px 0;
        margin: 0;
    }
    .flag{
        height: 20px;
    }
    .flag-first{
        margin: 0 16px 0 18px;
        padding-left: 35px !important;
    }
    .flags-box{
        gap: 0;
    }
    .search-engine{
        padding: 30px 25px;
    }
    .input-name{
        font-size: 1.6rem;
    }
    .search-input{
        width: 180px;
        height: 45px;
        font-size: 1.78rem;
        padding: 0 0 0 13px;
    }
    .search-input-result{
        width: 180px;
        height: 45px;
        font-size: 1.78rem;
        padding: 0 0 0 13px;
    }
    .input-image{
        bottom: 10px;
        height: 23px;
    }
    .search-button{
        width: 180px;
        height: 45px;
        font-size: 1.78rem;
    }
    .search-a{
        margin: 0 20px;
    }
    .input-box label{
        margin: 0 20px;
    }
    .footer-container{
        flex-direction: row;
    }
    .first-footer-column p{
        text-align: start;
        text-indent: 10px;
    }
    .footer-logo-box{
        transform: translateX(0);
    }
    .first-footer-column{
        order: 0;
        margin-top: 0;
    }
    .footer-column{
        margin-bottom: 0;
    }
    .second-footer-column p{
        line-height: 1.7;
    }
    .third-footer-column p{
        line-height: 1.7;
    }
    footer h4{
        margin-bottom: 23px;
    }
    .describe{
        padding: 11px 25px;
    }
    .describe-h1{
        font-size: 2.5rem;
        margin: 0 0 17px 0;
    }
    .describe-paragraph{
        font-size: 1.74rem;
        line-height: 1.4;
        margin: 17px 0 1px;
    }
    .button{
        min-width: 210px;
        font-size: 1.82rem;
        height: 46px;
        margin: 23px auto;
    }
    .apartament-tile-box{
        min-width: 418px;
    }
    .apartament-button{
        font-size: 1.73rem;
        padding: 12px 0;
        width: 188px;
    }
    .apartaments{
        margin: 20px auto 30px;
    }
    .packages{
        padding: 0 25px;
    }
    .packages-h2{
        font-size: 2.5rem;
        margin: 0 auto 17px;
    }
    .packages-paragraph{
        font-size: 1.74rem;
        margin-top: 17px;
        line-height: 1.4;
    }
    .packages-tile-container{
        margin: 30px 0 33px;
    }
    .packages-tile-box{
        width: 402px;
    }
    .packages-tile p{
        font-size: 1.7rem;
    }
    .home-staging-image h1{
        font-size: 5rem;
    }
    .home-staging-text-box p{
        font-size: 1.76rem;
    }
    .o-nas-image-section h1{
        font-size: 5rem;
    }
    .apartaments-image-section h1{
        font-size: 5rem;
    }
    .o-nas-image-section br{
        display: none;
    }
    .icon-box img{
        height: 67px;
        width: auto;
    }
    .icon-box p{
        font-size: 1.69em;
        font-weight: 600;
        margin: 16px 0;
    }
    .text-part-container{
        flex-direction: row;
        align-items: normal;
    }
    .o-nas-image-box img{
        width: 85%;
        margin: 0;
    }
    .o-nas-image-box{
        opacity: 1;
        transform: translateY(0);
        transition: none;
        width: 50%;
    }
    .o-nas-text-box{
        width: 50%;
    }
    .o-nas-box2{
        flex-direction: row;
    }
    .header-sticky h2{
        font-size: 2.7rem;
    }
    .header-apartament-box{
        max-width: 1300px;
        padding: 22px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .apartaments-image-section{
        min-height: 28vh;
    }
    .apartaments-image-section h1{
        min-height: 28vh;
    }
    .alpha-background2{
        min-height: 28vh;
    }
    .swiper{
        max-width: 700px;
        max-height: 440px;
    }
    .number-slide{
        font-size: 1.74rem;
        padding: 12px 13px;
    }
    .prev, .next{
        width: 60px;
        height: 60px;
    }
    .slider-arrow{
        height: 40px;
    }
    .apartament-description{
        max-width: 888px;
        margin: 0 auto 40px;
        padding: 0;
    }
    .pakiets-page{
        max-width: 1200px;
        padding: 0 25px;
        margin: 55px auto 25px;
    }
    .pakiets-page .pakiets-h3{
        font-size: 2.7rem;
        margin: 25px 0;
    }
    .pakiets-page .pakiets-p{
        font-size: 1.75rem;
        line-height: 1.33;
    }
    .privacy{
        padding: 0 39px;
        margin: 50px auto 0;
    }
}
@media (min-width: 1190px){
    .o-nas-second-image{
        margin-bottom: 0 !important;
    }
    header{
        padding: 9px;
    }
    .logo{
        height: 65px;
    }
    nav{
        margin: 0 0 0 16px;
        font-size: 1.79rem;
    }
    .navigation-list{
        padding-inline-start: 35px;
    }
    .navigation-list a{
        padding: 5px 16px 0;
    }
    .flag{
        height: 21px;
    }
    .flag-first{
        margin: 0 16px 0 18px;
        padding-left: 35px !important;
    }
    .input-name{
        font-size: 1.6rem;
    }
    .search-input{
        width: 190px;
        height: 47.5px;
        font-size: 1.86rem;
        padding: 0 0 0 15px;
    }
    .search-input-result{
        width: 190px;
        height: 47.5px;
        font-size: 1.86rem;
        padding: 0 0 0 15px;
    }
    .input-image{
        bottom: 11px;
        height: 24px;
    }
    .search-button{
        width: 190px;
        height: 47.5px;
        font-size: 1.86rem;
    }
    .footer-logo{
        height: 82px;
        margin-bottom: 10px;
    }
    .footer-container{
        padding: 50px 25px;
    }
    .describe-h1{
        font-size: 2.55rem;
    }
    .describe-paragraph{
        font-size: 1.78rem;
    }
    .button{
        min-width: 218.5px;
        font-size: 1.85rem;
        height: 47.5px;
        margin:28px auto;
    }
    .search-engine{
        padding: 50px 25px;
    }
    .apartaments{
        display: flex;
        flex-direction: row;
        margin: 20px auto 35px;
    }
    .apartament-tile-box{
        min-width: 350px;
    }
    .packages-h2{
        font-size: 2.55rem;
    }
    .packages-paragraph{
        font-size: 1.78rem;
    }
    .packages-tile-container{
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        margin: 50px 0 52px;
    }
    .packages-tile-box{
        width: 30%;
        margin: 0 50px;
        min-width: 390px;
    }
    .packages-tile{
        margin: 0;
    }
    footer{
        margin: 100px 0 0;
    }
    .page-packages-title{
        margin-top: 30px;
    }
    .contact{
        padding: 50px 25px 0;
        flex-direction: row;
        align-items: normal;
    }
    .contact-data{
        position: sticky;
        top: 30px;
        width: fit-content;
        display: block;
        transform: translateX(-135px);
    }
    .contact-data.visible{
        transform: translateX(0);
    }
    .form{
        margin-top: 0;
        transform: translateX(135px);
    }
    .form.visible{
        transform: translateX(0);
    }
    .home-staging-container{
        margin-top: 45px;
        flex-direction: row;
    }
    .home-staging-text-box h2{
        text-align: start;
    }
    .home-staging-text-box p{
        text-align: start;
    }
    .home-staging-text-box h3{
        text-align: start;
    }
    .home-staging-text-box div{
        justify-content: flex-start;
    }
    .staging-button{
        margin: 0 !important;
        margin-top: 40px !important;
    }
    .home-staging-img-box img{
        margin-top: 0;
    }
    .home-staging-image h1{
        font-size: 6rem;
    }
    .o-nas-image-section h1{
        font-size: 6rem;
    }
    .apartaments-image-section h1{
        font-size: 6rem;
    }
    .o-nas-content{
        width: 100%;
        margin-top: 58px;
    }
    .icon-box img{
        height: 75px;
        width: auto;
    }
    .icon-box p{
        font-size: 1.74em;
        margin: 20px 0;
    }
    .icons-container{
        justify-content: space-around;
        padding: 0 24px;
        margin-bottom: 63px;
    }
    .o-nas-text-box h2{
        font-size: 2.55rem;
    }
    .o-nas-text-box p{
        font-size: 1.75rem;
    }
    .o-nas-image-box img{
        width: 80%;
    }
    .header-sticky h2{
        font-size: 3rem;
    }
    .header-apartament-box{
        padding: 25px;
    }
    .swiper{
        max-width: 780px;
        max-height: 500px;
        margin: 55px 0 0;
    }
    .apartament-description h3{
        font-size: 2.8rem;
        margin: 40px 0 20px;
    }
    .apartaments-p{
        font-size: 1.77rem;
        line-height: 1.4;
        margin: 20px 0 0;
    }
    .pakiets-image-boxx{
        display: block;
    }
    .pakiets-main-box{
        justify-content: space-around;
    }
    .pakiets-page .pakiets-h3{
        text-align: start;
    }
    .pakiets-page .pakiets-p{
        text-align: start;
    }
    .pxp{
        width: 50%;
        margin-right: 11%;
        transform: translateX(-100px);
    }
    .pxp.visible{
        opacity: 1;
        transform: translateX(0);
    }
    .pakiets-button-apt{
        margin: 20px 0 !important;
    }
    .all-pakiets{
        font-size: 2.9rem;
        margin: 45px auto 0;
    }
    .privacy h1{
        font-size: 3.2rem;
    }
    .privacy h2{
        font-size: 2.6rem;
    }
    .privacy p{
        font-size: 1.9rem;
    }
    .privacy ul{
        font-size: 1.9rem;
    }
}
@media (min-width: 1350px){
    .swiper{
        max-width: 850px;
        max-height: 550px;
        margin: 55px 0 0;
    }
    .logo{
        height: 70px;
    }
    nav{
        margin: 0 0 0 19px;
        font-size: 1.86rem;
    }
    .navigation-list{
        padding-inline-start: 40px;
    }
    .navigation-list a{
        padding: 5px 17px 0;
    }
    .flag{
        height: 22px;
    }
    .flag-first{
        margin: 0 18px 0 20px;
    }
    .input-name{
        font-size: 1.63rem;
    }
    .search-input{
        width: 200px;
        height: 50px;
        font-size: 1.9rem;
    }
    .search-input-result{
        width: 200px;
        height: 50px;
        font-size: 1.9rem;
    }
    .input-image{
        bottom: 12px;
        height: 26px;
    }
    .search-button{
        width: 200px;
        height: 50px;
        font-size: 1.9rem;
    }
    .describe-h1{
        font-size: 2.6rem;
    }
    .describe-paragraph{
        font-size: 1.8rem;
    }
    .button{
        min-width: 230px;
        height: 50px;
        font-size: 1.9rem;
        margin: 31px auto;
    }
    .apartaments{
        margin: 20px auto 50px;
    }
    .packages-h2{
        font-size: 2.6rem;
    }
    .packages-paragraph{
        font-size: 1.8rem;
    }
    .contact{
        padding: 60px 25px 0;
    }
    .home-staging-text-box p{
        font-size: 1.8rem;
    }
    .icons-container{
        justify-content: space-between;
        margin-bottom: 75px;
    }
    .icon-box img{
        height: 85px;
        width: auto;
    }
    .icon-box p{
        font-size: 1.8em;
    }
    .o-nas-text-box h2{
        font-size: 2.64rem;
        margin: 0 0 18px;
    }
    .o-nas-text-box p{
        font-size: 1.8rem;
        line-height: 1.34;
        margin: 18px 0;
    }
    .buttons-line .button{
        margin: 20px auto 0!important;
    }
    .line-a{
        margin: 20px auto 0 !important;
    }
    .motto{
        margin: 91px 0;
    }
    .next-apartaments{
        margin: 33px auto 22px;
    }
    .pakiets-page .pakiets-h3{
        font-size: 2.9rem;
    }
    .pakiets-page .pakiets-p{
        font-size: 1.77rem;
    }
    .privacy h1{
        font-size: 3.5rem;
    }
    .privacy h2{
        font-size: 2.8rem;
    }
    .privacy p{
        font-size: 2rem;
    }
    .privacy ul{
        font-size: 2rem;
}
}
@media (min-width: 1640px){
    .scroll-top-button{
        bottom: 36px;
        right: 36px;
    }

}
.apartaments-buttons-line .button{
    margin: 32px 30px !important;
}
@media (max-width: 1190px){
    .page-packages-title .packages-tile-container{
        margin-top: 10px;
    }
}
@media (max-width: 789px){
    .header-sticky .button{
        height: 44px;
        min-width: 200px;
        font-size: 1.75rem;
    }
}
@media (max-width: 500px){
    .header-sticky .button{
        height: 41px;
        min-width: 185px;
        font-size: 1.68rem;
    }
}
@media (max-width: 414px){
    .header-sticky .button{
        height: 39px;
        min-width: 178px;
        font-size: 1.65rem;
    }
}
@media (max-width: 379px){
    .header-sticky .button{
        height: 38px;
        min-width: 171px;
        font-size: 1.63rem;
    }
    .apartament-page-info img{
        height: 20px;
        margin-right: 8.5px;
    }
}