/* google fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,800&display=swap');

/* start coding */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}
p{
    line-height: 1.7em;
    color: #333;
}
hr{
    max-width: 728px;
    margin: auto;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    height: 1px;
    border: 0;
}
a{
    text-decoration: none;
    color: #4582ec;
}
.nr-container{
    max-width: 1100px;
    margin: auto;
    padding: 10px;
}
.nr-row{
    padding: 10px; 
    overflow: hidden;
}
.nr-3-1{
    width: 33.33%;
    float: left;
    overflow: hidden;
    text-align: center;
}
/* navbar area */
.nr-navbar:before,
.nr-navbar:after{
    content: '';
    display: table;
    clear: both;
}
.nr-logo{
    width: 100%;
    float: left;
    overflow: hidden;
    text-align: center;
}
.nr-logo a{
    color: #333;
    font-size: 20px;
    padding: 12px 0;
    display: inline-block;
    font-weight: 500;
}
.nr-logo a h2{
    text-align: center;
}
.nr-logo a p{
    font-size: 45px;
    margin: 0;
}
.nr-menu{
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
}
.nr-navbar ul{
    margin: 0;
    list-style: none;
}
.nr-navbar ul li{
    float: left;
    margin: 0 3px;
    border: 1px solid transparent;
    position: relative;
}
.nr-navbar ul li:hover{
    border: 1px solid #ddd;
    border-radius: 5px;
}
.nr-navbar ul li a{
    color: #333;
    padding: 11px;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
}
.nr-navbar ul ul{
    float: none;
    background-color: #fff;
    position: absolute;
    top: 53px;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    left: 0;
    width: 220px;
    border: 1px solid #ddd;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 3px 0;
    margin: 0;
    display: none;
}
.nr-navbar ul ul li{
    margin: 0;
    width: 100%;
}
.nr-navbar ul ul li a:hover{
    background-color: #4582ec;
    color: #fff;
}
.nr-navbar ul ul li a{
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 500;
    line-height: 1.4em;
    color: #333;
    white-space: nowrap;
    font-size: 16px;
    border-radius: 3px;
    text-align: left;
}
.nr-navbar ul ul li a img{
    width: 19px;
    vertical-align: middle;
}
/* hero section */
.nr-ads{
    text-align: center;
}
.nr-hero-section{
    text-align: center;
    padding: 20px 0 10px 0;
}
.nr-hero-section h1{
    font-weight: 700;
    font-size: 41px;
    color: #333;
    line-height: 1.1em;
}
.nr-all-services{
    margin: 15px auto;
}
.nr-service{
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 15px 10px;
    margin: 5px;
}
.nr-service:hover{
    box-shadow: 0 2px 5px #ddd;
}
.nr-service h2{
    font-size: 28px;
    color: #333;
    margin-top: 22px;
    margin-bottom: 7px;
    text-transform: capitalize;
}
.nr-service p{
    margin-bottom: 11px;
}
.nr-service a{
    text-decoration: none;
}
.nr-service a span{
    display: block;
    background-color: #4582ec;
    color: #fff;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 5px;
}
.nr-service a span:hover{
    background-color: #1763E6;
}
.nr-footer-ad{
    margin: 20px 0;
    text-align: center;
}
.footer{
    text-align: center;
}
.footer a:hover{
    text-decoration: underline;
}
.nr-footer-ad{
    max-width: 700px;
    height: auto;
    margin: 20px auto;
    overflow: hidden;
}
.nr-ads{
    max-width: 320px;
    height: auto;
    margin: auto;
    margin-top: 11px;
}
.nr-service img{
    width: 100px;
    height: 100px;
}

@media all and (max-width: 1055px) {
    .nr-3-1{
        width: 50%;
    }
}
@media all and (max-width: 600px) {
    .nr-3-1{
        width: 100%;
    }
}
