/*
        Project : SARAH TENZER - Website 
        Module  : style.scss
        Date    : 01 / 2020
        Author  : Dirk Schumacher
*/
/*===== Grundlagen =====*/
body {
  overflow-x: hidden;
  background-color: white;
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: white;
  /*-----------------------------*/
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

body .img {
  padding: 0px;
}

body .container-fluid {
  padding: 0px;
}

body hr {
  background-color: #8e8677;
  color: #8e8677;
  border: #8e8677;
  width: 70px;
  height: 2px;
  margin-bottom: 40px;
}

body hr.terms {
  margin: 10px 0 20px;
}

body h1 {
  margin: 0;
  margin-top: 30px;
  font-size: 42px;
  font-weight: 700;
  color: #8e8677;
  text-transform: uppercase;
}

body h2 {
  margin: 0;
  margin-top: 50px;
  font-size: 26px;
  font-weight: 600;
  color: #d2ccc0;
  text-transform: uppercase;
}

body h4 {
  margin: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

body .headline-light {
  margin-top: 0px;
  margin-bottom: 40px;
  padding-top: 30px;
  background: url(../img/logo-headline01.png) center top transparent no-repeat;
  text-align: center;
  text-transform: uppercase;
}

body .headline-light h1 {
  margin: 0;
  margin-top: 30px;
  font-size: 42px;
  font-weight: 700;
  color: #eedebe;
}

body .headline-light h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #8e8677;
}

@media (max-width: 767px) {
  body .headline-light h1 {
    font-size: 34px;
  }
  body .headline-light h2 {
    font-size: 22px;
  }
}

body .headline-dark {
  margin-top: 0px;
  margin-bottom: 40px;
  padding-top: 30px;
  background: url(../img/logo-headline02.png) center top transparent no-repeat;
  text-align: center;
  text-transform: uppercase;
}

body .headline-dark h1 {
  margin: 0;
  margin-top: 30px;
  font-size: 42px;
  font-weight: 700;
  color: #8e8677;
}

body .headline-dark h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #d2ccc0;
}

@media (max-width: 767px) {
  body .headline-dark h1 {
    font-size: 34px;
  }
  body .headline-dark h2 {
    font-size: 22px;
  }
}

body .blankspacer {
  margin-top: 100px;
}

body .btn {
  border-radius: 0;
}

body .btn-default {
  color: #333 !important;
}

body .btn-default:hover,
body .btn-default:focus,
body .btn-default:active,
body .btn-default.active,
body .open > .dropdown-toggle.btn-default {
  color: #251c15 !important;
  background-color: #fff;
}

body #autoscroll {
  bottom: 25px;
  color: #fff;
  margin: 0;
  opacity: 0;
  position: fixed;
  right: 25px;
  transition: all .3s ease 0s;
  -webkit-transition: all .3s ease 0s;
  z-index: 10;
  background: #636363;
  border-radius: 50%;
  height: 48px;
  line-height: 42px;
  text-decoration: none;
  width: 48px;
  font-size: 32px;
  text-align: center;
  outline: 0;
  visibility: hidden;
}

body #autoscroll .fa {
  color: #fff;
  font-size: 30px;
}

body #autoscroll:hover {
  background-color: #181818;
}

body #autoscroll.on {
  opacity: 1;
  visibility: visible;
}

/************************************************************************************
SECTIONS
************************************************************************************/
.full-section {
  background: transparent no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  margin: 0;
  padding: 0;
  /* for background-size:cover replacement on iOS devices */
  /**
	 * iPad with portrait orientation.
	 */
  /**
	 * iPad with landscape orientation.
	 */
  /**
	 * iPhone 5
	 * You can also target devices with aspect ratio.
	 */
  /* ratio 4x3 */
}

.is-mobile .full-section {
  background-attachment: scroll !important;
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
  .full-section {
    -webkit-background-size: 50% auto;
    background-attachment: scroll;
  }
}

@media screen and (device-aspect-ratio: 40 / 71) {
  .full-section {
    -webkit-background-size: auto 50%;
  }
}

.full-section .bgspacer {
  background-color: #251c15;
}

