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

:root{
    --primary-color:hsl(330,87%,17%);
    --secondary-color:hsla(203,100%,13%,1);
}

body{
    font-family:  'Source Sans Pro', sans-serif;
    margin: 0;
}

/* Start Back to top */
.btn-backtotops{
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px;
    border-radius: 10px;

    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 100;
}
/* End back to top */

/* Start Header */
header{
    height: 100vh;
    background:linear-gradient(
        30deg,
        rgba(0,0,0,0),
        rgba(0,0,0,0.5)),
        url('../assets/img/banner/banner2.jpg'
        );
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Start nav bar */
.navbar{
    background: linear-gradient(rgba(0,0,0,0.6),var(--secondary-color));
    padding: 20px 30px;
    transition: all 0.7s;
}

.navmenus{
    background: linear-gradient(rgba(0,0,0,0.9),var(--secondary-color));
    padding: 5px 30px;
}

.menu-items{
    color: #eee;
    font-size: 14px;
    letter-spacing: 1px;
}

.menu-items:hover{
    color: #1aaee8;
}

.lines1,.lines2,.lines3{
    width: 25px;
    height: 3px;
    display: block;
    margin: 6px;

    transition: all 0.5s;
}

.crossxs .lines1{
    transform: rotate(-45deg) translate(-6px,6px);
}

.crossxs .lines2{
    opacity: 0;
}

.crossxs .lines3{
    transform: rotate(45deg) translate(-6px,-6px);
}




/* end nav bar */

/* Start banner */
.banners{
    width: 80%;

    position: absolute;
    top:50%;
    left: 50%;

    transform: translate(-50%,-50%);
}

.banner-headers{
    animation: banneri 1.5s;
}

.banner-paragraphs{
    animation: banneri 1.5s;
    animation-delay: 1s;
    animation-fill-mode: backwards;
}

@keyframes banneri{
    0%{
        opacity: 0;
        transform: translateX(-100px);
    }

    100%{
        transform: translate(0px);
        opacity: 1;  
    }
}
/* End banner */
/* End Header */

/* Start About Us */
    .aboutuss{
        background:linear-gradient(
        30deg,
        rgba(0,0,0,0.3),
        rgba(0,0,0,0.5)),
        url('../assets/img/banner/banner2.jpg'
        );
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;

        position: relative;
    }

    .aboutuss .lines{
        width: 30%;
        height: 1.2px;
        background-color: #fff;
        margin-bottom: 3px;
    }

    .aboutuss .lines:nth-of-type(2){
        width: 20%;
        height: 1px;
    }

    .aboutuss .lines:nth-of-type(3){
        width: 10%;
        height: 0.5px;
        margin-bottom: 30px;
    }

    .aboutuss h5{
        background-color: #fff;
        color: #000;
        border-left: 5px solid red;

        padding: 10px;
    }

    .aboutuss img{
        width: 350px;

        position: absolute;
        bottom:0;
    }
/* End About Us */

/* Start Properties */
.titles{
    text-transform: uppercase;
    color: var(--secondary-color);
    display:inline-block;
    padding: 5px 20px;
    position: relative;
}

.titles::before,.titles::after{
    content: '';
    width: 20px;
    height: 20px;

    position: absolute;
}

.titles::before{
    border-left: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);

    left: 0;
    bottom: 0;
}

.titles::after{
    border-right: 3px solid var(--primary-color);
    border-top: 3px solid var(--primary-color);

    right: 0;
    top: 0;
}

.propertylists{
    color: #777;
    cursor: pointer;
}

.activeitems{
    color: var(--primary-color);
}
/* End Properties */


/* Start Adv */
.missions{
    background-color:var(--secondary-color)
}

.advimages{
    width: 100%;
}

.fromlefts{
    animation: fromleft 3s;
}

.fromrights{
    animation: fromright 3s;
}


