@import url(./reset.css);
@import url(./header-bg-footer.css);

html {
  font-family: 'PT Sans', sans-serif;
}

:root {
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -mflexbox;
  display: flex;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-row-center {
  justify-content: center;
}

.flex-row-between {
  justify-content: space-between;
}

.flex-row-around {
  justify-content: space-around;
}

.flex-column-center {
  align-items: center;
}

.flex-column-start {
  align-items: flex-start;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.position-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.position-center-hrz {
  left: 50%;
  transform: translateX(-50%);
}

.position-center-vtc {
  top: 50%;
  transform: translateY(-50%);
}

.cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cut-rows {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.cut-2 {
  -webkit-line-clamp: 2;
}

.cut-5 {
  -webkit-line-clamp: 5;
}