.full-section .section-video {
  margin: 30px 0px;
  position: relative;
  padding-bottom: 56.25%;
  /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.full-section .section-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.full-section .section-video.ratio4x3 {
  padding-bottom: 75%;
}

@media (max-width: 767px) {
  .full-section .bgspacer {
    height: 20px;
  }
}

/************************************************************************************
MAIN CONTENT
************************************************************************************/
/********** HEADER **********/
header {
  z-index: 1000 !important;
  position: fixed;
  top: 0;
  width: 100%;
  display: block;
  z-index: 1000;
  background-color: white;
}

@media (min-width: 768px) {
  header {
    background: transparent;
  }
}

header.sticky {
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: white;
  color: #E6E6E6;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #eedebe;
  text-align: left;
  list-style: none;
  background-color: #0b0a0a;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #565656;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #eedebe;
  text-decoration: underline;
  background-color: transparent;
}

#slider .carousel-inner .carousel-item {
  height: calc(100vh-148px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#slider .carousel-inner .carousel-item .carousel-item-inner {
  min-height: 100vh !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 767px) {
  #slider .carousel-inner .carousel-item .carousel-item-inner {
    min-height: 80vh !important;
  }
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption {
  display: block;
  margin: auto;
  text-align: center;
  color: white;
  font-weight: bold;
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption h1, #slider .carousel-inner .carousel-item .carousel-item-inner .caption h2, #slider .carousel-inner .carousel-item .carousel-item-inner .caption h3 {
  text-transform: uppercase;
  font-size: 2.7em;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption h1 {
  color: #251c15;
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption h2 {
  font-size: 3.6em;
  color: #eedebe;
  margin-top: 0.5em;
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption h3 {
  font-size: 2.0em;
  color: #eedebe;
  margin-bottom: 3em;
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption hr {
  color: white;
  border-color: white;
  background-color: white;
  margin-bottom: 10px;
}

#slider .carousel-inner .carousel-item .carousel-item-inner .caption p {
  font-size: 1.2em;
  font-weight: 300;
  line-height: 2.0rem;
  text-transform: uppercase;
  letter-spacing: 0em;
}

@media (max-width: 767px) {
  #slider .carousel-inner .carousel-item .carousel-item-inner .caption h1 {
    font-size: 1.6em;
  }
  #slider .carousel-inner .carousel-item .carousel-item-inner .caption h2 {
    font-size: 2.2em;
    margin-top: 0.5em;
  }
  #slider .carousel-inner .carousel-item .carousel-item-inner .caption h3 {
    font-size: 0.8em;
    margin-bottom: 3em;
  }
  #slider .carousel-inner .carousel-item .carousel-item-inner .caption p {
    font-size: 0.8em;
    line-height: 1.2rem;
    letter-spacing: 0.1em;
    padding: 0 10px;
  }
}

#picmenu {
  padding-bottom: 2em;
  background-color: #251c15;
}

#picmenu .row {
  margin: 0;
}

#picmenu .col {
  margin-top: -150px;
  padding: 0px;
  text-align: center;
}

@media (max-width: 767px) {
  #picmenu .col {
    margin-top: -100px;
  }
}

#picmenu .col a {
  color: #8e8677;
}

#picmenu .col a:hover {
  color: #eedebe;
  text-decoration: none;
}

#picmenu .col a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-filter .5s ease-in-out;
  transition: -webkit-filter .5s ease-in-out;
  transition: filter .5s ease-in-out;
  transition: filter .5s ease-in-out, -webkit-filter .5s ease-in-out;
  -webkit-filter: grayscale(80%);
  filter: grayscale(80%);
}

#picmenu .col a img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

#picmenu .col a h1, #picmenu .col a h2 {
  margin: 0;
  padding: 0;
  font-size: 1.25em;
  font-weight: bold;
  text-transform: uppercase;
}

#picmenu .col a h2 {
  margin-top: 1em;
  font-size: 1em;
}

@media (max-width: 767px) {
  #picmenu .col a h1 {
    font-size: 0.8em;
  }
  #picmenu .col a h2 {
    font-size: 0.6em;
  }
}

/********** ABOUT **********/
#about {
  background-color: #251c15;
  padding: 0;
  margin: 0;
  padding: 40px 0px;
  text-align: center;
}

/********** NEWS **********/
.whitebox {
  background-color: #FFF;
  padding: 40px;
  text-align: center;
  color: #000;
}

.whitebox h1 {
  font-size: 2.3rem;
}

.whitebox h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #8e8677;
}

/********** FOOTER **********/
footer .row {
  -ms-flex-pack: center !important;
  -webkit-box-pack: center !important;
          justify-content: center !important;
}

