html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: 'Titillium Web', sans-serif;
  font-size: 16px;
}
p {
  line-height: 1.5em;
  margin-bottom: 1.4em;
}
a {
  color: #c33238;
}
img {
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.2em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}
main ul li:before {
  display: inline-block;
  content: "-";
  margin-right: .6em;
}
h1 {
  font-size: 48px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 20px;
}
input[type=text],
button,
textarea {
  min-width: 300px;
  box-sizing: border-box;
  padding: 15px;
  border: 1px solid #b5b5b5;
  outline: none;
  width: 100%;
  background: none;
  color: #000;
  /* Firefox 19+ */
  /* Firefox 18- */
}
input[type=text]:focus,
button:focus,
textarea:focus {
  border-color: #c33238;
  color: #c33238;
}
input[type=text]::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #b5b5b5;
}
input[type=text]::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder {
  color: #b5b5b5;
}
input[type=text]:-moz-placeholder,
button:-moz-placeholder,
textarea:-moz-placeholder {
  color: #b5b5b5;
}
input[type=text]:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #b5b5b5;
}
input[type=text][type=submit],
button[type=submit],
textarea[type=submit] {
  min-width: 0;
  width: auto;
}
main {
  position: relative;
}
@media (min-width: 768px) {
  main {
    padding-left: 280px;
  }
}
.btn {
  border: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  height: 48px;
  line-height: 48px;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}
.btn:before {
  background: #c33238;
}
.btn.red {
  background: #c33238;
  color: #fff;
}
.btn.red:before {
  background: #000;
}
.btn span + span {
  margin-left: .8em;
}
.page {
  position: relative;
  z-index: 2;
  display: table;
  width: 100%;
  color: #282828;
  box-sizing: border-box;
  font-size: 18px;
}
.page h1 {
  font-weight: 700;
}
.page .page-wrapper {
  display: table-cell;
  vertical-align: middle;
  padding: 50px 0;
}
@media (min-width: 768px) {
  .page .page-wrapper {
    padding: 70px 2rem;
  }
}
@media (min-width: 768px) {
  .page {
    height: 100vh;
  }
}
aside {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #fff;
  font-weight: 300;
  box-sizing: border-box;
  position: relative;
  z-index: 4;
}
aside a {
  color: #fff;
}
@media (min-width: 768px) {
  aside {
    position: fixed;
    left: -300px;
    top: 0;
    width: 280px;
    height: 100%;
    animation: asideIn 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
  }
}
@keyframes asideIn {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: .8;
  }
}
.aside-wrapper {
  display: table;
  width: 100%;
  transition: .4s;
}
.aside-wrapper header,
.aside-wrapper footer,
.aside-wrapper > section {
  display: table-row;
}
.aside-wrapper header > div,
.aside-wrapper footer > div,
.aside-wrapper > section > div {
  display: table-cell;
}
.aside-wrapper header .header-wrapper {
  padding-top: 60px;
}
.aside-wrapper footer {
  font-size: 12px;
}
.aside-wrapper footer .footer-wrapper {
  padding-bottom: 25px;
}
.aside-wrapper footer .footer-wrapper .copyright {
  opacity: 0.5;
}
.aside-wrapper section {
  height: 350px;
}
.aside-wrapper section div {
  vertical-align: middle;
}
@media (min-width: 768px) {
  .aside-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
  }
  .aside-wrapper > section {
    height: 100%;
  }
}
.main-menu {
  display: inline-block;
  margin: 20px 0;
}
.main-menu li {
  display: block;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.4em;
  position: relative;
  transition: .2s;
}
.main-menu li a {
  padding: 8px 0;
  position: relative;
  display: block;
  text-decoration: none;
  transition: .2s;
}
.main-menu li:hover:before {
  content: "";
  display: block;
  position: absolute;
  right: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.main-menu li:hover:after {
  content: "";
  display: block;
  position: absolute;
  right: -15px;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.main-menu li:hover a {
  padding: 25px 0;
  font-size: 30px;
}
.main-menu li:hover a:before {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
.main-menu li:hover a:after {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  bottom: 10px;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.form-line {
  padding: 10px 0;
}
#logo {
  display: inline-block;
  text-decoration: none;
}
#logo img {
  display: inline-block;
  max-width: 50px;
}
#logo h1 {
  margin-top: 15px;
  font-size: 26px;
  margin-bottom: 0;
}
#logo h1 strong {
  font-weight: 700;
}
#bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../img/bg2.jpg") no-repeat top;
  background-size: cover;
  z-index: 0;
}
#home {
  color: #fff;
  min-height: 400px;
}
#home h1 {
  font-size: 56px;
  margin-bottom: 0;
}
#home .page-wrapper {
  vertical-align: bottom;
}
@media (min-width: 768px) {
  #home {
    min-height: 100vh;
  }
}
#about {
  border-top: 1px solid #ffffff;
  background: url("../img/tx-bg.jpg");
}
#specialties {
  border-top: 1px solid #000000;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#specialties .specialties {
  background-size: cover;
  background-position: center;
  display: table;
  box-sizing: border-box;
  position: relative;
  width: 100%;
}
#specialties .specialties > div {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-top: none;
  padding: 20px 15px 20px 35px;
}
@media (max-width: 768px) {
  #specialties .specialties > div {
    border-left: none;
    padding-left: 0;
  }
}
#specialties .specialties > div:last-child {
  border-bottom: none;
}
#specialties .specialties h2 {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  margin: 0;
  line-height: 1.4em;
}
@media (max-width: 768px) {
  #specialties .specialties h2 {
    font-size: 14px;
  }
}
#insurance {
  border-top: 1px solid #ffffff;
  background: url("../img/tx-bg.jpg");
}
#cat-bonds {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#cat-bonds .item {
  margin: 20px 0;
  line-height: 1.3em;
}
#cat-bonds .scrollTo {
  display: block;
  margin-top: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
