@import url('https://fonts.google.com/css2');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Poppins:wght@100;200;300;400;500;700&family=Roboto+Slab&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  width: 100%;
}
html{
  scroll-behavior: smooth;
}
ul{
    list-style: none;
}
.active{
  color: white;
  text-decoration: underline;
  font-weight: bold;
}
.button {
    background-color: #f28151;
    border-radius: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

/***** Navigation bar *****/

.navbar{
    position:absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
    background-color:rgb(245, 242, 242);
    height: 4rem;
}
.navbar .logo{
  height: 4rem;
  top: 0;
  width: 8rem;

}
.line{
  height: 2px;
  width: 100%;
  background:#555;
}

.logo img{
 width: 100%;
 height: auto;
}
.nav-links{
    display: flex;
    justify-content: end;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
}
.nav-links li{
    margin: 0 30px;
}
header{
  background-image: linear-gradient(to bottom, rgba(77, 68, 68, 0.731), rgba(24, 36, 49, 0.806)),url('../images/background.jpeg');
    width: 100%;
    height: 100vh;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: end;
    padding-bottom: 6rem;
    padding-right: 7rem;
}
.header-content{
    background-color:transparent;
    width: 34rem;
    justify-content: space-around;
}
.header-content h2{
    font-size: 5vmin;
    color: white;
}
.header-content h3{
    font-size: 4vmin;
    color: #f28151;
}
.header-content p{
    color: white;
    font-size: 1.2rem;
    padding: 0.8rem;
    text-align: justify;
}

.header-content h1{
    font-size: 7vmin;
    margin-top: 50px;
    margin-bottom: 30px;
}
.ctn{
  
    color: rgb(0, 0, 0);
    
}
.menu-btn{
    cursor: pointer;
    display: none;
}
.menu-btn-close{
  cursor: pointer;
  display: none;
}


/*** Sections **/



/*----About section--*/
#about{
    width: 100%;
    height: 100vh;
    background: white;
    background-size: cover;
}
.con-content{
position: absolute;
padding: 0;
left: 0;
margin: 0;  
display: flex;
width: 100%;
}
.con-about{
  width: 50rem;
  height: 40rem;
  padding:2rem;
  
}
.about-header{
  color: #000;
  padding: 1rem;
  height: 2rem;
  font-size: 2.5rem;
  justify-content: center;
  align-items: center;
  padding-left: 30rem;
}
.header-h1{
  font-size: 4.5rem;
  color: #f28151;
  font-family: cursive;
}
.header-h1-2{
  font-size: 1.2rem;
  color:#54707b;
  font-weight: 200;

}

.about-h3{
  padding-top: 2em;
  color: #54707b;
  font-weight: 400;
  justify-content: center;
}
.row{
  display: flex;
  justify-content: space-between;
  width:60%;
  padding: 4rem ;
}
.row p{
  width: 230px;
  font-weight: 400;
}
.row .col{
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #54707b;
}
#about .btnMore{
  position: absolute;
  top: 34rem;
  background-color: #f28151;
  border-radius: 4rem;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
}

.image{
  height: 15rem;
  width: 15rem;
}

#expects{
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#service{
  position: absolute;
    width: 100%;
    height: 90vh; 
}
.service-list{
  justify-content: space-between;
  align-items: center;
  display: flex;
  padding-top: 2rem;
  font-weight: 500;
}

#clients{
   width: 100%;
   height: 70vh;
   top: 6rem;
   background-size: cover;
   background-position: center;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

#projects{
    height: 100vh;
    width: 100%;
    margin: 0;
    top: 5rem;
    padding: 0;
}
#projects h1{
  text-align: center;
  font-size: 2.1rem;
  color: #555;
  font-weight: 700;
  width: 100%;
  background: #f28151;
  height: 3rem;
}
.projects{
  width: 100%;
  margin: 6em;
  color: #000;
  display: flex;
  justify-content: space-around;
}
.card{
  width: 25%;
  text-align: center;
  padding: 1em;
}
.card h2{
  font-size: 1.5rem;
  color: #555;
  font-weight: 400;
}
.card p{
  color:#54707b;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}
.projectImg{
  width: 300px;
  height: 300px;
  padding-left: 1.5em;
  object-fit: contain;
}


  
  