html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-family: proxima-nova, sans-serif;
    margin: 0;
}

h2 {
    font-family: proxima-nova, sans-serif;
    margin: 0;
    font-size: 34px;
    text-transform: uppercase;
    color: #006B97;
    padding-bottom: 20px;
}

p {
    color: #A1A1A1;
    font-size: 16px;
    line-height: 25px;
    margin-top: 0;
    margin-bottom: 20px;
}



/* nav area */

header{
    
}

.nav_top{
    background: #006B97;
    padding: 10px 0;
}

.nav_top ul{
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.nav_top ul li{
    display: inline-block;
    margin-left: 20px;
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 24px;
}

.nav_top ul li:nth-child(1) {
  background-image:  url(../imgs/ico_phone.svg);
}
.nav_top ul li:nth-child(2) {
  background-image:  url(../imgs/ico_mail.svg);
}

.nav_top ul li a{
    color: #fff;
    text-decoration: none;
}



.nav_top ul li a:hover {
    color: #eee9e9;
}

.nav_bottom{
    padding: 40px 0
}




/* hero slider */

.hero {
    padding: 80px 0;
    margin-top: 0px;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.0),
            rgba(0, 0, 0, 0)),
        url(../imgs/slider.png);
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner_hero {
    text-align: center;
    width: 488px;
    max-width: 90%;
}

.inner_hero h1 {
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    font-size: 40px;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.50);
}

.inner_hero p {
    text-align: center;
    color: #fff;
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.50);
}

.button {
    background-color: #006B97;
    border: none;
    color: #ffffff;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    left: 45%;
    top: 57.5%;
    text-align: center;
}

.button:hover {
    background-color: #00577A;
}



/* layout */

.grey {
    background: #eee;
}

.grey .col:nth-child(odd) {
    order: 2;
}

.grey .col:nth-child(even) {
    order: 1;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 80px 0;
    margin-left: -30px;
    margin-right: -30px;
}

.row .col {
    width: calc(50% - 30px);
    margin: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row .col img {
    width: 100%;
}

.innerwrap {
    max-width: 86%;
    width: 1200px;
    margin: 0 auto;
}



/* contact footer */

.footer {
    padding: 80px 0;
    margin-top: 0px;
    width: 100%;
    background: #00577A;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
     text-align: center;
}

.footer .innerwrap {
    width: 900px;
}


.footer h1 {
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    font-size: 40px;
}

.footer p {
    text-align: center;
    color: #fff;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
}

.footer a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.footer p a:hover {
    color: #eee9e9;
}



/* footer */

.bottom-footer {
    text-align: center;
    background: #222D3A;
    padding: 20px;
    color: darkgrey;
    font-weight: 100;
}

.bottom-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.bottom-footer li {
}
.bottom-footer li:nth-child(odd) {
    text-align: left;
}
.bottom-footer li:nth-child(even) {
    text-align: right;
}

@media all and (max-width:600px) {
    .bottom-footer ul {
    flex-wrap: wrap;
    flex-direction: row;
    }

    .bottom-footer li {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }
    .bottom-footer li:nth-child(odd) {
    text-align: center;
    }
    .bottom-footer li:nth-child(even) {
        text-align: center;
    }
}


/* responsive */

@media all and (max-width:1000px) {



    .row {
        display: flex;
        flex-direction: column;
    }

    .row .col {
        width: 100%;
        margin: 0;
        margin-bottom:30px;
    }
    

    .row .col img {
        width: 100%;

    }


    .grey .col:nth-child(odd) {
        order: 1;
        
    }

    .grey .col:nth-child(even) {
        order: 2;
        
    }

}

@media all and (max-width:780px) {
    
.nav_top ul, .nav_bottom{
    text-align: center;
}
    
.nav_top ul li:nth-child(1) {
  margin-left: 0;
}
}


