/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.3.6,
* Autoprefixer: v10.3.1
* Browsers: last 4 version
*/

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

@font-face {
	font-family: 'Neue';
	src: url('./NeueHaasDisplayBold.ttf');
}

body {
  background: #000;
  color: #fff;
}

.img-fluid {
  max-width: 100%;
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mr-sm {
  margin-right: 18px;
}

nav {
  padding-top: 73px;
  padding-right: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

h1 {
  font-size: 1.25rem;
  margin-top: -280px;
  font-family: "Neue", sans-serif;
}

.mt-min-xxl {
  margin-top: -129px;
}

.icon-section {
  margin-top: 100px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.icon-row img {
  margin: 0px 12px
}

.desktop {
  display: block;
}

.mob {
  display: none;
}

@media only screen and (max-width: 768px) {
  nav {
    padding-top: 42px;
    padding-right: 28px;
  }

  h1 {
    font-size: 1rem;
    margin-top: -100px;
  }

  .icon-row {
    justify-content: space-evenly;
  }

  .mt-min-xxl {
    margin-top: 0px;
  }

  .desktop {
    display: none;
  }

  .mob {
    display: flex;
  }
}