@keyframes fromleft{
    0%{
        transform: translate(-150px);
        opacity: 0;
    }

    100%{
        transform: translate(0%);
        opacity: 1;
    }
}

@keyframes fromright{
    0%{
        transform: translate(150px);
        opacity: 0;
    }

    100%{
        transform: translate(0%);
        opacity: 1;
    }
}
/* End Adv */

/* Start Our Services */
.services{
    background: linear-gradient(200deg,var(--primary-color),var(--secondary-color));
}

.servicecards{
    position: relative;
    overflow: hidden;
}

.servicecards img{
    transition: transform 0.5s;
}

.servicecards::before{
    content: 'You may need our services?\ATry and upgrade your living enviroment.\A\f004 \f004';
    font-family: "Font awesome 5 free";
    width: 100%;
    height: 100%;

    background-color: rgba(0,0,0,0.4);
    color: #fff;
    text-align: center;

    position: absolute;
    left: 0;
    top: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1;
}

.servicecards:hover::before{
    content: "";
    background-color: rgba(0,0,0,0.1);
}

.servicecards:hover img{
    transform: scale(1.1);
}

.servicetexts{
    width: 40%;
    background-color: rgba(0,0,0,0.7);
    font-size: 14px;
    text-align: center;
    letter-spacing: 1px;
    opacity: 0.7;

    position: absolute;
    top: 80%;
    right: 0;
}
/* End Our Services */

/* Start clients */
    ul.clientslists{
        list-style-type:none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
    }

    ul.clientslists li{
        background-color: #f4f4f4;
        border: 5px solid #e9e9e9;
        padding: 20px 30px;
        margin: auto;
    }

    ul.clientslists img{
        width: 100px;
    }

    ul.clientslists li:hover{
        border-color: var(--secondary-color);
        box-shadow: 3px -5px 0 rgba(0,0,0,0.3);
    }



    @media (max-width:768px){

        ul.clientslists li{
            background-color: #f4f4f4;
            border: 2px solid #e9e9e9;
            padding: 10px 20px;
            margin: 0 5px;
        }
    
        ul.clientslists img{
            width: 50px;
        }
    
        ul.clientslists li:hover{
            box-shadow: 1px -2px 0 rgba(0,0,0,0.3);
        }
    }

/* End clients */

/* Start Customers */
.customers{
    background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,1)),url('../assets/img/banner/banner3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
/* End Customers */

/* Start Request Quote */
.qutoes{
    background-color: var(--secondary-color);
    padding: 30px 50px;
    margin: -30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qutoes .infos{
    display: flex;
}

.qutoes .btn-calls{
    width: 170px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    font-family: sans-serif;
    font-size:15px;
    line-height: 50px;
    border: none;
    border-radius: 100px;
    padding: 0;
    transform: translateY(-1px);

    transition: all .3s;
}

.qutoes .btn-calls:hover{
    box-shadow: -3px 3px 3px #444;
    transform: translateY(0);
}

.phoneicons{
    width: 30px;
}

@media(mac-width:768px){
    .phoneicons{
        width: 50px;
    }
}
/* End Request Quote */

/* Start Furniture Servie */
.furicons img{
    width: 70px;
}

.furicons div:nth-of-type(even){
    background-color: #f1f1f1;
}
/* End Furniture Service */

/* Start Contact */
.contacts{
    background-image: url('../assets/img/banner/banner3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contacts .inputs{
    background: transparent;
    border-color:transparent;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    color: #fff;
    transition: all .8s;
}

.contacts .inputs:focus{
    box-shadow: none;
    border-bottom: 2px solid var(--primary-color);
}

.submit-btns{
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    transition: background-color .3s;
}
.submit-btns:hover{
    background-color: var(--secondary-color);
    color: #fff;
}
/* End Contact */

/* Start Footer */
.footerlinks{
    color: #e2e2e2;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.footerlinks:hover{
    color: orange;
    border-bottom: 1px solid orange;
    letter-spacing: 1px;
}
/* End Footer */