footer .credits {
  background-color: #101010;
  padding: 20px;
  padding-bottom: 40px;
  text-align: center;
  font-size: 0.8rem;
}

footer .credits .footer-box {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

footer .credits .footer-box ul {
  list-style: none;
  padding: 0;
}

footer .credits .footer-box ul li {
  color: #808080;
  padding-bottom: 3px;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
}

footer .credits .footer-box ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

footer .credits .footer-box ul li a:hover {
  color: #E6E6E6;
  text-decoration: none;
}

footer .credits .footer-box ul li + li {
  padding-left: .5rem;
}

footer .credits .footer-box ul li + li::before {
  display: inline-block;
  padding-right: .5rem;
  color: #eedebe;
  content: '|';
}

footer .credits .footer-box ul li + li:hover::before {
  text-decoration: none;
}

footer .credits .footer-box ul li.active {
  color: white;
}

.copyright {
  background-color: #101010;
  padding: 20px;
  text-align: center;
  font-size: 0.6rem;
}

.copyright a {
  color: white;
}

/********** COURT **********/
#farm {
  background-color: #251c15;
  padding: 0;
  margin: 0;
  margin-top: 35px;
  padding: 40px 0px;
  text-align: center;
}

#farm ul {
  padding: 0;
  list-style-type: none;
  font-style: italic;
  color: #eedebe;
}

@media (max-width: 767px) {
  #farm {
    margin: 0;
    margin-top: 35px;
  }
  #farm p {
    text-align: justify;
  }
  #farm ul {
    text-align: left;
  }
}

/********** COURT **********/
#coaching {
  background-color: #251c15;
  padding: 0;
  margin: 0;
  padding: 40px 0px;
  text-align: center;
}

#coaching ul {
  padding: 0;
  list-style-type: none;
  font-style: italic;
  color: #eedebe;
}

@media (max-width: 767px) {
  #coaching {
    margin: 0;
    margin-top: 35px;
  }
  #coaching p {
    text-align: justify;
  }
  #coaching ul {
    text-align: left;
  }
}

/***********************************************************************************
 *  CONTACT
 ***********************************************************************************/
#Contact {
  margin-bottom: 100px;
  max-width: 970px;
  color: #000;
  text-align: center;
  /*.alert {
		border-radius: 0;

		&.alert-danger, &.alert-success {
			background: #fff;
            border-color: #ccc;
		}

		>i {
			font-size: 20px;
			margin-right: 20px;
		}
    }*/
}

#Contact form {
  margin-top: 40px;
}

#Contact .contactform {
  text-align: left;
}

#Contact .form-control {
  border-radius: 0;
}

#Contact .form-control:focus {
  border-color: #999 !important;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(179, 179, 179, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(179, 179, 179, 0.6);
  outline: 0;
}

#Contact .btn-default {
  border-color: #ced4da;
  outline: 0;
  text-align: center;
  padding: 10px 0px;
  width: 100%;
  font-size: 20px;
}

#Contact .btn-default:hover {
  border-color: #999 !important;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(179, 179, 179, 0.6);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(179, 179, 179, 0.6);
  outline: 0;
}

#Contact .tag_leftTitle {
  border-left: 1px solid #aaa;
  display: block;
  margin-left: 40px;
  margin: 10px 50px 20px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

#Contact .tag_leftTitle h5 {
  font-size: 15px;
}

#Contact .tag_leftTitle .icon {
  display: block;
  font-size: 15px;
  left: -50px;
  position: absolute;
  top: 13px;
  width: 50px;
}

#Contact .light_weight {
  font-weight: 300 !important;
}

#Contact .fa {
  font-size: 1.5em;
  vertical-align: -15%;
  width: 1.5em;
  text-align: center;
  color: #251c15;
}

#Contact .dottedBorder {
  border-color: #c0c0c0 !important;
  border-width: 1px;
  border-left-width: 0 !important;
  border-right-width: 0 !important;
  border-style: dotted !important;
  border-top-width: 0 !important;
  color: #555555 !important;
  background-color: transparent;
}

#Contact .btn-default {
  text-align: center;
  padding: 10px 0px;
  width: 100%;
  font-size: 20px;
}

#Map {
  width: 100%;
  height: 400px;
}

#Map > iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/*# sourceMappingURL=style.css.map */