* {
    margin: 0;
    padding: 0;
}
.wrapper {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    height: 100vh;
}
.welcome {
    display: flex;
    flex-direction: column;
    width: 40vw;
    text-align: center;
    align-items: center;
    font-family: 'Saira Condensed', sans-serif;
}
.logo {
    position: relative;
    top: 11vh;
    width: 20vw;
}
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%; 
}
nav ul {
    text-align: center;
}
nav ul li {
    display: block;
    margin-top: 10px;   
}
nav ul li a{
    text-decoration: none;
    font-size: 1.5rem;
    color: #8F7146;
}
.Social {
    display: flex;
    justify-content: center;
    position: relative;
    height: 13vh;
}
.InstaNav {
    margin: 8px;
}
.InstaNav img {
    margin: 0;
    width: 2vw;
    top: -2vh;
}
.FbNav {
    margin: 8px;
}
.FbNav img {
    margin: 0;
    width: 2vw;
    top: -2vh;
}
.hamburger-menu {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}
.line {
    display: none;
    width: 100%;
    height: 3px;
    background-color: #8F7146;
}
.line-1.change {
    transform: rotateZ(-45deg) translate(-8px, 6px);
    transition: .3s;
}
.line-2.change {
    opacity: 0;
}
.line-3.change {
    transform: rotateZ(45deg) translate(-8px, -6px);
    transition: .3s;
}
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60vw;
    flex-grow: 1;
    border-left: 4px solid rgb(143, 113, 70, 0.1);
}
section div {
    display: flex;
    justify-content: center;
    width: 20vw;
    height: 29vh;
    border: 2px solid rgb(146, 146, 146, 0.1);
    margin: 6px;
    transform: scale(1);
    transition: 0.4s;
    border-radius: 8px;
}
section div:hover {
    background-color:rgb(146, 146, 146, 0.2);
    transform: scale(1.1);
}
section div img {
    width: 18vw;
}
section div img:hover {
    opacity: 0.5;
}
section div.offert1 {
    top: 0.5vh; 
}
section div.offert2 {
    top: 1vh;  
}
section div.offert3 {
    top: 2vh;
    height: 32vh;
}
section div a {
    text-decoration: none;
    color: black;
}
section div p {
    font-family: 'Saira Condensed', sans-serif;
    margin-top: 2px;
    text-align: center;
    color: #8F7146;
}



