*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.container{
    width: 100%;
   
    box-sizing: border-box;
    overflow-x: hidden;
    background-image: url('images/bg.jpg');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	margin:auto;
}
body , html {
    overflow-x: hidden;
}

.navbar{
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
}

.logo{
    width: 150px;
    cursor: pointer;
    margin: 30px 0;
}

.menu-icon{
    width: 25px;
    cursor: pointer;
    display: none;
}

nav{
    flex: 1;
    text-align: right;
}
.nav ul{
    padding: 0;
    margin: 0;
    float: right;
    margin-right: 30px;
}

nav ul li{
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}
nav ul li a{
    text-decoration: none;
    color: #000;
    font-size: 14px;
    padding: 12px 16px;
    display: block;
}

nav ul li a:hover{
    color: #ff8400;
}
nav ul ul{
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
nav ul li:hover > ul{
    display: block;
}
nav ul ul li{
    width: 150px;
    float: none;
    display: list-item;
    position: relative;
}

.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
    padding-left: 8%;
    padding-right: 8%;
    
}
.row-contact{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 8%;
    padding-right: 8%;
    
}

.col-1{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}
.col-1 h2{
    font-size: 45px;
}
/* .col-1 h3{
    font-size: 30px;
    color: #707070;
    font-weight: 100;
    margin: 20px 0 10px;
} */
.col-1 p{
    font-size: 22px;
    color: #868686;
    font-weight: 100;
}

.col-1 p{
    margin: 15px 0;
    font-size: 20px;
}
.col-3{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}
.col-3 h2{
    font-size: 30px;
}
.col-3 p{
    font-size: 22px;
    color: #000;
    font-weight: 100;
}
.col-3 p{
    margin: 15px 0;
    font-size: 20px;
}

button{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #ff8400, #ff575a);
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}
button img{
    width: 30px;
    display: none;
}
button:hover img{
    display: block;
}
button:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col-2{
    position: relative;
    flex-basis: 50%;
    display: flex;
    align-items: center;
}
.col-2 .content{
    width: 100%;
}
.color-box{
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(#ff8400, #ff575a);
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 80%;
    z-index: -1;
    transform: translateX();
}
.details{
    text-align: justify;
    padding-top: 5%;
    flex-basis: 100%;
    padding-left: 8%;
    padding-right: 8%;
}
.details p{
    color: #000;
}
.content-details{
    width: 100%;
    vertical-align: middle;
}
.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    padding-left: 8%;
    padding-right: 8%;
}
.gallery img{
    width: 100%;
    border: 10px solid #fff;
    transition: .2s linear;
    object-fit: cover;
}
.gallery :hover img{
    transform: scale(1.02);
}
.modelhouse{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}
.modelhouse img{
    width: 40%;
}
.container-details{
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-x: hidden;
    background-image: url('images/bg.jpg');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	margin:auto;
    padding-left: 8%;
    padding-right: 8%;
}
.container-details h2{
    margin: 15px 15px;
}

/* Mobile View */
@media only screen and (max-width:700px){

    
    nav ul{
        width: 100%;
        background: linear-gradient(#ff8400, #ff575a);
        position: absolute;
        top: 70px;
        right: 0;
        z-index: 2;
    }
    nav ul li a:hover{
        color: #ffffff;
    }
    nav ul li{
        display: block;
        margin: 30px auto;
    }
    nav ul li a{
        color: #fff;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
    .menu-icon{
        display: block;
    }
    #menuList{
        overflow: hidden;
        transition: 0.5s;
        background: linear-gradient(#ff8400, #ff575a);
        border-bottom-right-radius: 30%;
    }
    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
    }
    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }
    .col-1{
        flex-basis: 100%;
    }
    .col-1 h2{
        font-size: 35px;
    }
    .col-1 p{
        font-size: 15px;
    }
    .logo{
        width: 75px;
    }
    *{
        font-size: 14px;
    }
    .details{
        text-align: justify;
        padding-top: 5%;
        flex-basis: 100%;
    }
    .details p{
        color: #000;
    }
    .details h2{
        font-size: 20px;
    }
    .container .popup-image img{
        width: 95%;
        top: 25%; left: 1.5%;     
    }
}
/* End Mobile View */