/*Slider*/
.slider{
    width: 100%;
    height: 100vh;
}

.slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

/*About*/
.about{
    width: 100%;
    padding: 10vh 0vw;
    background-color: #dfdfdf;
}

.about-inner{
    width: 50%;
    margin: auto;
}

.about-inner h1{
    color: var(--main-color);
    font-size: 44px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.about-half{
    margin-top: 5vh;
    position: relative;
}

.about-half:nth-child(2){
    width: 25%;
    float: left;
    display: flex;
}

.about-half:nth-child(3){
    width: 70%;
    margin-left: 5%;
    float: left;
}

.about-half img{
    width: 100%;
    height: 100%;
}

.about-half p{
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.75em;
    color: var(--text-color);
}

/*Services*/
.services{
    width: 100%;
    padding: 10vh 0vw;
}

.services-inner{
    width: 50%;
    margin: auto;
}

.services-inner h1{
    color: var(--main-color);
    font-size: 44px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.service-gallery{
    width: 100%;
    margin-top: 5vh;
}

.gallery-half:nth-child(1){
    width: 30%;
    float: left;
    padding: 1vh;
    box-sizing: border-box;
    box-shadow: var(--box-shadow);
}

.gallery-half:nth-child(2){
    width: 65%;
    margin-left: 5%;
    float: left;
}

.gallery-half ul li{
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    text-transform: uppercase;
    position: relative;
    margin-top: .5vh;
    margin-left: 20px;
    text-indent: -20px;
    transition: color .3s ease-in;
}

.gallery-half ul li:nth-child(1){
    color: var(--main-color);
}

.gallery-half ul li:hover{
    cursor: pointer;
    color: var(--main-color);
}

.gallery-half ul li::before{
    content: '+';
    color: var(--main-color);
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    text-indent: 0px;
    transition: transform .3s ease-in;
}

.gallery-half ul li:hover::before{
    transform: rotate(45deg);
}

.gallery-half h2{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.75em;
    border: 1px solid #ccc;
    border-width: 0px 0px 1px 0px;
    padding-bottom: .5vh;
}

.gallery{
    width: 100%;
    height: 50vh;
    margin-top: 1vh;
    position: relative;
    background: var(--bg-image);
    background-size: cover;
    transition: background .3s ease-in;
}

.overlay{
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    background: rgba(0, 0, 0, .53);
    display: none;
    padding: 2vh;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
}

.overlay button{
    padding: 12px;
    background: #101010;
    color: white;
    border: 0px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    outline: none;
    transition: background .3s ease-in;
}

.overlay button:hover{
    cursor: pointer;
    background: var(--main-color);
}

.gallery:hover .overlay{
    display: flex;
}

.text-1{
    width: 100%;
    display: none;
}

.text-1-half{
    width: 40%;
    float: left;
}

.text-1-half img{
    width: 100%;
}

.text-1-half:nth-child(2){
    width: 55%;
    margin-left: 5%;
}

.text-1-half p{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75em;
    color: var(--text-color);
}

.text-2{
    width: 100%;
    display: none;
}

.text-2 p{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75em;
    color: var(--text-color);
}

.text-2 p:not(:first-child){
    margin-top: 2vh;
}

.text-2 img{
    width: 100%;
    margin-top: 2vh;
}

.text-3{
    width: 100%;
    display: none;
}

.text-3 p{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75em;
    color: var(--text-color);
}

.text-3 p:not(:first-child){
    margin-top: 2vh;
}

.text-3 a{
    transition: color .3s ease-in;
}

.text-3 a:hover{
    cursor: pointer;
    color: var(--main-color);
}

.service-content{
    width: 100%;
    margin-top: 2vh;
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 2vh;
    box-sizing: border-box;
}

.service-content h2{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.75em;
}

.service-content p{
    color: rgba(23, 20, 16, .87);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75em;
}

.service-content a{
    color: var(--main-color);
    transition: color .3s ease-in;
}

.service-content a:hover{
    cursor: pointer;
    color: rgba(23, 20, 16, .87);
}

.service-content ul{
    padding: 3vh 0vw;
}

.service-content ul li{
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    position: relative;
    margin-top: .5vh;
}

.service-content ul li::before{
    content: '\02714';
    color: var(--main-color);
    margin-right: 10px;
}

.service-content-split{
    width: 100%;
    margin-top: 4vh;
    display: flex;
}

.service-content-half h2{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.75em;
}

.service-content-half:nth-child(1){
    width: 40%;
    float: left;
    padding: 2vh;
    box-sizing: border-box;
    box-shadow: var(--box-shadow);
}

.service-content-half:nth-child(2){
    width: 55%;
    margin-left: 5%;
    float: left;
    padding: 2vh;
    box-sizing: border-box;
    box-shadow: var(--box-shadow);
}

.service-content-half ul{
    margin-top: 1vh;
}

.service-content-half ul li{
    color: var(--text-color);
    font-size: 16px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
    margin-left: 20px;
    text-indent: -23px;
    transition: color .3s ease-in;
}

.service-content-half ul li::before{
    content: '\02714';
    color: var(--main-color);
    margin-right: 10px;
}

.service-furniture-half{
    width: 60%;
    float: left;
    margin-top: 1vh;
    position: relative;
    display: flex;
}

.service-furniture-half:nth-child(3){
    width: 35%;
    margin-left: 5%;
}

.service-furniture-half img{
    width: 100%;
    height: 100%;
}

.service-furniture-half p{
    color: rgba(23, 20, 16, .87);
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.75em;
}

.service-content-two{
    width: 100%;
    margin-top: 4vh;
    background-color: white;
    box-shadow: var(--box-shadow);
    padding: 2vh;
    box-sizing: border-box;
}

.service-content-two h2{
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.75em;
}

.service-content-two p{
    margin-top: 1vh;
    color: rgba(23, 20, 16, .87);
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75em;
}

.content-two-gallery{
    width: 100%;
    margin-top: 2vh;
    display: flex;
    justify-content: space-between;
}

.wrapper{
    width: 31.5%;
    position: relative;
    display: flex;
}

.wrapper img{
    width: 100%;
}

/*Media Queries*/
@media only screen and (max-width: 767px){
    .about-inner{
        width: 95%;
        margin: auto;
    }

    .about-half:nth-child(2),
    .about-half:nth-child(3){
        width: 100%;
        float: none;
        margin-left: 0%;
    }

    .about-half img{
        width: 100%;
    }

    .services-inner{
        width: 95%;
        margin: auto;
    }

    .gallery-half:nth-child(1),
    .gallery-half:nth-child(2){
        width: 100%;
        float: none;
        margin-left: 0%;
        margin: auto;
    }

    .gallery-half:nth-child(2){
        margin-top: 2vh;
    }

    .service-content-split{
        display: block;
    }

    .service-content-half:nth-child(1),
    .service-content-half:nth-child(2){
        width: 100%;
        float: none;
        margin-left: 0%;
        margin: auto;
    }

    .service-furniture-half,
    .service-furniture-half:nth-child(3){
        width: 100%;
        float: none;
        margin: 0px;
    }

    .service-content-half p{
        margin-top: 1vh;
    }

    .service-furniture-half img{
        width: 100%;
    }

    .content-two-gallery{
        display: block;
    }

    .wrapper{
        width: 100%;
        margin-top: 2vh;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1024px){

}

@media only screen and (max-width: 280px){

}