
/* CSS Guide:

- Indent using 2 spaces
- Write media queries right after the original selector and extra indent it
- Use classes for everything and leave tag selectors only for scopes
- Continue the same formatting style and keep it clean

*/


/* BUG FIXES
** ========================================================================== */

/* Fix Windows Phone 8 and Device-Width
  --------------------------------------------------------------------------- */

  /* http://timkadlec.com/2013/01/windows-phone-8-and-device-width */

  @-webkit-viewport   { width: device-width; }
  @-moz-viewport      { width: device-width; }
  @-ms-viewport       { width: device-width; }
  @-o-viewport        { width: device-width; }
  @viewport           { width: device-width; }
/* Bring back Google maps UI controls
  --------------------------------------------------------------------------- */

  /*
  #google-map img {
    max-width: none;
    width: auto;
  }
  */


/* FONTS
** ========================================================================== */

/* eponymous
  --------------------------------------------------------------------------- */

  @font-face {
    font-family: 'eponymous';
    src: url('../assets/eponymous-regular-webfont.woff') format('woff'),
         url('../assets/eponymous-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }

/* lato
  --------------------------------------------------------------------------- */

  @font-face {
    font-family: 'lato';
    src: url('../assets/lato-bold-webfont.woff') format('woff'),
         url('../assets/lato-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'lato';
    src: url('../assets/lato-bolditalic-webfont.woff') format('woff'),
         url('../assets/lato-bolditalic-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
  }

  @font-face {
    font-family: 'lato';
    src: url('../assets/lato-italic-webfont.woff') format('woff'),
         url('../assets/lato-italic-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
  }

  @font-face {
    font-family: 'lato';
    src: url('../assets/lato-regular-webfont.woff') format('woff'),
         url('../assets/lato-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }


/* SCOPES
** ========================================================================== */

/* Default scope
  --------------------------------------------------------------------------- */

  html {
    background: #ffffff;
  }

  body {
    padding-top: 50px;
    min-width: 320px;
    font-family: 'lato', 'Helvetica Neue', Helvetica, arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #241b09;
    background: #e2d5cc;
  }

    @media (min-width: 768px) {
      body {
        padding-top: 100px;
      }
    }

  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: inherit;
  }

  p {
    margin-bottom: 0;
  }

  strong, b {
    font-weight: 700;
    font-style: normal;
  }

  i, em {
    font-weight: 400;
    font-style: italic;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  a:focus,
  a:hover,
  a:active {
    color: inherit;
    text-decoration: none;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  ol {
    margin: 0;
    padding: 0;
  }

  blockquote {
  }

  img {
    display: inline-block;
    max-width: 100%;
    height: auto;
  }

  table {
    width: 100%;
  }

  tr {
  }

  th {
  }

  td {
  }


/* HEADER
** ========================================================================== */

/* Top
 * -------------------------------------------------------------------------- */

.top {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}

  @media (min-width: 768px) {
    .top {
      height: 100px;
    }
  }

/* Header
 * -------------------------------------------------------------------------- */

.header {
  position: relative;
  z-index: 2001;
  width: 100%;
  height: 100%;
  background: url('../images/red-pattern.png') bottom left repeat-x #fff;
  padding-bottom: 8px;
  padding-top: 0;
  -webkit-box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0px 7px 0px rgba(0, 0, 0, 0.3);
}

  @media (min-width: 768px) {
    .header {
      padding-top: 45px;
    }
  }

.header__logo {
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

  @media (min-width: 768px) {
    .header__logo {
      text-align: center;
      height: 1px;
      overflow: visible;
      margin-top: 0;
    }
  }

.header__nav {
  display: none;
}

  @media (min-width: 768px) {
    .header__nav {
      display: block;
      position: relative;
      z-index: 1;
      margin-top: 1px;
    }
  }

  @media (min-width: 992px) {
    .header__nav {
      margin-top: 2px;
    }
  }

.header__burger {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
}

  @media (min-width: 768px) {
    .header__burger {
      display: none;
    }
  }

.header__lang {
}


/* Brand
 * -------------------------------------------------------------------------- */

.brand {
  display: inline-block;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;
}

.brand__link {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  color: #9a2400;
  text-transform: uppercase;
  cursor: pointer;

  -webkit-transition: color .15s ease, border .15s ease;
  -moz-transition: color .15s ease, border .15s ease;
  transition: color .15s ease, border .15s ease;
}

  @media(min-width: 992px) {
    .brand__link {
      font-size: 21px;
      line-height: 25px;
    }
  }

  @media(min-width: 992px) {
    .brand__link {
      font-size: 25px;
      line-height: 30px;
    }
  }

.brand__link:focus,
.brand__link:hover
.brand__link:active {
  color: #2e2b25;
}


/* Menu
 * -------------------------------------------------------------------------- */

.menu {
  text-align: right;
  width: 100%;
  padding-right: 95px;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;

}

  @media(min-width: 992px) {
    .menu {
      padding-right: 120px;
    }
  }

.menu--right {
  text-align: left;
  padding-left: 95px;
  padding-right: 0;
}

  @media(min-width: 992px) {
    .menu--right {
      padding-left: 120px;
    }
  }

.menu__item {
  display: inline-block;
  margin: 0 10px;
}

  @media(min-width: 992px) {
    .menu__item {
      margin: 0 16px;
    }
  }

.menu__link {
  font-size: 16px;
  line-height: 1.2;
  color: #9a2400;
  text-transform: uppercase;
  border-bottom: solid 2px transparent;
  cursor: pointer;

  -webkit-transition: color .15s ease, border .15s ease;
  -moz-transition: color .15s ease, border .15s ease;
  transition: color .15s ease, border .15s ease;
}

.menu__link:focus,
.menu__link:hover,
.menu__link:active {
  color: #2e2b25;
}

.menu__item--active .menu__link {
  color: #2e2b25;
  border-bottom-color: #dad3cd;
}


/* Wrapper
 * -------------------------------------------------------------------------- */

.wrapper {
  position: relative;
  z-index: 2;
}

  @media(min-width: 768px) {
    .wrapper {
      min-height: 600px;
      min-height: 80vh;
    }
  }

  .page-landing .wrapper {
    display: table;
    width: 100%;
  }

.wrapper:before {
  content: '';
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 45%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0) 100%);
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 45%,rgba(255,255,255,0.5) 55%,rgba(255,255,255,0) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 45%,rgba(255,255,255,0.5) 55%,rgba(255,255,255,0) 100%);
}

  @media (min-width: 768px) {
    .wrapper {
      margin-top: -100px; /* same as header height */
      padding-top: 100px; /* same as header height */
      padding-bottom: 100px; /* same as .footer__groups margin-top */

      background-image: url('../images/background-min.jpg');
      background-repeat: no-repeat;
      background-size: 100% auto;
      background-position: 50% 100%;
    }
  }

  @media (min-width: 992px) {
    .wrapper {
      padding-bottom: 135px; /* same as .footer__groups margin-top */
    }
  }

  @media (min-width: 1200px) {
    .wrapper {
      padding-bottom: 160px; /* same as .footer__groups margin-top */
    }
  }

/* content
 * -------------------------------------------------------------------------- */

.content {
  position: relative;
  z-index: 5;
  padding: 20px 0 45px;
}

  @media (min-width: 768px) {
    .content {
      padding: 30px 0 75px;
    }
  }

  .page-landing .content {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
  }

    @media (min-width: 768px) {
      .page-landing .content {
        padding-bottom: 45px;
      }
    }

/* intro
 * -------------------------------------------------------------------------- */

.intro {
  display: inline-block;
  padding: 70px 0 45px;
  font-size: 24px;
  line-height: 1.4;
  color: #241b09;
  font-weight: 400;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;
  text-align: center;
}

  @media(min-width: 768px) {
    .intro {
      padding: 80px 0 65px;
      font-size: 30px;
      line-height: 1.4;
    }
  }

/* footer
 * -------------------------------------------------------------------------- */

.footer {
  position: relative;
  color: #e2d7d0;
  background: #2e2b25;

  -webkit-box-shadow: inset 0px 18px 10px -10px rgba(0,0,0,0.75);
  -moz-box-shadow: inset 0px 18px 10px -10px rgba(0,0,0,0.75);
  box-shadow: inset 0px 12px 12px -12px rgba(0,0,0,0.6);
}

  @media (min-width: 768px) {
    .footer {
      min-height: 20vh;
    }
  }


.footer:before {
  content: '';
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url('../images/borwn-pattern.png') top left repeat-x;
}

.footer__groups {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 15px;
}

  @media (min-width: 768px) {
    .footer__groups {
      padding-top: 0;
      margin-top: -100px;
    }
  }

  @media (min-width: 992px) {
    .footer__groups {
      margin-top: -135px;
    }
  }

  @media (min-width: 1200px) {
    .footer__groups {
      margin-top: -160px;
    }
  }

.footer__groups .row {
  margin-left: -6px;
  margin-right: -6px;
}

.footer__groups [class*="col-"] {
  padding-left: 6px;
  padding-right: 6px;
}

.footer__text {
  padding: 30px 0 20px;
  text-align: center;
  font-size: 13px;
  color: #787164;
}

.footer__text a {
  border-bottom: solid 1px #4a453c;
  -webkit-transition: color .15s ease, border .15s ease;
  -moz-transition: color .15s ease, border .15s ease;
  transition: color .15s ease, border .15s ease;
}

.footer__text a:focus,
.footer__text a:hover,
.footer__text a:active {
  color: #e2d7d0;
  border-bottom-color: #4a453c;
}


/* bottom
 * -------------------------------------------------------------------------- */

.bottom {
  margin-top: 25px;
}

  @media (min-width: 768px) {
    .bottom {
      margin-top: 0;
    }
  }

.bottom__link {
  display: block;
  -webkit-transition: -webkit-transform .15s ease;
  transition: -webkit-transform .15s ease;
  transition: transform .15s ease;
  transition: transform .15s ease, -webkit-transform .15s ease;
}

  @media (min-width: 768px) {
    .bottom__link:hover {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);    }
  }

.bottom__heading {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 10px;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #e2d7d0;
}

  @media(min-width: 768px) {
    .bottom__heading {
      font-size: 18px;
      color: #9a2400;
    }
  }
  
  @media(min-width: 992px) {
    .bottom__heading {
      font-size: 21px;
    }
  }

.bottom__background {
  display: block;
  height: 0;
  padding-bottom: 66%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-size: cover;
  background-position: center center;
}

.bottom__photo {
  opacity: 0;
}

.bottom__cta {
  position: relative;
  padding: 12px 25px 12px 10px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
  color: #e2d7d0;
  text-transform: uppercase;
  background: #1b1914;

  -webkit-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px -3px rgba(0, 0, 0, 0.3);
}

  @media (min-width: 768px) {
    .bottom__cta {
      padding: 12px 25px 12px 15px;
      font-size: 10px;
    }
  }

  @media (min-width: 992px) {
    .bottom__cta {
      font-size: 11px;
    }
  }

.bottom__cta:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  margin-right: -3px;
  border-top: solid 1px #e2d7d0;
  border-right: solid 1px #e2d7d0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* cms-scope
 * -------------------------------------------------------------------------- */

.cms-scope {
  font-size: 16px;
  color: #241b09;
  line-height: 1.4;
  font-weight: 400;
}

  @media (min-width: 768px) {
    .cms-scope {
      font-size: 18px;
      line-height: 1.5;
    }
  }

.cms-scope p {
  margin-bottom: 25px;
}

.cms-scope h1,
.cms-scope h2,
.cms-scope h3,
.cms-scope h4 {
  margin: 35px 0 35px;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;
  line-height: 1.2;
  font-weight: 400;
  clear: both;
}

.cms-scope h1 {
  position: relative;
  display: block;
  font-size: 23px;
  text-align: center;
  color: #241b09;
}

.cms-scope--half h1 {
  text-align: left;
}

  @media (min-width: 768px) {
    .cms-scope h1 {
      font-size: 26px;
    }
  }

.cms-scope h1:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: -5px;
  left: 50%;
  margin-left: -25px;
  background: #9a2400;
}

.cms-scope--half h1:after {
  left: 0;
  margin-left: 0;
}

.cms-scope h2 {
  position: relative;
  font-size: 19px;
  color: #241b09;
  text-align: center;
}

.cms-scope--half h2 {
  text-align: left;
}

  @media (min-width: 768px) {
    .cms-scope h2 {
      font-size: 21px;
    }
  }

.cms-scope h2:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  bottom: -5px;
  left: 50%;
  margin-left: -25px;
  background: #9a2400;
}

.cms-scope--half h2:after {
  left: 0;
  margin-left: 0;
}

.cms-scope h3 {
  text-align: center;
  font-size: 21px;
  color: #9a2400;
  text-transform: uppercase;
}

.cms-scope--half h3 {
  text-align: left;
}

  @media (min-width: 768px) {
    .cms-scope h3 {
      font-size: 24px;
    }
  }

.cms-scope ul {
  list-style: none;
  padding-left: 32px;
}

.cms-scope ul li  {
  position: relative;
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.2;
}

  @media (min-width: 768px) {
    .cms-scope ul li {
      font-size: 17px;
    }
  }

.cms-scope ul li:before {
  content: '\2022';
  position: absolute;
  top: 0;
  left: -24px;
  display: inline-block;
  width: auto;
  font-size: inherit;
  line-height: inherit;
  font-family: arial, sans-serif;
  text-align: left;
  color: #9a2400;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}

.cms-scope ol {
  padding-left: 32px;
}

.cms-scope ol li  {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.2;
}

  @media (min-width: 768px) {
    .cms-scope ol li {
      font-size: 17px;
    }
  }

.cms-scope ul ul,
.cms-scope ul ol,
.cms-scope ol ul,
.cms-scope ol ol {
  margin-bottom: 16px;
}

.cms-scope a {
  color: #9a2400;
  border-bottom: solid 1px transparent;
  -webkit-transition: border .15s ease;
  -moz-transition: border .15s ease;
  transition: border .15s ease;
}

.cms-scope a:focus,
.cms-scope a:hover,
.cms-scope a:active {
  color: #9a2400;
  border-bottom: solid 1px #9a2400;
}

.cms-scope .edys-gallery-area a {
  border-bottom: 0 none !important;
}

.cms-scope img {
  max-width: 100%;
  height: auto;
  float: left;
  margin: 16px 0
}

  @media (min-width: 768px) {
    .cms-scope img {
      float: left;
      margin: 8px 16px 8px 0;
      max-width: 40%;
    }
  }

.cms-scope .edys-gallery-area img {
  float: none;
  margin: 0;
  max-width: none;
}

.cms-scope table {
  margin-bottom: 25px;
}


/* side-menu
 * -------------------------------------------------------------------------- */

.side-menu {
  position: relative;
  padding: 30px 30px 30px 0;
}

.side-menu:before {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  width: 40px;
  box-shadow: -10px 0 30px -15px rgba(0, 0, 0, 0.45);
}

.side-menu__item {
  display: block;
  margin: 20px 0;
  font-size: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;
  font-weight: 400;
}

.side-menu__item:first-of-type {
  margin-top: 0;
}

.side-menu__link {
  color: #9a2400;
}

.side-menu__link:focus,
.side-menu__link:hover,
.side-menu__link:active {
  color: #2e2b25;
}

.side-menu__item--active .side-menu__link {
  color: #2e2b25;
}

.side-menu__sub-list {
  margin: 15px 0 30px 12px;
}

.side-menu__sub-item {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
  text-transform: none;
  font-family: 'lato', 'Helvetica Neue', Helvetica, arial, sans-serif;
  font-weight: 400;
}

.side-menu__sub-link {
  position: relative;
  display: inline-block;
  padding: 5px 8px;
  color: #241b09;
}

.side-menu__sub-link:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  bottom: 3px;
  width: 2px;
  background: #9a2400;
  opacity: 0;

  transform: translateX(2px);
  transition: opacity .2s ease, transform .2s ease;
}

.side-menu__sub-link:focus:before,
.side-menu__sub-link:hover:before,
.side-menu__sub-link:active:before {
  transform: translateX(0);
  opacity: 1;
}

.side-menu__sub-item--active .side-menu__sub-link {
  color: #fff;
  background: #9a2400;
}

/* element-header
 * -------------------------------------------------------------------------- */

.element-header {
  margin: 25px 0 40px;
  text-align: left;

}

.element-header__heading {
  position: relative;
  margin: 0;
  display: inline;
  font-size: 23px;
  line-height: 1.2;
  color: #241b09;
  font-weight: 400;
  font-family: 'eponymous', 'Helvetica Neue', Helvetica, arial, sans-serif;
  text-align: left;
}

@media (min-width: 768px) {
  .element-header__heading {
    font-size: 26px;
  }
}

.element-header__heading:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #9a2400;
}

/* tree
 * -------------------------------------------------------------------------- */

.tree {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #241b09;
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 40px;
}

.tree__table {
  table-layout: fixed;
  border: 0 none;
  padding: 0;
  margin: 0;
  border-collapse: collapse;
  min-width: 470px;
  font-size: 14px;
  line-height: 1.2;
  color: #241b09;
  text-align: center;
}

.tree__table td {
  position: relative;
  width: 25%;
  text-align: center;
  vertical-align: middle;
  padding: 15px 5px;
}

.tree__row--main td {
  padding: 0 5px;
}

.tree__table td:nth-child(even):before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-left: -50%;
  height: 2px;
  background: #9a2400;
}

.tree__row--main ~ tr td:nth-child(even):before {
  bottom: auto;
  top: 0;
}

.tree__table td:nth-child(even):after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0%;
  margin-left: -5px;
  height: 2px;
  border-top: solid 5px #9a2400;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
}

