body {
  font-family: Tahoma, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #828282;
  background: #fff;
}

div {
    border: 0;

}
.button {
  padding: 12px 16px;
  box-shadow: 0px 0px 6px -2px rgba(0,0,0,0.5);
  line-height: 1.25;
  background: #fe5000;
  text-decoration: none;
  color: white;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  transition: background-color .6s ease;
  overflow: hidden;
  &:after {
    content: "";
    position: relative;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    top: var(--mouse-y);
    left: var(--mouse-x);
    transform-style: flat;
    transform: translate3d(-50%,-50%,0);
    background: rgba(white,.1);
    border-radius: 100%;
    transition: width .3s ease, height .3s ease;
  }
  &:focus,
  &:hover {
      background: darken(#FC6E51,7%);
  }
  &:active {
    &:after {
      width: 300px;
      height: 300px;
    }
  }
}

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  padding-top: 6em !important;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

#topo {
    width: 300px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

td {
	font-size: 10px;
}

a {
  color: #cabcab;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: #cabcab;
  outline: none;
  text-decoration: none;
}

p {
  margin-bottom: 20px;
}



th {
	color: #000;
}


h1, h2, h3, h4, h5, h6, figure {
  color: #000;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
}



blockquote {
  padding-left: 0;
  border-left: none;
}
blockquote p {
  font-family: "Georgia", Times;
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: #666666;
}
blockquote .person {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  color: #b3b3b3;
}
blockquote .person cite {
  font-style: normal;
  color: #000;
}

.tit2{
    font-size: 1.5em;
    color: #fff;
    }


