		.box7 {
    		display: inline-block;
    		width: 447px;
    		padding: 15px;
    		vertical-align: top;
    		box-shadow: 4px 4px 10px rgba(0, 0, 0, .4);
            margin: 15px;
            position:relative;
            overflow:hidden;
		}
		
		.box7:hover .box-content {
            transform: translateY(2px);
            opacity: 1;
        }
		.service-area{
    		width: 1170px;
    		overflow: hidden;
    		margin: 0 auto;
    		text-align: center;
    		font-family: 'Roboto';
            line-height: 24px;
            font-weight: 300;
		}
		.service-area p.text {
            text-align: justify;
        }
		.box7 img {
    		width: 100%;
		}
		.title-area {
        width: 55%;
        text-align: justify;
        padding: 15px;
        margin: 0 auto;
        font-family: 'Roboto';
        font-weight: 400;
        line-height: 24px;
    }
    .title-area h2 {
    		text-align: center;
		}
		section{
    		height: 500px;
    		background-size: cover;
    		background-position: center;
	}
	.heroarea-logo {
        position: absolute;
        left: calc(50% - 100px);
        top: calc(50% - 288px);
        background-color: rgba(255, 255, 255, 0.3);
        padding: 20px;
    }
    .box-content a {
        background: #f5f5f5;
        padding: 15px;
        text-decoration: none;
        color: #1b1b1b;
        display: block;
        width: 200px;
        margin: 20px auto 0;
        transition: .4s;
    }
    .box-content a:hover {
        background: #000;
        color:#fff;
    }
    .footer-area {
        background: #1b1b1b;
        color: #fff;
        text-align: center;
        padding: 5px;
        overflow: hidden;
        font-family: 'Roboto';
    }
    body{
        margin:0;
    }
    .our-service {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .box-content {
        position: absolute;
        bottom: 0;
        padding: 20px;
        background: rgba(0, 0, 0, .7);
        color: #fff;
        transform: translateY(26px);
        opacity: 0;
        transition: 0.4s;
    }
    
    /*
    menu css
    */
    nav {
  background: #ffffff;
  height: 80px;
  width: 100%;
}
label.logo {
    color: white;
    font-size: 25px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}
label.logo img {
    width: 106px;
    padding: 7px 0;
}
nav ul {
  float: right;
  margin-right: 20px;
}
nav ul li {
  display: inline-block;
  line-height: 40px;
  margin: 0 5px;
}
nav ul li a {
  color: #222;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Roboto';
}
a.active,
a:hover {
  background: #005e9c;
  transition: .5s;
  color: #fff;
}
.checkbtn {
  font-size: 22px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}
#check {
  display: none;
}
@media (max-width: 1050px) {
  label.logo {
    padding-left: 30px;
  }
  nav ul li a {
    font-size: 16px;
  }
}
/* services section styling */
.max-width {
    max-width: 1170px;
    padding: 0 80px;
    margin: auto;
}
.services .serv-content, .contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.card:nth-child(3), .card:nth-child(2), .card:nth-child(1) {
    margin-bottom: 30px;
}
.services, .teams{
    color:#222;
    background: #f5f5f5;
    padding: 50px 0;
}
.services .title::before,
.teams .title::before{
    background: #fff;
}
.services .title::after,
.teams .title::after{
    background: #111;
    content: "what i provide";
}
.services .serv-content .card{
    width: calc(30% - 20px);
    background: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto';
}
.services .serv-content .card:hover{
    background: #005e9c;
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);
}
.services .serv-content .card i{
    font-size: 50px;
    color: #222;
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text{
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.box p {
    font-weight: 300;
}
/* Responsive media query code for small screen */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }
  label.logo {
    font-size: 22px;
  }
  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a {
    font-size: 20px;
  }
  a:hover,
  a.active {
    background: none;
    color: #0082e6;
  }
  #check:checked~ul {
    left: 0;
  }
  
}
/*section {
  background: url("bg.jpg") no-repeat;
  background-size: cover;
  height: calc(100vh - 80px);
}*/
    
    @media only screen and (max-width: 480px) {
        .title-area{
            width:100%;
        }
        .service-area {
            width: 100%;
        }
        .box7 {
        display: inherit;
        width: 100%;
        margin:0;
        }
        .serv-content {
            display: inherit !important;
        }
        .services .serv-content .card {
             width: 100%;
        }
        .card{
            margin-bottom: 30px;
        }
    }
    
    
    
    
    
    