@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family:'Montserrat', sans-serif;
    letter-spacing: .1rem;  
    -webkit-font-smooth: auto;
    overflow-x: hidden;

}

:root {
    --mainbrown:#ab9477;
    --textbrown:#5c524b;
    --mainorange: #f9c749;
    --licolor: rgb(92, 82, 75);
    --icoOrange:rgba(249, 199, 73, 0.88);
    --white:#fff;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}
.container {
    min-height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
}

img {
    max-width: 100%;
}

.ofirme {
    background-color: rgba(169, 169, 169, 0.087);
}
.ofirme_all {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5rem 2rem;
    margin-top: 150px;
    max-width: 1330px;
    margin: 0 auto;
    gap: 9rem;  
}

.ofirme span {
    flex: 1 40%;
    height: 495px;
    background-image: url(../img/shot-room-interior-with-package-boxes-standing-middle-sofa-covered-with-film.jpg);
    background-size:cover;
    background-position: top right;
    background-repeat: no-repeat;
    font-size: 0rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


.ofirme_text {
    flex: 1 50%;
}

.ofirme_text h4 {
    color: #f9c749e0;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.ofirme_text h1 {
    font-size: 5rem;
    font-weight: 600;
    color: #5c524b;
    margin-bottom: 3rem;
}

.ofirme_text p {
    color: #5c524b;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 3rem;
}

.fa-arrow-right {
    background-color: #f9c749e0;
    color: #fff;
    border: 0.5rem solid #f9c749e0;
    border-radius: 30px;
    font-size: 2rem;
    margin-bottom: 2rem;
    vertical-align: -3px;
    margin-right: 1.8rem;
}

.ofirme li {
    color: #5c524b;
    font-weight: 600;
    font-size: 1.5rem;
}

@media (max-width:1039px) {
    .ofirme_all {
        gap: 5rem;  
    }
    .ofirme span {
        flex: 1 40%;   
    }
    
    .ofirme_text {
        flex: 1 40%;   
    }
}

@media (max-width:887px) {
    .ofirme_all {
        gap: 2rem; 
        justify-content: center;   
    }
    .ofirme span {
        flex: 100%;   
    }
    
    .ofirme_text {
        flex: 100%;   
    }
    .ofirme_text h4 {
        color: #f9c749e0;
        font-size: 2rem;
        font-weight: 500;
        margin-bottom: 0rem;   
    }
}

@media (max-width:425px) {
    .ofirme li {
        color: #5c524b;
        font-weight: 600;
        font-size: 1.2rem;
}
}

/*-------end of o firme----------------*/

/************foooter**************************/
footer {
    background-image: url(../img/move-gd65965ab3_1920.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;

}

footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .5;
    z-index: -1;
}


.pre-footer {
    max-width: 1080px;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    padding: 5rem 2rem 5rem 2rem;
}

.pre-footer h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pre-footer a {
    color: #fff;
}


.adresa,
.kontakt-footer,
.menu-footer {
    width: 200px;
    text-align: center;
    border-left: 1px solid #c5af9274;
    position: relative;
}

.adresa{
    border: none;
}

.adresa p,
.kontakt-footer span {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 2rem;
}

.adresa img {
    color: #fff;  
}


.kontakt-footer i {
    font-weight: 300;
    line-height: 2rem;
    font-size: 2rem;
    vertical-align: -2px;
    
}

.kontakt-footer {
    width: 370px;
}

.menu-footer a {
    line-height: 18px;
    font-size: 1.2rem;
    position: relative;
}

.menu-footer a:hover {
    color: var(--mainorange);
}
/************end of foooter**************************/