#cat-bonds .scrollTo i {
  margin-top: 5px;
}
#cat-bonds2 {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
#cat-bonds2 .triggers div {
  font-size: 16px;
  margin: 15px 0;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  line-height: 1.2em;
}
#cat-bonds2 .triggers div h6 {
  text-transform: none;
  margin-bottom: 8px;
}
#contacts {
  color: #fff;
}
#contacts .page-wrapper {
  vertical-align: bottom;
}
#contacts h1 {
  margin-bottom: 10px;
}
#contacts a {
  color: #fff;
}
#contacts p {
  margin-bottom: 1em;
}
#contacts p i {
  width: 20px;
  text-align: center;
  margin-right: 10px;
}
.contactForm input,
.contactForm textarea {
  border: none;
  background: #fff;
  color: #282828;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.contactForm input::-webkit-input-placeholder,
.contactForm textarea::-webkit-input-placeholder {
  color: #282828;
}
.contactForm input::-moz-placeholder,
.contactForm textarea::-moz-placeholder {
  color: #282828;
}
.contactForm input:-moz-placeholder,
.contactForm textarea:-moz-placeholder {
  color: #282828;
}
.contactForm input:-ms-input-placeholder,
.contactForm textarea:-ms-input-placeholder {
  color: #282828;
}
@media (min-width: 768px) {
  .transformed aside {
    width: 50px;
    background: #c33238;
    opacity: 1;
  }
  .transformed aside .aside-wrapper {
    opacity: 0;
  }
  .transformed main:before {
    background: rgba(255, 255, 255, 0.95);
  }
  .transformed.opened aside {
    width: 300px;
  }
  .transformed.opened aside .aside-wrapper {
    opacity: 1;
  }
  .transformed.opened aside #dark {
    background: rgba(0, 0, 0, 0.88);
  }
  .transformed.opened main {
    padding-left: 300px;
  }
}
