/***** Display *****/
.d--b {
  display: block;
}

.d--n {
  display: none;
}

/* Opcity */
.o--0 {
  opacity: 0;
}

/***** Flex *****/
.jc--c {
  justify-content: center;
}

.ai--c {
  align-items: center;
}

.ai--fs {
  align-items: flex-start;
}

/***** Width *****/
.mw {
  max-width: 645px;
}

.w--100 {
  width: 100%;
}

/***** Position *****/
.p--r {
  position: relative;
}

/***** Align *****/
.ta--c {
  text-align: center;
}

.ta--r {
  text-align: right;
}

/***** Z-index *****/
.zi--1 {
  z-index: 1;
}

/***** Overflow *****/
.o--h {
  overflow: hidden;
}

/***** Borders *****/
.bt--1 {
  border-top: 1px solid;
}
.br--1 {
  border-right: 1px solid;
}
.bb--1 {
  border-bottom: 1px solid;
}
.bl--1 {
  border-left: 1px solid;
}
.bc--white {
  border-color: var(--color--white);
}
.bc--alto {
  border-color: var(--color--alto);
}
.bc--gallery {
  border-color: var(--color--gallery);
}
.bc--shaft-light {
  border-color: var(--color--shaft-light);
}
.br--30 {
  border-radius: 30px;
}
.br--12 {
  border-radius: 12px;
}

/***** Box Shadow *****/
.bs--d {
  box-shadow: rgba(100, 100, 111, 0.1) 0px 6px 15px 0px;
}

/*****  Color *****/
body .c--white {
  color: var(--color--white);
}
body .c--alto {
  color: var(--color--alto);
}
body .c--red {
  color: var(--color--red);
}
body .c--red-light {
  color: var(--color--red-light);
}

/*****  Fill *****/
.fill--white {
  fill: var(--color--white);
}

/*****  Bg *****/
.bg--i {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg--white {
  background-color: var(--color--white);
}
.bg--gallery {
  background-color: var(--color--gallery);
}
.bg--shaft {
  background-color: var(--color--shaft);
}

/*****  Font Size *****/
.fz--s {
  font-size: 0.9rem;
  line-height: 1.4;
}
.fz--b {
  font-size: 1.09rem;
}
.fz--vb {
  font-size: 1.27rem;
  line-height: 1.3;
}

/***** Font Style *****/
.fs--i {
  font-style: italic;
}

/***** Font Weight *****/
.fw--300 {
  font-weight: 300;
}

.fw--400 {
  font-weight: 400;
}

.fw--500 {
  font-weight: 500;
}

.fw--600 {
  font-weight: 600;
}

.fw--700 {
  font-weight: 700;
}

.fw--800 {
  font-weight: 800;
}

.fw--900 {
  font-weight: 900;
}

/***** Text *****/
.td--n {
  text-decoration: none;
}
.ts--1 {
  text-shadow: 1px 1px var(--color--shaft);
}
.tt--u {
  text-transform: uppercase;
}

/***** Line Height *****/
.lh--1 {
  line-height: 1;
}

.lh--1-1 {
  line-height: 1.1;
}

/***** Padding *****/
body .pb--0 {
  padding-bottom: 0;
}

body .pt--0 {
  padding-top: 0;
}

/***** Marigin *****/
.mlr--a {
  margin-left: auto;
  margin-right: auto;
}

.mb--s {
  margin-bottom: 15px;
}

.mb--d {
  margin-bottom: 26px;
}

.mb--b {
  margin-bottom: 38px;
}

.mb--sec {
  margin-bottom: 62px;
}

.mt--s {
  margin-top: 15px;
}

.mt--d {
  margin-top: 26px;
}

.mt--b {
  margin-top: 38px;
}

.mt--sec {
  margin-top: 62px;
}

/* Screen Readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 600px) {

  /***** Font Size *****/
  .fz--b {
    font-size: 1.12rem;
  }
  .fz--vb {
    font-size: 1.4rem;
  }
}

@media (min-width: 825px) {

  /***** Marigin *****/
  .mb--sec {
    margin-bottom: 74px;
  }

  .mt--sec {
    margin-top: 74px;
  }
}

@media (min-width: 1250px) {

  /***** Width *****/
  .mw {
    max-width: 844px;
  }

  /***** Font Size *****/
  .fz--s {
    font-size: 0.94rem;
  }
  .fz--b {
    font-size: 1.27rem;
  }
  .fz--vb {
    font-size: 2rem;
  }

  /***** Marigin *****/
  .mb--s {
    margin-bottom: 22px;
  }

  .mb--d {
    margin-bottom: 36px;
  }

  .mb--b {
    margin-bottom: 60px;
  }

  .mb--sec {
    margin-bottom: 96px;
  }

  .mt--s {
    margin-top: 22px;
  }

  .mt--d {
    margin-top: 36px;
  }

  .mt--b {
    margin-top: 60px;
  }

  .mt--sec {
    margin-top: 96px;
  }
}

@media (min-width: 1600px) {

  /***** Width *****/
  .mw {
    max-width: 870px;
  }

  /***** Marigin *****/
  .mb--sec {
    margin-bottom: 120px;
  }

  .mt--sec {
    margin-top: 120px;
  }
}