/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
.container{
    max-width: 1160px;
    margin: auto;
}
.common-heading{
    font-size: 38px;
}
/* Navbar-style */
nav{
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
}
.float-left{
    display: flex;
    justify-content: start;
    align-items: center;
}
.menu{
    display: flex;
}
.menu li{
    list-style-type: none;
    padding: 10px 20px;
}
.menu li a{
    text-decoration: none;
    color: #585858;
}
.space{
    margin-left: 20px;
}
.sign-up{
    background-color: #FD665E;
    color: #ffffff;
    border-radius: 4px;
}
/* Hero-section */
.hero{
    margin-top: 80px;
}
.hero-content{
    display: flex;
}
.hero-heading{
    font-size: 80px;
    font-weight: bold;
    line-height: 85px;
}
span{
    color: #FD665E;
}
.hero-text{
    width:35%;
}
.hero-image{
    width: 50%;
    margin-left:100px ;
}
.hero-image img{
    width: 100%;
}
.hero-text a{
    text-decoration: none;
    color: #ffffff;
    background-color:#FD665E ;
    padding: 10px 20px;
    border-radius: 4px;
}
.hero-text p{
    margin: 30px 0px;
}

.image{
    width: 20%;
}
.image img{
    width: 100%;
    height: 300px;
}
.rooms-image{
    display: flex;
    justify-content: space-evenly;
    margin-top: 40px;
}
.room{
    margin-top: 40px;
}
.room .common-heading{
    text-align: center;
}
.architect{
    margin-top: 70px;
}
.architect-content{
    display: flex;
}
.text-icon{
    display: flex;
}
.up-of-link{
    margin-bottom: 40px;
}
.architect-text{
    padding: 50px 80px;
}
.architect-text a{
    text-decoration: none;
    color: #ffffff;
    background-color:#FD665E ;
    padding: 10px 20px;
    border-radius: 4px;
}.text-icon{
    margin-bottom:40px ;
}
.icon{
    font-size: 45px;
    margin-right: 25px;
    color: #FD665E;
}
.architect-image{
    width: 60%;
}
.architect-image img{
    width: 100%;
}
.article{
    margin-top: 50px;
    margin-bottom: 40px;
}
.caption p::before{
    content: open-quote;
    color: red;
    font-weight: bolder;
}
.right-arrow{
    margin-left:30px;
}
.arrow i{
    color: royalblue;
}
.name-arrow{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.caption{
width: 50%;
margin-left: 400px;
}
.caption p{
    font-size: 20px;
}

.work{
    display: flex;
    align-items: center;
}
.work-image img{
    width: 80%;
}
.work-text a{
    text-decoration: none;
    color: #ffffff;
    background-color:#FD665E ;
    padding: 10px 20px;
    border-radius: 4px;
}
.bottom-margin{
    margin-bottom:50px ;
}
.brand{
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
    margin-bottom: 100px;
}
.brand img{
    width: 15%;
    height: 50px;
    object-fit: cover;
}


/* Media_Queries for small devices */
@media only screen and (max-width:778px){
header{
    display: none;
}
.container{
    width: 100%;
    margin: 40px auto;}
     .hero .hero-heading{
         font-size: 40px;
         line-height: 42px;
     }
.common-heading{
    font-size: 30px;
}
.architect-text{
    padding:2px 36px;
}
.hero-content{
    flex-direction: column;
    padding: 2px 30px;
   
    
}
.hero-text{
    width: 100%;
    padding: 0px 0px;
    text-align: center;
    margin-bottom: 40px;
}
.hero-text p a{
    width: 100%;
}
.hero-image{
    margin: 0 auto;
    width: 80%;
}

.hero-image img{
    width: 100%;
}
.hero .hero-heading{
    text-align: center;
}
.architect-content{
    margin-top: 50px;
}
.rooms-image{
    flex-direction: column;
}
.rooms-image .image{
    width: 70%;
    margin: auto;
    margin-bottom: 20px;
}
.rooms-image .image img{
    object-fit: cover;
}
.architect .common-heading{
    text-align: center;
}
.architect-content{
    flex-direction: column;
}
.architect-image{
    width: 80%;
    margin: auto;
}
.text-icon{
    flex-direction: column;
    text-align: center;
}
.architect-text{
    text-align: center;
}
.article{
    text-align: center;
}
.work{
    flex-direction: column;
    text-align: center;
}
.partner{
    text-align: center;
    margin-top: 100px;
}
.brand{
    padding-left: 30px;
    padding-right: 30px;
}
.caption{
    margin-left: 0;
    padding: 0 38px;
    width: 100%;
    margin-top: 40px;
}

}