* {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  background-color: #f2f2f2;
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.fade-in {
  -webkit-animation: fadeIn 2s;
          animation: fadeIn 2s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-scroll {
  opacity: 0;
  -webkit-transition: opacity 500ms ease-in;
  transition: opacity 500ms ease-in;
}

.fade-scroll.appear {
  opacity: 1;
}

.current {
  font-weight: bold;
}

.navigation {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navigation .container {
  width: 90%;
  margin: 10px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.navigation .container .logo {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navigation .container .logo .ISOlogo {
  margin-left: 20px;
  width: 100%;
}

.navigation .container .logo .ISOlogo img {
  width: 25%;
}

.navigation .container .logo a img {
  width: 100px;
}

.navigation .container .mobile {
  width: 50px;
  margin-left: auto;
  /* ANIMATION */
}

.navigation .container .mobile .btn {
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navigation .container .mobile .btn .btn__burger {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navigation .container .mobile .btn .btn__burger::before, .navigation .container .mobile .btn .btn__burger::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navigation .container .mobile .btn .btn__burger::before {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.navigation .container .mobile .btn .btn__burger::after {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.navigation .container .mobile .btn.open .btn__burger {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navigation .container .mobile .btn.open .btn__burger::before {
  -webkit-transform: rotate(45deg) translate(35px, -35px);
          transform: rotate(45deg) translate(35px, -35px);
}

.navigation .container .mobile .btn.open .btn__burger::after {
  -webkit-transform: rotate(-45deg) translate(35px, 35px);
          transform: rotate(-45deg) translate(35px, 35px);
}

.navigation .container .menu {
  width: 50%;
  margin: 0 auto;
  height: 0px;
  overflow: hidden;
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.navigation .container .menu ul li {
  list-style: none;
  margin: 5px 0;
}

.navigation .container .menu ul li a {
  color: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navigation .container .menu ul li a:hover {
  color: #2012c4;
}

.footer {
  color: white;
}

.footer .container {
  background: #152238;
  padding: 50px 0;
  width: 100%;
}

.footer .container .contact-detail {
  width: 90%;
  margin: 0 auto;
}

.footer .container .contact-detail .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .container .contact-detail .detail h3 {
  margin-left: 2rem;
  font-size: 0.8em;
}

@media only screen and (min-width: 770px) {
  .navigation .container .logo {
    width: 50%;
  }
  .navigation .container .logo .ISOlogo {
    margin-left: 20px;
    width: 100%;
  }
  .navigation .container .logo .ISOlogo img {
    width: 13%;
  }
  .navigation .container .mobile {
    display: none;
    width: 0;
  }
  .navigation .container .menu {
    margin: 0;
    overflow: visible;
    height: auto;
  }
  .navigation .container .menu ul {
    width: 90%;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }
  .navigation .container .menu ul li {
    width: 100px;
    margin: 0 10px;
  }
  .footer .container .contact-detail {
    width: 90%;
  }
  .footer .container .contact-detail .detail h3 {
    font-size: 1.2em;
  }
}

body {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#f2f2f2), to(#dcdcdc));
  background-image: linear-gradient(to bottom right, #f2f2f2, #dcdcdc);
}

body .title .container {
  margin: 0 5%;
  margin-top: 100px;
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid black;
}

body .title .container h2 {
  font-size: 1.8em;
}

.clients .container {
  margin: 50px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.clients .container .brands {
  width: 18%;
  margin: 10px 0;
}

.clients .container .brands .logo {
  width: 80%;
  margin: 0 auto;
}

.clients .container .brands .logo img {
  width: 100%;
}

@media only screen and (min-width: 770px) {
  .title .container {
    margin: 0 5%;
    margin-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    border-bottom: 2px solid black;
  }
  .title .container h2 {
    font-size: 2.5em;
  }
}
/*# sourceMappingURL=clients.css.map */