body {
  margin: 0px;
  padding: 0px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

nav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul {
  margin: 0px;
  padding: 0px;
  overflow: scroll;
  white-space: nowrap;
  padding: 0px 16px;
  -webkit-overflow-scrolling: touch;
}

nav li {
  padding: 27px 10px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

nav li:first-child {
  padding-left: 0px;
}

nav li a {
  text-decoration: none;
  color: #bababa;
}

h1 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 8px;
}

h4 strong {
  font-weight: 600;
}

h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 10px 0px;
}

h2 strong {
  font-weight: 500;
}

p {
  font-size: 14px;
}

.bespoke h1, .bespoke h4, .bespoke h2, .bespoke p {
  text-align: center;
}

h1.title {
  margin-top: 0;
  padding-bottom: 60px;
}

h4:first-of-type {
  padding-top: 2px;
}

h4.price {
  padding-bottom: 28px;
  padding-top: 16px;
}

a.close img {
  height: 38px;
  width: 38px;
}

a.close {
  position: fixed;
  top: 4px;
  left: 4px;
}

.feature {
  text-align: center;
  width: 35%;
  padding-bottom: 10px;
}

.feature p {
  margin-top: 4px;
}

.feature img {
  height: 44px;
  width: 44px;
}

.bespoke .row {
  flex-wrap: wrap;
  padding-bottom: 10px;
}

img.gradient {
  width: 100%;

  animation: spin 10s infinite linear;
}

.gradient-container {
  overflow-x: hidden;
  width: 100%;
  height: 500px;
  position: absolute;
  top: -193.5px;
  left: 0;
  z-index: -1;
}

h4:first-of-type {
  padding-top: 60px;
  margin-top: 0;
}

#navbar {
  position: fixed;
  background-color: rgba(255,255,255,0.95);
  text-align: center;
  width: 100%;
  height: 44px;
  top: 0;
  opacity: 1;
  transition-duration: 0.2s;
}

#navbar span {
  font-size: 17px;
  font-weight: 600;
}

#navbar span {
  display: block;
  margin: 0;
  padding-top: 12px;
}

#navbar.hide {
  opacity: 0;
}

@keyframes spin {
    0%{
    -moz-transform: rotateZ(0deg) scale(1.12);
    -webkit-transform: rotateZ(0deg) scale(1.12);
    -o-transform: rotateZ(0deg) scale(1.12);
    -ms-transform: rotateZ(0deg) scale(1.12);
    }
    100%{
    -moz-transform: rotateZ(360deg) scale(1.12);
    -webkit-transform: rotateZ(360deg) scale(1.12);
    -o-transform: rotateZ(360deg) scale(1.12);
    -ms-transform: rotateZ(360deg) scale(1.12);
    }
}

a.apply {
  display: block;
  padding: 14px 0;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  border-radius: 10px;
  background: black;
  font-size: 19px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  margin-bottom: 20px;
}

.content {
  padding-top: 20px;
  padding-bottom: 64px;
}

.content h2 {
  font-size: 34px;
  font-weight: bold;
  color: #000;
  padding: 0px 16px;
  margin: 34px 0px 30px 0px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 36px;
}

.row .card {
  width: 126px;
  height: 251px;
  background: #fff;
  border-radius: 6px 6px 0px 0px;
  box-shadow: 0px 4px 34px #D8D9E0;
  margin: 0px 12px;
  overflow: hidden;
}

.row .card .top p {
  font-size: 11px;
  color: #bababa;
  text-align: center;
  padding: 7px 8px;
  margin: 0px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.row .card img {
  width: 100%;
  display: block;
}

.card {
  transition: all .1s ease-in-out;
}

.card:active {
  transform: scale(0.9);
}

@media only screen and (max-width : 320px) {
  .bespoke h1 {
    font-size: 35px;
  }
  @keyframes spin {
      0%{
      -moz-transform: rotateZ(0deg) scale(1.2);
      -webkit-transform: rotateZ(0deg) scale(1.2);
      -o-transform: rotateZ(0deg) scale(1.2);
      -ms-transform: rotateZ(0deg) scale(1.2);
      }
      100%{
      -moz-transform: rotateZ(360deg) scale(1.2);
      -webkit-transform: rotateZ(360deg) scale(1.2);
      -o-transform: rotateZ(360deg) scale(1.2);
      -ms-transform: rotateZ(360deg) scale(1.2);
      }
  }
  .gradient-container {
    top: -160px;
  }
  h1.title {
    padding-bottom: 40px
  }
}

@media only screen and (min-width: 374px) {
  .row .card {
    width: 136px;
    height: 269px;
    margin: 0px 15px;
  }

  #navbar {
    display: none;
  }
}

@media only screen and (min-width: 413px) {
  .row .card {
    width: 146px;
    height: 287px;
    margin: 0px 18px;
  }

  .bespoke h1 {
    font-size: 46px;
  }

  .bespoke .row {
    padding-bottom: 35px;
  }

  .bespoke h2 {
    font-size: 28px;
  }

  .bespoke h4:first-of-type {
    padding-top: 65px;
  }

  @keyframes spin {
      0%{
      -moz-transform: rotateZ(0deg) scale(1.11);
      -webkit-transform: rotateZ(0deg) scale(1.11);
      -o-transform: rotateZ(0deg) scale(1.11);
      -ms-transform: rotateZ(0deg) scale(1.11);
      }
      100%{
      -moz-transform: rotateZ(360deg) scale(1.11);
      -webkit-transform: rotateZ(360deg) scale(1.11);
      -o-transform: rotateZ(360deg) scale(1.11);
      -ms-transform: rotateZ(360deg) scale(1.11);
      }
  }

  .gradient-container {
    top: -214px;
  }

  h1.title {
    padding-bottom: 70px
  }

  #navbar {
    display: none;
  }
}
