/*Gorgeous Contrast*/
/*$color1: #61892f;
$color2: #86c232;
$color3: #222629;
$color4: #474b45;
$color5: #6b6e70;
$color6: #8f56c4; 

/*Accents*/
/*$color1: #faed26;
$color2: #46344e;
$color3: #5a5560;
$color4: #9d8d8f;
$color5: #9b786f;
$color6: #9ac983; */
/*Clean and Modern*/
/*Fonts*/
* {
  position: relative;
  font-family: "open sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  font-family: "open sans", sans-serif;
  margin: 0px;
  padding: 0px;
  min-width: 320px;
}

html {
  background-color: #17252a;
}

body {
  max-width: 1600px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
}

.background-white {
  background-color: white;
}

.margin-top-20px {
  margin-top: 20px;
}

.margin-bottom-30px {
  margin-bottom: 30px;
}

.padding-top-100px {
  padding-top: 100px;
}

.width-100 {
  width: 100%;
}

.navbar {
  width: 100%;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  z-index: 10000;
  padding-bottom: 4px;
  max-width: 1600px;
  background-color: #000000a3;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}

.cid {
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  border-bottom: 1px solid white;
  padding-left: 5px;
  margin-left: 5px;
}

.cid-h2 {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

.navbar .navigation {
  max-width: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu-container {
  width: 100%;
  height: 40px;
}

.menu {
  width: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 50px;
  margin-right: 10px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu ul {
  position: absolute;
  right: -60px;
  top: 18px;
  width: 100vw;
  list-style: none;
  padding: 0px;
  margin: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  z-index: 1000;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(-300%, 0);
          transform: translate(-300%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  height: calc(100vh - 32px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
}

.menu input:checked ~ ul {
  -webkit-transform: none;
          transform: none;
  padding: 10px;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.menu ul li {
  display: block;
}

.menu ul li a {
  text-decoration: none;
  color: white;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  padding-top: 15px;
  padding-bottom: 16px;
  width: 100%;
}

.menu ul li a:last-child {
  border-bottom: none;
}

.menu ul li a:hover {
  color: #d94a4c;
}

.hamburger {
  display: inline-block;
  position: relative;
  top: 21px;
}

.hamburger input {
  display: inline-block;
  width: 110px;
  height: 40px;
  position: absolute;
  top: -18px;
  left: 0px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
  margin: 0;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 40px;
  height: 7px;
  margin-bottom: 5px;
  position: absolute;
  background: #ffffff;
  z-index: 1;
  -webkit-transform-origin: 3px -1px;
          transform-origin: 3px -1px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  left: 10px;
  top: -12px;
}

.hamburger span:first-child {
  top: 0px;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
  top: 12px;
}

.hamburger span:nth-last-child(3) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  top: 0px;
}

.hamburger input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(3px, -5px);
          transform: rotate(45deg) translate(3px, -5px);
  background: white;
}

/*
* But let's hide the middle one.
*/
.hamburger input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

/*
* Ohyeah and the last one should go the other direction
*/
.hamburger input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
          transform: rotate(-45deg) translate(0px, 0px);
}

.menu-h5 {
  color: white;
  font-weight: 100;
  font-size: 16px;
  position: absolute;
  left: 48px;
  top: -23px;
}

@media (min-width: 1000px) {
  .cid {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 337px;
            flex: 1 1 337px;
   
    background: unset;
    border: unset;
   
  }
  .cid-h2 {
    width: auto;
    font-size:20px;
  }
  .navbar .navigation {
    max-width: 100%;
    border: 0;
  }
  .hamburger {
    top: 0;
  }
  .hamburger input, .hamburger span {
    display: none;
  }
  .menu {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    align-items: center;
  }
  .menu ul {
    position: relative;
    top: 0;
    right: 10px;
    list-style: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -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;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    background-color: unset;
    height: auto;
  }
  .menu ul li {
    margin-right: 30px;
  }
  .menu ul li a {
    border-bottom: 0;
  }
  .menu ul li {
    display: inline;
  }
  .menu ul li a {
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
  }
  .menu ul li a:hover {
    color: #d94a4c;
  }
  .menu-h5 {
    display: none;
  }
}

.contact-block {
  width: 100%;
  background-color: #474141;
  padding-top: 20px;
  padding-bottom: 30px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer .contact-block {
  background-color: unset;
  max-width: 359px;
}

.contact-block-h2, .contact-block-h3 {
  color: white;
  margin: 0;
  padding: 0;
  text-align: center;
}

.contact-block-h2 {
  font-weight: 800;
  font-size: 30px;
}

.contact-block-h3 {
  font-weight: 400;
}

.contact-block-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-block-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 170px;
  height: 56px;
  border-radius: 28px;
  background-color: #469123;
  color: white;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  border: none;
  margin-left: 10px;
}

.material-icons {
  width: 24px;
  margin-right: 5px;
}

.material-icons img {
  width: 100%;
}

.btn-red {
  background-color: #ca3131;
}

.btn-blue {
  background-color: #3a9797;
}

.portfolio {
  width: 98%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: white;
  margin-top: 80px;
  margin-bottom: 50px;
}

.portfolio-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 48px;
  color: #555;
  text-align: center;
}

.portfolio-images-container {
  width: 100%;
  background-color: white;
  padding: 10px;
  margin-bottom: 20px;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.portfolio-image-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 360px;
          flex: 1 1 360px;
  margin: 30px;
  background-color: white;
  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;
}

.portfolio-image {
  width: 100%;
  -webkit-box-shadow: 5px 5px 5px #5555;
          box-shadow: 5px 5px 5px #5555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.portfolio-image img {
  width: 100%;
  border: 5px solid #ce9b48ab;
  padding: 8px;
}

@media (max-width: 450px) {
  .portfolio {
    width: 100%;
  }
  .portfolio-images-container {
    padding: 0px;
  }
  .portfolio-image-card {
    margin: 10px;
  }
}

.footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: white;
  border-top: 1px solid white;
  background-color: #474141;
}

.footer .col-3 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 280px;
          flex: 1 1 280px;
}

.footer .h4 {
  font-weight: 600;
  color: white;
  font-size: 20px;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: white;
}

html {
  width: 100%;
  height: 100%;
  background-color: white;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  max-width: 1600px;
  margin-top: 0;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  min-width: 350px;
}

.maincontainer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.hero {
  width: 100%;
  min-height: 95vh;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 80px;
  margin-bottom: 80px;
  max-width: 360px;
}

.hero .title {
  color: #707f8a;
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;
  width: 90%;
  line-height: 50px;
}

.hero .blurb {
  width: 90%;
  font-size: 19px;
  text-transform: lowercase;
  color: #707f8a;
  font-weight: 600;
  margin-top: 6px;
}

.hero-text, .hero-images {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 320px;
          flex: 1 1 320px;
}

.hero-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-image-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 320px;
          flex: 1 1 320px;
  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;
}