.tree__row--main ~ tr td:nth-child(even):after {
  bottom: auto;
  top: -4px;
  border-bottom: solid 5px #9a2400;
  border-top: 0 none;
}

.tree__inner:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  height: 10px;
  background: #9a2400;
}

.tree__row--main ~ tr .tree__inner:before {
  bottom: auto;
  top: 0;
}

.tree__table td[colspan="4"] .tree__inner:before {
  display: none;
}

.tree__inner--main {
  position: relative;
  display: inline-block;
  width: auto;
  font-weight: 700;
  color: #fff;
  padding: 15px 30px;
  background: #2e2b25;
  border-radius: 2px;
}

.tree__inner--main:before,
.tree__inner--main:after {
  content: '';
  display: block !important;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  bottom: auto;
  top: -1px;
  left: 50%;
  right: auto;
  position: absolute;
  z-index: 1;
  border-top: solid 5px #eee6e0;
  border-left: solid 5px transparent;
  border-right: solid 5px transparent;
  margin-left: -5px;
  background: transparent;
}

.tree__inner--main:after {
  top: auto;
  bottom: -1px;
  border-top: 0 none;
  border-bottom: solid 5px #eee6e0;
}



/* profile-photo
 * -------------------------------------------------------------------------- */

.profile-photo {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .profile-photo {
    margin-bottom: 0;
  }
}


/* details
 * -------------------------------------------------------------------------- */

.details {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #241b09;
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 25px;
}

.details__table {
  table-layout: fixed;
  border: 0 none;
  padding: 0;
  margin: 0;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.2;
  color: #241b09;
  text-align: left;
}

.details__table td {
  text-align: left;
  vertical-align: top;
  border-bottom: solid 1px #cbc1b9;
  padding: 5px 5px 5px 0;
}

.details__table td:first-of-type {
  width: 40%;
}

.details__table td:last-of-type {
  font-weight: 700;
}

/* Bootstrap extra
 * -------------------------------------------------------------------------- */

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}
