:root{
    --main-color: #FF7977;
}
body {
  position: relative;
  z-index: 0;
  min-height: 100vh;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 60vh solid #f6f6f6;
  border-right: 60vh solid transparent; 
  z-index: -1;
}
body::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 60vh solid #f6f6f6;
  border-right: 60vh solid transparent;
  z-index: -1;
}
section{
    margin-bottom: 3rem;
    padding: 0 1rem;
}
footer {
    text-align: center;
    padding: 1rem 0;
}
.container{
    max-width: 980px!important;
}
.page-header-home{
    background: url(/images/header.jpg) left no-repeat;
    background-size: cover;
    padding: 5rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    h1{
        color: #fff;
        background: var(--main-color);
        display: inline-block;
        padding: 1rem;
    }
}
.h1{
    font-weight: bold;
    margin: 2rem 0 3rem;
}
.h2 {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    height: 40px;
    line-height: 40px;;
    padding-left: 40px;
}
.h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 35px solid var(--main-color);
  border-right: 35px solid transparent;
}
.h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 35px solid var(--main-color);
  border-right: 35px solid transparent;
}
.h3{
    font-weight: bold;
    font-size: 1rem;
    border-left: 5px solid var(--main-color);
    padding-left: 10px;
    margin: 2rem 0 1rem;
}
.table{
    background: #fff;
}
.table th{
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    background: var(--main-color);
    opacity: 0.7;
}
@media (max-width: 768px) {
    .table th,
    .table td{
        display: block;
    }
}
@media (max-width: 576px) {
    body::before {
        border-top-width: 100vw;
        border-right-width: 100vw;
    }
    body::after {
        border-bottom-width: 100vw;
        border-right-width: 100vw;
    }
}