@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', sans-serif;;
}
.header-contact{
    min-height: 50vh;
    width:100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(../images/contact_background.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
.text-box-acc{
    width: 90%;
    color: white;
    position: absolute;
    top: 77%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}
.text-box-acc h1{
    font-size: 62px;
}
.text-box-acc p{
    margin: 10px 40px;
    font-size: 19px;
    color: white;
}
@media(max-width: 700px){
    .text-box-acc h1{
        font-size: 20px;
    }
    .text-box-acc p{
        margin: 10px 40px;
        font-size: 12px;
        color: white;
    }
}
.services-acc{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}
.services-acc h1{
    color: black;
    font-size: 36px;
    font-weight: 600;
    padding: 10px;
}
.row-acc{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.services-col-acc{
    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
}
.service-pics-acc{
    width: 100%;
}
.services-col-acc p{
    font-weight: lighter;
}
hr{
    margin-bottom: 50px;
}
@media(max-width: 700px){
    .row-acc{
     flex-direction: column;
    }
 }
 .about{
    width: 90%;
    margin: auto;
    text-align: center;
    padding: 50px;
    background-color: #b7dfff;
    color: black;
}
.about p{
    font-size: 17px;
    font-weight:100;
}