*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    padding: 0;
    margin: 0;
}
.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction:row;
   padding:0px 20px; 
}
 .sticky{
    display: flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 20px;
    margin: 0 20px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: rgba(196, 185, 36, 0.87); 
}
.logo{
    font-size:25px;
    color:lightcoral;
    letter: spacing 0.3em;
    cursor: pointer;
    margin-left: 10px;
}
.btn{
    font-size:20px;
    background-color:aqua;
    padding:5px 15px;
    border-radius:20%;
    margin-right: 15px;
}
.btn:hover{
    background-color: cadetblue;
    color: black;
}
a{
    text-decoration:none;
}
.nav-links li{
    list-style: none;
    display: inline;
    margin: 0 15px;
    
}
.nav-links li a{
    font-size:20px;
}
.nav-links li a:hover{
    color: lightblue;
    border-bottom: 3px solid rgb(37, 153, 248);
}
.left{
    width:30%;
    background: #cbced1;
    padding:25px;
    text-align: center;
    align-items: center;
    justify-content: center;
    height:100%; 
  
}
.left img{
    height: 200px;
    width: 200px;
    border-radius:50%;
    box-shadow: 0px 0px 5px #5f5f5f, 
                inset 5px 5px 5px #ecf0f3,
                inset -5px -5px 5px white ;
}
.left h2{
    font-size:30px;
    margin-top:10px;
}
.left h4{
    font-size:18px;
    margin-top: 10px;
}
hr{
    margin: 15px 0px;
} 
.left p{
    text-align: justify;
}
.right{
    width:70%;
    background: rgb(235, 220, 220);
    
    
  
}

.right img{
    
    height:100%;
  width:100%;
    
}
.team{
    height:100%;
    width:100%;
    box-sizing: border-box;
    padding: 0 20px;
}
.services{
    height: 500px;
  width:100%;
  overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items:center;  
    padding:0px 20px;
    background-color:#cef0f3;
}
h1{
    font-size: 35px;
    margin-left: 20px;
    margin-top:10px;
    margin-bottom:10px;
    text-transform: uppercase;
}
.card{
    height:350px;
    width: 250px;
    padding:15px;
    margin: 0 10px;
    background-color:#cef0f3);
    border-radius:40px;
    box-shadow:10px 10px 15px #cbced1,-10px -10px 15px white;
    transition: 0.5s;
}
.logo1{
    background: url("./img/re1.jpeg");
    height:80px;
    width:80px;
    border-radius: 50%;
    
    margin: 0 auto;
    box-shadow:0px 0px 2px #5f5f5f, 6px 6px 12px #a7aaaf, -6px -6px 12px white;
    
}
.card h2{
    text-align:center;
    font-family: Arial, Helvetica, sans-serif;
    padding:5px;
    margin-top: 10px;
   text-decoration: underline blue 3px;
   text-transform: uppercase;
   
}
.card h4{
    text-align:center;
    font-family: Arial, Helvetica, sans-serif;
    padding:5px;
    margin-top: 10px;
    text-decoration: underline blue 3px;
   text-transform: uppercase;
   letter-spacing:0.2em;
}
.card p{
    margin-top: 15px;
    text-align: justify;
    letter-spacing:0.02em;
}
.card:hover{
    transform: scale(1.050);
}
.portfolio{
/* height: 100; */
width: 100%;
padding:10px 20px;

/* background-color: #5f5f5f; */
}
.portfolio h2{
    display:inline;
    font-size:35px;
    color: rgb(10, 10, 10);
    border-bottom: 5px solid blue;
    
}
.po-parts{
    height:100%;
    width: 100%;
    padding:25px;
    display: flex;
    flex-wrap: wrap;
    /* flex-direction:column; */
    align-items: center;
    justify-content:center;
    background-color: #a7aaaf;
    /* display:grid; */
   
}
.portfolio-item{
    /* box-sizing: border-box; */
    height:500px;
    width:245px;
    margin: 20px;
    border-radius: 25px;
    background-color: #a7aaaf;
    box-shadow: 0 0 1px black,15px 15px 12px #474747, -15px -15px 12px rgba(214, 214, 214, 0.918);
    
}
/* .po-parts:hover{
    
    box-shadow:15px 15px 5px #cef0f3,
} */
img{
    height:184px
    width:245px;
    border-radius:25px;
}
.portfolio-item h2{
    display: block;
    color: darkblue;
    text-align:center;
    font-size:25px;
    margin-top: 5px;
    border-bottom: none;
    
}
.portfolio-item p{
    text-align:justify;
    padding: 20px;
}
#more {display: none;}
.portfolio-item button{
    background-color:blue;
    padding:5px 15px;
    margin-left: 15px;
    text-align:center;
}