*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: white;
}

.container{
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.inn-footer h3 {
    font-size: 16px;
}


.mfm{
    display: flex;
    animation-name: mfm;
    animation-duration: 6s;
    animation-delay: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    
}

@keyframes mfm{
    0%{top:0;}
    10%{background-color: darkmagenta;}
    30%{color: teal;}
    100%{top: -70px;}
}

.mfm img {
    width: 60px;
    height: 40px;
    align-items: center;
    margin-top: 5px;
    margin-left: 10px;
}

.mfm h1{
    font-size: 16px;
    text-align: center;
    color: purple;
    margin: auto;
    text-transform: capitalize;
    padding-right: 15px;
    font-weight: 900;
  /*  animation-name: mfm;
    animation-duration: 6s;
    animation-delay: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    /*animation-fill-mode: forwards;*/
}



.hd{
background: url('img/hd-img.jpg') no-repeat center/cover;
height: 500px;
opacity: 0.7;
width: 100%;
}


.hd h1{
text-align: center;
text-transform: uppercase;
color: white;
padding-top: 30px;
font-weight: bolder;
font-size: 20px;
}

.hd p{
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
font-size: 16px;
color: white;

font-weight: bolder;
padding-bottom: 30px;
padding-top: 20px;
padding-left: 30px;
padding-right: 30px;
}

.hd a{
text-align: center;
display: flex;
/*width: 90px;*/
justify-content: center;
border-radius: 5px;
text-decoration: none;
margin: auto;
color: black;
text-transform: uppercase;
font-size: 16px;
font-weight: bold;
cursor: pointer;
box-shadow: wheat 1px 2px 8px 4px;
margin-bottom: 5px;
padding: 10px;
}

.hd a:hover {
    color: teal;
    background: none;
}

.for-service{
    border: 3px green solid;
    margin: 20px;
    border-radius: 20px;
    margin-top: 37px;
}

.for-service h1{
    text-align: center;
    text-transform: uppercase;
    padding: 10px;
    font-size: 22px;
}

.for-service h4{
text-align: center;
text-transform: uppercase;
padding: 10px;
}

.for-service p{
text-align: center;
padding-bottom: 30px;
padding: 10px;
}


.map iframe{
    width: 100%;
    height: 400px;
    padding-top: 30px;
    box-shadow: black 0px 0px 8px 4px;
    padding-bottom: 40px;
    margin-bottom: 20px;
}


.cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

@media(max-width: 700px){
    .cards{
 grid-template-columns: 1fr;
margin-left: 10px;
    }
}


.cards img {
    margin-top: 20px;
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    box-shadow: 0px 0px 8px 4px grey;
    border-radius: 6px;
}

.cards img:hover{
    opacity: 0.7;

}

.cards h3{
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: bold;
    color: darkmagenta;
}

.cards h3:hover{
    color: green;
    border-bottom: red 3px solid;
    padding-bottom: 6px;
}

.cards a:hover{
    color: darkgreen;
    }
    

.cards a{
    display: flex;
    padding: 3px;
    color: blue;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: small;
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    width: 30%;
    margin: auto;
    box-shadow: aqua 0px 0px 8px 4px;
    margin-top: 16px;
}


.footer{
    background-color: #1888c9;
    color: white;
    margin-top: 50px;
    padding: 20px;
}

.footer h1{
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 10px;
    padding-top: 30px;
    text-align: center;
    font-size: 20px;
}

.footer p{
    padding-bottom: 40px;
    text-align: center;
}

.footer2{
    background-color: #dbdbd7;
    padding: 20px;
}

.footer2 h1{
    text-transform: uppercase;
    color: #262626;
    padding-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}

.footer2 p{
    text-align: center;
    font-size: 17px;
    padding-bottom: 20px;

}

.footer2 a{
    display: flex;
    justify-content: center;
    background-color: grey;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #1505a3;
    border-radius: 7px;
    padding: 3px;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: smaller;
    width: 30%;
    margin: auto;
}

.footer2 a:hover{
color: purple;
}


.last-footer{
    background-color: #262626;
    font-size: 12px;
    padding: 35px 0;
}

.inn-footer{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

@media(max-width: 700px){
    .inn-footer{
 grid-template-columns: repeat(2, 1fr);
margin-left: 40px;
    }
}

/*@media(max-width: 500px){
    .inn-footer{
 grid-template-columns: 1fr;
 margin-left: 70px;
    }
}*/

.inn-footer h3{
    text-transform: uppercase;
    color: white;
    font-weight: bolder;
}

.inn-footer h3:hover{
    border-left: blue 3px solid;
 /*   width: 50px;*/
    padding: 5px;
}

.inn-footer li{
    list-style: none;
    line-height: 2.8;
}

.inn-footer a{
    text-decoration: none;
    color: green;
    font-weight: bold;
    text-transform: capitalize;
}

.inn-footer a:hover{
    border-bottom: darkslateblue 3px solid;
    padding-bottom: 5px;
}

.me{
    margin-top: 30px;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 20px;
    display: flex;
    justify-content: center;

}

.me h3{
    margin-left: 5px;
    align-items: center;
}
.me h4 {
    font-size: 10px;
    color: green;
    align-self: center;
    font-weight: bolder;
}

.me img{
    width: 40px;
    height: 33px;
    border-radius: 30px;
    align-items: center;
    margin-left: 10px;
margin-right: 20px;
    justify-content: center;
}



.social-icon{
    width: 32px;
}