*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    width: 100%;
    font-family: sans-serif;
    background: linear-gradient(to top, rgba(0,0,0,0.5)50%,rgba(0,0,0,0.5)50%),url(photos/ai-generated-8671002_1280.jpg);
}

.icon{
    width: 200px;
    height: 70px;
    float: left;
}

.logo{
    color: #ff7200;
    font-size: 35px;
    font-family: arial;
    float: left;
    padding-left: 20px;
    padding-top: 10px;

}
.menu{
    width: 400px;
    float: left;
    height: 70px;

}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li{
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;

}

ul li a{
    text-decoration: none;
    color: #fff;
    font-family: arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover{
    color: #ff7200;
}

.title h1{
    text-align: center;
    padding-top: 50px;
    font-size: 42px;
    color: #ff7200;

}

.title h1::after{
    content: "";
    height: 4px;
    width: 230px;
    background-color: #000;
    display: block;
    margin: auto;

}

.services{
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:75px auto;
    text-align: center;
}

.card{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 0px 20px;
    padding: 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8)50%,rgba(0,0,0,0.8)50%);
    border-radius:10px;
}

.card .icon{
    font-size: 35px;
    margin-bottom: 10px;

}

.card h2{
    font-size: 28px;
    color: #ff7200;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 0px 15px 0px 15px;

}

.card p{
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #fff;
}

.services .icon{
    color: #fff;
}

.button{
    font-size: 20px;
    text-decoration: none;
    color: #000;
    padding: 8px 12px;
    border-radius: 5px;
    letter-spacing: 1px;
    background-color: #ff7200;
    font-weight: bold;
    transition: 0.4s ease;

}

.button:hover{
    background: #fff;
    color: #ff7200;
    border: 2px solid #ff7200;
    box-shadow: 0 0 5px #ff7200,
                0 0 25px #ff7200;
    cursor: pointer;
    transform: scale(1.1);
}

@media screen and (max-width:940px){
    .services{
        display: flex;
        flex-direction: column;

    }
    .card{
        display: flex;
        width: 85%;
        margin: 20px 0px;
    }
    
}

