/*
*
{
    margin: 0;
    padding: 0;
    font-family: monospace, sans-serif;
    box-sizing: border-box;
}
*/
html,
body {
    padding: 0;
    margin: 0;
    height: 100%;  
}

body {
    background-color: white;
    font-family: Helvetica, sans-serif;
    padding-bottom: 100px;
    box-sizing: border-box;
    
}

.container {
    display: flex;
    flex-direction: column;
    
     background-image: linear-gradient(to left bottom, #051937, #283964, #4d5c95, #7581c9, #a0a8ff);
    background-repeat: no-repeat;
    background-position: center;

}

.nav-bar {
    display: flex;
    justify-content: flex-end;
    /*align-items: center;*/
    /*line-height: 1.5;*/
    background-color: #35424a;
    border-bottom: 2px blue solid;

    /*flex-wrap: wrap;*/
}

.logo-place {
    flex: 1;
    /*border: dotted;*/
    /*height: 180px;*/
    text-align: center;
    color: white;
}

.logo-place a {
    text-decoration: none;
    color: white
}


.logo img {}

.nav-links {

    display: flex;
    /*     align-items:flex-end;*/
    flex: 2;
    justify-content: space-between;
    /*border: dotted;*/
    padding: 1em;
    /*flex-wrap: wrap;*/

}

.nav-links a {
    line-height: 4em;
    /*border: 1px solid red;*/
    border-radius: 5px;
    /* background-color: red;*/
    color: white;
    width: 7em;
    text-align: center;
    margin: auto;

    text-decoration: none;
}

.nav-links a:hover {
    /*border: 1px inset white;*/
    background-color: gold;
}
/*Footer css code here*/
.footer {
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    margin-bottom: 0;
}

.footerup {
    background-color: #35424a;
    color: lightgray;
}

.footer-upper {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-left: 2em;
    /*text-align: center;*/
    padding-top: 2em;
    padding-right: 2em;
    padding-bottom: 2em;
}

.footer-upper-1 {
    flex: 1;

}

.footer-upper-1 p {
    text-align: left;
}

.footer-upper-2 {
    flex: 1;


}

.footer-upper-2 ul {
    list-style: none;
    padding-left: 10em;
}

.footer-upper-2 ul li {
    margin: 0.5em;
}

.footer-lower {
    line-height: 2em;
    text-align: center;
    background-color: #B6C9DB;
    color: #1569AE;
}



/*services css here*/
.service-section
{
    background-image: url(../images/bg.jpg);
        
    background-size: cover;
    padding: 60px 0;
}
.inner-width
{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden;
}
.section-title
{
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-size: 30px;
    
}
.border
{
    width: 160px;
    height: 2px;
    background: #82ccdd;
    margin: 40px auto;
}
.services-container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-box
{
    max-width: 33.33%;
    padding: 10px;
    text-align: center;
    color: white;
    cursor: pointer;
}
.service-icon
{
    display: inline-block;
    width: 70px;
    height: 70px;
    border: 3px solid #82ccdd;
    color: #82ccdd;
    transform: rotate(45deg);
    margin-top: 16px;
    margin-bottom: 30px;
    transition: 0.3s linear;
    
    
}
.service-icon i
{
    line-height: 70px;
    transform: rotate(-45deg);
    font-size: 26px;
    
}
.service-box:hover service-icon
{
    background: #82ccdd;
    color: #ddd;
}
.service-title
{
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
    
}
.service desc
{
    font-size: 50px;
    text-align: justify;
}



/*media queries here*/
@media screen and (max-width : 1024px){
    .nav-bar {
        flex-wrap: wrap;
    }

    .nav-links {}

    .nav-links a {}

    .footer-upper-2 ul {
        padding-left: 3em;
    }
}
@media screen and (max-width:960px){
    .service-box
    {
        max-width: 45%;
        
    }
}
@media screen and (max-width:768px){
    .service-box
    {
        max-width: 50%;
        
    }
     header {
        width: 100%;
    }

    .nav-bar {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
    }

    .heading-logo {
        display: none;
    }

    .footer-upper {
        flex-direction: column;
    }

    .footer-upper-2 ul {
        padding-left: 0;
        padding-top: 5px;
        border-top: 1px solid black;
    }

}
@media screen and (max-width:480px){
    .service-box
    {
        max-width: 100%;
        
    }
}