
.header{
    background-image:linear-gradient(rgba(4,9,30,0.5),
    rgba(4,9,30,0.7)),url(/images/Untitled\ design\ \(1\).png);
    min-height: 100vh;
}
.text-box{
    width: 90%;
    color:white;
    position: absolute;
    top:50%;
    left:50%;
    text-align: center;
    transform: translate(-50%, -50%);
}
.text-box h1{
    font-size:62px;
}
.text-box p{
    margin:10px 0px 40px;
    color: #fff;
    font-size:15px;
    letter-spacing: 2px;
}
.request-btn,.contact-btn{
    display: inline-block;
    text-decoration: none;
    color:#fff;
    border:1px solid #fff;
    padding: 12px 34px;
    background-color: transparent;
    position:relative;
    cursor: pointer;
    margin-left:20px;
    margin-bottom: 20px;
    width: 230px;
}
.request-btn:hover,.contact-btn:hover{
    border: 1px solid rgba(98, 173, 15, 0.7);
    background-color: rgba(98, 173, 15, 0.7);
    transition: 1s;
}
.services{
    width:80%;
    margin: auto;
    text-align:center;
    padding-top: 100px;
    justify-items: center;
}
h1{
    margin-bottom: 20px ;
    font-size: 36px;
    font-weight:600px;
}
.row{
    margin:5%;
    display:flex;
    justify-content: space-between;
    width:80%;
    margin: auto;
    text-align:center;
}

.service-col{
    flex-basis:31%;
    background:#fff3f3;
    border-radius:10px;
    margin-bottom:5%;
    padding:20px 12px;
    box-sizing:border-box;
    
}
h3{
    text-align:center;
    font-weight:600;
    margin:10px 0;
}
p{
    color:#777;
    font-size:300;
    line-height:22px;
    padding:10px;
}
.service-col:hover{
    box-shadow:0 0 20px 0px rgba(0,0,0,0.2);
    transition: 0.5s;
}
.weekly-reports{
    width:80%;
    margin:auto;
    text-align:center;

}
.image-col{
    flex-basis:31%;
    border-radius:10px;
    margin-bottom:30px;
    position:relative;
    overflow:hidden;
}
.image-col img{
    width:100%;
    height: 100%;

}
.layer{
    background: transparent;
    height:100%;
    width:100%;
    position:absolute;
    top:0;
    left:0;
    transition:0.5s;
}
.layer:hover{
    background: rgba(98, 173, 15, 0.7);
}
.layer h3{
    width:100%;
    font-weight: 500;
    color:#fff;
    font-size:26px;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition:0.5s;
}
.layer:hover h3{
    bottom:45%;
    opacity: 1;
}

.cta{
    margin:100px auto ;
    width:80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(/images/Untitleddesign.png);
    background-position:center;
    background-size:cover;
    border-radius:10px;
    text-align:center;
    padding:100px 0;
    margin-bottom: 0;
}
.cta h1{
    color:#fff;
    margin-bottom:20px;
    padding:0;
}

@media(max-width:499px){
    .services{
        padding: 30px;
    }
    .services h1{
        font-size: 25px;
        margin: 25px 0;
    }
    .row {
    width: 87%;
}
h1 {
    font-size: 27px;
    margin-bottom: 30px;
    font-weight: 600px;
}
.cta {
    margin: 40px auto;
    width: 87%;
}
.cta h1 {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 28px;
}
.contact-btn {
    padding: 12px 34px;
    margin-top: 15px;
    margin-left: 0;
}
}