@font-face {
	font-family: 'Roboto-Regular';
	src: url('../fonts/Roboto-Regular.ttf');
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

body{
    font-family: 'Roboto-Regular', sans-serif;
}



/* footer */



  footer {
    height: auto;
    width: 100%;
    background-color: #013655;
    padding: 70px 0;
  }

  footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 7px;
  }

  .footer_main {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .footer_main div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer_title {
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
  }
  .footer_main p{
    margin: 0;
  }
  .footer_main a {
    color: #fff;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 13px;
  }

  .footer_main a:hover {
    text-decoration: underline;
  }

  .footer_title {
    font-weight: bold !important;
    font-size: 15px !important;
    margin-bottom: 15px;
  }

  .footer__line {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 63px;
    background: #0C5E8D;
    color: #fff;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: bold;
  }

  @media (max-width: 700px) {
    .footer_main {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }

    .footer_main div {
      width: 50%;
      margin: 10px 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }

    .footer_main div p {
      width: 100%;
    }
  }

  @media (max-width: 550px) {
    .footer_main {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-pack: distribute;
          justify-content: space-around;
    }

    .footer_main div {
      width: 50%;
    }
  }
