.background{
    position: relative;
    width: 100%;
    height: 740px;
    object-fit: cover;
    object-position: center;
    transition: opacity 1s ease-in-out; 
    opacity: 60%;
    overflow: hidden;
}

.home-about{
    background-color: black;
    overflow: hidden;
    margin-top: -5px;
}

.about-text{
    font-family: "Oswald", sans-serif;
    z-index: 100;
    position: absolute;
    color: #fff;
    font-size: 64px;
    font-weight: bold;
    width: 1000px;
    margin: 280px 100px;
}

.dots{
    position: relative;
    z-index: 100;
    margin-top: -100px;
    text-align:center
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #9EB3C2;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

.desgins{
    margin-top: 30px;
}

.home-service{
    width: 100%;
    text-align: center;
}

.container{
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: auto;
}

.box{
    display: flex;
    padding: 20px;
    margin: 5px;
    width: 300px;
    height: fit-content;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 25px;
}
.service-header{
    font-size: 32px;
    font-weight: bold;
    margin-top: 80px;
    margin-bottom: 30px;
    font-family: "Oswald", sans-serif;

}
h3{
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    padding: 10px 0;
}
h4{
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 25px;
    padding: 10px 0;
}
.box:hover button{
    display: flex;
}
.box:hover{
    margin-top: 30px;
    margin-bottom: -30px;
}
.box button{
    display: none;
    padding: 6px 20px;
    border-radius: 25px;
    background-color: #065A82;
}
.box button a{
    font-family: "Oswald", sans-serif;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
}

.box:hover .shiter{
    margin-top: -60px;
}

.box img{
    width: 120px;
    height: 120px;
}
.box2{
    background-color:#EBF2FA;
    border-radius: 25px;
    box-shadow: 1px 1px 10px #8C8989;
    padding: 30px;
    width: 30%;
    height: fit-content;
}
.box2 input{
    width: 100%;
    font-size: 15px;
    padding: 5px;
    background-color: #ffff;
    margin-bottom: 20px;
}
textarea{
    width: 100%;
    height: 100px;
    font-size: 15px;
    padding: 5px;
    background-color: #ffff;
    resize: none;
    margin-bottom: 20px;
}
.contact{
    background-image: url(../Images/contact.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: left;
    margin-top: 100px;
    width: 100%;
    padding: 30px 0;
    display: inline-flex;
    justify-content: space-evenly;
}
.box2 button {
    background-color: #065A82;
    color: white;
    font-size: 20px;
    padding: 5px 20px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
    display: block;
}
.contact-about{
    color: #fff;
    width: 45%;
}
.contact-about ul li{
    padding: 5px 0;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    text-align: center;
}
.contact-about ul li a{
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    text-align: center;
}

.contact-about ul li img{
    padding: 2px 0;
    border-radius: 2px;
    width: 40px;
}
.contact-about ul li a img{
    padding: 2px 0;
    border-radius: 2px;
    width: 40px;
}
.contact-about1{
    color: #fff;
    padding: 8px 0;
    font-size: 20px;
}
@media only screen and (max-width: 1200px) and (min-width: 426px){
    .about-text{
        font-size: 45px;
        width: 680px;
        margin: 280px 40px;
    }
    .contact-about ul li a{
        font-size: 15px;
    }
    .contact-about ul li a img{
        width: 25px;
    }
    .contact-about ul li{
        font-size: 15px;
    }
    .contact-about ul li img{
        width: 25px;
    }
}

@media only screen and (max-width: 426px){
    .container{
        gap: 30px;
    }
    h4{
        color: #fff;
        font-family: "Oswald", sans-serif;
        font-size: 25px;
        padding: 10px;
    }
    .contact-about ul li{
        padding: 8px;
    }
    .about-text{
        display: none;
    }
    .contact{
        flex-direction: column-reverse;
    }
    .contact-about1{
        padding: 8px;
    }
    .contact-about{
        color: #fff;
        width: 100%;
    }
    .box2{
        align-self: center;
        width: 70%;
    }
}