/**
 *  Stylesheets
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

/**
 *  CSS Reset
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126
 *  License: none (public domain)
 *
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 *  Layout
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  Contains basic rules for defining the main layout of the page. If there are any
 *  global tag rules that needs to be included, their place is here
 *
 */

html {
  box-sizing: border-box;
}

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

html, body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/**
 *  Header
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

.header {
  background: #eee;
  width: 100%;
}

.header--wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
}

.header--logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 11px;
  color: #7f7f7f;
}

.header--logo--strong {
  font-weight: 600;
  letter-spacing: 1px;
  color: #3f3f3f;
}

.header--navigation--link {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-align: left;
  line-height: 11px;
  color: #3B3D40;
  text-transform: uppercase;
  text-decoration: none;
}

.header--navigation--link:hover {
  color: #0c0d10;
}

.header--navigation--link + .header--navigation--link {
  margin-left: 25px;
}

.header--slogan {
  padding: 60px 0 160px 0;
  text-align: center;
}

.header--sub-title {
  opacity: 0.7;
  font-size: 11px;
  color: #0c0d10;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 0 20px 0
}

.header--title {
  font-size: 52px;
  color: #3f3f3f;
  letter-spacing: -2px;
  text-align: center;
  line-height: 65px;
  padding: 5px 0 60px 0;
}

.header--title--underline {
  border-bottom: 5px solid #3f3f3f;
  padding-bottom: 1px;
}

.header--line {
  max-width: 450px;
  background: #3f3f3f;
  height: 5px;
  border: none;
  margin-bottom: 80px;
}

/**
 *  Advantages
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

.advantages {
  padding: 120px 0;
}

.advantages--title {
  font-size: 52px;
  color: #3C3D41;
  letter-spacing: -2px;
  text-align: center;
  line-height: 55px;
  margin-bottom: 60px;
}

.advantages--items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.advantages--item {
  text-align: center;
  flex: 1;
}

.advantages--item--title {
  font-size: 11px;
  color: #3C3D41;
  letter-spacing: 2px;
  text-align: center;
  padding: 20px 0;
  display: block;
  text-transform: uppercase;
}

.advantages--item--image {
  display: block;
  margin: 0 auto 0 auto;
  width: 50px;
}

.advantages--item--description {
  font-size: 18px;
  color: #656B6F;
  text-align: center;
  line-height: 27px;
  display: block;
  padding: 0 10px;
}

/**
 *  Partners
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

.partners {
  padding: 60px 0;
  background: #F9F9F9;
}

.partners--title {
  font-size: 11px;
  color: #3C3D41;
  letter-spacing: 2px;
  text-align: center;
  padding: 20px 0;
  display: block;
  text-transform: uppercase;
}

.partners--list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px 0;
}

.partners--list--item {
  margin: 10px;
}

.partners--list--item svg, .partners--list--item img {
  width: 120px;
}

.partners--list--item:hover svg {
  fill: #276CF2;
}

.partners--list--item .partners--list--item--image {
  filter: grayscale(100%);
}

.partners--list--item:hover .partners--list--item--image {
  filter: none;
}

/**
 *  Maps
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

#gMaps {
  height: 600px;
  width: 100%;
}

/**
 *  Footer
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

.footer {
  background: #3B3D40;
  padding: 60px 0;
}

.footer--wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer--column {
  flex: 1;
}

.footer--title {
  font-size: 11px;
  color: #FFFFFF;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer--description {
  opacity: 0.5;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 20px;
}

.footer--copyright {
  opacity: 0.5;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 16px;
  margin-top: 20px;
}

.footer--description--small {
  opacity: 0.5;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 16px;
}

.footer--logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 11px;
  color: white;
}

.footer--logo--strong {
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
}

/**
 *  Buttons
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

.button {
  background: #276CF2;
  border-radius: 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 30px;
}

/**
 *  Responsive
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

@media screen and (max-width: 820px) {
  .advantages--items {
    flex-direction: column;
  }
  .advantages--item {
    margin: 30px auto;
  }
  .partners--list {
    flex-direction: column;
  }
  .partners--list--item {
    margin: 20px 10px;
  }
  .footer--wrapper {
    flex-direction: column;
  }
  .footer--column {
    margin: 20px 0;
  }
  .header--wrapper {
    flex-direction: column;
  }
  .header--logo {
    margin-bottom: 40px;
  }
  .header--title {
    font-size: 35px;
    line-height: 40px;
  }
  .header--title--underline {
    border-bottom: 3px solid #3f3f3f;
  }
  .header--line {
    display: none;
  }
  .advantages--title {
    font-size: 35px;
  }
}


