/*======================================
  Anja Thumser zentrales CSS
======================================*/

body {
  background-color: #f5f5f5;
  color: #4e4e4e;
  font-family: 'Noto Sans JP', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e1e;
  font-family: 'Noto Serif JP', serif;
}

p { hyphens: auto; }

a {
  color: #1e1e1e;
  transition: all 0.5s ease-in-out;
}

a:hover {
  color: #3ba000;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.parallax-box,
.vita-section__box,
.demo-section__box {
  box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}

.button:hover {
  box-shadow: 0 0 0 4px #c3ffa0;
}

.bg-image {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
}

.bg-image--header {
  background-image: url(../images/header_bg_1000.jpg);
}

.bg-image--break {
  background-image: url(../images/break_bg_1000.jpg);
}

.bg-image--footer {
  background-image: url(../images/footer_bg_1000.jpg);
}

.lead {
  font-size: 1rem;
}

.bg-image__overlay {
  background-color: #62c22b;
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: .7;
}

.parallax-box {
  position: relative;
  padding: 8rem 0;
}

.display-table {
  width: 100%;
  height: 100%;
  display: table;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*-- Section --*/

.section {
  padding-top: 4rem;
}

.data-protection-section.section,
.imprint-section.section {
  padding-top: 8rem;
}


/*-- Title --*/

.title-box--h1 {
  margin-bottom: 4rem;
}

.title--h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.subtitle--h1 {
  color: #4e4e4e;
}

.underline {
  width: 40px;
  height: 5px;
  background-color: #62c22b;
  margin: 0 auto;
}

.title-box--h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.about-section .title-box--h2 {
  margin-bottom: 2rem;
}

.col-md-6 .title-box--h2:first-child {
  margin-top: 0;
}

.title--h2 {
  font-weight: normal;
  color: #1e1e1e;
  font-size: 1.25rem;
}

.title-left {
  font-size: 1.5rem;
  position: relative;
  hyphens: auto;
}

.title-left:before {
  content: '';
  position: absolute;
  height: 3px;
  background-color: #62c22b;
  width: 100px;
  bottom: -12px;
}

/*-- Box --*/

.box-with-shadow {
  padding: 3rem 1.25rem;
  position: relative;
  background-color: #fff;
  margin-bottom: 3rem;
  z-index: 2;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

.list--icon {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list--icon li {
  line-height: 2;
  vertical-align: middle;
}

.list--icon span {
  color: #3ba000;
  margin-right: 10px;
}

.icon--circle {
  height: 100px;
  width: 100px;
  font-size: 2rem;
  border-radius: 50%;
  line-height: 1.55;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 0 10px #62c22b;
  display: block;
}

/*-- Scroll to top --*/

.scroll-top {
  position: relative;
  display: none;
}

.scroll-top span {
  z-index: 999;
  position: fixed;
  width: 42px;
  height: 42px;
  background-color: #62c22b;
  opacity: .7;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  top: auto;
  left: auto;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  border-radius: 50%;
}

/*-- Back to top Button --*/

.back-to-top {
  position: fixed;
  display: none;
  background: #62c22b;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #62c22b;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*======================================
  Navbar
======================================*/

.navbar-b {
  transition: all .5s ease-in-out;
  background-color: transparent;
  padding-top: 1.563rem;
  padding-bottom: 1.563rem;
}

.navbar-b.navbar-reduce {
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

.navbar-b.navbar-trans .nav-item,
.navbar-b.navbar-reduce .nav-item {
  position: relative;
  padding-right: 10px;
  padding-left: 0;
}

.navbar-b.navbar-trans .nav-link,
.navbar-b.navbar-reduce .nav-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-b.navbar-trans .nav-link:before,
.navbar-b.navbar-reduce .nav-link:before {
  content: '';
  position: absolute;
  margin-left: 0px;
  width: 0%;
  bottom: 0;
  left: 0;
  height: 2px;
  transition: all 500ms ease;
}

.navbar-b.navbar-trans .nav-link:hover,
.navbar-b.navbar-reduce .nav-link:hover {
  color: #1B1B1B;
}

.navbar-b.navbar-trans .nav-link:hover:before,
.navbar-b.navbar-reduce .nav-link:hover:before {
  width: 35px;
}

.navbar-b.navbar-trans .show > .nav-link:before,
.navbar-b.navbar-trans .active > .nav-link:before,
.navbar-b.navbar-trans .nav-link.show:before,
.navbar-b.navbar-trans .nav-link.active:before,
.navbar-b.navbar-reduce .show > .nav-link:before,
.navbar-b.navbar-reduce .active > .nav-link:before,
.navbar-b.navbar-reduce .nav-link.show:before,
.navbar-b.navbar-reduce .nav-link.active:before {
  width: 35px;
}

.navbar-b.navbar-trans .nav-link:before {
  background-color: #fff;
}

.navbar-b.navbar-trans .nav-link:hover {
  color: #fff;
}

.navbar-b.navbar-trans .show > .nav-link,
.navbar-b.navbar-trans .active > .nav-link,
.navbar-b.navbar-trans .nav-link.show,
.navbar-b.navbar-trans .nav-link.active {
  color: #fff;
}

.navbar-b.navbar-reduce {
  transition: all .5s ease-in-out;
  background-color: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-b.navbar-reduce .nav-link {
  color: #3ba000;
}

.navbar-b.navbar-reduce .nav-link:before {
  background-color: #3ba000;
}

.navbar-b.navbar-reduce .nav-link:hover {
  color: #3ba000;
}

.navbar-b.navbar-reduce .show > .nav-link,
.navbar-b.navbar-reduce .active > .nav-link,
.navbar-b.navbar-reduce .nav-link.show,
.navbar-b.navbar-reduce .nav-link.active {
  color: #3ba000;
}

.navbar-b.navbar-reduce .navbar-brand {
  color: #3ba000;
}

.navbar-b.navbar-reduce .navbar-toggler span {
  background-color: #1B1B1B;
}

.navbar-b .navbar-brand {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
}

.navbar-b .navbar-nav .dropdown-item.show .dropdown-menu,
.navbar-b .dropdown.show .dropdown-menu,
.navbar-b .dropdown-btn.show .dropdown-menu {
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  visibility: visible !important;
}

.navbar-b .dropdown-menu {
  margin: 1.12rem 0 0;
  border-radius: 0;
}

.navbar-b .dropdown-menu .dropdown-item {
  padding: .7rem 1.7rem;
  transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item:hover {
  background-color: #62c22b;
  color: #fff;
  transition: all 500ms ease;
}

.navbar-b .dropdown-menu .dropdown-item.active {
  background-color: #62c22b;
}

/*-- Hamburger Menue --*/

.navbar-toggler {
  position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: -webkit-transform .35s ease-in-out;
  transition: transform .35s ease-in-out;
  transition: transform .35s ease-in-out, -webkit-transform .35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  opacity: 0.9;
}

/*======================================
  Header
======================================*/

.header {
  height: 100vh;
  position: relative;
  color: #fff;
}

.header .header__content {
  text-align: center;
  position: absolute;
}

.header__content .table-cell {
  vertical-align: bottom;
  padding-bottom: 6.5rem;
}

.header .header--overlay {
  background-color: rgba(0, 0, 0, 0.2);
  /*background-color: rgba(0, 0, 0, 0.6);*/
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
  opacity: .9;
}

.header .header__title {
  color: #fff;
  font-weight: 300;
  font-size: 2.5rem;
}

.header .header__subtitle {
  font-size: 1.25rem;
}

.header .header__subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 300;
}

.header .text-slider-items {
  display: none;
}

/*======================================
  About
======================================*/

.about-section {
  background-color: #f5f5f5;
}

.about-section .box-with-shadow {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-section .about-section__img {
  margin-bottom: 2rem;
}

.about-section dt,
.vita-content dt {
  color: #3ba000;
  font-size: 1rem
}

.about-section dd,
.vita-content dd {
  font-size: 1rem;
  margin-bottom: 1rem;
}


/*======================================
  Vita
======================================*/

.vita-section {
  background-color: #f5f5f5;
}

.vita-section__box {
  background-color: #fff;
  padding: 2.5rem 1.3rem;
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.vita-section__box:hover .icon--circle {
  transition: all 500ms ease;
  color: #fff;
  background-color: #62c22b;
  box-shadow: 0 0 0 10px #c3ffa0;
}

.vita-section__box ion-icon {
  margin-top: 1.125rem;
}

.vita-section__box .vita-icon {
  margin-bottom: 2rem;
  color: #1e1e1e;
}

.vita-section__box .icon--circle {
  transition: all 500ms ease;
  font-size: 4rem;
}

.vita-heading  {
  font-size: 1.25rem;
  padding: 0 0 1.125rem 0;
}

.vita-heading--sub  {
  font-size: 1rem;
  padding: 0 0 1.125rem 0;
}

.vita-content__list {
  margin-bottom: 2.5rem;
}
.vita-content__list:last-child  {
  margin-bottom: 0;
}

/*======================================
  Break mit fixem Background
======================================*/

.break-section {
  height: 300px;
}

/*======================================
  Demos
======================================*/

.demo-section {
  background-color: #f5f5f5;
}

.demo-section .player-box {
  width: 100%;
  max-width: 500px;
  font-size: .9rem;
  margin: 0 auto;
}

.demo-section__box {
  margin-bottom: 3rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #fff;
}

.demo-section__box:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}

.demo-section__img {
  display: block;
  overflow: hidden;
}

.demo-section__img img {
  transition: all 1s;
}

.demo-section__content {
  padding: 2rem 3% 1rem 4%;
}

.demo-section__title {
  font-size: 1.2rem;
}

.demo-section__subtitle {
  color: #3ba000;
}

/*-- Demos Autoplayer --*/

.audioplayer {
	height: 2.5em; /* 40 */
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	background: #3ba000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.audioplayer-mini {
	width: 2.5em; /* 40 */
	margin: 0 auto;
}

.audioplayer > div {
	position: absolute;
}

.audioplayer-playpause {
	border-radius: 5px 0 0 5px;
	width: 2.5em; /* 40 */
	height: 100%;
	text-align: left;
	text-indent: -9999px;
	cursor: pointer;
	z-index: 2;
	top: 0;
	left: 0;
}

.audioplayer:not(.audioplayer-mini) .audioplayer-playpause {
	border-right: 1px solid #555;
	border-right-color: rgba( 255, 255, 255, .1 );
}

.audioplayer-mini .audioplayer-playpause {
	width: 100%;
}

.audioplayer-playpause:hover,
.audioplayer-playpause:focus {
	background-color: #333;
	border-radius: 5px 0 0 5px;
}

.audioplayer-playpause a {
	display: block;
}

.audioplayer:not(.audioplayer-playing) .audioplayer-playpause a {
	width: 0;
	height: 0;
	border: 0.5em solid transparent; /* 8 */
	border-right: none;
	border-left-color: #fff;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.5em 0 0 -0.25em; /* 8 4 */
}

.audioplayer-playing .audioplayer-playpause a {
	width: 0.75em; /* 12 */
	height: 0.75em; /* 12 */
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -0.375em 0 0 -0.375em; /* 6 */
}

.audioplayer-playing .audioplayer-playpause a:before,
.audioplayer-playing .audioplayer-playpause a:after {
	width: 40%;
	height: 100%;
	background-color: #fff;
	content: '';
	position: absolute;
	top: 0;
}

.audioplayer-playing .audioplayer-playpause a:before {
	left: 0;
}

.audioplayer-playing .audioplayer-playpause a:after {
	right: 0;
}

.audioplayer-time {
	width: 4.375em; /* 70 */
	height: 100%;
	line-height: 2.375em; /* 38 */
	text-align: center;
	z-index: 2;
	top: 0;
}

.audioplayer-time-current {
	border-left: 1px solid #fff;
	left: 2.5em; /* 40 */
}

.audioplayer-time-duration {
	right: 2.5em; /* 40 */
}

.audioplayer-novolume .audioplayer-time-duration {
	border-right: 0;
	right: 0;
}

.audioplayer-bar {
	height: 0.875em; /* 14 */
	background-color: #222;
	cursor: pointer;
	z-index: 1;
	top: 50%;
	right: 6.875em; /* 110 */
	left: 6.875em; /* 110 */
	margin-top: -0.438em; /* 7 */
}

.audioplayer-novolume .audioplayer-bar {
	right: 4.375em; /* 70 */
}

.audioplayer-bar div {
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.audioplayer-bar-loaded {
	background-color: #222;
	z-index: 1;
}

.audioplayer-bar-played {
	background: #7add41;
	background: -webkit-gradient( linear, left top, right top, from( #7add41 ), to( #6c2580 ) );
	background: -webkit-linear-gradient( left, #7add41, #6c2580 );
	background: -moz-linear-gradient( left, #7add41, #6c2580 );
	background: -ms-radial-gradient( left, #7add41, #6c2580 );
	background: -o-linear-gradient( left, #7add41, #6c2580 );
	background: linear-gradient( left, #7add41, #6c2580 );
	z-index: 2;
}

.audioplayer-volume {
	width: 2.5em; /* 40 */
	height: 100%;
	border-left: 1px solid #fff;
	border-radius: 0 0 5px 0;
	text-align: left;
	text-indent: -9999px;
	cursor: pointer;
	z-index: 2;
	top: 0;
	right: 0;
}

.audioplayer-volume:hover,
.audioplayer-volume:focus {
	background-color: #333;
}

.audioplayer-volume:hover {
	border-radius: 0 0 5px 0;
}

.audioplayer-volume-button {
	width: 100%;
	height: 100%;
}

.audioplayer-volume-button a {
	width: 0.313em; /* 5 */
	height: 0.375em; /* 6 */
	background-color: #fff;
	display: block;
	position: relative;
	z-index: 1;
	top: 40%;
	left: 35%;
}

.audioplayer-volume-button a:before,
.audioplayer-volume-button a:after {
	content: '';
	position: absolute;
}

.audioplayer-volume-button a:before {
	width: 0;
	height: 0;
	border: 0.5em solid transparent; /* 8 */
	border-left: none;
	border-right-color: #fff;
	z-index: 2;
	top: 50%;
	right: -0.25em;
	margin-top: -0.5em; /* 8 */
}

.audioplayer:not(.audioplayer-mute) .audioplayer-volume-button a:after {
	width: 0.313em; /* 5 */
	height: 0.313em; /* 5 */
	border: 0.25em double #fff; /* 4 */
	border-width: 0.25em 0.25em 0 0; /* 4 */
	left: 0.563em; /* 9 */
	top: -0.063em; /* 1 */
	-webkit-border-radius: 0 0.938em 0 0; /* 15 */
	-moz-border-radius: 0 0.938em 0 0; /* 15 */
	border-radius: 0 0.938em 0 0; /* 15 */
	-webkit-transform: rotate( 45deg );
	-moz-transform: rotate( 45deg );
	-ms-transform: rotate( 45deg );
	-o-transform: rotate( 45deg );
	transform: rotate( 45deg );
}

.audioplayer-volume-adjust {
	height: 6.25em; /* 100 */
	cursor: default;
	position: absolute;
	left: 0;
	right: 0px;
	top: -9999px;
	background: #333;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.audioplayer-volume:not(:hover) .audioplayer-volume-adjust {
	opacity: 0;
}

.audioplayer-volume:hover .audioplayer-volume-adjust {
	top: auto;
	bottom: 100%;
}

.audioplayer-volume-adjust > div {
	width: 40%;
	height: 80%;
	background-color: #222;
	cursor: pointer;
	position: relative;
	z-index: 1;
	margin: 30% auto 0;
}

.audioplayer-volume-adjust div div {
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #7add41;
	background: -webkit-gradient( linear, left bottom, left top, from( #7add41 ), to( #6c2580 ) );
	background: -webkit-linear-gradient( bottom, #7add41, #6c2580 );
	background: -moz-linear-gradient( bottom, #7add41, #6c2580 );
	background: -ms-radial-gradient( bottom, #7add41, #6c2580 );
	background: -o-linear-gradient( bottom, #7add41, #6c2580 );
	background: linear-gradient( bottom, #7add41, #6c2580 );
}

.audioplayer-novolume .audioplayer-volume {
	display: none;
}

.audioplayer-bar,
.audioplayer-bar div,
.audioplayer-volume-adjust div {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.audioplayer-volume-adjust div div,
.audioplayer-bar-played {
	-webkit-box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
	-moz-box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
	box-shadow: inset 0 0 5px rgba( 255, 255, 255, .5 );
}

.audioplayer-volume-adjust {
	-webkit-box-shadow: -2px -2px 2px rgba( 0, 0, 0, .15 ), 2px -2px 2px rgba( 0, 0, 0, .15 );
	-moz-box-shadow: -2px -2px 2px rgba( 0, 0, 0, .15 ), 2px -2px 2px rgba( 0, 0, 0, .15 );
	box-shadow: -2px -2px 2px rgba( 0, 0, 0, .15 ), 2px -2px 2px rgba( 0, 0, 0, .15 );
}

.audioplayer *,
.audioplayer *:before,
.audioplayer *:after {
	-webkit-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
	-moz-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
	-ms-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
	-o-transition: color .25s ease, background-color .25s ease, opacity .5s ease;
	transition: color .25s ease, background-color .25s ease, opacity .5s ease;
}

/*======================================
  Kontakt
======================================*/

.footer-parallax {
  padding: 1rem 0 0 0;
}

.contact-section {
  margin-top: 4rem;
}

.contact-section .ico-email,
.contact-section .ico-call {
  font-size: 1.2rem;
  vertical-align: -.2rem;
}

/*======================================
  Footer
======================================*/

footer {
  padding-bottom: 2rem;
}

footer .footer-nav {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin: 0 -15px 1rem -15px;
}

footer .footer-nav a {
  color: #fff;
  display: block;
  padding: .25rem 15px .25rem 15px;
}

/*======================================
  media queries
======================================*/

@media (min-width: 345px) {
  .bg-image--header {
    background-image: url(../images/header_bg_1500.jpg);
  }

  footer .footer-nav a {
    display: inline-block;
    padding: .25rem 15px .25rem 0;
  }

  footer .footer-nav a::before {
    content: "|";
    padding-right: 1.5rem;
  }

  footer .footer-nav a:first-child {
    padding-left: 15px;
  }

  footer .footer-nav a:first-child::before {
    content: "";
    padding-right: 0;
  }
}

@media (min-width: 577px) {
  .header__content .table-cell {
    padding-bottom: .5rem;
  }

  header .header__title {
    font-size: 3rem;
  }

  .header .header__subtitle {
    font-size: 1.5rem;
  }

  .title--h1 {
    font-size: 3rem;
  }

  .title-box--h2 {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }

  .about-section .title-box--h2 {
    margin-bottom: 2.5rem;
  }

  .title--h2 {
    font-size: 1.5rem;
  }

  .title-left {
    font-size: 2rem;
  }

  .vita-heading {
    font-size: 1.5rem;
  }
  .vita-heading--sub  {
    font-size: 1.25rem;
  }
}

@media (min-width: 767px) {
  .about-section .box-pl2 {
    margin-top: 3rem;
    padding-left: 0rem;
  }

  .contact-section .box-pl2 {
    margin-top: 3rem;
    padding-left: 0rem;
  }
}

@media (min-width: 768px) {
  .lead,
  .about-section dt,
  .vita-content dt,
  .about-section dd,
  .vita-content dd {
    font-size: 1.125rem;
  }

  .box-with-shadow {
    padding: 3rem;
  }

  .navbar-b.navbar-trans .nav-item,
  .navbar-b.navbar-reduce .nav-item {
    padding-left: 10px;
  }

  .navbar-b.navbar-trans .nav-link:before,
  .navbar-b.navbar-reduce .nav-link:before {
    margin-left: 18px;
  }

  .header .header__title {
    font-size: 4.5rem;
  }

  .header .header__subtitle {
    font-size: 2.5rem;
  }

  .bg-image {
    background-attachment: fixed;
  }

  .break-section {
    height: 500px;
  }

  .footer {
    padding-bottom: 4rem;
  }

  .footer-parallax {
    padding: 4rem 0 0 0;
  }

  .bg-image--header {
    background-image: url(../images/header_bg_1920.jpg);
  }

  .bg-image--break {
    background-image: url(../images/break_bg_1920.jpg);
  }

  .bg-image--footer {
    background-image: url(../images/footer_bg_1920.jpg);
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}