.hero-image-container img {
  width: 100%;
}

.all-text-inner {
  max-width: 600px;
}

.belowfold {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -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;
  max-width: 500px;
}

.img-container {
  width: 100%;
  border: 5px solid #ce9b48ab;
  padding: 8px;
  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;
  z-index: 2;
}

.img-container img {
  width: 100%;
}

.container .h2 {
  color: #665942;
  text-transform: uppercase;
  font-size: 63px;
  line-height: 54px;
  padding: 0;
  margin: 0;
  margin-top: 0px;
  margin-left: 0px;
  margin-top: 10px;
  margin-left: 0px;
  max-width: 400px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.container .h2.smaller-h2 {
  font-size: 38px;
  line-height: 31px;
}

.container .h2.mid-h2 {
  font-size: 50px;
}

.container .h3 {
  color: #665942;
  font-size: 48px;
}

.lead-sentence {
  font-weight: 600;
}

.text-block {
  width: 90%;
}

.text-block a {
  color: #c74b4b;
  font-weight: 600;
  font-size: 17px;
}

.text-block a:hover {
  color: #17252a;
}

.text-container {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.header-h2 {
  font-size: 10vw;
  color: #665942;
  font-weight: 800;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #665942;
  margin-bottom: 30px;
  margin-top: 30px;
}

.text-container-header {
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: #888;
}

.text-container p {
  color: #555;
}

.minigallery {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mg-img-container {
  width: 70%;
  background-color: white;
  border: 5px solid #ce9b48ab;
  padding: 10px;
  bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 280px;
          flex: 1 1 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mg-img-container img {
  width: 100%;
}

.fit-in {
  font-size: 43px;
}

.sb-header {
  font-size: 20px;
  color: #434994;
  font-weight: 400;
}

.contact-container {
  width: 95%;
  margin-bottom: 30px;
}

.contact-container-h2 {
  color: #665942;
  font-size: 20px;
}

.flex-center {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.contact-container a {
  color: white;
}

.contact-container .text-block {
  width: 100%;
}

.signup-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  width: 100%;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 10px;
  height: 50px;
  color: #555;
  border: 1px solid #665942;
}

.textarea {
  height: 250px;
}

.font-49px {
  font-size: 49px !important;
  line-height: 47px !important;
}

.price-list-header {
  width: 100%;
  min-height: 50vh;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.price-list-header .h1 {
  color: #555;
  padding-left: 20px;
  font-size: 56px;
  width: 100%;
  text-align: center;
}

.price-list-opening {
  padding: 30px;
  background-color: white;
  max-width: 360px;
  margin-bottom: 50px;
}

.price-list {
  margin-bottom: 40px;
}

.price-list-container {
  width: 100%;
}

.price-list-table {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.table-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}

.table-row:nth-child(even) {
  background-color: #cbebe9;
}

.table-h, .table-c {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 240px;
          flex: 1 1 240px;
  font-size: 15px;
}

.table-h {
  font-weight: 600;
}

.table-c {
  font-weight: 400;
}

.container .h4 {
  color: #665942;
  font-weight: 400;
  font-size: 24px;
}

@media (min-width: 500px) {
  .header-h2 {
    font-size: 51px;
  }
}

@media (min-width: 600px) {
  .hero {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-height: 80vh;
    padding-top: 100px;
  }
  .hero-text {
    margin-left: 30px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .fit-in {
    font-size: 48px;
    line-height: 66px;
    width: 100%;
  }
  .container {
    width: 600px;
    padding: 60px;
    margin: 50px;
    max-width: unset;
  }
  .container.max-width {
    width: 100%;
  }
  .container .h2.mid-h2 {
    font-size: 70px;
    line-height: 54px;
  }
  .container .h2.smaller-h2 {
    font-size: 57px;
    line-height: 47px;
  }
}
/*# sourceMappingURL=styles.css.map */