
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;

}
.main-home{
    width: 100%;
    height: 100vh;
    background-image: url(servicess.png);
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: center;


}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
}

.logo {
    font-size: 25px;
    color: black;
    text-decoration: none;
    font-weight: 600; 

}
.logo span {
    font-size: 25px;
    color: blue;
    text-decoration: none;
    font-weight: 600; 

}


.navbar a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: 500;
    margin: 0 20px;
}
.navbar a:hover,
.navbar a.active {
    color: blue;
}


.home {
     background-color: whitesmoke;
    background-size: cover;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 50px 8% 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 8% 0;

}
img{
    float: right;
    width: 200%;
    max-width: 400px;
    object-fit: cover;
    vertical-align: middle;
}

.home-content {
    padding: 0 1;
}

.home-content h1 {
    font-size: 35px;
    line-height: 1.2;
    color: black

}
.home-content span {
    font-size: 35px;
    line-height: 1.2;
    color: blue
}
.home-content p {
    font-size: 20px;
    margin: 15px 0 30px;
    color: black;

}
.footer-content{
    background-color: rgb(53, 51, 153);
    background-size: cover;
    width: 100%;
    height: 43vh;
    display: flex;
    align-items: center;
    padding: 5px 12% 0;
}
.footer-content h1 {
    font-size:40px;
    line-height: 1.2;
    color: white ;
    text-align: right;
    padding: 0px 12% 0;
}