@media (orientation: portrait) and (min-width: 320px) and (min-height: 480px) {
    .welcome {
        width: 0;
    }
    .welcome.change {
        width: 40vw;
    }  
    .welcome .logo {
        margin-top: 0;
        margin-left: 0;
        width: 40vw;
        position: relative;
        top: 5vh;
        left: -50vw;
    }
    .welcome .logo.change {
        left: 0vw;
    }
    h1, h2 { 
        display: none;
    }
    .navi {
        position: relative;
        left: -50vw;
        align-items: center;
    }
    .navi.change {
        left: 0vw;
        z-index: 5;
    }
    .hamburger-menu {
        top: 2vh;
        right: 8vw;
        z-index: 5;
    }
    .line {
        display: block;
    }
    
    ul.close.change {
        display: block;
    }
    .navi ul li {
        margin-top: 0;
    }
    .navi ul li a {
        font-size: 1.1rem;
    }
    .Social {
        flex-direction: column;
        bottom: 18vh;
        height:14vh;
        left: -50vw;
    }
    .Social.change {
        left: 0vw;
        height: 23vh;
        bottom: 2vh;
    }
    .InstaNav {
        position: relative;
        z-index: 5;
    }
    .InstaNav a img {
        left: 0vw;
        top: 0vw;
        width: 12vw;
    }
    .FbNav {
        z-index: 5;
    }
    .FbNav a img {
        width: 12vw;
        top: 0;
        left: 0;
    }
    .naviSection {
        width: 100vw;
    }
    .naviSection.change {
        width: 60vw;
    }
    .naviSection.change .offert1.change img {
        width: 39vw;
    }
    .naviSection.change .offert2.change img {
        width: 39vw;
    }
    .naviSection.change .offert3.change img {
        width: 39vw;
    }
    .naviSection.change p {
        font-size: 1rem;
    }
    .naviSection p {
        font-size: 1.1rem;
    }
    .offert1, .offert2, .offert3 {
        width: 92vw;
    }
    .offert1 a, .offert2 a, .offert3 a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

    }
    .offert1 img, .offert2 img, .offert3 img {
        width: 49vw;
    }
    .naviSection.change .offert1.change, .offert2.change, .offert3.change {
        width: 50vw;
    }
    .offert1.change img, .offert2.change img, .offert3.change img {
        width: 47vw;
    }
    .change {
        transition: .5s ease;
    }
}
@media (orientation: landscape) and (min-width: 480px) {
    .welcome {
        width: 0;
    }
    .welcome.change {
        width: 40vw;
    }  
    .logo {
        width: 40vw;
        top: 5vh;
        left: -50vw;
    }
    .logo.change {
        width: 30vw;
        left: 0vw;
    }
    .navi {
        position: relative;
        left: -50vw;
        top: -3vh;
    }
    .navi.change {
        top: 0vh;
        left: 0vw;
        z-index: 5;
    }
    .navi ul li {
        margin: 0;
    }
    .navi ul li a {
        font-size: 1rem;
    }
    .hamburger-menu {
        top: 2vh;
        right: 2vw;
        z-index: 5;
    }
    .line {
        display: block;
    }
    .Social {
        flex-direction: column;
        bottom: 18vh;
        height:14vh;
        left: -50vw;
    }
    .Social.change {
        left: 0vw;
        height: 15vh;
        bottom: 2vh;
        display: flex;
        flex-direction: row;
    }
    .InstaNav {
        position: relative;
        z-index: 5;
    }
    .InstaNav a img {
        left: 0vw;
        top: 0vw;
        width: 5vw;
    }
    .FbNav {
        z-index: 5;
    }
    .FbNav a img {
        width: 5vw;
        top: 0;
        left: 0;
    }
    section {
        width: 100vw;
    }
    section.change {
        width: 60vw;
        overflow: hidden;
    }
    .change {
        transition: .5s ease;  
    }
    .naviSection .offert1, .offert2, .offert3 {
        align-items: center;
        width: 56vw;
        margin: 3px;
    }
    .naviSection .offert1 a, .offert2 a, .offert3 a {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .naviSection .offert1.change, .offert2.change, .offert3.change {
         align-items: center;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 22vw;
    }
}
@media (orientation: portrait) and (min-width: 360px) and (min-height: 640px) {
    .naviSection .offert1 img, .offert2 img, .offert3 img {
        width: 60vw;
    }
    .naviSection.change .offert1.change img {
        width: 47vw;
    }
    .naviSection.change .offert2.change img {
        width: 47vw;
    }
    .naviSection.change .offert3.change img {
        width: 47vw;
    }
}
@media (orientation: landscape) and (min-width: 640px) and (min-height: 360px) {
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 18vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 41vw;
    }
}
@media (orientation: portrait) and (min-width: 480px) {
    .InstaNav a img, .FbNav a img {
        width: 8vw;
    }
    .naviSection .offert1.change, .offert2.change, .offert3.change {
        width: 52vw;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 40vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 48vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 77vw;
    }
}
@media (orientation: landscape) and (min-width: 640px) and (min-height: 480px) {
    section div img {
        width: 24vw;
    }
}
@media (orientation: landscape) and (min-width: 667px) {
    .naviSection {
        justify-content: center;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 24vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 49vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 25vw;
    }
}
@media (orientation: portrait) and (min-width: 360px) and (min-height: 760px) {
    .hamburger-menu {
        right: 2vw;
    }
    .navi ul li a {
        font-size: 1.3rem;
    }
    .naviSection .offert1.change, .offert2.change, .offert3.change {
        width: 54vw;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 50vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 88vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 70vw;
    }
}
@media (orientation: landscape) and (min-width: 760px) and (min-height: 360px) {
    .InstaNav a img, .FbNav a img {
        width: 4vw;
    }
    .naviSection .offert1.change, .offert2.change, .offert3.change {
        width: 37vw;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 15vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 41vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 15vw;
    }
}
@media (orientation: portrait) and (min-width: 375px) and (min-height: 812px) {
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 48vw;
    }
}
@media (orientation: landscape) and (min-width: 812px) and (min-height: 375px) {
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 14vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 14vw;
    }
}
@media (orientation: portrait) and (min-width: 768px) and (min-height: 991px) {
    .navi ul li a {
        font-size: 1.6rem;
    }
    .naviSection {
        justify-content: center;
    }
    .naviSection.change {
        justify-content: center;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 46vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 78vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 48vw;
    }
}
@media (orientation: landscape) and (min-width: 991px) and (min-height: 768px) {
    .navi ul li a {
        font-size: 1.6rem;
    }
    .naviSection .offert1.change, .offert2.change, .offert3.change {
        width: 42vw;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 28vw;
    }
    .naviSection .offert1, .offert2, .offert3 {
        width: 46vw;
        height: 31vh;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 28vw;
    }
}
@media (orientation: portrait) and (min-width: 992px) and (min-height: 1199px) {
    .navi ul li a {
        font-size: 2rem;
    }
    .naviSection.change .offert1.change, .offert2.change, .offert3.change {
        height: 31vh;
        width: 54vw;
    }
    .naviSection .offert1.change a p, .offert2.change a p, .offert3.change a p {
        font-size: 1.5rem;
    }
    .naviSection .offert1, .offert2, .offert3 {
        height: 31vh;
        width: 72vw;
    }
    .naviSection .offert1 a p, .offert2 a p, .offert3 a p {
        font-size: 1.5rem;
    }
}
@media (orientation: landscape) and (min-width: 1024px) {
    .welcome {
        width: 40vw;
    }
    .logo {
        top: 11vh;
        left: 0;
        width: 20vw;
    }
    .navi {
        left: 0;
        top: 0;
    }
    .hamburger-menu {
        display: none;
    }
    .navi ul li {
        margin-top: 10px;
    }
    .navi ul li a {
        font-size: 1.5rem;
    }
    .Social {
        flex-direction: row;
        height: 13vh;
        bottom: 0;
        left: 0;
    }
    .InstaNav a img, .FbNav a img {
        width: 3vw;
    }
    section {
        width: 60vw;
    }
}
@media (orientation: landscape) and (min-width: 1199px) {
    .naviSection .offert1, .offert2, .offert3 {
        width: 33vw;
    }
    .naviSection .offert1.change a img, .offert2.change a img, .offert3.change a img {
        width: 25vw;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 21vw;
    }
}
@media (orientation: landscape) and (min-width: 1440px) {
    .InstaNav a img, .FbNav a img {
        width: 2vw;
    }
}
@media (orientation: landscape) and (min-width: 1920px) {
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 18vw;
    }
}
@media (orientation: landscape) and (min-width: 2560px) {
    .logo {
        width: 26vw;
    }
    .navi ul li a {
        font-size: 2.1rem;
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 16vw;
    }
}
@media (orientation: landscape) and (min-width: 2560px) {
    .naviSection .offert1, .offert2, .offert3 {
        width: 40vw;
        border: 4px solid rgb(143, 113, 70, 0.15);
    }
    .naviSection .offert1 a img, .offert2 a img, .offert3 a img {
        width: 22vw;
    }
    section div p {
        font-size: 2.1rem;
    }
}
/* @media (orientation: portrait) and (min-width: 320px) and (min-height: 480px) +
@media (orientation: landscape) and (min-width: 480px) +
@media (orientation: portrait) and (min-width: 360px) and (min-height: 640px) +
@media (orientation: landscape) and (min-width: 640px) and (min-height: 360px) +
@media (orientation: portrait) and (min-width: 480px) +
@media (orientation: landscape) and (min-width: 667px) +
@media (orientation: portrait) and (min-width: 360px) and (min-height: 760px) +
@media (orientation: landscape) and (min-width: 760px) and (min-height: 360px) +
@media (orientation: portrait) and (min-width: 375px) and (min-height: 812px) ++
@media (orientation: landscape) and (min-width: 812px) and (min-height: 375px) +
@media (orientation: landscape) and (min-width: 932px) and (min-height: 430px) ++
@media (orientation: portrait) and (min-width: 768px) and (min-height: 991px) +
@media (orientation: landscape) and (min-width: 991px) and (min-height: 768px) +
@media (orientation: portrait) and (min-width: 992px) and (min-height: 1199px) +
@media (orientation: landscape) and (min-width: 1024px) + od tej rozdzielczości usunąć hamburger menu
@media (orientation: landscape) and (min-width: 1199px) +
@media (orientation: landscape) and (min-width: 1440px) +
@media (orientation: landscape) and (min-width: 1599px)
@media (orientation: landscape) and (min-width: 1920px) +
@media (orientation: landscape) and (min-width: 2560px) */ 2.1rem