* {
    margin: 0;
    padding: 0;
}

.header {
    width: 100%;
    margin-bottom: 40px;
    color: limegreen;
    background: brown;
}

.header h1 {
    position: relative;
    font-size: 50px;
    margin-left: 50px;
    cursor: pointer;
    text-transform: uppercase;
}

.header img {
    width: 45px;
    border-radius: 30px;
    margin-top: 20px;
    height: 40px;
}

.header p {
    padding: 0 5px 20px 560px;
    font-style: italic;
}

@media (max-width:700px) {
    .header {
        min-height: 12vh;
    }
    .header h1   {
        font-size: 35px;
        margin-left: 0;
        text-align: center;
    }
    .header img {
      height: 28px;  
      width: 30px;
    }
    .header p {
        padding: 0;
        text-align: center;
    }
}


/* Info */

.info {
    margin: auto;
    width: 80%;
}

.info h1 {
    text-align: center;
    color: brown;
    margin-bottom: 5%;
}

.row {
    display: flex;
    justify-content: space-between;
}

.info-col img {
    height: 40%;
    width: 30%;
    border-top-right-radius:  40px;
    border-bottom-left-radius: 30px;
    cursor: pointer;
}

/* Our Service */

.service {
    margin: auto;
    width: 80%;
    color: brown;
}

.service h1 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.serv-col {
    margin-top: 10px;
    font-size: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    position: relative;
    text-decoration: none;
    border: 1px solid brown;
    background: brown;
    cursor: pointer;
    color: white;
    font-size: 21px;
    cursor: pointer;
    margin: 5px;
}

.btn:hover {
    background: limegreen;
    border: none;
}



/* Footer */

.footer {
    margin-top: 10%;
    background: brown;
    border-top: 15px solid limegreen;
    width: 100%;
    text-align: center;
}

.foot-links {
    padding: 5px 10px;
    color: #fff;
}

.foot-links .fa {
    font-size: 35px;
    padding: 20px 38px;
    cursor: pointer;
}

.foot-text {
    text-align: left;
}

.foot-text div {
    display: flex;
    align-items: center;
}

.foot-text div .fa {
    font-size: 28px;
    color: limegreen;
    margin: 25px;
    margin-right: 30px;
}

.foot-text div p {
    padding: 0;
}

.foot-text div h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: rgb(233, 221, 221);
    font-weight: 400;
}

.footer h4 {
    color: rgb(233, 221, 221);
    margin-top: 3px;
    margin-bottom: 5px;
}