.info{
    padding: 30px 50px 0 50px;
    width: 100%;
    background-color: #eee;
}
.infoTitle{
    text-align: center;
}
.infoTitle h5{
    font-size: 30px;
    font-weight: 600;
}
.infoBody{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin:50px 50px 0px 50px;
}
.infoCircle{
    text-align: center;
    margin:20px 0;
}
.circle{
    display: flex;
    justify-content: center;
    align-items: center;
}
.circleInner{
    border: 2px solid goldenrod;
    background-color: goldenrod;
    border-radius: 50%;
    padding: 30px;
}
.circleInner:hover{
    border: 2px solid goldenrod;
    background-color: white;
}
.circleInner:hover i{
    color: goldenrod;
}
.circle a {
    color: white;
}
.information{
    padding-top: 30px;
}
.phone{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.phone a{
    text-decoration: none;
    color: black;
}
.phone a:hover{
    color: goldenrod;
}
.followUs{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
}
.followUsContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.icon a{
    color: goldenrod;
    padding: 5px 7px;
}

@media only screen and (max-width: 1024px){

    .info , .infoBody{
        padding:30px 0px 10px 0px;
        overflow: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .infoBody{
        margin: 0px;
    }

}


