:root{
    --main-color:#d6ffd7;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
.navbar{
    display: flex;
    align-items: center;
    position: relative;
    top: 12px;
}
/* .navbar::before{
    content: "";
    background: black;
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.4;
    z-index: -1;
} */
.icon{
    margin: 5px 25px;
}
.icon img{
    height: 55px;
}
ul{
    display: flex;
}
ul li{
    list-style: none;
    font-size: 1.3rem;
    font-weight: 600;
}
ul li a{
    text-transform: capitalize;
    color: var(--main-color);
    padding:5px 20px;
    text-decoration: none;
}
ul li a:hover{
    color: #d6ffd7c8;
}
.home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 200px;
    height: 414px;
}
.home::before{
    content: "";
    background: url('./images/bg_11zon.jpg') no-repeat center center/cover;
    background-position: bottom;
    position: absolute;
    top: 0;
    height: 62%;
    width: 100%;
    opacity: .89;
    z-index: -1;
    filter: brightness(.4);
}
.home h1{
    padding: 0 0 16px;
    color: var(--main-color);
    font-size: 2.5rem;
}
.home p{
    text-align: center;
    color: aliceblue;
    font-size: 1.1rem;
}
.home .btn{
    color: var(--main-color);
    font-size: 1.1rem;
    background: none;
    border-radius: 10px;
    border: 2px solid var(--main-color);
    padding: 10px 20px;
    margin: 20px;
    cursor: pointer;
    font-weight: 500;
}
.home .btn:hover{
    color: rgb(71, 71, 71);
    background: var(--main-color);
}
.services-container h1{
    text-align: center;
    padding: 12px ;
    font-size: 2.5rem;
    /* display: flex; */
}
.box h2{
    text-align: center;
    padding: 12px ;
    font-size: 1.5rem;
}
.services{
    display: flex;
    margin: 34px;
}
.services .box{
    /* width: 400px; */
    /* border: 2px solid red; */
    margin: 10px 14px;
    background: #f1f1f1;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 0px 13px -9px black;
}
.services .box img{
    margin: auto;
    display: block;
    height: 100px;
}
.follow{
    /* height: 332px; */
    position: relative;
}
.follow p{
    text-align: center;
    padding-bottom: 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    opacity: .4;
}
.follow::before{
    content: "";
    position: absolute;
    background: grey;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .5;
}
.follow h1{
    padding-top: 16px;
    text-align: center;
    font-size: 2.1rem;
}
.logoes{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logoes img{
    object-fit: cover;
    height: 55px;
}
.logoes .logo{
    padding: 30px;
}


@media screen and (max-width:780px) {
    .home h1 {
        font-size: 1.5rem;
    }
    .home p{
        font-size: .9rem;
    }
    .home {
        padding:90px  85px;
        height: 344px;
    }
    .services{
        flex-wrap: wrap;
    }
}
@media screen and (max-width:550px) {
    ul li {
        font-size: 0.9rem;
        font-weight: 500;
    }
    .navbar{
        flex-direction: column;
    }
    .home::before{
        height: 52%;
        width: 125%
    }
    .home h1 {
        font-size: 21px;
        /* padding: 0 0 54px; */
        margin-top: -44px;
    }
    .home p{
        font-size: 11px;
        width: 160%;
    }
    .home .btn {
        font-size: 9px;
        padding: 4px 6px;
        margin: 17px;
        
    }
    .services-container{
        margin-top: -95px;
    }
    .services-container h1{
        font-size: 25px;
        margin-bottom: -33px;
    }
    .services .box{
        padding: 10px;
        margin: 0 -20px;
    }
    .services .box p{
       font-size: 14px;
    }
}

















